-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.ts
42 lines (41 loc) · 1016 Bytes
/
config.ts
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
import { Bech32Address } from "@keplr-wallet/cosmos";
import { ChainInfo } from "@keplr-wallet/types";
export const EmbedChainInfos: ChainInfo[] = [
{
rpc: "https://rpc.juno-1.deuslabs.fi",
rest: "https://rpc.juno-1.deuslabs.fi",
chainId: "juno-1",
chainName: "Juno",
stakeCurrency: {
coinDenom: "JUNO",
coinMinimalDenom: "ujuno",
coinDecimals: 6,
coinGeckoId: "juno",
coinImageUrl: "/juno.svg",
},
bip44: {
coinType: 118,
},
bech32Config: Bech32Address.defaultBech32Config("juno"),
currencies: [
{
coinDenom: "JUNO",
coinMinimalDenom: "ujuno",
coinDecimals: 6,
coinGeckoId: "juno",
coinImageUrl: "/juno.svg",
},
],
feeCurrencies: [
{
coinDenom: "JUNO",
coinMinimalDenom: "uatom",
coinDecimals: 6,
coinGeckoId: "juno",
coinImageUrl: "/juno.svg",
},
],
coinType: 118,
features: ["ibc-transfer", "ibc-go"],
},
];