Skip to content
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: pallet_unified_accounts implementation #1019

Merged
merged 30 commits into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
bd16dfd
wip
ashutoshvarma Aug 23, 2023
d5e60cd
feat: add initial implementation for `pallet_account`
ashutoshvarma Aug 30, 2023
cff5b2a
feat: add test helpers and refactor
ashutoshvarma Aug 31, 2023
28a53aa
feat: setup mock and add tests for eip712 sig
ashutoshvarma Aug 31, 2023
1a6b8b0
feat: add `pallet_account` to local runtime
ashutoshvarma Aug 31, 2023
570cd51
fix: runtime-benchmarks build
ashutoshvarma Sep 1, 2023
d8826ac
feat: add claim js script
ashutoshvarma Sep 1, 2023
cf86aba
feat: add tests for lookup and on kill
ashutoshvarma Sep 8, 2023
51e00b7
feat: add more tests
ashutoshvarma Sep 11, 2023
9cfb429
feat: add benchmarks
ashutoshvarma Sep 11, 2023
cb5bef7
fix: build issues
ashutoshvarma Sep 11, 2023
dbffa3a
feat: add to shibuya
ashutoshvarma Sep 13, 2023
19dbd0a
feat: update xvm integration tests
ashutoshvarma Sep 13, 2023
10dfa24
feat: add intergration test for lookup
ashutoshvarma Sep 13, 2023
b738fb0
fix: formatting
ashutoshvarma Sep 13, 2023
1de5d16
fix: integration tests
ashutoshvarma Sep 14, 2023
2dbc09b
feat: apply code review suggestions
ashutoshvarma Sep 21, 2023
f9014ed
feat: update pallet directory name
ashutoshvarma Sep 21, 2023
97bd0e1
feat: expand tests
ashutoshvarma Sep 21, 2023
27ecc4c
fix: benchmarks and weights
ashutoshvarma Sep 25, 2023
434e940
feat: use claim account in integration tests
ashutoshvarma Sep 25, 2023
775f1b8
feat: apply code suggestions
ashutoshvarma Sep 25, 2023
a29f284
Merge branch 'master' into feat/account-unification
ashutoshvarma Sep 25, 2023
74e83da
feat: remove `SignatureHelper` trait
ashutoshvarma Sep 26, 2023
5e9a0b8
feat: update claim script
ashutoshvarma Sep 26, 2023
aa587d0
feat: add check in default claim to manage collisions
ashutoshvarma Sep 26, 2023
2609aec
fix: benchmarks
ashutoshvarma Sep 26, 2023
037028a
feat: inline `add_mappings()` method
ashutoshvarma Sep 26, 2023
9fcc5a6
feat: apply benchmarks weights & code suggestions
ashutoshvarma Sep 26, 2023
817ea7e
feat: re-run `pallet_balances` benchmarks
ashutoshvarma Sep 26, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 29 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ pallet-xc-asset-config = { path = "./pallets/xc-asset-config", default-features
pallet-xvm = { path = "./pallets/xvm", default-features = false }
pallet-xcm = { path = "./pallets/pallet-xcm", default-features = false }
pallet-ethereum-checked = { path = "./pallets/ethereum-checked", default-features = false }
pallet-account = { path = "./pallets/account", default-features = false }
pallet-unified-accounts = { path = "./pallets/unified-accounts", default-features = false }

astar-primitives = { path = "./primitives", default-features = false }

Expand Down
174 changes: 0 additions & 174 deletions pallets/account/src/impls.rs

This file was deleted.

Loading
Loading