Messages
staking
Create Validator

cosmos.staking.createValidator

A transaction which created a validator.

Schema

FieldRequiredData typeExplanationExample
__typeYesstringAlways "cosmos.staking.createValidator"."cosmos.staking.createValidator"
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."
monikerYesstringA human-readable name for the validator."TC Network"
identityNostringAn identity signature such as one from Keybase (opens in a new tab).
websiteNostring"https://tcnetwork.io"
securityContactNostringAn email address to contact the validator operator by."validator@example.com"
detailsNostring"TC Network is a group providing staking service, building the dApp and more for Cosmos projects"
rateYesstringThe commission rate charged to delegators. This is a number in the range of 0 and 1."0.050000000000000000"
maxRateYesstringThe max commission rate which the validator can charge. This is a number in the range of 0 and 1."0.100000000000000000"
maxChangeRateYesstringThe max the validator can increase the rate by on a daily basis. This is a number in the range of 0 and 1."0.010000000000000000"
minSelfDelegationYesstringThe minimum quantity of tokens that the validator must self delegate."1"
validatorAddressYesstringValidator's address"agoricvaloper188xyq72fveuuvgk7lkht964jhgtc2cw00lf2zn"

Example

{
  "__type": "cosmos.staking.createValidator",
  "blockchain": "juno",
  "txHash": "DBAD2F68E6CEF64B8EA29F47B2765CED53CB1552AE6422C98974C8D4DA8869F8",
  "isSuccessful": true,
  "memo": "",
  "moniker": "TC Network",
  "website": "https://tcnetwork.io",
  "securityContact": "validator@example.com",
  "details": "TC Network is a group providing staking service, building the dApp and more for Cosmos projects",
  "rate": "0.050000000000000000",
  "maxRate": "0.100000000000000000",
  "maxChangeRate": "0.010000000000000000",
  "minSelfDelegation": "1",
  "validatorAddress": "agoricvaloper188xyq72fveuuvgk7lkht964jhgtc2cw00lf2zn"
}