Messages
staking
Edit Validator

cosmos.staking.editValidator

A transaction which updated a validator's details such as its website.

Schema

  • If an optional field's value is a string, then its value was updated. For example, if the moniker field's value is "new-name", then the validator changed its human-readable name.
  • If an optional field is absent, then its value wasn't updated. For example, if the moniker field was absent, then the validator's human-readable name wasn't updated.
  • If an optional field's value is null, then its value was removed. For example, if the identity field's value is null, then the validator is no longer associated with an identity.
FieldRequiredData typeExplanationExample
__typeYesstringAlways "cosmos.staking.editValidator"."cosmos.staking.editValidator"
blockchainYesstringThe 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"
txHashYesstringThe transaction's hash."DBAD2F68E6CEF64B8EA29F47B2765CED53CB1552AE6422C98974C8D4DA8869F8"
isSuccessfulYesbooleanWhether the transaction succeeded or failed.true
memoYesstringA note the user added while making the transaction. Maybe be empty ("")."I owed you 1.5 ATOM since you paid for lunch."
monikerNostringA human-readable name for the validator."TC Network"
identityNostring or nullAn identity signature such as one from Keybase (opens in a new tab).
websiteNostring or null"https://tcnetwork.io"
securityContactNostring or nullAn email address to contact the validator operator by."validator@example.com"
detailsNostring or null"TC Network is a group providing staking service, building the dApp and more for Cosmos projects"
validatorAddressYesstringValidator's address"agoricvaloper188xyq72fveuuvgk7lkht964jhgtc2cw00lf2zn"

Example

{
  "__type": "cosmos.staking.editValidator",
  "blockchain": "juno",
  "txHash": "DBAD2F68E6CEF64B8EA29F47B2765CED53CB1552AE6422C98974C8D4DA8869F8",
  "isSuccessful": true,
  "memo": "",
  "moniker": "TC Network",
  "website": "https://tcnetwork.io",
  "securityContact": null,
  "validatorAddress": "agoricvaloper188xyq72fveuuvgk7lkht964jhgtc2cw00lf2zn"
}