Skip to main content

Stakehouse Metadata

The following query can be used to get specific information about a house such as the sETH token, it's ticker, how many knots are in the house, how much is slashed, etc.

{
stakeHouses {
id
sETH
sETHTicker
sETHPayoffRateFormatted
numberOfKnots
totalAmountOfSlotSlashed
}
}

Here is the output of the above query:

{
"data": {
"stakeHouses": [
{
"id": "0x0c90815bfe3b4f93016b4326e5f0a161c1d640bb",
"sETH": "0x406be4b4486ea7f9494bf0a7f3e6fa11244692e4",
"sETHTicker": "sETH",
"sETHPayoffRateFormatted": "1",
"numberOfKnots": "16",
"totalAmountOfSlotSlashed": "0"
},
{
"id": "0x19e90e51c729b51c61d688ebdb55d132b2f93489",
"sETH": "0x37179f133cb2caaccf797a1484cb67edc754cb40",
"sETHTicker": "sSCOIN",
"sETHPayoffRateFormatted": "1",
"numberOfKnots": "0",
"totalAmountOfSlotSlashed": "0"
}
]
}
}