@sparkdreamnft/sparkdreamjs 0.0.6 → 0.0.7
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/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
- package/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +19 -0
- package/cosmos/auth/module/v1/module.d.ts +72 -12
- package/cosmos/auth/module/v1/module.js +25 -1
- package/cosmos/auth/v1beta1/auth.d.ts +68 -10
- package/cosmos/auth/v1beta1/auth.js +26 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +334 -92
- package/cosmos/auth/v1beta1/query.js +120 -0
- package/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
- package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/cosmos/auth/v1beta1/tx.d.ts +31 -10
- package/cosmos/auth/v1beta1/tx.js +13 -0
- package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +6 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +36 -0
- package/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +13 -8
- package/cosmos/bank/v1beta1/authz.js +7 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -34
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
- package/cosmos/bank/v1beta1/genesis.js +13 -0
- package/cosmos/bank/v1beta1/query.d.ts +599 -138
- package/cosmos/bank/v1beta1/query.js +179 -0
- package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
- package/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
- package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
- package/cosmos/bank/v1beta1/tx.d.ts +143 -30
- package/cosmos/bank/v1beta1/tx.js +53 -0
- package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/benchmark/module/v1/module.d.ts +102 -26
- package/cosmos/benchmark/module/v1/module.js +12 -0
- package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
- package/cosmos/benchmark/v1/benchmark.js +6 -0
- package/cosmos/benchmark/v1/tx.d.ts +36 -4
- package/cosmos/benchmark/v1/tx.js +12 -0
- package/cosmos/bundle.d.ts +2283 -2421
- package/cosmos/bundle.js +242 -261
- package/cosmos/circuit/module/v1/module.d.ts +24 -4
- package/cosmos/circuit/module/v1/module.js +6 -0
- package/cosmos/circuit/v1/query.d.ts +120 -16
- package/cosmos/circuit/v1/query.js +36 -0
- package/cosmos/circuit/v1/tx.d.ts +126 -18
- package/cosmos/circuit/v1/tx.js +36 -0
- package/cosmos/circuit/v1/types.d.ts +55 -6
- package/cosmos/circuit/v1/types.js +19 -0
- package/cosmos/consensus/module/v1/module.d.ts +24 -4
- package/cosmos/consensus/module/v1/module.js +6 -0
- package/cosmos/consensus/v1/query.d.ts +36 -4
- package/cosmos/consensus/v1/query.js +12 -0
- package/cosmos/consensus/v1/tx.d.ts +37 -6
- package/cosmos/consensus/v1/tx.js +13 -0
- package/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/cosmos/counter/module/v1/module.d.ts +24 -4
- package/cosmos/counter/module/v1/module.js +6 -0
- package/cosmos/counter/v1/query.d.ts +36 -4
- package/cosmos/counter/v1/query.js +12 -0
- package/cosmos/counter/v1/tx.d.ts +54 -10
- package/cosmos/counter/v1/tx.js +12 -0
- package/cosmos/crisis/module/v1/module.d.ts +30 -6
- package/cosmos/crisis/module/v1/module.js +6 -0
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/hd/v1/hd.d.ts +42 -10
- package/cosmos/crypto/hd/v1/hd.js +6 -0
- package/cosmos/crypto/keyring/v1/record.d.ts +121 -20
- package/cosmos/crypto/keyring/v1/record.js +31 -0
- package/cosmos/crypto/multisig/keys.d.ts +14 -0
- package/cosmos/crypto/multisig/keys.js +8 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/module/v1/module.d.ts +24 -4
- package/cosmos/distribution/module/v1/module.js +6 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +136 -0
- package/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +5 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/cosmos/distribution/v1beta1/tx.d.ts +199 -34
- package/cosmos/distribution/v1beta1/tx.js +97 -0
- package/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +3 -5
- package/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/cosmos/epochs/module/v1/module.d.ts +18 -2
- package/cosmos/epochs/module/v1/module.js +6 -0
- package/cosmos/epochs/v1beta1/events.d.ts +36 -4
- package/cosmos/epochs/v1beta1/events.js +12 -0
- package/cosmos/epochs/v1beta1/genesis.d.ts +37 -4
- package/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/cosmos/epochs/v1beta1/query.d.ts +52 -0
- package/cosmos/epochs/v1beta1/query.js +28 -0
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/feegrant/module/v1/module.d.ts +18 -2
- package/cosmos/feegrant/module/v1/module.js +6 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
- package/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +150 -34
- package/cosmos/feegrant/v1beta1/query.js +36 -0
- package/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +131 -27
- package/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/genutil/module/v1/module.d.ts +18 -2
- package/cosmos/genutil/module/v1/module.js +6 -0
- package/cosmos/gov/module/v1/module.d.ts +24 -4
- package/cosmos/gov/module/v1/module.js +6 -0
- package/cosmos/gov/v1/genesis.d.ts +48 -24
- package/cosmos/gov/v1/genesis.js +6 -0
- package/cosmos/gov/v1/gov.d.ts +341 -124
- package/cosmos/gov/v1/gov.js +59 -0
- package/cosmos/gov/v1/query.d.ts +469 -92
- package/cosmos/gov/v1/query.js +109 -0
- package/cosmos/gov/v1/tx.d.ts +368 -93
- package/cosmos/gov/v1/tx.js +88 -0
- package/cosmos/gov/v1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +6 -0
- package/cosmos/gov/v1beta1/gov.d.ts +291 -69
- package/cosmos/gov/v1beta1/gov.js +57 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/tx.d.ts +209 -45
- package/cosmos/gov/v1beta1/tx.js +49 -0
- package/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/group/module/v1/module.d.ts +18 -2
- package/cosmos/group/module/v1/module.js +6 -0
- package/cosmos/group/v1/events.d.ts +300 -56
- package/cosmos/group/v1/events.js +66 -0
- package/cosmos/group/v1/genesis.d.ts +48 -12
- package/cosmos/group/v1/genesis.js +6 -0
- package/cosmos/group/v1/query.d.ts +768 -152
- package/cosmos/group/v1/query.js +168 -0
- package/cosmos/group/v1/query.lcd.js +1 -3
- package/cosmos/group/v1/query.rpc.Query.d.ts +1 -5
- package/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/cosmos/group/v1/tx.d.ts +804 -163
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/types.d.ts +398 -91
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/mint/module/v1/module.d.ts +24 -4
- package/cosmos/mint/module/v1/module.js +6 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
- package/cosmos/mint/v1beta1/genesis.js +6 -0
- package/cosmos/mint/v1beta1/mint.d.ts +84 -20
- package/cosmos/mint/v1beta1/mint.js +12 -0
- package/cosmos/mint/v1beta1/query.d.ts +111 -12
- package/cosmos/mint/v1beta1/query.js +39 -0
- package/cosmos/mint/v1beta1/tx.d.ts +31 -10
- package/cosmos/mint/v1beta1/tx.js +13 -0
- package/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/nft/module/v1/module.d.ts +18 -2
- package/cosmos/nft/module/v1/module.js +6 -0
- package/cosmos/params/module/v1/module.d.ts +18 -2
- package/cosmos/params/module/v1/module.js +6 -0
- package/cosmos/params/v1beta1/params.d.ts +31 -2
- package/cosmos/params/v1beta1/params.js +13 -0
- package/cosmos/params/v1beta1/query.d.ts +93 -22
- package/cosmos/params/v1beta1/query.js +33 -0
- package/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/cosmos/params/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/protocolpool/module/v1/module.d.ts +24 -4
- package/cosmos/protocolpool/module/v1/module.js +6 -0
- package/cosmos/protocolpool/v1/genesis.d.ts +24 -4
- package/cosmos/protocolpool/v1/genesis.js +6 -0
- package/cosmos/protocolpool/v1/query.d.ts +138 -12
- package/cosmos/protocolpool/v1/query.js +54 -0
- package/cosmos/protocolpool/v1/tx.d.ts +217 -30
- package/cosmos/protocolpool/v1/tx.js +67 -0
- package/cosmos/protocolpool/v1/types.d.ts +54 -10
- package/cosmos/protocolpool/v1/types.js +12 -0
- package/cosmos/reflection/v1/reflection.d.ts +42 -6
- package/cosmos/reflection/v1/reflection.js +12 -0
- package/cosmos/rpc.query.d.ts +1 -9
- package/cosmos/rpc.query.js +0 -5
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/staking/module/v1/module.d.ts +36 -8
- package/cosmos/staking/module/v1/module.js +6 -0
- package/cosmos/staking/v1beta1/authz.d.ts +43 -15
- package/cosmos/staking/v1beta1/authz.js +13 -5
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +12 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/staking.d.ts +631 -121
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +234 -42
- package/cosmos/staking/v1beta1/tx.js +88 -0
- package/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -3
- package/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +36 -4
- package/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/cosmos/store/snapshots/v1/snapshot.d.ts +114 -30
- package/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/cosmos/store/streaming/abci/grpc.d.ts +78 -10
- package/cosmos/store/streaming/abci/grpc.js +24 -0
- package/cosmos/store/v1beta1/commit_info.d.ts +39 -0
- package/cosmos/store/v1beta1/commit_info.js +21 -0
- package/cosmos/store/v1beta1/listening.d.ts +45 -10
- package/cosmos/store/v1beta1/listening.js +15 -0
- package/cosmos/tx/config/v1/config.d.ts +18 -2
- package/cosmos/tx/config/v1/config.js +6 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +355 -94
- package/cosmos/tx/v1beta1/service.js +125 -0
- package/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/cosmos/tx/v1beta1/service.rpc.Service.d.ts +5 -25
- package/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/cosmos/tx/v1beta1/tx.d.ts +371 -80
- package/cosmos/tx/v1beta1/tx.js +118 -0
- package/cosmos/upgrade/module/v1/module.d.ts +24 -4
- package/cosmos/upgrade/module/v1/module.js +6 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +158 -30
- package/cosmos/upgrade/v1beta1/query.js +70 -0
- package/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/upgrade/v1beta1/tx.d.ts +66 -22
- package/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -30
- package/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/cosmos/vesting/module/v1/module.d.ts +18 -2
- package/cosmos/vesting/module/v1/module.js +6 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +94 -22
- package/cosmos/vesting/v1beta1/tx.js +40 -0
- package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/vesting/v1beta1/vesting.d.ts +103 -12
- package/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/esm/cosmos/app/v1alpha1/module.js +19 -0
- package/esm/cosmos/auth/module/v1/module.js +25 -1
- package/esm/cosmos/auth/v1beta1/auth.js +26 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +120 -0
- package/esm/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/esm/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/esm/cosmos/auth/v1beta1/tx.js +13 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +6 -0
- package/esm/cosmos/authz/v1beta1/query.js +36 -0
- package/esm/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +7 -0
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +13 -0
- package/esm/cosmos/bank/v1beta1/query.js +179 -0
- package/esm/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/esm/cosmos/bank/v1beta1/query.rpc.Query.js +18 -28
- package/esm/cosmos/bank/v1beta1/tx.js +53 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/benchmark/module/v1/module.js +12 -0
- package/esm/cosmos/benchmark/v1/benchmark.js +6 -0
- package/esm/cosmos/benchmark/v1/tx.js +12 -0
- package/esm/cosmos/bundle.js +242 -261
- package/esm/cosmos/circuit/module/v1/module.js +6 -0
- package/esm/cosmos/circuit/v1/query.js +36 -0
- package/esm/cosmos/circuit/v1/tx.js +36 -0
- package/esm/cosmos/circuit/v1/types.js +19 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +12 -0
- package/esm/cosmos/consensus/v1/tx.js +13 -0
- package/esm/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/counter/module/v1/module.js +6 -0
- package/esm/cosmos/counter/v1/query.js +12 -0
- package/esm/cosmos/counter/v1/tx.js +12 -0
- package/esm/cosmos/crisis/module/v1/module.js +6 -0
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/hd/v1/hd.js +6 -0
- package/esm/cosmos/crypto/keyring/v1/record.js +31 -0
- package/esm/cosmos/crypto/multisig/keys.js +8 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/esm/cosmos/distribution/v1beta1/query.js +136 -0
- package/esm/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/esm/cosmos/distribution/v1beta1/tx.js +97 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/esm/cosmos/epochs/module/v1/module.js +6 -0
- package/esm/cosmos/epochs/v1beta1/events.js +12 -0
- package/esm/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/esm/cosmos/epochs/v1beta1/query.js +28 -0
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +36 -0
- package/esm/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/genutil/module/v1/module.js +6 -0
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +6 -0
- package/esm/cosmos/gov/v1/gov.js +59 -0
- package/esm/cosmos/gov/v1/query.js +109 -0
- package/esm/cosmos/gov/v1/tx.js +88 -0
- package/esm/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/gov/v1beta1/genesis.js +6 -0
- package/esm/cosmos/gov/v1beta1/gov.js +57 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/tx.js +49 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/group/module/v1/module.js +6 -0
- package/esm/cosmos/group/v1/events.js +66 -0
- package/esm/cosmos/group/v1/genesis.js +6 -0
- package/esm/cosmos/group/v1/query.js +168 -0
- package/esm/cosmos/group/v1/query.lcd.js +1 -3
- package/esm/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +6 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +39 -0
- package/esm/cosmos/mint/v1beta1/tx.js +13 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/nft/module/v1/module.js +6 -0
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +13 -0
- package/esm/cosmos/params/v1beta1/query.js +33 -0
- package/esm/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/protocolpool/module/v1/module.js +6 -0
- package/esm/cosmos/protocolpool/v1/genesis.js +6 -0
- package/esm/cosmos/protocolpool/v1/query.js +54 -0
- package/esm/cosmos/protocolpool/v1/tx.js +67 -0
- package/esm/cosmos/protocolpool/v1/types.js +12 -0
- package/esm/cosmos/reflection/v1/reflection.js +12 -0
- package/esm/cosmos/rpc.query.js +0 -5
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +13 -5
- package/esm/cosmos/staking/v1beta1/genesis.js +12 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +88 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/esm/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/esm/cosmos/store/streaming/abci/grpc.js +24 -0
- package/esm/cosmos/store/v1beta1/commit_info.js +21 -0
- package/esm/cosmos/store/v1beta1/listening.js +15 -0
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +125 -0
- package/esm/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/esm/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/esm/cosmos/tx/v1beta1/tx.js +119 -1
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +70 -0
- package/esm/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/esm/cosmos/vesting/module/v1/module.js +6 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +40 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/gogoproto/bundle.js +2 -2
- package/esm/google/api/http.js +283 -0
- package/esm/google/bundle.js +7 -7
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +220 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/esm/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/esm/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/esm/ibc/applications/rate_limiting/v1/genesis.js +139 -0
- package/esm/ibc/applications/rate_limiting/v1/query.js +903 -0
- package/esm/ibc/applications/rate_limiting/v1/query.lcd.js +44 -0
- package/esm/ibc/applications/rate_limiting/v1/query.rpc.Query.js +71 -0
- package/esm/ibc/applications/rate_limiting/v1/rate_limiting.js +632 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.amino.js +24 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.js +726 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.registry.js +87 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +35 -0
- package/esm/ibc/applications/transfer/v1/authz.js +13 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +6 -0
- package/esm/ibc/applications/transfer/v1/packet.js +8 -0
- package/esm/ibc/applications/transfer/v1/query.js +78 -0
- package/esm/ibc/applications/transfer/v1/token.js +18 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -0
- package/esm/ibc/applications/transfer/v1/tx.js +40 -1
- package/esm/ibc/bundle.js +196 -173
- package/esm/ibc/client.js +4 -1
- package/esm/ibc/core/channel/v1/channel.js +64 -0
- package/esm/ibc/core/channel/v1/genesis.js +13 -0
- package/esm/ibc/core/channel/v1/query.js +197 -0
- package/esm/ibc/core/channel/v1/tx.js +129 -0
- package/esm/ibc/core/channel/v2/genesis.js +21 -0
- package/esm/ibc/core/channel/v2/packet.js +29 -0
- package/esm/ibc/core/channel/v2/query.js +100 -0
- package/esm/ibc/core/channel/v2/tx.js +48 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/genesis.js +20 -0
- package/esm/ibc/core/client/v1/query.js +154 -0
- package/esm/ibc/core/client/v1/tx.amino.js +1 -6
- package/esm/ibc/core/client/v1/tx.js +86 -151
- package/esm/ibc/core/client/v1/tx.registry.js +2 -20
- package/esm/ibc/core/client/v1/tx.rpc.msg.js +1 -7
- package/esm/ibc/core/client/v2/config.js +9 -0
- package/esm/ibc/core/client/v2/counterparty.js +6 -0
- package/esm/ibc/core/client/v2/genesis.js +12 -0
- package/esm/ibc/core/client/v2/query.js +26 -0
- package/esm/ibc/core/client/v2/tx.js +24 -0
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/commitment/v2/commitment.js +36 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/genesis.js +6 -0
- package/esm/ibc/core/connection/v1/query.js +83 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/lcd.js +5 -0
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +24 -0
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/wasm.js +18 -73
- package/esm/ibc/rpc.query.js +3 -5
- package/esm/ibc/rpc.tx.js +3 -0
- package/esm/index.js +1 -1
- package/esm/sparkdream/blog/module/v1/module.js +6 -0
- package/esm/sparkdream/blog/v1/genesis.js +6 -0
- package/esm/sparkdream/blog/v1/params.js +6 -0
- package/esm/sparkdream/blog/v1/post.js +6 -0
- package/esm/sparkdream/blog/v1/query.js +36 -0
- package/esm/sparkdream/blog/v1/tx.js +49 -0
- package/esm/sparkdream/bundle.js +41 -41
- package/esm/sparkdream/rpc.query.js +0 -5
- package/esm/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/esm/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/esm/sparkdream/sparkdream/v1/params.js +6 -0
- package/esm/sparkdream/sparkdream/v1/query.js +12 -0
- package/esm/sparkdream/sparkdream/v1/tx.js +13 -0
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/bundle.js +18 -18
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/p2p/types.js +20 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/gogoproto/bundle.js +2 -2
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/bundle.d.ts +418 -418
- package/google/bundle.js +7 -7
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +738 -90
- package/google/protobuf/descriptor.js +220 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
- package/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
- package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
- package/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
- package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
- package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/ibc/applications/packet_forward_middleware/v1/genesis.d.ts +46 -2
- package/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/ibc/applications/rate_limiting/v1/genesis.d.ts +57 -0
- package/ibc/applications/rate_limiting/v1/genesis.js +142 -0
- package/ibc/applications/rate_limiting/v1/query.d.ts +551 -0
- package/ibc/applications/rate_limiting/v1/query.js +906 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.d.ts +14 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.js +48 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.d.ts +40 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.js +76 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.d.ts +374 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.js +637 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.d.ts +23 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.js +27 -0
- package/ibc/applications/rate_limiting/v1/tx.d.ts +518 -0
- package/ibc/applications/rate_limiting/v1/tx.js +729 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.d.ts +61 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.js +91 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.d.ts +22 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +40 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +13 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +22 -4
- package/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +18 -2
- package/ibc/applications/transfer/v1/genesis.js +6 -0
- package/ibc/applications/transfer/v1/packet.d.ts +44 -10
- package/ibc/applications/transfer/v1/packet.js +8 -0
- package/ibc/applications/transfer/v1/query.d.ts +252 -34
- package/ibc/applications/transfer/v1/query.js +78 -0
- package/ibc/applications/transfer/v1/token.d.ts +78 -14
- package/ibc/applications/transfer/v1/token.js +18 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -0
- package/ibc/applications/transfer/v1/transfer.js +9 -0
- package/ibc/applications/transfer/v1/tx.d.ts +135 -22
- package/ibc/applications/transfer/v1/tx.js +40 -1
- package/ibc/bundle.d.ts +3830 -3396
- package/ibc/bundle.js +196 -173
- package/ibc/client.d.ts +20 -5
- package/ibc/client.js +4 -1
- package/ibc/core/channel/v1/channel.d.ts +292 -60
- package/ibc/core/channel/v1/channel.js +64 -0
- package/ibc/core/channel/v1/genesis.d.ts +37 -4
- package/ibc/core/channel/v1/genesis.js +13 -0
- package/ibc/core/channel/v1/query.d.ts +839 -158
- package/ibc/core/channel/v1/query.js +197 -0
- package/ibc/core/channel/v1/tx.d.ts +335 -30
- package/ibc/core/channel/v1/tx.js +129 -0
- package/ibc/core/channel/v2/genesis.d.ts +81 -14
- package/ibc/core/channel/v2/genesis.js +21 -0
- package/ibc/core/channel/v2/packet.d.ts +137 -28
- package/ibc/core/channel/v2/packet.js +29 -0
- package/ibc/core/channel/v2/query.d.ts +490 -98
- package/ibc/core/channel/v2/query.js +100 -0
- package/ibc/core/channel/v2/tx.d.ts +144 -16
- package/ibc/core/channel/v2/tx.js +48 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/genesis.d.ts +82 -16
- package/ibc/core/client/v1/genesis.js +20 -0
- package/ibc/core/client/v1/query.d.ts +508 -74
- package/ibc/core/client/v1/query.js +154 -0
- package/ibc/core/client/v1/tx.amino.d.ts +1 -6
- package/ibc/core/client/v1/tx.amino.js +0 -5
- package/ibc/core/client/v1/tx.d.ts +336 -138
- package/ibc/core/client/v1/tx.js +87 -152
- package/ibc/core/client/v1/tx.registry.d.ts +1 -13
- package/ibc/core/client/v1/tx.registry.js +1 -19
- package/ibc/core/client/v1/tx.rpc.msg.d.ts +1 -4
- package/ibc/core/client/v1/tx.rpc.msg.js +0 -6
- package/ibc/core/client/v2/config.d.ts +21 -2
- package/ibc/core/client/v2/config.js +9 -0
- package/ibc/core/client/v2/counterparty.d.ts +30 -6
- package/ibc/core/client/v2/counterparty.js +6 -0
- package/ibc/core/client/v2/genesis.d.ts +54 -10
- package/ibc/core/client/v2/genesis.js +12 -0
- package/ibc/core/client/v2/query.d.ts +74 -8
- package/ibc/core/client/v2/query.js +26 -0
- package/ibc/core/client/v2/tx.d.ts +108 -20
- package/ibc/core/client/v2/tx.js +24 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/commitment/v2/commitment.d.ts +42 -0
- package/ibc/core/commitment/v2/commitment.js +36 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +6 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +83 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/lcd.d.ts +3 -0
- package/ibc/lcd.js +5 -0
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +277 -24
- package/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +180 -26
- package/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +140 -26
- package/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +24 -0
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/wasm.d.ts +52 -46
- package/ibc/lightclients/wasm/v1/wasm.js +19 -74
- package/ibc/rpc.query.d.ts +11 -9
- package/ibc/rpc.query.js +3 -5
- package/ibc/rpc.tx.d.ts +3 -0
- package/ibc/rpc.tx.js +3 -0
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/sparkdream/blog/module/v1/module.d.ts +18 -2
- package/sparkdream/blog/module/v1/module.js +6 -0
- package/sparkdream/blog/v1/genesis.d.ts +24 -4
- package/sparkdream/blog/v1/genesis.js +6 -0
- package/sparkdream/blog/v1/params.d.ts +18 -2
- package/sparkdream/blog/v1/params.js +6 -0
- package/sparkdream/blog/v1/post.d.ts +18 -2
- package/sparkdream/blog/v1/post.js +6 -0
- package/sparkdream/blog/v1/query.d.ts +114 -14
- package/sparkdream/blog/v1/query.js +36 -0
- package/sparkdream/blog/v1/tx.d.ts +151 -18
- package/sparkdream/blog/v1/tx.js +49 -0
- package/sparkdream/bundle.d.ts +302 -310
- package/sparkdream/bundle.js +41 -41
- package/sparkdream/rpc.query.d.ts +1 -9
- package/sparkdream/rpc.query.js +0 -5
- package/sparkdream/sparkdream/module/v1/module.d.ts +18 -2
- package/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/sparkdream/sparkdream/v1/genesis.d.ts +24 -4
- package/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/sparkdream/sparkdream/v1/params.d.ts +18 -2
- package/sparkdream/sparkdream/v1/params.js +6 -0
- package/sparkdream/sparkdream/v1/query.d.ts +42 -6
- package/sparkdream/sparkdream/v1/query.js +12 -0
- package/sparkdream/sparkdream/v1/tx.d.ts +37 -4
- package/sparkdream/sparkdream/v1/tx.js +13 -0
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +18 -18
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +20 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -38
- package/cosmos/orm/module/v1alpha1/module.js +0 -62
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
- package/cosmos/orm/query/v1alpha1/query.js +0 -695
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
|
@@ -13,6 +13,12 @@ function createBaseGenesisState() {
|
|
|
13
13
|
nextChannelSequence: BigInt(0)
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
|
+
/**
|
|
17
|
+
* GenesisState defines the ibc channel submodule's genesis state.
|
|
18
|
+
* @name GenesisState
|
|
19
|
+
* @package ibc.core.channel.v1
|
|
20
|
+
* @see proto type: ibc.core.channel.v1.GenesisState
|
|
21
|
+
*/
|
|
16
22
|
export const GenesisState = {
|
|
17
23
|
typeUrl: "/ibc.core.channel.v1.GenesisState",
|
|
18
24
|
aminoType: "cosmos-sdk/GenesisState",
|
|
@@ -183,6 +189,13 @@ function createBasePacketSequence() {
|
|
|
183
189
|
sequence: BigInt(0)
|
|
184
190
|
};
|
|
185
191
|
}
|
|
192
|
+
/**
|
|
193
|
+
* PacketSequence defines the genesis type necessary to retrieve and store
|
|
194
|
+
* next send and receive sequences.
|
|
195
|
+
* @name PacketSequence
|
|
196
|
+
* @package ibc.core.channel.v1
|
|
197
|
+
* @see proto type: ibc.core.channel.v1.PacketSequence
|
|
198
|
+
*/
|
|
186
199
|
export const PacketSequence = {
|
|
187
200
|
typeUrl: "/ibc.core.channel.v1.PacketSequence",
|
|
188
201
|
aminoType: "cosmos-sdk/PacketSequence",
|
|
@@ -11,6 +11,12 @@ function createBaseQueryChannelRequest() {
|
|
|
11
11
|
channelId: ""
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* QueryChannelRequest is the request type for the Query/Channel RPC method
|
|
16
|
+
* @name QueryChannelRequest
|
|
17
|
+
* @package ibc.core.channel.v1
|
|
18
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelRequest
|
|
19
|
+
*/
|
|
14
20
|
export const QueryChannelRequest = {
|
|
15
21
|
typeUrl: "/ibc.core.channel.v1.QueryChannelRequest",
|
|
16
22
|
aminoType: "cosmos-sdk/QueryChannelRequest",
|
|
@@ -94,6 +100,14 @@ function createBaseQueryChannelResponse() {
|
|
|
94
100
|
proofHeight: Height.fromPartial({})
|
|
95
101
|
};
|
|
96
102
|
}
|
|
103
|
+
/**
|
|
104
|
+
* QueryChannelResponse is the response type for the Query/Channel RPC method.
|
|
105
|
+
* Besides the Channel end, it includes a proof and the height from which the
|
|
106
|
+
* proof was retrieved.
|
|
107
|
+
* @name QueryChannelResponse
|
|
108
|
+
* @package ibc.core.channel.v1
|
|
109
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelResponse
|
|
110
|
+
*/
|
|
97
111
|
export const QueryChannelResponse = {
|
|
98
112
|
typeUrl: "/ibc.core.channel.v1.QueryChannelResponse",
|
|
99
113
|
aminoType: "cosmos-sdk/QueryChannelResponse",
|
|
@@ -186,6 +200,12 @@ function createBaseQueryChannelsRequest() {
|
|
|
186
200
|
pagination: undefined
|
|
187
201
|
};
|
|
188
202
|
}
|
|
203
|
+
/**
|
|
204
|
+
* QueryChannelsRequest is the request type for the Query/Channels RPC method
|
|
205
|
+
* @name QueryChannelsRequest
|
|
206
|
+
* @package ibc.core.channel.v1
|
|
207
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelsRequest
|
|
208
|
+
*/
|
|
189
209
|
export const QueryChannelsRequest = {
|
|
190
210
|
typeUrl: "/ibc.core.channel.v1.QueryChannelsRequest",
|
|
191
211
|
aminoType: "cosmos-sdk/QueryChannelsRequest",
|
|
@@ -258,6 +278,12 @@ function createBaseQueryChannelsResponse() {
|
|
|
258
278
|
height: Height.fromPartial({})
|
|
259
279
|
};
|
|
260
280
|
}
|
|
281
|
+
/**
|
|
282
|
+
* QueryChannelsResponse is the response type for the Query/Channels RPC method.
|
|
283
|
+
* @name QueryChannelsResponse
|
|
284
|
+
* @package ibc.core.channel.v1
|
|
285
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelsResponse
|
|
286
|
+
*/
|
|
261
287
|
export const QueryChannelsResponse = {
|
|
262
288
|
typeUrl: "/ibc.core.channel.v1.QueryChannelsResponse",
|
|
263
289
|
aminoType: "cosmos-sdk/QueryChannelsResponse",
|
|
@@ -354,6 +380,13 @@ function createBaseQueryConnectionChannelsRequest() {
|
|
|
354
380
|
pagination: undefined
|
|
355
381
|
};
|
|
356
382
|
}
|
|
383
|
+
/**
|
|
384
|
+
* QueryConnectionChannelsRequest is the request type for the
|
|
385
|
+
* Query/QueryConnectionChannels RPC method
|
|
386
|
+
* @name QueryConnectionChannelsRequest
|
|
387
|
+
* @package ibc.core.channel.v1
|
|
388
|
+
* @see proto type: ibc.core.channel.v1.QueryConnectionChannelsRequest
|
|
389
|
+
*/
|
|
357
390
|
export const QueryConnectionChannelsRequest = {
|
|
358
391
|
typeUrl: "/ibc.core.channel.v1.QueryConnectionChannelsRequest",
|
|
359
392
|
aminoType: "cosmos-sdk/QueryConnectionChannelsRequest",
|
|
@@ -437,6 +470,13 @@ function createBaseQueryConnectionChannelsResponse() {
|
|
|
437
470
|
height: Height.fromPartial({})
|
|
438
471
|
};
|
|
439
472
|
}
|
|
473
|
+
/**
|
|
474
|
+
* QueryConnectionChannelsResponse is the Response type for the
|
|
475
|
+
* Query/QueryConnectionChannels RPC method
|
|
476
|
+
* @name QueryConnectionChannelsResponse
|
|
477
|
+
* @package ibc.core.channel.v1
|
|
478
|
+
* @see proto type: ibc.core.channel.v1.QueryConnectionChannelsResponse
|
|
479
|
+
*/
|
|
440
480
|
export const QueryConnectionChannelsResponse = {
|
|
441
481
|
typeUrl: "/ibc.core.channel.v1.QueryConnectionChannelsResponse",
|
|
442
482
|
aminoType: "cosmos-sdk/QueryConnectionChannelsResponse",
|
|
@@ -533,6 +573,13 @@ function createBaseQueryChannelClientStateRequest() {
|
|
|
533
573
|
channelId: ""
|
|
534
574
|
};
|
|
535
575
|
}
|
|
576
|
+
/**
|
|
577
|
+
* QueryChannelClientStateRequest is the request type for the Query/ClientState
|
|
578
|
+
* RPC method
|
|
579
|
+
* @name QueryChannelClientStateRequest
|
|
580
|
+
* @package ibc.core.channel.v1
|
|
581
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelClientStateRequest
|
|
582
|
+
*/
|
|
536
583
|
export const QueryChannelClientStateRequest = {
|
|
537
584
|
typeUrl: "/ibc.core.channel.v1.QueryChannelClientStateRequest",
|
|
538
585
|
aminoType: "cosmos-sdk/QueryChannelClientStateRequest",
|
|
@@ -616,6 +663,13 @@ function createBaseQueryChannelClientStateResponse() {
|
|
|
616
663
|
proofHeight: Height.fromPartial({})
|
|
617
664
|
};
|
|
618
665
|
}
|
|
666
|
+
/**
|
|
667
|
+
* QueryChannelClientStateResponse is the Response type for the
|
|
668
|
+
* Query/QueryChannelClientState RPC method
|
|
669
|
+
* @name QueryChannelClientStateResponse
|
|
670
|
+
* @package ibc.core.channel.v1
|
|
671
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelClientStateResponse
|
|
672
|
+
*/
|
|
619
673
|
export const QueryChannelClientStateResponse = {
|
|
620
674
|
typeUrl: "/ibc.core.channel.v1.QueryChannelClientStateResponse",
|
|
621
675
|
aminoType: "cosmos-sdk/QueryChannelClientStateResponse",
|
|
@@ -711,6 +765,13 @@ function createBaseQueryChannelConsensusStateRequest() {
|
|
|
711
765
|
revisionHeight: BigInt(0)
|
|
712
766
|
};
|
|
713
767
|
}
|
|
768
|
+
/**
|
|
769
|
+
* QueryChannelConsensusStateRequest is the request type for the
|
|
770
|
+
* Query/ConsensusState RPC method
|
|
771
|
+
* @name QueryChannelConsensusStateRequest
|
|
772
|
+
* @package ibc.core.channel.v1
|
|
773
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelConsensusStateRequest
|
|
774
|
+
*/
|
|
714
775
|
export const QueryChannelConsensusStateRequest = {
|
|
715
776
|
typeUrl: "/ibc.core.channel.v1.QueryChannelConsensusStateRequest",
|
|
716
777
|
aminoType: "cosmos-sdk/QueryChannelConsensusStateRequest",
|
|
@@ -817,6 +878,13 @@ function createBaseQueryChannelConsensusStateResponse() {
|
|
|
817
878
|
proofHeight: Height.fromPartial({})
|
|
818
879
|
};
|
|
819
880
|
}
|
|
881
|
+
/**
|
|
882
|
+
* QueryChannelClientStateResponse is the Response type for the
|
|
883
|
+
* Query/QueryChannelClientState RPC method
|
|
884
|
+
* @name QueryChannelConsensusStateResponse
|
|
885
|
+
* @package ibc.core.channel.v1
|
|
886
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelConsensusStateResponse
|
|
887
|
+
*/
|
|
820
888
|
export const QueryChannelConsensusStateResponse = {
|
|
821
889
|
typeUrl: "/ibc.core.channel.v1.QueryChannelConsensusStateResponse",
|
|
822
890
|
aminoType: "cosmos-sdk/QueryChannelConsensusStateResponse",
|
|
@@ -922,6 +990,13 @@ function createBaseQueryPacketCommitmentRequest() {
|
|
|
922
990
|
sequence: BigInt(0)
|
|
923
991
|
};
|
|
924
992
|
}
|
|
993
|
+
/**
|
|
994
|
+
* QueryPacketCommitmentRequest is the request type for the
|
|
995
|
+
* Query/PacketCommitment RPC method
|
|
996
|
+
* @name QueryPacketCommitmentRequest
|
|
997
|
+
* @package ibc.core.channel.v1
|
|
998
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentRequest
|
|
999
|
+
*/
|
|
925
1000
|
export const QueryPacketCommitmentRequest = {
|
|
926
1001
|
typeUrl: "/ibc.core.channel.v1.QueryPacketCommitmentRequest",
|
|
927
1002
|
aminoType: "cosmos-sdk/QueryPacketCommitmentRequest",
|
|
@@ -1016,6 +1091,14 @@ function createBaseQueryPacketCommitmentResponse() {
|
|
|
1016
1091
|
proofHeight: Height.fromPartial({})
|
|
1017
1092
|
};
|
|
1018
1093
|
}
|
|
1094
|
+
/**
|
|
1095
|
+
* QueryPacketCommitmentResponse defines the client query response for a packet
|
|
1096
|
+
* which also includes a proof and the height from which the proof was
|
|
1097
|
+
* retrieved
|
|
1098
|
+
* @name QueryPacketCommitmentResponse
|
|
1099
|
+
* @package ibc.core.channel.v1
|
|
1100
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentResponse
|
|
1101
|
+
*/
|
|
1019
1102
|
export const QueryPacketCommitmentResponse = {
|
|
1020
1103
|
typeUrl: "/ibc.core.channel.v1.QueryPacketCommitmentResponse",
|
|
1021
1104
|
aminoType: "cosmos-sdk/QueryPacketCommitmentResponse",
|
|
@@ -1110,6 +1193,13 @@ function createBaseQueryPacketCommitmentsRequest() {
|
|
|
1110
1193
|
pagination: undefined
|
|
1111
1194
|
};
|
|
1112
1195
|
}
|
|
1196
|
+
/**
|
|
1197
|
+
* QueryPacketCommitmentsRequest is the request type for the
|
|
1198
|
+
* Query/QueryPacketCommitments RPC method
|
|
1199
|
+
* @name QueryPacketCommitmentsRequest
|
|
1200
|
+
* @package ibc.core.channel.v1
|
|
1201
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentsRequest
|
|
1202
|
+
*/
|
|
1113
1203
|
export const QueryPacketCommitmentsRequest = {
|
|
1114
1204
|
typeUrl: "/ibc.core.channel.v1.QueryPacketCommitmentsRequest",
|
|
1115
1205
|
aminoType: "cosmos-sdk/QueryPacketCommitmentsRequest",
|
|
@@ -1204,6 +1294,13 @@ function createBaseQueryPacketCommitmentsResponse() {
|
|
|
1204
1294
|
height: Height.fromPartial({})
|
|
1205
1295
|
};
|
|
1206
1296
|
}
|
|
1297
|
+
/**
|
|
1298
|
+
* QueryPacketCommitmentsResponse is the request type for the
|
|
1299
|
+
* Query/QueryPacketCommitments RPC method
|
|
1300
|
+
* @name QueryPacketCommitmentsResponse
|
|
1301
|
+
* @package ibc.core.channel.v1
|
|
1302
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentsResponse
|
|
1303
|
+
*/
|
|
1207
1304
|
export const QueryPacketCommitmentsResponse = {
|
|
1208
1305
|
typeUrl: "/ibc.core.channel.v1.QueryPacketCommitmentsResponse",
|
|
1209
1306
|
aminoType: "cosmos-sdk/QueryPacketCommitmentsResponse",
|
|
@@ -1301,6 +1398,13 @@ function createBaseQueryPacketReceiptRequest() {
|
|
|
1301
1398
|
sequence: BigInt(0)
|
|
1302
1399
|
};
|
|
1303
1400
|
}
|
|
1401
|
+
/**
|
|
1402
|
+
* QueryPacketReceiptRequest is the request type for the
|
|
1403
|
+
* Query/PacketReceipt RPC method
|
|
1404
|
+
* @name QueryPacketReceiptRequest
|
|
1405
|
+
* @package ibc.core.channel.v1
|
|
1406
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketReceiptRequest
|
|
1407
|
+
*/
|
|
1304
1408
|
export const QueryPacketReceiptRequest = {
|
|
1305
1409
|
typeUrl: "/ibc.core.channel.v1.QueryPacketReceiptRequest",
|
|
1306
1410
|
aminoType: "cosmos-sdk/QueryPacketReceiptRequest",
|
|
@@ -1395,6 +1499,14 @@ function createBaseQueryPacketReceiptResponse() {
|
|
|
1395
1499
|
proofHeight: Height.fromPartial({})
|
|
1396
1500
|
};
|
|
1397
1501
|
}
|
|
1502
|
+
/**
|
|
1503
|
+
* QueryPacketReceiptResponse defines the client query response for a packet
|
|
1504
|
+
* receipt which also includes a proof, and the height from which the proof was
|
|
1505
|
+
* retrieved
|
|
1506
|
+
* @name QueryPacketReceiptResponse
|
|
1507
|
+
* @package ibc.core.channel.v1
|
|
1508
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketReceiptResponse
|
|
1509
|
+
*/
|
|
1398
1510
|
export const QueryPacketReceiptResponse = {
|
|
1399
1511
|
typeUrl: "/ibc.core.channel.v1.QueryPacketReceiptResponse",
|
|
1400
1512
|
aminoType: "cosmos-sdk/QueryPacketReceiptResponse",
|
|
@@ -1489,6 +1601,13 @@ function createBaseQueryPacketAcknowledgementRequest() {
|
|
|
1489
1601
|
sequence: BigInt(0)
|
|
1490
1602
|
};
|
|
1491
1603
|
}
|
|
1604
|
+
/**
|
|
1605
|
+
* QueryPacketAcknowledgementRequest is the request type for the
|
|
1606
|
+
* Query/PacketAcknowledgement RPC method
|
|
1607
|
+
* @name QueryPacketAcknowledgementRequest
|
|
1608
|
+
* @package ibc.core.channel.v1
|
|
1609
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementRequest
|
|
1610
|
+
*/
|
|
1492
1611
|
export const QueryPacketAcknowledgementRequest = {
|
|
1493
1612
|
typeUrl: "/ibc.core.channel.v1.QueryPacketAcknowledgementRequest",
|
|
1494
1613
|
aminoType: "cosmos-sdk/QueryPacketAcknowledgementRequest",
|
|
@@ -1583,6 +1702,14 @@ function createBaseQueryPacketAcknowledgementResponse() {
|
|
|
1583
1702
|
proofHeight: Height.fromPartial({})
|
|
1584
1703
|
};
|
|
1585
1704
|
}
|
|
1705
|
+
/**
|
|
1706
|
+
* QueryPacketAcknowledgementResponse defines the client query response for a
|
|
1707
|
+
* packet which also includes a proof and the height from which the
|
|
1708
|
+
* proof was retrieved
|
|
1709
|
+
* @name QueryPacketAcknowledgementResponse
|
|
1710
|
+
* @package ibc.core.channel.v1
|
|
1711
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementResponse
|
|
1712
|
+
*/
|
|
1586
1713
|
export const QueryPacketAcknowledgementResponse = {
|
|
1587
1714
|
typeUrl: "/ibc.core.channel.v1.QueryPacketAcknowledgementResponse",
|
|
1588
1715
|
aminoType: "cosmos-sdk/QueryPacketAcknowledgementResponse",
|
|
@@ -1678,6 +1805,13 @@ function createBaseQueryPacketAcknowledgementsRequest() {
|
|
|
1678
1805
|
packetCommitmentSequences: []
|
|
1679
1806
|
};
|
|
1680
1807
|
}
|
|
1808
|
+
/**
|
|
1809
|
+
* QueryPacketAcknowledgementsRequest is the request type for the
|
|
1810
|
+
* Query/QueryPacketCommitments RPC method
|
|
1811
|
+
* @name QueryPacketAcknowledgementsRequest
|
|
1812
|
+
* @package ibc.core.channel.v1
|
|
1813
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementsRequest
|
|
1814
|
+
*/
|
|
1681
1815
|
export const QueryPacketAcknowledgementsRequest = {
|
|
1682
1816
|
typeUrl: "/ibc.core.channel.v1.QueryPacketAcknowledgementsRequest",
|
|
1683
1817
|
aminoType: "cosmos-sdk/QueryPacketAcknowledgementsRequest",
|
|
@@ -1796,6 +1930,13 @@ function createBaseQueryPacketAcknowledgementsResponse() {
|
|
|
1796
1930
|
height: Height.fromPartial({})
|
|
1797
1931
|
};
|
|
1798
1932
|
}
|
|
1933
|
+
/**
|
|
1934
|
+
* QueryPacketAcknowledgemetsResponse is the request type for the
|
|
1935
|
+
* Query/QueryPacketAcknowledgements RPC method
|
|
1936
|
+
* @name QueryPacketAcknowledgementsResponse
|
|
1937
|
+
* @package ibc.core.channel.v1
|
|
1938
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementsResponse
|
|
1939
|
+
*/
|
|
1799
1940
|
export const QueryPacketAcknowledgementsResponse = {
|
|
1800
1941
|
typeUrl: "/ibc.core.channel.v1.QueryPacketAcknowledgementsResponse",
|
|
1801
1942
|
aminoType: "cosmos-sdk/QueryPacketAcknowledgementsResponse",
|
|
@@ -1893,6 +2034,13 @@ function createBaseQueryUnreceivedPacketsRequest() {
|
|
|
1893
2034
|
packetCommitmentSequences: []
|
|
1894
2035
|
};
|
|
1895
2036
|
}
|
|
2037
|
+
/**
|
|
2038
|
+
* QueryUnreceivedPacketsRequest is the request type for the
|
|
2039
|
+
* Query/UnreceivedPackets RPC method
|
|
2040
|
+
* @name QueryUnreceivedPacketsRequest
|
|
2041
|
+
* @package ibc.core.channel.v1
|
|
2042
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedPacketsRequest
|
|
2043
|
+
*/
|
|
1896
2044
|
export const QueryUnreceivedPacketsRequest = {
|
|
1897
2045
|
typeUrl: "/ibc.core.channel.v1.QueryUnreceivedPacketsRequest",
|
|
1898
2046
|
aminoType: "cosmos-sdk/QueryUnreceivedPacketsRequest",
|
|
@@ -1999,6 +2147,13 @@ function createBaseQueryUnreceivedPacketsResponse() {
|
|
|
1999
2147
|
height: Height.fromPartial({})
|
|
2000
2148
|
};
|
|
2001
2149
|
}
|
|
2150
|
+
/**
|
|
2151
|
+
* QueryUnreceivedPacketsResponse is the response type for the
|
|
2152
|
+
* Query/UnreceivedPacketCommitments RPC method
|
|
2153
|
+
* @name QueryUnreceivedPacketsResponse
|
|
2154
|
+
* @package ibc.core.channel.v1
|
|
2155
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedPacketsResponse
|
|
2156
|
+
*/
|
|
2002
2157
|
export const QueryUnreceivedPacketsResponse = {
|
|
2003
2158
|
typeUrl: "/ibc.core.channel.v1.QueryUnreceivedPacketsResponse",
|
|
2004
2159
|
aminoType: "cosmos-sdk/QueryUnreceivedPacketsResponse",
|
|
@@ -2095,6 +2250,13 @@ function createBaseQueryUnreceivedAcksRequest() {
|
|
|
2095
2250
|
packetAckSequences: []
|
|
2096
2251
|
};
|
|
2097
2252
|
}
|
|
2253
|
+
/**
|
|
2254
|
+
* QueryUnreceivedAcks is the request type for the
|
|
2255
|
+
* Query/UnreceivedAcks RPC method
|
|
2256
|
+
* @name QueryUnreceivedAcksRequest
|
|
2257
|
+
* @package ibc.core.channel.v1
|
|
2258
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedAcksRequest
|
|
2259
|
+
*/
|
|
2098
2260
|
export const QueryUnreceivedAcksRequest = {
|
|
2099
2261
|
typeUrl: "/ibc.core.channel.v1.QueryUnreceivedAcksRequest",
|
|
2100
2262
|
aminoType: "cosmos-sdk/QueryUnreceivedAcksRequest",
|
|
@@ -2201,6 +2363,13 @@ function createBaseQueryUnreceivedAcksResponse() {
|
|
|
2201
2363
|
height: Height.fromPartial({})
|
|
2202
2364
|
};
|
|
2203
2365
|
}
|
|
2366
|
+
/**
|
|
2367
|
+
* QueryUnreceivedAcksResponse is the response type for the
|
|
2368
|
+
* Query/UnreceivedAcks RPC method
|
|
2369
|
+
* @name QueryUnreceivedAcksResponse
|
|
2370
|
+
* @package ibc.core.channel.v1
|
|
2371
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedAcksResponse
|
|
2372
|
+
*/
|
|
2204
2373
|
export const QueryUnreceivedAcksResponse = {
|
|
2205
2374
|
typeUrl: "/ibc.core.channel.v1.QueryUnreceivedAcksResponse",
|
|
2206
2375
|
aminoType: "cosmos-sdk/QueryUnreceivedAcksResponse",
|
|
@@ -2296,6 +2465,13 @@ function createBaseQueryNextSequenceReceiveRequest() {
|
|
|
2296
2465
|
channelId: ""
|
|
2297
2466
|
};
|
|
2298
2467
|
}
|
|
2468
|
+
/**
|
|
2469
|
+
* QueryNextSequenceReceiveRequest is the request type for the
|
|
2470
|
+
* Query/QueryNextSequenceReceiveRequest RPC method
|
|
2471
|
+
* @name QueryNextSequenceReceiveRequest
|
|
2472
|
+
* @package ibc.core.channel.v1
|
|
2473
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceReceiveRequest
|
|
2474
|
+
*/
|
|
2299
2475
|
export const QueryNextSequenceReceiveRequest = {
|
|
2300
2476
|
typeUrl: "/ibc.core.channel.v1.QueryNextSequenceReceiveRequest",
|
|
2301
2477
|
aminoType: "cosmos-sdk/QueryNextSequenceReceiveRequest",
|
|
@@ -2379,6 +2555,13 @@ function createBaseQueryNextSequenceReceiveResponse() {
|
|
|
2379
2555
|
proofHeight: Height.fromPartial({})
|
|
2380
2556
|
};
|
|
2381
2557
|
}
|
|
2558
|
+
/**
|
|
2559
|
+
* QuerySequenceResponse is the response type for the
|
|
2560
|
+
* Query/QueryNextSequenceReceiveResponse RPC method
|
|
2561
|
+
* @name QueryNextSequenceReceiveResponse
|
|
2562
|
+
* @package ibc.core.channel.v1
|
|
2563
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceReceiveResponse
|
|
2564
|
+
*/
|
|
2382
2565
|
export const QueryNextSequenceReceiveResponse = {
|
|
2383
2566
|
typeUrl: "/ibc.core.channel.v1.QueryNextSequenceReceiveResponse",
|
|
2384
2567
|
aminoType: "cosmos-sdk/QueryNextSequenceReceiveResponse",
|
|
@@ -2472,6 +2655,13 @@ function createBaseQueryNextSequenceSendRequest() {
|
|
|
2472
2655
|
channelId: ""
|
|
2473
2656
|
};
|
|
2474
2657
|
}
|
|
2658
|
+
/**
|
|
2659
|
+
* QueryNextSequenceSendRequest is the request type for the
|
|
2660
|
+
* Query/QueryNextSequenceSend RPC method
|
|
2661
|
+
* @name QueryNextSequenceSendRequest
|
|
2662
|
+
* @package ibc.core.channel.v1
|
|
2663
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceSendRequest
|
|
2664
|
+
*/
|
|
2475
2665
|
export const QueryNextSequenceSendRequest = {
|
|
2476
2666
|
typeUrl: "/ibc.core.channel.v1.QueryNextSequenceSendRequest",
|
|
2477
2667
|
aminoType: "cosmos-sdk/QueryNextSequenceSendRequest",
|
|
@@ -2555,6 +2745,13 @@ function createBaseQueryNextSequenceSendResponse() {
|
|
|
2555
2745
|
proofHeight: Height.fromPartial({})
|
|
2556
2746
|
};
|
|
2557
2747
|
}
|
|
2748
|
+
/**
|
|
2749
|
+
* QueryNextSequenceSendResponse is the request type for the
|
|
2750
|
+
* Query/QueryNextSequenceSend RPC method
|
|
2751
|
+
* @name QueryNextSequenceSendResponse
|
|
2752
|
+
* @package ibc.core.channel.v1
|
|
2753
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceSendResponse
|
|
2754
|
+
*/
|
|
2558
2755
|
export const QueryNextSequenceSendResponse = {
|
|
2559
2756
|
typeUrl: "/ibc.core.channel.v1.QueryNextSequenceSendResponse",
|
|
2560
2757
|
aminoType: "cosmos-sdk/QueryNextSequenceSendResponse",
|
|
@@ -59,6 +59,13 @@ function createBaseMsgChannelOpenInit() {
|
|
|
59
59
|
signer: ""
|
|
60
60
|
};
|
|
61
61
|
}
|
|
62
|
+
/**
|
|
63
|
+
* MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It
|
|
64
|
+
* is called by a relayer on Chain A.
|
|
65
|
+
* @name MsgChannelOpenInit
|
|
66
|
+
* @package ibc.core.channel.v1
|
|
67
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInit
|
|
68
|
+
*/
|
|
62
69
|
export const MsgChannelOpenInit = {
|
|
63
70
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenInit",
|
|
64
71
|
aminoType: "cosmos-sdk/MsgChannelOpenInit",
|
|
@@ -152,6 +159,12 @@ function createBaseMsgChannelOpenInitResponse() {
|
|
|
152
159
|
version: ""
|
|
153
160
|
};
|
|
154
161
|
}
|
|
162
|
+
/**
|
|
163
|
+
* MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type.
|
|
164
|
+
* @name MsgChannelOpenInitResponse
|
|
165
|
+
* @package ibc.core.channel.v1
|
|
166
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInitResponse
|
|
167
|
+
*/
|
|
155
168
|
export const MsgChannelOpenInitResponse = {
|
|
156
169
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenInitResponse",
|
|
157
170
|
aminoType: "cosmos-sdk/MsgChannelOpenInitResponse",
|
|
@@ -239,6 +252,14 @@ function createBaseMsgChannelOpenTry() {
|
|
|
239
252
|
signer: ""
|
|
240
253
|
};
|
|
241
254
|
}
|
|
255
|
+
/**
|
|
256
|
+
* MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel
|
|
257
|
+
* on Chain B. The version field within the Channel field has been deprecated. Its
|
|
258
|
+
* value will be ignored by core IBC.
|
|
259
|
+
* @name MsgChannelOpenTry
|
|
260
|
+
* @package ibc.core.channel.v1
|
|
261
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTry
|
|
262
|
+
*/
|
|
242
263
|
export const MsgChannelOpenTry = {
|
|
243
264
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenTry",
|
|
244
265
|
aminoType: "cosmos-sdk/MsgChannelOpenTry",
|
|
@@ -376,6 +397,12 @@ function createBaseMsgChannelOpenTryResponse() {
|
|
|
376
397
|
channelId: ""
|
|
377
398
|
};
|
|
378
399
|
}
|
|
400
|
+
/**
|
|
401
|
+
* MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type.
|
|
402
|
+
* @name MsgChannelOpenTryResponse
|
|
403
|
+
* @package ibc.core.channel.v1
|
|
404
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTryResponse
|
|
405
|
+
*/
|
|
379
406
|
export const MsgChannelOpenTryResponse = {
|
|
380
407
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenTryResponse",
|
|
381
408
|
aminoType: "cosmos-sdk/MsgChannelOpenTryResponse",
|
|
@@ -463,6 +490,13 @@ function createBaseMsgChannelOpenAck() {
|
|
|
463
490
|
signer: ""
|
|
464
491
|
};
|
|
465
492
|
}
|
|
493
|
+
/**
|
|
494
|
+
* MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge
|
|
495
|
+
* the change of channel state to TRYOPEN on Chain B.
|
|
496
|
+
* @name MsgChannelOpenAck
|
|
497
|
+
* @package ibc.core.channel.v1
|
|
498
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAck
|
|
499
|
+
*/
|
|
466
500
|
export const MsgChannelOpenAck = {
|
|
467
501
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenAck",
|
|
468
502
|
aminoType: "cosmos-sdk/MsgChannelOpenAck",
|
|
@@ -597,6 +631,12 @@ export const MsgChannelOpenAck = {
|
|
|
597
631
|
function createBaseMsgChannelOpenAckResponse() {
|
|
598
632
|
return {};
|
|
599
633
|
}
|
|
634
|
+
/**
|
|
635
|
+
* MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type.
|
|
636
|
+
* @name MsgChannelOpenAckResponse
|
|
637
|
+
* @package ibc.core.channel.v1
|
|
638
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAckResponse
|
|
639
|
+
*/
|
|
600
640
|
export const MsgChannelOpenAckResponse = {
|
|
601
641
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenAckResponse",
|
|
602
642
|
aminoType: "cosmos-sdk/MsgChannelOpenAckResponse",
|
|
@@ -660,6 +700,13 @@ function createBaseMsgChannelOpenConfirm() {
|
|
|
660
700
|
signer: ""
|
|
661
701
|
};
|
|
662
702
|
}
|
|
703
|
+
/**
|
|
704
|
+
* MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to
|
|
705
|
+
* acknowledge the change of channel state to OPEN on Chain A.
|
|
706
|
+
* @name MsgChannelOpenConfirm
|
|
707
|
+
* @package ibc.core.channel.v1
|
|
708
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirm
|
|
709
|
+
*/
|
|
663
710
|
export const MsgChannelOpenConfirm = {
|
|
664
711
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenConfirm",
|
|
665
712
|
aminoType: "cosmos-sdk/MsgChannelOpenConfirm",
|
|
@@ -772,6 +819,13 @@ export const MsgChannelOpenConfirm = {
|
|
|
772
819
|
function createBaseMsgChannelOpenConfirmResponse() {
|
|
773
820
|
return {};
|
|
774
821
|
}
|
|
822
|
+
/**
|
|
823
|
+
* MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response
|
|
824
|
+
* type.
|
|
825
|
+
* @name MsgChannelOpenConfirmResponse
|
|
826
|
+
* @package ibc.core.channel.v1
|
|
827
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirmResponse
|
|
828
|
+
*/
|
|
775
829
|
export const MsgChannelOpenConfirmResponse = {
|
|
776
830
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenConfirmResponse",
|
|
777
831
|
aminoType: "cosmos-sdk/MsgChannelOpenConfirmResponse",
|
|
@@ -833,6 +887,13 @@ function createBaseMsgChannelCloseInit() {
|
|
|
833
887
|
signer: ""
|
|
834
888
|
};
|
|
835
889
|
}
|
|
890
|
+
/**
|
|
891
|
+
* MsgChannelCloseInit defines a msg sent by a Relayer to Chain A
|
|
892
|
+
* to close a channel with Chain B.
|
|
893
|
+
* @name MsgChannelCloseInit
|
|
894
|
+
* @package ibc.core.channel.v1
|
|
895
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInit
|
|
896
|
+
*/
|
|
836
897
|
export const MsgChannelCloseInit = {
|
|
837
898
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseInit",
|
|
838
899
|
aminoType: "cosmos-sdk/MsgChannelCloseInit",
|
|
@@ -923,6 +984,12 @@ export const MsgChannelCloseInit = {
|
|
|
923
984
|
function createBaseMsgChannelCloseInitResponse() {
|
|
924
985
|
return {};
|
|
925
986
|
}
|
|
987
|
+
/**
|
|
988
|
+
* MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type.
|
|
989
|
+
* @name MsgChannelCloseInitResponse
|
|
990
|
+
* @package ibc.core.channel.v1
|
|
991
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInitResponse
|
|
992
|
+
*/
|
|
926
993
|
export const MsgChannelCloseInitResponse = {
|
|
927
994
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseInitResponse",
|
|
928
995
|
aminoType: "cosmos-sdk/MsgChannelCloseInitResponse",
|
|
@@ -986,6 +1053,13 @@ function createBaseMsgChannelCloseConfirm() {
|
|
|
986
1053
|
signer: ""
|
|
987
1054
|
};
|
|
988
1055
|
}
|
|
1056
|
+
/**
|
|
1057
|
+
* MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B
|
|
1058
|
+
* to acknowledge the change of channel state to CLOSED on Chain A.
|
|
1059
|
+
* @name MsgChannelCloseConfirm
|
|
1060
|
+
* @package ibc.core.channel.v1
|
|
1061
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirm
|
|
1062
|
+
*/
|
|
989
1063
|
export const MsgChannelCloseConfirm = {
|
|
990
1064
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseConfirm",
|
|
991
1065
|
aminoType: "cosmos-sdk/MsgChannelCloseConfirm",
|
|
@@ -1098,6 +1172,13 @@ export const MsgChannelCloseConfirm = {
|
|
|
1098
1172
|
function createBaseMsgChannelCloseConfirmResponse() {
|
|
1099
1173
|
return {};
|
|
1100
1174
|
}
|
|
1175
|
+
/**
|
|
1176
|
+
* MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response
|
|
1177
|
+
* type.
|
|
1178
|
+
* @name MsgChannelCloseConfirmResponse
|
|
1179
|
+
* @package ibc.core.channel.v1
|
|
1180
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirmResponse
|
|
1181
|
+
*/
|
|
1101
1182
|
export const MsgChannelCloseConfirmResponse = {
|
|
1102
1183
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseConfirmResponse",
|
|
1103
1184
|
aminoType: "cosmos-sdk/MsgChannelCloseConfirmResponse",
|
|
@@ -1160,6 +1241,12 @@ function createBaseMsgRecvPacket() {
|
|
|
1160
1241
|
signer: ""
|
|
1161
1242
|
};
|
|
1162
1243
|
}
|
|
1244
|
+
/**
|
|
1245
|
+
* MsgRecvPacket receives incoming IBC packet
|
|
1246
|
+
* @name MsgRecvPacket
|
|
1247
|
+
* @package ibc.core.channel.v1
|
|
1248
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacket
|
|
1249
|
+
*/
|
|
1163
1250
|
export const MsgRecvPacket = {
|
|
1164
1251
|
typeUrl: "/ibc.core.channel.v1.MsgRecvPacket",
|
|
1165
1252
|
aminoType: "cosmos-sdk/MsgRecvPacket",
|
|
@@ -1263,6 +1350,12 @@ function createBaseMsgRecvPacketResponse() {
|
|
|
1263
1350
|
result: 0
|
|
1264
1351
|
};
|
|
1265
1352
|
}
|
|
1353
|
+
/**
|
|
1354
|
+
* MsgRecvPacketResponse defines the Msg/RecvPacket response type.
|
|
1355
|
+
* @name MsgRecvPacketResponse
|
|
1356
|
+
* @package ibc.core.channel.v1
|
|
1357
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacketResponse
|
|
1358
|
+
*/
|
|
1266
1359
|
export const MsgRecvPacketResponse = {
|
|
1267
1360
|
typeUrl: "/ibc.core.channel.v1.MsgRecvPacketResponse",
|
|
1268
1361
|
aminoType: "cosmos-sdk/MsgRecvPacketResponse",
|
|
@@ -1337,6 +1430,12 @@ function createBaseMsgTimeout() {
|
|
|
1337
1430
|
signer: ""
|
|
1338
1431
|
};
|
|
1339
1432
|
}
|
|
1433
|
+
/**
|
|
1434
|
+
* MsgTimeout receives timed-out packet
|
|
1435
|
+
* @name MsgTimeout
|
|
1436
|
+
* @package ibc.core.channel.v1
|
|
1437
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeout
|
|
1438
|
+
*/
|
|
1340
1439
|
export const MsgTimeout = {
|
|
1341
1440
|
typeUrl: "/ibc.core.channel.v1.MsgTimeout",
|
|
1342
1441
|
aminoType: "cosmos-sdk/MsgTimeout",
|
|
@@ -1451,6 +1550,12 @@ function createBaseMsgTimeoutResponse() {
|
|
|
1451
1550
|
result: 0
|
|
1452
1551
|
};
|
|
1453
1552
|
}
|
|
1553
|
+
/**
|
|
1554
|
+
* MsgTimeoutResponse defines the Msg/Timeout response type.
|
|
1555
|
+
* @name MsgTimeoutResponse
|
|
1556
|
+
* @package ibc.core.channel.v1
|
|
1557
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutResponse
|
|
1558
|
+
*/
|
|
1454
1559
|
export const MsgTimeoutResponse = {
|
|
1455
1560
|
typeUrl: "/ibc.core.channel.v1.MsgTimeoutResponse",
|
|
1456
1561
|
aminoType: "cosmos-sdk/MsgTimeoutResponse",
|
|
@@ -1526,6 +1631,12 @@ function createBaseMsgTimeoutOnClose() {
|
|
|
1526
1631
|
signer: ""
|
|
1527
1632
|
};
|
|
1528
1633
|
}
|
|
1634
|
+
/**
|
|
1635
|
+
* MsgTimeoutOnClose timed-out packet upon counterparty channel closure.
|
|
1636
|
+
* @name MsgTimeoutOnClose
|
|
1637
|
+
* @package ibc.core.channel.v1
|
|
1638
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnClose
|
|
1639
|
+
*/
|
|
1529
1640
|
export const MsgTimeoutOnClose = {
|
|
1530
1641
|
typeUrl: "/ibc.core.channel.v1.MsgTimeoutOnClose",
|
|
1531
1642
|
aminoType: "cosmos-sdk/MsgTimeoutOnClose",
|
|
@@ -1651,6 +1762,12 @@ function createBaseMsgTimeoutOnCloseResponse() {
|
|
|
1651
1762
|
result: 0
|
|
1652
1763
|
};
|
|
1653
1764
|
}
|
|
1765
|
+
/**
|
|
1766
|
+
* MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type.
|
|
1767
|
+
* @name MsgTimeoutOnCloseResponse
|
|
1768
|
+
* @package ibc.core.channel.v1
|
|
1769
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnCloseResponse
|
|
1770
|
+
*/
|
|
1654
1771
|
export const MsgTimeoutOnCloseResponse = {
|
|
1655
1772
|
typeUrl: "/ibc.core.channel.v1.MsgTimeoutOnCloseResponse",
|
|
1656
1773
|
aminoType: "cosmos-sdk/MsgTimeoutOnCloseResponse",
|
|
@@ -1725,6 +1842,12 @@ function createBaseMsgAcknowledgement() {
|
|
|
1725
1842
|
signer: ""
|
|
1726
1843
|
};
|
|
1727
1844
|
}
|
|
1845
|
+
/**
|
|
1846
|
+
* MsgAcknowledgement receives incoming IBC acknowledgement
|
|
1847
|
+
* @name MsgAcknowledgement
|
|
1848
|
+
* @package ibc.core.channel.v1
|
|
1849
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgement
|
|
1850
|
+
*/
|
|
1728
1851
|
export const MsgAcknowledgement = {
|
|
1729
1852
|
typeUrl: "/ibc.core.channel.v1.MsgAcknowledgement",
|
|
1730
1853
|
aminoType: "cosmos-sdk/MsgAcknowledgement",
|
|
@@ -1839,6 +1962,12 @@ function createBaseMsgAcknowledgementResponse() {
|
|
|
1839
1962
|
result: 0
|
|
1840
1963
|
};
|
|
1841
1964
|
}
|
|
1965
|
+
/**
|
|
1966
|
+
* MsgAcknowledgementResponse defines the Msg/Acknowledgement response type.
|
|
1967
|
+
* @name MsgAcknowledgementResponse
|
|
1968
|
+
* @package ibc.core.channel.v1
|
|
1969
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgementResponse
|
|
1970
|
+
*/
|
|
1842
1971
|
export const MsgAcknowledgementResponse = {
|
|
1843
1972
|
typeUrl: "/ibc.core.channel.v1.MsgAcknowledgementResponse",
|
|
1844
1973
|
aminoType: "cosmos-sdk/MsgAcknowledgementResponse",
|