KIP-290: sync interface with kaia#871, #872, #876#115
Merged
hyunsooda merged 2 commits intokaiachain:mainfrom May 6, 2026
Merged
KIP-290: sync interface with kaia#871, #872, #876#115hyunsooda merged 2 commits intokaiachain:mainfrom
hyunsooda merged 2 commits intokaiachain:mainfrom
Conversation
- Add string name field to NodeInfo struct (between blsInfo and metadata) - Remove name from metadata JSON schema; add note that name is a top-level NodeInfo field - Update NodeCreated event: remove gcId param (now assigned via assignGcId) - Update EpochTransitionProcessed: slotFactor → epochVACount - Update processSystemTransition: epochSlotFactor → epochVACount - Add errors: OnlySuspender, OnlyConfigurator, InsufficientNodeBalance, GcIdAlreadyAssigned, GcIdNotAssigned - Add events: ValidatorSuspended, ValidatorUnsuspended, SuspenderUpdated, ConfiguratorUpdated - Add admin functions: updateSuspender, updateConfigurator, assignGcId, revokeGcId - Update createNode signature: add name param before metadata - Update admin section: reflect suspender/configurator roles - Add getters: getSuspender, getConfigurator, getEpochVACount (replaces getSlotFactor) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
0d5aa04 to
1160b31
Compare
hyeonLewis
approved these changes
Apr 30, 2026
- Replace SuspenderUpdated/ConfiguratorUpdated with unified AddressConfigUpdated - Add UintConfigUpdated for config update events - Add GcIdAssigned, CandidateReadied, CandidateUnreadied, ValidatorsInitialized Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Contributor
Author
|
@hyeonLewis Sorry for the last update. Updated by https://github.com/kaiachain/system-contracts/pull/157. |
ian0371
approved these changes
May 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Sync
IAddressBookV2interface andNodeInfostruct in KIP-290 with kaia#871, #872, #876.kaia#871 —
slotFactor→epochVACountrename inprocessSystemTransitionandEpochTransitionProcessedkaia#872 — RBAC roles: add
updateSuspender,updateConfigurator,assignGcId; add errorsOnlySuspender,OnlyConfigurator,GcIdAlreadyAssigned,InsufficientNodeBalance; add eventsSuspenderUpdated,ConfiguratorUpdatedkaia#876 —
NodeInfo.namefield;createNodenameparam;revokeGcId; fixNodeCreatedevent (removegcIdparam); addGcIdNotAssignederror; removenamefrom metadata JSON schema