Skip to content

Commit

Permalink
feat: add initial implementation for pallet_account
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutoshvarma committed Aug 30, 2023
1 parent bd16dfd commit d5e60cd
Show file tree
Hide file tree
Showing 7 changed files with 691 additions and 4 deletions.
9 changes: 9 additions & 0 deletions Cargo.lock

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

29 changes: 28 additions & 1 deletion pallets/account/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,58 @@ repository.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
log = { workspace = true }
parity-scale-codec = { workspace = true }
scale-info = { workspace = true }

frame-support = { workspace = true }
frame-system = { workspace = true }
sp-core = { workspace = true }
sp-io = { workspace = true }
sp-runtime = { workspace = true }
sp-std = { workspace = true }

precompile-utils = { workspace = true }

# frontier
pallet-evm = { workspace = true }

# Astar
astar-primitives = { workspace = true }

[dev-dependencies]
hex = { workspace = true}
pallet-balances = { workspace = true }
pallet-ethereum = { workspace = true }
pallet-evm = { workspace = true }
pallet-timestamp = { workspace = true }

[features]
default = ["std"]
std = [
"hex/std",
"log/std",
"parity-scale-codec/std",
"scale-info/std",
"sp-std/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"frame-support/std",
"frame-system/std",
"astar-primitives/std",
"precompile-utils/std",
"pallet-evm/std",
"pallet-balances/std",
"pallet-timestamp/std",
"pallet-ethereum/std",
]
runtime-benchmarks = [
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
"astar-primitives/runtime-benchmarks",
"pallet-ethereum/runtime-benchmarks",
"pallet-evm/runtime-benchmarks",
]
try-runtime = ["frame-support/try-runtime"]
try-runtime = ["frame-support/try-runtime", "pallet-evm/try-runtime"]
Loading

0 comments on commit d5e60cd

Please sign in to comment.