You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RoundRobin mode simply iterates among available alive nodes. This was the default behavior prior to this release.
HighestHead mode picks a node having the highest reported head number among other alive nodes. When several nodes have the same latest head number, the strategy sticks to the last used node.
For chains having NODE_NO_NEW_HEADS_THRESHOLD=0 (such as Arbitrum, Optimism), the implementation will fall back to RoundRobin mode.
New keys eth chain command
This can also be accessed at /v2/keys/evm/chain.
Usage examples:
Manually (re)set a nonce:
chainlink keys eth chain --address "0xEXAMPLE" --evmChainID 99 --setNextNonce 42
Enable a key for a particular chain:
chainlink keys eth chain --address "0xEXAMPLE" --evmChainID 99 --enable
Disable a key for a particular chain:
chainlink keys eth chain --address "0xEXAMPLE" --evmChainID 99 --disable
Changed
The setnextnonce local client command has been removed, and replaced by a more general key/chain client command.
chainlink admin users update command is replaced with chainlink admin users chrole (only the role can be changed for a user)