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,867 @@
|
|
|
1
|
+
import Long from "long";
|
|
2
|
+
import _m0 from "protobufjs/minimal";
|
|
3
|
+
import { PublicKey } from "../crypto/keys";
|
|
4
|
+
import { ProofOps } from "../crypto/proof";
|
|
5
|
+
import { ConsensusParams } from "../types/params";
|
|
6
|
+
import { BlockIDFlag } from "../types/validator";
|
|
7
|
+
export declare const protobufPackage = "tendermint.abci";
|
|
8
|
+
export declare enum CheckTxType {
|
|
9
|
+
NEW = 0,
|
|
10
|
+
RECHECK = 1,
|
|
11
|
+
UNRECOGNIZED = -1
|
|
12
|
+
}
|
|
13
|
+
export declare function checkTxTypeFromJSON(object: any): CheckTxType;
|
|
14
|
+
export declare function checkTxTypeToJSON(object: CheckTxType): string;
|
|
15
|
+
export declare enum MisbehaviorType {
|
|
16
|
+
UNKNOWN = 0,
|
|
17
|
+
DUPLICATE_VOTE = 1,
|
|
18
|
+
LIGHT_CLIENT_ATTACK = 2,
|
|
19
|
+
UNRECOGNIZED = -1
|
|
20
|
+
}
|
|
21
|
+
export declare function misbehaviorTypeFromJSON(object: any): MisbehaviorType;
|
|
22
|
+
export declare function misbehaviorTypeToJSON(object: MisbehaviorType): string;
|
|
23
|
+
export interface Request {
|
|
24
|
+
echo?: RequestEcho | undefined;
|
|
25
|
+
flush?: RequestFlush | undefined;
|
|
26
|
+
info?: RequestInfo | undefined;
|
|
27
|
+
initChain?: RequestInitChain | undefined;
|
|
28
|
+
query?: RequestQuery | undefined;
|
|
29
|
+
checkTx?: RequestCheckTx | undefined;
|
|
30
|
+
commit?: RequestCommit | undefined;
|
|
31
|
+
listSnapshots?: RequestListSnapshots | undefined;
|
|
32
|
+
offerSnapshot?: RequestOfferSnapshot | undefined;
|
|
33
|
+
loadSnapshotChunk?: RequestLoadSnapshotChunk | undefined;
|
|
34
|
+
applySnapshotChunk?: RequestApplySnapshotChunk | undefined;
|
|
35
|
+
prepareProposal?: RequestPrepareProposal | undefined;
|
|
36
|
+
processProposal?: RequestProcessProposal | undefined;
|
|
37
|
+
extendVote?: RequestExtendVote | undefined;
|
|
38
|
+
verifyVoteExtension?: RequestVerifyVoteExtension | undefined;
|
|
39
|
+
finalizeBlock?: RequestFinalizeBlock | undefined;
|
|
40
|
+
}
|
|
41
|
+
export interface RequestEcho {
|
|
42
|
+
message: string;
|
|
43
|
+
}
|
|
44
|
+
export interface RequestFlush {
|
|
45
|
+
}
|
|
46
|
+
export interface RequestInfo {
|
|
47
|
+
version: string;
|
|
48
|
+
blockVersion: Long;
|
|
49
|
+
p2pVersion: Long;
|
|
50
|
+
abciVersion: string;
|
|
51
|
+
}
|
|
52
|
+
export interface RequestInitChain {
|
|
53
|
+
time?: Date;
|
|
54
|
+
chainId: string;
|
|
55
|
+
consensusParams?: ConsensusParams;
|
|
56
|
+
validators: ValidatorUpdate[];
|
|
57
|
+
appStateBytes: Uint8Array;
|
|
58
|
+
initialHeight: Long;
|
|
59
|
+
}
|
|
60
|
+
export interface RequestQuery {
|
|
61
|
+
data: Uint8Array;
|
|
62
|
+
path: string;
|
|
63
|
+
height: Long;
|
|
64
|
+
prove: boolean;
|
|
65
|
+
}
|
|
66
|
+
export interface RequestCheckTx {
|
|
67
|
+
tx: Uint8Array;
|
|
68
|
+
type: CheckTxType;
|
|
69
|
+
}
|
|
70
|
+
export interface RequestCommit {
|
|
71
|
+
}
|
|
72
|
+
/** lists available snapshots */
|
|
73
|
+
export interface RequestListSnapshots {
|
|
74
|
+
}
|
|
75
|
+
/** offers a snapshot to the application */
|
|
76
|
+
export interface RequestOfferSnapshot {
|
|
77
|
+
/** snapshot offered by peers */
|
|
78
|
+
snapshot?: Snapshot;
|
|
79
|
+
/** light client-verified app hash for snapshot height */
|
|
80
|
+
appHash: Uint8Array;
|
|
81
|
+
}
|
|
82
|
+
/** loads a snapshot chunk */
|
|
83
|
+
export interface RequestLoadSnapshotChunk {
|
|
84
|
+
height: Long;
|
|
85
|
+
format: number;
|
|
86
|
+
chunk: number;
|
|
87
|
+
}
|
|
88
|
+
/** Applies a snapshot chunk */
|
|
89
|
+
export interface RequestApplySnapshotChunk {
|
|
90
|
+
index: number;
|
|
91
|
+
chunk: Uint8Array;
|
|
92
|
+
sender: string;
|
|
93
|
+
}
|
|
94
|
+
export interface RequestPrepareProposal {
|
|
95
|
+
/** the modified transactions cannot exceed this size. */
|
|
96
|
+
maxTxBytes: Long;
|
|
97
|
+
/**
|
|
98
|
+
* txs is an array of transactions that will be included in a block,
|
|
99
|
+
* sent to the app for possible modifications.
|
|
100
|
+
*/
|
|
101
|
+
txs: Uint8Array[];
|
|
102
|
+
localLastCommit?: ExtendedCommitInfo;
|
|
103
|
+
misbehavior: Misbehavior[];
|
|
104
|
+
height: Long;
|
|
105
|
+
time?: Date;
|
|
106
|
+
nextValidatorsHash: Uint8Array;
|
|
107
|
+
/** address of the public key of the validator proposing the block. */
|
|
108
|
+
proposerAddress: Uint8Array;
|
|
109
|
+
}
|
|
110
|
+
export interface RequestProcessProposal {
|
|
111
|
+
txs: Uint8Array[];
|
|
112
|
+
proposedLastCommit?: CommitInfo;
|
|
113
|
+
misbehavior: Misbehavior[];
|
|
114
|
+
/** hash is the merkle root hash of the fields of the proposed block. */
|
|
115
|
+
hash: Uint8Array;
|
|
116
|
+
height: Long;
|
|
117
|
+
time?: Date;
|
|
118
|
+
nextValidatorsHash: Uint8Array;
|
|
119
|
+
/** address of the public key of the original proposer of the block. */
|
|
120
|
+
proposerAddress: Uint8Array;
|
|
121
|
+
}
|
|
122
|
+
/** Extends a vote with application-injected data */
|
|
123
|
+
export interface RequestExtendVote {
|
|
124
|
+
/** the hash of the block that this vote may be referring to */
|
|
125
|
+
hash: Uint8Array;
|
|
126
|
+
/** the height of the extended vote */
|
|
127
|
+
height: Long;
|
|
128
|
+
/** info of the block that this vote may be referring to */
|
|
129
|
+
time?: Date;
|
|
130
|
+
txs: Uint8Array[];
|
|
131
|
+
proposedLastCommit?: CommitInfo;
|
|
132
|
+
misbehavior: Misbehavior[];
|
|
133
|
+
nextValidatorsHash: Uint8Array;
|
|
134
|
+
/** address of the public key of the original proposer of the block. */
|
|
135
|
+
proposerAddress: Uint8Array;
|
|
136
|
+
}
|
|
137
|
+
/** Verify the vote extension */
|
|
138
|
+
export interface RequestVerifyVoteExtension {
|
|
139
|
+
/** the hash of the block that this received vote corresponds to */
|
|
140
|
+
hash: Uint8Array;
|
|
141
|
+
/** the validator that signed the vote extension */
|
|
142
|
+
validatorAddress: Uint8Array;
|
|
143
|
+
height: Long;
|
|
144
|
+
voteExtension: Uint8Array;
|
|
145
|
+
}
|
|
146
|
+
export interface RequestFinalizeBlock {
|
|
147
|
+
txs: Uint8Array[];
|
|
148
|
+
decidedLastCommit?: CommitInfo;
|
|
149
|
+
misbehavior: Misbehavior[];
|
|
150
|
+
/** hash is the merkle root hash of the fields of the decided block. */
|
|
151
|
+
hash: Uint8Array;
|
|
152
|
+
height: Long;
|
|
153
|
+
time?: Date;
|
|
154
|
+
nextValidatorsHash: Uint8Array;
|
|
155
|
+
/** proposer_address is the address of the public key of the original proposer of the block. */
|
|
156
|
+
proposerAddress: Uint8Array;
|
|
157
|
+
}
|
|
158
|
+
export interface Response {
|
|
159
|
+
exception?: ResponseException | undefined;
|
|
160
|
+
echo?: ResponseEcho | undefined;
|
|
161
|
+
flush?: ResponseFlush | undefined;
|
|
162
|
+
info?: ResponseInfo | undefined;
|
|
163
|
+
initChain?: ResponseInitChain | undefined;
|
|
164
|
+
query?: ResponseQuery | undefined;
|
|
165
|
+
checkTx?: ResponseCheckTx | undefined;
|
|
166
|
+
commit?: ResponseCommit | undefined;
|
|
167
|
+
listSnapshots?: ResponseListSnapshots | undefined;
|
|
168
|
+
offerSnapshot?: ResponseOfferSnapshot | undefined;
|
|
169
|
+
loadSnapshotChunk?: ResponseLoadSnapshotChunk | undefined;
|
|
170
|
+
applySnapshotChunk?: ResponseApplySnapshotChunk | undefined;
|
|
171
|
+
prepareProposal?: ResponsePrepareProposal | undefined;
|
|
172
|
+
processProposal?: ResponseProcessProposal | undefined;
|
|
173
|
+
extendVote?: ResponseExtendVote | undefined;
|
|
174
|
+
verifyVoteExtension?: ResponseVerifyVoteExtension | undefined;
|
|
175
|
+
finalizeBlock?: ResponseFinalizeBlock | undefined;
|
|
176
|
+
}
|
|
177
|
+
/** nondeterministic */
|
|
178
|
+
export interface ResponseException {
|
|
179
|
+
error: string;
|
|
180
|
+
}
|
|
181
|
+
export interface ResponseEcho {
|
|
182
|
+
message: string;
|
|
183
|
+
}
|
|
184
|
+
export interface ResponseFlush {
|
|
185
|
+
}
|
|
186
|
+
export interface ResponseInfo {
|
|
187
|
+
data: string;
|
|
188
|
+
version: string;
|
|
189
|
+
appVersion: Long;
|
|
190
|
+
lastBlockHeight: Long;
|
|
191
|
+
lastBlockAppHash: Uint8Array;
|
|
192
|
+
}
|
|
193
|
+
export interface ResponseInitChain {
|
|
194
|
+
consensusParams?: ConsensusParams;
|
|
195
|
+
validators: ValidatorUpdate[];
|
|
196
|
+
appHash: Uint8Array;
|
|
197
|
+
}
|
|
198
|
+
export interface ResponseQuery {
|
|
199
|
+
code: number;
|
|
200
|
+
/** bytes data = 2; // use "value" instead. */
|
|
201
|
+
log: string;
|
|
202
|
+
/** nondeterministic */
|
|
203
|
+
info: string;
|
|
204
|
+
index: Long;
|
|
205
|
+
key: Uint8Array;
|
|
206
|
+
value: Uint8Array;
|
|
207
|
+
proofOps?: ProofOps;
|
|
208
|
+
height: Long;
|
|
209
|
+
codespace: string;
|
|
210
|
+
}
|
|
211
|
+
export interface ResponseCheckTx {
|
|
212
|
+
code: number;
|
|
213
|
+
data: Uint8Array;
|
|
214
|
+
/** nondeterministic */
|
|
215
|
+
log: string;
|
|
216
|
+
/** nondeterministic */
|
|
217
|
+
info: string;
|
|
218
|
+
gasWanted: Long;
|
|
219
|
+
gasUsed: Long;
|
|
220
|
+
events: Event[];
|
|
221
|
+
codespace: string;
|
|
222
|
+
}
|
|
223
|
+
export interface ResponseCommit {
|
|
224
|
+
retainHeight: Long;
|
|
225
|
+
}
|
|
226
|
+
export interface ResponseListSnapshots {
|
|
227
|
+
snapshots: Snapshot[];
|
|
228
|
+
}
|
|
229
|
+
export interface ResponseOfferSnapshot {
|
|
230
|
+
result: ResponseOfferSnapshot_Result;
|
|
231
|
+
}
|
|
232
|
+
export declare enum ResponseOfferSnapshot_Result {
|
|
233
|
+
/** UNKNOWN - Unknown result, abort all snapshot restoration */
|
|
234
|
+
UNKNOWN = 0,
|
|
235
|
+
/** ACCEPT - Snapshot accepted, apply chunks */
|
|
236
|
+
ACCEPT = 1,
|
|
237
|
+
/** ABORT - Abort all snapshot restoration */
|
|
238
|
+
ABORT = 2,
|
|
239
|
+
/** REJECT - Reject this specific snapshot, try others */
|
|
240
|
+
REJECT = 3,
|
|
241
|
+
/** REJECT_FORMAT - Reject all snapshots of this format, try others */
|
|
242
|
+
REJECT_FORMAT = 4,
|
|
243
|
+
/** REJECT_SENDER - Reject all snapshots from the sender(s), try others */
|
|
244
|
+
REJECT_SENDER = 5,
|
|
245
|
+
UNRECOGNIZED = -1
|
|
246
|
+
}
|
|
247
|
+
export declare function responseOfferSnapshot_ResultFromJSON(object: any): ResponseOfferSnapshot_Result;
|
|
248
|
+
export declare function responseOfferSnapshot_ResultToJSON(object: ResponseOfferSnapshot_Result): string;
|
|
249
|
+
export interface ResponseLoadSnapshotChunk {
|
|
250
|
+
chunk: Uint8Array;
|
|
251
|
+
}
|
|
252
|
+
export interface ResponseApplySnapshotChunk {
|
|
253
|
+
result: ResponseApplySnapshotChunk_Result;
|
|
254
|
+
/** Chunks to refetch and reapply */
|
|
255
|
+
refetchChunks: number[];
|
|
256
|
+
/** Chunk senders to reject and ban */
|
|
257
|
+
rejectSenders: string[];
|
|
258
|
+
}
|
|
259
|
+
export declare enum ResponseApplySnapshotChunk_Result {
|
|
260
|
+
/** UNKNOWN - Unknown result, abort all snapshot restoration */
|
|
261
|
+
UNKNOWN = 0,
|
|
262
|
+
/** ACCEPT - Chunk successfully accepted */
|
|
263
|
+
ACCEPT = 1,
|
|
264
|
+
/** ABORT - Abort all snapshot restoration */
|
|
265
|
+
ABORT = 2,
|
|
266
|
+
/** RETRY - Retry chunk (combine with refetch and reject) */
|
|
267
|
+
RETRY = 3,
|
|
268
|
+
/** RETRY_SNAPSHOT - Retry snapshot (combine with refetch and reject) */
|
|
269
|
+
RETRY_SNAPSHOT = 4,
|
|
270
|
+
/** REJECT_SNAPSHOT - Reject this snapshot, try others */
|
|
271
|
+
REJECT_SNAPSHOT = 5,
|
|
272
|
+
UNRECOGNIZED = -1
|
|
273
|
+
}
|
|
274
|
+
export declare function responseApplySnapshotChunk_ResultFromJSON(object: any): ResponseApplySnapshotChunk_Result;
|
|
275
|
+
export declare function responseApplySnapshotChunk_ResultToJSON(object: ResponseApplySnapshotChunk_Result): string;
|
|
276
|
+
export interface ResponsePrepareProposal {
|
|
277
|
+
txs: Uint8Array[];
|
|
278
|
+
}
|
|
279
|
+
export interface ResponseProcessProposal {
|
|
280
|
+
status: ResponseProcessProposal_ProposalStatus;
|
|
281
|
+
}
|
|
282
|
+
export declare enum ResponseProcessProposal_ProposalStatus {
|
|
283
|
+
UNKNOWN = 0,
|
|
284
|
+
ACCEPT = 1,
|
|
285
|
+
REJECT = 2,
|
|
286
|
+
UNRECOGNIZED = -1
|
|
287
|
+
}
|
|
288
|
+
export declare function responseProcessProposal_ProposalStatusFromJSON(object: any): ResponseProcessProposal_ProposalStatus;
|
|
289
|
+
export declare function responseProcessProposal_ProposalStatusToJSON(object: ResponseProcessProposal_ProposalStatus): string;
|
|
290
|
+
export interface ResponseExtendVote {
|
|
291
|
+
voteExtension: Uint8Array;
|
|
292
|
+
}
|
|
293
|
+
export interface ResponseVerifyVoteExtension {
|
|
294
|
+
status: ResponseVerifyVoteExtension_VerifyStatus;
|
|
295
|
+
}
|
|
296
|
+
export declare enum ResponseVerifyVoteExtension_VerifyStatus {
|
|
297
|
+
UNKNOWN = 0,
|
|
298
|
+
ACCEPT = 1,
|
|
299
|
+
/**
|
|
300
|
+
* REJECT - Rejecting the vote extension will reject the entire precommit by the sender.
|
|
301
|
+
* Incorrectly implementing this thus has liveness implications as it may affect
|
|
302
|
+
* CometBFT's ability to receive 2/3+ valid votes to finalize the block.
|
|
303
|
+
* Honest nodes should never be rejected.
|
|
304
|
+
*/
|
|
305
|
+
REJECT = 2,
|
|
306
|
+
UNRECOGNIZED = -1
|
|
307
|
+
}
|
|
308
|
+
export declare function responseVerifyVoteExtension_VerifyStatusFromJSON(object: any): ResponseVerifyVoteExtension_VerifyStatus;
|
|
309
|
+
export declare function responseVerifyVoteExtension_VerifyStatusToJSON(object: ResponseVerifyVoteExtension_VerifyStatus): string;
|
|
310
|
+
export interface ResponseFinalizeBlock {
|
|
311
|
+
/** set of block events emmitted as part of executing the block */
|
|
312
|
+
events: Event[];
|
|
313
|
+
/**
|
|
314
|
+
* the result of executing each transaction including the events
|
|
315
|
+
* the particular transction emitted. This should match the order
|
|
316
|
+
* of the transactions delivered in the block itself
|
|
317
|
+
*/
|
|
318
|
+
txResults: ExecTxResult[];
|
|
319
|
+
/** a list of updates to the validator set. These will reflect the validator set at current height + 2. */
|
|
320
|
+
validatorUpdates: ValidatorUpdate[];
|
|
321
|
+
/** updates to the consensus params, if any. */
|
|
322
|
+
consensusParamUpdates?: ConsensusParams;
|
|
323
|
+
/**
|
|
324
|
+
* app_hash is the hash of the applications' state which is used to confirm that execution of the transactions was
|
|
325
|
+
* deterministic. It is up to the application to decide which algorithm to use.
|
|
326
|
+
*/
|
|
327
|
+
appHash: Uint8Array;
|
|
328
|
+
}
|
|
329
|
+
export interface CommitInfo {
|
|
330
|
+
round: number;
|
|
331
|
+
votes: VoteInfo[];
|
|
332
|
+
}
|
|
333
|
+
/**
|
|
334
|
+
* ExtendedCommitInfo is similar to CommitInfo except that it is only used in
|
|
335
|
+
* the PrepareProposal request such that CometBFT can provide vote extensions
|
|
336
|
+
* to the application.
|
|
337
|
+
*/
|
|
338
|
+
export interface ExtendedCommitInfo {
|
|
339
|
+
/** The round at which the block proposer decided in the previous height. */
|
|
340
|
+
round: number;
|
|
341
|
+
/**
|
|
342
|
+
* List of validators' addresses in the last validator set with their voting
|
|
343
|
+
* information, including vote extensions.
|
|
344
|
+
*/
|
|
345
|
+
votes: ExtendedVoteInfo[];
|
|
346
|
+
}
|
|
347
|
+
/**
|
|
348
|
+
* Event allows application developers to attach additional information to
|
|
349
|
+
* ResponseFinalizeBlock and ResponseCheckTx.
|
|
350
|
+
* Later, transactions may be queried using these events.
|
|
351
|
+
*/
|
|
352
|
+
export interface Event {
|
|
353
|
+
type: string;
|
|
354
|
+
attributes: EventAttribute[];
|
|
355
|
+
}
|
|
356
|
+
/** EventAttribute is a single key-value pair, associated with an event. */
|
|
357
|
+
export interface EventAttribute {
|
|
358
|
+
key: string;
|
|
359
|
+
value: string;
|
|
360
|
+
/** nondeterministic */
|
|
361
|
+
index: boolean;
|
|
362
|
+
}
|
|
363
|
+
/**
|
|
364
|
+
* ExecTxResult contains results of executing one individual transaction.
|
|
365
|
+
*
|
|
366
|
+
* * Its structure is equivalent to #ResponseDeliverTx which will be deprecated/deleted
|
|
367
|
+
*/
|
|
368
|
+
export interface ExecTxResult {
|
|
369
|
+
code: number;
|
|
370
|
+
data: Uint8Array;
|
|
371
|
+
/** nondeterministic */
|
|
372
|
+
log: string;
|
|
373
|
+
/** nondeterministic */
|
|
374
|
+
info: string;
|
|
375
|
+
gasWanted: Long;
|
|
376
|
+
gasUsed: Long;
|
|
377
|
+
/** nondeterministic */
|
|
378
|
+
events: Event[];
|
|
379
|
+
codespace: string;
|
|
380
|
+
}
|
|
381
|
+
/**
|
|
382
|
+
* TxResult contains results of executing the transaction.
|
|
383
|
+
*
|
|
384
|
+
* One usage is indexing transaction results.
|
|
385
|
+
*/
|
|
386
|
+
export interface TxResult {
|
|
387
|
+
height: Long;
|
|
388
|
+
index: number;
|
|
389
|
+
tx: Uint8Array;
|
|
390
|
+
result?: ExecTxResult;
|
|
391
|
+
}
|
|
392
|
+
export interface Validator {
|
|
393
|
+
/** The first 20 bytes of SHA256(public key) */
|
|
394
|
+
address: Uint8Array;
|
|
395
|
+
/** PubKey pub_key = 2 [(gogoproto.nullable)=false]; */
|
|
396
|
+
power: Long;
|
|
397
|
+
}
|
|
398
|
+
export interface ValidatorUpdate {
|
|
399
|
+
pubKey?: PublicKey;
|
|
400
|
+
power: Long;
|
|
401
|
+
}
|
|
402
|
+
export interface VoteInfo {
|
|
403
|
+
validator?: Validator;
|
|
404
|
+
blockIdFlag: BlockIDFlag;
|
|
405
|
+
}
|
|
406
|
+
export interface ExtendedVoteInfo {
|
|
407
|
+
/** The validator that sent the vote. */
|
|
408
|
+
validator?: Validator;
|
|
409
|
+
/** Non-deterministic extension provided by the sending validator's application. */
|
|
410
|
+
voteExtension: Uint8Array;
|
|
411
|
+
/** Vote extension signature created by CometBFT */
|
|
412
|
+
extensionSignature: Uint8Array;
|
|
413
|
+
/** block_id_flag indicates whether the validator voted for a block, nil, or did not vote at all */
|
|
414
|
+
blockIdFlag: BlockIDFlag;
|
|
415
|
+
}
|
|
416
|
+
export interface Misbehavior {
|
|
417
|
+
type: MisbehaviorType;
|
|
418
|
+
/** The offending validator */
|
|
419
|
+
validator?: Validator;
|
|
420
|
+
/** The height when the offense occurred */
|
|
421
|
+
height: Long;
|
|
422
|
+
/** The corresponding time where the offense occurred */
|
|
423
|
+
time?: Date;
|
|
424
|
+
/**
|
|
425
|
+
* Total voting power of the validator set in case the ABCI application does
|
|
426
|
+
* not store historical validators.
|
|
427
|
+
* https://github.com/tendermint/tendermint/issues/4581
|
|
428
|
+
*/
|
|
429
|
+
totalVotingPower: Long;
|
|
430
|
+
}
|
|
431
|
+
export interface Snapshot {
|
|
432
|
+
/** The height at which the snapshot was taken */
|
|
433
|
+
height: Long;
|
|
434
|
+
/** The application-specific snapshot format */
|
|
435
|
+
format: number;
|
|
436
|
+
/** Number of chunks in the snapshot */
|
|
437
|
+
chunks: number;
|
|
438
|
+
/** Arbitrary snapshot hash, equal only if identical */
|
|
439
|
+
hash: Uint8Array;
|
|
440
|
+
/** Arbitrary application metadata */
|
|
441
|
+
metadata: Uint8Array;
|
|
442
|
+
}
|
|
443
|
+
export declare const Request: {
|
|
444
|
+
encode(message: Request, writer?: _m0.Writer): _m0.Writer;
|
|
445
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): Request;
|
|
446
|
+
fromJSON(object: any): Request;
|
|
447
|
+
toJSON(message: Request): unknown;
|
|
448
|
+
create(base?: DeepPartial<Request>): Request;
|
|
449
|
+
fromPartial(object: DeepPartial<Request>): Request;
|
|
450
|
+
};
|
|
451
|
+
export declare const RequestEcho: {
|
|
452
|
+
encode(message: RequestEcho, writer?: _m0.Writer): _m0.Writer;
|
|
453
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RequestEcho;
|
|
454
|
+
fromJSON(object: any): RequestEcho;
|
|
455
|
+
toJSON(message: RequestEcho): unknown;
|
|
456
|
+
create(base?: DeepPartial<RequestEcho>): RequestEcho;
|
|
457
|
+
fromPartial(object: DeepPartial<RequestEcho>): RequestEcho;
|
|
458
|
+
};
|
|
459
|
+
export declare const RequestFlush: {
|
|
460
|
+
encode(_: RequestFlush, writer?: _m0.Writer): _m0.Writer;
|
|
461
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RequestFlush;
|
|
462
|
+
fromJSON(_: any): RequestFlush;
|
|
463
|
+
toJSON(_: RequestFlush): unknown;
|
|
464
|
+
create(base?: DeepPartial<RequestFlush>): RequestFlush;
|
|
465
|
+
fromPartial(_: DeepPartial<RequestFlush>): RequestFlush;
|
|
466
|
+
};
|
|
467
|
+
export declare const RequestInfo: {
|
|
468
|
+
encode(message: RequestInfo, writer?: _m0.Writer): _m0.Writer;
|
|
469
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RequestInfo;
|
|
470
|
+
fromJSON(object: any): RequestInfo;
|
|
471
|
+
toJSON(message: RequestInfo): unknown;
|
|
472
|
+
create(base?: DeepPartial<RequestInfo>): RequestInfo;
|
|
473
|
+
fromPartial(object: DeepPartial<RequestInfo>): RequestInfo;
|
|
474
|
+
};
|
|
475
|
+
export declare const RequestInitChain: {
|
|
476
|
+
encode(message: RequestInitChain, writer?: _m0.Writer): _m0.Writer;
|
|
477
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RequestInitChain;
|
|
478
|
+
fromJSON(object: any): RequestInitChain;
|
|
479
|
+
toJSON(message: RequestInitChain): unknown;
|
|
480
|
+
create(base?: DeepPartial<RequestInitChain>): RequestInitChain;
|
|
481
|
+
fromPartial(object: DeepPartial<RequestInitChain>): RequestInitChain;
|
|
482
|
+
};
|
|
483
|
+
export declare const RequestQuery: {
|
|
484
|
+
encode(message: RequestQuery, writer?: _m0.Writer): _m0.Writer;
|
|
485
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RequestQuery;
|
|
486
|
+
fromJSON(object: any): RequestQuery;
|
|
487
|
+
toJSON(message: RequestQuery): unknown;
|
|
488
|
+
create(base?: DeepPartial<RequestQuery>): RequestQuery;
|
|
489
|
+
fromPartial(object: DeepPartial<RequestQuery>): RequestQuery;
|
|
490
|
+
};
|
|
491
|
+
export declare const RequestCheckTx: {
|
|
492
|
+
encode(message: RequestCheckTx, writer?: _m0.Writer): _m0.Writer;
|
|
493
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RequestCheckTx;
|
|
494
|
+
fromJSON(object: any): RequestCheckTx;
|
|
495
|
+
toJSON(message: RequestCheckTx): unknown;
|
|
496
|
+
create(base?: DeepPartial<RequestCheckTx>): RequestCheckTx;
|
|
497
|
+
fromPartial(object: DeepPartial<RequestCheckTx>): RequestCheckTx;
|
|
498
|
+
};
|
|
499
|
+
export declare const RequestCommit: {
|
|
500
|
+
encode(_: RequestCommit, writer?: _m0.Writer): _m0.Writer;
|
|
501
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RequestCommit;
|
|
502
|
+
fromJSON(_: any): RequestCommit;
|
|
503
|
+
toJSON(_: RequestCommit): unknown;
|
|
504
|
+
create(base?: DeepPartial<RequestCommit>): RequestCommit;
|
|
505
|
+
fromPartial(_: DeepPartial<RequestCommit>): RequestCommit;
|
|
506
|
+
};
|
|
507
|
+
export declare const RequestListSnapshots: {
|
|
508
|
+
encode(_: RequestListSnapshots, writer?: _m0.Writer): _m0.Writer;
|
|
509
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RequestListSnapshots;
|
|
510
|
+
fromJSON(_: any): RequestListSnapshots;
|
|
511
|
+
toJSON(_: RequestListSnapshots): unknown;
|
|
512
|
+
create(base?: DeepPartial<RequestListSnapshots>): RequestListSnapshots;
|
|
513
|
+
fromPartial(_: DeepPartial<RequestListSnapshots>): RequestListSnapshots;
|
|
514
|
+
};
|
|
515
|
+
export declare const RequestOfferSnapshot: {
|
|
516
|
+
encode(message: RequestOfferSnapshot, writer?: _m0.Writer): _m0.Writer;
|
|
517
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RequestOfferSnapshot;
|
|
518
|
+
fromJSON(object: any): RequestOfferSnapshot;
|
|
519
|
+
toJSON(message: RequestOfferSnapshot): unknown;
|
|
520
|
+
create(base?: DeepPartial<RequestOfferSnapshot>): RequestOfferSnapshot;
|
|
521
|
+
fromPartial(object: DeepPartial<RequestOfferSnapshot>): RequestOfferSnapshot;
|
|
522
|
+
};
|
|
523
|
+
export declare const RequestLoadSnapshotChunk: {
|
|
524
|
+
encode(message: RequestLoadSnapshotChunk, writer?: _m0.Writer): _m0.Writer;
|
|
525
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RequestLoadSnapshotChunk;
|
|
526
|
+
fromJSON(object: any): RequestLoadSnapshotChunk;
|
|
527
|
+
toJSON(message: RequestLoadSnapshotChunk): unknown;
|
|
528
|
+
create(base?: DeepPartial<RequestLoadSnapshotChunk>): RequestLoadSnapshotChunk;
|
|
529
|
+
fromPartial(object: DeepPartial<RequestLoadSnapshotChunk>): RequestLoadSnapshotChunk;
|
|
530
|
+
};
|
|
531
|
+
export declare const RequestApplySnapshotChunk: {
|
|
532
|
+
encode(message: RequestApplySnapshotChunk, writer?: _m0.Writer): _m0.Writer;
|
|
533
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RequestApplySnapshotChunk;
|
|
534
|
+
fromJSON(object: any): RequestApplySnapshotChunk;
|
|
535
|
+
toJSON(message: RequestApplySnapshotChunk): unknown;
|
|
536
|
+
create(base?: DeepPartial<RequestApplySnapshotChunk>): RequestApplySnapshotChunk;
|
|
537
|
+
fromPartial(object: DeepPartial<RequestApplySnapshotChunk>): RequestApplySnapshotChunk;
|
|
538
|
+
};
|
|
539
|
+
export declare const RequestPrepareProposal: {
|
|
540
|
+
encode(message: RequestPrepareProposal, writer?: _m0.Writer): _m0.Writer;
|
|
541
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RequestPrepareProposal;
|
|
542
|
+
fromJSON(object: any): RequestPrepareProposal;
|
|
543
|
+
toJSON(message: RequestPrepareProposal): unknown;
|
|
544
|
+
create(base?: DeepPartial<RequestPrepareProposal>): RequestPrepareProposal;
|
|
545
|
+
fromPartial(object: DeepPartial<RequestPrepareProposal>): RequestPrepareProposal;
|
|
546
|
+
};
|
|
547
|
+
export declare const RequestProcessProposal: {
|
|
548
|
+
encode(message: RequestProcessProposal, writer?: _m0.Writer): _m0.Writer;
|
|
549
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RequestProcessProposal;
|
|
550
|
+
fromJSON(object: any): RequestProcessProposal;
|
|
551
|
+
toJSON(message: RequestProcessProposal): unknown;
|
|
552
|
+
create(base?: DeepPartial<RequestProcessProposal>): RequestProcessProposal;
|
|
553
|
+
fromPartial(object: DeepPartial<RequestProcessProposal>): RequestProcessProposal;
|
|
554
|
+
};
|
|
555
|
+
export declare const RequestExtendVote: {
|
|
556
|
+
encode(message: RequestExtendVote, writer?: _m0.Writer): _m0.Writer;
|
|
557
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RequestExtendVote;
|
|
558
|
+
fromJSON(object: any): RequestExtendVote;
|
|
559
|
+
toJSON(message: RequestExtendVote): unknown;
|
|
560
|
+
create(base?: DeepPartial<RequestExtendVote>): RequestExtendVote;
|
|
561
|
+
fromPartial(object: DeepPartial<RequestExtendVote>): RequestExtendVote;
|
|
562
|
+
};
|
|
563
|
+
export declare const RequestVerifyVoteExtension: {
|
|
564
|
+
encode(message: RequestVerifyVoteExtension, writer?: _m0.Writer): _m0.Writer;
|
|
565
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RequestVerifyVoteExtension;
|
|
566
|
+
fromJSON(object: any): RequestVerifyVoteExtension;
|
|
567
|
+
toJSON(message: RequestVerifyVoteExtension): unknown;
|
|
568
|
+
create(base?: DeepPartial<RequestVerifyVoteExtension>): RequestVerifyVoteExtension;
|
|
569
|
+
fromPartial(object: DeepPartial<RequestVerifyVoteExtension>): RequestVerifyVoteExtension;
|
|
570
|
+
};
|
|
571
|
+
export declare const RequestFinalizeBlock: {
|
|
572
|
+
encode(message: RequestFinalizeBlock, writer?: _m0.Writer): _m0.Writer;
|
|
573
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): RequestFinalizeBlock;
|
|
574
|
+
fromJSON(object: any): RequestFinalizeBlock;
|
|
575
|
+
toJSON(message: RequestFinalizeBlock): unknown;
|
|
576
|
+
create(base?: DeepPartial<RequestFinalizeBlock>): RequestFinalizeBlock;
|
|
577
|
+
fromPartial(object: DeepPartial<RequestFinalizeBlock>): RequestFinalizeBlock;
|
|
578
|
+
};
|
|
579
|
+
export declare const Response: {
|
|
580
|
+
encode(message: Response, writer?: _m0.Writer): _m0.Writer;
|
|
581
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): Response;
|
|
582
|
+
fromJSON(object: any): Response;
|
|
583
|
+
toJSON(message: Response): unknown;
|
|
584
|
+
create(base?: DeepPartial<Response>): Response;
|
|
585
|
+
fromPartial(object: DeepPartial<Response>): Response;
|
|
586
|
+
};
|
|
587
|
+
export declare const ResponseException: {
|
|
588
|
+
encode(message: ResponseException, writer?: _m0.Writer): _m0.Writer;
|
|
589
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ResponseException;
|
|
590
|
+
fromJSON(object: any): ResponseException;
|
|
591
|
+
toJSON(message: ResponseException): unknown;
|
|
592
|
+
create(base?: DeepPartial<ResponseException>): ResponseException;
|
|
593
|
+
fromPartial(object: DeepPartial<ResponseException>): ResponseException;
|
|
594
|
+
};
|
|
595
|
+
export declare const ResponseEcho: {
|
|
596
|
+
encode(message: ResponseEcho, writer?: _m0.Writer): _m0.Writer;
|
|
597
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ResponseEcho;
|
|
598
|
+
fromJSON(object: any): ResponseEcho;
|
|
599
|
+
toJSON(message: ResponseEcho): unknown;
|
|
600
|
+
create(base?: DeepPartial<ResponseEcho>): ResponseEcho;
|
|
601
|
+
fromPartial(object: DeepPartial<ResponseEcho>): ResponseEcho;
|
|
602
|
+
};
|
|
603
|
+
export declare const ResponseFlush: {
|
|
604
|
+
encode(_: ResponseFlush, writer?: _m0.Writer): _m0.Writer;
|
|
605
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ResponseFlush;
|
|
606
|
+
fromJSON(_: any): ResponseFlush;
|
|
607
|
+
toJSON(_: ResponseFlush): unknown;
|
|
608
|
+
create(base?: DeepPartial<ResponseFlush>): ResponseFlush;
|
|
609
|
+
fromPartial(_: DeepPartial<ResponseFlush>): ResponseFlush;
|
|
610
|
+
};
|
|
611
|
+
export declare const ResponseInfo: {
|
|
612
|
+
encode(message: ResponseInfo, writer?: _m0.Writer): _m0.Writer;
|
|
613
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ResponseInfo;
|
|
614
|
+
fromJSON(object: any): ResponseInfo;
|
|
615
|
+
toJSON(message: ResponseInfo): unknown;
|
|
616
|
+
create(base?: DeepPartial<ResponseInfo>): ResponseInfo;
|
|
617
|
+
fromPartial(object: DeepPartial<ResponseInfo>): ResponseInfo;
|
|
618
|
+
};
|
|
619
|
+
export declare const ResponseInitChain: {
|
|
620
|
+
encode(message: ResponseInitChain, writer?: _m0.Writer): _m0.Writer;
|
|
621
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ResponseInitChain;
|
|
622
|
+
fromJSON(object: any): ResponseInitChain;
|
|
623
|
+
toJSON(message: ResponseInitChain): unknown;
|
|
624
|
+
create(base?: DeepPartial<ResponseInitChain>): ResponseInitChain;
|
|
625
|
+
fromPartial(object: DeepPartial<ResponseInitChain>): ResponseInitChain;
|
|
626
|
+
};
|
|
627
|
+
export declare const ResponseQuery: {
|
|
628
|
+
encode(message: ResponseQuery, writer?: _m0.Writer): _m0.Writer;
|
|
629
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ResponseQuery;
|
|
630
|
+
fromJSON(object: any): ResponseQuery;
|
|
631
|
+
toJSON(message: ResponseQuery): unknown;
|
|
632
|
+
create(base?: DeepPartial<ResponseQuery>): ResponseQuery;
|
|
633
|
+
fromPartial(object: DeepPartial<ResponseQuery>): ResponseQuery;
|
|
634
|
+
};
|
|
635
|
+
export declare const ResponseCheckTx: {
|
|
636
|
+
encode(message: ResponseCheckTx, writer?: _m0.Writer): _m0.Writer;
|
|
637
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ResponseCheckTx;
|
|
638
|
+
fromJSON(object: any): ResponseCheckTx;
|
|
639
|
+
toJSON(message: ResponseCheckTx): unknown;
|
|
640
|
+
create(base?: DeepPartial<ResponseCheckTx>): ResponseCheckTx;
|
|
641
|
+
fromPartial(object: DeepPartial<ResponseCheckTx>): ResponseCheckTx;
|
|
642
|
+
};
|
|
643
|
+
export declare const ResponseCommit: {
|
|
644
|
+
encode(message: ResponseCommit, writer?: _m0.Writer): _m0.Writer;
|
|
645
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ResponseCommit;
|
|
646
|
+
fromJSON(object: any): ResponseCommit;
|
|
647
|
+
toJSON(message: ResponseCommit): unknown;
|
|
648
|
+
create(base?: DeepPartial<ResponseCommit>): ResponseCommit;
|
|
649
|
+
fromPartial(object: DeepPartial<ResponseCommit>): ResponseCommit;
|
|
650
|
+
};
|
|
651
|
+
export declare const ResponseListSnapshots: {
|
|
652
|
+
encode(message: ResponseListSnapshots, writer?: _m0.Writer): _m0.Writer;
|
|
653
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ResponseListSnapshots;
|
|
654
|
+
fromJSON(object: any): ResponseListSnapshots;
|
|
655
|
+
toJSON(message: ResponseListSnapshots): unknown;
|
|
656
|
+
create(base?: DeepPartial<ResponseListSnapshots>): ResponseListSnapshots;
|
|
657
|
+
fromPartial(object: DeepPartial<ResponseListSnapshots>): ResponseListSnapshots;
|
|
658
|
+
};
|
|
659
|
+
export declare const ResponseOfferSnapshot: {
|
|
660
|
+
encode(message: ResponseOfferSnapshot, writer?: _m0.Writer): _m0.Writer;
|
|
661
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ResponseOfferSnapshot;
|
|
662
|
+
fromJSON(object: any): ResponseOfferSnapshot;
|
|
663
|
+
toJSON(message: ResponseOfferSnapshot): unknown;
|
|
664
|
+
create(base?: DeepPartial<ResponseOfferSnapshot>): ResponseOfferSnapshot;
|
|
665
|
+
fromPartial(object: DeepPartial<ResponseOfferSnapshot>): ResponseOfferSnapshot;
|
|
666
|
+
};
|
|
667
|
+
export declare const ResponseLoadSnapshotChunk: {
|
|
668
|
+
encode(message: ResponseLoadSnapshotChunk, writer?: _m0.Writer): _m0.Writer;
|
|
669
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ResponseLoadSnapshotChunk;
|
|
670
|
+
fromJSON(object: any): ResponseLoadSnapshotChunk;
|
|
671
|
+
toJSON(message: ResponseLoadSnapshotChunk): unknown;
|
|
672
|
+
create(base?: DeepPartial<ResponseLoadSnapshotChunk>): ResponseLoadSnapshotChunk;
|
|
673
|
+
fromPartial(object: DeepPartial<ResponseLoadSnapshotChunk>): ResponseLoadSnapshotChunk;
|
|
674
|
+
};
|
|
675
|
+
export declare const ResponseApplySnapshotChunk: {
|
|
676
|
+
encode(message: ResponseApplySnapshotChunk, writer?: _m0.Writer): _m0.Writer;
|
|
677
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ResponseApplySnapshotChunk;
|
|
678
|
+
fromJSON(object: any): ResponseApplySnapshotChunk;
|
|
679
|
+
toJSON(message: ResponseApplySnapshotChunk): unknown;
|
|
680
|
+
create(base?: DeepPartial<ResponseApplySnapshotChunk>): ResponseApplySnapshotChunk;
|
|
681
|
+
fromPartial(object: DeepPartial<ResponseApplySnapshotChunk>): ResponseApplySnapshotChunk;
|
|
682
|
+
};
|
|
683
|
+
export declare const ResponsePrepareProposal: {
|
|
684
|
+
encode(message: ResponsePrepareProposal, writer?: _m0.Writer): _m0.Writer;
|
|
685
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ResponsePrepareProposal;
|
|
686
|
+
fromJSON(object: any): ResponsePrepareProposal;
|
|
687
|
+
toJSON(message: ResponsePrepareProposal): unknown;
|
|
688
|
+
create(base?: DeepPartial<ResponsePrepareProposal>): ResponsePrepareProposal;
|
|
689
|
+
fromPartial(object: DeepPartial<ResponsePrepareProposal>): ResponsePrepareProposal;
|
|
690
|
+
};
|
|
691
|
+
export declare const ResponseProcessProposal: {
|
|
692
|
+
encode(message: ResponseProcessProposal, writer?: _m0.Writer): _m0.Writer;
|
|
693
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ResponseProcessProposal;
|
|
694
|
+
fromJSON(object: any): ResponseProcessProposal;
|
|
695
|
+
toJSON(message: ResponseProcessProposal): unknown;
|
|
696
|
+
create(base?: DeepPartial<ResponseProcessProposal>): ResponseProcessProposal;
|
|
697
|
+
fromPartial(object: DeepPartial<ResponseProcessProposal>): ResponseProcessProposal;
|
|
698
|
+
};
|
|
699
|
+
export declare const ResponseExtendVote: {
|
|
700
|
+
encode(message: ResponseExtendVote, writer?: _m0.Writer): _m0.Writer;
|
|
701
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ResponseExtendVote;
|
|
702
|
+
fromJSON(object: any): ResponseExtendVote;
|
|
703
|
+
toJSON(message: ResponseExtendVote): unknown;
|
|
704
|
+
create(base?: DeepPartial<ResponseExtendVote>): ResponseExtendVote;
|
|
705
|
+
fromPartial(object: DeepPartial<ResponseExtendVote>): ResponseExtendVote;
|
|
706
|
+
};
|
|
707
|
+
export declare const ResponseVerifyVoteExtension: {
|
|
708
|
+
encode(message: ResponseVerifyVoteExtension, writer?: _m0.Writer): _m0.Writer;
|
|
709
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ResponseVerifyVoteExtension;
|
|
710
|
+
fromJSON(object: any): ResponseVerifyVoteExtension;
|
|
711
|
+
toJSON(message: ResponseVerifyVoteExtension): unknown;
|
|
712
|
+
create(base?: DeepPartial<ResponseVerifyVoteExtension>): ResponseVerifyVoteExtension;
|
|
713
|
+
fromPartial(object: DeepPartial<ResponseVerifyVoteExtension>): ResponseVerifyVoteExtension;
|
|
714
|
+
};
|
|
715
|
+
export declare const ResponseFinalizeBlock: {
|
|
716
|
+
encode(message: ResponseFinalizeBlock, writer?: _m0.Writer): _m0.Writer;
|
|
717
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ResponseFinalizeBlock;
|
|
718
|
+
fromJSON(object: any): ResponseFinalizeBlock;
|
|
719
|
+
toJSON(message: ResponseFinalizeBlock): unknown;
|
|
720
|
+
create(base?: DeepPartial<ResponseFinalizeBlock>): ResponseFinalizeBlock;
|
|
721
|
+
fromPartial(object: DeepPartial<ResponseFinalizeBlock>): ResponseFinalizeBlock;
|
|
722
|
+
};
|
|
723
|
+
export declare const CommitInfo: {
|
|
724
|
+
encode(message: CommitInfo, writer?: _m0.Writer): _m0.Writer;
|
|
725
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): CommitInfo;
|
|
726
|
+
fromJSON(object: any): CommitInfo;
|
|
727
|
+
toJSON(message: CommitInfo): unknown;
|
|
728
|
+
create(base?: DeepPartial<CommitInfo>): CommitInfo;
|
|
729
|
+
fromPartial(object: DeepPartial<CommitInfo>): CommitInfo;
|
|
730
|
+
};
|
|
731
|
+
export declare const ExtendedCommitInfo: {
|
|
732
|
+
encode(message: ExtendedCommitInfo, writer?: _m0.Writer): _m0.Writer;
|
|
733
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ExtendedCommitInfo;
|
|
734
|
+
fromJSON(object: any): ExtendedCommitInfo;
|
|
735
|
+
toJSON(message: ExtendedCommitInfo): unknown;
|
|
736
|
+
create(base?: DeepPartial<ExtendedCommitInfo>): ExtendedCommitInfo;
|
|
737
|
+
fromPartial(object: DeepPartial<ExtendedCommitInfo>): ExtendedCommitInfo;
|
|
738
|
+
};
|
|
739
|
+
export declare const Event: {
|
|
740
|
+
encode(message: Event, writer?: _m0.Writer): _m0.Writer;
|
|
741
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): Event;
|
|
742
|
+
fromJSON(object: any): Event;
|
|
743
|
+
toJSON(message: Event): unknown;
|
|
744
|
+
create(base?: DeepPartial<Event>): Event;
|
|
745
|
+
fromPartial(object: DeepPartial<Event>): Event;
|
|
746
|
+
};
|
|
747
|
+
export declare const EventAttribute: {
|
|
748
|
+
encode(message: EventAttribute, writer?: _m0.Writer): _m0.Writer;
|
|
749
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): EventAttribute;
|
|
750
|
+
fromJSON(object: any): EventAttribute;
|
|
751
|
+
toJSON(message: EventAttribute): unknown;
|
|
752
|
+
create(base?: DeepPartial<EventAttribute>): EventAttribute;
|
|
753
|
+
fromPartial(object: DeepPartial<EventAttribute>): EventAttribute;
|
|
754
|
+
};
|
|
755
|
+
export declare const ExecTxResult: {
|
|
756
|
+
encode(message: ExecTxResult, writer?: _m0.Writer): _m0.Writer;
|
|
757
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ExecTxResult;
|
|
758
|
+
fromJSON(object: any): ExecTxResult;
|
|
759
|
+
toJSON(message: ExecTxResult): unknown;
|
|
760
|
+
create(base?: DeepPartial<ExecTxResult>): ExecTxResult;
|
|
761
|
+
fromPartial(object: DeepPartial<ExecTxResult>): ExecTxResult;
|
|
762
|
+
};
|
|
763
|
+
export declare const TxResult: {
|
|
764
|
+
encode(message: TxResult, writer?: _m0.Writer): _m0.Writer;
|
|
765
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): TxResult;
|
|
766
|
+
fromJSON(object: any): TxResult;
|
|
767
|
+
toJSON(message: TxResult): unknown;
|
|
768
|
+
create(base?: DeepPartial<TxResult>): TxResult;
|
|
769
|
+
fromPartial(object: DeepPartial<TxResult>): TxResult;
|
|
770
|
+
};
|
|
771
|
+
export declare const Validator: {
|
|
772
|
+
encode(message: Validator, writer?: _m0.Writer): _m0.Writer;
|
|
773
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): Validator;
|
|
774
|
+
fromJSON(object: any): Validator;
|
|
775
|
+
toJSON(message: Validator): unknown;
|
|
776
|
+
create(base?: DeepPartial<Validator>): Validator;
|
|
777
|
+
fromPartial(object: DeepPartial<Validator>): Validator;
|
|
778
|
+
};
|
|
779
|
+
export declare const ValidatorUpdate: {
|
|
780
|
+
encode(message: ValidatorUpdate, writer?: _m0.Writer): _m0.Writer;
|
|
781
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ValidatorUpdate;
|
|
782
|
+
fromJSON(object: any): ValidatorUpdate;
|
|
783
|
+
toJSON(message: ValidatorUpdate): unknown;
|
|
784
|
+
create(base?: DeepPartial<ValidatorUpdate>): ValidatorUpdate;
|
|
785
|
+
fromPartial(object: DeepPartial<ValidatorUpdate>): ValidatorUpdate;
|
|
786
|
+
};
|
|
787
|
+
export declare const VoteInfo: {
|
|
788
|
+
encode(message: VoteInfo, writer?: _m0.Writer): _m0.Writer;
|
|
789
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): VoteInfo;
|
|
790
|
+
fromJSON(object: any): VoteInfo;
|
|
791
|
+
toJSON(message: VoteInfo): unknown;
|
|
792
|
+
create(base?: DeepPartial<VoteInfo>): VoteInfo;
|
|
793
|
+
fromPartial(object: DeepPartial<VoteInfo>): VoteInfo;
|
|
794
|
+
};
|
|
795
|
+
export declare const ExtendedVoteInfo: {
|
|
796
|
+
encode(message: ExtendedVoteInfo, writer?: _m0.Writer): _m0.Writer;
|
|
797
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): ExtendedVoteInfo;
|
|
798
|
+
fromJSON(object: any): ExtendedVoteInfo;
|
|
799
|
+
toJSON(message: ExtendedVoteInfo): unknown;
|
|
800
|
+
create(base?: DeepPartial<ExtendedVoteInfo>): ExtendedVoteInfo;
|
|
801
|
+
fromPartial(object: DeepPartial<ExtendedVoteInfo>): ExtendedVoteInfo;
|
|
802
|
+
};
|
|
803
|
+
export declare const Misbehavior: {
|
|
804
|
+
encode(message: Misbehavior, writer?: _m0.Writer): _m0.Writer;
|
|
805
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): Misbehavior;
|
|
806
|
+
fromJSON(object: any): Misbehavior;
|
|
807
|
+
toJSON(message: Misbehavior): unknown;
|
|
808
|
+
create(base?: DeepPartial<Misbehavior>): Misbehavior;
|
|
809
|
+
fromPartial(object: DeepPartial<Misbehavior>): Misbehavior;
|
|
810
|
+
};
|
|
811
|
+
export declare const Snapshot: {
|
|
812
|
+
encode(message: Snapshot, writer?: _m0.Writer): _m0.Writer;
|
|
813
|
+
decode(input: _m0.Reader | Uint8Array, length?: number): Snapshot;
|
|
814
|
+
fromJSON(object: any): Snapshot;
|
|
815
|
+
toJSON(message: Snapshot): unknown;
|
|
816
|
+
create(base?: DeepPartial<Snapshot>): Snapshot;
|
|
817
|
+
fromPartial(object: DeepPartial<Snapshot>): Snapshot;
|
|
818
|
+
};
|
|
819
|
+
export interface ABCI {
|
|
820
|
+
Echo(request: RequestEcho): Promise<ResponseEcho>;
|
|
821
|
+
Flush(request: RequestFlush): Promise<ResponseFlush>;
|
|
822
|
+
Info(request: RequestInfo): Promise<ResponseInfo>;
|
|
823
|
+
CheckTx(request: RequestCheckTx): Promise<ResponseCheckTx>;
|
|
824
|
+
Query(request: RequestQuery): Promise<ResponseQuery>;
|
|
825
|
+
Commit(request: RequestCommit): Promise<ResponseCommit>;
|
|
826
|
+
InitChain(request: RequestInitChain): Promise<ResponseInitChain>;
|
|
827
|
+
ListSnapshots(request: RequestListSnapshots): Promise<ResponseListSnapshots>;
|
|
828
|
+
OfferSnapshot(request: RequestOfferSnapshot): Promise<ResponseOfferSnapshot>;
|
|
829
|
+
LoadSnapshotChunk(request: RequestLoadSnapshotChunk): Promise<ResponseLoadSnapshotChunk>;
|
|
830
|
+
ApplySnapshotChunk(request: RequestApplySnapshotChunk): Promise<ResponseApplySnapshotChunk>;
|
|
831
|
+
PrepareProposal(request: RequestPrepareProposal): Promise<ResponsePrepareProposal>;
|
|
832
|
+
ProcessProposal(request: RequestProcessProposal): Promise<ResponseProcessProposal>;
|
|
833
|
+
ExtendVote(request: RequestExtendVote): Promise<ResponseExtendVote>;
|
|
834
|
+
VerifyVoteExtension(request: RequestVerifyVoteExtension): Promise<ResponseVerifyVoteExtension>;
|
|
835
|
+
FinalizeBlock(request: RequestFinalizeBlock): Promise<ResponseFinalizeBlock>;
|
|
836
|
+
}
|
|
837
|
+
export declare class ABCIClientImpl implements ABCI {
|
|
838
|
+
private readonly rpc;
|
|
839
|
+
private readonly service;
|
|
840
|
+
constructor(rpc: Rpc, opts?: {
|
|
841
|
+
service?: string;
|
|
842
|
+
});
|
|
843
|
+
Echo(request: RequestEcho): Promise<ResponseEcho>;
|
|
844
|
+
Flush(request: RequestFlush): Promise<ResponseFlush>;
|
|
845
|
+
Info(request: RequestInfo): Promise<ResponseInfo>;
|
|
846
|
+
CheckTx(request: RequestCheckTx): Promise<ResponseCheckTx>;
|
|
847
|
+
Query(request: RequestQuery): Promise<ResponseQuery>;
|
|
848
|
+
Commit(request: RequestCommit): Promise<ResponseCommit>;
|
|
849
|
+
InitChain(request: RequestInitChain): Promise<ResponseInitChain>;
|
|
850
|
+
ListSnapshots(request: RequestListSnapshots): Promise<ResponseListSnapshots>;
|
|
851
|
+
OfferSnapshot(request: RequestOfferSnapshot): Promise<ResponseOfferSnapshot>;
|
|
852
|
+
LoadSnapshotChunk(request: RequestLoadSnapshotChunk): Promise<ResponseLoadSnapshotChunk>;
|
|
853
|
+
ApplySnapshotChunk(request: RequestApplySnapshotChunk): Promise<ResponseApplySnapshotChunk>;
|
|
854
|
+
PrepareProposal(request: RequestPrepareProposal): Promise<ResponsePrepareProposal>;
|
|
855
|
+
ProcessProposal(request: RequestProcessProposal): Promise<ResponseProcessProposal>;
|
|
856
|
+
ExtendVote(request: RequestExtendVote): Promise<ResponseExtendVote>;
|
|
857
|
+
VerifyVoteExtension(request: RequestVerifyVoteExtension): Promise<ResponseVerifyVoteExtension>;
|
|
858
|
+
FinalizeBlock(request: RequestFinalizeBlock): Promise<ResponseFinalizeBlock>;
|
|
859
|
+
}
|
|
860
|
+
interface Rpc {
|
|
861
|
+
request(service: string, method: string, data: Uint8Array): Promise<Uint8Array>;
|
|
862
|
+
}
|
|
863
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
864
|
+
export type DeepPartial<T> = T extends Builtin ? T : T extends Long ? string | number | Long : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
865
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
866
|
+
} : Partial<T>;
|
|
867
|
+
export {};
|