-
Notifications
You must be signed in to change notification settings - Fork 510
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
Adding the BlueChip Chain #684
Closed
Closed
Changes from 6 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
3296aca
Create bluechip.png
Bluechip23 defed4e
Add files via upload
Bluechip23 3145db5
Delete images/bluechip/bluechip.png
Bluechip23 3b58557
Rename newlogo.png to .png
Bluechip23 a0a0d7d
Rename .png to bluechip.png
Bluechip23 0d6da97
Create bluechip
Bluechip23 14d5d4e
Update and rename bluechip to bluechip.json and http to https
Bluechip23 907920a
removed coin gecko from stake currency
Bluechip23 6861c85
Merge branch 'chainapsis:main' into main
Bluechip23 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,51 @@ | ||
{ | ||
"chainId": "bluechip_1", | ||
"chainName": "BlueChip", | ||
"chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/bluechip/bluechip.png", | ||
"rpc": "http://67.218.8.88:26660/", | ||
"rest": "http://67.28.8.88:1318/", | ||
"nodeProvider": { | ||
"name": "CryptoDungeon", | ||
"email": "[email protected]", | ||
"website":"https://cryptodungeon.org/" | ||
}, | ||
"bip44": { | ||
"coinType": 118 | ||
}, | ||
"bech32Config": { | ||
"bech32PrefixAccAddr": "bluechip", | ||
"bech32PrefixAccPub": "bluechippub", | ||
"bech32PrefixValAddr": "bluechipvaloper", | ||
"bech32PrefixValPub": "bluechipvaloperpub", | ||
"bech32PrefixConsAddr": "bluechipvalcons", | ||
"bech32PrefixConsPub": "bluechipvalconspub" | ||
}, | ||
"currencies": [ | ||
{ | ||
"coinDenom": "BCP", | ||
"coinMinimalDenom": "ubluechip", | ||
"coinDecimals": 6 | ||
} | ||
], | ||
"feeCurrencies": [ | ||
{ | ||
"coinDenom": "BCP", | ||
"coinMinimalDenom": "ubluechip", | ||
"coinDecimals": 6, | ||
"gasPriceStep": { | ||
"low": 0.01, | ||
"average": 0.025, | ||
"high": 0.03 | ||
} | ||
} | ||
], | ||
"stakeCurrency": { | ||
"coinDenom": "BCP", | ||
"coinMinimalDenom": "ubluechip", | ||
"coinDecimals": 6, | ||
"coinGeckoId": "bluechip" | ||
}, | ||
"features": [ | ||
"cosmwasm" | ||
] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Could you replace the url scheme to https? http wouldn't work on iOS Keplr Mobile for now.
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.
@editaahn I am getting this error "Chain identifier unmatched: (expected: bluechip_1, actual: bluechip)" when trying to run the verification locally. Where is this pulling information from? Our chainId is bluechip_1
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.
The chain identifier is
bluechip_1
! Try it for the JSON name and the image directory name.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.
I believe that worked. Although it may be worth changing to bluechip-1 before we add more than our original validator to make things more convenient...
We are just working on getting our restAPIs to sync with the https I will hold off on re submitting until then.