-
Notifications
You must be signed in to change notification settings - Fork 685
add nBTC to osmosis #1430
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add nBTC to osmosis #1430
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -251,7 +251,13 @@ | |
| "coinMinimalDenom": "factory/osmo1x7s7a2erqspkm6e79n7yh7fw3yh7xx4lt54mxg/uquark", | ||
| "coinDecimals": 6, | ||
| "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/osmosis/factory/osmo1x7s7a2erqspkm6e79n7yh7fw3yh7xx4lt54mxg/uquark.png" | ||
| } | ||
| }, | ||
| { | ||
| "coinDenom": "NBTC", | ||
| "coinMinimalDenom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", | ||
| "coinDecimals": 15, | ||
| "coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/osmosis/ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F.png" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This Useful? React with 👍 / 👎. |
||
| } | ||
| ], | ||
| "feeCurrencies": [ | ||
| { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
currenciesI checked the repo validator and PR workflow:
.github/workflows/pull-request-validation.yml:35-40runssrc/index.tson every changed JSON file, andcheckCurrenciesinsrc/validate.ts:283-328rejectsibc/*entries on Osmosis unless they match one of four hard-coded exceptions.ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8Fis not one of those exceptions, so this change makescosmos/osmosis.jsonfail validation unless the validator is updated in the same commit.Useful? React with 👍 / 👎.