Skip to content

Instantly share code, notes, and snippets.

@giansalex
Last active January 3, 2023 23:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giansalex/a33dbc7eb32547ac279755553dbf2a5e to your computer and use it in GitHub Desktop.
Save giansalex/a33dbc7eb32547ac279755553dbf2a5e to your computer and use it in GitHub Desktop.
Evmos chain to keplr v0.11.30
// Download and install keplr: https://github.com/chainapsis/keplr-wallet/releases/tag/v0.9.13
// Use developer console (Browser)
let chainInfo = {
"chainId": "evmos_9000-4",
"chainName": "Evmos Testnet",
"rpc": "https://tendermint.bd.evmos.dev:26657",
"rest": "https://rest.bd.evmos.dev:1317",
"stakeCurrency": {
"coinDenom": "EVMOS",
"coinMinimalDenom": "atevmos",
"coinDecimals": 18
},
"bip44": {
"coinType": 60
},
"bech32Config": {
"bech32PrefixAccAddr": "evmos",
"bech32PrefixAccPub": "evmospub",
"bech32PrefixValAddr": "evmosvaloper",
"bech32PrefixValPub": "evmosvaloperpub",
"bech32PrefixConsAddr": "evmosvalcons",
"bech32PrefixConsPub": "evmosvalconspub"
},
"currencies": [
{
"coinDenom": "EVMOS",
"coinMinimalDenom": "atevmos",
"coinDecimals": 18
}
],
"feeCurrencies": [
{
"coinDenom": "EVMOS",
"coinMinimalDenom": "atevmos",
"coinDecimals": 18,
"gasPriceStep": {
"low": 0,
"average": 1000000000,
"high": 2000000000
}
}
],
"features": [
'eth-address-gen',
'eth-key-sign',
]
};
keplr.experimentalSuggestChain(chainInfo);
// keplr.getKey('evmos_9000-4').then(console.log);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment