You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// List of coin/tokens used as a fee token in this chain.
76
-
feeCurrencies: [
77
-
{
78
-
// Coin denomination to be displayed to the user.
79
-
coinDenom: "TIA",
80
-
// Actual denom (i.e. nria, uscrt) used by the blockchain.
81
-
coinMinimalDenom: "utia",
82
-
// # of decimal points to convert minimal denomination to user-facing denomination.
83
-
coinDecimals: 6,
84
-
// (Optional) Keplr can show the fiat value of the coin if a coingecko id is provided.
85
-
// You can get id from https://api.coingecko.com/api/v3/coins/list if it is listed.
86
-
// coinGeckoId: ""
87
-
// (Optional) This is used to set the fee of the transaction.
88
-
// If this field is not provided and suggesting chain is not natively integrated, Keplr extension will set the Keplr default gas price (low: 0.01, average: 0.025, high: 0.04).
89
-
// Currently, Keplr doesn't support dynamic calculation of the gas prices based on on-chain data.
90
-
// Make sure that the gas prices are higher than the minimum gas prices accepted by chain validators and RPC/REST endpoint.
91
-
gasPriceStep: {
92
-
low: 0.01,
93
-
average: 0.02,
94
-
high: 0.1,
95
-
},
96
-
},
97
-
],
98
-
IconComponent: CelestiaIcon,
99
-
};
19
+
// const CelestiaChainInfo: CosmosChainInfo = {
20
+
// chainType: ChainType.COSMOS,
21
+
// // Chain-id of the celestia chain.
22
+
// chainId: "mocha-4",
23
+
// // The name of the chain to be displayed to the user.
24
+
// chainName: "Celestia Mocha-4",
25
+
// // RPC endpoint of the chain
26
+
// rpc: "wss://rpc-mocha.pops.one",
27
+
// // REST endpoint of the chain.
28
+
// rest: "https://api-mocha.pops.one",
29
+
// // Staking coin information
30
+
// stakeCurrency: {
31
+
// // Coin denomination to be displayed to the user.
32
+
// coinDenom: "TIA",
33
+
// // Actual denom (i.e. uatom, uscrt) used by the blockchain.
34
+
// coinMinimalDenom: "utia",
35
+
// // # of decimal points to convert minimal denomination to user-facing denomination.
36
+
// coinDecimals: 6,
37
+
// // (Optional) Keplr can show the fiat value of the coin if a coingecko id is provided.
38
+
// // You can get id from https://api.coingecko.com/api/v3/coins/list if it is listed.
39
+
// // coinGeckoId: ""
40
+
// },
41
+
// // (Optional) If you have a wallet webpage used to stake the coin then provide the url to the website in `walletUrlForStaking`.
42
+
// // The 'stake' button in Keplr extension will link to the webpage.
// // List of coin/tokens used as a fee token in this chain.
76
+
// feeCurrencies: [
77
+
// {
78
+
// // Coin denomination to be displayed to the user.
79
+
// coinDenom: "TIA",
80
+
// // Actual denom (i.e. nria, uscrt) used by the blockchain.
81
+
// coinMinimalDenom: "utia",
82
+
// // # of decimal points to convert minimal denomination to user-facing denomination.
83
+
// coinDecimals: 6,
84
+
// // (Optional) Keplr can show the fiat value of the coin if a coingecko id is provided.
85
+
// // You can get id from https://api.coingecko.com/api/v3/coins/list if it is listed.
86
+
// // coinGeckoId: ""
87
+
// // (Optional) This is used to set the fee of the transaction.
88
+
// // If this field is not provided and suggesting chain is not natively integrated, Keplr extension will set the Keplr default gas price (low: 0.01, average: 0.025, high: 0.04).
89
+
// // Currently, Keplr doesn't support dynamic calculation of the gas prices based on on-chain data.
90
+
// // Make sure that the gas prices are higher than the minimum gas prices accepted by chain validators and RPC/REST endpoint.
0 commit comments