-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcelestia-keplr-mamaki.js
54 lines (53 loc) · 1.44 KB
/
celestia-keplr-mamaki.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
window.onload = async () => {
if (!window.keplr) {
alert("Please install keplr extension, Aviaone will not be able to connect you");
} else
await window.keplr.experimentalSuggestChain({
chainId: "mamaki",
chainName: "CELESTIA Testnet Mamaki",
rpc: "http://rpc-celestia-mamaki.aviaone.com:26657",
rest: "http://rpc-celestia-mamaki.aviaone.com:1317",
bip44: {
coinType: 118,
},
bech32Config: {
bech32PrefixAccAddr: "celestia",
bech32PrefixAccPub: "celestia" + "pub",
bech32PrefixValAddr: "celestia" + "valoper",
bech32PrefixValPub: "celestia" + "valoperpub",
bech32PrefixConsAddr: "celestia" + "valcons",
bech32PrefixConsPub: "celestia" + "valconspub",
},
currencies: [
{
coinDenom: "TIA",
coinMinimalDenom: "utia",
coinDecimals: 6,
coinGeckoId: "utia",
},
],
feeCurrencies: [
{
coinDenom: "TIA",
coinMinimalDenom: "utia",
coinDecimals: 6,
coinGeckoId: "utia",
},
],
stakeCurrency: {
coinDenom: "TIA",
coinMinimalDenom: "utia",
coinDecimals: 6,
coinGeckoId: "utia",
},
coinType: 118,
gasPriceStep: {
low: 0.01,
average: 0.025,
high: 0.03,
},
features: [
"cosmwasm", "ibc-transfer", "ibc-go", "wasmd_0.24+"
],
});
}