Skip to content

Commit

Permalink
Fixed supported currencies blockchain names.
Browse files Browse the repository at this point in the history
  • Loading branch information
adelarja committed Jul 19, 2023
1 parent 245ebcb commit a9020e9
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions node/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -867,10 +867,11 @@ fn foucoco_genesis(
authorized_accounts: authorized_oracles,
supported_currencies: vec![
foucoco_runtime::AssetId::new(b"Kusama".to_vec(), b"KSM".to_vec()),
foucoco_runtime::AssetId::new(b"Brazilian Real".to_vec(), b"BRL".to_vec()),
foucoco_runtime::AssetId::new(b"United States Dollar".to_vec(), b"USD".to_vec()),
foucoco_runtime::AssetId::new(b"Tanzanian Shilling".to_vec(), b"TZS".to_vec()),
foucoco_runtime::AssetId::new(b"Mexican Peso".to_vec(), b"MXN".to_vec()),
foucoco_runtime::AssetId::new(b"Stellar".to_vec(), b"XLM".to_vec()),
foucoco_runtime::AssetId::new(b"FIAT".to_vec(), b"BRL-USD".to_vec()),
foucoco_runtime::AssetId::new(b"FIAT".to_vec(), b"USD-USD".to_vec()),
foucoco_runtime::AssetId::new(b"FIAT".to_vec(), b"TZS-USD".to_vec()),
foucoco_runtime::AssetId::new(b"FIAT".to_vec(), b"MXN-USD".to_vec()),
],
batching_api: b"https://dia-00.pendulumchain.tech/currencies".to_vec(),
coin_infos_map: vec![],
Expand Down

0 comments on commit a9020e9

Please sign in to comment.