2022-09-06 09:03:10 +00:00
|
|
|
extend type Delegation {
|
|
|
|
"The amount field formatted by the client"
|
|
|
|
amountFormatted: String!
|
|
|
|
}
|
|
|
|
|
|
|
|
extend type NodeData {
|
|
|
|
"The total staked field formatted by the client"
|
|
|
|
stakedTotalFormatted: String!
|
|
|
|
}
|
|
|
|
|
|
|
|
extend type Node {
|
|
|
|
"The total staked field formatted by the client"
|
|
|
|
stakedTotalFormatted: String!
|
|
|
|
|
|
|
|
"The pending staked field formatted by the client"
|
|
|
|
pendingStakeFormatted: String!
|
|
|
|
|
|
|
|
"The stakes by operator field formatted by the client"
|
|
|
|
stakedByOperatorFormatted: String!
|
|
|
|
|
|
|
|
"The stakes by delegates field formatted by the client"
|
|
|
|
stakedByDelegatesFormatted: String!
|
|
|
|
}
|
|
|
|
|
|
|
|
extend type Reward {
|
|
|
|
"The amount field formatted by the client"
|
|
|
|
amountFormatted: String!
|
|
|
|
}
|
|
|
|
|
|
|
|
extend type RewardPerAssetDetail {
|
|
|
|
"The total amount field formatted by the client"
|
|
|
|
totalAmountFormatted: String!
|
|
|
|
}
|
|
|
|
|
2022-10-25 10:07:54 +00:00
|
|
|
extend type AccountBalance {
|
2022-09-06 09:03:10 +00:00
|
|
|
"The balance field formatted by the client"
|
|
|
|
balanceFormatted: String!
|
|
|
|
}
|