-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
2 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
package networktest | ||
|
||
// local testnet genesis denomination meta-data | ||
// copied from https://github.com/e-money/networks/blob/master/lilmermaid-16/genesis.json | ||
var denomMetadata = `[ | ||
{ | ||
"base": "ungm", | ||
"denom_units": [ | ||
{ | ||
"aliases": [], | ||
"denom": "ungm", | ||
"exponent": 0 | ||
}, | ||
{ | ||
"aliases": [], | ||
"denom": "ngm", | ||
"exponent": 6 | ||
} | ||
], | ||
"description": "e-Money NGM staking token", | ||
"display": "NGM" | ||
}, | ||
{ | ||
"base": "echf", | ||
"denom_units": [ | ||
{ | ||
"aliases": [], | ||
"denom": "echf", | ||
"exponent": 6 | ||
} | ||
], | ||
"description": "e-Money CHF stablecoin", | ||
"display": "ECHF" | ||
}, | ||
{ | ||
"base": "edkk", | ||
"denom_units": [ | ||
{ | ||
"aliases": [], | ||
"denom": "edkk", | ||
"exponent": 6 | ||
} | ||
], | ||
"description": "e-Money DKK stablecoin", | ||
"display": "EDKK" | ||
}, | ||
{ | ||
"base": "eeur", | ||
"denom_units": [ | ||
{ | ||
"aliases": [], | ||
"denom": "eeur", | ||
"exponent": 6 | ||
} | ||
], | ||
"description": "e-Money EUR stablecoin", | ||
"display": "EEUR" | ||
}, | ||
{ | ||
"base": "enok", | ||
"denom_units": [ | ||
{ | ||
"aliases": [], | ||
"denom": "enok", | ||
"exponent": 6 | ||
} | ||
], | ||
"description": "e-Money NOK stablecoin", | ||
"display": "ENOK" | ||
}, | ||
{ | ||
"base": "esek", | ||
"denom_units": [ | ||
{ | ||
"aliases": [], | ||
"denom": "esek", | ||
"exponent": 6 | ||
} | ||
], | ||
"description": "e-Money SEK stablecoin", | ||
"display": "ESEK" | ||
} | ||
]` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters