Skip to content

Commit

Permalink
Change decimals 15 -> 18 due to EVM integration.
Browse files Browse the repository at this point in the history
  • Loading branch information
firke committed Dec 23, 2021
1 parent 2376eb7 commit 8338177
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion node/opportunity/spec/opportunity_raw.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"protocolId": "opt",
"properties": {
"ss58Format": 42,
"tokenDecimals": 15,
"tokenDecimals": 18,
"tokenSymbol": "OPT"
},
"forkBlocks": null,
Expand Down
2 changes: 1 addition & 1 deletion node/opportunity/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/";
const OPPORTUNITY_PROPERTIES: &str = r#"
{
"ss58Format": 42,
"tokenDecimals": 15,
"tokenDecimals": 18,
"tokenSymbol": "OPT"
}"#;
const OPPORTUNITY_PROTOCOL_ID: &str = "opt";
Expand Down
2 changes: 1 addition & 1 deletion node/standard/spec/standard_barocco_raw.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"protocolId": "standard_barocco",
"properties": {
"ss58Format": 42,
"tokenDecimals": 15,
"tokenDecimals": 18,
"tokenSymbol": "STND"
},
"relay_chain": "rococo",
Expand Down
2 changes: 1 addition & 1 deletion node/standard/spec/standard_kusama_raw.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"protocolId": "standard_kusama",
"properties": {
"ss58Format": 42,
"tokenDecimals": 15,
"tokenDecimals": 18,
"tokenSymbol": "STND"
},
"relay_chain": "kusama",
Expand Down
2 changes: 1 addition & 1 deletion node/standard/spec/standard_rococo_raw.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"protocolId": "standard_rococo",
"properties": {
"ss58Format": 42,
"tokenDecimals": 15,
"tokenDecimals": 18,
"tokenSymbol": "STND"
},
"relay_chain": "rococo",
Expand Down
2 changes: 1 addition & 1 deletion node/standard/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/";
const STANDARD_PROPERTIES: &str = r#"
{
"ss58Format": 42,
"tokenDecimals": 15,
"tokenDecimals": 18,
"tokenSymbol": "STND"
}"#;
const STANDARD_PROTOCOL_ID: &str = "standard";
Expand Down

0 comments on commit 8338177

Please sign in to comment.