cosmos.staking.delegate
An account delegated tokens to a validator.
Schema
Field | Required | Data type | Explanation | Example |
---|---|---|---|---|
__type | Yes | string | Always "cosmos.staking.delegate" . | "cosmos.staking.delegate" |
blockchain | Yes | string | The blockchain this transaction was executed on. This field will have one of the values in the ID column where the Ecosystem column's value is Cosmos. | "juno" |
txHash | Yes | string | The transaction's hash. | "DBAD2F68E6CEF64B8EA29F47B2765CED53CB1552AE6422C98974C8D4DA8869F8" |
isSuccessful | Yes | boolean | Whether the transaction succeeded or failed. | true |
memo | Yes | string | A note the user added while making the transaction. Maybe be empty ("" ). | "I owed you 1.5 ATOM since you paid for lunch." |
delegatorAddress | Yes | string | Delegator's address | "bitsong160rddm8k5yy2psshx65gwj26gzr8ww27skxe7m" |
validatorAddress | Yes | string | Validator's address | "bitsongvaloper18wf0w252jxk3kgl5vlst8ttat8xzfnvejuftk2" |
denomination | Yes | string | The denomination of the token delegated. | "uatom" |
quantity | Yes | string | The quantity of denomination delegated. | "100" |
Example
{
"__type": "cosmos.staking.delegate",
"blockchain": "juno",
"txHash": "DBAD2F68E6CEF64B8EA29F47B2765CED53CB1552AE6422C98974C8D4DA8869F8",
"isSuccessful": true,
"memo": "",
"delegatorAddress": "bitsong160rddm8k5yy2psshx65gwj26gzr8ww27skxe7m",
"validatorAddress": "bitsongvaloper18wf0w252jxk3kgl5vlst8ttat8xzfnvejuftk2",
"denomination": "uatom",
"quantity": "100"
}