StakeLinking
A stake linking represent the intent from a party to deposit / remove stake on their account
type StakeLinking {
id: ID!
type: StakeLinkingType!
timestamp: Timestamp!
party: Party!
amount: String!
status: StakeLinkingStatus!
finalizedAt: Timestamp
txHash: String!
blockHeight: String!
}
Fields
StakeLinking.id
● ID!
non-null scalar
StakeLinking.type
● StakeLinkingType!
non-null enum
Type of linking: link|unlink
StakeLinking.timestamp
● Timestamp!
non-null scalar
The time at which the request happened on ethereum
StakeLinking.party
● Party!
non-null object
The party initiating the stake linking
StakeLinking.amount
● String!
non-null scalar
The amount linked or unlinked
StakeLinking.status
● StakeLinkingStatus!
non-null enum
The status of the linking
StakeLinking.finalizedAt
● Timestamp
scalar
The time at which the stake linking was fully processed by the Vega network, null until defined
StakeLinking.txHash
● String!
non-null scalar
The transaction hash (ethereum) which initiated the link/unlink
StakeLinking.blockHeight
● String!
non-null scalar
The (ethereum) block height of the link/unlink
Member of
PartyStake
object ● StakeLinkingEdge
object