Skip to content

Commit

Permalink
Featute/2 send atla token (#11)
Browse files Browse the repository at this point in the history
* add zombienet file

* add atla asset transactor

* refactor
  • Loading branch information
N1ghtStorm authored Jan 28, 2025
1 parent 0ea1249 commit 688e7bc
Show file tree
Hide file tree
Showing 5 changed files with 540 additions and 426 deletions.
8 changes: 4 additions & 4 deletions node/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ pub fn local_session_keys(keys: AuraId) -> runtime::SessionKeys {
pub fn development_config() -> ChainSpec {
// Give your base currency a unit name and decimal places
let mut properties = sc_chain_spec::Properties::new();
properties.insert("tokenSymbol".into(), "UNIT".into());
properties.insert("tokenDecimals".into(), 12.into());
properties.insert("tokenSymbol".into(), "ATLA".into());
properties.insert("tokenDecimals".into(), 18.into());
properties.insert("ss58Format".into(), 42.into());

ChainSpec::builder(
Expand Down Expand Up @@ -114,8 +114,8 @@ pub fn development_config() -> ChainSpec {
pub fn local_testnet_config() -> ChainSpec {
// Give your base currency a unit name and decimal places
let mut properties = sc_chain_spec::Properties::new();
properties.insert("tokenSymbol".into(), "UNIT".into());
properties.insert("tokenDecimals".into(), 12.into());
properties.insert("tokenSymbol".into(), "ATLA".into());
properties.insert("tokenDecimals".into(), 18.into());
properties.insert("ss58Format".into(), 42.into());

#[allow(deprecated)]
Expand Down
Loading

0 comments on commit 688e7bc

Please sign in to comment.