-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(accounts): use account number as state prefix for account state #18664
Conversation
WalkthroughWalkthroughThe overall change involves the introduction of an Changes
TipsChat with CodeRabbit Bot (
|
@testinginprod your pull request is missing a changelog! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review Status
Actionable comments generated: 0
Configuration used: CodeRabbit UI
Files ignored due to filter (1)
- x/accounts/v1/genesis.pb.go
Files selected for processing (7)
- api/cosmos/accounts/v1/genesis.pulsar.go (14 hunks)
- proto/cosmos/accounts/v1/genesis.proto (1 hunks)
- store/root/store_test.go (1 hunks)
- x/accounts/genesis.go (3 hunks)
- x/accounts/internal/implementation/context.go (3 hunks)
- x/accounts/internal/implementation/context_test.go (5 hunks)
- x/accounts/keeper.go (8 hunks)
Files skipped from review due to trivial changes (1)
- store/root/store_test.go
Additional comments: 19
api/cosmos/accounts/v1/genesis.pulsar.go (5)
557-622: The summary mentions renaming of
_GenesisAccount_3_list
to_GenesisAccount_4_list
, but the provided code does not show any such renaming. It only shows the final state of the code with_GenesisAccount_4_list
.702-707: The addition of the
AccountNumber
field to theGenesisAccount
struct aligns with the PR objectives and the summary provided.1908-1911: The summary does not mention any changes to the
KVPair
struct, but the provided code includes this struct.699-712: > Note: This review was outside the patches, so it was mapped to the patch with the greatest overlap. Original lines [624-1011]
The summary does not mention the
fastReflection_GenesisAccount
type, but the provided code includes this type and related methods.
- 1912-1925: The summary does not mention the
fastReflection_KVPair
type, but the provided code includes this type and related methods.proto/cosmos/accounts/v1/genesis.proto (1)
- 18-24: The changes to the
GenesisAccount
message are consistent with the PR objectives and the provided summary. The addition of theaccount_number
field and the update to thestate
field's number from 3 to 4 are correctly implemented.x/accounts/genesis.go (3)
20-30: The addition of
AccountNumber
togenState
and its usage in theexportAccount
method call is consistent with the PR's objective to use account numbers as prefixes for state keys.41-58: The changes to the
exportAccount
method, including the addition ofAccountNumber
to theGenesisAccount
struct and the use of a prefixed pair range for theAccountsState.Walk
method, align with the PR's objective to use account numbers as prefixes.89-100: The updates to the
importAccount
method, including setting the account number and using it in theAccountsState.Set
method call, are consistent with the PR's objective to use account numbers as prefixes for state keys.x/accounts/internal/implementation/context.go (1)
- 66-66: Verify the length of
AccountStatePrefix
is intended to be 255 and that it aligns with the system's requirements for prefix lengths.
The new context from the shell commands shows that
AccountStatePrefix
is used in multiple places within the codebase:
- It is used to initialize
AccountsState
inkeeper.go
.- It is used in a
Get
method call incontext_test.go
.- It is declared as a new prefix with a length of 255 in
context.go
.- It is used in the
prefixstore.New
call incontext.go
.Given this usage, it seems that the length of 255 is intentional and consistently used across the system for the account state prefix. There is no indication that this length is incorrect or inconsistent with the system's requirements for prefix lengths.
Final review comment:
The length of `AccountStatePrefix` is confirmed to be intentionally set to 255 and is consistently used across the system. The changes align with the PR objectives and are correctly implemented.
x/accounts/internal/implementation/context_test.go (5)
5-5: The addition of the
encoding/binary
package is appropriate for handling binary encoding operations as per the PR's objective to change the storage method.21-21: The update to the
MakeAccountContext
function call to use an integer for the account number is consistent with the PR's objective to use account numbers as prefixes.42-44: The test correctly verifies that the account state is stored with the new prefix format, which includes the account number in big-endian format.
59-61: The update to the
MakeAccountContext
function call and the test for the module execution response are consistent with the PR's changes.70-72: The update to the
MakeAccountContext
function call and the test for the query module response are consistent with the PR's changes.x/accounts/keeper.go (4)
86-90: The
AccountsState
data structure has been updated to use composite keys of typecollections.Pair[uint64, []byte]
instead of simple[]byte
keys, aligning with the PR objective to use account numbers as prefixes. This change will affect how account state values are stored and accessed, ensuring a constant size for the prefixes and potentially improving the efficiency of state key storage.125-130: The comment above
AccountsState
explains its usage for genesis import and export, providing a mapping between account numbers and account state keys to their values. This is a helpful comment for maintainability, as it clarifies the purpose of the data structure within the system.158-158: The
makeAccountContext
function signature has been correctly updated to include theaccountNumber uint64
parameter, which is used to create a context for an account. This change is consistent with the PR's objective to use account numbers in account state management.365-365: The variable
msgInterfaceName
has been renamed from "cosmos.accounts.Msg.v1" to "cosmos.accounts.v1.MsgInterface". This change reflects a modification in the naming convention or structure of message interfaces and should be verified across the codebase to ensure consistency.
The variable
msgInterfaceName
has been successfully renamed to "cosmos.accounts.v1.MsgInterface" and is consistent within the codebase.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
@@ -194,8 +194,14 @@ func (k Keeper) Execute( | |||
return nil, err | |||
} | |||
|
|||
// get account number |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// get account number |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
@@ -86,7 +86,7 @@ func NewKeeper( | |||
AccountNumber: collections.NewSequence(sb, AccountNumberKey, "account_number"), | |||
AccountsByType: collections.NewMap(sb, AccountTypeKeyPrefix, "accounts_by_type", collections.BytesKey, collections.StringValue), | |||
AccountByNumber: collections.NewMap(sb, AccountByNumber, "account_by_number", collections.BytesKey, collections.Uint64Value), | |||
AccountsState: collections.NewMap(sb, implementation.AccountStatePrefix, "accounts_state", collections.BytesKey, collections.BytesValue), | |||
AccountsState: collections.NewMap(sb, implementation.AccountStatePrefix, "accounts_state", collections.PairKeyCodec(collections.Uint64Key, collections.BytesKey), collections.BytesValue), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It'd be good to add a godoc or inline comment mentioning the keys and value
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can add more docs in case it's not good, lmk
* feat: secp256k1 public key constant time (cosmos#18026) Signed-off-by: bizk <santiago.yanzon1999@gmail.com> * chore: Fixed changelog duplicated items (cosmos#18628) * adr: Un-Ordered Transaction Inclusion (cosmos#18553) Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com> * docs: lint ADR-070 (cosmos#18634) * fix(baseapp)!: postHandler should run regardless of result (cosmos#18627) * docs: fix typos in adr-007-specialization-groups.md (cosmos#18635) * chore: alphabetize labels (cosmos#18640) * docs(x/circuit): add note on ante handler (cosmos#18637) Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com> * fix: telemetry metric label variable (cosmos#18643) * chore: typos fix (cosmos#18642) * refactor(store/v2): updates from integration (cosmos#18633) * build(deps): Bump actions/setup-go from 4 to 5 (cosmos#18647) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> * feat(store/v2): snapshot manager (cosmos#18458) * chore(client/v2): fix typos in the README.md (cosmos#18657) * fix(baseapp): protocompat.go gogoproto.Merge does not work with custom types (cosmos#18654) Co-authored-by: unknown unknown <unknown@unknown> * chore: fix several minor typos (cosmos#18660) * chore(tools/confix/cmd): fix typo in view.go (cosmos#18659) * refactor(x/staking): check duplicate addresses in StakeAuthorization's params (cosmos#18655) * feat(accounts): use gogoproto API instead of protov2. (cosmos#18653) Co-authored-by: unknown unknown <unknown@unknown> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * fix(store/commitment/iavl): honor tree.Remove error firstly (cosmos#18651) * build(deps): Bump actions/stale from 8 to 9 (cosmos#18656) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(docs): fix typos & wording in docs (cosmos#18667) * chore: fix several typos. (cosmos#18666) * feat(telemetry): enable `statsd` and `dogstatsd` telemetry sinks (cosmos#18646) Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com> Co-authored-by: marbar3778 <marbar3778@yahoo.com> Co-authored-by: Marko <marko@baricevic.me> * feat(store/v2): add SetInitialVersion in SC (cosmos#18665) * feat(client/keys): support display discreetly for `keys add` (cosmos#18663) Co-authored-by: Julien Robert <julien@rbrt.fr> * ci: add misspell action (cosmos#18671) * chore: typos fix by misspell-fixer (cosmos#18683) Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: Julien Robert <julien@rbrt.fr> * chore: add v0.50.2 changelog to main (cosmos#18682) * build(deps): Bump github.com/jhump/protoreflect from 1.15.3 to 1.15.4 in /tests (cosmos#18678) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * refactor(bank): remove .String() calls (cosmos#18175) Co-authored-by: Facundo <facundomedica@gmail.com> * ci: use codespell instead of misspell-fixer (cosmos#18686) Co-authored-by: Marko <marbar3778@yahoo.com> * feat(gov): add proposal types and spam votes (cosmos#18532) * feat(accounts): use account number as state prefix for account state (cosmos#18664) Co-authored-by: unknown unknown <unknown@unknown> * chore: typos fixes by cosmos-sdk bot (cosmos#18689) Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: Julien Robert <julien@rbrt.fr> Co-authored-by: marbar3778 <marbar3778@yahoo.com> * feat(client/keys): support display discreetly for keys mnemonic (cosmos#18688) * refactor: remove panic usage in keeper methods (cosmos#18636) * ci: rename pr name in misspell job (cosmos#18693) Co-authored-by: Marko <marko@baricevic.me> * build(deps): Bump github.com/pelletier/go-toml/v2 from 2.1.0 to 2.1.1 in /tools/confix (cosmos#18702) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> * feat(client/keys): support display discreetly for keys export (cosmos#18684) * feat(x/gov): better gov genesis validation (cosmos#18707) --------- Signed-off-by: bizk <santiago.yanzon1999@gmail.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: Carlos Santiago Yanzon <27785807+bizk@users.noreply.github.com> Co-authored-by: yihuang <huang@crypto.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com> Co-authored-by: Facundo Medica <14063057+facundomedica@users.noreply.github.com> Co-authored-by: Akaonetwo <107335783+Akare123@users.noreply.github.com> Co-authored-by: Marko <marbar3778@yahoo.com> Co-authored-by: Julien Robert <julien@rbrt.fr> Co-authored-by: dreamweaverxyz <153101746+dreamweaverxyz@users.noreply.github.com> Co-authored-by: Pioua <136521243+dzizazda@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: cool-developer <51834436+cool-develope@users.noreply.github.com> Co-authored-by: leonarddt05 <139609434+leonarddt05@users.noreply.github.com> Co-authored-by: testinginprod <98415576+testinginprod@users.noreply.github.com> Co-authored-by: unknown unknown <unknown@unknown> Co-authored-by: Sukey <35202440+sukey2008@users.noreply.github.com> Co-authored-by: axie <152680487+azukiboy@users.noreply.github.com> Co-authored-by: Luke Ma <867273263@qq.com> Co-authored-by: Emmanuel T Odeke <emmanuel@orijtech.com> Co-authored-by: 0xn4de <109149873+0xn4de@users.noreply.github.com> Co-authored-by: hattizai <150505746+hattizai@users.noreply.github.com> Co-authored-by: Devon Bear <itsdevbear@berachain.com> Co-authored-by: Marko <marko@baricevic.me> Co-authored-by: Halimao <1065621723@qq.com> Co-authored-by: Cosmos SDK <113218068+github-prbot@users.noreply.github.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: Facundo <facundomedica@gmail.com> Co-authored-by: Likhita Polavarapu <78951027+likhita-809@users.noreply.github.com>
Description
Before this PR account state was stored as:
After this PR account state is stored as:
This gives some nice properties:
Author Checklist
All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.
I have...
!
in the type prefix if API or client breaking changeCHANGELOG.md
Reviewers Checklist
All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.
I have...
Summary by CodeRabbit
New Features
Bug Fixes
Documentation
Refactor
Style