example-js-sdk 0.0.1
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/README.md +89 -0
- package/lib/CarbonSDK.d.ts +145 -0
- package/lib/CarbonSDK.js +496 -0
- package/lib/clients/BatchQueryClient.d.ts +26 -0
- package/lib/clients/BatchQueryClient.js +88 -0
- package/lib/clients/BlockchainClient.d.ts +16 -0
- package/lib/clients/BlockchainClient.js +19 -0
- package/lib/clients/CarbonQueryClient.d.ts +108 -0
- package/lib/clients/CarbonQueryClient.js +109 -0
- package/lib/clients/ETHClient.d.ts +101 -0
- package/lib/clients/ETHClient.js +344 -0
- package/lib/clients/GasFee.d.ts +12 -0
- package/lib/clients/GasFee.js +30 -0
- package/lib/clients/GrpcQueryClient.d.ts +22 -0
- package/lib/clients/GrpcQueryClient.js +60 -0
- package/lib/clients/HydrogenClient.d.ts +28 -0
- package/lib/clients/HydrogenClient.js +225 -0
- package/lib/clients/InsightsQueryClient.d.ts +77 -0
- package/lib/clients/InsightsQueryClient.js +496 -0
- package/lib/clients/TokenClient.d.ts +93 -0
- package/lib/clients/TokenClient.js +715 -0
- package/lib/clients/index.d.ts +7 -0
- package/lib/clients/index.js +20 -0
- package/lib/codec/alliance/alliance/alliance.d.ts +72 -0
- package/lib/codec/alliance/alliance/alliance.js +369 -0
- package/lib/codec/alliance/alliance/delegations.d.ts +67 -0
- package/lib/codec/alliance/alliance/delegations.js +373 -0
- package/lib/codec/alliance/alliance/events.d.ts +76 -0
- package/lib/codec/alliance/alliance/events.js +451 -0
- package/lib/codec/alliance/alliance/export.d.ts +10 -0
- package/lib/codec/alliance/alliance/export.js +84 -0
- package/lib/codec/alliance/alliance/genesis.d.ts +80 -0
- package/lib/codec/alliance/alliance/genesis.js +503 -0
- package/lib/codec/alliance/alliance/gov.d.ts +84 -0
- package/lib/codec/alliance/alliance/gov.js +403 -0
- package/lib/codec/alliance/alliance/params.d.ts +37 -0
- package/lib/codec/alliance/alliance/params.js +204 -0
- package/lib/codec/alliance/alliance/query.d.ts +442 -0
- package/lib/codec/alliance/alliance/query.js +2036 -0
- package/lib/codec/alliance/alliance/redelegations.d.ts +60 -0
- package/lib/codec/alliance/alliance/redelegations.js +290 -0
- package/lib/codec/alliance/alliance/tx.d.ts +250 -0
- package/lib/codec/alliance/alliance/tx.js +1096 -0
- package/lib/codec/alliance/alliance/unbonding.d.ts +27 -0
- package/lib/codec/alliance/alliance/unbonding.js +128 -0
- package/lib/codec/amino/amino.d.ts +1 -0
- package/lib/codec/amino/amino.js +5 -0
- package/lib/codec/carbon-models.d.ts +23 -0
- package/lib/codec/carbon-models.js +59 -0
- package/lib/codec/cosmos/app/runtime/v1alpha1/module.d.ts +86 -0
- package/lib/codec/cosmos/app/runtime/v1alpha1/module.js +279 -0
- package/lib/codec/cosmos/app/v1alpha1/config.d.ts +86 -0
- package/lib/codec/cosmos/app/v1alpha1/config.js +237 -0
- package/lib/codec/cosmos/app/v1alpha1/module.d.ts +112 -0
- package/lib/codec/cosmos/app/v1alpha1/module.js +215 -0
- package/lib/codec/cosmos/app/v1alpha1/query.d.ts +49 -0
- package/lib/codec/cosmos/app/v1alpha1/query.js +118 -0
- package/lib/codec/cosmos/auth/module/v1/module.d.ts +43 -0
- package/lib/codec/cosmos/auth/module/v1/module.js +166 -0
- package/lib/codec/cosmos/auth/v1beta1/auth.d.ts +80 -0
- package/lib/codec/cosmos/auth/v1beta1/auth.js +424 -0
- package/lib/codec/cosmos/auth/v1beta1/export.d.ts +3 -0
- package/lib/codec/cosmos/auth/v1beta1/export.js +32 -0
- package/lib/codec/cosmos/auth/v1beta1/genesis.d.ts +25 -0
- package/lib/codec/cosmos/auth/v1beta1/genesis.js +88 -0
- package/lib/codec/cosmos/auth/v1beta1/query.d.ts +402 -0
- package/lib/codec/cosmos/auth/v1beta1/query.js +1110 -0
- package/lib/codec/cosmos/auth/v1beta1/tx.d.ts +69 -0
- package/lib/codec/cosmos/auth/v1beta1/tx.js +132 -0
- package/lib/codec/cosmos/authz/module/v1/module.d.ts +19 -0
- package/lib/codec/cosmos/authz/module/v1/module.js +51 -0
- package/lib/codec/cosmos/authz/v1beta1/authz.d.ts +78 -0
- package/lib/codec/cosmos/authz/v1beta1/authz.js +298 -0
- package/lib/codec/cosmos/authz/v1beta1/event.d.ts +43 -0
- package/lib/codec/cosmos/authz/v1beta1/event.js +165 -0
- package/lib/codec/cosmos/authz/v1beta1/genesis.d.ts +22 -0
- package/lib/codec/cosmos/authz/v1beta1/genesis.js +72 -0
- package/lib/codec/cosmos/authz/v1beta1/query.d.ts +131 -0
- package/lib/codec/cosmos/authz/v1beta1/query.js +473 -0
- package/lib/codec/cosmos/authz/v1beta1/tx.d.ts +135 -0
- package/lib/codec/cosmos/authz/v1beta1/tx.js +426 -0
- package/lib/codec/cosmos/autocli/v1/options.d.ts +191 -0
- package/lib/codec/cosmos/autocli/v1/options.js +737 -0
- package/lib/codec/cosmos/autocli/v1/query.d.ts +66 -0
- package/lib/codec/cosmos/autocli/v1/query.js +203 -0
- package/lib/codec/cosmos/bank/module/v1/module.d.ts +34 -0
- package/lib/codec/cosmos/bank/module/v1/module.js +105 -0
- package/lib/codec/cosmos/bank/v1beta1/authz.d.ts +33 -0
- package/lib/codec/cosmos/bank/v1beta1/authz.js +87 -0
- package/lib/codec/cosmos/bank/v1beta1/bank.d.ts +167 -0
- package/lib/codec/cosmos/bank/v1beta1/bank.js +554 -0
- package/lib/codec/cosmos/bank/v1beta1/export.d.ts +5 -0
- package/lib/codec/cosmos/bank/v1beta1/export.js +52 -0
- package/lib/codec/cosmos/bank/v1beta1/genesis.d.ts +56 -0
- package/lib/codec/cosmos/bank/v1beta1/genesis.js +210 -0
- package/lib/codec/cosmos/bank/v1beta1/query.d.ts +587 -0
- package/lib/codec/cosmos/bank/v1beta1/query.js +1710 -0
- package/lib/codec/cosmos/bank/v1beta1/tx.d.ts +184 -0
- package/lib/codec/cosmos/bank/v1beta1/tx.js +499 -0
- package/lib/codec/cosmos/base/abci/v1beta1/abci.d.ts +269 -0
- package/lib/codec/cosmos/base/abci/v1beta1/abci.js +1109 -0
- package/lib/codec/cosmos/base/node/v1beta1/query.d.ts +85 -0
- package/lib/codec/cosmos/base/node/v1beta1/query.js +374 -0
- package/lib/codec/cosmos/base/query/v1beta1/pagination.d.ts +87 -0
- package/lib/codec/cosmos/base/query/v1beta1/pagination.js +221 -0
- package/lib/codec/cosmos/base/reflection/v1beta1/reflection.d.ts +88 -0
- package/lib/codec/cosmos/base/reflection/v1beta1/reflection.js +233 -0
- package/lib/codec/cosmos/base/reflection/v2alpha1/reflection.d.ts +443 -0
- package/lib/codec/cosmos/base/reflection/v2alpha1/reflection.js +1537 -0
- package/lib/codec/cosmos/base/tendermint/v1beta1/query.d.ts +343 -0
- package/lib/codec/cosmos/base/tendermint/v1beta1/query.js +1530 -0
- package/lib/codec/cosmos/base/tendermint/v1beta1/types.d.ts +69 -0
- package/lib/codec/cosmos/base/tendermint/v1beta1/types.js +417 -0
- package/lib/codec/cosmos/base/v1beta1/coin.d.ts +74 -0
- package/lib/codec/cosmos/base/v1beta1/coin.js +237 -0
- package/lib/codec/cosmos/circuit/module/v1/module.d.ts +21 -0
- package/lib/codec/cosmos/circuit/module/v1/module.js +65 -0
- package/lib/codec/cosmos/circuit/v1/query.d.ts +106 -0
- package/lib/codec/cosmos/circuit/v1/query.js +356 -0
- package/lib/codec/cosmos/circuit/v1/tx.d.ts +137 -0
- package/lib/codec/cosmos/circuit/v1/tx.js +398 -0
- package/lib/codec/cosmos/circuit/v1/types.d.ts +84 -0
- package/lib/codec/cosmos/circuit/v1/types.js +289 -0
- package/lib/codec/cosmos/consensus/module/v1/module.d.ts +21 -0
- package/lib/codec/cosmos/consensus/module/v1/module.js +65 -0
- package/lib/codec/cosmos/consensus/v1/query.d.ts +54 -0
- package/lib/codec/cosmos/consensus/v1/query.js +118 -0
- package/lib/codec/cosmos/consensus/v1/tx.d.ts +70 -0
- package/lib/codec/cosmos/consensus/v1/tx.js +176 -0
- package/lib/codec/cosmos/crisis/module/v1/module.d.ts +23 -0
- package/lib/codec/cosmos/crisis/module/v1/module.js +79 -0
- package/lib/codec/cosmos/crisis/v1beta1/genesis.d.ts +25 -0
- package/lib/codec/cosmos/crisis/v1beta1/genesis.js +69 -0
- package/lib/codec/cosmos/crisis/v1beta1/tx.d.ts +96 -0
- package/lib/codec/cosmos/crisis/v1beta1/tx.js +250 -0
- package/lib/codec/cosmos/crypto/ed25519/keys.d.ts +41 -0
- package/lib/codec/cosmos/crypto/ed25519/keys.js +155 -0
- package/lib/codec/cosmos/crypto/hd/v1/hd.d.ts +33 -0
- package/lib/codec/cosmos/crypto/hd/v1/hd.js +115 -0
- package/lib/codec/cosmos/crypto/keyring/v1/record.d.ts +83 -0
- package/lib/codec/cosmos/crypto/keyring/v1/record.js +314 -0
- package/lib/codec/cosmos/crypto/multisig/keys.d.ts +26 -0
- package/lib/codec/cosmos/crypto/multisig/keys.js +85 -0
- package/lib/codec/cosmos/crypto/multisig/v1beta1/multisig.d.ts +42 -0
- package/lib/codec/cosmos/crypto/multisig/v1beta1/multisig.js +175 -0
- package/lib/codec/cosmos/crypto/secp256k1/keys.d.ts +38 -0
- package/lib/codec/cosmos/crypto/secp256k1/keys.js +155 -0
- package/lib/codec/cosmos/crypto/secp256r1/keys.d.ts +38 -0
- package/lib/codec/cosmos/crypto/secp256r1/keys.js +155 -0
- package/lib/codec/cosmos/distribution/module/v1/module.d.ts +22 -0
- package/lib/codec/cosmos/distribution/module/v1/module.js +79 -0
- package/lib/codec/cosmos/distribution/v1beta1/distribution.d.ts +237 -0
- package/lib/codec/cosmos/distribution/v1beta1/distribution.js +899 -0
- package/lib/codec/cosmos/distribution/v1beta1/export.d.ts +4 -0
- package/lib/codec/cosmos/distribution/v1beta1/export.js +63 -0
- package/lib/codec/cosmos/distribution/v1beta1/genesis.d.ts +164 -0
- package/lib/codec/cosmos/distribution/v1beta1/genesis.js +761 -0
- package/lib/codec/cosmos/distribution/v1beta1/query.d.ts +409 -0
- package/lib/codec/cosmos/distribution/v1beta1/query.js +1291 -0
- package/lib/codec/cosmos/distribution/v1beta1/tx.d.ts +304 -0
- package/lib/codec/cosmos/distribution/v1beta1/tx.js +820 -0
- package/lib/codec/cosmos/evidence/module/v1/module.d.ts +19 -0
- package/lib/codec/cosmos/evidence/module/v1/module.js +51 -0
- package/lib/codec/cosmos/evidence/v1beta1/evidence.d.ts +30 -0
- package/lib/codec/cosmos/evidence/v1beta1/evidence.js +130 -0
- package/lib/codec/cosmos/evidence/v1beta1/genesis.d.ts +22 -0
- package/lib/codec/cosmos/evidence/v1beta1/genesis.js +68 -0
- package/lib/codec/cosmos/evidence/v1beta1/query.d.ts +100 -0
- package/lib/codec/cosmos/evidence/v1beta1/query.js +312 -0
- package/lib/codec/cosmos/evidence/v1beta1/tx.d.ts +59 -0
- package/lib/codec/cosmos/evidence/v1beta1/tx.js +184 -0
- package/lib/codec/cosmos/feegrant/module/v1/module.d.ts +19 -0
- package/lib/codec/cosmos/feegrant/module/v1/module.js +51 -0
- package/lib/codec/cosmos/feegrant/v1beta1/feegrant.d.ts +100 -0
- package/lib/codec/cosmos/feegrant/v1beta1/feegrant.js +373 -0
- package/lib/codec/cosmos/feegrant/v1beta1/genesis.d.ts +22 -0
- package/lib/codec/cosmos/feegrant/v1beta1/genesis.js +70 -0
- package/lib/codec/cosmos/feegrant/v1beta1/query.d.ts +131 -0
- package/lib/codec/cosmos/feegrant/v1beta1/query.js +427 -0
- package/lib/codec/cosmos/feegrant/v1beta1/tx.d.ts +131 -0
- package/lib/codec/cosmos/feegrant/v1beta1/tx.js +340 -0
- package/lib/codec/cosmos/genutil/module/v1/module.d.ts +19 -0
- package/lib/codec/cosmos/genutil/module/v1/module.js +51 -0
- package/lib/codec/cosmos/genutil/v1beta1/genesis.d.ts +21 -0
- package/lib/codec/cosmos/genutil/v1beta1/genesis.js +107 -0
- package/lib/codec/cosmos/gov/module/v1/module.d.ts +26 -0
- package/lib/codec/cosmos/gov/module/v1/module.js +81 -0
- package/lib/codec/cosmos/gov/v1/export.d.ts +3 -0
- package/lib/codec/cosmos/gov/v1/export.js +53 -0
- package/lib/codec/cosmos/gov/v1/genesis.d.ts +65 -0
- package/lib/codec/cosmos/gov/v1/genesis.js +203 -0
- package/lib/codec/cosmos/gov/v1/gov.d.ts +354 -0
- package/lib/codec/cosmos/gov/v1/gov.js +1221 -0
- package/lib/codec/cosmos/gov/v1/query.d.ts +333 -0
- package/lib/codec/cosmos/gov/v1/query.js +1169 -0
- package/lib/codec/cosmos/gov/v1/tx.d.ts +308 -0
- package/lib/codec/cosmos/gov/v1/tx.js +995 -0
- package/lib/codec/cosmos/gov/v1beta1/genesis.d.ts +34 -0
- package/lib/codec/cosmos/gov/v1beta1/genesis.js +175 -0
- package/lib/codec/cosmos/gov/v1beta1/gov.d.ts +255 -0
- package/lib/codec/cosmos/gov/v1beta1/gov.js +971 -0
- package/lib/codec/cosmos/gov/v1beta1/query.d.ts +284 -0
- package/lib/codec/cosmos/gov/v1beta1/query.js +1064 -0
- package/lib/codec/cosmos/gov/v1beta1/tx.d.ts +165 -0
- package/lib/codec/cosmos/gov/v1beta1/tx.js +533 -0
- package/lib/codec/cosmos/group/module/v1/module.d.ts +30 -0
- package/lib/codec/cosmos/group/module/v1/module.js +85 -0
- package/lib/codec/cosmos/group/v1/events.d.ts +165 -0
- package/lib/codec/cosmos/group/v1/events.js +647 -0
- package/lib/codec/cosmos/group/v1/genesis.d.ts +46 -0
- package/lib/codec/cosmos/group/v1/genesis.js +196 -0
- package/lib/codec/cosmos/group/v1/query.d.ts +484 -0
- package/lib/codec/cosmos/group/v1/query.js +1829 -0
- package/lib/codec/cosmos/group/v1/tx.d.ts +526 -0
- package/lib/codec/cosmos/group/v1/tx.js +1927 -0
- package/lib/codec/cosmos/group/v1/types.d.ts +393 -0
- package/lib/codec/cosmos/group/v1/types.js +1329 -0
- package/lib/codec/cosmos/ics23/v1/proofs.d.ts +342 -0
- package/lib/codec/cosmos/ics23/v1/proofs.js +1353 -0
- package/lib/codec/cosmos/mint/module/v1/module.d.ts +22 -0
- package/lib/codec/cosmos/mint/module/v1/module.js +79 -0
- package/lib/codec/cosmos/mint/v1beta1/export.d.ts +3 -0
- package/lib/codec/cosmos/mint/v1beta1/export.js +16 -0
- package/lib/codec/cosmos/mint/v1beta1/genesis.d.ts +24 -0
- package/lib/codec/cosmos/mint/v1beta1/genesis.js +84 -0
- package/lib/codec/cosmos/mint/v1beta1/mint.d.ts +46 -0
- package/lib/codec/cosmos/mint/v1beta1/mint.js +198 -0
- package/lib/codec/cosmos/mint/v1beta1/query.d.ts +112 -0
- package/lib/codec/cosmos/mint/v1beta1/query.js +344 -0
- package/lib/codec/cosmos/mint/v1beta1/tx.d.ts +69 -0
- package/lib/codec/cosmos/mint/v1beta1/tx.js +132 -0
- package/lib/codec/cosmos/msg/textual/v1/textual.d.ts +1 -0
- package/lib/codec/cosmos/msg/textual/v1/textual.js +5 -0
- package/lib/codec/cosmos/msg/v1/msg.d.ts +1 -0
- package/lib/codec/cosmos/msg/v1/msg.js +5 -0
- package/lib/codec/cosmos/nft/module/v1/module.d.ts +19 -0
- package/lib/codec/cosmos/nft/module/v1/module.js +51 -0
- package/lib/codec/cosmos/nft/v1beta1/event.d.ts +61 -0
- package/lib/codec/cosmos/nft/v1beta1/event.js +251 -0
- package/lib/codec/cosmos/nft/v1beta1/genesis.d.ts +39 -0
- package/lib/codec/cosmos/nft/v1beta1/genesis.js +157 -0
- package/lib/codec/cosmos/nft/v1beta1/nft.d.ts +55 -0
- package/lib/codec/cosmos/nft/v1beta1/nft.js +238 -0
- package/lib/codec/cosmos/nft/v1beta1/query.d.ts +243 -0
- package/lib/codec/cosmos/nft/v1beta1/query.js +862 -0
- package/lib/codec/cosmos/nft/v1beta1/tx.d.ts +54 -0
- package/lib/codec/cosmos/nft/v1beta1/tx.js +153 -0
- package/lib/codec/cosmos/orm/module/v1alpha1/module.d.ts +23 -0
- package/lib/codec/cosmos/orm/module/v1alpha1/module.js +51 -0
- package/lib/codec/cosmos/orm/query/v1alpha1/query.d.ts +183 -0
- package/lib/codec/cosmos/orm/query/v1alpha1/query.js +680 -0
- package/lib/codec/cosmos/orm/v1/orm.d.ts +130 -0
- package/lib/codec/cosmos/orm/v1/orm.js +283 -0
- package/lib/codec/cosmos/orm/v1alpha1/schema.d.ts +78 -0
- package/lib/codec/cosmos/orm/v1alpha1/schema.js +257 -0
- package/lib/codec/cosmos/params/module/v1/module.d.ts +19 -0
- package/lib/codec/cosmos/params/module/v1/module.js +51 -0
- package/lib/codec/cosmos/params/v1beta1/export.d.ts +2 -0
- package/lib/codec/cosmos/params/v1beta1/export.js +12 -0
- package/lib/codec/cosmos/params/v1beta1/params.d.ts +39 -0
- package/lib/codec/cosmos/params/v1beta1/params.js +170 -0
- package/lib/codec/cosmos/params/v1beta1/query.d.ts +114 -0
- package/lib/codec/cosmos/params/v1beta1/query.js +308 -0
- package/lib/codec/cosmos/query/v1/query.d.ts +1 -0
- package/lib/codec/cosmos/query/v1/query.js +5 -0
- package/lib/codec/cosmos/reflection/v1/reflection.d.ts +55 -0
- package/lib/codec/cosmos/reflection/v1/reflection.js +118 -0
- package/lib/codec/cosmos/slashing/module/v1/module.d.ts +21 -0
- package/lib/codec/cosmos/slashing/module/v1/module.js +65 -0
- package/lib/codec/cosmos/slashing/v1beta1/export.d.ts +4 -0
- package/lib/codec/cosmos/slashing/v1beta1/export.js +22 -0
- package/lib/codec/cosmos/slashing/v1beta1/genesis.d.ts +80 -0
- package/lib/codec/cosmos/slashing/v1beta1/genesis.js +307 -0
- package/lib/codec/cosmos/slashing/v1beta1/query.d.ts +119 -0
- package/lib/codec/cosmos/slashing/v1beta1/query.js +353 -0
- package/lib/codec/cosmos/slashing/v1beta1/slashing.d.ts +61 -0
- package/lib/codec/cosmos/slashing/v1beta1/slashing.js +329 -0
- package/lib/codec/cosmos/slashing/v1beta1/tx.d.ts +99 -0
- package/lib/codec/cosmos/slashing/v1beta1/tx.js +223 -0
- package/lib/codec/cosmos/staking/module/v1/module.d.ts +31 -0
- package/lib/codec/cosmos/staking/module/v1/module.js +108 -0
- package/lib/codec/cosmos/staking/v1beta1/authz.d.ts +70 -0
- package/lib/codec/cosmos/staking/v1beta1/authz.js +227 -0
- package/lib/codec/cosmos/staking/v1beta1/export.d.ts +5 -0
- package/lib/codec/cosmos/staking/v1beta1/export.js +84 -0
- package/lib/codec/cosmos/staking/v1beta1/genesis.d.ts +57 -0
- package/lib/codec/cosmos/staking/v1beta1/genesis.js +297 -0
- package/lib/codec/cosmos/staking/v1beta1/query.d.ts +556 -0
- package/lib/codec/cosmos/staking/v1beta1/query.js +1804 -0
- package/lib/codec/cosmos/staking/v1beta1/staking.d.ts +448 -0
- package/lib/codec/cosmos/staking/v1beta1/staking.js +1924 -0
- package/lib/codec/cosmos/staking/v1beta1/tx.d.ts +299 -0
- package/lib/codec/cosmos/staking/v1beta1/tx.js +1012 -0
- package/lib/codec/cosmos/store/internal/kv/v1beta1/kv.d.ts +33 -0
- package/lib/codec/cosmos/store/internal/kv/v1beta1/kv.js +174 -0
- package/lib/codec/cosmos/store/snapshots/v1/snapshot.d.ts +126 -0
- package/lib/codec/cosmos/store/snapshots/v1/snapshot.js +563 -0
- package/lib/codec/cosmos/store/streaming/abci/grpc.d.ts +79 -0
- package/lib/codec/cosmos/store/streaming/abci/grpc.js +261 -0
- package/lib/codec/cosmos/store/v1beta1/commit_info.d.ts +57 -0
- package/lib/codec/cosmos/store/v1beta1/commit_info.js +292 -0
- package/lib/codec/cosmos/store/v1beta1/listening.d.ts +50 -0
- package/lib/codec/cosmos/store/v1beta1/listening.js +236 -0
- package/lib/codec/cosmos/tx/config/v1/config.d.ts +29 -0
- package/lib/codec/cosmos/tx/config/v1/config.js +79 -0
- package/lib/codec/cosmos/tx/signing/v1beta1/signing.d.ts +152 -0
- package/lib/codec/cosmos/tx/signing/v1beta1/signing.js +504 -0
- package/lib/codec/cosmos/tx/v1beta1/export.d.ts +2 -0
- package/lib/codec/cosmos/tx/v1beta1/export.js +43 -0
- package/lib/codec/cosmos/tx/v1beta1/service.d.ts +481 -0
- package/lib/codec/cosmos/tx/v1beta1/service.js +1357 -0
- package/lib/codec/cosmos/tx/v1beta1/tx.d.ts +390 -0
- package/lib/codec/cosmos/tx/v1beta1/tx.js +1149 -0
- package/lib/codec/cosmos/upgrade/module/v1/module.d.ts +21 -0
- package/lib/codec/cosmos/upgrade/module/v1/module.js +65 -0
- package/lib/codec/cosmos/upgrade/v1beta1/query.d.ts +226 -0
- package/lib/codec/cosmos/upgrade/v1beta1/query.js +571 -0
- package/lib/codec/cosmos/upgrade/v1beta1/tx.d.ts +104 -0
- package/lib/codec/cosmos/upgrade/v1beta1/tx.js +221 -0
- package/lib/codec/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -0
- package/lib/codec/cosmos/upgrade/v1beta1/upgrade.js +346 -0
- package/lib/codec/cosmos/vesting/module/v1/module.d.ts +19 -0
- package/lib/codec/cosmos/vesting/module/v1/module.js +51 -0
- package/lib/codec/cosmos/vesting/v1beta1/export.d.ts +2 -0
- package/lib/codec/cosmos/vesting/v1beta1/export.js +17 -0
- package/lib/codec/cosmos/vesting/v1beta1/tx.d.ts +147 -0
- package/lib/codec/cosmos/vesting/v1beta1/tx.js +434 -0
- package/lib/codec/cosmos/vesting/v1beta1/vesting.d.ts +112 -0
- package/lib/codec/cosmos/vesting/v1beta1/vesting.js +481 -0
- package/lib/codec/cosmos-models.d.ts +10 -0
- package/lib/codec/cosmos-models.js +46 -0
- package/lib/codec/ethermint/crypto/v1/ethsecp256k1/export.d.ts +1 -0
- package/lib/codec/ethermint/crypto/v1/ethsecp256k1/export.js +6 -0
- package/lib/codec/ethermint/crypto/v1/ethsecp256k1/keys.d.ts +41 -0
- package/lib/codec/ethermint/crypto/v1/ethsecp256k1/keys.js +155 -0
- package/lib/codec/ethermint/evm/v1/events.d.ts +76 -0
- package/lib/codec/ethermint/evm/v1/events.js +314 -0
- package/lib/codec/ethermint/evm/v1/evm.d.ts +247 -0
- package/lib/codec/ethermint/evm/v1/evm.js +1146 -0
- package/lib/codec/ethermint/evm/v1/export.d.ts +5 -0
- package/lib/codec/ethermint/evm/v1/export.js +53 -0
- package/lib/codec/ethermint/evm/v1/genesis.d.ts +45 -0
- package/lib/codec/ethermint/evm/v1/genesis.js +166 -0
- package/lib/codec/ethermint/evm/v1/query.d.ts +451 -0
- package/lib/codec/ethermint/evm/v1/query.js +1687 -0
- package/lib/codec/ethermint/evm/v1/tx.d.ts +230 -0
- package/lib/codec/ethermint/evm/v1/tx.js +954 -0
- package/lib/codec/ethermint/feemarket/v1/events.d.ts +36 -0
- package/lib/codec/ethermint/feemarket/v1/events.js +127 -0
- package/lib/codec/ethermint/feemarket/v1/export.d.ts +4 -0
- package/lib/codec/ethermint/feemarket/v1/export.js +18 -0
- package/lib/codec/ethermint/feemarket/v1/feemarket.d.ts +52 -0
- package/lib/codec/ethermint/feemarket/v1/feemarket.js +176 -0
- package/lib/codec/ethermint/feemarket/v1/genesis.d.ts +27 -0
- package/lib/codec/ethermint/feemarket/v1/genesis.js +84 -0
- package/lib/codec/ethermint/feemarket/v1/query.d.ts +109 -0
- package/lib/codec/ethermint/feemarket/v1/query.js +300 -0
- package/lib/codec/ethermint/feemarket/v1/tx.d.ts +60 -0
- package/lib/codec/ethermint/feemarket/v1/tx.js +132 -0
- package/lib/codec/ethermint/types/v1/account.d.ts +27 -0
- package/lib/codec/ethermint/types/v1/account.js +83 -0
- package/lib/codec/ethermint/types/v1/dynamic_fee.d.ts +21 -0
- package/lib/codec/ethermint/types/v1/dynamic_fee.js +65 -0
- package/lib/codec/ethermint/types/v1/export.d.ts +4 -0
- package/lib/codec/ethermint/types/v1/export.js +11 -0
- package/lib/codec/ethermint/types/v1/indexer.d.ts +42 -0
- package/lib/codec/ethermint/types/v1/indexer.js +154 -0
- package/lib/codec/ethermint/types/v1/web3.d.ts +37 -0
- package/lib/codec/ethermint/types/v1/web3.js +135 -0
- package/lib/codec/ethermint-models.d.ts +4 -0
- package/lib/codec/ethermint-models.js +40 -0
- package/lib/codec/google/protobuf/any.d.ts +138 -0
- package/lib/codec/google/protobuf/any.js +120 -0
- package/lib/codec/google/protobuf/descriptor.d.ts +1446 -0
- package/lib/codec/google/protobuf/descriptor.js +4811 -0
- package/lib/codec/google/protobuf/duration.d.ts +93 -0
- package/lib/codec/google/protobuf/duration.js +81 -0
- package/lib/codec/google/protobuf/empty.d.ts +27 -0
- package/lib/codec/google/protobuf/empty.js +51 -0
- package/lib/codec/google/protobuf/timestamp.d.ts +122 -0
- package/lib/codec/google/protobuf/timestamp.js +81 -0
- package/lib/codec/google/protobuf/wrappers.d.ts +161 -0
- package/lib/codec/google/protobuf/wrappers.js +490 -0
- package/lib/codec/ibc/applications/fee/v1/ack.d.ts +25 -0
- package/lib/codec/ibc/applications/fee/v1/ack.js +134 -0
- package/lib/codec/ibc/applications/fee/v1/fee.d.ts +72 -0
- package/lib/codec/ibc/applications/fee/v1/fee.js +311 -0
- package/lib/codec/ibc/applications/fee/v1/genesis.d.ts +98 -0
- package/lib/codec/ibc/applications/fee/v1/genesis.js +433 -0
- package/lib/codec/ibc/applications/fee/v1/metadata.d.ts +26 -0
- package/lib/codec/ibc/applications/fee/v1/metadata.js +79 -0
- package/lib/codec/ibc/applications/fee/v1/query.d.ts +341 -0
- package/lib/codec/ibc/applications/fee/v1/query.js +1293 -0
- package/lib/codec/ibc/applications/fee/v1/tx.d.ts +182 -0
- package/lib/codec/ibc/applications/fee/v1/tx.js +540 -0
- package/lib/codec/ibc/applications/interchain_accounts/controller/export.d.ts +3 -0
- package/lib/codec/ibc/applications/interchain_accounts/controller/export.js +17 -0
- package/lib/codec/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +24 -0
- package/lib/codec/ibc/applications/interchain_accounts/controller/v1/controller.js +65 -0
- package/lib/codec/ibc/applications/interchain_accounts/controller/v1/query.d.ts +77 -0
- package/lib/codec/ibc/applications/interchain_accounts/controller/v1/query.js +234 -0
- package/lib/codec/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +122 -0
- package/lib/codec/ibc/applications/interchain_accounts/controller/v1/tx.js +435 -0
- package/lib/codec/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -0
- package/lib/codec/ibc/applications/interchain_accounts/genesis/v1/genesis.js +462 -0
- package/lib/codec/ibc/applications/interchain_accounts/host/export.d.ts +3 -0
- package/lib/codec/ibc/applications/interchain_accounts/host/export.js +11 -0
- package/lib/codec/ibc/applications/interchain_accounts/host/v1/host.d.ts +26 -0
- package/lib/codec/ibc/applications/interchain_accounts/host/v1/host.js +84 -0
- package/lib/codec/ibc/applications/interchain_accounts/host/v1/query.d.ts +49 -0
- package/lib/codec/ibc/applications/interchain_accounts/host/v1/query.js +118 -0
- package/lib/codec/ibc/applications/interchain_accounts/host/v1/tx.d.ts +55 -0
- package/lib/codec/ibc/applications/interchain_accounts/host/v1/tx.js +132 -0
- package/lib/codec/ibc/applications/interchain_accounts/v1/account.d.ts +22 -0
- package/lib/codec/ibc/applications/interchain_accounts/v1/account.js +83 -0
- package/lib/codec/ibc/applications/interchain_accounts/v1/export.d.ts +3 -0
- package/lib/codec/ibc/applications/interchain_accounts/v1/export.js +13 -0
- package/lib/codec/ibc/applications/interchain_accounts/v1/metadata.d.ts +37 -0
- package/lib/codec/ibc/applications/interchain_accounts/v1/metadata.js +127 -0
- package/lib/codec/ibc/applications/interchain_accounts/v1/packet.d.ts +48 -0
- package/lib/codec/ibc/applications/interchain_accounts/v1/packet.js +225 -0
- package/lib/codec/ibc/applications/transfer/v1/authz.d.ts +49 -0
- package/lib/codec/ibc/applications/transfer/v1/authz.js +188 -0
- package/lib/codec/ibc/applications/transfer/v1/export.d.ts +4 -0
- package/lib/codec/ibc/applications/transfer/v1/export.js +27 -0
- package/lib/codec/ibc/applications/transfer/v1/genesis.d.ts +29 -0
- package/lib/codec/ibc/applications/transfer/v1/genesis.js +117 -0
- package/lib/codec/ibc/applications/transfer/v1/query.d.ts +216 -0
- package/lib/codec/ibc/applications/transfer/v1/query.js +674 -0
- package/lib/codec/ibc/applications/transfer/v1/transfer.d.ts +55 -0
- package/lib/codec/ibc/applications/transfer/v1/transfer.js +141 -0
- package/lib/codec/ibc/applications/transfer/v1/tx.d.ts +113 -0
- package/lib/codec/ibc/applications/transfer/v1/tx.js +339 -0
- package/lib/codec/ibc/applications/transfer/v2/export.d.ts +1 -0
- package/lib/codec/ibc/applications/transfer/v2/export.js +5 -0
- package/lib/codec/ibc/applications/transfer/v2/packet.d.ts +33 -0
- package/lib/codec/ibc/applications/transfer/v2/packet.js +115 -0
- package/lib/codec/ibc/core/channel/v1/channel.d.ts +266 -0
- package/lib/codec/ibc/core/channel/v1/channel.js +1023 -0
- package/lib/codec/ibc/core/channel/v1/export.d.ts +5 -0
- package/lib/codec/ibc/core/channel/v1/export.js +103 -0
- package/lib/codec/ibc/core/channel/v1/genesis.d.ts +47 -0
- package/lib/codec/ibc/core/channel/v1/genesis.js +300 -0
- package/lib/codec/ibc/core/channel/v1/query.d.ts +724 -0
- package/lib/codec/ibc/core/channel/v1/query.js +2739 -0
- package/lib/codec/ibc/core/channel/v1/tx.d.ts +684 -0
- package/lib/codec/ibc/core/channel/v1/tx.js +3370 -0
- package/lib/codec/ibc/core/channel/v1/upgrade.d.ts +65 -0
- package/lib/codec/ibc/core/channel/v1/upgrade.js +242 -0
- package/lib/codec/ibc/core/client/v1/client.d.ts +168 -0
- package/lib/codec/ibc/core/client/v1/client.js +516 -0
- package/lib/codec/ibc/core/client/v1/export.d.ts +4 -0
- package/lib/codec/ibc/core/client/v1/export.js +48 -0
- package/lib/codec/ibc/core/client/v1/genesis.d.ts +70 -0
- package/lib/codec/ibc/core/client/v1/genesis.js +332 -0
- package/lib/codec/ibc/core/client/v1/query.d.ts +367 -0
- package/lib/codec/ibc/core/client/v1/query.js +1185 -0
- package/lib/codec/ibc/core/client/v1/tx.d.ts +281 -0
- package/lib/codec/ibc/core/client/v1/tx.js +946 -0
- package/lib/codec/ibc/core/commitment/v1/commitment.d.ts +74 -0
- package/lib/codec/ibc/core/commitment/v1/commitment.js +262 -0
- package/lib/codec/ibc/core/commitment/v1/export.d.ts +1 -0
- package/lib/codec/ibc/core/commitment/v1/export.js +8 -0
- package/lib/codec/ibc/core/connection/v1/connection.d.ts +177 -0
- package/lib/codec/ibc/core/connection/v1/connection.js +621 -0
- package/lib/codec/ibc/core/connection/v1/export.d.ts +3 -0
- package/lib/codec/ibc/core/connection/v1/export.js +38 -0
- package/lib/codec/ibc/core/connection/v1/genesis.d.ts +25 -0
- package/lib/codec/ibc/core/connection/v1/genesis.js +126 -0
- package/lib/codec/ibc/core/connection/v1/query.d.ts +260 -0
- package/lib/codec/ibc/core/connection/v1/query.js +892 -0
- package/lib/codec/ibc/core/connection/v1/tx.d.ts +234 -0
- package/lib/codec/ibc/core/connection/v1/tx.js +975 -0
- package/lib/codec/ibc/core/types/v1/genesis.d.ts +28 -0
- package/lib/codec/ibc/core/types/v1/genesis.js +103 -0
- package/lib/codec/ibc/lightclients/localhost/v2/export.d.ts +1 -0
- package/lib/codec/ibc/lightclients/localhost/v2/export.js +5 -0
- package/lib/codec/ibc/lightclients/localhost/v2/localhost.d.ts +22 -0
- package/lib/codec/ibc/lightclients/localhost/v2/localhost.js +69 -0
- package/lib/codec/ibc/lightclients/solomachine/v2/export.d.ts +1 -0
- package/lib/codec/ibc/lightclients/solomachine/v2/export.js +23 -0
- package/lib/codec/ibc/lightclients/solomachine/v2/solomachine.d.ts +314 -0
- package/lib/codec/ibc/lightclients/solomachine/v2/solomachine.js +1359 -0
- package/lib/codec/ibc/lightclients/solomachine/v3/export.d.ts +1 -0
- package/lib/codec/ibc/lightclients/solomachine/v3/export.js +12 -0
- package/lib/codec/ibc/lightclients/solomachine/v3/solomachine.d.ts +154 -0
- package/lib/codec/ibc/lightclients/solomachine/v3/solomachine.js +719 -0
- package/lib/codec/ibc/lightclients/tendermint/v1/export.d.ts +1 -0
- package/lib/codec/ibc/lightclients/tendermint/v1/export.js +9 -0
- package/lib/codec/ibc/lightclients/tendermint/v1/tendermint.d.ts +152 -0
- package/lib/codec/ibc/lightclients/tendermint/v1/tendermint.js +622 -0
- package/lib/codec/ibc/lightclients/wasm/v1/genesis.d.ts +34 -0
- package/lib/codec/ibc/lightclients/wasm/v1/genesis.js +161 -0
- package/lib/codec/ibc/lightclients/wasm/v1/query.d.ts +81 -0
- package/lib/codec/ibc/lightclients/wasm/v1/query.js +295 -0
- package/lib/codec/ibc/lightclients/wasm/v1/tx.d.ts +114 -0
- package/lib/codec/ibc/lightclients/wasm/v1/tx.js +419 -0
- package/lib/codec/ibc/lightclients/wasm/v1/wasm.d.ts +74 -0
- package/lib/codec/ibc/lightclients/wasm/v1/wasm.js +288 -0
- package/lib/codec/ibc-models.d.ts +13 -0
- package/lib/codec/ibc-models.js +49 -0
- package/lib/codec/index.d.ts +512 -0
- package/lib/codec/index.js +26760 -0
- package/lib/codec/mememax/orbix/adl/genesis.d.ts +19 -0
- package/lib/codec/mememax/orbix/adl/genesis.js +51 -0
- package/lib/codec/mememax/orbix/adl/query.d.ts +15 -0
- package/lib/codec/mememax/orbix/adl/query.js +12 -0
- package/lib/codec/mememax/orbix/adl/tx.d.ts +15 -0
- package/lib/codec/mememax/orbix/adl/tx.js +12 -0
- package/lib/codec/mememax/orbix/admin/export.d.ts +3 -0
- package/lib/codec/mememax/orbix/admin/export.js +22 -0
- package/lib/codec/mememax/orbix/admin/genesis.d.ts +24 -0
- package/lib/codec/mememax/orbix/admin/genesis.js +94 -0
- package/lib/codec/mememax/orbix/admin/params.d.ts +32 -0
- package/lib/codec/mememax/orbix/admin/params.js +114 -0
- package/lib/codec/mememax/orbix/admin/query.d.ts +97 -0
- package/lib/codec/mememax/orbix/admin/query.js +300 -0
- package/lib/codec/mememax/orbix/admin/tx.d.ts +134 -0
- package/lib/codec/mememax/orbix/admin/tx.js +419 -0
- package/lib/codec/mememax/orbix/bank/event.d.ts +70 -0
- package/lib/codec/mememax/orbix/bank/event.js +365 -0
- package/lib/codec/mememax/orbix/bank/export.d.ts +3 -0
- package/lib/codec/mememax/orbix/bank/export.js +21 -0
- package/lib/codec/mememax/orbix/bank/genesis.d.ts +20 -0
- package/lib/codec/mememax/orbix/bank/genesis.js +71 -0
- package/lib/codec/mememax/orbix/bank/query.d.ts +102 -0
- package/lib/codec/mememax/orbix/bank/query.js +492 -0
- package/lib/codec/mememax/orbix/bank/tx.d.ts +70 -0
- package/lib/codec/mememax/orbix/bank/tx.js +234 -0
- package/lib/codec/mememax/orbix/book/book.d.ts +61 -0
- package/lib/codec/mememax/orbix/book/book.js +350 -0
- package/lib/codec/mememax/orbix/book/event.d.ts +67 -0
- package/lib/codec/mememax/orbix/book/event.js +294 -0
- package/lib/codec/mememax/orbix/book/export.d.ts +4 -0
- package/lib/codec/mememax/orbix/book/export.js +26 -0
- package/lib/codec/mememax/orbix/book/genesis.d.ts +26 -0
- package/lib/codec/mememax/orbix/book/genesis.js +87 -0
- package/lib/codec/mememax/orbix/book/legacy.d.ts +23 -0
- package/lib/codec/mememax/orbix/book/legacy.js +125 -0
- package/lib/codec/mememax/orbix/book/query.d.ts +160 -0
- package/lib/codec/mememax/orbix/book/query.js +643 -0
- package/lib/codec/mememax/orbix/book/tx.d.ts +15 -0
- package/lib/codec/mememax/orbix/book/tx.js +12 -0
- package/lib/codec/mememax/orbix/bridge/bridge.d.ts +132 -0
- package/lib/codec/mememax/orbix/bridge/bridge.js +801 -0
- package/lib/codec/mememax/orbix/bridge/event.d.ts +316 -0
- package/lib/codec/mememax/orbix/bridge/event.js +1806 -0
- package/lib/codec/mememax/orbix/bridge/export.d.ts +6 -0
- package/lib/codec/mememax/orbix/bridge/export.js +122 -0
- package/lib/codec/mememax/orbix/bridge/genesis.d.ts +29 -0
- package/lib/codec/mememax/orbix/bridge/genesis.js +249 -0
- package/lib/codec/mememax/orbix/bridge/params.d.ts +71 -0
- package/lib/codec/mememax/orbix/bridge/params.js +376 -0
- package/lib/codec/mememax/orbix/bridge/pending_action.d.ts +102 -0
- package/lib/codec/mememax/orbix/bridge/pending_action.js +718 -0
- package/lib/codec/mememax/orbix/bridge/query.d.ts +365 -0
- package/lib/codec/mememax/orbix/bridge/query.js +1589 -0
- package/lib/codec/mememax/orbix/bridge/tx.d.ts +636 -0
- package/lib/codec/mememax/orbix/bridge/tx.js +3199 -0
- package/lib/codec/mememax/orbix/broker/amm.d.ts +49 -0
- package/lib/codec/mememax/orbix/broker/amm.js +278 -0
- package/lib/codec/mememax/orbix/broker/candlestick.d.ts +28 -0
- package/lib/codec/mememax/orbix/broker/candlestick.js +219 -0
- package/lib/codec/mememax/orbix/broker/event.d.ts +55 -0
- package/lib/codec/mememax/orbix/broker/event.js +474 -0
- package/lib/codec/mememax/orbix/broker/export.d.ts +7 -0
- package/lib/codec/mememax/orbix/broker/export.js +27 -0
- package/lib/codec/mememax/orbix/broker/genesis.d.ts +21 -0
- package/lib/codec/mememax/orbix/broker/genesis.js +70 -0
- package/lib/codec/mememax/orbix/broker/incoming_liquidations.d.ts +19 -0
- package/lib/codec/mememax/orbix/broker/incoming_liquidations.js +107 -0
- package/lib/codec/mememax/orbix/broker/pagination.d.ts +20 -0
- package/lib/codec/mememax/orbix/broker/pagination.js +79 -0
- package/lib/codec/mememax/orbix/broker/query.d.ts +116 -0
- package/lib/codec/mememax/orbix/broker/query.js +592 -0
- package/lib/codec/mememax/orbix/broker/tx.d.ts +59 -0
- package/lib/codec/mememax/orbix/broker/tx.js +198 -0
- package/lib/codec/mememax/orbix/coin/bridge.d.ts +25 -0
- package/lib/codec/mememax/orbix/coin/bridge.js +156 -0
- package/lib/codec/mememax/orbix/coin/event.d.ts +155 -0
- package/lib/codec/mememax/orbix/coin/event.js +787 -0
- package/lib/codec/mememax/orbix/coin/export.d.ts +9 -0
- package/lib/codec/mememax/orbix/coin/export.js +109 -0
- package/lib/codec/mememax/orbix/coin/genesis.d.ts +44 -0
- package/lib/codec/mememax/orbix/coin/genesis.js +239 -0
- package/lib/codec/mememax/orbix/coin/group.d.ts +56 -0
- package/lib/codec/mememax/orbix/coin/group.js +237 -0
- package/lib/codec/mememax/orbix/coin/params.d.ts +35 -0
- package/lib/codec/mememax/orbix/coin/params.js +148 -0
- package/lib/codec/mememax/orbix/coin/proposal.d.ts +22 -0
- package/lib/codec/mememax/orbix/coin/proposal.js +94 -0
- package/lib/codec/mememax/orbix/coin/query.d.ts +313 -0
- package/lib/codec/mememax/orbix/coin/query.js +1414 -0
- package/lib/codec/mememax/orbix/coin/token.d.ts +112 -0
- package/lib/codec/mememax/orbix/coin/token.js +714 -0
- package/lib/codec/mememax/orbix/coin/tx.d.ts +650 -0
- package/lib/codec/mememax/orbix/coin/tx.js +3318 -0
- package/lib/codec/mememax/orbix/evmbank/export.d.ts +2 -0
- package/lib/codec/mememax/orbix/evmbank/export.js +8 -0
- package/lib/codec/mememax/orbix/evmbank/genesis.d.ts +34 -0
- package/lib/codec/mememax/orbix/evmbank/genesis.js +173 -0
- package/lib/codec/mememax/orbix/evmbank/query.d.ts +45 -0
- package/lib/codec/mememax/orbix/evmbank/query.js +126 -0
- package/lib/codec/mememax/orbix/evmmerge/address.d.ts +20 -0
- package/lib/codec/mememax/orbix/evmmerge/address.js +79 -0
- package/lib/codec/mememax/orbix/evmmerge/event.d.ts +21 -0
- package/lib/codec/mememax/orbix/evmmerge/event.js +91 -0
- package/lib/codec/mememax/orbix/evmmerge/export.d.ts +6 -0
- package/lib/codec/mememax/orbix/evmmerge/export.js +20 -0
- package/lib/codec/mememax/orbix/evmmerge/genesis.d.ts +51 -0
- package/lib/codec/mememax/orbix/evmmerge/genesis.js +236 -0
- package/lib/codec/mememax/orbix/evmmerge/offchain.d.ts +26 -0
- package/lib/codec/mememax/orbix/evmmerge/offchain.js +121 -0
- package/lib/codec/mememax/orbix/evmmerge/query.d.ts +94 -0
- package/lib/codec/mememax/orbix/evmmerge/query.js +270 -0
- package/lib/codec/mememax/orbix/evmmerge/tx.d.ts +56 -0
- package/lib/codec/mememax/orbix/evmmerge/tx.js +142 -0
- package/lib/codec/mememax/orbix/fee/event.d.ts +21 -0
- package/lib/codec/mememax/orbix/fee/event.js +91 -0
- package/lib/codec/mememax/orbix/fee/export.d.ts +4 -0
- package/lib/codec/mememax/orbix/fee/export.js +27 -0
- package/lib/codec/mememax/orbix/fee/fee.d.ts +45 -0
- package/lib/codec/mememax/orbix/fee/fee.js +203 -0
- package/lib/codec/mememax/orbix/fee/genesis.d.ts +24 -0
- package/lib/codec/mememax/orbix/fee/genesis.js +89 -0
- package/lib/codec/mememax/orbix/fee/query.d.ts +125 -0
- package/lib/codec/mememax/orbix/fee/query.js +492 -0
- package/lib/codec/mememax/orbix/fee/tx.d.ts +119 -0
- package/lib/codec/mememax/orbix/fee/tx.js +454 -0
- package/lib/codec/mememax/orbix/insurance/event.d.ts +25 -0
- package/lib/codec/mememax/orbix/insurance/event.js +51 -0
- package/lib/codec/mememax/orbix/insurance/export.d.ts +5 -0
- package/lib/codec/mememax/orbix/insurance/export.js +26 -0
- package/lib/codec/mememax/orbix/insurance/fund.d.ts +51 -0
- package/lib/codec/mememax/orbix/insurance/fund.js +271 -0
- package/lib/codec/mememax/orbix/insurance/genesis.d.ts +27 -0
- package/lib/codec/mememax/orbix/insurance/genesis.js +90 -0
- package/lib/codec/mememax/orbix/insurance/params.d.ts +41 -0
- package/lib/codec/mememax/orbix/insurance/params.js +195 -0
- package/lib/codec/mememax/orbix/insurance/query.d.ts +121 -0
- package/lib/codec/mememax/orbix/insurance/query.js +453 -0
- package/lib/codec/mememax/orbix/insurance/tx.d.ts +76 -0
- package/lib/codec/mememax/orbix/insurance/tx.js +261 -0
- package/lib/codec/mememax/orbix/leverage/event.d.ts +22 -0
- package/lib/codec/mememax/orbix/leverage/event.js +103 -0
- package/lib/codec/mememax/orbix/leverage/export.d.ts +4 -0
- package/lib/codec/mememax/orbix/leverage/export.js +16 -0
- package/lib/codec/mememax/orbix/leverage/genesis.d.ts +25 -0
- package/lib/codec/mememax/orbix/leverage/genesis.js +72 -0
- package/lib/codec/mememax/orbix/leverage/leverage.d.ts +32 -0
- package/lib/codec/mememax/orbix/leverage/leverage.js +144 -0
- package/lib/codec/mememax/orbix/leverage/query.d.ts +77 -0
- package/lib/codec/mememax/orbix/leverage/query.js +257 -0
- package/lib/codec/mememax/orbix/leverage/tx.d.ts +48 -0
- package/lib/codec/mememax/orbix/leverage/tx.js +141 -0
- package/lib/codec/mememax/orbix/liquidation/event.d.ts +24 -0
- package/lib/codec/mememax/orbix/liquidation/event.js +159 -0
- package/lib/codec/mememax/orbix/liquidation/export.d.ts +5 -0
- package/lib/codec/mememax/orbix/liquidation/export.js +15 -0
- package/lib/codec/mememax/orbix/liquidation/genesis.d.ts +39 -0
- package/lib/codec/mememax/orbix/liquidation/genesis.js +153 -0
- package/lib/codec/mememax/orbix/liquidation/outstanding_position.d.ts +35 -0
- package/lib/codec/mememax/orbix/liquidation/outstanding_position.js +216 -0
- package/lib/codec/mememax/orbix/liquidation/query.d.ts +57 -0
- package/lib/codec/mememax/orbix/liquidation/query.js +256 -0
- package/lib/codec/mememax/orbix/liquidation/quote_changes.d.ts +23 -0
- package/lib/codec/mememax/orbix/liquidation/quote_changes.js +105 -0
- package/lib/codec/mememax/orbix/liquidation/tx.d.ts +15 -0
- package/lib/codec/mememax/orbix/liquidation/tx.js +12 -0
- package/lib/codec/mememax/orbix/market/event.d.ts +21 -0
- package/lib/codec/mememax/orbix/market/event.js +82 -0
- package/lib/codec/mememax/orbix/market/export.d.ts +7 -0
- package/lib/codec/mememax/orbix/market/export.js +71 -0
- package/lib/codec/mememax/orbix/market/fee.d.ts +134 -0
- package/lib/codec/mememax/orbix/market/fee.js +350 -0
- package/lib/codec/mememax/orbix/market/genesis.d.ts +33 -0
- package/lib/codec/mememax/orbix/market/genesis.js +164 -0
- package/lib/codec/mememax/orbix/market/market.d.ts +116 -0
- package/lib/codec/mememax/orbix/market/market.js +930 -0
- package/lib/codec/mememax/orbix/market/params.d.ts +81 -0
- package/lib/codec/mememax/orbix/market/params.js +754 -0
- package/lib/codec/mememax/orbix/market/proposal.d.ts +49 -0
- package/lib/codec/mememax/orbix/market/proposal.js +249 -0
- package/lib/codec/mememax/orbix/market/query.d.ts +267 -0
- package/lib/codec/mememax/orbix/market/query.js +1095 -0
- package/lib/codec/mememax/orbix/market/tx.d.ts +394 -0
- package/lib/codec/mememax/orbix/market/tx.js +1823 -0
- package/lib/codec/mememax/orbix/marketstats/export.d.ts +2 -0
- package/lib/codec/mememax/orbix/marketstats/export.js +8 -0
- package/lib/codec/mememax/orbix/marketstats/genesis.d.ts +19 -0
- package/lib/codec/mememax/orbix/marketstats/genesis.js +51 -0
- package/lib/codec/mememax/orbix/marketstats/marketstats.d.ts +32 -0
- package/lib/codec/mememax/orbix/marketstats/marketstats.js +263 -0
- package/lib/codec/mememax/orbix/marketstats/query.d.ts +45 -0
- package/lib/codec/mememax/orbix/marketstats/query.js +122 -0
- package/lib/codec/mememax/orbix/marketstats/tx.d.ts +15 -0
- package/lib/codec/mememax/orbix/marketstats/tx.js +12 -0
- package/lib/codec/mememax/orbix/misc/block.d.ts +22 -0
- package/lib/codec/mememax/orbix/misc/block.js +105 -0
- package/lib/codec/mememax/orbix/misc/export.d.ts +6 -0
- package/lib/codec/mememax/orbix/misc/export.js +29 -0
- package/lib/codec/mememax/orbix/misc/message.d.ts +25 -0
- package/lib/codec/mememax/orbix/misc/message.js +166 -0
- package/lib/codec/mememax/orbix/misc/message_type.d.ts +19 -0
- package/lib/codec/mememax/orbix/misc/message_type.js +65 -0
- package/lib/codec/mememax/orbix/misc/query.d.ts +209 -0
- package/lib/codec/mememax/orbix/misc/query.js +957 -0
- package/lib/codec/mememax/orbix/misc/trade.d.ts +29 -0
- package/lib/codec/mememax/orbix/misc/trade.js +228 -0
- package/lib/codec/mememax/orbix/misc/transaction.d.ts +47 -0
- package/lib/codec/mememax/orbix/misc/transaction.js +372 -0
- package/lib/codec/mememax/orbix/oracle/event.d.ts +39 -0
- package/lib/codec/mememax/orbix/oracle/event.js +229 -0
- package/lib/codec/mememax/orbix/oracle/export.d.ts +7 -0
- package/lib/codec/mememax/orbix/oracle/export.js +70 -0
- package/lib/codec/mememax/orbix/oracle/genesis.d.ts +31 -0
- package/lib/codec/mememax/orbix/oracle/genesis.js +172 -0
- package/lib/codec/mememax/orbix/oracle/historical.d.ts +47 -0
- package/lib/codec/mememax/orbix/oracle/historical.js +227 -0
- package/lib/codec/mememax/orbix/oracle/oracle.d.ts +42 -0
- package/lib/codec/mememax/orbix/oracle/oracle.js +284 -0
- package/lib/codec/mememax/orbix/oracle/params.d.ts +49 -0
- package/lib/codec/mememax/orbix/oracle/params.js +395 -0
- package/lib/codec/mememax/orbix/oracle/query.d.ts +363 -0
- package/lib/codec/mememax/orbix/oracle/query.js +1623 -0
- package/lib/codec/mememax/orbix/oracle/slashing.d.ts +35 -0
- package/lib/codec/mememax/orbix/oracle/slashing.js +189 -0
- package/lib/codec/mememax/orbix/oracle/tx.d.ts +333 -0
- package/lib/codec/mememax/orbix/oracle/tx.js +1627 -0
- package/lib/codec/mememax/orbix/order/event.d.ts +24 -0
- package/lib/codec/mememax/orbix/order/event.js +141 -0
- package/lib/codec/mememax/orbix/order/export.d.ts +6 -0
- package/lib/codec/mememax/orbix/order/export.js +46 -0
- package/lib/codec/mememax/orbix/order/genesis.d.ts +67 -0
- package/lib/codec/mememax/orbix/order/genesis.js +346 -0
- package/lib/codec/mememax/orbix/order/order.d.ts +98 -0
- package/lib/codec/mememax/orbix/order/order.js +812 -0
- package/lib/codec/mememax/orbix/order/params.d.ts +32 -0
- package/lib/codec/mememax/orbix/order/params.js +154 -0
- package/lib/codec/mememax/orbix/order/query.d.ts +188 -0
- package/lib/codec/mememax/orbix/order/query.js +748 -0
- package/lib/codec/mememax/orbix/order/tx.d.ts +228 -0
- package/lib/codec/mememax/orbix/order/tx.js +1010 -0
- package/lib/codec/mememax/orbix/perpspool/event.d.ts +182 -0
- package/lib/codec/mememax/orbix/perpspool/event.js +1158 -0
- package/lib/codec/mememax/orbix/perpspool/export.d.ts +9 -0
- package/lib/codec/mememax/orbix/perpspool/export.js +116 -0
- package/lib/codec/mememax/orbix/perpspool/genesis.d.ts +83 -0
- package/lib/codec/mememax/orbix/perpspool/genesis.js +506 -0
- package/lib/codec/mememax/orbix/perpspool/market.d.ts +139 -0
- package/lib/codec/mememax/orbix/perpspool/market.js +582 -0
- package/lib/codec/mememax/orbix/perpspool/params.d.ts +86 -0
- package/lib/codec/mememax/orbix/perpspool/params.js +765 -0
- package/lib/codec/mememax/orbix/perpspool/pool.d.ts +132 -0
- package/lib/codec/mememax/orbix/perpspool/pool.js +694 -0
- package/lib/codec/mememax/orbix/perpspool/query.d.ts +465 -0
- package/lib/codec/mememax/orbix/perpspool/query.js +2106 -0
- package/lib/codec/mememax/orbix/perpspool/quote.d.ts +52 -0
- package/lib/codec/mememax/orbix/perpspool/quote.js +238 -0
- package/lib/codec/mememax/orbix/perpspool/tx.d.ts +447 -0
- package/lib/codec/mememax/orbix/perpspool/tx.js +2030 -0
- package/lib/codec/mememax/orbix/perpspool/user_vault.d.ts +82 -0
- package/lib/codec/mememax/orbix/perpspool/user_vault.js +488 -0
- package/lib/codec/mememax/orbix/position/event.d.ts +38 -0
- package/lib/codec/mememax/orbix/position/event.js +221 -0
- package/lib/codec/mememax/orbix/position/export.d.ts +4 -0
- package/lib/codec/mememax/orbix/position/export.js +26 -0
- package/lib/codec/mememax/orbix/position/genesis.d.ts +25 -0
- package/lib/codec/mememax/orbix/position/genesis.js +72 -0
- package/lib/codec/mememax/orbix/position/position.d.ts +89 -0
- package/lib/codec/mememax/orbix/position/position.js +655 -0
- package/lib/codec/mememax/orbix/position/query.d.ts +148 -0
- package/lib/codec/mememax/orbix/position/query.js +625 -0
- package/lib/codec/mememax/orbix/position/tx.d.ts +47 -0
- package/lib/codec/mememax/orbix/position/tx.js +141 -0
- package/lib/codec/mememax/orbix/pricing/event.d.ts +91 -0
- package/lib/codec/mememax/orbix/pricing/event.js +430 -0
- package/lib/codec/mememax/orbix/pricing/export.d.ts +6 -0
- package/lib/codec/mememax/orbix/pricing/export.js +59 -0
- package/lib/codec/mememax/orbix/pricing/genesis.d.ts +28 -0
- package/lib/codec/mememax/orbix/pricing/genesis.js +105 -0
- package/lib/codec/mememax/orbix/pricing/legacy.d.ts +23 -0
- package/lib/codec/mememax/orbix/pricing/legacy.js +99 -0
- package/lib/codec/mememax/orbix/pricing/params.d.ts +41 -0
- package/lib/codec/mememax/orbix/pricing/params.js +293 -0
- package/lib/codec/mememax/orbix/pricing/pricing.d.ts +100 -0
- package/lib/codec/mememax/orbix/pricing/pricing.js +669 -0
- package/lib/codec/mememax/orbix/pricing/query.d.ts +252 -0
- package/lib/codec/mememax/orbix/pricing/query.js +1039 -0
- package/lib/codec/mememax/orbix/pricing/tx.d.ts +239 -0
- package/lib/codec/mememax/orbix/pricing/tx.js +916 -0
- package/lib/codec/mememax/orbix/sequence/export.d.ts +3 -0
- package/lib/codec/mememax/orbix/sequence/export.js +13 -0
- package/lib/codec/mememax/orbix/sequence/genesis.d.ts +32 -0
- package/lib/codec/mememax/orbix/sequence/genesis.js +136 -0
- package/lib/codec/mememax/orbix/sequence/query.d.ts +73 -0
- package/lib/codec/mememax/orbix/sequence/query.js +262 -0
- package/lib/codec/mememax/orbix/sequence/tx.d.ts +46 -0
- package/lib/codec/mememax/orbix/sequence/tx.js +155 -0
- package/lib/codec/mememax/orbix/subaccount/export.d.ts +5 -0
- package/lib/codec/mememax/orbix/subaccount/export.js +41 -0
- package/lib/codec/mememax/orbix/subaccount/genesis.d.ts +30 -0
- package/lib/codec/mememax/orbix/subaccount/genesis.js +128 -0
- package/lib/codec/mememax/orbix/subaccount/legacy.d.ts +20 -0
- package/lib/codec/mememax/orbix/subaccount/legacy.js +79 -0
- package/lib/codec/mememax/orbix/subaccount/params.d.ts +31 -0
- package/lib/codec/mememax/orbix/subaccount/params.js +134 -0
- package/lib/codec/mememax/orbix/subaccount/query.d.ts +275 -0
- package/lib/codec/mememax/orbix/subaccount/query.js +1197 -0
- package/lib/codec/mememax/orbix/subaccount/subaccount.d.ts +49 -0
- package/lib/codec/mememax/orbix/subaccount/subaccount.js +296 -0
- package/lib/codec/mememax/orbix/subaccount/tx.d.ts +145 -0
- package/lib/codec/mememax/orbix/subaccount/tx.js +519 -0
- package/lib/codec/oraclesvc/query.d.ts +23 -0
- package/lib/codec/oraclesvc/query.js +25 -0
- package/lib/codec/tendermint/abci/types.d.ts +867 -0
- package/lib/codec/tendermint/abci/types.js +4883 -0
- package/lib/codec/tendermint/crypto/keys.d.ts +21 -0
- package/lib/codec/tendermint/crypto/keys.js +121 -0
- package/lib/codec/tendermint/crypto/proof.d.ts +79 -0
- package/lib/codec/tendermint/crypto/proof.js +415 -0
- package/lib/codec/tendermint/libs/bits/types.d.ts +20 -0
- package/lib/codec/tendermint/libs/bits/types.js +93 -0
- package/lib/codec/tendermint/oracle/types.d.ts +96 -0
- package/lib/codec/tendermint/oracle/types.js +666 -0
- package/lib/codec/tendermint/p2p/types.d.ts +64 -0
- package/lib/codec/tendermint/p2p/types.js +416 -0
- package/lib/codec/tendermint/types/block.d.ts +24 -0
- package/lib/codec/tendermint/types/block.js +113 -0
- package/lib/codec/tendermint/types/evidence.d.ts +65 -0
- package/lib/codec/tendermint/types/evidence.js +402 -0
- package/lib/codec/tendermint/types/params.d.ts +148 -0
- package/lib/codec/tendermint/types/params.js +499 -0
- package/lib/codec/tendermint/types/types.d.ts +289 -0
- package/lib/codec/tendermint/types/types.js +1650 -0
- package/lib/codec/tendermint/types/validator.d.ts +62 -0
- package/lib/codec/tendermint/types/validator.js +353 -0
- package/lib/codec/tendermint/version/types.d.ts +42 -0
- package/lib/codec/tendermint/version/types.js +143 -0
- package/lib/constant/address.d.ts +3 -0
- package/lib/constant/address.js +5 -0
- package/lib/constant/eip6963Provider.d.ts +66 -0
- package/lib/constant/eip6963Provider.js +31 -0
- package/lib/constant/eip712.d.ts +46 -0
- package/lib/constant/eip712.js +106 -0
- package/lib/constant/generic.d.ts +24 -0
- package/lib/constant/generic.js +24 -0
- package/lib/constant/grant.d.ts +1 -0
- package/lib/constant/grant.js +4 -0
- package/lib/constant/ibc.d.ts +190 -0
- package/lib/constant/ibc.js +2145 -0
- package/lib/constant/index.d.ts +10 -0
- package/lib/constant/index.js +26 -0
- package/lib/constant/modules.d.ts +1 -0
- package/lib/constant/modules.js +2 -0
- package/lib/constant/network.d.ts +77 -0
- package/lib/constant/network.js +429 -0
- package/lib/constant/node.d.ts +5 -0
- package/lib/constant/node.js +80 -0
- package/lib/constant/token.d.ts +13 -0
- package/lib/constant/token.js +375 -0
- package/lib/constant/walletProvider.d.ts +10 -0
- package/lib/constant/walletProvider.js +15 -0
- package/lib/constant/web3Config.d.ts +23 -0
- package/lib/constant/web3Config.js +46 -0
- package/lib/eth/abis/axelarBridge.json +1150 -0
- package/lib/eth/abis/balanceReader.json +26 -0
- package/lib/eth/abis/bridgeEntrance.json +105 -0
- package/lib/eth/abis/erc20.json +222 -0
- package/lib/eth/abis/index.d.ts +9 -0
- package/lib/eth/abis/index.js +22 -0
- package/lib/eth/abis/keyStorage.json +44 -0
- package/lib/eth/abis/lockProxy.json +574 -0
- package/lib/eth/abis/nativeDepositer.json +167 -0
- package/lib/eth/abis/vault.json +119 -0
- package/lib/eth/index.d.ts +1 -0
- package/lib/eth/index.js +37 -0
- package/lib/hydrogen/feeQuote.d.ts +23 -0
- package/lib/hydrogen/feeQuote.js +2 -0
- package/lib/hydrogen/index.d.ts +3 -0
- package/lib/hydrogen/index.js +19 -0
- package/lib/hydrogen/relays.d.ts +34 -0
- package/lib/hydrogen/relays.js +2 -0
- package/lib/hydrogen/stats.d.ts +26 -0
- package/lib/hydrogen/stats.js +2 -0
- package/lib/hydrogen/transfer.d.ts +159 -0
- package/lib/hydrogen/transfer.js +10 -0
- package/lib/index.d.ts +12 -0
- package/lib/index.js +69 -0
- package/lib/insights/alliances.d.ts +39 -0
- package/lib/insights/alliances.js +2 -0
- package/lib/insights/balance.d.ts +74 -0
- package/lib/insights/balance.js +2 -0
- package/lib/insights/block.d.ts +25 -0
- package/lib/insights/block.js +2 -0
- package/lib/insights/chain.d.ts +40 -0
- package/lib/insights/chain.js +2 -0
- package/lib/insights/common.d.ts +101 -0
- package/lib/insights/common.js +83 -0
- package/lib/insights/competition.d.ts +196 -0
- package/lib/insights/competition.js +2 -0
- package/lib/insights/crosschain.d.ts +10 -0
- package/lib/insights/crosschain.js +2 -0
- package/lib/insights/delegation.d.ts +26 -0
- package/lib/insights/delegation.js +2 -0
- package/lib/insights/funding.d.ts +41 -0
- package/lib/insights/funding.js +2 -0
- package/lib/insights/index.d.ts +16 -0
- package/lib/insights/index.js +32 -0
- package/lib/insights/inflation.d.ts +6 -0
- package/lib/insights/inflation.js +2 -0
- package/lib/insights/market.d.ts +25 -0
- package/lib/insights/market.js +8 -0
- package/lib/insights/node.d.ts +32 -0
- package/lib/insights/node.js +2 -0
- package/lib/insights/oracles.d.ts +17 -0
- package/lib/insights/oracles.js +2 -0
- package/lib/insights/pool.d.ts +201 -0
- package/lib/insights/pool.js +2 -0
- package/lib/insights/position.d.ts +104 -0
- package/lib/insights/position.js +10 -0
- package/lib/insights/proposal.d.ts +21 -0
- package/lib/insights/proposal.js +2 -0
- package/lib/insights/transaction.d.ts +30 -0
- package/lib/insights/transaction.js +2 -0
- package/lib/insights/user.d.ts +148 -0
- package/lib/insights/user.js +2 -0
- package/lib/modules/admin.d.ts +298 -0
- package/lib/modules/admin.js +368 -0
- package/lib/modules/alliance.d.ts +43 -0
- package/lib/modules/alliance.js +79 -0
- package/lib/modules/bank.d.ts +14 -0
- package/lib/modules/bank.js +24 -0
- package/lib/modules/base.d.ts +12 -0
- package/lib/modules/base.js +18 -0
- package/lib/modules/bridge.d.ts +38 -0
- package/lib/modules/bridge.js +84 -0
- package/lib/modules/broker.d.ts +16 -0
- package/lib/modules/broker.js +37 -0
- package/lib/modules/coin.d.ts +54 -0
- package/lib/modules/coin.js +108 -0
- package/lib/modules/cosmwasm.d.ts +20 -0
- package/lib/modules/cosmwasm.js +69 -0
- package/lib/modules/evm.d.ts +45 -0
- package/lib/modules/evm.js +73 -0
- package/lib/modules/evmmerge.d.ts +12 -0
- package/lib/modules/evmmerge.js +24 -0
- package/lib/modules/fee.d.ts +5 -0
- package/lib/modules/fee.js +16 -0
- package/lib/modules/gov.d.ts +21 -0
- package/lib/modules/gov.js +55 -0
- package/lib/modules/grant.d.ts +29 -0
- package/lib/modules/grant.js +137 -0
- package/lib/modules/ibc.d.ts +46 -0
- package/lib/modules/ibc.js +244 -0
- package/lib/modules/index.d.ts +19 -0
- package/lib/modules/index.js +35 -0
- package/lib/modules/leverage.d.ts +14 -0
- package/lib/modules/leverage.js +41 -0
- package/lib/modules/market.d.ts +104 -0
- package/lib/modules/market.js +153 -0
- package/lib/modules/oracle.d.ts +5 -0
- package/lib/modules/oracle.js +10 -0
- package/lib/modules/order.d.ts +78 -0
- package/lib/modules/order.js +156 -0
- package/lib/modules/perpspool.d.ts +72 -0
- package/lib/modules/perpspool.js +178 -0
- package/lib/modules/position.d.ts +14 -0
- package/lib/modules/position.js +41 -0
- package/lib/modules/staking.d.ts +36 -0
- package/lib/modules/staking.js +81 -0
- package/lib/modules/subaccount.d.ts +24 -0
- package/lib/modules/subaccount.js +51 -0
- package/lib/provider/amino/AminoTypesMap.d.ts +3 -0
- package/lib/provider/amino/AminoTypesMap.js +27 -0
- package/lib/provider/amino/index.d.ts +1 -0
- package/lib/provider/amino/index.js +8 -0
- package/lib/provider/amino/types/admin.d.ts +4 -0
- package/lib/provider/amino/types/admin.js +132 -0
- package/lib/provider/amino/types/bank.d.ts +4 -0
- package/lib/provider/amino/types/bank.js +48 -0
- package/lib/provider/amino/types/bridge.d.ts +4 -0
- package/lib/provider/amino/types/bridge.js +59 -0
- package/lib/provider/amino/types/broker.d.ts +4 -0
- package/lib/provider/amino/types/broker.js +48 -0
- package/lib/provider/amino/types/coin.d.ts +4 -0
- package/lib/provider/amino/types/coin.js +66 -0
- package/lib/provider/amino/types/evm.d.ts +4 -0
- package/lib/provider/amino/types/evm.js +48 -0
- package/lib/provider/amino/types/evmmerge.d.ts +4 -0
- package/lib/provider/amino/types/evmmerge.js +48 -0
- package/lib/provider/amino/types/feemarket.d.ts +4 -0
- package/lib/provider/amino/types/feemarket.js +48 -0
- package/lib/provider/amino/types/gov.d.ts +4 -0
- package/lib/provider/amino/types/gov.js +358 -0
- package/lib/provider/amino/types/grant.d.ts +4 -0
- package/lib/provider/amino/types/grant.js +217 -0
- package/lib/provider/amino/types/group.d.ts +4 -0
- package/lib/provider/amino/types/group.js +64 -0
- package/lib/provider/amino/types/ibc.d.ts +4 -0
- package/lib/provider/amino/types/ibc.js +74 -0
- package/lib/provider/amino/types/index.d.ts +20 -0
- package/lib/provider/amino/types/index.js +46 -0
- package/lib/provider/amino/types/leverage.d.ts +4 -0
- package/lib/provider/amino/types/leverage.js +50 -0
- package/lib/provider/amino/types/market.d.ts +4 -0
- package/lib/provider/amino/types/market.js +104 -0
- package/lib/provider/amino/types/oracle.d.ts +4 -0
- package/lib/provider/amino/types/oracle.js +4 -0
- package/lib/provider/amino/types/order.d.ts +4 -0
- package/lib/provider/amino/types/order.js +105 -0
- package/lib/provider/amino/types/perpspool.d.ts +4 -0
- package/lib/provider/amino/types/perpspool.js +121 -0
- package/lib/provider/amino/types/position.d.ts +4 -0
- package/lib/provider/amino/types/position.js +48 -0
- package/lib/provider/amino/types/staking.d.ts +4 -0
- package/lib/provider/amino/types/staking.js +66 -0
- package/lib/provider/amino/types/subaccount.d.ts +4 -0
- package/lib/provider/amino/types/subaccount.js +60 -0
- package/lib/provider/amino/utils.d.ts +45 -0
- package/lib/provider/amino/utils.js +249 -0
- package/lib/provider/chainProvider/GetSigningCosmosClientOptions.d.ts +2 -0
- package/lib/provider/chainProvider/GetSigningCosmosClientOptions.js +18 -0
- package/lib/provider/chainProvider/index.d.ts +2 -0
- package/lib/provider/chainProvider/index.js +5 -0
- package/lib/provider/eip6963Provider/Eip6963Provider.d.ts +9 -0
- package/lib/provider/eip6963Provider/Eip6963Provider.js +27 -0
- package/lib/provider/eip6963Provider/index.d.ts +1 -0
- package/lib/provider/eip6963Provider/index.js +8 -0
- package/lib/provider/index.d.ts +10 -0
- package/lib/provider/index.js +22 -0
- package/lib/provider/keplr/KeplrAccount.d.ts +27 -0
- package/lib/provider/keplr/KeplrAccount.js +229 -0
- package/lib/provider/keplr/KeplrStore.d.ts +0 -0
- package/lib/provider/keplr/KeplrStore.js +1 -0
- package/lib/provider/keplr/index.d.ts +3 -0
- package/lib/provider/keplr/index.js +8 -0
- package/lib/provider/leap/LeapAccount.d.ts +28 -0
- package/lib/provider/leap/LeapAccount.js +203 -0
- package/lib/provider/leap/index.d.ts +3 -0
- package/lib/provider/leap/index.js +8 -0
- package/lib/provider/ledger/index.d.ts +1 -0
- package/lib/provider/ledger/index.js +8 -0
- package/lib/provider/ledger/ledger.d.ts +28 -0
- package/lib/provider/ledger/ledger.js +308 -0
- package/lib/provider/metamask/MetaMask.d.ts +83 -0
- package/lib/provider/metamask/MetaMask.js +665 -0
- package/lib/provider/metamask/error.d.ts +2 -0
- package/lib/provider/metamask/error.js +18 -0
- package/lib/provider/metamask/index.d.ts +1 -0
- package/lib/provider/metamask/index.js +5 -0
- package/lib/provider/metamask/legacy-accounts.d.ts +11 -0
- package/lib/provider/metamask/legacy-accounts.js +2254 -0
- package/lib/provider/rainbowKit/RainbowKitAccount.d.ts +41 -0
- package/lib/provider/rainbowKit/RainbowKitAccount.js +298 -0
- package/lib/provider/rainbowKit/index.d.ts +1 -0
- package/lib/provider/rainbowKit/index.js +8 -0
- package/lib/provider/sdk/SDKProvider.d.ts +13 -0
- package/lib/provider/sdk/SDKProvider.js +2 -0
- package/lib/provider/sdk/index.d.ts +1 -0
- package/lib/provider/sdk/index.js +2 -0
- package/lib/util/address.d.ts +72 -0
- package/lib/util/address.js +252 -0
- package/lib/util/alliance.d.ts +2 -0
- package/lib/util/alliance.js +27 -0
- package/lib/util/api.d.ts +122 -0
- package/lib/util/api.js +175 -0
- package/lib/util/auth.d.ts +31 -0
- package/lib/util/auth.js +46 -0
- package/lib/util/blockchain.d.ts +96 -0
- package/lib/util/blockchain.js +571 -0
- package/lib/util/bytes.d.ts +1 -0
- package/lib/util/bytes.js +9 -0
- package/lib/util/eip712.d.ts +10 -0
- package/lib/util/eip712.js +199 -0
- package/lib/util/ethermint.d.ts +9 -0
- package/lib/util/ethermint.js +131 -0
- package/lib/util/evm.d.ts +2 -0
- package/lib/util/evm.js +10 -0
- package/lib/util/external.d.ts +11 -0
- package/lib/util/external.js +7 -0
- package/lib/util/fetch.d.ts +1 -0
- package/lib/util/fetch.js +15 -0
- package/lib/util/generic.d.ts +40 -0
- package/lib/util/generic.js +163 -0
- package/lib/util/gov.d.ts +47 -0
- package/lib/util/gov.js +251 -0
- package/lib/util/grant.d.ts +21 -0
- package/lib/util/grant.js +59 -0
- package/lib/util/ibc.d.ts +19 -0
- package/lib/util/ibc.js +148 -0
- package/lib/util/index.d.ts +20 -0
- package/lib/util/index.js +56 -0
- package/lib/util/ledger.d.ts +3 -0
- package/lib/util/ledger.js +43 -0
- package/lib/util/legacyEIP712.d.ts +20 -0
- package/lib/util/legacyEIP712.js +100 -0
- package/lib/util/message.d.ts +2 -0
- package/lib/util/message.js +24 -0
- package/lib/util/network.d.ts +9 -0
- package/lib/util/network.js +39 -0
- package/lib/util/number.d.ts +9 -0
- package/lib/util/number.js +47 -0
- package/lib/util/order.d.ts +3 -0
- package/lib/util/order.js +13 -0
- package/lib/util/provider.d.ts +1 -0
- package/lib/util/provider.js +12 -0
- package/lib/util/token.d.ts +16 -0
- package/lib/util/token.js +23 -0
- package/lib/util/transferfees.d.ts +18 -0
- package/lib/util/transferfees.js +9 -0
- package/lib/util/tx.d.ts +559 -0
- package/lib/util/tx.js +168 -0
- package/lib/util/type.d.ts +22 -0
- package/lib/util/type.js +45 -0
- package/lib/wallet/CarbonSigner.d.ts +67 -0
- package/lib/wallet/CarbonSigner.js +131 -0
- package/lib/wallet/CarbonSigningClient.d.ts +41 -0
- package/lib/wallet/CarbonSigningClient.js +201 -0
- package/lib/wallet/CarbonWallet.d.ts +220 -0
- package/lib/wallet/CarbonWallet.js +790 -0
- package/lib/wallet/index.d.ts +2 -0
- package/lib/wallet/index.js +18 -0
- package/lib/websocket/channel.d.ts +3 -0
- package/lib/websocket/channel.js +209 -0
- package/lib/websocket/connector.d.ts +234 -0
- package/lib/websocket/connector.js +502 -0
- package/lib/websocket/index.d.ts +1 -0
- package/lib/websocket/index.js +17 -0
- package/lib/websocket/models.d.ts +332 -0
- package/lib/websocket/models.js +2 -0
- package/lib/websocket/types.d.ts +154 -0
- package/lib/websocket/types.js +44 -0
- package/package.json +90 -0
|
@@ -0,0 +1,2145 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.DefaultGasPriceStep = exports.ibcGasOverride = exports.ibcDefaultGas = exports.ibcTransferChannelRegex = exports.ibcNetworkRegex = exports.cosmBridgeRegex = exports.factoryIbcMinimalDenomRegex = exports.cw20TokenRegex = exports.ibcTokenRegex = exports.cibtIbcTokenRegex = exports.swthChannels = exports.EmbedChainInfosInit = exports.ibcWhitelist = exports.swthIbcWhitelist = exports.ChainIds = exports.IBCAddress = void 0;
|
|
37
|
+
const bech32 = __importStar(require("bech32"));
|
|
38
|
+
const generic_1 = require("./generic");
|
|
39
|
+
const token_1 = require("./token");
|
|
40
|
+
exports.IBCAddress = {
|
|
41
|
+
getAddressBytes(bech32Address, prefix) {
|
|
42
|
+
const decoded = bech32.decode(bech32Address);
|
|
43
|
+
if (prefix && decoded.prefix !== prefix) {
|
|
44
|
+
throw new Error("Unmatched prefix");
|
|
45
|
+
}
|
|
46
|
+
return new Uint8Array(bech32.fromWords(decoded.words));
|
|
47
|
+
},
|
|
48
|
+
defaultBech32Config(mainPrefix, validatorPrefix = "val", consensusPrefix = "cons", publicPrefix = "pub", operatorPrefix = "oper") {
|
|
49
|
+
return {
|
|
50
|
+
bech32PrefixAccAddr: mainPrefix,
|
|
51
|
+
bech32PrefixAccPub: mainPrefix + publicPrefix,
|
|
52
|
+
bech32PrefixValAddr: mainPrefix + validatorPrefix + operatorPrefix,
|
|
53
|
+
bech32PrefixValPub: mainPrefix + validatorPrefix + operatorPrefix + publicPrefix,
|
|
54
|
+
bech32PrefixConsAddr: mainPrefix + validatorPrefix + consensusPrefix,
|
|
55
|
+
bech32PrefixConsPub: mainPrefix + validatorPrefix + consensusPrefix + publicPrefix,
|
|
56
|
+
};
|
|
57
|
+
},
|
|
58
|
+
deriveAddressFromBytes(bytes, prefix) {
|
|
59
|
+
const words = bech32.toWords(bytes);
|
|
60
|
+
return bech32.encode(prefix, words);
|
|
61
|
+
},
|
|
62
|
+
};
|
|
63
|
+
var ChainIds;
|
|
64
|
+
(function (ChainIds) {
|
|
65
|
+
ChainIds["Osmosis"] = "osmosis-1";
|
|
66
|
+
ChainIds["CosmosHub"] = "cosmoshub-4";
|
|
67
|
+
ChainIds["Terra"] = "columbus-5";
|
|
68
|
+
ChainIds["Secret"] = "secret-4";
|
|
69
|
+
ChainIds["Akash"] = "akashnet-2";
|
|
70
|
+
ChainIds["Regen"] = "regen-1";
|
|
71
|
+
ChainIds["Sentinel"] = "sentinelhub-2";
|
|
72
|
+
ChainIds["Persistence"] = "core-1";
|
|
73
|
+
ChainIds["IrisNet"] = "irishub-1";
|
|
74
|
+
ChainIds["CryptoOrg"] = "crypto-org-chain-mainnet-1";
|
|
75
|
+
ChainIds["Starname"] = "iov-mainnet-ibc";
|
|
76
|
+
ChainIds["EMoney"] = "emoney-3";
|
|
77
|
+
ChainIds["Juno"] = "juno-1";
|
|
78
|
+
ChainIds["Evmos"] = "evmos_9001-2";
|
|
79
|
+
ChainIds["Microtick"] = "microtick-1";
|
|
80
|
+
ChainIds["LikeCoin"] = "likecoin-mainnet-2";
|
|
81
|
+
ChainIds["IXO"] = "impacthub-3";
|
|
82
|
+
ChainIds["BitCanna"] = "bitcanna-1";
|
|
83
|
+
ChainIds["BitSong"] = "bitsong-2b";
|
|
84
|
+
ChainIds["KiChain"] = "kichain-2";
|
|
85
|
+
ChainIds["MediBloc"] = "panacea-3";
|
|
86
|
+
ChainIds["Bostrom"] = "bostrom";
|
|
87
|
+
ChainIds["Comdex"] = "comdex-1";
|
|
88
|
+
ChainIds["Cheqd"] = "cheqd-mainnet-1";
|
|
89
|
+
ChainIds["Stargaze"] = "stargaze-1";
|
|
90
|
+
ChainIds["Chihuahua"] = "chihuahua-1";
|
|
91
|
+
ChainIds["LumNetwork"] = "lum-network-1";
|
|
92
|
+
ChainIds["Vidulum"] = "vidulum-1";
|
|
93
|
+
ChainIds["Desmos"] = "desmos-mainnet";
|
|
94
|
+
ChainIds["Dig"] = "dig-1";
|
|
95
|
+
ChainIds["Sommelier"] = "sommelier-3";
|
|
96
|
+
ChainIds["Sifchain"] = "sifchain-1";
|
|
97
|
+
ChainIds["BandChain"] = "laozi-mainnet";
|
|
98
|
+
ChainIds["Konstellation"] = "darchub";
|
|
99
|
+
ChainIds["Umee"] = "umee-1";
|
|
100
|
+
ChainIds["GravityBridge"] = "gravity-bridge-3";
|
|
101
|
+
ChainIds["Decentr"] = "mainnet-3";
|
|
102
|
+
ChainIds["Certik"] = "shentu-2.2";
|
|
103
|
+
ChainIds["Carbon"] = "carbon-1";
|
|
104
|
+
ChainIds["Axelar"] = "axelar-dojo-1";
|
|
105
|
+
ChainIds["Stride"] = "stride-1";
|
|
106
|
+
ChainIds["Kujira"] = "kaiyo-1";
|
|
107
|
+
ChainIds["Terra2"] = "phoenix-1";
|
|
108
|
+
ChainIds["Quicksilver"] = "quicksilver-2";
|
|
109
|
+
ChainIds["StafiHub"] = "stafihub-1";
|
|
110
|
+
ChainIds["Canto"] = "canto_7700-1";
|
|
111
|
+
ChainIds["OmniFlixHub"] = "omniflixhub-1";
|
|
112
|
+
ChainIds["Agoric"] = "agoric-3";
|
|
113
|
+
})(ChainIds || (exports.ChainIds = ChainIds = {}));
|
|
114
|
+
// whitelisted networks for addition of swth as a currency
|
|
115
|
+
exports.swthIbcWhitelist = [ChainIds.Osmosis];
|
|
116
|
+
// whitelisted networks for addition of transfer options
|
|
117
|
+
exports.ibcWhitelist = [
|
|
118
|
+
ChainIds.Osmosis,
|
|
119
|
+
ChainIds.Terra,
|
|
120
|
+
ChainIds.CosmosHub,
|
|
121
|
+
ChainIds.Juno,
|
|
122
|
+
ChainIds.Evmos,
|
|
123
|
+
ChainIds.Axelar,
|
|
124
|
+
ChainIds.Stride,
|
|
125
|
+
ChainIds.Kujira,
|
|
126
|
+
ChainIds.Terra2,
|
|
127
|
+
ChainIds.Quicksilver,
|
|
128
|
+
ChainIds.Comdex,
|
|
129
|
+
ChainIds.StafiHub,
|
|
130
|
+
ChainIds.Persistence,
|
|
131
|
+
ChainIds.Stargaze,
|
|
132
|
+
ChainIds.Canto,
|
|
133
|
+
ChainIds.OmniFlixHub,
|
|
134
|
+
ChainIds.Agoric,
|
|
135
|
+
ChainIds.Sommelier,
|
|
136
|
+
];
|
|
137
|
+
exports.EmbedChainInfosInit = {
|
|
138
|
+
[ChainIds.Osmosis]: {
|
|
139
|
+
rpc: "https://rpc-osmosis.keplr.app",
|
|
140
|
+
rest: "https://lcd-osmosis.keplr.app",
|
|
141
|
+
chainId: "osmosis-1",
|
|
142
|
+
chainName: "Osmosis",
|
|
143
|
+
stakeCurrency: {
|
|
144
|
+
coinDenom: "OSMO",
|
|
145
|
+
coinMinimalDenom: "uosmo",
|
|
146
|
+
coinDecimals: 6,
|
|
147
|
+
coinGeckoId: "osmosis",
|
|
148
|
+
},
|
|
149
|
+
bip44: {
|
|
150
|
+
coinType: 118,
|
|
151
|
+
},
|
|
152
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("osmo"),
|
|
153
|
+
currencies: [
|
|
154
|
+
{
|
|
155
|
+
coinDenom: "OSMO",
|
|
156
|
+
coinMinimalDenom: "uosmo",
|
|
157
|
+
coinDecimals: 6,
|
|
158
|
+
coinGeckoId: "osmosis",
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
coinDenom: "ION",
|
|
162
|
+
coinMinimalDenom: "uion",
|
|
163
|
+
coinDecimals: 6,
|
|
164
|
+
coinGeckoId: "ion",
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
coinDenom: "axlUSDC",
|
|
168
|
+
coinMinimalDenom: "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858",
|
|
169
|
+
coinDecimals: 6,
|
|
170
|
+
coinGeckoId: "usd-coin",
|
|
171
|
+
},
|
|
172
|
+
],
|
|
173
|
+
feeCurrencies: [
|
|
174
|
+
{
|
|
175
|
+
coinDenom: "OSMO",
|
|
176
|
+
coinMinimalDenom: "uosmo",
|
|
177
|
+
coinDecimals: 6,
|
|
178
|
+
coinGeckoId: "osmosis",
|
|
179
|
+
gasPriceStep: {
|
|
180
|
+
low: 0,
|
|
181
|
+
average: 0.025,
|
|
182
|
+
high: 0.04,
|
|
183
|
+
},
|
|
184
|
+
},
|
|
185
|
+
],
|
|
186
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
187
|
+
explorerUrlToTx: "https://www.mintscan.io/osmosis/txs/{txHash}",
|
|
188
|
+
tmRpc: "https://rpc-osmosis.blockapsis.com/",
|
|
189
|
+
},
|
|
190
|
+
[ChainIds.CosmosHub]: {
|
|
191
|
+
rpc: "https://rpc-cosmoshub.keplr.app",
|
|
192
|
+
rest: "https://lcd-cosmoshub.keplr.app",
|
|
193
|
+
chainId: "cosmoshub-4",
|
|
194
|
+
chainName: "Cosmos Hub",
|
|
195
|
+
stakeCurrency: {
|
|
196
|
+
coinDenom: "ATOM",
|
|
197
|
+
coinMinimalDenom: "uatom",
|
|
198
|
+
coinDecimals: 6,
|
|
199
|
+
coinGeckoId: "cosmos",
|
|
200
|
+
},
|
|
201
|
+
bip44: {
|
|
202
|
+
coinType: 118,
|
|
203
|
+
},
|
|
204
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("cosmos"),
|
|
205
|
+
currencies: [
|
|
206
|
+
{
|
|
207
|
+
coinDenom: "ATOM",
|
|
208
|
+
coinMinimalDenom: "uatom",
|
|
209
|
+
coinDecimals: 6,
|
|
210
|
+
coinGeckoId: "cosmos",
|
|
211
|
+
},
|
|
212
|
+
],
|
|
213
|
+
feeCurrencies: [
|
|
214
|
+
{
|
|
215
|
+
coinDenom: "ATOM",
|
|
216
|
+
coinMinimalDenom: "uatom",
|
|
217
|
+
coinDecimals: 6,
|
|
218
|
+
coinGeckoId: "cosmos",
|
|
219
|
+
},
|
|
220
|
+
],
|
|
221
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
222
|
+
explorerUrlToTx: "https://www.mintscan.io/cosmos/txs/{txHash}",
|
|
223
|
+
tmRpc: "https://rpc.cosmos.network/",
|
|
224
|
+
},
|
|
225
|
+
[ChainIds.Terra]: {
|
|
226
|
+
rpc: "https://rpc-columbus.keplr.app",
|
|
227
|
+
rest: "https://lcd-columbus.keplr.app",
|
|
228
|
+
chainId: "columbus-5",
|
|
229
|
+
chainName: "Terra",
|
|
230
|
+
stakeCurrency: {
|
|
231
|
+
coinDenom: "LUNA",
|
|
232
|
+
coinMinimalDenom: "uluna",
|
|
233
|
+
coinDecimals: 6,
|
|
234
|
+
coinGeckoId: "terra-luna",
|
|
235
|
+
},
|
|
236
|
+
bip44: {
|
|
237
|
+
coinType: 330,
|
|
238
|
+
},
|
|
239
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("terra"),
|
|
240
|
+
currencies: [
|
|
241
|
+
{
|
|
242
|
+
coinDenom: "LUNA",
|
|
243
|
+
coinMinimalDenom: "uluna",
|
|
244
|
+
coinDecimals: 6,
|
|
245
|
+
coinGeckoId: "terra-luna",
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
coinDenom: "UST",
|
|
249
|
+
coinMinimalDenom: "uusd",
|
|
250
|
+
coinDecimals: 6,
|
|
251
|
+
coinGeckoId: "terrausd",
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
coinDenom: "KRT",
|
|
255
|
+
coinMinimalDenom: "ukrw",
|
|
256
|
+
coinDecimals: 6,
|
|
257
|
+
coinGeckoId: "terra-krw",
|
|
258
|
+
},
|
|
259
|
+
],
|
|
260
|
+
feeCurrencies: [
|
|
261
|
+
{
|
|
262
|
+
coinDenom: "LUNA",
|
|
263
|
+
coinMinimalDenom: "uluna",
|
|
264
|
+
coinDecimals: 6,
|
|
265
|
+
coinGeckoId: "terra-luna",
|
|
266
|
+
gasPriceStep: {
|
|
267
|
+
low: 0.15,
|
|
268
|
+
average: 0.2,
|
|
269
|
+
high: 0.25,
|
|
270
|
+
},
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
coinDenom: "UST",
|
|
274
|
+
coinMinimalDenom: "uusd",
|
|
275
|
+
coinDecimals: 6,
|
|
276
|
+
coinGeckoId: "terrausd",
|
|
277
|
+
gasPriceStep: {
|
|
278
|
+
low: 0.15,
|
|
279
|
+
average: 0.2,
|
|
280
|
+
high: 0.25,
|
|
281
|
+
},
|
|
282
|
+
},
|
|
283
|
+
],
|
|
284
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
285
|
+
explorerUrlToTx: "https://finder.terra.money/columbus-5/tx/{txHash}",
|
|
286
|
+
tmRpc: "https://terra-rpc.easy2stake.com/",
|
|
287
|
+
},
|
|
288
|
+
[ChainIds.Secret]: {
|
|
289
|
+
rpc: "https://rpc-secret.keplr.app",
|
|
290
|
+
rest: "https://lcd-secret.keplr.app",
|
|
291
|
+
chainId: "secret-4",
|
|
292
|
+
chainName: "Secret Network",
|
|
293
|
+
stakeCurrency: {
|
|
294
|
+
coinDenom: "SCRT",
|
|
295
|
+
coinMinimalDenom: "uscrt",
|
|
296
|
+
coinDecimals: 6,
|
|
297
|
+
coinGeckoId: "secret",
|
|
298
|
+
},
|
|
299
|
+
bip44: {
|
|
300
|
+
coinType: 529,
|
|
301
|
+
},
|
|
302
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("secret"),
|
|
303
|
+
currencies: [
|
|
304
|
+
{
|
|
305
|
+
coinDenom: "SCRT",
|
|
306
|
+
coinMinimalDenom: "uscrt",
|
|
307
|
+
coinDecimals: 6,
|
|
308
|
+
coinGeckoId: "secret",
|
|
309
|
+
},
|
|
310
|
+
],
|
|
311
|
+
feeCurrencies: [
|
|
312
|
+
{
|
|
313
|
+
coinDenom: "SCRT",
|
|
314
|
+
coinMinimalDenom: "uscrt",
|
|
315
|
+
coinDecimals: 6,
|
|
316
|
+
coinGeckoId: "secret",
|
|
317
|
+
},
|
|
318
|
+
],
|
|
319
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
320
|
+
explorerUrlToTx: "https://secretnodes.com/secret/chains/secret-4/transactions/{txHash}",
|
|
321
|
+
},
|
|
322
|
+
[ChainIds.Akash]: {
|
|
323
|
+
rpc: "https://rpc-akash.keplr.app",
|
|
324
|
+
rest: "https://lcd-akash.keplr.app",
|
|
325
|
+
chainId: "akashnet-2",
|
|
326
|
+
chainName: "Akash",
|
|
327
|
+
stakeCurrency: {
|
|
328
|
+
coinDenom: "AKT",
|
|
329
|
+
coinMinimalDenom: "uakt",
|
|
330
|
+
coinDecimals: 6,
|
|
331
|
+
coinGeckoId: "akash-network",
|
|
332
|
+
},
|
|
333
|
+
bip44: {
|
|
334
|
+
coinType: 118,
|
|
335
|
+
},
|
|
336
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("akash"),
|
|
337
|
+
currencies: [
|
|
338
|
+
{
|
|
339
|
+
coinDenom: "AKT",
|
|
340
|
+
coinMinimalDenom: "uakt",
|
|
341
|
+
coinDecimals: 6,
|
|
342
|
+
coinGeckoId: "akash-network",
|
|
343
|
+
},
|
|
344
|
+
],
|
|
345
|
+
feeCurrencies: [
|
|
346
|
+
{
|
|
347
|
+
coinDenom: "AKT",
|
|
348
|
+
coinMinimalDenom: "uakt",
|
|
349
|
+
coinDecimals: 6,
|
|
350
|
+
coinGeckoId: "akash-network",
|
|
351
|
+
},
|
|
352
|
+
],
|
|
353
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
354
|
+
explorerUrlToTx: "https://www.mintscan.io/akash/txs/{txHash}",
|
|
355
|
+
},
|
|
356
|
+
[ChainIds.Regen]: {
|
|
357
|
+
rpc: "https://rpc-regen.keplr.app",
|
|
358
|
+
rest: "https://lcd-regen.keplr.app",
|
|
359
|
+
chainId: "regen-1",
|
|
360
|
+
chainName: "Regen Network",
|
|
361
|
+
stakeCurrency: {
|
|
362
|
+
coinDenom: "REGEN",
|
|
363
|
+
coinMinimalDenom: "uregen",
|
|
364
|
+
coinDecimals: 6,
|
|
365
|
+
coinGeckoId: "regen",
|
|
366
|
+
},
|
|
367
|
+
bip44: { coinType: 118 },
|
|
368
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("regen"),
|
|
369
|
+
currencies: [
|
|
370
|
+
{
|
|
371
|
+
coinDenom: "REGEN",
|
|
372
|
+
coinMinimalDenom: "uregen",
|
|
373
|
+
coinDecimals: 6,
|
|
374
|
+
coinGeckoId: "regen",
|
|
375
|
+
},
|
|
376
|
+
],
|
|
377
|
+
feeCurrencies: [
|
|
378
|
+
{
|
|
379
|
+
coinDenom: "REGEN",
|
|
380
|
+
coinMinimalDenom: "uregen",
|
|
381
|
+
coinDecimals: 6,
|
|
382
|
+
coinGeckoId: "regen",
|
|
383
|
+
},
|
|
384
|
+
],
|
|
385
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
386
|
+
explorerUrlToTx: "https://regen.aneka.io/txs/{txHash}",
|
|
387
|
+
},
|
|
388
|
+
[ChainIds.Sentinel]: {
|
|
389
|
+
rpc: "https://rpc-sentinel.keplr.app",
|
|
390
|
+
rest: "https://lcd-sentinel.keplr.app",
|
|
391
|
+
chainId: "sentinelhub-2",
|
|
392
|
+
chainName: "Sentinel",
|
|
393
|
+
stakeCurrency: {
|
|
394
|
+
coinDenom: "DVPN",
|
|
395
|
+
coinMinimalDenom: "udvpn",
|
|
396
|
+
coinDecimals: 6,
|
|
397
|
+
coinGeckoId: "sentinel",
|
|
398
|
+
},
|
|
399
|
+
bip44: { coinType: 118 },
|
|
400
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("sent"),
|
|
401
|
+
currencies: [
|
|
402
|
+
{
|
|
403
|
+
coinDenom: "DVPN",
|
|
404
|
+
coinMinimalDenom: "udvpn",
|
|
405
|
+
coinDecimals: 6,
|
|
406
|
+
coinGeckoId: "sentinel",
|
|
407
|
+
},
|
|
408
|
+
],
|
|
409
|
+
feeCurrencies: [
|
|
410
|
+
{
|
|
411
|
+
coinDenom: "DVPN",
|
|
412
|
+
coinMinimalDenom: "udvpn",
|
|
413
|
+
coinDecimals: 6,
|
|
414
|
+
coinGeckoId: "sentinel",
|
|
415
|
+
},
|
|
416
|
+
],
|
|
417
|
+
explorerUrlToTx: "https://www.mintscan.io/sentinel/txs/{txHash}",
|
|
418
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
419
|
+
},
|
|
420
|
+
[ChainIds.Persistence]: {
|
|
421
|
+
rpc: "https://rpc-persistence.keplr.app",
|
|
422
|
+
rest: "https://lcd-persistence.keplr.app",
|
|
423
|
+
chainId: "core-1",
|
|
424
|
+
chainName: "Persistence",
|
|
425
|
+
stakeCurrency: {
|
|
426
|
+
coinDenom: "XPRT",
|
|
427
|
+
coinMinimalDenom: "uxprt",
|
|
428
|
+
coinDecimals: 6,
|
|
429
|
+
coinGeckoId: "persistence",
|
|
430
|
+
},
|
|
431
|
+
bip44: {
|
|
432
|
+
coinType: 750,
|
|
433
|
+
},
|
|
434
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("persistence"),
|
|
435
|
+
currencies: [
|
|
436
|
+
{
|
|
437
|
+
coinDenom: "XPRT",
|
|
438
|
+
coinMinimalDenom: "uxprt",
|
|
439
|
+
coinDecimals: 6,
|
|
440
|
+
coinGeckoId: "persistence",
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
coinDenom: "PSTAKE",
|
|
444
|
+
coinMinimalDenom: "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444",
|
|
445
|
+
coinDecimals: 18,
|
|
446
|
+
coinGeckoId: "pstake-finance",
|
|
447
|
+
},
|
|
448
|
+
],
|
|
449
|
+
feeCurrencies: [
|
|
450
|
+
{
|
|
451
|
+
coinDenom: "XPRT",
|
|
452
|
+
coinMinimalDenom: "uxprt",
|
|
453
|
+
coinDecimals: 6,
|
|
454
|
+
coinGeckoId: "persistence",
|
|
455
|
+
},
|
|
456
|
+
],
|
|
457
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
458
|
+
explorerUrlToTx: "https://www.mintscan.io/persistence/txs/{txHash}",
|
|
459
|
+
},
|
|
460
|
+
[ChainIds.IrisNet]: {
|
|
461
|
+
rpc: "https://rpc-iris.keplr.app",
|
|
462
|
+
rest: "https://lcd-iris.keplr.app",
|
|
463
|
+
chainId: "irishub-1",
|
|
464
|
+
chainName: "IRISnet",
|
|
465
|
+
stakeCurrency: {
|
|
466
|
+
coinDenom: "IRIS",
|
|
467
|
+
coinMinimalDenom: "uiris",
|
|
468
|
+
coinDecimals: 6,
|
|
469
|
+
coinGeckoId: "iris-network",
|
|
470
|
+
},
|
|
471
|
+
bip44: {
|
|
472
|
+
coinType: 118,
|
|
473
|
+
},
|
|
474
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("iaa"),
|
|
475
|
+
currencies: [
|
|
476
|
+
{
|
|
477
|
+
coinDenom: "IRIS",
|
|
478
|
+
coinMinimalDenom: "uiris",
|
|
479
|
+
coinDecimals: 6,
|
|
480
|
+
coinGeckoId: "iris-network",
|
|
481
|
+
},
|
|
482
|
+
],
|
|
483
|
+
feeCurrencies: [
|
|
484
|
+
{
|
|
485
|
+
coinDenom: "IRIS",
|
|
486
|
+
coinMinimalDenom: "uiris",
|
|
487
|
+
coinDecimals: 6,
|
|
488
|
+
coinGeckoId: "iris-network",
|
|
489
|
+
},
|
|
490
|
+
],
|
|
491
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
492
|
+
explorerUrlToTx: "https://www.mintscan.io/iris/txs/{txHash}",
|
|
493
|
+
},
|
|
494
|
+
[ChainIds.CryptoOrg]: {
|
|
495
|
+
rpc: "https://rpc-crypto-org.keplr.app/",
|
|
496
|
+
rest: "https://lcd-crypto-org.keplr.app/",
|
|
497
|
+
chainId: "crypto-org-chain-mainnet-1",
|
|
498
|
+
chainName: "Crypto.org",
|
|
499
|
+
stakeCurrency: {
|
|
500
|
+
coinDenom: "CRO",
|
|
501
|
+
coinMinimalDenom: "basecro",
|
|
502
|
+
coinDecimals: 8,
|
|
503
|
+
coinGeckoId: "crypto-com-chain",
|
|
504
|
+
},
|
|
505
|
+
bip44: {
|
|
506
|
+
coinType: 394,
|
|
507
|
+
},
|
|
508
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("cro"),
|
|
509
|
+
currencies: [
|
|
510
|
+
{
|
|
511
|
+
coinDenom: "CRO",
|
|
512
|
+
coinMinimalDenom: "basecro",
|
|
513
|
+
coinDecimals: 8,
|
|
514
|
+
coinGeckoId: "crypto-com-chain",
|
|
515
|
+
},
|
|
516
|
+
],
|
|
517
|
+
feeCurrencies: [
|
|
518
|
+
{
|
|
519
|
+
coinDenom: "CRO",
|
|
520
|
+
coinMinimalDenom: "basecro",
|
|
521
|
+
coinDecimals: 8,
|
|
522
|
+
coinGeckoId: "crypto-com-chain",
|
|
523
|
+
},
|
|
524
|
+
],
|
|
525
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
526
|
+
explorerUrlToTx: "https://www.mintscan.io/crypto-org/txs/{txHash}",
|
|
527
|
+
},
|
|
528
|
+
[ChainIds.Starname]: {
|
|
529
|
+
rpc: "https://rpc-iov.keplr.app",
|
|
530
|
+
rest: "https://lcd-iov.keplr.app",
|
|
531
|
+
chainId: "iov-mainnet-ibc",
|
|
532
|
+
chainName: "Starname",
|
|
533
|
+
stakeCurrency: {
|
|
534
|
+
coinDenom: "IOV",
|
|
535
|
+
coinMinimalDenom: "uiov",
|
|
536
|
+
coinDecimals: 6,
|
|
537
|
+
coinGeckoId: "starname",
|
|
538
|
+
},
|
|
539
|
+
bip44: {
|
|
540
|
+
coinType: 234,
|
|
541
|
+
},
|
|
542
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("star"),
|
|
543
|
+
currencies: [
|
|
544
|
+
{
|
|
545
|
+
coinDenom: "IOV",
|
|
546
|
+
coinMinimalDenom: "uiov",
|
|
547
|
+
coinDecimals: 6,
|
|
548
|
+
coinGeckoId: "starname",
|
|
549
|
+
},
|
|
550
|
+
],
|
|
551
|
+
feeCurrencies: [
|
|
552
|
+
{
|
|
553
|
+
coinDenom: "IOV",
|
|
554
|
+
coinMinimalDenom: "uiov",
|
|
555
|
+
coinDecimals: 6,
|
|
556
|
+
coinGeckoId: "starname",
|
|
557
|
+
},
|
|
558
|
+
],
|
|
559
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
560
|
+
explorerUrlToTx: "https://www.mintscan.io/starname/txs/{txHash}",
|
|
561
|
+
},
|
|
562
|
+
[ChainIds.EMoney]: {
|
|
563
|
+
rpc: "https://rpc-emoney.keplr.app",
|
|
564
|
+
rest: "https://lcd-emoney.keplr.app",
|
|
565
|
+
chainId: "emoney-3",
|
|
566
|
+
chainName: "e-Money",
|
|
567
|
+
stakeCurrency: {
|
|
568
|
+
coinDenom: "NGM",
|
|
569
|
+
coinMinimalDenom: "ungm",
|
|
570
|
+
coinDecimals: 6,
|
|
571
|
+
coinGeckoId: "e-money",
|
|
572
|
+
},
|
|
573
|
+
bip44: {
|
|
574
|
+
coinType: 118,
|
|
575
|
+
},
|
|
576
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("emoney"),
|
|
577
|
+
currencies: [
|
|
578
|
+
{
|
|
579
|
+
coinDenom: "NGM",
|
|
580
|
+
coinMinimalDenom: "ungm",
|
|
581
|
+
coinDecimals: 6,
|
|
582
|
+
coinGeckoId: "e-money",
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
coinDenom: "EEUR",
|
|
586
|
+
coinMinimalDenom: "eeur",
|
|
587
|
+
coinDecimals: 6,
|
|
588
|
+
coinGeckoId: "e-money-eur",
|
|
589
|
+
},
|
|
590
|
+
],
|
|
591
|
+
feeCurrencies: [
|
|
592
|
+
{
|
|
593
|
+
coinDenom: "NGM",
|
|
594
|
+
coinMinimalDenom: "ungm",
|
|
595
|
+
coinDecimals: 6,
|
|
596
|
+
coinGeckoId: "e-money",
|
|
597
|
+
gasPriceStep: {
|
|
598
|
+
low: 1,
|
|
599
|
+
average: 1,
|
|
600
|
+
high: 1,
|
|
601
|
+
},
|
|
602
|
+
},
|
|
603
|
+
],
|
|
604
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
605
|
+
explorerUrlToTx: "https://emoney.bigdipper.live/transactions/{txHash}",
|
|
606
|
+
},
|
|
607
|
+
[ChainIds.Juno]: {
|
|
608
|
+
rpc: "https://rpc-juno.keplr.app",
|
|
609
|
+
rest: "https://lcd-juno.keplr.app",
|
|
610
|
+
chainId: "juno-1",
|
|
611
|
+
chainName: "Juno",
|
|
612
|
+
stakeCurrency: {
|
|
613
|
+
coinDenom: "JUNO",
|
|
614
|
+
coinMinimalDenom: "ujuno",
|
|
615
|
+
coinDecimals: 6,
|
|
616
|
+
coinGeckoId: "juno-network",
|
|
617
|
+
},
|
|
618
|
+
bip44: {
|
|
619
|
+
coinType: 118,
|
|
620
|
+
},
|
|
621
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("juno"),
|
|
622
|
+
currencies: [
|
|
623
|
+
{
|
|
624
|
+
coinDenom: "JUNO",
|
|
625
|
+
coinMinimalDenom: "ujuno",
|
|
626
|
+
coinDecimals: 6,
|
|
627
|
+
coinGeckoId: "juno-network",
|
|
628
|
+
},
|
|
629
|
+
],
|
|
630
|
+
feeCurrencies: [
|
|
631
|
+
{
|
|
632
|
+
coinDenom: "JUNO",
|
|
633
|
+
coinMinimalDenom: "ujuno",
|
|
634
|
+
coinDecimals: 6,
|
|
635
|
+
coinGeckoId: "juno-network",
|
|
636
|
+
gasPriceStep: {
|
|
637
|
+
low: 0.001,
|
|
638
|
+
average: 0.0025,
|
|
639
|
+
high: 0.004,
|
|
640
|
+
},
|
|
641
|
+
},
|
|
642
|
+
],
|
|
643
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
644
|
+
explorerUrlToTx: "https://www.mintscan.io/juno/txs/{txHash}",
|
|
645
|
+
},
|
|
646
|
+
[ChainIds.Evmos]: {
|
|
647
|
+
rpc: "https://rpc-evmos.keplr.app/",
|
|
648
|
+
rest: "https://lcd-evmos.keplr.app/",
|
|
649
|
+
chainId: "evmos_9001-2",
|
|
650
|
+
chainName: "Evmos",
|
|
651
|
+
stakeCurrency: {
|
|
652
|
+
coinDenom: "EVMOS",
|
|
653
|
+
coinMinimalDenom: "aevmos",
|
|
654
|
+
coinDecimals: 18,
|
|
655
|
+
coinGeckoId: "evmos",
|
|
656
|
+
},
|
|
657
|
+
bip44: {
|
|
658
|
+
coinType: 60,
|
|
659
|
+
},
|
|
660
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("evmos"),
|
|
661
|
+
currencies: [
|
|
662
|
+
{
|
|
663
|
+
coinDenom: "EVMOS",
|
|
664
|
+
coinMinimalDenom: "aevmos",
|
|
665
|
+
coinDecimals: 18,
|
|
666
|
+
coinGeckoId: "evmos",
|
|
667
|
+
},
|
|
668
|
+
],
|
|
669
|
+
feeCurrencies: [
|
|
670
|
+
{
|
|
671
|
+
coinDenom: "EVMOS",
|
|
672
|
+
coinMinimalDenom: "aevmos",
|
|
673
|
+
coinDecimals: 18,
|
|
674
|
+
coinGeckoId: "evmos",
|
|
675
|
+
gasPriceStep: {
|
|
676
|
+
low: 25000000000,
|
|
677
|
+
average: 25000000000,
|
|
678
|
+
high: 40000000000,
|
|
679
|
+
},
|
|
680
|
+
},
|
|
681
|
+
],
|
|
682
|
+
features: ["ibc-transfer", "ibc-go", "eth-address-gen", "eth-key-sign"],
|
|
683
|
+
explorerUrlToTx: "https://www.mintscan.io/evmos/txs/{txHash}",
|
|
684
|
+
},
|
|
685
|
+
[ChainIds.Microtick]: {
|
|
686
|
+
rpc: "https://rpc-microtick.keplr.app",
|
|
687
|
+
rest: "https://lcd-microtick.keplr.app",
|
|
688
|
+
chainId: "microtick-1",
|
|
689
|
+
chainName: "Microtick",
|
|
690
|
+
stakeCurrency: {
|
|
691
|
+
coinDenom: "TICK",
|
|
692
|
+
coinMinimalDenom: "utick",
|
|
693
|
+
coinDecimals: 6,
|
|
694
|
+
coinGeckoId: "pool:utick",
|
|
695
|
+
},
|
|
696
|
+
bip44: {
|
|
697
|
+
coinType: 118,
|
|
698
|
+
},
|
|
699
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("micro"),
|
|
700
|
+
currencies: [
|
|
701
|
+
{
|
|
702
|
+
coinDenom: "TICK",
|
|
703
|
+
coinMinimalDenom: "utick",
|
|
704
|
+
coinDecimals: 6,
|
|
705
|
+
coinGeckoId: "pool:utick",
|
|
706
|
+
},
|
|
707
|
+
],
|
|
708
|
+
feeCurrencies: [
|
|
709
|
+
{
|
|
710
|
+
coinDenom: "TICK",
|
|
711
|
+
coinMinimalDenom: "utick",
|
|
712
|
+
coinDecimals: 6,
|
|
713
|
+
coinGeckoId: "pool:utick",
|
|
714
|
+
},
|
|
715
|
+
],
|
|
716
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
717
|
+
explorerUrlToTx: "https://explorer.microtick.zone/transactions/{txHash}",
|
|
718
|
+
},
|
|
719
|
+
[ChainIds.LikeCoin]: {
|
|
720
|
+
rpc: "https://mainnet-node.like.co/rpc",
|
|
721
|
+
rest: "https://mainnet-node.like.co",
|
|
722
|
+
chainId: "likecoin-mainnet-2",
|
|
723
|
+
chainName: "LikeCoin",
|
|
724
|
+
stakeCurrency: {
|
|
725
|
+
coinDenom: "LIKE",
|
|
726
|
+
coinMinimalDenom: "nanolike",
|
|
727
|
+
coinDecimals: 9,
|
|
728
|
+
coinGeckoId: "likecoin",
|
|
729
|
+
},
|
|
730
|
+
bip44: {
|
|
731
|
+
coinType: 118,
|
|
732
|
+
},
|
|
733
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("cosmos"),
|
|
734
|
+
currencies: [
|
|
735
|
+
{
|
|
736
|
+
coinDenom: "LIKE",
|
|
737
|
+
coinMinimalDenom: "nanolike",
|
|
738
|
+
coinDecimals: 9,
|
|
739
|
+
coinGeckoId: "likecoin",
|
|
740
|
+
},
|
|
741
|
+
],
|
|
742
|
+
feeCurrencies: [
|
|
743
|
+
{
|
|
744
|
+
coinDenom: "LIKE",
|
|
745
|
+
coinMinimalDenom: "nanolike",
|
|
746
|
+
coinDecimals: 9,
|
|
747
|
+
coinGeckoId: "likecoin",
|
|
748
|
+
},
|
|
749
|
+
],
|
|
750
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
751
|
+
explorerUrlToTx: "https://likecoin.bigdipper.live/transactions/{txHash}",
|
|
752
|
+
},
|
|
753
|
+
[ChainIds.IXO]: {
|
|
754
|
+
rpc: "https://rpc-impacthub.keplr.app",
|
|
755
|
+
rest: "https://lcd-impacthub.keplr.app",
|
|
756
|
+
chainId: "impacthub-3",
|
|
757
|
+
chainName: "IXO",
|
|
758
|
+
stakeCurrency: {
|
|
759
|
+
coinDenom: "IXO",
|
|
760
|
+
coinMinimalDenom: "uixo",
|
|
761
|
+
coinDecimals: 6,
|
|
762
|
+
coinGeckoId: "pool:uixo",
|
|
763
|
+
},
|
|
764
|
+
bip44: {
|
|
765
|
+
coinType: 118,
|
|
766
|
+
},
|
|
767
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("ixo"),
|
|
768
|
+
currencies: [
|
|
769
|
+
{
|
|
770
|
+
coinDenom: "IXO",
|
|
771
|
+
coinMinimalDenom: "uixo",
|
|
772
|
+
coinDecimals: 6,
|
|
773
|
+
coinGeckoId: "pool:uixo",
|
|
774
|
+
},
|
|
775
|
+
],
|
|
776
|
+
feeCurrencies: [
|
|
777
|
+
{
|
|
778
|
+
coinDenom: "IXO",
|
|
779
|
+
coinMinimalDenom: "uixo",
|
|
780
|
+
coinDecimals: 6,
|
|
781
|
+
coinGeckoId: "pool:uixo",
|
|
782
|
+
},
|
|
783
|
+
],
|
|
784
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
785
|
+
explorerUrlToTx: "https://blockscan.ixo.world/transactions/{txHash}",
|
|
786
|
+
},
|
|
787
|
+
[ChainIds.BitCanna]: {
|
|
788
|
+
rpc: "https://rpc.bitcanna.io",
|
|
789
|
+
rest: "https://lcd.bitcanna.io",
|
|
790
|
+
chainId: "bitcanna-1",
|
|
791
|
+
chainName: "BitCanna",
|
|
792
|
+
stakeCurrency: {
|
|
793
|
+
coinDenom: "BCNA",
|
|
794
|
+
coinMinimalDenom: "ubcna",
|
|
795
|
+
coinDecimals: 6,
|
|
796
|
+
coinGeckoId: "bitcanna",
|
|
797
|
+
},
|
|
798
|
+
bip44: {
|
|
799
|
+
coinType: 118,
|
|
800
|
+
},
|
|
801
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("bcna"),
|
|
802
|
+
currencies: [
|
|
803
|
+
{
|
|
804
|
+
coinDenom: "BCNA",
|
|
805
|
+
coinMinimalDenom: "ubcna",
|
|
806
|
+
coinDecimals: 6,
|
|
807
|
+
coinGeckoId: "bitcanna",
|
|
808
|
+
},
|
|
809
|
+
],
|
|
810
|
+
feeCurrencies: [
|
|
811
|
+
{
|
|
812
|
+
coinDenom: "BCNA",
|
|
813
|
+
coinMinimalDenom: "ubcna",
|
|
814
|
+
coinDecimals: 6,
|
|
815
|
+
coinGeckoId: "bitcanna",
|
|
816
|
+
},
|
|
817
|
+
],
|
|
818
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
819
|
+
explorerUrlToTx: "https://www.mintscan.io/bitcanna/txs/{txHash}",
|
|
820
|
+
tmRpc: "https://rpc.bitcanna.io/",
|
|
821
|
+
},
|
|
822
|
+
[ChainIds.BitSong]: {
|
|
823
|
+
rpc: "https://rpc.explorebitsong.com",
|
|
824
|
+
rest: "https://lcd.explorebitsong.com",
|
|
825
|
+
chainId: "bitsong-2b",
|
|
826
|
+
chainName: "BitSong",
|
|
827
|
+
stakeCurrency: {
|
|
828
|
+
coinDenom: "BTSG",
|
|
829
|
+
coinMinimalDenom: "ubtsg",
|
|
830
|
+
coinDecimals: 6,
|
|
831
|
+
coinGeckoId: "pool:ubtsg",
|
|
832
|
+
},
|
|
833
|
+
bip44: {
|
|
834
|
+
coinType: 639,
|
|
835
|
+
},
|
|
836
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("bitsong"),
|
|
837
|
+
currencies: [
|
|
838
|
+
{
|
|
839
|
+
coinDenom: "BTSG",
|
|
840
|
+
coinMinimalDenom: "ubtsg",
|
|
841
|
+
coinDecimals: 6,
|
|
842
|
+
coinGeckoId: "pool:ubtsg",
|
|
843
|
+
},
|
|
844
|
+
],
|
|
845
|
+
feeCurrencies: [
|
|
846
|
+
{
|
|
847
|
+
coinDenom: "BTSG",
|
|
848
|
+
coinMinimalDenom: "ubtsg",
|
|
849
|
+
coinDecimals: 6,
|
|
850
|
+
coinGeckoId: "pool:ubtsg",
|
|
851
|
+
},
|
|
852
|
+
],
|
|
853
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
854
|
+
explorerUrlToTx: "https://explorebitsong.com/transactions/{txHash}",
|
|
855
|
+
tmRpc: "https://rpc.explorebitsong.com/",
|
|
856
|
+
},
|
|
857
|
+
[ChainIds.KiChain]: {
|
|
858
|
+
rpc: "https://rpc-mainnet.blockchain.ki",
|
|
859
|
+
rest: "https://api-mainnet.blockchain.ki",
|
|
860
|
+
chainId: "kichain-2",
|
|
861
|
+
chainName: "Ki",
|
|
862
|
+
stakeCurrency: {
|
|
863
|
+
coinDenom: "XKI",
|
|
864
|
+
coinMinimalDenom: "uxki",
|
|
865
|
+
coinDecimals: 6,
|
|
866
|
+
coinGeckoId: "pool:uxki",
|
|
867
|
+
},
|
|
868
|
+
bip44: {
|
|
869
|
+
coinType: 118,
|
|
870
|
+
},
|
|
871
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("ki"),
|
|
872
|
+
currencies: [
|
|
873
|
+
{
|
|
874
|
+
coinDenom: "XKI",
|
|
875
|
+
coinMinimalDenom: "uxki",
|
|
876
|
+
coinDecimals: 6,
|
|
877
|
+
coinGeckoId: "pool:uxki",
|
|
878
|
+
},
|
|
879
|
+
],
|
|
880
|
+
feeCurrencies: [
|
|
881
|
+
{
|
|
882
|
+
coinDenom: "XKI",
|
|
883
|
+
coinMinimalDenom: "uxki",
|
|
884
|
+
coinDecimals: 6,
|
|
885
|
+
coinGeckoId: "pool:uxki",
|
|
886
|
+
},
|
|
887
|
+
],
|
|
888
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
889
|
+
explorerUrlToTx: "https://www.mintscan.io/ki-chain/txs/{txHash}",
|
|
890
|
+
tmRpc: "https://rpc-mainnet.blockchain.ki",
|
|
891
|
+
},
|
|
892
|
+
[ChainIds.MediBloc]: {
|
|
893
|
+
rpc: "https://rpc.gopanacea.org",
|
|
894
|
+
rest: "https://api.gopanacea.org",
|
|
895
|
+
chainId: "panacea-3",
|
|
896
|
+
chainName: "MediBloc",
|
|
897
|
+
stakeCurrency: {
|
|
898
|
+
coinDenom: "MED",
|
|
899
|
+
coinMinimalDenom: "umed",
|
|
900
|
+
coinDecimals: 6,
|
|
901
|
+
coinGeckoId: "medibloc",
|
|
902
|
+
},
|
|
903
|
+
bip44: {
|
|
904
|
+
coinType: 371,
|
|
905
|
+
},
|
|
906
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("panacea"),
|
|
907
|
+
currencies: [
|
|
908
|
+
{
|
|
909
|
+
coinDenom: "MED",
|
|
910
|
+
coinMinimalDenom: "umed",
|
|
911
|
+
coinDecimals: 6,
|
|
912
|
+
coinGeckoId: "medibloc",
|
|
913
|
+
},
|
|
914
|
+
],
|
|
915
|
+
feeCurrencies: [
|
|
916
|
+
{
|
|
917
|
+
coinDenom: "MED",
|
|
918
|
+
coinMinimalDenom: "umed",
|
|
919
|
+
coinDecimals: 6,
|
|
920
|
+
coinGeckoId: "medibloc",
|
|
921
|
+
gasPriceStep: {
|
|
922
|
+
low: 5,
|
|
923
|
+
average: 7,
|
|
924
|
+
high: 9,
|
|
925
|
+
},
|
|
926
|
+
},
|
|
927
|
+
],
|
|
928
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
929
|
+
explorerUrlToTx: "https://www.mintscan.io/medibloc/txs/{txHash}",
|
|
930
|
+
tmRpc: "https://rpc.gopanacea.org/",
|
|
931
|
+
},
|
|
932
|
+
[ChainIds.Bostrom]: {
|
|
933
|
+
rpc: "https://rpc.bostrom.cybernode.ai",
|
|
934
|
+
rest: "https://lcd.bostrom.cybernode.ai",
|
|
935
|
+
chainId: "bostrom",
|
|
936
|
+
chainName: "Bostrom",
|
|
937
|
+
stakeCurrency: {
|
|
938
|
+
coinDenom: "BOOT",
|
|
939
|
+
coinMinimalDenom: "boot",
|
|
940
|
+
coinDecimals: 0,
|
|
941
|
+
// coinGeckoId: "pool:boot",
|
|
942
|
+
},
|
|
943
|
+
bip44: {
|
|
944
|
+
coinType: 118,
|
|
945
|
+
},
|
|
946
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("bostrom"),
|
|
947
|
+
currencies: [
|
|
948
|
+
{
|
|
949
|
+
coinDenom: "BOOT",
|
|
950
|
+
coinMinimalDenom: "boot",
|
|
951
|
+
coinDecimals: 0,
|
|
952
|
+
// coinGeckoId: "pool:boot",
|
|
953
|
+
},
|
|
954
|
+
],
|
|
955
|
+
feeCurrencies: [
|
|
956
|
+
{
|
|
957
|
+
coinDenom: "BOOT",
|
|
958
|
+
coinMinimalDenom: "boot",
|
|
959
|
+
coinDecimals: 0,
|
|
960
|
+
// coinGeckoId: "pool:boot",
|
|
961
|
+
},
|
|
962
|
+
],
|
|
963
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
964
|
+
explorerUrlToTx: "https://cyb.ai/network/bostrom/tx/{txHash}",
|
|
965
|
+
tmRpc: "https://rpc.bostrom.cybernode.ai/",
|
|
966
|
+
},
|
|
967
|
+
[ChainIds.Comdex]: {
|
|
968
|
+
rpc: "https://rpc.comdex.one",
|
|
969
|
+
rest: "https://rest.comdex.one",
|
|
970
|
+
chainId: "comdex-1",
|
|
971
|
+
chainName: "Comdex",
|
|
972
|
+
stakeCurrency: {
|
|
973
|
+
coinDenom: "CMDX",
|
|
974
|
+
coinMinimalDenom: "ucmdx",
|
|
975
|
+
coinDecimals: 6,
|
|
976
|
+
coinGeckoId: "comdex",
|
|
977
|
+
},
|
|
978
|
+
bip44: {
|
|
979
|
+
coinType: 118,
|
|
980
|
+
},
|
|
981
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("comdex"),
|
|
982
|
+
currencies: [
|
|
983
|
+
{
|
|
984
|
+
coinDenom: "CMDX",
|
|
985
|
+
coinMinimalDenom: "ucmdx",
|
|
986
|
+
coinDecimals: 6,
|
|
987
|
+
coinGeckoId: "comdex",
|
|
988
|
+
},
|
|
989
|
+
],
|
|
990
|
+
feeCurrencies: [
|
|
991
|
+
{
|
|
992
|
+
coinDenom: "CMDX",
|
|
993
|
+
coinMinimalDenom: "ucmdx",
|
|
994
|
+
coinDecimals: 6,
|
|
995
|
+
coinGeckoId: "comdex",
|
|
996
|
+
gasPriceStep: {
|
|
997
|
+
low: 0.0125,
|
|
998
|
+
average: 0.025,
|
|
999
|
+
high: 0.04,
|
|
1000
|
+
},
|
|
1001
|
+
},
|
|
1002
|
+
],
|
|
1003
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1004
|
+
explorerUrlToTx: "https://www.mintscan.io/comdex/txs/{txHash}",
|
|
1005
|
+
tmRpc: "https://rpc.comdex.one/",
|
|
1006
|
+
},
|
|
1007
|
+
[ChainIds.Cheqd]: {
|
|
1008
|
+
rpc: "https://rpc.cheqd.net",
|
|
1009
|
+
rest: "https://api.cheqd.net",
|
|
1010
|
+
chainId: "cheqd-mainnet-1",
|
|
1011
|
+
chainName: "cheqd",
|
|
1012
|
+
stakeCurrency: {
|
|
1013
|
+
coinDenom: "CHEQ",
|
|
1014
|
+
coinMinimalDenom: "ncheq",
|
|
1015
|
+
coinDecimals: 9,
|
|
1016
|
+
coinGeckoId: "cheqd-network",
|
|
1017
|
+
},
|
|
1018
|
+
bip44: {
|
|
1019
|
+
coinType: 118,
|
|
1020
|
+
},
|
|
1021
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("cheqd"),
|
|
1022
|
+
currencies: [
|
|
1023
|
+
{
|
|
1024
|
+
coinDenom: "CHEQ",
|
|
1025
|
+
coinMinimalDenom: "ncheq",
|
|
1026
|
+
coinDecimals: 9,
|
|
1027
|
+
coinGeckoId: "cheqd-network",
|
|
1028
|
+
},
|
|
1029
|
+
],
|
|
1030
|
+
feeCurrencies: [
|
|
1031
|
+
{
|
|
1032
|
+
coinDenom: "CHEQ",
|
|
1033
|
+
coinMinimalDenom: "ncheq",
|
|
1034
|
+
coinDecimals: 9,
|
|
1035
|
+
coinGeckoId: "cheqd-network",
|
|
1036
|
+
gasPriceStep: {
|
|
1037
|
+
low: 25,
|
|
1038
|
+
average: 30,
|
|
1039
|
+
high: 50,
|
|
1040
|
+
},
|
|
1041
|
+
},
|
|
1042
|
+
],
|
|
1043
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1044
|
+
explorerUrlToTx: "https://explorer.cheqd.io/transactions/{txHash}",
|
|
1045
|
+
tmRpc: "https://rpc.cheqd.net/",
|
|
1046
|
+
},
|
|
1047
|
+
[ChainIds.Stargaze]: {
|
|
1048
|
+
rpc: "https://rpc.stargaze-apis.com",
|
|
1049
|
+
rest: "https://rest.stargaze-apis.com",
|
|
1050
|
+
chainId: "stargaze-1",
|
|
1051
|
+
chainName: "Stargaze",
|
|
1052
|
+
stakeCurrency: {
|
|
1053
|
+
coinDenom: "STARS",
|
|
1054
|
+
coinMinimalDenom: "ustars",
|
|
1055
|
+
coinDecimals: 6,
|
|
1056
|
+
coinGeckoId: "pool:ustars",
|
|
1057
|
+
},
|
|
1058
|
+
bip44: {
|
|
1059
|
+
coinType: 118,
|
|
1060
|
+
},
|
|
1061
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("stars"),
|
|
1062
|
+
currencies: [
|
|
1063
|
+
{
|
|
1064
|
+
coinDenom: "STARS",
|
|
1065
|
+
coinMinimalDenom: "ustars",
|
|
1066
|
+
coinDecimals: 6,
|
|
1067
|
+
coinGeckoId: "pool:ustars",
|
|
1068
|
+
},
|
|
1069
|
+
],
|
|
1070
|
+
feeCurrencies: [
|
|
1071
|
+
{
|
|
1072
|
+
coinDenom: "STARS",
|
|
1073
|
+
coinMinimalDenom: "ustars",
|
|
1074
|
+
coinDecimals: 6,
|
|
1075
|
+
coinGeckoId: "pool:ustars",
|
|
1076
|
+
},
|
|
1077
|
+
],
|
|
1078
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1079
|
+
explorerUrlToTx: "https://www.mintscan.io/stargaze/txs/{txHash}",
|
|
1080
|
+
tmRpc: "https://rpc.stargaze-apis.com/",
|
|
1081
|
+
},
|
|
1082
|
+
[ChainIds.Chihuahua]: {
|
|
1083
|
+
rpc: "https://rpc.chihuahua.wtf",
|
|
1084
|
+
rest: "https://api.chihuahua.wtf",
|
|
1085
|
+
chainId: "chihuahua-1",
|
|
1086
|
+
chainName: "Chihuahua",
|
|
1087
|
+
stakeCurrency: {
|
|
1088
|
+
coinDenom: "HUAHUA",
|
|
1089
|
+
coinMinimalDenom: "uhuahua",
|
|
1090
|
+
coinDecimals: 6,
|
|
1091
|
+
coinGeckoId: "pool:uhuahua",
|
|
1092
|
+
},
|
|
1093
|
+
bip44: {
|
|
1094
|
+
coinType: 118,
|
|
1095
|
+
},
|
|
1096
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("chihuahua"),
|
|
1097
|
+
currencies: [
|
|
1098
|
+
{
|
|
1099
|
+
coinDenom: "HUAHUA",
|
|
1100
|
+
coinMinimalDenom: "uhuahua",
|
|
1101
|
+
coinDecimals: 6,
|
|
1102
|
+
coinGeckoId: "pool:uhuahua",
|
|
1103
|
+
},
|
|
1104
|
+
],
|
|
1105
|
+
feeCurrencies: [
|
|
1106
|
+
{
|
|
1107
|
+
coinDenom: "HUAHUA",
|
|
1108
|
+
coinMinimalDenom: "uhuahua",
|
|
1109
|
+
coinDecimals: 6,
|
|
1110
|
+
coinGeckoId: "pool:uhuahua",
|
|
1111
|
+
gasPriceStep: {
|
|
1112
|
+
low: 0.025,
|
|
1113
|
+
average: 0.03,
|
|
1114
|
+
high: 0.035,
|
|
1115
|
+
},
|
|
1116
|
+
},
|
|
1117
|
+
],
|
|
1118
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1119
|
+
explorerUrlToTx: "https://ping.pub/chihuahua/tx/{txHash}",
|
|
1120
|
+
},
|
|
1121
|
+
[ChainIds.LumNetwork]: {
|
|
1122
|
+
rpc: "https://node0.mainnet.lum.network/rpc",
|
|
1123
|
+
rest: "https://node0.mainnet.lum.network/rest",
|
|
1124
|
+
chainId: "lum-network-1",
|
|
1125
|
+
chainName: "Lum Network",
|
|
1126
|
+
stakeCurrency: {
|
|
1127
|
+
coinDenom: "LUM",
|
|
1128
|
+
coinMinimalDenom: "ulum",
|
|
1129
|
+
coinDecimals: 6,
|
|
1130
|
+
coinGeckoId: "pool:ulum",
|
|
1131
|
+
},
|
|
1132
|
+
bip44: {
|
|
1133
|
+
coinType: 118,
|
|
1134
|
+
},
|
|
1135
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("lum"),
|
|
1136
|
+
currencies: [
|
|
1137
|
+
{
|
|
1138
|
+
coinDenom: "LUM",
|
|
1139
|
+
coinMinimalDenom: "ulum",
|
|
1140
|
+
coinDecimals: 6,
|
|
1141
|
+
coinGeckoId: "pool:ulum",
|
|
1142
|
+
},
|
|
1143
|
+
],
|
|
1144
|
+
feeCurrencies: [
|
|
1145
|
+
{
|
|
1146
|
+
coinDenom: "LUM",
|
|
1147
|
+
coinMinimalDenom: "ulum",
|
|
1148
|
+
coinDecimals: 6,
|
|
1149
|
+
coinGeckoId: "pool:ulum",
|
|
1150
|
+
},
|
|
1151
|
+
],
|
|
1152
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1153
|
+
explorerUrlToTx: "https://www.mintscan.io/lum/txs/{txHash}",
|
|
1154
|
+
tmRpc: "https://node0.mainnet.lum.network/rpc/",
|
|
1155
|
+
},
|
|
1156
|
+
[ChainIds.Vidulum]: {
|
|
1157
|
+
rpc: "https://mainnet-rpc.vidulum.app",
|
|
1158
|
+
rest: "https://mainnet-lcd.vidulum.app",
|
|
1159
|
+
chainId: "vidulum-1",
|
|
1160
|
+
chainName: "Vidulum",
|
|
1161
|
+
stakeCurrency: {
|
|
1162
|
+
coinDenom: "VDL",
|
|
1163
|
+
coinMinimalDenom: "uvdl",
|
|
1164
|
+
coinDecimals: 6,
|
|
1165
|
+
coinGeckoId: "vidulum",
|
|
1166
|
+
},
|
|
1167
|
+
bip44: {
|
|
1168
|
+
coinType: 370,
|
|
1169
|
+
},
|
|
1170
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("vdl"),
|
|
1171
|
+
currencies: [
|
|
1172
|
+
{
|
|
1173
|
+
coinDenom: "VDL",
|
|
1174
|
+
coinMinimalDenom: "uvdl",
|
|
1175
|
+
coinDecimals: 6,
|
|
1176
|
+
coinGeckoId: "vidulum",
|
|
1177
|
+
},
|
|
1178
|
+
],
|
|
1179
|
+
feeCurrencies: [
|
|
1180
|
+
{
|
|
1181
|
+
coinDenom: "VDL",
|
|
1182
|
+
coinMinimalDenom: "uvdl",
|
|
1183
|
+
coinDecimals: 6,
|
|
1184
|
+
coinGeckoId: "vidulum",
|
|
1185
|
+
},
|
|
1186
|
+
],
|
|
1187
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1188
|
+
explorerUrlToTx: "https://explorers.vidulum.app/vidulum/tx/{txHash}",
|
|
1189
|
+
tmRpc: "https://mainnet-rpc.vidulum.app/",
|
|
1190
|
+
},
|
|
1191
|
+
[ChainIds.Desmos]: {
|
|
1192
|
+
rpc: "https://rpc.mainnet.desmos.network",
|
|
1193
|
+
rest: "https://api.mainnet.desmos.network",
|
|
1194
|
+
chainId: "desmos-mainnet",
|
|
1195
|
+
chainName: "Desmos",
|
|
1196
|
+
stakeCurrency: {
|
|
1197
|
+
coinDenom: "DSM",
|
|
1198
|
+
coinMinimalDenom: "udsm",
|
|
1199
|
+
coinDecimals: 6,
|
|
1200
|
+
coinGeckoId: "pool:udsm",
|
|
1201
|
+
},
|
|
1202
|
+
bip44: {
|
|
1203
|
+
coinType: 852,
|
|
1204
|
+
},
|
|
1205
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("desmos"),
|
|
1206
|
+
currencies: [
|
|
1207
|
+
{
|
|
1208
|
+
coinDenom: "DSM",
|
|
1209
|
+
coinMinimalDenom: "udsm",
|
|
1210
|
+
coinDecimals: 6,
|
|
1211
|
+
coinGeckoId: "pool:udsm",
|
|
1212
|
+
},
|
|
1213
|
+
],
|
|
1214
|
+
feeCurrencies: [
|
|
1215
|
+
{
|
|
1216
|
+
coinDenom: "DSM",
|
|
1217
|
+
coinMinimalDenom: "udsm",
|
|
1218
|
+
coinDecimals: 6,
|
|
1219
|
+
coinGeckoId: "pool:udsm",
|
|
1220
|
+
},
|
|
1221
|
+
],
|
|
1222
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1223
|
+
explorerUrlToTx: "https://explorer.desmos.network/transactions/{txHash}",
|
|
1224
|
+
tmRpc: "https://rpc.mainnet.desmos.network/",
|
|
1225
|
+
},
|
|
1226
|
+
[ChainIds.Dig]: {
|
|
1227
|
+
rpc: "https://rpc-1-dig.notional.ventures",
|
|
1228
|
+
rest: "https://api-1-dig.notional.ventures",
|
|
1229
|
+
chainId: "dig-1",
|
|
1230
|
+
chainName: "Dig",
|
|
1231
|
+
stakeCurrency: {
|
|
1232
|
+
coinDenom: "DIG",
|
|
1233
|
+
coinMinimalDenom: "udig",
|
|
1234
|
+
coinDecimals: 6,
|
|
1235
|
+
coinGeckoId: "pool:udig",
|
|
1236
|
+
},
|
|
1237
|
+
bip44: {
|
|
1238
|
+
coinType: 118,
|
|
1239
|
+
},
|
|
1240
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("dig"),
|
|
1241
|
+
currencies: [
|
|
1242
|
+
{
|
|
1243
|
+
coinDenom: "DIG",
|
|
1244
|
+
coinMinimalDenom: "udig",
|
|
1245
|
+
coinDecimals: 6,
|
|
1246
|
+
coinGeckoId: "pool:udig",
|
|
1247
|
+
},
|
|
1248
|
+
],
|
|
1249
|
+
feeCurrencies: [
|
|
1250
|
+
{
|
|
1251
|
+
coinDenom: "DIG",
|
|
1252
|
+
coinMinimalDenom: "udig",
|
|
1253
|
+
coinDecimals: 6,
|
|
1254
|
+
coinGeckoId: "pool:udig",
|
|
1255
|
+
gasPriceStep: {
|
|
1256
|
+
low: 0.025,
|
|
1257
|
+
average: 0.03,
|
|
1258
|
+
high: 0.035,
|
|
1259
|
+
},
|
|
1260
|
+
},
|
|
1261
|
+
],
|
|
1262
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1263
|
+
explorerUrlToTx: "https://ping.pub/dig/tx/{txHash}",
|
|
1264
|
+
tmRpc: "https://rpc-1-dig.notional.ventures/",
|
|
1265
|
+
},
|
|
1266
|
+
[ChainIds.Sommelier]: {
|
|
1267
|
+
rpc: "https://rpc-sommelier.keplr.app",
|
|
1268
|
+
rest: "https://lcd-sommelier.keplr.app",
|
|
1269
|
+
chainId: "sommelier-3",
|
|
1270
|
+
chainName: "Sommelier",
|
|
1271
|
+
stakeCurrency: {
|
|
1272
|
+
coinDenom: "SOMM",
|
|
1273
|
+
coinMinimalDenom: "usomm",
|
|
1274
|
+
coinDecimals: 6,
|
|
1275
|
+
coinGeckoId: "pool:usomm",
|
|
1276
|
+
},
|
|
1277
|
+
bip44: {
|
|
1278
|
+
coinType: 118,
|
|
1279
|
+
},
|
|
1280
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("somm"),
|
|
1281
|
+
currencies: [
|
|
1282
|
+
{
|
|
1283
|
+
coinDenom: "SOMM",
|
|
1284
|
+
coinMinimalDenom: "usomm",
|
|
1285
|
+
coinDecimals: 6,
|
|
1286
|
+
coinGeckoId: "pool:usomm",
|
|
1287
|
+
},
|
|
1288
|
+
],
|
|
1289
|
+
feeCurrencies: [
|
|
1290
|
+
{
|
|
1291
|
+
coinDenom: "SOMM",
|
|
1292
|
+
coinMinimalDenom: "usomm",
|
|
1293
|
+
coinDecimals: 6,
|
|
1294
|
+
coinGeckoId: "pool:usomm",
|
|
1295
|
+
},
|
|
1296
|
+
],
|
|
1297
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1298
|
+
explorerUrlToTx: "https://sommscan.io",
|
|
1299
|
+
},
|
|
1300
|
+
[ChainIds.Sifchain]: {
|
|
1301
|
+
rpc: "https://rpc.sifchain.finance",
|
|
1302
|
+
rest: "https://api-int.sifchain.finance",
|
|
1303
|
+
chainId: "sifchain-1",
|
|
1304
|
+
chainName: "Sifchain",
|
|
1305
|
+
stakeCurrency: {
|
|
1306
|
+
coinDenom: "ROWAN",
|
|
1307
|
+
coinMinimalDenom: "rowan",
|
|
1308
|
+
coinDecimals: 18,
|
|
1309
|
+
coinGeckoId: "sifchain",
|
|
1310
|
+
},
|
|
1311
|
+
bip44: {
|
|
1312
|
+
coinType: 118,
|
|
1313
|
+
},
|
|
1314
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("sif"),
|
|
1315
|
+
currencies: [
|
|
1316
|
+
{
|
|
1317
|
+
coinDenom: "ROWAN",
|
|
1318
|
+
coinMinimalDenom: "rowan",
|
|
1319
|
+
coinDecimals: 18,
|
|
1320
|
+
coinGeckoId: "sifchain",
|
|
1321
|
+
},
|
|
1322
|
+
],
|
|
1323
|
+
feeCurrencies: [
|
|
1324
|
+
{
|
|
1325
|
+
coinDenom: "ROWAN",
|
|
1326
|
+
coinMinimalDenom: "rowan",
|
|
1327
|
+
coinDecimals: 18,
|
|
1328
|
+
coinGeckoId: "sifchain",
|
|
1329
|
+
},
|
|
1330
|
+
],
|
|
1331
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1332
|
+
explorerUrlToTx: "https://www.mintscan.io/sifchain/txs/{txHash}",
|
|
1333
|
+
tmRpc: "https://rpc.sifchain.finance/",
|
|
1334
|
+
},
|
|
1335
|
+
[ChainIds.BandChain]: {
|
|
1336
|
+
rpc: "https://rpc.laozi3.bandchain.org",
|
|
1337
|
+
rest: "https://laozi1.bandchain.org/api",
|
|
1338
|
+
chainId: "laozi-mainnet",
|
|
1339
|
+
chainName: "BandChain",
|
|
1340
|
+
stakeCurrency: {
|
|
1341
|
+
coinDenom: "BAND",
|
|
1342
|
+
coinMinimalDenom: "uband",
|
|
1343
|
+
coinDecimals: 6,
|
|
1344
|
+
coinGeckoId: "band-protocol",
|
|
1345
|
+
},
|
|
1346
|
+
bip44: {
|
|
1347
|
+
coinType: 494,
|
|
1348
|
+
},
|
|
1349
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("band"),
|
|
1350
|
+
currencies: [
|
|
1351
|
+
{
|
|
1352
|
+
coinDenom: "BAND",
|
|
1353
|
+
coinMinimalDenom: "uband",
|
|
1354
|
+
coinDecimals: 6,
|
|
1355
|
+
coinGeckoId: "band-protocol",
|
|
1356
|
+
},
|
|
1357
|
+
],
|
|
1358
|
+
feeCurrencies: [
|
|
1359
|
+
{
|
|
1360
|
+
coinDenom: "BAND",
|
|
1361
|
+
coinMinimalDenom: "uband",
|
|
1362
|
+
coinDecimals: 6,
|
|
1363
|
+
coinGeckoId: "band-protocol",
|
|
1364
|
+
},
|
|
1365
|
+
],
|
|
1366
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1367
|
+
explorerUrlToTx: "https://cosmoscan.io/tx/{txHash}",
|
|
1368
|
+
tmRpc: "https://rpc.laozi3.bandchain.org/",
|
|
1369
|
+
},
|
|
1370
|
+
[ChainIds.Konstellation]: {
|
|
1371
|
+
rpc: "https://node1.konstellation.tech:26657",
|
|
1372
|
+
rest: "https://node1.konstellation.tech:1318",
|
|
1373
|
+
chainId: "darchub",
|
|
1374
|
+
chainName: "Konstellation",
|
|
1375
|
+
stakeCurrency: {
|
|
1376
|
+
coinDenom: "DARC",
|
|
1377
|
+
coinMinimalDenom: "udarc",
|
|
1378
|
+
coinDecimals: 6,
|
|
1379
|
+
coinGeckoId: "pool:udarc",
|
|
1380
|
+
},
|
|
1381
|
+
bip44: {
|
|
1382
|
+
coinType: 118,
|
|
1383
|
+
},
|
|
1384
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("darc"),
|
|
1385
|
+
currencies: [
|
|
1386
|
+
{
|
|
1387
|
+
coinDenom: "DARC",
|
|
1388
|
+
coinMinimalDenom: "udarc",
|
|
1389
|
+
coinDecimals: 6,
|
|
1390
|
+
coinGeckoId: "pool:udarc",
|
|
1391
|
+
},
|
|
1392
|
+
],
|
|
1393
|
+
feeCurrencies: [
|
|
1394
|
+
{
|
|
1395
|
+
coinDenom: "DARC",
|
|
1396
|
+
coinMinimalDenom: "udarc",
|
|
1397
|
+
coinDecimals: 6,
|
|
1398
|
+
coinGeckoId: "pool:udarc",
|
|
1399
|
+
},
|
|
1400
|
+
],
|
|
1401
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1402
|
+
explorerUrlToTx: "https://www.mintscan.io/konstellation/txs/{txHash}",
|
|
1403
|
+
tmRpc: "https://node1.konstellation.tech:26657/",
|
|
1404
|
+
},
|
|
1405
|
+
[ChainIds.Umee]: {
|
|
1406
|
+
rpc: "https://rpc.aphrodite.main.network.umee.cc",
|
|
1407
|
+
rest: "https://api.aphrodite.main.network.umee.cc",
|
|
1408
|
+
chainId: "umee-1",
|
|
1409
|
+
chainName: "Umee",
|
|
1410
|
+
stakeCurrency: {
|
|
1411
|
+
coinDenom: "UMEE",
|
|
1412
|
+
coinMinimalDenom: "uumee",
|
|
1413
|
+
coinDecimals: 6,
|
|
1414
|
+
coinGeckoId: "pool:uumee",
|
|
1415
|
+
},
|
|
1416
|
+
bip44: {
|
|
1417
|
+
coinType: 118,
|
|
1418
|
+
},
|
|
1419
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("umee"),
|
|
1420
|
+
currencies: [
|
|
1421
|
+
{
|
|
1422
|
+
coinDenom: "UMEE",
|
|
1423
|
+
coinMinimalDenom: "uumee",
|
|
1424
|
+
coinDecimals: 6,
|
|
1425
|
+
coinGeckoId: "pool:uumee",
|
|
1426
|
+
},
|
|
1427
|
+
],
|
|
1428
|
+
feeCurrencies: [
|
|
1429
|
+
{
|
|
1430
|
+
coinDenom: "UMEE",
|
|
1431
|
+
coinMinimalDenom: "uumee",
|
|
1432
|
+
coinDecimals: 6,
|
|
1433
|
+
coinGeckoId: "pool:uumee",
|
|
1434
|
+
},
|
|
1435
|
+
],
|
|
1436
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1437
|
+
explorerUrlToTx: "https://www.mintscan.io/umee/txs/{txHash}",
|
|
1438
|
+
tmRpc: "https://rpc.aphrodite.main.network.umee.cc/",
|
|
1439
|
+
},
|
|
1440
|
+
[ChainIds.GravityBridge]: {
|
|
1441
|
+
rpc: "https://gravitychain.io:26657",
|
|
1442
|
+
rest: "https://gravitychain.io:1317",
|
|
1443
|
+
chainId: "gravity-bridge-3",
|
|
1444
|
+
chainName: "Gravity Bridge",
|
|
1445
|
+
stakeCurrency: {
|
|
1446
|
+
coinDenom: "GRAV",
|
|
1447
|
+
coinMinimalDenom: "ugraviton",
|
|
1448
|
+
coinDecimals: 6,
|
|
1449
|
+
coinGeckoId: "pool:ugraviton",
|
|
1450
|
+
},
|
|
1451
|
+
bip44: {
|
|
1452
|
+
coinType: 118,
|
|
1453
|
+
},
|
|
1454
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("gravity"),
|
|
1455
|
+
currencies: [
|
|
1456
|
+
{
|
|
1457
|
+
coinDenom: "GRAV",
|
|
1458
|
+
coinMinimalDenom: "ugraviton",
|
|
1459
|
+
coinDecimals: 6,
|
|
1460
|
+
coinGeckoId: "pool:ugraviton",
|
|
1461
|
+
},
|
|
1462
|
+
{
|
|
1463
|
+
coinDenom: "PSTAKE",
|
|
1464
|
+
coinMinimalDenom: "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006",
|
|
1465
|
+
coinDecimals: 18,
|
|
1466
|
+
coinGeckoId: "pstake-finance",
|
|
1467
|
+
},
|
|
1468
|
+
],
|
|
1469
|
+
feeCurrencies: [
|
|
1470
|
+
{
|
|
1471
|
+
coinDenom: "GRAV",
|
|
1472
|
+
coinMinimalDenom: "ugraviton",
|
|
1473
|
+
coinDecimals: 6,
|
|
1474
|
+
coinGeckoId: "pool:ugraviton",
|
|
1475
|
+
gasPriceStep: {
|
|
1476
|
+
low: 0,
|
|
1477
|
+
average: 0,
|
|
1478
|
+
high: 0.035,
|
|
1479
|
+
},
|
|
1480
|
+
},
|
|
1481
|
+
],
|
|
1482
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1483
|
+
explorerUrlToTx: "https://www.mintscan.io/gravity-bridge/txs/{txHash}",
|
|
1484
|
+
tmRpc: "https://gravitychain.io:26657/",
|
|
1485
|
+
},
|
|
1486
|
+
[ChainIds.Decentr]: {
|
|
1487
|
+
rpc: "https://poseidon.mainnet.decentr.xyz",
|
|
1488
|
+
rest: "https://rest.mainnet.decentr.xyz",
|
|
1489
|
+
chainId: "mainnet-3",
|
|
1490
|
+
chainName: "Decentr",
|
|
1491
|
+
stakeCurrency: {
|
|
1492
|
+
coinDenom: "DEC",
|
|
1493
|
+
coinMinimalDenom: "udec",
|
|
1494
|
+
coinDecimals: 6,
|
|
1495
|
+
coinGeckoId: "decentr",
|
|
1496
|
+
},
|
|
1497
|
+
bip44: {
|
|
1498
|
+
coinType: 118,
|
|
1499
|
+
},
|
|
1500
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("decentr"),
|
|
1501
|
+
currencies: [
|
|
1502
|
+
{
|
|
1503
|
+
coinDenom: "DEC",
|
|
1504
|
+
coinMinimalDenom: "udec",
|
|
1505
|
+
coinDecimals: 6,
|
|
1506
|
+
coinGeckoId: "decentr",
|
|
1507
|
+
},
|
|
1508
|
+
],
|
|
1509
|
+
feeCurrencies: [
|
|
1510
|
+
{
|
|
1511
|
+
coinDenom: "DEC",
|
|
1512
|
+
coinMinimalDenom: "udec",
|
|
1513
|
+
coinDecimals: 6,
|
|
1514
|
+
coinGeckoId: "decentr",
|
|
1515
|
+
},
|
|
1516
|
+
],
|
|
1517
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1518
|
+
explorerUrlToTx: "https://explorer.decentr.net/transactions/{txHash}?networkId=mainnet",
|
|
1519
|
+
tmRpc: "https://poseidon.mainnet.decentr.xyz/",
|
|
1520
|
+
},
|
|
1521
|
+
[ChainIds.Certik]: {
|
|
1522
|
+
rpc: "https://shenturpc.certikpowered.info",
|
|
1523
|
+
rest: "https://azuredragon.noopsbycertik.com",
|
|
1524
|
+
chainId: "shentu-2.2",
|
|
1525
|
+
chainName: "Certik",
|
|
1526
|
+
stakeCurrency: {
|
|
1527
|
+
coinDenom: "CTK",
|
|
1528
|
+
coinMinimalDenom: "uctk",
|
|
1529
|
+
coinDecimals: 6,
|
|
1530
|
+
coinGeckoId: "certik",
|
|
1531
|
+
},
|
|
1532
|
+
bip44: {
|
|
1533
|
+
coinType: 118,
|
|
1534
|
+
},
|
|
1535
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("certik"),
|
|
1536
|
+
currencies: [
|
|
1537
|
+
{
|
|
1538
|
+
coinDenom: "CTK",
|
|
1539
|
+
coinMinimalDenom: "uctk",
|
|
1540
|
+
coinDecimals: 6,
|
|
1541
|
+
coinGeckoId: "certik",
|
|
1542
|
+
},
|
|
1543
|
+
],
|
|
1544
|
+
feeCurrencies: [
|
|
1545
|
+
{
|
|
1546
|
+
coinDenom: "CTK",
|
|
1547
|
+
coinMinimalDenom: "uctk",
|
|
1548
|
+
coinDecimals: 6,
|
|
1549
|
+
coinGeckoId: "certik",
|
|
1550
|
+
},
|
|
1551
|
+
],
|
|
1552
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1553
|
+
explorerUrlToTx: "https://www.mintscan.io/certik/txs/{txHash}",
|
|
1554
|
+
tmRpc: "https://shenturpc.certikpowered.info/",
|
|
1555
|
+
},
|
|
1556
|
+
[ChainIds.Carbon]: {
|
|
1557
|
+
feeCurrencies: [
|
|
1558
|
+
{
|
|
1559
|
+
coinDenom: "SWTH",
|
|
1560
|
+
coinMinimalDenom: "swth",
|
|
1561
|
+
coinDecimals: 8,
|
|
1562
|
+
coinGeckoId: "switcheo",
|
|
1563
|
+
gasPriceStep: generic_1.CARBON_GAS_PRICE,
|
|
1564
|
+
},
|
|
1565
|
+
],
|
|
1566
|
+
bip44: { coinType: 118 },
|
|
1567
|
+
currencies: [
|
|
1568
|
+
{
|
|
1569
|
+
coinDenom: "SWTH",
|
|
1570
|
+
coinMinimalDenom: "swth",
|
|
1571
|
+
coinDecimals: 8,
|
|
1572
|
+
coinGeckoId: "switcheo",
|
|
1573
|
+
},
|
|
1574
|
+
],
|
|
1575
|
+
stakeCurrency: {
|
|
1576
|
+
coinDenom: "SWTH",
|
|
1577
|
+
coinMinimalDenom: "swth",
|
|
1578
|
+
coinDecimals: 8,
|
|
1579
|
+
coinGeckoId: "switcheo",
|
|
1580
|
+
},
|
|
1581
|
+
rest: "https://api.carbon.network",
|
|
1582
|
+
rpc: "https://tm-api.carbon.network/",
|
|
1583
|
+
chainName: "Carbon",
|
|
1584
|
+
chainId: "carbon-1",
|
|
1585
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("swth"),
|
|
1586
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1587
|
+
explorerUrlToTx: "https://scan.carbon.network/transaction/{txHash}?net=main",
|
|
1588
|
+
},
|
|
1589
|
+
[ChainIds.Axelar]: {
|
|
1590
|
+
feeCurrencies: [
|
|
1591
|
+
{
|
|
1592
|
+
coinDenom: "AXL",
|
|
1593
|
+
coinMinimalDenom: "uaxl",
|
|
1594
|
+
coinDecimals: 6,
|
|
1595
|
+
coinGeckoId: "", // TODO: fill in when available
|
|
1596
|
+
gasPriceStep: {
|
|
1597
|
+
low: 0.007,
|
|
1598
|
+
average: 0.007,
|
|
1599
|
+
high: 0.01,
|
|
1600
|
+
},
|
|
1601
|
+
},
|
|
1602
|
+
],
|
|
1603
|
+
bip44: { coinType: 118 },
|
|
1604
|
+
currencies: [
|
|
1605
|
+
{
|
|
1606
|
+
coinDenom: "AXL",
|
|
1607
|
+
coinMinimalDenom: "uaxl",
|
|
1608
|
+
coinDecimals: 6,
|
|
1609
|
+
coinGeckoId: "", // TODO: fill in when available
|
|
1610
|
+
},
|
|
1611
|
+
{
|
|
1612
|
+
coinDenom: "USDC",
|
|
1613
|
+
coinMinimalDenom: "uusdc",
|
|
1614
|
+
coinDecimals: 6,
|
|
1615
|
+
coinGeckoId: "usd-coin",
|
|
1616
|
+
},
|
|
1617
|
+
],
|
|
1618
|
+
stakeCurrency: {
|
|
1619
|
+
coinDenom: "AXL",
|
|
1620
|
+
coinMinimalDenom: "uaxl",
|
|
1621
|
+
coinDecimals: 6,
|
|
1622
|
+
coinGeckoId: "", // TODO: fill in when available
|
|
1623
|
+
},
|
|
1624
|
+
rpc: "https://rpc-axelar.keplr.app",
|
|
1625
|
+
rest: "https://lcd-axelar.keplr.app",
|
|
1626
|
+
chainName: "Axelar",
|
|
1627
|
+
chainId: ChainIds.Axelar,
|
|
1628
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("axelar"),
|
|
1629
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1630
|
+
explorerUrlToTx: "https://axelarscan.io/tx/{txHash}",
|
|
1631
|
+
},
|
|
1632
|
+
[ChainIds.Stride]: {
|
|
1633
|
+
rpc: "https://rpc-stride.keplr.app",
|
|
1634
|
+
rest: "https://lcd-stride.keplr.app",
|
|
1635
|
+
chainId: "stride-1",
|
|
1636
|
+
chainName: "Stride",
|
|
1637
|
+
stakeCurrency: {
|
|
1638
|
+
coinDenom: "STRD",
|
|
1639
|
+
coinMinimalDenom: "ustrd",
|
|
1640
|
+
coinDecimals: 6,
|
|
1641
|
+
coinGeckoId: "stride",
|
|
1642
|
+
},
|
|
1643
|
+
bip44: {
|
|
1644
|
+
coinType: 118,
|
|
1645
|
+
},
|
|
1646
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("stride"),
|
|
1647
|
+
currencies: [
|
|
1648
|
+
{
|
|
1649
|
+
coinDenom: "STRD",
|
|
1650
|
+
coinMinimalDenom: "ustrd",
|
|
1651
|
+
coinDecimals: 6,
|
|
1652
|
+
coinGeckoId: "stride",
|
|
1653
|
+
},
|
|
1654
|
+
{
|
|
1655
|
+
coinDenom: "stATOM",
|
|
1656
|
+
coinMinimalDenom: "stuatom",
|
|
1657
|
+
coinDecimals: 6,
|
|
1658
|
+
},
|
|
1659
|
+
{
|
|
1660
|
+
coinDenom: "stOSMO",
|
|
1661
|
+
coinMinimalDenom: "stuosmo",
|
|
1662
|
+
coinDecimals: 6,
|
|
1663
|
+
},
|
|
1664
|
+
{
|
|
1665
|
+
coinDenom: "stJUNO",
|
|
1666
|
+
coinMinimalDenom: "stujuno",
|
|
1667
|
+
coinDecimals: 6,
|
|
1668
|
+
},
|
|
1669
|
+
{
|
|
1670
|
+
coinDenom: "stSTARS",
|
|
1671
|
+
coinMinimalDenom: "stustars",
|
|
1672
|
+
coinDecimals: 6,
|
|
1673
|
+
},
|
|
1674
|
+
{
|
|
1675
|
+
coinDenom: "stLUNA",
|
|
1676
|
+
coinMinimalDenom: "stuluna",
|
|
1677
|
+
coinDecimals: 6,
|
|
1678
|
+
},
|
|
1679
|
+
{
|
|
1680
|
+
"coinDenom": "stEVMOS",
|
|
1681
|
+
"coinMinimalDenom": "staevmos",
|
|
1682
|
+
"coinDecimals": 18,
|
|
1683
|
+
},
|
|
1684
|
+
],
|
|
1685
|
+
feeCurrencies: [
|
|
1686
|
+
{
|
|
1687
|
+
coinDenom: "STRD",
|
|
1688
|
+
coinMinimalDenom: "ustrd",
|
|
1689
|
+
coinDecimals: 6,
|
|
1690
|
+
coinGeckoId: "stride",
|
|
1691
|
+
gasPriceStep: {
|
|
1692
|
+
low: 0,
|
|
1693
|
+
average: 0,
|
|
1694
|
+
high: 0.04,
|
|
1695
|
+
},
|
|
1696
|
+
},
|
|
1697
|
+
],
|
|
1698
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1699
|
+
explorerUrlToTx: "https://www.mintscan.io/stride/txs/{txHash}",
|
|
1700
|
+
tmRpc: "https://stride.rpc.kjnodes.com/",
|
|
1701
|
+
},
|
|
1702
|
+
[ChainIds.Kujira]: {
|
|
1703
|
+
rpc: "https://rpc.kaiyo.kujira.setten.io",
|
|
1704
|
+
rest: "https://lcd.kaiyo.kujira.setten.io",
|
|
1705
|
+
chainId: "kaiyo-1",
|
|
1706
|
+
chainName: "Kujira",
|
|
1707
|
+
bip44: {
|
|
1708
|
+
coinType: 118,
|
|
1709
|
+
},
|
|
1710
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("kujira"),
|
|
1711
|
+
stakeCurrency: {
|
|
1712
|
+
coinDenom: "KUJI",
|
|
1713
|
+
coinMinimalDenom: "ukuji",
|
|
1714
|
+
coinDecimals: 6,
|
|
1715
|
+
coinGeckoId: "kujira",
|
|
1716
|
+
},
|
|
1717
|
+
currencies: [
|
|
1718
|
+
{
|
|
1719
|
+
coinDenom: "KUJI",
|
|
1720
|
+
coinMinimalDenom: "ukuji",
|
|
1721
|
+
coinDecimals: 6,
|
|
1722
|
+
coinGeckoId: "kujira",
|
|
1723
|
+
},
|
|
1724
|
+
{
|
|
1725
|
+
coinDenom: "USK",
|
|
1726
|
+
coinMinimalDenom: "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk",
|
|
1727
|
+
coinDecimals: 6,
|
|
1728
|
+
coinGeckoId: "usk",
|
|
1729
|
+
},
|
|
1730
|
+
{
|
|
1731
|
+
coinDenom: "ampKUJI",
|
|
1732
|
+
coinMinimalDenom: "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI",
|
|
1733
|
+
coinDecimals: 6,
|
|
1734
|
+
},
|
|
1735
|
+
],
|
|
1736
|
+
feeCurrencies: [
|
|
1737
|
+
{
|
|
1738
|
+
coinDenom: "KUJI",
|
|
1739
|
+
coinMinimalDenom: "ukuji",
|
|
1740
|
+
coinDecimals: 6,
|
|
1741
|
+
coinGeckoId: "kujira",
|
|
1742
|
+
gasPriceStep: {
|
|
1743
|
+
low: 0.01,
|
|
1744
|
+
average: 0.025,
|
|
1745
|
+
high: 0.03,
|
|
1746
|
+
},
|
|
1747
|
+
},
|
|
1748
|
+
],
|
|
1749
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1750
|
+
explorerUrlToTx: "https://finder.kujira.app/kaiyo-1/tx/{txHash}",
|
|
1751
|
+
},
|
|
1752
|
+
[ChainIds.Terra2]: {
|
|
1753
|
+
rpc: "https://terra-rpc.lavenderfive.com:443/",
|
|
1754
|
+
rest: "https://phoenix-lcd.terra.dev/",
|
|
1755
|
+
chainId: "phoenix-1",
|
|
1756
|
+
chainName: "Terra 2.0",
|
|
1757
|
+
bip44: {
|
|
1758
|
+
coinType: 330,
|
|
1759
|
+
},
|
|
1760
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("terra"),
|
|
1761
|
+
stakeCurrency: {
|
|
1762
|
+
coinDenom: "LUNA",
|
|
1763
|
+
coinMinimalDenom: "uluna",
|
|
1764
|
+
coinDecimals: 6,
|
|
1765
|
+
coinGeckoId: "terra-luna-2",
|
|
1766
|
+
},
|
|
1767
|
+
currencies: [
|
|
1768
|
+
{
|
|
1769
|
+
coinDenom: "LUNA",
|
|
1770
|
+
coinMinimalDenom: "uluna",
|
|
1771
|
+
coinDecimals: 6,
|
|
1772
|
+
coinGeckoId: "terra-luna-2",
|
|
1773
|
+
},
|
|
1774
|
+
{
|
|
1775
|
+
coinDenom: "ampLUNA",
|
|
1776
|
+
coinMinimalDenom: "cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct",
|
|
1777
|
+
coinDecimals: 6,
|
|
1778
|
+
coinGeckoId: "terra-luna-2",
|
|
1779
|
+
type: "cw20",
|
|
1780
|
+
contractAddress: "terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct",
|
|
1781
|
+
},
|
|
1782
|
+
],
|
|
1783
|
+
feeCurrencies: [
|
|
1784
|
+
{
|
|
1785
|
+
coinDenom: "LUNA",
|
|
1786
|
+
coinMinimalDenom: "uluna",
|
|
1787
|
+
coinDecimals: 6,
|
|
1788
|
+
coinGeckoId: "terra-luna-2",
|
|
1789
|
+
gasPriceStep: {
|
|
1790
|
+
low: 0.15,
|
|
1791
|
+
average: 0.2,
|
|
1792
|
+
high: 0.25,
|
|
1793
|
+
},
|
|
1794
|
+
},
|
|
1795
|
+
],
|
|
1796
|
+
features: ["ibc-transfer", "ibc-go", "cosmwasm", "wasmd_0.24+"],
|
|
1797
|
+
explorerUrlToTx: "https://finder.terra.money/phoenix-1/tx/{txHash}",
|
|
1798
|
+
},
|
|
1799
|
+
[ChainIds.Quicksilver]: {
|
|
1800
|
+
rpc: "https://rpc-quicksilver.keplr.app",
|
|
1801
|
+
rest: "https://lcd-quicksilver.keplr.app",
|
|
1802
|
+
chainId: "quicksilver-2",
|
|
1803
|
+
chainName: "Quicksilver",
|
|
1804
|
+
stakeCurrency: {
|
|
1805
|
+
coinDenom: "QCK",
|
|
1806
|
+
coinMinimalDenom: "uqck",
|
|
1807
|
+
coinDecimals: 6,
|
|
1808
|
+
},
|
|
1809
|
+
bip44: {
|
|
1810
|
+
coinType: 118,
|
|
1811
|
+
},
|
|
1812
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("quick"),
|
|
1813
|
+
currencies: [
|
|
1814
|
+
{
|
|
1815
|
+
coinDenom: "QCK",
|
|
1816
|
+
coinMinimalDenom: "uqck",
|
|
1817
|
+
coinDecimals: 6,
|
|
1818
|
+
},
|
|
1819
|
+
],
|
|
1820
|
+
feeCurrencies: [
|
|
1821
|
+
{
|
|
1822
|
+
coinDenom: "QCK",
|
|
1823
|
+
coinMinimalDenom: "uqck",
|
|
1824
|
+
coinDecimals: 6,
|
|
1825
|
+
gasPriceStep: {
|
|
1826
|
+
low: 0.0001,
|
|
1827
|
+
average: 0.0001,
|
|
1828
|
+
high: 0.00025,
|
|
1829
|
+
},
|
|
1830
|
+
},
|
|
1831
|
+
],
|
|
1832
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1833
|
+
explorerUrlToTx: "https://www.mintscan.io/quicksilver/txs/{txHash}",
|
|
1834
|
+
},
|
|
1835
|
+
[ChainIds.StafiHub]: {
|
|
1836
|
+
rpc: "https://public-rpc1.stafihub.io",
|
|
1837
|
+
rest: "https://public-rest-rpc1.stafihub.io",
|
|
1838
|
+
chainId: "stafihub-1",
|
|
1839
|
+
chainName: "StaFi Hub",
|
|
1840
|
+
stakeCurrency: {
|
|
1841
|
+
coinDenom: "FIS",
|
|
1842
|
+
coinMinimalDenom: "ufis",
|
|
1843
|
+
coinDecimals: 6,
|
|
1844
|
+
},
|
|
1845
|
+
bip44: {
|
|
1846
|
+
coinType: 118,
|
|
1847
|
+
},
|
|
1848
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("stafi"),
|
|
1849
|
+
currencies: [
|
|
1850
|
+
{
|
|
1851
|
+
coinDenom: "FIS",
|
|
1852
|
+
coinMinimalDenom: "ufis",
|
|
1853
|
+
coinDecimals: 6,
|
|
1854
|
+
},
|
|
1855
|
+
{
|
|
1856
|
+
coinDenom: "rATOM",
|
|
1857
|
+
coinMinimalDenom: "uratom",
|
|
1858
|
+
coinDecimals: 6,
|
|
1859
|
+
},
|
|
1860
|
+
{
|
|
1861
|
+
coinDenom: "rIRIS",
|
|
1862
|
+
coinMinimalDenom: "uriris",
|
|
1863
|
+
coinDecimals: 6,
|
|
1864
|
+
},
|
|
1865
|
+
{
|
|
1866
|
+
coinDenom: "rHUAHUA",
|
|
1867
|
+
coinMinimalDenom: "urhuahua",
|
|
1868
|
+
coinDecimals: 6,
|
|
1869
|
+
},
|
|
1870
|
+
],
|
|
1871
|
+
feeCurrencies: [
|
|
1872
|
+
{
|
|
1873
|
+
coinDenom: "FIS",
|
|
1874
|
+
coinMinimalDenom: "ufis",
|
|
1875
|
+
coinDecimals: 6,
|
|
1876
|
+
gasPriceStep: {
|
|
1877
|
+
low: 0.01,
|
|
1878
|
+
average: 0.025,
|
|
1879
|
+
high: 0.04,
|
|
1880
|
+
},
|
|
1881
|
+
},
|
|
1882
|
+
],
|
|
1883
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1884
|
+
explorerUrlToTx: "https://www.mintscan.io/stafi/txs/{txHash}",
|
|
1885
|
+
},
|
|
1886
|
+
[ChainIds.Canto]: {
|
|
1887
|
+
rpc: "https://canto-rpc.polkachu.com",
|
|
1888
|
+
rest: "https://canto-api.polkachu.com",
|
|
1889
|
+
chainId: "canto_7700-1",
|
|
1890
|
+
chainName: "Canto",
|
|
1891
|
+
stakeCurrency: {
|
|
1892
|
+
coinDenom: "CANTO",
|
|
1893
|
+
coinMinimalDenom: "acanto",
|
|
1894
|
+
coinDecimals: 18,
|
|
1895
|
+
coinGeckoId: "canto",
|
|
1896
|
+
},
|
|
1897
|
+
bip44: {
|
|
1898
|
+
coinType: 60,
|
|
1899
|
+
},
|
|
1900
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("canto"),
|
|
1901
|
+
currencies: [
|
|
1902
|
+
{
|
|
1903
|
+
coinDenom: "CANTO",
|
|
1904
|
+
coinMinimalDenom: "acanto",
|
|
1905
|
+
coinDecimals: 18,
|
|
1906
|
+
coinGeckoId: "canto",
|
|
1907
|
+
},
|
|
1908
|
+
],
|
|
1909
|
+
feeCurrencies: [
|
|
1910
|
+
{
|
|
1911
|
+
coinDenom: "CANTO",
|
|
1912
|
+
coinMinimalDenom: "acanto",
|
|
1913
|
+
coinDecimals: 18,
|
|
1914
|
+
gasPriceStep: {
|
|
1915
|
+
low: 1250000000000,
|
|
1916
|
+
average: 2500000000000,
|
|
1917
|
+
high: 3750000000000,
|
|
1918
|
+
},
|
|
1919
|
+
},
|
|
1920
|
+
],
|
|
1921
|
+
features: ["ibc-transfer", "ibc-go", "eth-address-gen", "eth-key-sign"],
|
|
1922
|
+
explorerUrlToTx: "https://cosmos.explorer.canto.io/transactions/{txHash}",
|
|
1923
|
+
},
|
|
1924
|
+
[ChainIds.OmniFlixHub]: {
|
|
1925
|
+
rpc: "https://rpc.omniflix.network",
|
|
1926
|
+
rest: "https://rest.omniflix.network",
|
|
1927
|
+
chainId: "omniflixhub-1",
|
|
1928
|
+
chainName: "OmniFlix Hub",
|
|
1929
|
+
stakeCurrency: {
|
|
1930
|
+
coinDenom: "FLIX",
|
|
1931
|
+
coinMinimalDenom: "uflix",
|
|
1932
|
+
coinDecimals: 6,
|
|
1933
|
+
coinGeckoId: "omniflix-network",
|
|
1934
|
+
},
|
|
1935
|
+
bip44: {
|
|
1936
|
+
coinType: 118,
|
|
1937
|
+
},
|
|
1938
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("omniflix"),
|
|
1939
|
+
currencies: [{
|
|
1940
|
+
coinDenom: "FLIX",
|
|
1941
|
+
coinMinimalDenom: "uflix",
|
|
1942
|
+
coinDecimals: 6,
|
|
1943
|
+
coinGeckoId: "omniflix-network",
|
|
1944
|
+
}],
|
|
1945
|
+
feeCurrencies: [{
|
|
1946
|
+
coinDenom: "FLIX",
|
|
1947
|
+
coinMinimalDenom: "uflix",
|
|
1948
|
+
coinDecimals: 6,
|
|
1949
|
+
coinGeckoId: "omniflix-network",
|
|
1950
|
+
gasPriceStep: {
|
|
1951
|
+
low: 0.001,
|
|
1952
|
+
average: 0.0025,
|
|
1953
|
+
high: 0.025,
|
|
1954
|
+
},
|
|
1955
|
+
}],
|
|
1956
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
1957
|
+
explorerUrlToTx: "https://www.mintscan.io/omniflix/txs/{txHash}",
|
|
1958
|
+
},
|
|
1959
|
+
[ChainIds.Agoric]: {
|
|
1960
|
+
rpc: "https://rpc-agoric.keplr.app",
|
|
1961
|
+
rest: "https://lcd-agoric.keplr.app",
|
|
1962
|
+
chainId: "agoric-3",
|
|
1963
|
+
chainName: "Agoric",
|
|
1964
|
+
stakeCurrency: {
|
|
1965
|
+
coinDenom: "BLD",
|
|
1966
|
+
coinMinimalDenom: "ubld",
|
|
1967
|
+
coinDecimals: 6,
|
|
1968
|
+
coinGeckoId: "agoric",
|
|
1969
|
+
},
|
|
1970
|
+
bip44: {
|
|
1971
|
+
coinType: 564,
|
|
1972
|
+
},
|
|
1973
|
+
bech32Config: exports.IBCAddress.defaultBech32Config("agoric"),
|
|
1974
|
+
currencies: [
|
|
1975
|
+
{
|
|
1976
|
+
coinDenom: "BLD",
|
|
1977
|
+
coinMinimalDenom: "ubld",
|
|
1978
|
+
coinDecimals: 6,
|
|
1979
|
+
coinGeckoId: "agoric",
|
|
1980
|
+
},
|
|
1981
|
+
{
|
|
1982
|
+
coinDenom: "IST",
|
|
1983
|
+
coinMinimalDenom: "uist",
|
|
1984
|
+
coinDecimals: 6,
|
|
1985
|
+
},
|
|
1986
|
+
],
|
|
1987
|
+
feeCurrencies: [
|
|
1988
|
+
{
|
|
1989
|
+
coinDenom: "BLD",
|
|
1990
|
+
coinMinimalDenom: "ubld",
|
|
1991
|
+
coinDecimals: 6,
|
|
1992
|
+
coinGeckoId: "agoric",
|
|
1993
|
+
gasPriceStep: {
|
|
1994
|
+
low: 0.03,
|
|
1995
|
+
average: 0.05,
|
|
1996
|
+
high: 0.07,
|
|
1997
|
+
},
|
|
1998
|
+
},
|
|
1999
|
+
{
|
|
2000
|
+
coinDenom: "IST",
|
|
2001
|
+
coinMinimalDenom: "uist",
|
|
2002
|
+
coinDecimals: 6,
|
|
2003
|
+
coinGeckoId: "inter-stable-token",
|
|
2004
|
+
gasPriceStep: {
|
|
2005
|
+
low: 0.0034,
|
|
2006
|
+
average: 0.007,
|
|
2007
|
+
high: 0.02,
|
|
2008
|
+
},
|
|
2009
|
+
},
|
|
2010
|
+
],
|
|
2011
|
+
features: ["ibc-transfer", "ibc-go"],
|
|
2012
|
+
explorerUrlToTx: "https://www.atomscan.com/agoric/transactions/{txHash}",
|
|
2013
|
+
},
|
|
2014
|
+
};
|
|
2015
|
+
exports.swthChannels = {
|
|
2016
|
+
[ChainIds.Osmosis]: {
|
|
2017
|
+
ibc: {
|
|
2018
|
+
sourceChannel: "channel-0",
|
|
2019
|
+
dstChannel: "channel-188",
|
|
2020
|
+
},
|
|
2021
|
+
},
|
|
2022
|
+
[ChainIds.Terra]: {
|
|
2023
|
+
ibc: {
|
|
2024
|
+
sourceChannel: "channel-2",
|
|
2025
|
+
dstChannel: "channel-48",
|
|
2026
|
+
},
|
|
2027
|
+
},
|
|
2028
|
+
[ChainIds.CosmosHub]: {
|
|
2029
|
+
ibc: {
|
|
2030
|
+
sourceChannel: "channel-3",
|
|
2031
|
+
dstChannel: "channel-342",
|
|
2032
|
+
},
|
|
2033
|
+
},
|
|
2034
|
+
[ChainIds.Juno]: {
|
|
2035
|
+
ibc: {
|
|
2036
|
+
sourceChannel: "channel-4",
|
|
2037
|
+
dstChannel: "channel-92",
|
|
2038
|
+
},
|
|
2039
|
+
},
|
|
2040
|
+
[ChainIds.Evmos]: {
|
|
2041
|
+
ibc: {
|
|
2042
|
+
sourceChannel: "channel-6",
|
|
2043
|
+
dstChannel: "channel-23",
|
|
2044
|
+
},
|
|
2045
|
+
},
|
|
2046
|
+
[ChainIds.Axelar]: {
|
|
2047
|
+
ibc: {
|
|
2048
|
+
sourceChannel: "channel-7",
|
|
2049
|
+
dstChannel: "channel-37",
|
|
2050
|
+
},
|
|
2051
|
+
},
|
|
2052
|
+
[ChainIds.Stride]: {
|
|
2053
|
+
ibc: {
|
|
2054
|
+
sourceChannel: "channel-8",
|
|
2055
|
+
dstChannel: "channel-47",
|
|
2056
|
+
},
|
|
2057
|
+
},
|
|
2058
|
+
[ChainIds.Kujira]: {
|
|
2059
|
+
ibc: {
|
|
2060
|
+
sourceChannel: "channel-9",
|
|
2061
|
+
dstChannel: "channel-46",
|
|
2062
|
+
},
|
|
2063
|
+
},
|
|
2064
|
+
[ChainIds.Terra2]: {
|
|
2065
|
+
ibc: {
|
|
2066
|
+
sourceChannel: "channel-12",
|
|
2067
|
+
dstChannel: "channel-36",
|
|
2068
|
+
},
|
|
2069
|
+
cw20: {
|
|
2070
|
+
sourceChannel: "channel-16",
|
|
2071
|
+
dstChannel: "channel-41",
|
|
2072
|
+
portId: "terra1e0mrzy8077druuu42vs0hu7ugguade0cj65dgtauyaw4gsl4kv0qtdf2au",
|
|
2073
|
+
},
|
|
2074
|
+
},
|
|
2075
|
+
[ChainIds.Comdex]: {
|
|
2076
|
+
ibc: {
|
|
2077
|
+
sourceChannel: "channel-11",
|
|
2078
|
+
dstChannel: "channel-50",
|
|
2079
|
+
},
|
|
2080
|
+
},
|
|
2081
|
+
[ChainIds.Quicksilver]: {
|
|
2082
|
+
ibc: {
|
|
2083
|
+
sourceChannel: "channel-17",
|
|
2084
|
+
dstChannel: "channel-10",
|
|
2085
|
+
},
|
|
2086
|
+
},
|
|
2087
|
+
[ChainIds.StafiHub]: {
|
|
2088
|
+
ibc: {
|
|
2089
|
+
sourceChannel: "channel-13",
|
|
2090
|
+
dstChannel: "channel-5",
|
|
2091
|
+
},
|
|
2092
|
+
},
|
|
2093
|
+
[ChainIds.Persistence]: {
|
|
2094
|
+
ibc: {
|
|
2095
|
+
sourceChannel: "channel-14",
|
|
2096
|
+
dstChannel: "channel-62",
|
|
2097
|
+
},
|
|
2098
|
+
},
|
|
2099
|
+
[ChainIds.Stargaze]: {
|
|
2100
|
+
ibc: {
|
|
2101
|
+
sourceChannel: "channel-15",
|
|
2102
|
+
dstChannel: "channel-123",
|
|
2103
|
+
},
|
|
2104
|
+
},
|
|
2105
|
+
[ChainIds.Canto]: {
|
|
2106
|
+
ibc: {
|
|
2107
|
+
sourceChannel: "channel-18",
|
|
2108
|
+
dstChannel: "channel-6",
|
|
2109
|
+
},
|
|
2110
|
+
},
|
|
2111
|
+
[ChainIds.OmniFlixHub]: {
|
|
2112
|
+
ibc: {
|
|
2113
|
+
sourceChannel: "channel-19",
|
|
2114
|
+
dstChannel: "channel-24",
|
|
2115
|
+
},
|
|
2116
|
+
},
|
|
2117
|
+
[ChainIds.Agoric]: {
|
|
2118
|
+
ibc: {
|
|
2119
|
+
sourceChannel: "channel-20",
|
|
2120
|
+
dstChannel: "channel-12",
|
|
2121
|
+
},
|
|
2122
|
+
},
|
|
2123
|
+
[ChainIds.Sommelier]: {
|
|
2124
|
+
ibc: {
|
|
2125
|
+
sourceChannel: "channel-23",
|
|
2126
|
+
dstChannel: "channel-3",
|
|
2127
|
+
},
|
|
2128
|
+
},
|
|
2129
|
+
};
|
|
2130
|
+
exports.cibtIbcTokenRegex = RegExp(`^${token_1.DenomPrefix.CDPToken}/ibc/([a-f\\d]+)$`, "i");
|
|
2131
|
+
exports.ibcTokenRegex = /^ibc\/([a-f\d]+)$/i;
|
|
2132
|
+
exports.cw20TokenRegex = /^cw20:([a-z\d]+)$/i;
|
|
2133
|
+
exports.factoryIbcMinimalDenomRegex = /^factory:([a-z\d]+):([a-z\d]+)$/i;
|
|
2134
|
+
exports.cosmBridgeRegex = /^wasm\.([a-z\d]+)$/i;
|
|
2135
|
+
exports.ibcNetworkRegex = /^([a-z\d_-]+)-([\d]+)$/i;
|
|
2136
|
+
exports.ibcTransferChannelRegex = /^transfer\/channel-(\d+)/i;
|
|
2137
|
+
exports.ibcDefaultGas = 300000;
|
|
2138
|
+
exports.ibcGasOverride = {
|
|
2139
|
+
[ChainIds.Osmosis]: 500000,
|
|
2140
|
+
};
|
|
2141
|
+
exports.DefaultGasPriceStep = {
|
|
2142
|
+
low: 0.01,
|
|
2143
|
+
average: 0.025,
|
|
2144
|
+
high: 0.04,
|
|
2145
|
+
};
|