governance
APIs related to the Klaytn Governance.
For the governance of the network, Klaytn provides the following APIs under governance
namespace.
In Klaytn, there are three different governance modes.
none
: All nodes participating in the network have the right to change the configuration.single
: Only one designated node has the right to change the configuration.ballot
: All nodes which have voting power can vote for a change. When more than half of total voting power gathered, the vote passes.
Based on the governance mode, a proposer is able to cast a vote about network parameters such as unit price, minimum staking amount, etc. In order to be a proposer, the candidate nodes are required to deposit a minimum amount of KLAY. All the qualified nodes are always eligible to propose a block, but the chance is propositional to the stake amount.
When calculating the staking proportions to determine the number of slots(the number of chances) to become a proposer within a certain period, it is possible that a node may not be allocated any slots as a result of rounding numbers. However, a slot is guaranteed to a qualified node that has deposited a minimum amount of KLAY.
That is, if a node is not qualified - the node does not stake enough amount of KLAY - it won't be given a chance to propose nor validate a block.
Caveat
A governing node is always qualified in
single
mode as an exception.A vote will be casted when a block is proposed. This vote is applied after two epochs including the epoch where the block is proposed. As an exception, only addValidator/removeValidator is applied immediately.
governance_vote
The vote
method submits a new vote. If the node has the right to vote based on governance mode, the vote can be placed. If not, an error message will be returned and the vote will be ignored.
Parameters
Key
: Name of the configuration setting to be changed. Key has the form ofdomain.field
Value
: Various types of value for each key.
"governance.governancemode"
STRING
. One of the three governance modes. "none"
, "single"
, "ballot"
"governance.governingnode"
ADDRESS
. Designated governing node's address. It only works if the governance mode is "single"
e.g.,"0xe733cb4d279da696f30d470f8c04decb54fcb0d2"
"governance.unitprice"
NUMBER
. Price of unit gas. e.g., 25000000000
"governance.addvalidator"
ADDRESS
. Address of a new validator candidate. e.g., 0xe733cb4d279da696f30d470f8c04decb54fcb0d2
"governance.removevalidator"
ADDRESS
. Address of a current validator which need to be removed. e.g., 0xe733cb4d279da696f30d470f8c04decb54fcb0d2
"governance.deriveshaimpl"
NUMBER
. Policy to generate the transaction hash and receipt hash in a block header. See here for available options. e.g., 2
(DeriveShaConcat)
"governance.govparamcontract"
ADDRESS
. Address of the GovParam contract. e.g., 0xe733cb4d279da696f30d470f8c04decb54fcb0d2
"istanbul.epoch"
NUMBER
. A period in which votes are gathered in blocks. When an epoch end, all votes which haven't been passed will be cleared. e.g., 86400
"istanbul.committeesize"
NUMBER
. The number of validators in a committee.(sub
in chain configuration) e.g., 7
"reward.mintingamount"
STRING
. Amount of Peb minted when a block is generated. Double quotation marks are needed for a value. e.g., "9600000000000000000"
"reward.ratio"
STRING
. Distribution rate for a CN/KGF/KIR separated by "/"
. The sum of all values has to be 100
. e.g., "50/40/10"
meaning CN 50%, KGF 40%, KIR 10%
"reward.kip82ratio"
STRING
. Distribution ratio of the block proposer to stakers separated by "/"
. The sum of all values has to be "100"
. See KIP-82 for further details. e.g., "20/80"
means that the proposer takes 20% while stakers take 80%.
"reward.useginicoeff"
BOOL
. Use the Gini coefficient or not. true
, false
"reward.deferredtxfee"
BOOL
. The way of giving transaction fee to a proposer. If true, it means the tx fee will be summed up with block reward and distributed to the proposer, KIR and KGF. If not, all tx fee will be given to the proposer. true
, false
"reward.minimumstake"
STRING
. Amount of Klay required to be a CN (Consensus Node). Double quotation marks are needed for a value. e.g., "5000000"
"kip71.lowerboundbasefee"
NUMBER
. The lowest possible base fee. See KIP-71 for further details. e.g., 25000000000
"kip71.upperboundbasefee"
NUMBER
. The highest possible base fee. e.g., 750000000000
"kip71.gastarget"
NUMBER
. The block gas that base fee wants to achieve. The base fee increases when parent block contains more than gas target, and decreases when parent block contains less than gas target. e.g., 30000000
"kip71.basefeedenominator"
NUMBER
. Controls how fast base fee changes. e.g., 20
"kip71.maxblockgasusedforbasefee"
NUMBER
. The maximum block gas perceived in base fee calculation. e.g., 60000000
Return Value
String
Result of vote submission
Example
governance_showTally
The showTally
property provides the current tally of governance votes. It shows the aggregated approval rate in percentage. When it goes over 50%, the vote passes.
Parameters
None
Return Value
Tally
Each vote's value and approval rate in percentage
Example
governance_totalVotingPower
The totalVotingPower
property provides the sum of all voting power that CNs have. Each CN has 1.0 ~ 2.0 voting power. In "none"
, "single"
governance mode, totalVotingPower
don't provide any information.
Parameters
None
Return Value
Float
Total Voting Power or error message
Example
governance_myVotingPower
The myVotingPower
property provides the voting power of the node. The voting power can be 1.0 ~ 2.0. In "none"
, "single"
governance mode, totalVotingPower
don't provide any information.
Parameters
None
Return Value
Float
Node's Voting Power or error message
Example
governance_myVotes
The myVotes
property provides my vote information in the epoch. Each vote is stored in a block when the user's node generates a new block. After current epoch ends, this information is cleared.
Parameters
None
Return Value
Vote List
Node's Voting status in the epoch
- BlockNum
: The block number that this vote is stored
- Casted
: If this vote is stored in a block or not
- Key/Value
: The content of the vote
Example
governance_getChainConfig
The getChainConfig
returns the chain configuration at a specific block. If the parameter is not set, it returns the chain configuration at the latest block.
Parameters
QUANTITY | TAG
Integer or hexadecimal block number, or the string "earliest"
, "latest"
or "pending"
as in the default block parameter.
NOTE: The block number can be larger than the latest block number, in which case the API returns the tentative value based on the current chain state. The future governance parameters are subject to change via additional governance votes or GovParam contract state changes.
Return Value
JSON
Chain configuration at the given block number
Example
governance_chainConfig
The chainConfig
property provides the latest chain configuration. This is equivalent to chainConfigAt()
with an empty parameter.
governance_chainConfig
API will be deprecated since Klaytn v1.11 (see klaytn#1783). Use governance_getChainConfig
instead.
NOTE: the RPC API will be deprecated since v1.11. However, the governance.chainConfig
property in the Klaytn JavaScript console is removed since Klaytn v1.10.2.
NOTE: In versions earlier than Klaytn v1.10.0, this API returned the initial chain configuration. However, due to its confusing name, it is updated since Klaytn v1.10.0. To query the initial chain configuration, use chainConfigAt(0)
instead.
Parameters
None
Return Value
JSON
Current chain configuration
Example
governance_chainConfigAt
The chainConfigAt
returns the chain configuration at a specific block. If the parameter is not set, it returns the chain configuration at the latest block.
governance_chainConfigAt
API will be deprecated since Klaytn v1.11 (see klaytn#1783). Use governance_getChainConfig
instead.
Parameters
QUANTITY | TAG
Integer or hexadecimal block number, or the string "earliest"
, "latest"
or "pending"
as in the default block parameter.
NOTE: The block number can be larger than the latest block number, in which case the API returns the tentative value based on the current chain state. The future governance parameters are subject to change via additional governance votes or GovParam contract state changes.
Return Value
JSON
Chain configuration at the given block number
Example
governance_nodeAddress
The nodeAddress
property provides the address of the node that a user is using. It is derived from the nodekey and used to sign consensus messages. And the value of "governingnode"
has to be one of validator's node address.
Parameters
None
Return Value
ADDRESS
20 BYTE address of a node
Example
governance_getParams
The getParams
returns governance parameters at a specific block.
Parameters
QUANTITY | TAG
Integer or hexadecimal block number, or the string "earliest"
, "latest"
or "pending"
as in the default block parameter.
NOTE: The block number can be larger than the latest block number, in which case the API returns the tentative value based on the current chain state. The future governance parameters are subject to change via additional governance votes or GovParam contract state changes.
Return Value
JSON
governance parameters
Example
governance_itemsAt
The itemsAt
returns governance parameters at a specific block.
governance_itemsAt
API will be deprecated since Klaytn v1.11 (see klaytn#1783). Use governance_getParams
instead.
Parameters
QUANTITY | TAG
Integer or hexadecimal block number, or the string "earliest"
, "latest"
or "pending"
as in the default block parameter.
NOTE: In versions earlier than Klaytn v1.7.0, only integer block number, the string "earliest"
and "latest"
are available.
NOTE: The block number can be larger than the latest block number, in which case the API returns the tentative value based on the current chain state. The future governance parameters are subject to change via additional governance votes or GovParam contract state changes.
Return Value
JSON
governance items
Example
governance_pendingChanges
The pendingChanges
returns the list of items that have received enough number of votes but not yet finalized. At the end of the current epoch, these changes will be finalized and the result will be in effect from the epoch after next epoch.
Parameters
None
Return Value
Vote List
Currently pending changes composed of keys and values
Example
governance_votes
The votes
returns the votes from all nodes in the epoch. These votes are gathered from the header of each block.
Parameters
None
Return Value
Vote List
Current votes composed of keys, values and node addresses
Example
governance_idxCache
The idxCache
property returns an array of current idxCache in the memory cache. idxCache contains the block numbers where governance change happened. The cache can have up to 1000 block numbers in memory by default.
Parameters
None
Return Value
uint64 array
Block numbers where governance change happened
Example
governance_idxCacheFromDb
The idxCacheFromDb
returns an array that contains all block numbers on which a governance change ever happened. The result of idxCacheFromDb
is the same or longer than that of idxCache
Parameters
None
Return Value
uint64 array
Every block numbers where governance change happened
Example
governance_itemCacheFromDb
The itemCacheFromDb
returns the governance information stored in the given block. If no changes were stored in the given block, the function returns null
.
Parameters
uint64
A block number to query the governance change made in the block.
Return Value
JSON
Stored governance information at a given block
Example
governance_getStakingInfo
The getStakingInfo
returns staking information at a specific block. The result includes the following information.
BlockNum
: The block number at which the staking information is given.CouncilNodeAddrs
: The addresses of the consensus node.CouncilRewardAddrs
: The addresses to which the block reward of the associated nodes is sent.CouncilStakingAddrs
: The contract addresses in which the associated nodes deploy for staking.CouncilStakingAmounts
: The amount of KLAY which the associated nodes stake.Gini
: Gini coefficient.KIRAddr
: The contract address of KIR.PoCAddr
: The contract address of KGF. PoC is the previous name of KGF.UseGini
: The boolean value whether or not the Gini coefficient is used.
Note that the order of all addresses and the staking amounts are matched.
Parameters
QUANTITY | TAG
Integer of a block number, or the string "earliest"
, "latest"
or "pending"
, as in the default block parameter.
Return Value
JSON
Staking information
Example
governance_ getRewardsAccumulated
Returns the rewards information accumulated within the given block range [first, last]
.
NOTE: The block range should be less than 604800 (about 7 days) to protect endpoints from the resource exhaustion.
Parameters
QUANTITY | TAG
Accumulation start (first) block number, inclusive. Integer of a block number, or the string "earliest"
, "latest"
or "pending"
, as in the default block parameter.
QUANTITY | TAG
Accumulation end (last) block number, inclusive. Integer of a block number, or the string "earliest"
, "latest"
or "pending"
, as in the default block parameter.
Return Value
JSON
Rewards information
Example
Last updated