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.
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.
Key | Description |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Return Value
Type | Description |
---|---|
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
Type | Description |
---|---|
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
Type | Description |
---|---|
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
Type | Description |
---|---|
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
Type | Description |
---|---|
Vote List | Node's Voting status in the epoch
- |
Example
governance_chainConfig
The chainConfig
property provides the initial chain configuration. Because it just stores the initial configuration, if there were changes in the governance made by voting, the result of chainConfig
will differ from the current states. To see the current information, please use itemsAt
.
Parameters
None
Return Value
Type | Description |
---|---|
JSON | Current chain configuration |
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
Type | Description |
---|---|
ADDRESS | 20 BYTE address of a node |
Example
governance_itemsAt
The itemsAt
returns governance items at specific block. It is the result of previous voting of the block and used as configuration for chain at the given block number.
Parameters
Type | Description |
---|---|
QUANTITY | TAG | Integer or hexadecimal block number, or the string |
NOTE: In versions earlier than Klaytn v1.7.0, only integer block number, the string "earliest"
and "latest"
are available.
Return Valuex
Type | Description |
---|---|
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
Type | Description |
---|---|
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
Type | Description |
---|---|
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
Type | Description |
---|---|
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
Type | Description |
---|---|
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
Type | Description |
---|---|
uint64 | A block number to query the governance change made in the block. |
Return Value
Type | Description |
---|---|
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.KGFAddr
: The contract address 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
Type | Description |
---|---|
QUANTITY | TAG | Integer of a block number, or the string |
Return Value
Type | Description |
---|---|
JSON | Staking information |
Example
Last updated