clique
The clique
API provides access to the state of the clique consensus engine. This API can be used to manage signer votes and to check the health of a private network.
clique_getSnapshot
Retrieves a snapshot of all clique state at a given block.
Console
clique.getSnapshot(blockNumber)
RPC
{"method": "clique_getSnapshot", "params": [blockNumber]}
Example:
clique_getSnapshotAtHash
Retrieves the state snapshot at a given block.
Console
clique.getSnapshotAtHash(blockHash)
RPC
{"method": "clique_getSnapshotAtHash", "params": [blockHash]}
clique_getSigner
Returns the signer for a specific clique block. Can be called with either a blocknumber, blockhash or an rlp encoded blob. The RLP encoded blob can either be a block or a header.
Console
clique.getSigner(blockNrOrHashOrRlp)
RPC
{"method": "clique_getSigner", "params": [string]}
clique_getSigners
Retrieves the list of authorized signers at the specified block number.
Console
clique.getSigners(blockNumber)
RPC
{"method": "clique_getSigners", "params": [blockNumber]}
clique_getSignersAtHash
Retrieves the list of authorized signers at the specified block hash.
Console
clique.getSignersAtHash(blockHash)
RPC
{"method": "clique_getSignersAtHash", "params": [string]}
clique_proposals
Returns the current proposals the node is voting on.
Console
clique.proposals()
RPC
{"method": "clique_proposals", "params": []}
clique_propose
Adds a new authorization proposal that the signer will attempt to push through. If the auth parameter is true, the local signer votes for the given address to be included in the set of authorized signers. With auth set to false, the vote is against the address.
Console
clique.propose(address, auth)
RPC
{"method": "clique_propose", "params": [address, auth]}
clique_discard
This method drops a currently running proposal. The signer will not cast further votes (either for or against) the address.
Console
clique.discard(address)
RPC
{"method": "clique_discard", "params": [address]}
clique_status
This is a debugging method which returns statistics about signer activity for the last 64 blocks. The returned object contains the following fields:
inturnPercent: percentage of blocks signed in-turn
sealerActivity: object containing signer addresses and the number of blocks signed by them
numBlocks: number of blocks analyzed
Console
clique.status()
RPC
{"method": "clique_status", "params": []}
Example:
Last updated