@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
|
@@ -14,6 +14,12 @@ function createBaseQueryChannelRequest() {
|
|
|
14
14
|
channelId: ""
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* QueryChannelRequest is the request type for the Query/Channel RPC method
|
|
19
|
+
* @name QueryChannelRequest
|
|
20
|
+
* @package ibc.core.channel.v1
|
|
21
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelRequest
|
|
22
|
+
*/
|
|
17
23
|
exports.QueryChannelRequest = {
|
|
18
24
|
typeUrl: "/ibc.core.channel.v1.QueryChannelRequest",
|
|
19
25
|
aminoType: "cosmos-sdk/QueryChannelRequest",
|
|
@@ -97,6 +103,14 @@ function createBaseQueryChannelResponse() {
|
|
|
97
103
|
proofHeight: client_1.Height.fromPartial({})
|
|
98
104
|
};
|
|
99
105
|
}
|
|
106
|
+
/**
|
|
107
|
+
* QueryChannelResponse is the response type for the Query/Channel RPC method.
|
|
108
|
+
* Besides the Channel end, it includes a proof and the height from which the
|
|
109
|
+
* proof was retrieved.
|
|
110
|
+
* @name QueryChannelResponse
|
|
111
|
+
* @package ibc.core.channel.v1
|
|
112
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelResponse
|
|
113
|
+
*/
|
|
100
114
|
exports.QueryChannelResponse = {
|
|
101
115
|
typeUrl: "/ibc.core.channel.v1.QueryChannelResponse",
|
|
102
116
|
aminoType: "cosmos-sdk/QueryChannelResponse",
|
|
@@ -189,6 +203,12 @@ function createBaseQueryChannelsRequest() {
|
|
|
189
203
|
pagination: undefined
|
|
190
204
|
};
|
|
191
205
|
}
|
|
206
|
+
/**
|
|
207
|
+
* QueryChannelsRequest is the request type for the Query/Channels RPC method
|
|
208
|
+
* @name QueryChannelsRequest
|
|
209
|
+
* @package ibc.core.channel.v1
|
|
210
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelsRequest
|
|
211
|
+
*/
|
|
192
212
|
exports.QueryChannelsRequest = {
|
|
193
213
|
typeUrl: "/ibc.core.channel.v1.QueryChannelsRequest",
|
|
194
214
|
aminoType: "cosmos-sdk/QueryChannelsRequest",
|
|
@@ -261,6 +281,12 @@ function createBaseQueryChannelsResponse() {
|
|
|
261
281
|
height: client_1.Height.fromPartial({})
|
|
262
282
|
};
|
|
263
283
|
}
|
|
284
|
+
/**
|
|
285
|
+
* QueryChannelsResponse is the response type for the Query/Channels RPC method.
|
|
286
|
+
* @name QueryChannelsResponse
|
|
287
|
+
* @package ibc.core.channel.v1
|
|
288
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelsResponse
|
|
289
|
+
*/
|
|
264
290
|
exports.QueryChannelsResponse = {
|
|
265
291
|
typeUrl: "/ibc.core.channel.v1.QueryChannelsResponse",
|
|
266
292
|
aminoType: "cosmos-sdk/QueryChannelsResponse",
|
|
@@ -357,6 +383,13 @@ function createBaseQueryConnectionChannelsRequest() {
|
|
|
357
383
|
pagination: undefined
|
|
358
384
|
};
|
|
359
385
|
}
|
|
386
|
+
/**
|
|
387
|
+
* QueryConnectionChannelsRequest is the request type for the
|
|
388
|
+
* Query/QueryConnectionChannels RPC method
|
|
389
|
+
* @name QueryConnectionChannelsRequest
|
|
390
|
+
* @package ibc.core.channel.v1
|
|
391
|
+
* @see proto type: ibc.core.channel.v1.QueryConnectionChannelsRequest
|
|
392
|
+
*/
|
|
360
393
|
exports.QueryConnectionChannelsRequest = {
|
|
361
394
|
typeUrl: "/ibc.core.channel.v1.QueryConnectionChannelsRequest",
|
|
362
395
|
aminoType: "cosmos-sdk/QueryConnectionChannelsRequest",
|
|
@@ -440,6 +473,13 @@ function createBaseQueryConnectionChannelsResponse() {
|
|
|
440
473
|
height: client_1.Height.fromPartial({})
|
|
441
474
|
};
|
|
442
475
|
}
|
|
476
|
+
/**
|
|
477
|
+
* QueryConnectionChannelsResponse is the Response type for the
|
|
478
|
+
* Query/QueryConnectionChannels RPC method
|
|
479
|
+
* @name QueryConnectionChannelsResponse
|
|
480
|
+
* @package ibc.core.channel.v1
|
|
481
|
+
* @see proto type: ibc.core.channel.v1.QueryConnectionChannelsResponse
|
|
482
|
+
*/
|
|
443
483
|
exports.QueryConnectionChannelsResponse = {
|
|
444
484
|
typeUrl: "/ibc.core.channel.v1.QueryConnectionChannelsResponse",
|
|
445
485
|
aminoType: "cosmos-sdk/QueryConnectionChannelsResponse",
|
|
@@ -536,6 +576,13 @@ function createBaseQueryChannelClientStateRequest() {
|
|
|
536
576
|
channelId: ""
|
|
537
577
|
};
|
|
538
578
|
}
|
|
579
|
+
/**
|
|
580
|
+
* QueryChannelClientStateRequest is the request type for the Query/ClientState
|
|
581
|
+
* RPC method
|
|
582
|
+
* @name QueryChannelClientStateRequest
|
|
583
|
+
* @package ibc.core.channel.v1
|
|
584
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelClientStateRequest
|
|
585
|
+
*/
|
|
539
586
|
exports.QueryChannelClientStateRequest = {
|
|
540
587
|
typeUrl: "/ibc.core.channel.v1.QueryChannelClientStateRequest",
|
|
541
588
|
aminoType: "cosmos-sdk/QueryChannelClientStateRequest",
|
|
@@ -619,6 +666,13 @@ function createBaseQueryChannelClientStateResponse() {
|
|
|
619
666
|
proofHeight: client_1.Height.fromPartial({})
|
|
620
667
|
};
|
|
621
668
|
}
|
|
669
|
+
/**
|
|
670
|
+
* QueryChannelClientStateResponse is the Response type for the
|
|
671
|
+
* Query/QueryChannelClientState RPC method
|
|
672
|
+
* @name QueryChannelClientStateResponse
|
|
673
|
+
* @package ibc.core.channel.v1
|
|
674
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelClientStateResponse
|
|
675
|
+
*/
|
|
622
676
|
exports.QueryChannelClientStateResponse = {
|
|
623
677
|
typeUrl: "/ibc.core.channel.v1.QueryChannelClientStateResponse",
|
|
624
678
|
aminoType: "cosmos-sdk/QueryChannelClientStateResponse",
|
|
@@ -714,6 +768,13 @@ function createBaseQueryChannelConsensusStateRequest() {
|
|
|
714
768
|
revisionHeight: BigInt(0)
|
|
715
769
|
};
|
|
716
770
|
}
|
|
771
|
+
/**
|
|
772
|
+
* QueryChannelConsensusStateRequest is the request type for the
|
|
773
|
+
* Query/ConsensusState RPC method
|
|
774
|
+
* @name QueryChannelConsensusStateRequest
|
|
775
|
+
* @package ibc.core.channel.v1
|
|
776
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelConsensusStateRequest
|
|
777
|
+
*/
|
|
717
778
|
exports.QueryChannelConsensusStateRequest = {
|
|
718
779
|
typeUrl: "/ibc.core.channel.v1.QueryChannelConsensusStateRequest",
|
|
719
780
|
aminoType: "cosmos-sdk/QueryChannelConsensusStateRequest",
|
|
@@ -820,6 +881,13 @@ function createBaseQueryChannelConsensusStateResponse() {
|
|
|
820
881
|
proofHeight: client_1.Height.fromPartial({})
|
|
821
882
|
};
|
|
822
883
|
}
|
|
884
|
+
/**
|
|
885
|
+
* QueryChannelClientStateResponse is the Response type for the
|
|
886
|
+
* Query/QueryChannelClientState RPC method
|
|
887
|
+
* @name QueryChannelConsensusStateResponse
|
|
888
|
+
* @package ibc.core.channel.v1
|
|
889
|
+
* @see proto type: ibc.core.channel.v1.QueryChannelConsensusStateResponse
|
|
890
|
+
*/
|
|
823
891
|
exports.QueryChannelConsensusStateResponse = {
|
|
824
892
|
typeUrl: "/ibc.core.channel.v1.QueryChannelConsensusStateResponse",
|
|
825
893
|
aminoType: "cosmos-sdk/QueryChannelConsensusStateResponse",
|
|
@@ -925,6 +993,13 @@ function createBaseQueryPacketCommitmentRequest() {
|
|
|
925
993
|
sequence: BigInt(0)
|
|
926
994
|
};
|
|
927
995
|
}
|
|
996
|
+
/**
|
|
997
|
+
* QueryPacketCommitmentRequest is the request type for the
|
|
998
|
+
* Query/PacketCommitment RPC method
|
|
999
|
+
* @name QueryPacketCommitmentRequest
|
|
1000
|
+
* @package ibc.core.channel.v1
|
|
1001
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentRequest
|
|
1002
|
+
*/
|
|
928
1003
|
exports.QueryPacketCommitmentRequest = {
|
|
929
1004
|
typeUrl: "/ibc.core.channel.v1.QueryPacketCommitmentRequest",
|
|
930
1005
|
aminoType: "cosmos-sdk/QueryPacketCommitmentRequest",
|
|
@@ -1019,6 +1094,14 @@ function createBaseQueryPacketCommitmentResponse() {
|
|
|
1019
1094
|
proofHeight: client_1.Height.fromPartial({})
|
|
1020
1095
|
};
|
|
1021
1096
|
}
|
|
1097
|
+
/**
|
|
1098
|
+
* QueryPacketCommitmentResponse defines the client query response for a packet
|
|
1099
|
+
* which also includes a proof and the height from which the proof was
|
|
1100
|
+
* retrieved
|
|
1101
|
+
* @name QueryPacketCommitmentResponse
|
|
1102
|
+
* @package ibc.core.channel.v1
|
|
1103
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentResponse
|
|
1104
|
+
*/
|
|
1022
1105
|
exports.QueryPacketCommitmentResponse = {
|
|
1023
1106
|
typeUrl: "/ibc.core.channel.v1.QueryPacketCommitmentResponse",
|
|
1024
1107
|
aminoType: "cosmos-sdk/QueryPacketCommitmentResponse",
|
|
@@ -1113,6 +1196,13 @@ function createBaseQueryPacketCommitmentsRequest() {
|
|
|
1113
1196
|
pagination: undefined
|
|
1114
1197
|
};
|
|
1115
1198
|
}
|
|
1199
|
+
/**
|
|
1200
|
+
* QueryPacketCommitmentsRequest is the request type for the
|
|
1201
|
+
* Query/QueryPacketCommitments RPC method
|
|
1202
|
+
* @name QueryPacketCommitmentsRequest
|
|
1203
|
+
* @package ibc.core.channel.v1
|
|
1204
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentsRequest
|
|
1205
|
+
*/
|
|
1116
1206
|
exports.QueryPacketCommitmentsRequest = {
|
|
1117
1207
|
typeUrl: "/ibc.core.channel.v1.QueryPacketCommitmentsRequest",
|
|
1118
1208
|
aminoType: "cosmos-sdk/QueryPacketCommitmentsRequest",
|
|
@@ -1207,6 +1297,13 @@ function createBaseQueryPacketCommitmentsResponse() {
|
|
|
1207
1297
|
height: client_1.Height.fromPartial({})
|
|
1208
1298
|
};
|
|
1209
1299
|
}
|
|
1300
|
+
/**
|
|
1301
|
+
* QueryPacketCommitmentsResponse is the request type for the
|
|
1302
|
+
* Query/QueryPacketCommitments RPC method
|
|
1303
|
+
* @name QueryPacketCommitmentsResponse
|
|
1304
|
+
* @package ibc.core.channel.v1
|
|
1305
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketCommitmentsResponse
|
|
1306
|
+
*/
|
|
1210
1307
|
exports.QueryPacketCommitmentsResponse = {
|
|
1211
1308
|
typeUrl: "/ibc.core.channel.v1.QueryPacketCommitmentsResponse",
|
|
1212
1309
|
aminoType: "cosmos-sdk/QueryPacketCommitmentsResponse",
|
|
@@ -1304,6 +1401,13 @@ function createBaseQueryPacketReceiptRequest() {
|
|
|
1304
1401
|
sequence: BigInt(0)
|
|
1305
1402
|
};
|
|
1306
1403
|
}
|
|
1404
|
+
/**
|
|
1405
|
+
* QueryPacketReceiptRequest is the request type for the
|
|
1406
|
+
* Query/PacketReceipt RPC method
|
|
1407
|
+
* @name QueryPacketReceiptRequest
|
|
1408
|
+
* @package ibc.core.channel.v1
|
|
1409
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketReceiptRequest
|
|
1410
|
+
*/
|
|
1307
1411
|
exports.QueryPacketReceiptRequest = {
|
|
1308
1412
|
typeUrl: "/ibc.core.channel.v1.QueryPacketReceiptRequest",
|
|
1309
1413
|
aminoType: "cosmos-sdk/QueryPacketReceiptRequest",
|
|
@@ -1398,6 +1502,14 @@ function createBaseQueryPacketReceiptResponse() {
|
|
|
1398
1502
|
proofHeight: client_1.Height.fromPartial({})
|
|
1399
1503
|
};
|
|
1400
1504
|
}
|
|
1505
|
+
/**
|
|
1506
|
+
* QueryPacketReceiptResponse defines the client query response for a packet
|
|
1507
|
+
* receipt which also includes a proof, and the height from which the proof was
|
|
1508
|
+
* retrieved
|
|
1509
|
+
* @name QueryPacketReceiptResponse
|
|
1510
|
+
* @package ibc.core.channel.v1
|
|
1511
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketReceiptResponse
|
|
1512
|
+
*/
|
|
1401
1513
|
exports.QueryPacketReceiptResponse = {
|
|
1402
1514
|
typeUrl: "/ibc.core.channel.v1.QueryPacketReceiptResponse",
|
|
1403
1515
|
aminoType: "cosmos-sdk/QueryPacketReceiptResponse",
|
|
@@ -1492,6 +1604,13 @@ function createBaseQueryPacketAcknowledgementRequest() {
|
|
|
1492
1604
|
sequence: BigInt(0)
|
|
1493
1605
|
};
|
|
1494
1606
|
}
|
|
1607
|
+
/**
|
|
1608
|
+
* QueryPacketAcknowledgementRequest is the request type for the
|
|
1609
|
+
* Query/PacketAcknowledgement RPC method
|
|
1610
|
+
* @name QueryPacketAcknowledgementRequest
|
|
1611
|
+
* @package ibc.core.channel.v1
|
|
1612
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementRequest
|
|
1613
|
+
*/
|
|
1495
1614
|
exports.QueryPacketAcknowledgementRequest = {
|
|
1496
1615
|
typeUrl: "/ibc.core.channel.v1.QueryPacketAcknowledgementRequest",
|
|
1497
1616
|
aminoType: "cosmos-sdk/QueryPacketAcknowledgementRequest",
|
|
@@ -1586,6 +1705,14 @@ function createBaseQueryPacketAcknowledgementResponse() {
|
|
|
1586
1705
|
proofHeight: client_1.Height.fromPartial({})
|
|
1587
1706
|
};
|
|
1588
1707
|
}
|
|
1708
|
+
/**
|
|
1709
|
+
* QueryPacketAcknowledgementResponse defines the client query response for a
|
|
1710
|
+
* packet which also includes a proof and the height from which the
|
|
1711
|
+
* proof was retrieved
|
|
1712
|
+
* @name QueryPacketAcknowledgementResponse
|
|
1713
|
+
* @package ibc.core.channel.v1
|
|
1714
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementResponse
|
|
1715
|
+
*/
|
|
1589
1716
|
exports.QueryPacketAcknowledgementResponse = {
|
|
1590
1717
|
typeUrl: "/ibc.core.channel.v1.QueryPacketAcknowledgementResponse",
|
|
1591
1718
|
aminoType: "cosmos-sdk/QueryPacketAcknowledgementResponse",
|
|
@@ -1681,6 +1808,13 @@ function createBaseQueryPacketAcknowledgementsRequest() {
|
|
|
1681
1808
|
packetCommitmentSequences: []
|
|
1682
1809
|
};
|
|
1683
1810
|
}
|
|
1811
|
+
/**
|
|
1812
|
+
* QueryPacketAcknowledgementsRequest is the request type for the
|
|
1813
|
+
* Query/QueryPacketCommitments RPC method
|
|
1814
|
+
* @name QueryPacketAcknowledgementsRequest
|
|
1815
|
+
* @package ibc.core.channel.v1
|
|
1816
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementsRequest
|
|
1817
|
+
*/
|
|
1684
1818
|
exports.QueryPacketAcknowledgementsRequest = {
|
|
1685
1819
|
typeUrl: "/ibc.core.channel.v1.QueryPacketAcknowledgementsRequest",
|
|
1686
1820
|
aminoType: "cosmos-sdk/QueryPacketAcknowledgementsRequest",
|
|
@@ -1799,6 +1933,13 @@ function createBaseQueryPacketAcknowledgementsResponse() {
|
|
|
1799
1933
|
height: client_1.Height.fromPartial({})
|
|
1800
1934
|
};
|
|
1801
1935
|
}
|
|
1936
|
+
/**
|
|
1937
|
+
* QueryPacketAcknowledgemetsResponse is the request type for the
|
|
1938
|
+
* Query/QueryPacketAcknowledgements RPC method
|
|
1939
|
+
* @name QueryPacketAcknowledgementsResponse
|
|
1940
|
+
* @package ibc.core.channel.v1
|
|
1941
|
+
* @see proto type: ibc.core.channel.v1.QueryPacketAcknowledgementsResponse
|
|
1942
|
+
*/
|
|
1802
1943
|
exports.QueryPacketAcknowledgementsResponse = {
|
|
1803
1944
|
typeUrl: "/ibc.core.channel.v1.QueryPacketAcknowledgementsResponse",
|
|
1804
1945
|
aminoType: "cosmos-sdk/QueryPacketAcknowledgementsResponse",
|
|
@@ -1896,6 +2037,13 @@ function createBaseQueryUnreceivedPacketsRequest() {
|
|
|
1896
2037
|
packetCommitmentSequences: []
|
|
1897
2038
|
};
|
|
1898
2039
|
}
|
|
2040
|
+
/**
|
|
2041
|
+
* QueryUnreceivedPacketsRequest is the request type for the
|
|
2042
|
+
* Query/UnreceivedPackets RPC method
|
|
2043
|
+
* @name QueryUnreceivedPacketsRequest
|
|
2044
|
+
* @package ibc.core.channel.v1
|
|
2045
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedPacketsRequest
|
|
2046
|
+
*/
|
|
1899
2047
|
exports.QueryUnreceivedPacketsRequest = {
|
|
1900
2048
|
typeUrl: "/ibc.core.channel.v1.QueryUnreceivedPacketsRequest",
|
|
1901
2049
|
aminoType: "cosmos-sdk/QueryUnreceivedPacketsRequest",
|
|
@@ -2002,6 +2150,13 @@ function createBaseQueryUnreceivedPacketsResponse() {
|
|
|
2002
2150
|
height: client_1.Height.fromPartial({})
|
|
2003
2151
|
};
|
|
2004
2152
|
}
|
|
2153
|
+
/**
|
|
2154
|
+
* QueryUnreceivedPacketsResponse is the response type for the
|
|
2155
|
+
* Query/UnreceivedPacketCommitments RPC method
|
|
2156
|
+
* @name QueryUnreceivedPacketsResponse
|
|
2157
|
+
* @package ibc.core.channel.v1
|
|
2158
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedPacketsResponse
|
|
2159
|
+
*/
|
|
2005
2160
|
exports.QueryUnreceivedPacketsResponse = {
|
|
2006
2161
|
typeUrl: "/ibc.core.channel.v1.QueryUnreceivedPacketsResponse",
|
|
2007
2162
|
aminoType: "cosmos-sdk/QueryUnreceivedPacketsResponse",
|
|
@@ -2098,6 +2253,13 @@ function createBaseQueryUnreceivedAcksRequest() {
|
|
|
2098
2253
|
packetAckSequences: []
|
|
2099
2254
|
};
|
|
2100
2255
|
}
|
|
2256
|
+
/**
|
|
2257
|
+
* QueryUnreceivedAcks is the request type for the
|
|
2258
|
+
* Query/UnreceivedAcks RPC method
|
|
2259
|
+
* @name QueryUnreceivedAcksRequest
|
|
2260
|
+
* @package ibc.core.channel.v1
|
|
2261
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedAcksRequest
|
|
2262
|
+
*/
|
|
2101
2263
|
exports.QueryUnreceivedAcksRequest = {
|
|
2102
2264
|
typeUrl: "/ibc.core.channel.v1.QueryUnreceivedAcksRequest",
|
|
2103
2265
|
aminoType: "cosmos-sdk/QueryUnreceivedAcksRequest",
|
|
@@ -2204,6 +2366,13 @@ function createBaseQueryUnreceivedAcksResponse() {
|
|
|
2204
2366
|
height: client_1.Height.fromPartial({})
|
|
2205
2367
|
};
|
|
2206
2368
|
}
|
|
2369
|
+
/**
|
|
2370
|
+
* QueryUnreceivedAcksResponse is the response type for the
|
|
2371
|
+
* Query/UnreceivedAcks RPC method
|
|
2372
|
+
* @name QueryUnreceivedAcksResponse
|
|
2373
|
+
* @package ibc.core.channel.v1
|
|
2374
|
+
* @see proto type: ibc.core.channel.v1.QueryUnreceivedAcksResponse
|
|
2375
|
+
*/
|
|
2207
2376
|
exports.QueryUnreceivedAcksResponse = {
|
|
2208
2377
|
typeUrl: "/ibc.core.channel.v1.QueryUnreceivedAcksResponse",
|
|
2209
2378
|
aminoType: "cosmos-sdk/QueryUnreceivedAcksResponse",
|
|
@@ -2299,6 +2468,13 @@ function createBaseQueryNextSequenceReceiveRequest() {
|
|
|
2299
2468
|
channelId: ""
|
|
2300
2469
|
};
|
|
2301
2470
|
}
|
|
2471
|
+
/**
|
|
2472
|
+
* QueryNextSequenceReceiveRequest is the request type for the
|
|
2473
|
+
* Query/QueryNextSequenceReceiveRequest RPC method
|
|
2474
|
+
* @name QueryNextSequenceReceiveRequest
|
|
2475
|
+
* @package ibc.core.channel.v1
|
|
2476
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceReceiveRequest
|
|
2477
|
+
*/
|
|
2302
2478
|
exports.QueryNextSequenceReceiveRequest = {
|
|
2303
2479
|
typeUrl: "/ibc.core.channel.v1.QueryNextSequenceReceiveRequest",
|
|
2304
2480
|
aminoType: "cosmos-sdk/QueryNextSequenceReceiveRequest",
|
|
@@ -2382,6 +2558,13 @@ function createBaseQueryNextSequenceReceiveResponse() {
|
|
|
2382
2558
|
proofHeight: client_1.Height.fromPartial({})
|
|
2383
2559
|
};
|
|
2384
2560
|
}
|
|
2561
|
+
/**
|
|
2562
|
+
* QuerySequenceResponse is the response type for the
|
|
2563
|
+
* Query/QueryNextSequenceReceiveResponse RPC method
|
|
2564
|
+
* @name QueryNextSequenceReceiveResponse
|
|
2565
|
+
* @package ibc.core.channel.v1
|
|
2566
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceReceiveResponse
|
|
2567
|
+
*/
|
|
2385
2568
|
exports.QueryNextSequenceReceiveResponse = {
|
|
2386
2569
|
typeUrl: "/ibc.core.channel.v1.QueryNextSequenceReceiveResponse",
|
|
2387
2570
|
aminoType: "cosmos-sdk/QueryNextSequenceReceiveResponse",
|
|
@@ -2475,6 +2658,13 @@ function createBaseQueryNextSequenceSendRequest() {
|
|
|
2475
2658
|
channelId: ""
|
|
2476
2659
|
};
|
|
2477
2660
|
}
|
|
2661
|
+
/**
|
|
2662
|
+
* QueryNextSequenceSendRequest is the request type for the
|
|
2663
|
+
* Query/QueryNextSequenceSend RPC method
|
|
2664
|
+
* @name QueryNextSequenceSendRequest
|
|
2665
|
+
* @package ibc.core.channel.v1
|
|
2666
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceSendRequest
|
|
2667
|
+
*/
|
|
2478
2668
|
exports.QueryNextSequenceSendRequest = {
|
|
2479
2669
|
typeUrl: "/ibc.core.channel.v1.QueryNextSequenceSendRequest",
|
|
2480
2670
|
aminoType: "cosmos-sdk/QueryNextSequenceSendRequest",
|
|
@@ -2558,6 +2748,13 @@ function createBaseQueryNextSequenceSendResponse() {
|
|
|
2558
2748
|
proofHeight: client_1.Height.fromPartial({})
|
|
2559
2749
|
};
|
|
2560
2750
|
}
|
|
2751
|
+
/**
|
|
2752
|
+
* QueryNextSequenceSendResponse is the request type for the
|
|
2753
|
+
* Query/QueryNextSequenceSend RPC method
|
|
2754
|
+
* @name QueryNextSequenceSendResponse
|
|
2755
|
+
* @package ibc.core.channel.v1
|
|
2756
|
+
* @see proto type: ibc.core.channel.v1.QueryNextSequenceSendResponse
|
|
2757
|
+
*/
|
|
2561
2758
|
exports.QueryNextSequenceSendResponse = {
|
|
2562
2759
|
typeUrl: "/ibc.core.channel.v1.QueryNextSequenceSendResponse",
|
|
2563
2760
|
aminoType: "cosmos-sdk/QueryNextSequenceSendResponse",
|