forked from chainapsis/keplr-chain-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'chainapsis:main' into main
- Loading branch information
Showing
17 changed files
with
195 additions
and
12 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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
module.exports = { | ||
trailingComma: "all", | ||
tabWidth: 2, | ||
endOfLine: "auto", | ||
}; |
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
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,54 @@ | ||
{ | ||
"chainId": "coreum-testnet-1", | ||
"chainName": "Coreum Testnet", | ||
"chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/coreum-testnet/chain.png", | ||
"rpc": "https://full-node.testnet-1.coreum.dev:26657", | ||
"rest": "https://full-node.testnet-1.coreum.dev:1317", | ||
"nodeProvider": { | ||
"name": "Coreum Full Node", | ||
"website":"https://www.coreum.com/", | ||
"email": "[email protected]" | ||
}, | ||
"bip44": { | ||
"coinType": 990 | ||
}, | ||
"bech32Config": { | ||
"bech32PrefixAccAddr": "core", | ||
"bech32PrefixAccPub": "corepub", | ||
"bech32PrefixValAddr": "corevaloper", | ||
"bech32PrefixValPub": "corevaloperpub", | ||
"bech32PrefixConsAddr": "corevalcons", | ||
"bech32PrefixConsPub": "corevalconspub" | ||
}, | ||
"currencies": [ | ||
{ | ||
"coinDenom": "TESTCORE", | ||
"coinMinimalDenom": "utestcore", | ||
"coinDecimals": 6, | ||
"coinGeckoId": "coreum" | ||
} | ||
], | ||
"feeCurrencies": [ | ||
{ | ||
"coinDenom": "TESTCORE", | ||
"coinMinimalDenom": "utestcore", | ||
"coinDecimals": 6, | ||
"coinGeckoId": "coreum", | ||
"gasPriceStep": { | ||
"low": 0.0625, | ||
"average": 0.0625, | ||
"high": 0.0625 | ||
} | ||
} | ||
], | ||
"stakeCurrency": { | ||
"coinDenom": "TESTCORE", | ||
"coinMinimalDenom": "utestcore", | ||
"coinDecimals": 6, | ||
"coinGeckoId": "coreum" | ||
}, | ||
"features": [ | ||
"cosmwasm" | ||
] | ||
} | ||
|
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
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
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": "nibiru-devnet-1", | ||
"chainName": "nibirudevnet", | ||
"chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nibiru-devnet/chain.png", | ||
"rpc": "https://rpc.devnet-1.nibiru.fi/", | ||
"rest": "https://lcd.devnet-1.nibiru.fi/", | ||
"nodeProvider": { | ||
"name": "Nibiru Team", | ||
"email": "[email protected]", | ||
"website": "https://nibiru.fi" | ||
}, | ||
"bip44": { | ||
"coinType": 118 | ||
}, | ||
"bech32Config": { | ||
"bech32PrefixAccAddr": "nibi", | ||
"bech32PrefixAccPub": "nibipub", | ||
"bech32PrefixValAddr": "nibivaloper", | ||
"bech32PrefixValPub": "nibivaloperpub", | ||
"bech32PrefixConsAddr": "nibivalcons", | ||
"bech32PrefixConsPub": "nibivalconspub" | ||
}, | ||
"currencies": [ | ||
{ | ||
"coinDenom": "NIBI", | ||
"coinMinimalDenom": "unibi", | ||
"coinDecimals": 6, | ||
"coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nibiru-devnet/chain.png" | ||
} | ||
], | ||
"feeCurrencies": [ | ||
{ | ||
"coinDenom": "NIBI", | ||
"coinMinimalDenom": "unibi", | ||
"coinDecimals": 6, | ||
"coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nibiru-devnet/chain.png", | ||
"gasPriceStep": { | ||
"low": 0.05, | ||
"average": 0.125, | ||
"high": 0.2 | ||
} | ||
} | ||
], | ||
"stakeCurrency": { | ||
"coinDenom": "NIBI", | ||
"coinMinimalDenom": "unibi", | ||
"coinDecimals": 6, | ||
"coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nibiru-devnet/chain.png" | ||
}, | ||
"features": ["cosmwasm"] | ||
} |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
{ | ||
"chainId": "nibiru-testnet-1", | ||
"chainName": "Nibiru Testnet", | ||
"chainName": "nibirutestnet", | ||
"chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nibiru-testnet/chain.png", | ||
"rpc": "https://rpc.testnet-1.nibiru.fi/", | ||
"rest": "https://lcd.testnet-1.nibiru.fi/", | ||
"nodeProvider": { | ||
"name": "Nibiru Team", | ||
"email": "[email protected]", | ||
"website": "https://app.nibiru.fi" | ||
"website": "https://nibiru.fi" | ||
}, | ||
"bip44": { | ||
"coinType": 118 | ||
|
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
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": "self-1", | ||
"chainName": "Self Chain", | ||
"chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/self/chain.png", | ||
"rpc": "https://rpc.selfchain.io:26657", | ||
"rest": "https://api.selfchain.io", | ||
"nodeProvider": { | ||
"name": "Self Chain", | ||
"email": "[email protected]", | ||
"website":"https://selfchain.xyz" | ||
}, | ||
"bip44": { | ||
"coinType": 118 | ||
}, | ||
"bech32Config": { | ||
"bech32PrefixAccAddr": "self", | ||
"bech32PrefixAccPub": "selfpub", | ||
"bech32PrefixValAddr": "selfvaloper", | ||
"bech32PrefixValPub": "selfvaloperpub", | ||
"bech32PrefixConsAddr": "selfvalcons", | ||
"bech32PrefixConsPub": "selfvalconspub" | ||
}, | ||
"currencies": [ | ||
{ | ||
"coinDenom": "SLF", | ||
"coinMinimalDenom": "uslf", | ||
"coinDecimals": 6, | ||
"coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/self/chain.png" | ||
} | ||
], | ||
"feeCurrencies": [ | ||
{ | ||
"coinDenom": "SLF", | ||
"coinMinimalDenom": "uslf", | ||
"coinDecimals": 6, | ||
"coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/self/chain.png", | ||
"gasPriceStep": { | ||
"low": 0.005, | ||
"average": 0.025, | ||
"high": 0.03 | ||
} | ||
} | ||
], | ||
"stakeCurrency": { | ||
"coinDenom": "SLF", | ||
"coinMinimalDenom": "uslf", | ||
"coinDecimals": 6, | ||
"coinImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/self/chain.png" | ||
}, | ||
"features": [] | ||
} |
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 |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
"chainId": "symphony-testnet-1", | ||
"chainName": "Symphony Testnet", | ||
"chainSymbolImageUrl": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/symphony-testnet/chain.png", | ||
"rpc": "http://rpc.testnet.symphonychain.org", | ||
"rest": "http://lcd.testnet.symphonychain.org", | ||
"rpc": "https://rpc.testnet.symphonychain.org", | ||
"rest": "https://lcd.testnet.symphonychain.org", | ||
"nodeProvider": { | ||
"name": "Orchestra Labs", | ||
"email": "[email protected]", | ||
|
Binary file added
BIN
+136 KB
...ahua1hplyuj2hzxd75q8686g9vm3uzrrny9ggvt8aza2csupgdp98vg2sp0e3h0/uhuahua.ash.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+115 KB
.../migaloo1nsskhvvh0msm7d5ke2kfg24a8d4jecsnxd28s27h0uz5kf9ap60shlqmcl/ampGASH.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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