@sparkdreamnft/sparkdreamjs 0.0.5 → 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 +2284 -2422
- 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/{module.js → v1/module.js} +9 -3
- package/esm/sparkdream/blog/{genesis.js → v1/genesis.js} +9 -3
- package/esm/sparkdream/blog/{params.js → v1/params.js} +9 -3
- package/esm/sparkdream/blog/{post.js → v1/post.js} +9 -3
- package/esm/sparkdream/blog/{query.js → v1/query.js} +50 -14
- package/esm/sparkdream/blog/{query.lcd.js → v1/query.lcd.js} +6 -6
- package/esm/sparkdream/blog/{query.rpc.Query.js → v1/query.rpc.Query.js} +6 -6
- package/esm/sparkdream/blog/{tx.amino.js → v1/tx.amino.js} +7 -7
- package/esm/sparkdream/blog/{tx.js → v1/tx.js} +66 -17
- package/esm/sparkdream/blog/{tx.registry.js → v1/tx.registry.js} +13 -13
- package/esm/sparkdream/blog/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +8 -8
- package/esm/sparkdream/bundle.js +68 -48
- package/esm/sparkdream/client.js +7 -7
- package/esm/sparkdream/lcd.js +10 -6
- package/esm/sparkdream/rpc.query.js +6 -7
- package/esm/sparkdream/rpc.tx.js +6 -2
- package/esm/sparkdream/sparkdream/module/{module.js → v1/module.js} +9 -3
- package/esm/sparkdream/sparkdream/{genesis.js → v1/genesis.js} +9 -3
- package/esm/sparkdream/sparkdream/{params.js → v1/params.js} +9 -3
- package/esm/sparkdream/sparkdream/{query.js → v1/query.js} +17 -5
- package/esm/sparkdream/sparkdream/{query.lcd.js → v1/query.lcd.js} +1 -1
- package/esm/sparkdream/sparkdream/{query.rpc.Query.js → v1/query.rpc.Query.js} +2 -2
- package/esm/sparkdream/sparkdream/{tx.amino.js → v1/tx.amino.js} +1 -1
- package/esm/sparkdream/sparkdream/{tx.js → v1/tx.js} +18 -5
- package/esm/sparkdream/sparkdream/{tx.registry.js → v1/tx.registry.js} +4 -4
- package/esm/sparkdream/sparkdream/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +2 -2
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/bundle.js +20 -20
- 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 +54 -0
- package/sparkdream/{sparkdream/module → blog/module/v1}/module.js +9 -3
- package/sparkdream/{sparkdream → blog/v1}/genesis.d.ts +28 -8
- package/sparkdream/{sparkdream → blog/v1}/genesis.js +9 -3
- package/sparkdream/blog/{params.d.ts → v1/params.d.ts} +21 -5
- package/sparkdream/blog/{params.js → v1/params.js} +9 -3
- package/sparkdream/blog/{post.d.ts → v1/post.d.ts} +22 -4
- package/sparkdream/blog/{post.js → v1/post.js} +9 -3
- package/sparkdream/blog/{query.d.ts → v1/query.d.ts} +129 -21
- package/sparkdream/blog/{query.js → v1/query.js} +50 -14
- package/sparkdream/blog/{query.lcd.js → v1/query.lcd.js} +6 -6
- package/sparkdream/blog/{query.rpc.Query.d.ts → v1/query.rpc.Query.d.ts} +3 -3
- package/sparkdream/blog/{query.rpc.Query.js → v1/query.rpc.Query.js} +6 -6
- package/sparkdream/blog/{tx.amino.d.ts → v1/tx.amino.d.ts} +4 -4
- package/sparkdream/blog/{tx.amino.js → v1/tx.amino.js} +7 -7
- package/sparkdream/blog/{tx.d.ts → v1/tx.d.ts} +168 -23
- package/sparkdream/blog/{tx.js → v1/tx.js} +66 -17
- package/sparkdream/blog/{tx.registry.d.ts → v1/tx.registry.d.ts} +1 -1
- package/sparkdream/blog/{tx.registry.js → v1/tx.registry.js} +13 -13
- package/sparkdream/blog/{tx.rpc.msg.d.ts → v1/tx.rpc.msg.d.ts} +4 -1
- package/sparkdream/blog/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +8 -8
- package/sparkdream/bundle.d.ts +461 -419
- package/sparkdream/bundle.js +68 -48
- package/sparkdream/client.d.ts +15 -15
- package/sparkdream/client.js +7 -7
- package/sparkdream/lcd.d.ts +6 -2
- package/sparkdream/lcd.js +10 -6
- package/sparkdream/rpc.query.d.ts +9 -13
- package/sparkdream/rpc.query.js +6 -7
- package/sparkdream/rpc.tx.d.ts +6 -2
- package/sparkdream/rpc.tx.js +6 -2
- package/sparkdream/sparkdream/module/v1/module.d.ts +54 -0
- package/sparkdream/{blog/module → sparkdream/module/v1}/module.js +9 -3
- package/sparkdream/sparkdream/v1/genesis.d.ts +53 -0
- package/sparkdream/{blog → sparkdream/v1}/genesis.js +9 -3
- package/sparkdream/sparkdream/{params.d.ts → v1/params.d.ts} +21 -5
- package/sparkdream/sparkdream/{params.js → v1/params.js} +9 -3
- package/sparkdream/sparkdream/{query.d.ts → v1/query.d.ts} +48 -12
- package/sparkdream/sparkdream/{query.js → v1/query.js} +17 -5
- package/sparkdream/sparkdream/{query.lcd.js → v1/query.lcd.js} +1 -1
- package/sparkdream/sparkdream/{query.rpc.Query.d.ts → v1/query.rpc.Query.d.ts} +1 -1
- package/sparkdream/sparkdream/{query.rpc.Query.js → v1/query.rpc.Query.js} +2 -2
- package/sparkdream/sparkdream/{tx.amino.d.ts → v1/tx.amino.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.amino.js → v1/tx.amino.js} +1 -1
- package/sparkdream/sparkdream/{tx.d.ts → v1/tx.d.ts} +42 -9
- package/sparkdream/sparkdream/{tx.js → v1/tx.js} +18 -5
- package/sparkdream/sparkdream/{tx.registry.d.ts → v1/tx.registry.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.registry.js → v1/tx.registry.js} +4 -4
- package/sparkdream/sparkdream/{tx.rpc.msg.d.ts → v1/tx.rpc.msg.d.ts} +1 -1
- package/sparkdream/sparkdream/{tx.rpc.msg.js → v1/tx.rpc.msg.js} +2 -2
- 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 +20 -20
- 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
- package/sparkdream/blog/genesis.d.ts +0 -33
- package/sparkdream/blog/module/module.d.ts +0 -32
- package/sparkdream/sparkdream/module/module.d.ts +0 -32
- /package/sparkdream/blog/{query.lcd.d.ts → v1/query.lcd.d.ts} +0 -0
- /package/sparkdream/sparkdream/{query.lcd.d.ts → v1/query.lcd.d.ts} +0 -0
|
@@ -20,6 +20,9 @@ export declare function responseResultTypeToJSON(object: ResponseResultType): st
|
|
|
20
20
|
/**
|
|
21
21
|
* MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It
|
|
22
22
|
* is called by a relayer on Chain A.
|
|
23
|
+
* @name MsgChannelOpenInit
|
|
24
|
+
* @package ibc.core.channel.v1
|
|
25
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInit
|
|
23
26
|
*/
|
|
24
27
|
export interface MsgChannelOpenInit {
|
|
25
28
|
portId: string;
|
|
@@ -33,6 +36,9 @@ export interface MsgChannelOpenInitProtoMsg {
|
|
|
33
36
|
/**
|
|
34
37
|
* MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It
|
|
35
38
|
* is called by a relayer on Chain A.
|
|
39
|
+
* @name MsgChannelOpenInitAmino
|
|
40
|
+
* @package ibc.core.channel.v1
|
|
41
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInit
|
|
36
42
|
*/
|
|
37
43
|
export interface MsgChannelOpenInitAmino {
|
|
38
44
|
port_id?: string;
|
|
@@ -43,7 +49,12 @@ export interface MsgChannelOpenInitAminoMsg {
|
|
|
43
49
|
type: "cosmos-sdk/MsgChannelOpenInit";
|
|
44
50
|
value: MsgChannelOpenInitAmino;
|
|
45
51
|
}
|
|
46
|
-
/**
|
|
52
|
+
/**
|
|
53
|
+
* MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type.
|
|
54
|
+
* @name MsgChannelOpenInitResponse
|
|
55
|
+
* @package ibc.core.channel.v1
|
|
56
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInitResponse
|
|
57
|
+
*/
|
|
47
58
|
export interface MsgChannelOpenInitResponse {
|
|
48
59
|
channelId: string;
|
|
49
60
|
version: string;
|
|
@@ -52,7 +63,12 @@ export interface MsgChannelOpenInitResponseProtoMsg {
|
|
|
52
63
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenInitResponse";
|
|
53
64
|
value: Uint8Array;
|
|
54
65
|
}
|
|
55
|
-
/**
|
|
66
|
+
/**
|
|
67
|
+
* MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type.
|
|
68
|
+
* @name MsgChannelOpenInitResponseAmino
|
|
69
|
+
* @package ibc.core.channel.v1
|
|
70
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInitResponse
|
|
71
|
+
*/
|
|
56
72
|
export interface MsgChannelOpenInitResponseAmino {
|
|
57
73
|
channel_id?: string;
|
|
58
74
|
version?: string;
|
|
@@ -65,13 +81,20 @@ export interface MsgChannelOpenInitResponseAminoMsg {
|
|
|
65
81
|
* MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel
|
|
66
82
|
* on Chain B. The version field within the Channel field has been deprecated. Its
|
|
67
83
|
* value will be ignored by core IBC.
|
|
84
|
+
* @name MsgChannelOpenTry
|
|
85
|
+
* @package ibc.core.channel.v1
|
|
86
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTry
|
|
68
87
|
*/
|
|
69
88
|
export interface MsgChannelOpenTry {
|
|
70
89
|
portId: string;
|
|
71
|
-
/**
|
|
72
|
-
|
|
90
|
+
/**
|
|
91
|
+
* Deprecated: this field is unused. Crossing hello's are no longer supported in core IBC.
|
|
92
|
+
* @deprecated
|
|
93
|
+
*/
|
|
73
94
|
previousChannelId: string;
|
|
74
|
-
/**
|
|
95
|
+
/**
|
|
96
|
+
* NOTE: the version field within the channel has been deprecated. Its value will be ignored by core IBC.
|
|
97
|
+
*/
|
|
75
98
|
channel: Channel;
|
|
76
99
|
counterpartyVersion: string;
|
|
77
100
|
proofInit: Uint8Array;
|
|
@@ -86,13 +109,20 @@ export interface MsgChannelOpenTryProtoMsg {
|
|
|
86
109
|
* MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel
|
|
87
110
|
* on Chain B. The version field within the Channel field has been deprecated. Its
|
|
88
111
|
* value will be ignored by core IBC.
|
|
112
|
+
* @name MsgChannelOpenTryAmino
|
|
113
|
+
* @package ibc.core.channel.v1
|
|
114
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTry
|
|
89
115
|
*/
|
|
90
116
|
export interface MsgChannelOpenTryAmino {
|
|
91
117
|
port_id?: string;
|
|
92
|
-
/**
|
|
93
|
-
|
|
118
|
+
/**
|
|
119
|
+
* Deprecated: this field is unused. Crossing hello's are no longer supported in core IBC.
|
|
120
|
+
* @deprecated
|
|
121
|
+
*/
|
|
94
122
|
previous_channel_id?: string;
|
|
95
|
-
/**
|
|
123
|
+
/**
|
|
124
|
+
* NOTE: the version field within the channel has been deprecated. Its value will be ignored by core IBC.
|
|
125
|
+
*/
|
|
96
126
|
channel?: ChannelAmino;
|
|
97
127
|
counterparty_version?: string;
|
|
98
128
|
proof_init?: string;
|
|
@@ -103,7 +133,12 @@ export interface MsgChannelOpenTryAminoMsg {
|
|
|
103
133
|
type: "cosmos-sdk/MsgChannelOpenTry";
|
|
104
134
|
value: MsgChannelOpenTryAmino;
|
|
105
135
|
}
|
|
106
|
-
/**
|
|
136
|
+
/**
|
|
137
|
+
* MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type.
|
|
138
|
+
* @name MsgChannelOpenTryResponse
|
|
139
|
+
* @package ibc.core.channel.v1
|
|
140
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTryResponse
|
|
141
|
+
*/
|
|
107
142
|
export interface MsgChannelOpenTryResponse {
|
|
108
143
|
version: string;
|
|
109
144
|
channelId: string;
|
|
@@ -112,7 +147,12 @@ export interface MsgChannelOpenTryResponseProtoMsg {
|
|
|
112
147
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenTryResponse";
|
|
113
148
|
value: Uint8Array;
|
|
114
149
|
}
|
|
115
|
-
/**
|
|
150
|
+
/**
|
|
151
|
+
* MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type.
|
|
152
|
+
* @name MsgChannelOpenTryResponseAmino
|
|
153
|
+
* @package ibc.core.channel.v1
|
|
154
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTryResponse
|
|
155
|
+
*/
|
|
116
156
|
export interface MsgChannelOpenTryResponseAmino {
|
|
117
157
|
version?: string;
|
|
118
158
|
channel_id?: string;
|
|
@@ -124,6 +164,9 @@ export interface MsgChannelOpenTryResponseAminoMsg {
|
|
|
124
164
|
/**
|
|
125
165
|
* MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge
|
|
126
166
|
* the change of channel state to TRYOPEN on Chain B.
|
|
167
|
+
* @name MsgChannelOpenAck
|
|
168
|
+
* @package ibc.core.channel.v1
|
|
169
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAck
|
|
127
170
|
*/
|
|
128
171
|
export interface MsgChannelOpenAck {
|
|
129
172
|
portId: string;
|
|
@@ -141,6 +184,9 @@ export interface MsgChannelOpenAckProtoMsg {
|
|
|
141
184
|
/**
|
|
142
185
|
* MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge
|
|
143
186
|
* the change of channel state to TRYOPEN on Chain B.
|
|
187
|
+
* @name MsgChannelOpenAckAmino
|
|
188
|
+
* @package ibc.core.channel.v1
|
|
189
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAck
|
|
144
190
|
*/
|
|
145
191
|
export interface MsgChannelOpenAckAmino {
|
|
146
192
|
port_id?: string;
|
|
@@ -155,14 +201,24 @@ export interface MsgChannelOpenAckAminoMsg {
|
|
|
155
201
|
type: "cosmos-sdk/MsgChannelOpenAck";
|
|
156
202
|
value: MsgChannelOpenAckAmino;
|
|
157
203
|
}
|
|
158
|
-
/**
|
|
204
|
+
/**
|
|
205
|
+
* MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type.
|
|
206
|
+
* @name MsgChannelOpenAckResponse
|
|
207
|
+
* @package ibc.core.channel.v1
|
|
208
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAckResponse
|
|
209
|
+
*/
|
|
159
210
|
export interface MsgChannelOpenAckResponse {
|
|
160
211
|
}
|
|
161
212
|
export interface MsgChannelOpenAckResponseProtoMsg {
|
|
162
213
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenAckResponse";
|
|
163
214
|
value: Uint8Array;
|
|
164
215
|
}
|
|
165
|
-
/**
|
|
216
|
+
/**
|
|
217
|
+
* MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type.
|
|
218
|
+
* @name MsgChannelOpenAckResponseAmino
|
|
219
|
+
* @package ibc.core.channel.v1
|
|
220
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAckResponse
|
|
221
|
+
*/
|
|
166
222
|
export interface MsgChannelOpenAckResponseAmino {
|
|
167
223
|
}
|
|
168
224
|
export interface MsgChannelOpenAckResponseAminoMsg {
|
|
@@ -172,6 +228,9 @@ export interface MsgChannelOpenAckResponseAminoMsg {
|
|
|
172
228
|
/**
|
|
173
229
|
* MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to
|
|
174
230
|
* acknowledge the change of channel state to OPEN on Chain A.
|
|
231
|
+
* @name MsgChannelOpenConfirm
|
|
232
|
+
* @package ibc.core.channel.v1
|
|
233
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirm
|
|
175
234
|
*/
|
|
176
235
|
export interface MsgChannelOpenConfirm {
|
|
177
236
|
portId: string;
|
|
@@ -187,6 +246,9 @@ export interface MsgChannelOpenConfirmProtoMsg {
|
|
|
187
246
|
/**
|
|
188
247
|
* MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to
|
|
189
248
|
* acknowledge the change of channel state to OPEN on Chain A.
|
|
249
|
+
* @name MsgChannelOpenConfirmAmino
|
|
250
|
+
* @package ibc.core.channel.v1
|
|
251
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirm
|
|
190
252
|
*/
|
|
191
253
|
export interface MsgChannelOpenConfirmAmino {
|
|
192
254
|
port_id?: string;
|
|
@@ -202,6 +264,9 @@ export interface MsgChannelOpenConfirmAminoMsg {
|
|
|
202
264
|
/**
|
|
203
265
|
* MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response
|
|
204
266
|
* type.
|
|
267
|
+
* @name MsgChannelOpenConfirmResponse
|
|
268
|
+
* @package ibc.core.channel.v1
|
|
269
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirmResponse
|
|
205
270
|
*/
|
|
206
271
|
export interface MsgChannelOpenConfirmResponse {
|
|
207
272
|
}
|
|
@@ -212,6 +277,9 @@ export interface MsgChannelOpenConfirmResponseProtoMsg {
|
|
|
212
277
|
/**
|
|
213
278
|
* MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response
|
|
214
279
|
* type.
|
|
280
|
+
* @name MsgChannelOpenConfirmResponseAmino
|
|
281
|
+
* @package ibc.core.channel.v1
|
|
282
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirmResponse
|
|
215
283
|
*/
|
|
216
284
|
export interface MsgChannelOpenConfirmResponseAmino {
|
|
217
285
|
}
|
|
@@ -222,6 +290,9 @@ export interface MsgChannelOpenConfirmResponseAminoMsg {
|
|
|
222
290
|
/**
|
|
223
291
|
* MsgChannelCloseInit defines a msg sent by a Relayer to Chain A
|
|
224
292
|
* to close a channel with Chain B.
|
|
293
|
+
* @name MsgChannelCloseInit
|
|
294
|
+
* @package ibc.core.channel.v1
|
|
295
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInit
|
|
225
296
|
*/
|
|
226
297
|
export interface MsgChannelCloseInit {
|
|
227
298
|
portId: string;
|
|
@@ -235,6 +306,9 @@ export interface MsgChannelCloseInitProtoMsg {
|
|
|
235
306
|
/**
|
|
236
307
|
* MsgChannelCloseInit defines a msg sent by a Relayer to Chain A
|
|
237
308
|
* to close a channel with Chain B.
|
|
309
|
+
* @name MsgChannelCloseInitAmino
|
|
310
|
+
* @package ibc.core.channel.v1
|
|
311
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInit
|
|
238
312
|
*/
|
|
239
313
|
export interface MsgChannelCloseInitAmino {
|
|
240
314
|
port_id?: string;
|
|
@@ -245,14 +319,24 @@ export interface MsgChannelCloseInitAminoMsg {
|
|
|
245
319
|
type: "cosmos-sdk/MsgChannelCloseInit";
|
|
246
320
|
value: MsgChannelCloseInitAmino;
|
|
247
321
|
}
|
|
248
|
-
/**
|
|
322
|
+
/**
|
|
323
|
+
* MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type.
|
|
324
|
+
* @name MsgChannelCloseInitResponse
|
|
325
|
+
* @package ibc.core.channel.v1
|
|
326
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInitResponse
|
|
327
|
+
*/
|
|
249
328
|
export interface MsgChannelCloseInitResponse {
|
|
250
329
|
}
|
|
251
330
|
export interface MsgChannelCloseInitResponseProtoMsg {
|
|
252
331
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseInitResponse";
|
|
253
332
|
value: Uint8Array;
|
|
254
333
|
}
|
|
255
|
-
/**
|
|
334
|
+
/**
|
|
335
|
+
* MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type.
|
|
336
|
+
* @name MsgChannelCloseInitResponseAmino
|
|
337
|
+
* @package ibc.core.channel.v1
|
|
338
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInitResponse
|
|
339
|
+
*/
|
|
256
340
|
export interface MsgChannelCloseInitResponseAmino {
|
|
257
341
|
}
|
|
258
342
|
export interface MsgChannelCloseInitResponseAminoMsg {
|
|
@@ -262,6 +346,9 @@ export interface MsgChannelCloseInitResponseAminoMsg {
|
|
|
262
346
|
/**
|
|
263
347
|
* MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B
|
|
264
348
|
* to acknowledge the change of channel state to CLOSED on Chain A.
|
|
349
|
+
* @name MsgChannelCloseConfirm
|
|
350
|
+
* @package ibc.core.channel.v1
|
|
351
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirm
|
|
265
352
|
*/
|
|
266
353
|
export interface MsgChannelCloseConfirm {
|
|
267
354
|
portId: string;
|
|
@@ -277,6 +364,9 @@ export interface MsgChannelCloseConfirmProtoMsg {
|
|
|
277
364
|
/**
|
|
278
365
|
* MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B
|
|
279
366
|
* to acknowledge the change of channel state to CLOSED on Chain A.
|
|
367
|
+
* @name MsgChannelCloseConfirmAmino
|
|
368
|
+
* @package ibc.core.channel.v1
|
|
369
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirm
|
|
280
370
|
*/
|
|
281
371
|
export interface MsgChannelCloseConfirmAmino {
|
|
282
372
|
port_id?: string;
|
|
@@ -292,6 +382,9 @@ export interface MsgChannelCloseConfirmAminoMsg {
|
|
|
292
382
|
/**
|
|
293
383
|
* MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response
|
|
294
384
|
* type.
|
|
385
|
+
* @name MsgChannelCloseConfirmResponse
|
|
386
|
+
* @package ibc.core.channel.v1
|
|
387
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirmResponse
|
|
295
388
|
*/
|
|
296
389
|
export interface MsgChannelCloseConfirmResponse {
|
|
297
390
|
}
|
|
@@ -302,6 +395,9 @@ export interface MsgChannelCloseConfirmResponseProtoMsg {
|
|
|
302
395
|
/**
|
|
303
396
|
* MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response
|
|
304
397
|
* type.
|
|
398
|
+
* @name MsgChannelCloseConfirmResponseAmino
|
|
399
|
+
* @package ibc.core.channel.v1
|
|
400
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirmResponse
|
|
305
401
|
*/
|
|
306
402
|
export interface MsgChannelCloseConfirmResponseAmino {
|
|
307
403
|
}
|
|
@@ -309,7 +405,12 @@ export interface MsgChannelCloseConfirmResponseAminoMsg {
|
|
|
309
405
|
type: "cosmos-sdk/MsgChannelCloseConfirmResponse";
|
|
310
406
|
value: MsgChannelCloseConfirmResponseAmino;
|
|
311
407
|
}
|
|
312
|
-
/**
|
|
408
|
+
/**
|
|
409
|
+
* MsgRecvPacket receives incoming IBC packet
|
|
410
|
+
* @name MsgRecvPacket
|
|
411
|
+
* @package ibc.core.channel.v1
|
|
412
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacket
|
|
413
|
+
*/
|
|
313
414
|
export interface MsgRecvPacket {
|
|
314
415
|
packet: Packet;
|
|
315
416
|
proofCommitment: Uint8Array;
|
|
@@ -320,7 +421,12 @@ export interface MsgRecvPacketProtoMsg {
|
|
|
320
421
|
typeUrl: "/ibc.core.channel.v1.MsgRecvPacket";
|
|
321
422
|
value: Uint8Array;
|
|
322
423
|
}
|
|
323
|
-
/**
|
|
424
|
+
/**
|
|
425
|
+
* MsgRecvPacket receives incoming IBC packet
|
|
426
|
+
* @name MsgRecvPacketAmino
|
|
427
|
+
* @package ibc.core.channel.v1
|
|
428
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacket
|
|
429
|
+
*/
|
|
324
430
|
export interface MsgRecvPacketAmino {
|
|
325
431
|
packet?: PacketAmino;
|
|
326
432
|
proof_commitment?: string;
|
|
@@ -331,7 +437,12 @@ export interface MsgRecvPacketAminoMsg {
|
|
|
331
437
|
type: "cosmos-sdk/MsgRecvPacket";
|
|
332
438
|
value: MsgRecvPacketAmino;
|
|
333
439
|
}
|
|
334
|
-
/**
|
|
440
|
+
/**
|
|
441
|
+
* MsgRecvPacketResponse defines the Msg/RecvPacket response type.
|
|
442
|
+
* @name MsgRecvPacketResponse
|
|
443
|
+
* @package ibc.core.channel.v1
|
|
444
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacketResponse
|
|
445
|
+
*/
|
|
335
446
|
export interface MsgRecvPacketResponse {
|
|
336
447
|
result: ResponseResultType;
|
|
337
448
|
}
|
|
@@ -339,7 +450,12 @@ export interface MsgRecvPacketResponseProtoMsg {
|
|
|
339
450
|
typeUrl: "/ibc.core.channel.v1.MsgRecvPacketResponse";
|
|
340
451
|
value: Uint8Array;
|
|
341
452
|
}
|
|
342
|
-
/**
|
|
453
|
+
/**
|
|
454
|
+
* MsgRecvPacketResponse defines the Msg/RecvPacket response type.
|
|
455
|
+
* @name MsgRecvPacketResponseAmino
|
|
456
|
+
* @package ibc.core.channel.v1
|
|
457
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacketResponse
|
|
458
|
+
*/
|
|
343
459
|
export interface MsgRecvPacketResponseAmino {
|
|
344
460
|
result?: ResponseResultType;
|
|
345
461
|
}
|
|
@@ -347,7 +463,12 @@ export interface MsgRecvPacketResponseAminoMsg {
|
|
|
347
463
|
type: "cosmos-sdk/MsgRecvPacketResponse";
|
|
348
464
|
value: MsgRecvPacketResponseAmino;
|
|
349
465
|
}
|
|
350
|
-
/**
|
|
466
|
+
/**
|
|
467
|
+
* MsgTimeout receives timed-out packet
|
|
468
|
+
* @name MsgTimeout
|
|
469
|
+
* @package ibc.core.channel.v1
|
|
470
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeout
|
|
471
|
+
*/
|
|
351
472
|
export interface MsgTimeout {
|
|
352
473
|
packet: Packet;
|
|
353
474
|
proofUnreceived: Uint8Array;
|
|
@@ -359,7 +480,12 @@ export interface MsgTimeoutProtoMsg {
|
|
|
359
480
|
typeUrl: "/ibc.core.channel.v1.MsgTimeout";
|
|
360
481
|
value: Uint8Array;
|
|
361
482
|
}
|
|
362
|
-
/**
|
|
483
|
+
/**
|
|
484
|
+
* MsgTimeout receives timed-out packet
|
|
485
|
+
* @name MsgTimeoutAmino
|
|
486
|
+
* @package ibc.core.channel.v1
|
|
487
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeout
|
|
488
|
+
*/
|
|
363
489
|
export interface MsgTimeoutAmino {
|
|
364
490
|
packet?: PacketAmino;
|
|
365
491
|
proof_unreceived?: string;
|
|
@@ -371,7 +497,12 @@ export interface MsgTimeoutAminoMsg {
|
|
|
371
497
|
type: "cosmos-sdk/MsgTimeout";
|
|
372
498
|
value: MsgTimeoutAmino;
|
|
373
499
|
}
|
|
374
|
-
/**
|
|
500
|
+
/**
|
|
501
|
+
* MsgTimeoutResponse defines the Msg/Timeout response type.
|
|
502
|
+
* @name MsgTimeoutResponse
|
|
503
|
+
* @package ibc.core.channel.v1
|
|
504
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutResponse
|
|
505
|
+
*/
|
|
375
506
|
export interface MsgTimeoutResponse {
|
|
376
507
|
result: ResponseResultType;
|
|
377
508
|
}
|
|
@@ -379,7 +510,12 @@ export interface MsgTimeoutResponseProtoMsg {
|
|
|
379
510
|
typeUrl: "/ibc.core.channel.v1.MsgTimeoutResponse";
|
|
380
511
|
value: Uint8Array;
|
|
381
512
|
}
|
|
382
|
-
/**
|
|
513
|
+
/**
|
|
514
|
+
* MsgTimeoutResponse defines the Msg/Timeout response type.
|
|
515
|
+
* @name MsgTimeoutResponseAmino
|
|
516
|
+
* @package ibc.core.channel.v1
|
|
517
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutResponse
|
|
518
|
+
*/
|
|
383
519
|
export interface MsgTimeoutResponseAmino {
|
|
384
520
|
result?: ResponseResultType;
|
|
385
521
|
}
|
|
@@ -387,7 +523,12 @@ export interface MsgTimeoutResponseAminoMsg {
|
|
|
387
523
|
type: "cosmos-sdk/MsgTimeoutResponse";
|
|
388
524
|
value: MsgTimeoutResponseAmino;
|
|
389
525
|
}
|
|
390
|
-
/**
|
|
526
|
+
/**
|
|
527
|
+
* MsgTimeoutOnClose timed-out packet upon counterparty channel closure.
|
|
528
|
+
* @name MsgTimeoutOnClose
|
|
529
|
+
* @package ibc.core.channel.v1
|
|
530
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnClose
|
|
531
|
+
*/
|
|
391
532
|
export interface MsgTimeoutOnClose {
|
|
392
533
|
packet: Packet;
|
|
393
534
|
proofUnreceived: Uint8Array;
|
|
@@ -400,7 +541,12 @@ export interface MsgTimeoutOnCloseProtoMsg {
|
|
|
400
541
|
typeUrl: "/ibc.core.channel.v1.MsgTimeoutOnClose";
|
|
401
542
|
value: Uint8Array;
|
|
402
543
|
}
|
|
403
|
-
/**
|
|
544
|
+
/**
|
|
545
|
+
* MsgTimeoutOnClose timed-out packet upon counterparty channel closure.
|
|
546
|
+
* @name MsgTimeoutOnCloseAmino
|
|
547
|
+
* @package ibc.core.channel.v1
|
|
548
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnClose
|
|
549
|
+
*/
|
|
404
550
|
export interface MsgTimeoutOnCloseAmino {
|
|
405
551
|
packet?: PacketAmino;
|
|
406
552
|
proof_unreceived?: string;
|
|
@@ -413,7 +559,12 @@ export interface MsgTimeoutOnCloseAminoMsg {
|
|
|
413
559
|
type: "cosmos-sdk/MsgTimeoutOnClose";
|
|
414
560
|
value: MsgTimeoutOnCloseAmino;
|
|
415
561
|
}
|
|
416
|
-
/**
|
|
562
|
+
/**
|
|
563
|
+
* MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type.
|
|
564
|
+
* @name MsgTimeoutOnCloseResponse
|
|
565
|
+
* @package ibc.core.channel.v1
|
|
566
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnCloseResponse
|
|
567
|
+
*/
|
|
417
568
|
export interface MsgTimeoutOnCloseResponse {
|
|
418
569
|
result: ResponseResultType;
|
|
419
570
|
}
|
|
@@ -421,7 +572,12 @@ export interface MsgTimeoutOnCloseResponseProtoMsg {
|
|
|
421
572
|
typeUrl: "/ibc.core.channel.v1.MsgTimeoutOnCloseResponse";
|
|
422
573
|
value: Uint8Array;
|
|
423
574
|
}
|
|
424
|
-
/**
|
|
575
|
+
/**
|
|
576
|
+
* MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type.
|
|
577
|
+
* @name MsgTimeoutOnCloseResponseAmino
|
|
578
|
+
* @package ibc.core.channel.v1
|
|
579
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnCloseResponse
|
|
580
|
+
*/
|
|
425
581
|
export interface MsgTimeoutOnCloseResponseAmino {
|
|
426
582
|
result?: ResponseResultType;
|
|
427
583
|
}
|
|
@@ -429,7 +585,12 @@ export interface MsgTimeoutOnCloseResponseAminoMsg {
|
|
|
429
585
|
type: "cosmos-sdk/MsgTimeoutOnCloseResponse";
|
|
430
586
|
value: MsgTimeoutOnCloseResponseAmino;
|
|
431
587
|
}
|
|
432
|
-
/**
|
|
588
|
+
/**
|
|
589
|
+
* MsgAcknowledgement receives incoming IBC acknowledgement
|
|
590
|
+
* @name MsgAcknowledgement
|
|
591
|
+
* @package ibc.core.channel.v1
|
|
592
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgement
|
|
593
|
+
*/
|
|
433
594
|
export interface MsgAcknowledgement {
|
|
434
595
|
packet: Packet;
|
|
435
596
|
acknowledgement: Uint8Array;
|
|
@@ -441,7 +602,12 @@ export interface MsgAcknowledgementProtoMsg {
|
|
|
441
602
|
typeUrl: "/ibc.core.channel.v1.MsgAcknowledgement";
|
|
442
603
|
value: Uint8Array;
|
|
443
604
|
}
|
|
444
|
-
/**
|
|
605
|
+
/**
|
|
606
|
+
* MsgAcknowledgement receives incoming IBC acknowledgement
|
|
607
|
+
* @name MsgAcknowledgementAmino
|
|
608
|
+
* @package ibc.core.channel.v1
|
|
609
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgement
|
|
610
|
+
*/
|
|
445
611
|
export interface MsgAcknowledgementAmino {
|
|
446
612
|
packet?: PacketAmino;
|
|
447
613
|
acknowledgement?: string;
|
|
@@ -453,7 +619,12 @@ export interface MsgAcknowledgementAminoMsg {
|
|
|
453
619
|
type: "cosmos-sdk/MsgAcknowledgement";
|
|
454
620
|
value: MsgAcknowledgementAmino;
|
|
455
621
|
}
|
|
456
|
-
/**
|
|
622
|
+
/**
|
|
623
|
+
* MsgAcknowledgementResponse defines the Msg/Acknowledgement response type.
|
|
624
|
+
* @name MsgAcknowledgementResponse
|
|
625
|
+
* @package ibc.core.channel.v1
|
|
626
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgementResponse
|
|
627
|
+
*/
|
|
457
628
|
export interface MsgAcknowledgementResponse {
|
|
458
629
|
result: ResponseResultType;
|
|
459
630
|
}
|
|
@@ -461,7 +632,12 @@ export interface MsgAcknowledgementResponseProtoMsg {
|
|
|
461
632
|
typeUrl: "/ibc.core.channel.v1.MsgAcknowledgementResponse";
|
|
462
633
|
value: Uint8Array;
|
|
463
634
|
}
|
|
464
|
-
/**
|
|
635
|
+
/**
|
|
636
|
+
* MsgAcknowledgementResponse defines the Msg/Acknowledgement response type.
|
|
637
|
+
* @name MsgAcknowledgementResponseAmino
|
|
638
|
+
* @package ibc.core.channel.v1
|
|
639
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgementResponse
|
|
640
|
+
*/
|
|
465
641
|
export interface MsgAcknowledgementResponseAmino {
|
|
466
642
|
result?: ResponseResultType;
|
|
467
643
|
}
|
|
@@ -469,6 +645,13 @@ export interface MsgAcknowledgementResponseAminoMsg {
|
|
|
469
645
|
type: "cosmos-sdk/MsgAcknowledgementResponse";
|
|
470
646
|
value: MsgAcknowledgementResponseAmino;
|
|
471
647
|
}
|
|
648
|
+
/**
|
|
649
|
+
* MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It
|
|
650
|
+
* is called by a relayer on Chain A.
|
|
651
|
+
* @name MsgChannelOpenInit
|
|
652
|
+
* @package ibc.core.channel.v1
|
|
653
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInit
|
|
654
|
+
*/
|
|
472
655
|
export declare const MsgChannelOpenInit: {
|
|
473
656
|
typeUrl: string;
|
|
474
657
|
aminoType: string;
|
|
@@ -483,6 +666,12 @@ export declare const MsgChannelOpenInit: {
|
|
|
483
666
|
toProto(message: MsgChannelOpenInit): Uint8Array;
|
|
484
667
|
toProtoMsg(message: MsgChannelOpenInit): MsgChannelOpenInitProtoMsg;
|
|
485
668
|
};
|
|
669
|
+
/**
|
|
670
|
+
* MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type.
|
|
671
|
+
* @name MsgChannelOpenInitResponse
|
|
672
|
+
* @package ibc.core.channel.v1
|
|
673
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInitResponse
|
|
674
|
+
*/
|
|
486
675
|
export declare const MsgChannelOpenInitResponse: {
|
|
487
676
|
typeUrl: string;
|
|
488
677
|
aminoType: string;
|
|
@@ -497,6 +686,14 @@ export declare const MsgChannelOpenInitResponse: {
|
|
|
497
686
|
toProto(message: MsgChannelOpenInitResponse): Uint8Array;
|
|
498
687
|
toProtoMsg(message: MsgChannelOpenInitResponse): MsgChannelOpenInitResponseProtoMsg;
|
|
499
688
|
};
|
|
689
|
+
/**
|
|
690
|
+
* MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel
|
|
691
|
+
* on Chain B. The version field within the Channel field has been deprecated. Its
|
|
692
|
+
* value will be ignored by core IBC.
|
|
693
|
+
* @name MsgChannelOpenTry
|
|
694
|
+
* @package ibc.core.channel.v1
|
|
695
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTry
|
|
696
|
+
*/
|
|
500
697
|
export declare const MsgChannelOpenTry: {
|
|
501
698
|
typeUrl: string;
|
|
502
699
|
aminoType: string;
|
|
@@ -511,6 +708,12 @@ export declare const MsgChannelOpenTry: {
|
|
|
511
708
|
toProto(message: MsgChannelOpenTry): Uint8Array;
|
|
512
709
|
toProtoMsg(message: MsgChannelOpenTry): MsgChannelOpenTryProtoMsg;
|
|
513
710
|
};
|
|
711
|
+
/**
|
|
712
|
+
* MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type.
|
|
713
|
+
* @name MsgChannelOpenTryResponse
|
|
714
|
+
* @package ibc.core.channel.v1
|
|
715
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTryResponse
|
|
716
|
+
*/
|
|
514
717
|
export declare const MsgChannelOpenTryResponse: {
|
|
515
718
|
typeUrl: string;
|
|
516
719
|
aminoType: string;
|
|
@@ -525,6 +728,13 @@ export declare const MsgChannelOpenTryResponse: {
|
|
|
525
728
|
toProto(message: MsgChannelOpenTryResponse): Uint8Array;
|
|
526
729
|
toProtoMsg(message: MsgChannelOpenTryResponse): MsgChannelOpenTryResponseProtoMsg;
|
|
527
730
|
};
|
|
731
|
+
/**
|
|
732
|
+
* MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge
|
|
733
|
+
* the change of channel state to TRYOPEN on Chain B.
|
|
734
|
+
* @name MsgChannelOpenAck
|
|
735
|
+
* @package ibc.core.channel.v1
|
|
736
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAck
|
|
737
|
+
*/
|
|
528
738
|
export declare const MsgChannelOpenAck: {
|
|
529
739
|
typeUrl: string;
|
|
530
740
|
aminoType: string;
|
|
@@ -539,6 +749,12 @@ export declare const MsgChannelOpenAck: {
|
|
|
539
749
|
toProto(message: MsgChannelOpenAck): Uint8Array;
|
|
540
750
|
toProtoMsg(message: MsgChannelOpenAck): MsgChannelOpenAckProtoMsg;
|
|
541
751
|
};
|
|
752
|
+
/**
|
|
753
|
+
* MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type.
|
|
754
|
+
* @name MsgChannelOpenAckResponse
|
|
755
|
+
* @package ibc.core.channel.v1
|
|
756
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAckResponse
|
|
757
|
+
*/
|
|
542
758
|
export declare const MsgChannelOpenAckResponse: {
|
|
543
759
|
typeUrl: string;
|
|
544
760
|
aminoType: string;
|
|
@@ -553,6 +769,13 @@ export declare const MsgChannelOpenAckResponse: {
|
|
|
553
769
|
toProto(message: MsgChannelOpenAckResponse): Uint8Array;
|
|
554
770
|
toProtoMsg(message: MsgChannelOpenAckResponse): MsgChannelOpenAckResponseProtoMsg;
|
|
555
771
|
};
|
|
772
|
+
/**
|
|
773
|
+
* MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to
|
|
774
|
+
* acknowledge the change of channel state to OPEN on Chain A.
|
|
775
|
+
* @name MsgChannelOpenConfirm
|
|
776
|
+
* @package ibc.core.channel.v1
|
|
777
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirm
|
|
778
|
+
*/
|
|
556
779
|
export declare const MsgChannelOpenConfirm: {
|
|
557
780
|
typeUrl: string;
|
|
558
781
|
aminoType: string;
|
|
@@ -567,6 +790,13 @@ export declare const MsgChannelOpenConfirm: {
|
|
|
567
790
|
toProto(message: MsgChannelOpenConfirm): Uint8Array;
|
|
568
791
|
toProtoMsg(message: MsgChannelOpenConfirm): MsgChannelOpenConfirmProtoMsg;
|
|
569
792
|
};
|
|
793
|
+
/**
|
|
794
|
+
* MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response
|
|
795
|
+
* type.
|
|
796
|
+
* @name MsgChannelOpenConfirmResponse
|
|
797
|
+
* @package ibc.core.channel.v1
|
|
798
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirmResponse
|
|
799
|
+
*/
|
|
570
800
|
export declare const MsgChannelOpenConfirmResponse: {
|
|
571
801
|
typeUrl: string;
|
|
572
802
|
aminoType: string;
|
|
@@ -581,6 +811,13 @@ export declare const MsgChannelOpenConfirmResponse: {
|
|
|
581
811
|
toProto(message: MsgChannelOpenConfirmResponse): Uint8Array;
|
|
582
812
|
toProtoMsg(message: MsgChannelOpenConfirmResponse): MsgChannelOpenConfirmResponseProtoMsg;
|
|
583
813
|
};
|
|
814
|
+
/**
|
|
815
|
+
* MsgChannelCloseInit defines a msg sent by a Relayer to Chain A
|
|
816
|
+
* to close a channel with Chain B.
|
|
817
|
+
* @name MsgChannelCloseInit
|
|
818
|
+
* @package ibc.core.channel.v1
|
|
819
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInit
|
|
820
|
+
*/
|
|
584
821
|
export declare const MsgChannelCloseInit: {
|
|
585
822
|
typeUrl: string;
|
|
586
823
|
aminoType: string;
|
|
@@ -595,6 +832,12 @@ export declare const MsgChannelCloseInit: {
|
|
|
595
832
|
toProto(message: MsgChannelCloseInit): Uint8Array;
|
|
596
833
|
toProtoMsg(message: MsgChannelCloseInit): MsgChannelCloseInitProtoMsg;
|
|
597
834
|
};
|
|
835
|
+
/**
|
|
836
|
+
* MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type.
|
|
837
|
+
* @name MsgChannelCloseInitResponse
|
|
838
|
+
* @package ibc.core.channel.v1
|
|
839
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInitResponse
|
|
840
|
+
*/
|
|
598
841
|
export declare const MsgChannelCloseInitResponse: {
|
|
599
842
|
typeUrl: string;
|
|
600
843
|
aminoType: string;
|
|
@@ -609,6 +852,13 @@ export declare const MsgChannelCloseInitResponse: {
|
|
|
609
852
|
toProto(message: MsgChannelCloseInitResponse): Uint8Array;
|
|
610
853
|
toProtoMsg(message: MsgChannelCloseInitResponse): MsgChannelCloseInitResponseProtoMsg;
|
|
611
854
|
};
|
|
855
|
+
/**
|
|
856
|
+
* MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B
|
|
857
|
+
* to acknowledge the change of channel state to CLOSED on Chain A.
|
|
858
|
+
* @name MsgChannelCloseConfirm
|
|
859
|
+
* @package ibc.core.channel.v1
|
|
860
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirm
|
|
861
|
+
*/
|
|
612
862
|
export declare const MsgChannelCloseConfirm: {
|
|
613
863
|
typeUrl: string;
|
|
614
864
|
aminoType: string;
|
|
@@ -623,6 +873,13 @@ export declare const MsgChannelCloseConfirm: {
|
|
|
623
873
|
toProto(message: MsgChannelCloseConfirm): Uint8Array;
|
|
624
874
|
toProtoMsg(message: MsgChannelCloseConfirm): MsgChannelCloseConfirmProtoMsg;
|
|
625
875
|
};
|
|
876
|
+
/**
|
|
877
|
+
* MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response
|
|
878
|
+
* type.
|
|
879
|
+
* @name MsgChannelCloseConfirmResponse
|
|
880
|
+
* @package ibc.core.channel.v1
|
|
881
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirmResponse
|
|
882
|
+
*/
|
|
626
883
|
export declare const MsgChannelCloseConfirmResponse: {
|
|
627
884
|
typeUrl: string;
|
|
628
885
|
aminoType: string;
|
|
@@ -637,6 +894,12 @@ export declare const MsgChannelCloseConfirmResponse: {
|
|
|
637
894
|
toProto(message: MsgChannelCloseConfirmResponse): Uint8Array;
|
|
638
895
|
toProtoMsg(message: MsgChannelCloseConfirmResponse): MsgChannelCloseConfirmResponseProtoMsg;
|
|
639
896
|
};
|
|
897
|
+
/**
|
|
898
|
+
* MsgRecvPacket receives incoming IBC packet
|
|
899
|
+
* @name MsgRecvPacket
|
|
900
|
+
* @package ibc.core.channel.v1
|
|
901
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacket
|
|
902
|
+
*/
|
|
640
903
|
export declare const MsgRecvPacket: {
|
|
641
904
|
typeUrl: string;
|
|
642
905
|
aminoType: string;
|
|
@@ -651,6 +914,12 @@ export declare const MsgRecvPacket: {
|
|
|
651
914
|
toProto(message: MsgRecvPacket): Uint8Array;
|
|
652
915
|
toProtoMsg(message: MsgRecvPacket): MsgRecvPacketProtoMsg;
|
|
653
916
|
};
|
|
917
|
+
/**
|
|
918
|
+
* MsgRecvPacketResponse defines the Msg/RecvPacket response type.
|
|
919
|
+
* @name MsgRecvPacketResponse
|
|
920
|
+
* @package ibc.core.channel.v1
|
|
921
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacketResponse
|
|
922
|
+
*/
|
|
654
923
|
export declare const MsgRecvPacketResponse: {
|
|
655
924
|
typeUrl: string;
|
|
656
925
|
aminoType: string;
|
|
@@ -665,6 +934,12 @@ export declare const MsgRecvPacketResponse: {
|
|
|
665
934
|
toProto(message: MsgRecvPacketResponse): Uint8Array;
|
|
666
935
|
toProtoMsg(message: MsgRecvPacketResponse): MsgRecvPacketResponseProtoMsg;
|
|
667
936
|
};
|
|
937
|
+
/**
|
|
938
|
+
* MsgTimeout receives timed-out packet
|
|
939
|
+
* @name MsgTimeout
|
|
940
|
+
* @package ibc.core.channel.v1
|
|
941
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeout
|
|
942
|
+
*/
|
|
668
943
|
export declare const MsgTimeout: {
|
|
669
944
|
typeUrl: string;
|
|
670
945
|
aminoType: string;
|
|
@@ -679,6 +954,12 @@ export declare const MsgTimeout: {
|
|
|
679
954
|
toProto(message: MsgTimeout): Uint8Array;
|
|
680
955
|
toProtoMsg(message: MsgTimeout): MsgTimeoutProtoMsg;
|
|
681
956
|
};
|
|
957
|
+
/**
|
|
958
|
+
* MsgTimeoutResponse defines the Msg/Timeout response type.
|
|
959
|
+
* @name MsgTimeoutResponse
|
|
960
|
+
* @package ibc.core.channel.v1
|
|
961
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutResponse
|
|
962
|
+
*/
|
|
682
963
|
export declare const MsgTimeoutResponse: {
|
|
683
964
|
typeUrl: string;
|
|
684
965
|
aminoType: string;
|
|
@@ -693,6 +974,12 @@ export declare const MsgTimeoutResponse: {
|
|
|
693
974
|
toProto(message: MsgTimeoutResponse): Uint8Array;
|
|
694
975
|
toProtoMsg(message: MsgTimeoutResponse): MsgTimeoutResponseProtoMsg;
|
|
695
976
|
};
|
|
977
|
+
/**
|
|
978
|
+
* MsgTimeoutOnClose timed-out packet upon counterparty channel closure.
|
|
979
|
+
* @name MsgTimeoutOnClose
|
|
980
|
+
* @package ibc.core.channel.v1
|
|
981
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnClose
|
|
982
|
+
*/
|
|
696
983
|
export declare const MsgTimeoutOnClose: {
|
|
697
984
|
typeUrl: string;
|
|
698
985
|
aminoType: string;
|
|
@@ -707,6 +994,12 @@ export declare const MsgTimeoutOnClose: {
|
|
|
707
994
|
toProto(message: MsgTimeoutOnClose): Uint8Array;
|
|
708
995
|
toProtoMsg(message: MsgTimeoutOnClose): MsgTimeoutOnCloseProtoMsg;
|
|
709
996
|
};
|
|
997
|
+
/**
|
|
998
|
+
* MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type.
|
|
999
|
+
* @name MsgTimeoutOnCloseResponse
|
|
1000
|
+
* @package ibc.core.channel.v1
|
|
1001
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnCloseResponse
|
|
1002
|
+
*/
|
|
710
1003
|
export declare const MsgTimeoutOnCloseResponse: {
|
|
711
1004
|
typeUrl: string;
|
|
712
1005
|
aminoType: string;
|
|
@@ -721,6 +1014,12 @@ export declare const MsgTimeoutOnCloseResponse: {
|
|
|
721
1014
|
toProto(message: MsgTimeoutOnCloseResponse): Uint8Array;
|
|
722
1015
|
toProtoMsg(message: MsgTimeoutOnCloseResponse): MsgTimeoutOnCloseResponseProtoMsg;
|
|
723
1016
|
};
|
|
1017
|
+
/**
|
|
1018
|
+
* MsgAcknowledgement receives incoming IBC acknowledgement
|
|
1019
|
+
* @name MsgAcknowledgement
|
|
1020
|
+
* @package ibc.core.channel.v1
|
|
1021
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgement
|
|
1022
|
+
*/
|
|
724
1023
|
export declare const MsgAcknowledgement: {
|
|
725
1024
|
typeUrl: string;
|
|
726
1025
|
aminoType: string;
|
|
@@ -735,6 +1034,12 @@ export declare const MsgAcknowledgement: {
|
|
|
735
1034
|
toProto(message: MsgAcknowledgement): Uint8Array;
|
|
736
1035
|
toProtoMsg(message: MsgAcknowledgement): MsgAcknowledgementProtoMsg;
|
|
737
1036
|
};
|
|
1037
|
+
/**
|
|
1038
|
+
* MsgAcknowledgementResponse defines the Msg/Acknowledgement response type.
|
|
1039
|
+
* @name MsgAcknowledgementResponse
|
|
1040
|
+
* @package ibc.core.channel.v1
|
|
1041
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgementResponse
|
|
1042
|
+
*/
|
|
738
1043
|
export declare const MsgAcknowledgementResponse: {
|
|
739
1044
|
typeUrl: string;
|
|
740
1045
|
aminoType: string;
|