* chore: generate types * chore: remove type policy as it is bad * chore: migrate all usages of depreacted stake field * chore: fix build
34 lines
621 B
GraphQL
34 lines
621 B
GraphQL
extend type Proposal {
|
|
"Whether or the not the proposal is processing on the blockchain"
|
|
pending: Boolean!
|
|
"Generated name for the proposal"
|
|
name: String!
|
|
}
|
|
|
|
extend type Node {
|
|
pendingStakeFormatted: String!
|
|
stakedByOperatorFormatted: String!
|
|
stakedByDelegatesFormatted: String!
|
|
stakedTotalFormatted: String!
|
|
}
|
|
|
|
extend type Delegation {
|
|
amountFormatted: String!
|
|
}
|
|
|
|
extend type NodeData {
|
|
stakedTotalFormatted: String!
|
|
}
|
|
|
|
extend type Reward {
|
|
amountFormatted: String!
|
|
}
|
|
|
|
extend type RewardPerAssetDetail {
|
|
totalAmountFormatted: String!
|
|
}
|
|
|
|
extend type AccountBalance {
|
|
balanceFormatted: String!
|
|
}
|