carbon-js-sdk 0.3.24 → 0.3.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/constant/ibc.js +6 -1
- package/package.json +1 -1
package/lib/constant/ibc.js
CHANGED
|
@@ -966,6 +966,11 @@ exports.EmbedChainInfosInit = {
|
|
|
966
966
|
coinGeckoId: "comdex",
|
|
967
967
|
},
|
|
968
968
|
],
|
|
969
|
+
gasPriceStep: {
|
|
970
|
+
"low": 0.0125,
|
|
971
|
+
"average": 0.025,
|
|
972
|
+
"high": 0.04
|
|
973
|
+
},
|
|
969
974
|
features: ["ibc-transfer", "ibc-go"],
|
|
970
975
|
explorerUrlToTx: "https://www.mintscan.io/comdex/txs/{txHash}",
|
|
971
976
|
tmRpc: "https://rpc.comdex.one/",
|
|
@@ -1897,7 +1902,7 @@ exports.swthChannels = {
|
|
|
1897
1902
|
exports.cibtIbcTokenRegex = RegExp(`^${token_1.DenomPrefix.CDPToken}/ibc/([a-f\\d]+)$`, "i");
|
|
1898
1903
|
exports.ibcTokenRegex = /^ibc\/([a-f\d]+)$/i;
|
|
1899
1904
|
exports.ibcNetworkRegex = /^([a-z\d_-]+)-([\d]+)$/i;
|
|
1900
|
-
exports.ibcDefaultGas =
|
|
1905
|
+
exports.ibcDefaultGas = 210000;
|
|
1901
1906
|
exports.DefaultGasPriceStep = {
|
|
1902
1907
|
low: 0.01,
|
|
1903
1908
|
average: 0.025,
|