@sparkdreamnft/sparkdreamjs 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
- package/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +19 -0
- package/cosmos/auth/module/v1/module.d.ts +72 -12
- package/cosmos/auth/module/v1/module.js +25 -1
- package/cosmos/auth/v1beta1/auth.d.ts +68 -10
- package/cosmos/auth/v1beta1/auth.js +26 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +334 -92
- package/cosmos/auth/v1beta1/query.js +120 -0
- package/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
- package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/cosmos/auth/v1beta1/tx.d.ts +31 -10
- package/cosmos/auth/v1beta1/tx.js +13 -0
- package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +6 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +36 -0
- package/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +13 -8
- package/cosmos/bank/v1beta1/authz.js +7 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -34
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
- package/cosmos/bank/v1beta1/genesis.js +13 -0
- package/cosmos/bank/v1beta1/query.d.ts +599 -138
- package/cosmos/bank/v1beta1/query.js +179 -0
- package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
- package/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
- package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
- package/cosmos/bank/v1beta1/tx.d.ts +143 -30
- package/cosmos/bank/v1beta1/tx.js +53 -0
- package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/benchmark/module/v1/module.d.ts +102 -26
- package/cosmos/benchmark/module/v1/module.js +12 -0
- package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
- package/cosmos/benchmark/v1/benchmark.js +6 -0
- package/cosmos/benchmark/v1/tx.d.ts +36 -4
- package/cosmos/benchmark/v1/tx.js +12 -0
- package/cosmos/bundle.d.ts +2283 -2421
- package/cosmos/bundle.js +242 -261
- package/cosmos/circuit/module/v1/module.d.ts +24 -4
- package/cosmos/circuit/module/v1/module.js +6 -0
- package/cosmos/circuit/v1/query.d.ts +120 -16
- package/cosmos/circuit/v1/query.js +36 -0
- package/cosmos/circuit/v1/tx.d.ts +126 -18
- package/cosmos/circuit/v1/tx.js +36 -0
- package/cosmos/circuit/v1/types.d.ts +55 -6
- package/cosmos/circuit/v1/types.js +19 -0
- package/cosmos/consensus/module/v1/module.d.ts +24 -4
- package/cosmos/consensus/module/v1/module.js +6 -0
- package/cosmos/consensus/v1/query.d.ts +36 -4
- package/cosmos/consensus/v1/query.js +12 -0
- package/cosmos/consensus/v1/tx.d.ts +37 -6
- package/cosmos/consensus/v1/tx.js +13 -0
- package/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/cosmos/counter/module/v1/module.d.ts +24 -4
- package/cosmos/counter/module/v1/module.js +6 -0
- package/cosmos/counter/v1/query.d.ts +36 -4
- package/cosmos/counter/v1/query.js +12 -0
- package/cosmos/counter/v1/tx.d.ts +54 -10
- package/cosmos/counter/v1/tx.js +12 -0
- package/cosmos/crisis/module/v1/module.d.ts +30 -6
- package/cosmos/crisis/module/v1/module.js +6 -0
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/hd/v1/hd.d.ts +42 -10
- package/cosmos/crypto/hd/v1/hd.js +6 -0
- package/cosmos/crypto/keyring/v1/record.d.ts +121 -20
- package/cosmos/crypto/keyring/v1/record.js +31 -0
- package/cosmos/crypto/multisig/keys.d.ts +14 -0
- package/cosmos/crypto/multisig/keys.js +8 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/module/v1/module.d.ts +24 -4
- package/cosmos/distribution/module/v1/module.js +6 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +136 -0
- package/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +5 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/cosmos/distribution/v1beta1/tx.d.ts +199 -34
- package/cosmos/distribution/v1beta1/tx.js +97 -0
- package/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +3 -5
- package/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/cosmos/epochs/module/v1/module.d.ts +18 -2
- package/cosmos/epochs/module/v1/module.js +6 -0
- package/cosmos/epochs/v1beta1/events.d.ts +36 -4
- package/cosmos/epochs/v1beta1/events.js +12 -0
- package/cosmos/epochs/v1beta1/genesis.d.ts +37 -4
- package/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/cosmos/epochs/v1beta1/query.d.ts +52 -0
- package/cosmos/epochs/v1beta1/query.js +28 -0
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/feegrant/module/v1/module.d.ts +18 -2
- package/cosmos/feegrant/module/v1/module.js +6 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
- package/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +150 -34
- package/cosmos/feegrant/v1beta1/query.js +36 -0
- package/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +131 -27
- package/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/genutil/module/v1/module.d.ts +18 -2
- package/cosmos/genutil/module/v1/module.js +6 -0
- package/cosmos/gov/module/v1/module.d.ts +24 -4
- package/cosmos/gov/module/v1/module.js +6 -0
- package/cosmos/gov/v1/genesis.d.ts +48 -24
- package/cosmos/gov/v1/genesis.js +6 -0
- package/cosmos/gov/v1/gov.d.ts +341 -124
- package/cosmos/gov/v1/gov.js +59 -0
- package/cosmos/gov/v1/query.d.ts +469 -92
- package/cosmos/gov/v1/query.js +109 -0
- package/cosmos/gov/v1/tx.d.ts +368 -93
- package/cosmos/gov/v1/tx.js +88 -0
- package/cosmos/gov/v1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +6 -0
- package/cosmos/gov/v1beta1/gov.d.ts +291 -69
- package/cosmos/gov/v1beta1/gov.js +57 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/tx.d.ts +209 -45
- package/cosmos/gov/v1beta1/tx.js +49 -0
- package/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/group/module/v1/module.d.ts +18 -2
- package/cosmos/group/module/v1/module.js +6 -0
- package/cosmos/group/v1/events.d.ts +300 -56
- package/cosmos/group/v1/events.js +66 -0
- package/cosmos/group/v1/genesis.d.ts +48 -12
- package/cosmos/group/v1/genesis.js +6 -0
- package/cosmos/group/v1/query.d.ts +768 -152
- package/cosmos/group/v1/query.js +168 -0
- package/cosmos/group/v1/query.lcd.js +1 -3
- package/cosmos/group/v1/query.rpc.Query.d.ts +1 -5
- package/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/cosmos/group/v1/tx.d.ts +804 -163
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/types.d.ts +398 -91
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/mint/module/v1/module.d.ts +24 -4
- package/cosmos/mint/module/v1/module.js +6 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
- package/cosmos/mint/v1beta1/genesis.js +6 -0
- package/cosmos/mint/v1beta1/mint.d.ts +84 -20
- package/cosmos/mint/v1beta1/mint.js +12 -0
- package/cosmos/mint/v1beta1/query.d.ts +111 -12
- package/cosmos/mint/v1beta1/query.js +39 -0
- package/cosmos/mint/v1beta1/tx.d.ts +31 -10
- package/cosmos/mint/v1beta1/tx.js +13 -0
- package/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/nft/module/v1/module.d.ts +18 -2
- package/cosmos/nft/module/v1/module.js +6 -0
- package/cosmos/params/module/v1/module.d.ts +18 -2
- package/cosmos/params/module/v1/module.js +6 -0
- package/cosmos/params/v1beta1/params.d.ts +31 -2
- package/cosmos/params/v1beta1/params.js +13 -0
- package/cosmos/params/v1beta1/query.d.ts +93 -22
- package/cosmos/params/v1beta1/query.js +33 -0
- package/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/cosmos/params/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/protocolpool/module/v1/module.d.ts +24 -4
- package/cosmos/protocolpool/module/v1/module.js +6 -0
- package/cosmos/protocolpool/v1/genesis.d.ts +24 -4
- package/cosmos/protocolpool/v1/genesis.js +6 -0
- package/cosmos/protocolpool/v1/query.d.ts +138 -12
- package/cosmos/protocolpool/v1/query.js +54 -0
- package/cosmos/protocolpool/v1/tx.d.ts +217 -30
- package/cosmos/protocolpool/v1/tx.js +67 -0
- package/cosmos/protocolpool/v1/types.d.ts +54 -10
- package/cosmos/protocolpool/v1/types.js +12 -0
- package/cosmos/reflection/v1/reflection.d.ts +42 -6
- package/cosmos/reflection/v1/reflection.js +12 -0
- package/cosmos/rpc.query.d.ts +1 -9
- package/cosmos/rpc.query.js +0 -5
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/staking/module/v1/module.d.ts +36 -8
- package/cosmos/staking/module/v1/module.js +6 -0
- package/cosmos/staking/v1beta1/authz.d.ts +43 -15
- package/cosmos/staking/v1beta1/authz.js +13 -5
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +12 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/staking.d.ts +631 -121
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +234 -42
- package/cosmos/staking/v1beta1/tx.js +88 -0
- package/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -3
- package/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +36 -4
- package/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/cosmos/store/snapshots/v1/snapshot.d.ts +114 -30
- package/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/cosmos/store/streaming/abci/grpc.d.ts +78 -10
- package/cosmos/store/streaming/abci/grpc.js +24 -0
- package/cosmos/store/v1beta1/commit_info.d.ts +39 -0
- package/cosmos/store/v1beta1/commit_info.js +21 -0
- package/cosmos/store/v1beta1/listening.d.ts +45 -10
- package/cosmos/store/v1beta1/listening.js +15 -0
- package/cosmos/tx/config/v1/config.d.ts +18 -2
- package/cosmos/tx/config/v1/config.js +6 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +355 -94
- package/cosmos/tx/v1beta1/service.js +125 -0
- package/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/cosmos/tx/v1beta1/service.rpc.Service.d.ts +5 -25
- package/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/cosmos/tx/v1beta1/tx.d.ts +371 -80
- package/cosmos/tx/v1beta1/tx.js +118 -0
- package/cosmos/upgrade/module/v1/module.d.ts +24 -4
- package/cosmos/upgrade/module/v1/module.js +6 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +158 -30
- package/cosmos/upgrade/v1beta1/query.js +70 -0
- package/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/upgrade/v1beta1/tx.d.ts +66 -22
- package/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -30
- package/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/cosmos/vesting/module/v1/module.d.ts +18 -2
- package/cosmos/vesting/module/v1/module.js +6 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +94 -22
- package/cosmos/vesting/v1beta1/tx.js +40 -0
- package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/vesting/v1beta1/vesting.d.ts +103 -12
- package/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/esm/cosmos/app/v1alpha1/module.js +19 -0
- package/esm/cosmos/auth/module/v1/module.js +25 -1
- package/esm/cosmos/auth/v1beta1/auth.js +26 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +120 -0
- package/esm/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/esm/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/esm/cosmos/auth/v1beta1/tx.js +13 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +6 -0
- package/esm/cosmos/authz/v1beta1/query.js +36 -0
- package/esm/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +7 -0
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +13 -0
- package/esm/cosmos/bank/v1beta1/query.js +179 -0
- package/esm/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/esm/cosmos/bank/v1beta1/query.rpc.Query.js +18 -28
- package/esm/cosmos/bank/v1beta1/tx.js +53 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/benchmark/module/v1/module.js +12 -0
- package/esm/cosmos/benchmark/v1/benchmark.js +6 -0
- package/esm/cosmos/benchmark/v1/tx.js +12 -0
- package/esm/cosmos/bundle.js +242 -261
- package/esm/cosmos/circuit/module/v1/module.js +6 -0
- package/esm/cosmos/circuit/v1/query.js +36 -0
- package/esm/cosmos/circuit/v1/tx.js +36 -0
- package/esm/cosmos/circuit/v1/types.js +19 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +12 -0
- package/esm/cosmos/consensus/v1/tx.js +13 -0
- package/esm/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/counter/module/v1/module.js +6 -0
- package/esm/cosmos/counter/v1/query.js +12 -0
- package/esm/cosmos/counter/v1/tx.js +12 -0
- package/esm/cosmos/crisis/module/v1/module.js +6 -0
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/hd/v1/hd.js +6 -0
- package/esm/cosmos/crypto/keyring/v1/record.js +31 -0
- package/esm/cosmos/crypto/multisig/keys.js +8 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/esm/cosmos/distribution/v1beta1/query.js +136 -0
- package/esm/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/esm/cosmos/distribution/v1beta1/tx.js +97 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/esm/cosmos/epochs/module/v1/module.js +6 -0
- package/esm/cosmos/epochs/v1beta1/events.js +12 -0
- package/esm/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/esm/cosmos/epochs/v1beta1/query.js +28 -0
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +36 -0
- package/esm/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/genutil/module/v1/module.js +6 -0
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +6 -0
- package/esm/cosmos/gov/v1/gov.js +59 -0
- package/esm/cosmos/gov/v1/query.js +109 -0
- package/esm/cosmos/gov/v1/tx.js +88 -0
- package/esm/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/gov/v1beta1/genesis.js +6 -0
- package/esm/cosmos/gov/v1beta1/gov.js +57 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/tx.js +49 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/group/module/v1/module.js +6 -0
- package/esm/cosmos/group/v1/events.js +66 -0
- package/esm/cosmos/group/v1/genesis.js +6 -0
- package/esm/cosmos/group/v1/query.js +168 -0
- package/esm/cosmos/group/v1/query.lcd.js +1 -3
- package/esm/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +6 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +39 -0
- package/esm/cosmos/mint/v1beta1/tx.js +13 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/nft/module/v1/module.js +6 -0
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +13 -0
- package/esm/cosmos/params/v1beta1/query.js +33 -0
- package/esm/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/protocolpool/module/v1/module.js +6 -0
- package/esm/cosmos/protocolpool/v1/genesis.js +6 -0
- package/esm/cosmos/protocolpool/v1/query.js +54 -0
- package/esm/cosmos/protocolpool/v1/tx.js +67 -0
- package/esm/cosmos/protocolpool/v1/types.js +12 -0
- package/esm/cosmos/reflection/v1/reflection.js +12 -0
- package/esm/cosmos/rpc.query.js +0 -5
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +13 -5
- package/esm/cosmos/staking/v1beta1/genesis.js +12 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +88 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/esm/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/esm/cosmos/store/streaming/abci/grpc.js +24 -0
- package/esm/cosmos/store/v1beta1/commit_info.js +21 -0
- package/esm/cosmos/store/v1beta1/listening.js +15 -0
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +125 -0
- package/esm/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/esm/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/esm/cosmos/tx/v1beta1/tx.js +119 -1
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +70 -0
- package/esm/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/esm/cosmos/vesting/module/v1/module.js +6 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +40 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/gogoproto/bundle.js +2 -2
- package/esm/google/api/http.js +283 -0
- package/esm/google/bundle.js +7 -7
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +220 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/esm/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/esm/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/esm/ibc/applications/rate_limiting/v1/genesis.js +139 -0
- package/esm/ibc/applications/rate_limiting/v1/query.js +903 -0
- package/esm/ibc/applications/rate_limiting/v1/query.lcd.js +44 -0
- package/esm/ibc/applications/rate_limiting/v1/query.rpc.Query.js +71 -0
- package/esm/ibc/applications/rate_limiting/v1/rate_limiting.js +632 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.amino.js +24 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.js +726 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.registry.js +87 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +35 -0
- package/esm/ibc/applications/transfer/v1/authz.js +13 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +6 -0
- package/esm/ibc/applications/transfer/v1/packet.js +8 -0
- package/esm/ibc/applications/transfer/v1/query.js +78 -0
- package/esm/ibc/applications/transfer/v1/token.js +18 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -0
- package/esm/ibc/applications/transfer/v1/tx.js +40 -1
- package/esm/ibc/bundle.js +196 -173
- package/esm/ibc/client.js +4 -1
- package/esm/ibc/core/channel/v1/channel.js +64 -0
- package/esm/ibc/core/channel/v1/genesis.js +13 -0
- package/esm/ibc/core/channel/v1/query.js +197 -0
- package/esm/ibc/core/channel/v1/tx.js +129 -0
- package/esm/ibc/core/channel/v2/genesis.js +21 -0
- package/esm/ibc/core/channel/v2/packet.js +29 -0
- package/esm/ibc/core/channel/v2/query.js +100 -0
- package/esm/ibc/core/channel/v2/tx.js +48 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/genesis.js +20 -0
- package/esm/ibc/core/client/v1/query.js +154 -0
- package/esm/ibc/core/client/v1/tx.amino.js +1 -6
- package/esm/ibc/core/client/v1/tx.js +86 -151
- package/esm/ibc/core/client/v1/tx.registry.js +2 -20
- package/esm/ibc/core/client/v1/tx.rpc.msg.js +1 -7
- package/esm/ibc/core/client/v2/config.js +9 -0
- package/esm/ibc/core/client/v2/counterparty.js +6 -0
- package/esm/ibc/core/client/v2/genesis.js +12 -0
- package/esm/ibc/core/client/v2/query.js +26 -0
- package/esm/ibc/core/client/v2/tx.js +24 -0
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/commitment/v2/commitment.js +36 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/genesis.js +6 -0
- package/esm/ibc/core/connection/v1/query.js +83 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/lcd.js +5 -0
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +24 -0
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/wasm.js +18 -73
- package/esm/ibc/rpc.query.js +3 -5
- package/esm/ibc/rpc.tx.js +3 -0
- package/esm/index.js +1 -1
- package/esm/sparkdream/blog/module/v1/module.js +6 -0
- package/esm/sparkdream/blog/v1/genesis.js +6 -0
- package/esm/sparkdream/blog/v1/params.js +6 -0
- package/esm/sparkdream/blog/v1/post.js +6 -0
- package/esm/sparkdream/blog/v1/query.js +36 -0
- package/esm/sparkdream/blog/v1/tx.js +49 -0
- package/esm/sparkdream/bundle.js +41 -41
- package/esm/sparkdream/rpc.query.js +0 -5
- package/esm/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/esm/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/esm/sparkdream/sparkdream/v1/params.js +6 -0
- package/esm/sparkdream/sparkdream/v1/query.js +12 -0
- package/esm/sparkdream/sparkdream/v1/tx.js +13 -0
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/bundle.js +18 -18
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/p2p/types.js +20 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/gogoproto/bundle.js +2 -2
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/bundle.d.ts +418 -418
- package/google/bundle.js +7 -7
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +738 -90
- package/google/protobuf/descriptor.js +220 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
- package/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
- package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
- package/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
- package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
- package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/ibc/applications/packet_forward_middleware/v1/genesis.d.ts +46 -2
- package/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/ibc/applications/rate_limiting/v1/genesis.d.ts +57 -0
- package/ibc/applications/rate_limiting/v1/genesis.js +142 -0
- package/ibc/applications/rate_limiting/v1/query.d.ts +551 -0
- package/ibc/applications/rate_limiting/v1/query.js +906 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.d.ts +14 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.js +48 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.d.ts +40 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.js +76 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.d.ts +374 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.js +637 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.d.ts +23 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.js +27 -0
- package/ibc/applications/rate_limiting/v1/tx.d.ts +518 -0
- package/ibc/applications/rate_limiting/v1/tx.js +729 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.d.ts +61 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.js +91 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.d.ts +22 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +40 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +13 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +22 -4
- package/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +18 -2
- package/ibc/applications/transfer/v1/genesis.js +6 -0
- package/ibc/applications/transfer/v1/packet.d.ts +44 -10
- package/ibc/applications/transfer/v1/packet.js +8 -0
- package/ibc/applications/transfer/v1/query.d.ts +252 -34
- package/ibc/applications/transfer/v1/query.js +78 -0
- package/ibc/applications/transfer/v1/token.d.ts +78 -14
- package/ibc/applications/transfer/v1/token.js +18 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -0
- package/ibc/applications/transfer/v1/transfer.js +9 -0
- package/ibc/applications/transfer/v1/tx.d.ts +135 -22
- package/ibc/applications/transfer/v1/tx.js +40 -1
- package/ibc/bundle.d.ts +3830 -3396
- package/ibc/bundle.js +196 -173
- package/ibc/client.d.ts +20 -5
- package/ibc/client.js +4 -1
- package/ibc/core/channel/v1/channel.d.ts +292 -60
- package/ibc/core/channel/v1/channel.js +64 -0
- package/ibc/core/channel/v1/genesis.d.ts +37 -4
- package/ibc/core/channel/v1/genesis.js +13 -0
- package/ibc/core/channel/v1/query.d.ts +839 -158
- package/ibc/core/channel/v1/query.js +197 -0
- package/ibc/core/channel/v1/tx.d.ts +335 -30
- package/ibc/core/channel/v1/tx.js +129 -0
- package/ibc/core/channel/v2/genesis.d.ts +81 -14
- package/ibc/core/channel/v2/genesis.js +21 -0
- package/ibc/core/channel/v2/packet.d.ts +137 -28
- package/ibc/core/channel/v2/packet.js +29 -0
- package/ibc/core/channel/v2/query.d.ts +490 -98
- package/ibc/core/channel/v2/query.js +100 -0
- package/ibc/core/channel/v2/tx.d.ts +144 -16
- package/ibc/core/channel/v2/tx.js +48 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/genesis.d.ts +82 -16
- package/ibc/core/client/v1/genesis.js +20 -0
- package/ibc/core/client/v1/query.d.ts +508 -74
- package/ibc/core/client/v1/query.js +154 -0
- package/ibc/core/client/v1/tx.amino.d.ts +1 -6
- package/ibc/core/client/v1/tx.amino.js +0 -5
- package/ibc/core/client/v1/tx.d.ts +336 -138
- package/ibc/core/client/v1/tx.js +87 -152
- package/ibc/core/client/v1/tx.registry.d.ts +1 -13
- package/ibc/core/client/v1/tx.registry.js +1 -19
- package/ibc/core/client/v1/tx.rpc.msg.d.ts +1 -4
- package/ibc/core/client/v1/tx.rpc.msg.js +0 -6
- package/ibc/core/client/v2/config.d.ts +21 -2
- package/ibc/core/client/v2/config.js +9 -0
- package/ibc/core/client/v2/counterparty.d.ts +30 -6
- package/ibc/core/client/v2/counterparty.js +6 -0
- package/ibc/core/client/v2/genesis.d.ts +54 -10
- package/ibc/core/client/v2/genesis.js +12 -0
- package/ibc/core/client/v2/query.d.ts +74 -8
- package/ibc/core/client/v2/query.js +26 -0
- package/ibc/core/client/v2/tx.d.ts +108 -20
- package/ibc/core/client/v2/tx.js +24 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/commitment/v2/commitment.d.ts +42 -0
- package/ibc/core/commitment/v2/commitment.js +36 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +6 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +83 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/lcd.d.ts +3 -0
- package/ibc/lcd.js +5 -0
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +277 -24
- package/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +180 -26
- package/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +140 -26
- package/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +24 -0
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/wasm.d.ts +52 -46
- package/ibc/lightclients/wasm/v1/wasm.js +19 -74
- package/ibc/rpc.query.d.ts +11 -9
- package/ibc/rpc.query.js +3 -5
- package/ibc/rpc.tx.d.ts +3 -0
- package/ibc/rpc.tx.js +3 -0
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/sparkdream/blog/module/v1/module.d.ts +18 -2
- package/sparkdream/blog/module/v1/module.js +6 -0
- package/sparkdream/blog/v1/genesis.d.ts +24 -4
- package/sparkdream/blog/v1/genesis.js +6 -0
- package/sparkdream/blog/v1/params.d.ts +18 -2
- package/sparkdream/blog/v1/params.js +6 -0
- package/sparkdream/blog/v1/post.d.ts +18 -2
- package/sparkdream/blog/v1/post.js +6 -0
- package/sparkdream/blog/v1/query.d.ts +114 -14
- package/sparkdream/blog/v1/query.js +36 -0
- package/sparkdream/blog/v1/tx.d.ts +151 -18
- package/sparkdream/blog/v1/tx.js +49 -0
- package/sparkdream/bundle.d.ts +302 -310
- package/sparkdream/bundle.js +41 -41
- package/sparkdream/rpc.query.d.ts +1 -9
- package/sparkdream/rpc.query.js +0 -5
- package/sparkdream/sparkdream/module/v1/module.d.ts +18 -2
- package/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/sparkdream/sparkdream/v1/genesis.d.ts +24 -4
- package/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/sparkdream/sparkdream/v1/params.d.ts +18 -2
- package/sparkdream/sparkdream/v1/params.js +6 -0
- package/sparkdream/sparkdream/v1/query.d.ts +42 -6
- package/sparkdream/sparkdream/v1/query.js +12 -0
- package/sparkdream/sparkdream/v1/tx.d.ts +37 -4
- package/sparkdream/sparkdream/v1/tx.js +13 -0
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +18 -18
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +20 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -38
- package/cosmos/orm/module/v1alpha1/module.js +0 -62
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
- package/cosmos/orm/query/v1alpha1/query.js +0 -695
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
|
@@ -64,6 +64,13 @@ function createBaseMsgChannelOpenInit() {
|
|
|
64
64
|
signer: ""
|
|
65
65
|
};
|
|
66
66
|
}
|
|
67
|
+
/**
|
|
68
|
+
* MsgChannelOpenInit defines an sdk.Msg to initialize a channel handshake. It
|
|
69
|
+
* is called by a relayer on Chain A.
|
|
70
|
+
* @name MsgChannelOpenInit
|
|
71
|
+
* @package ibc.core.channel.v1
|
|
72
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInit
|
|
73
|
+
*/
|
|
67
74
|
exports.MsgChannelOpenInit = {
|
|
68
75
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenInit",
|
|
69
76
|
aminoType: "cosmos-sdk/MsgChannelOpenInit",
|
|
@@ -157,6 +164,12 @@ function createBaseMsgChannelOpenInitResponse() {
|
|
|
157
164
|
version: ""
|
|
158
165
|
};
|
|
159
166
|
}
|
|
167
|
+
/**
|
|
168
|
+
* MsgChannelOpenInitResponse defines the Msg/ChannelOpenInit response type.
|
|
169
|
+
* @name MsgChannelOpenInitResponse
|
|
170
|
+
* @package ibc.core.channel.v1
|
|
171
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenInitResponse
|
|
172
|
+
*/
|
|
160
173
|
exports.MsgChannelOpenInitResponse = {
|
|
161
174
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenInitResponse",
|
|
162
175
|
aminoType: "cosmos-sdk/MsgChannelOpenInitResponse",
|
|
@@ -244,6 +257,14 @@ function createBaseMsgChannelOpenTry() {
|
|
|
244
257
|
signer: ""
|
|
245
258
|
};
|
|
246
259
|
}
|
|
260
|
+
/**
|
|
261
|
+
* MsgChannelOpenInit defines a msg sent by a Relayer to try to open a channel
|
|
262
|
+
* on Chain B. The version field within the Channel field has been deprecated. Its
|
|
263
|
+
* value will be ignored by core IBC.
|
|
264
|
+
* @name MsgChannelOpenTry
|
|
265
|
+
* @package ibc.core.channel.v1
|
|
266
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTry
|
|
267
|
+
*/
|
|
247
268
|
exports.MsgChannelOpenTry = {
|
|
248
269
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenTry",
|
|
249
270
|
aminoType: "cosmos-sdk/MsgChannelOpenTry",
|
|
@@ -381,6 +402,12 @@ function createBaseMsgChannelOpenTryResponse() {
|
|
|
381
402
|
channelId: ""
|
|
382
403
|
};
|
|
383
404
|
}
|
|
405
|
+
/**
|
|
406
|
+
* MsgChannelOpenTryResponse defines the Msg/ChannelOpenTry response type.
|
|
407
|
+
* @name MsgChannelOpenTryResponse
|
|
408
|
+
* @package ibc.core.channel.v1
|
|
409
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenTryResponse
|
|
410
|
+
*/
|
|
384
411
|
exports.MsgChannelOpenTryResponse = {
|
|
385
412
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenTryResponse",
|
|
386
413
|
aminoType: "cosmos-sdk/MsgChannelOpenTryResponse",
|
|
@@ -468,6 +495,13 @@ function createBaseMsgChannelOpenAck() {
|
|
|
468
495
|
signer: ""
|
|
469
496
|
};
|
|
470
497
|
}
|
|
498
|
+
/**
|
|
499
|
+
* MsgChannelOpenAck defines a msg sent by a Relayer to Chain A to acknowledge
|
|
500
|
+
* the change of channel state to TRYOPEN on Chain B.
|
|
501
|
+
* @name MsgChannelOpenAck
|
|
502
|
+
* @package ibc.core.channel.v1
|
|
503
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAck
|
|
504
|
+
*/
|
|
471
505
|
exports.MsgChannelOpenAck = {
|
|
472
506
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenAck",
|
|
473
507
|
aminoType: "cosmos-sdk/MsgChannelOpenAck",
|
|
@@ -602,6 +636,12 @@ exports.MsgChannelOpenAck = {
|
|
|
602
636
|
function createBaseMsgChannelOpenAckResponse() {
|
|
603
637
|
return {};
|
|
604
638
|
}
|
|
639
|
+
/**
|
|
640
|
+
* MsgChannelOpenAckResponse defines the Msg/ChannelOpenAck response type.
|
|
641
|
+
* @name MsgChannelOpenAckResponse
|
|
642
|
+
* @package ibc.core.channel.v1
|
|
643
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenAckResponse
|
|
644
|
+
*/
|
|
605
645
|
exports.MsgChannelOpenAckResponse = {
|
|
606
646
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenAckResponse",
|
|
607
647
|
aminoType: "cosmos-sdk/MsgChannelOpenAckResponse",
|
|
@@ -665,6 +705,13 @@ function createBaseMsgChannelOpenConfirm() {
|
|
|
665
705
|
signer: ""
|
|
666
706
|
};
|
|
667
707
|
}
|
|
708
|
+
/**
|
|
709
|
+
* MsgChannelOpenConfirm defines a msg sent by a Relayer to Chain B to
|
|
710
|
+
* acknowledge the change of channel state to OPEN on Chain A.
|
|
711
|
+
* @name MsgChannelOpenConfirm
|
|
712
|
+
* @package ibc.core.channel.v1
|
|
713
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirm
|
|
714
|
+
*/
|
|
668
715
|
exports.MsgChannelOpenConfirm = {
|
|
669
716
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenConfirm",
|
|
670
717
|
aminoType: "cosmos-sdk/MsgChannelOpenConfirm",
|
|
@@ -777,6 +824,13 @@ exports.MsgChannelOpenConfirm = {
|
|
|
777
824
|
function createBaseMsgChannelOpenConfirmResponse() {
|
|
778
825
|
return {};
|
|
779
826
|
}
|
|
827
|
+
/**
|
|
828
|
+
* MsgChannelOpenConfirmResponse defines the Msg/ChannelOpenConfirm response
|
|
829
|
+
* type.
|
|
830
|
+
* @name MsgChannelOpenConfirmResponse
|
|
831
|
+
* @package ibc.core.channel.v1
|
|
832
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelOpenConfirmResponse
|
|
833
|
+
*/
|
|
780
834
|
exports.MsgChannelOpenConfirmResponse = {
|
|
781
835
|
typeUrl: "/ibc.core.channel.v1.MsgChannelOpenConfirmResponse",
|
|
782
836
|
aminoType: "cosmos-sdk/MsgChannelOpenConfirmResponse",
|
|
@@ -838,6 +892,13 @@ function createBaseMsgChannelCloseInit() {
|
|
|
838
892
|
signer: ""
|
|
839
893
|
};
|
|
840
894
|
}
|
|
895
|
+
/**
|
|
896
|
+
* MsgChannelCloseInit defines a msg sent by a Relayer to Chain A
|
|
897
|
+
* to close a channel with Chain B.
|
|
898
|
+
* @name MsgChannelCloseInit
|
|
899
|
+
* @package ibc.core.channel.v1
|
|
900
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInit
|
|
901
|
+
*/
|
|
841
902
|
exports.MsgChannelCloseInit = {
|
|
842
903
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseInit",
|
|
843
904
|
aminoType: "cosmos-sdk/MsgChannelCloseInit",
|
|
@@ -928,6 +989,12 @@ exports.MsgChannelCloseInit = {
|
|
|
928
989
|
function createBaseMsgChannelCloseInitResponse() {
|
|
929
990
|
return {};
|
|
930
991
|
}
|
|
992
|
+
/**
|
|
993
|
+
* MsgChannelCloseInitResponse defines the Msg/ChannelCloseInit response type.
|
|
994
|
+
* @name MsgChannelCloseInitResponse
|
|
995
|
+
* @package ibc.core.channel.v1
|
|
996
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseInitResponse
|
|
997
|
+
*/
|
|
931
998
|
exports.MsgChannelCloseInitResponse = {
|
|
932
999
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseInitResponse",
|
|
933
1000
|
aminoType: "cosmos-sdk/MsgChannelCloseInitResponse",
|
|
@@ -991,6 +1058,13 @@ function createBaseMsgChannelCloseConfirm() {
|
|
|
991
1058
|
signer: ""
|
|
992
1059
|
};
|
|
993
1060
|
}
|
|
1061
|
+
/**
|
|
1062
|
+
* MsgChannelCloseConfirm defines a msg sent by a Relayer to Chain B
|
|
1063
|
+
* to acknowledge the change of channel state to CLOSED on Chain A.
|
|
1064
|
+
* @name MsgChannelCloseConfirm
|
|
1065
|
+
* @package ibc.core.channel.v1
|
|
1066
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirm
|
|
1067
|
+
*/
|
|
994
1068
|
exports.MsgChannelCloseConfirm = {
|
|
995
1069
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseConfirm",
|
|
996
1070
|
aminoType: "cosmos-sdk/MsgChannelCloseConfirm",
|
|
@@ -1103,6 +1177,13 @@ exports.MsgChannelCloseConfirm = {
|
|
|
1103
1177
|
function createBaseMsgChannelCloseConfirmResponse() {
|
|
1104
1178
|
return {};
|
|
1105
1179
|
}
|
|
1180
|
+
/**
|
|
1181
|
+
* MsgChannelCloseConfirmResponse defines the Msg/ChannelCloseConfirm response
|
|
1182
|
+
* type.
|
|
1183
|
+
* @name MsgChannelCloseConfirmResponse
|
|
1184
|
+
* @package ibc.core.channel.v1
|
|
1185
|
+
* @see proto type: ibc.core.channel.v1.MsgChannelCloseConfirmResponse
|
|
1186
|
+
*/
|
|
1106
1187
|
exports.MsgChannelCloseConfirmResponse = {
|
|
1107
1188
|
typeUrl: "/ibc.core.channel.v1.MsgChannelCloseConfirmResponse",
|
|
1108
1189
|
aminoType: "cosmos-sdk/MsgChannelCloseConfirmResponse",
|
|
@@ -1165,6 +1246,12 @@ function createBaseMsgRecvPacket() {
|
|
|
1165
1246
|
signer: ""
|
|
1166
1247
|
};
|
|
1167
1248
|
}
|
|
1249
|
+
/**
|
|
1250
|
+
* MsgRecvPacket receives incoming IBC packet
|
|
1251
|
+
* @name MsgRecvPacket
|
|
1252
|
+
* @package ibc.core.channel.v1
|
|
1253
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacket
|
|
1254
|
+
*/
|
|
1168
1255
|
exports.MsgRecvPacket = {
|
|
1169
1256
|
typeUrl: "/ibc.core.channel.v1.MsgRecvPacket",
|
|
1170
1257
|
aminoType: "cosmos-sdk/MsgRecvPacket",
|
|
@@ -1268,6 +1355,12 @@ function createBaseMsgRecvPacketResponse() {
|
|
|
1268
1355
|
result: 0
|
|
1269
1356
|
};
|
|
1270
1357
|
}
|
|
1358
|
+
/**
|
|
1359
|
+
* MsgRecvPacketResponse defines the Msg/RecvPacket response type.
|
|
1360
|
+
* @name MsgRecvPacketResponse
|
|
1361
|
+
* @package ibc.core.channel.v1
|
|
1362
|
+
* @see proto type: ibc.core.channel.v1.MsgRecvPacketResponse
|
|
1363
|
+
*/
|
|
1271
1364
|
exports.MsgRecvPacketResponse = {
|
|
1272
1365
|
typeUrl: "/ibc.core.channel.v1.MsgRecvPacketResponse",
|
|
1273
1366
|
aminoType: "cosmos-sdk/MsgRecvPacketResponse",
|
|
@@ -1342,6 +1435,12 @@ function createBaseMsgTimeout() {
|
|
|
1342
1435
|
signer: ""
|
|
1343
1436
|
};
|
|
1344
1437
|
}
|
|
1438
|
+
/**
|
|
1439
|
+
* MsgTimeout receives timed-out packet
|
|
1440
|
+
* @name MsgTimeout
|
|
1441
|
+
* @package ibc.core.channel.v1
|
|
1442
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeout
|
|
1443
|
+
*/
|
|
1345
1444
|
exports.MsgTimeout = {
|
|
1346
1445
|
typeUrl: "/ibc.core.channel.v1.MsgTimeout",
|
|
1347
1446
|
aminoType: "cosmos-sdk/MsgTimeout",
|
|
@@ -1456,6 +1555,12 @@ function createBaseMsgTimeoutResponse() {
|
|
|
1456
1555
|
result: 0
|
|
1457
1556
|
};
|
|
1458
1557
|
}
|
|
1558
|
+
/**
|
|
1559
|
+
* MsgTimeoutResponse defines the Msg/Timeout response type.
|
|
1560
|
+
* @name MsgTimeoutResponse
|
|
1561
|
+
* @package ibc.core.channel.v1
|
|
1562
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutResponse
|
|
1563
|
+
*/
|
|
1459
1564
|
exports.MsgTimeoutResponse = {
|
|
1460
1565
|
typeUrl: "/ibc.core.channel.v1.MsgTimeoutResponse",
|
|
1461
1566
|
aminoType: "cosmos-sdk/MsgTimeoutResponse",
|
|
@@ -1531,6 +1636,12 @@ function createBaseMsgTimeoutOnClose() {
|
|
|
1531
1636
|
signer: ""
|
|
1532
1637
|
};
|
|
1533
1638
|
}
|
|
1639
|
+
/**
|
|
1640
|
+
* MsgTimeoutOnClose timed-out packet upon counterparty channel closure.
|
|
1641
|
+
* @name MsgTimeoutOnClose
|
|
1642
|
+
* @package ibc.core.channel.v1
|
|
1643
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnClose
|
|
1644
|
+
*/
|
|
1534
1645
|
exports.MsgTimeoutOnClose = {
|
|
1535
1646
|
typeUrl: "/ibc.core.channel.v1.MsgTimeoutOnClose",
|
|
1536
1647
|
aminoType: "cosmos-sdk/MsgTimeoutOnClose",
|
|
@@ -1656,6 +1767,12 @@ function createBaseMsgTimeoutOnCloseResponse() {
|
|
|
1656
1767
|
result: 0
|
|
1657
1768
|
};
|
|
1658
1769
|
}
|
|
1770
|
+
/**
|
|
1771
|
+
* MsgTimeoutOnCloseResponse defines the Msg/TimeoutOnClose response type.
|
|
1772
|
+
* @name MsgTimeoutOnCloseResponse
|
|
1773
|
+
* @package ibc.core.channel.v1
|
|
1774
|
+
* @see proto type: ibc.core.channel.v1.MsgTimeoutOnCloseResponse
|
|
1775
|
+
*/
|
|
1659
1776
|
exports.MsgTimeoutOnCloseResponse = {
|
|
1660
1777
|
typeUrl: "/ibc.core.channel.v1.MsgTimeoutOnCloseResponse",
|
|
1661
1778
|
aminoType: "cosmos-sdk/MsgTimeoutOnCloseResponse",
|
|
@@ -1730,6 +1847,12 @@ function createBaseMsgAcknowledgement() {
|
|
|
1730
1847
|
signer: ""
|
|
1731
1848
|
};
|
|
1732
1849
|
}
|
|
1850
|
+
/**
|
|
1851
|
+
* MsgAcknowledgement receives incoming IBC acknowledgement
|
|
1852
|
+
* @name MsgAcknowledgement
|
|
1853
|
+
* @package ibc.core.channel.v1
|
|
1854
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgement
|
|
1855
|
+
*/
|
|
1733
1856
|
exports.MsgAcknowledgement = {
|
|
1734
1857
|
typeUrl: "/ibc.core.channel.v1.MsgAcknowledgement",
|
|
1735
1858
|
aminoType: "cosmos-sdk/MsgAcknowledgement",
|
|
@@ -1844,6 +1967,12 @@ function createBaseMsgAcknowledgementResponse() {
|
|
|
1844
1967
|
result: 0
|
|
1845
1968
|
};
|
|
1846
1969
|
}
|
|
1970
|
+
/**
|
|
1971
|
+
* MsgAcknowledgementResponse defines the Msg/Acknowledgement response type.
|
|
1972
|
+
* @name MsgAcknowledgementResponse
|
|
1973
|
+
* @package ibc.core.channel.v1
|
|
1974
|
+
* @see proto type: ibc.core.channel.v1.MsgAcknowledgementResponse
|
|
1975
|
+
*/
|
|
1847
1976
|
exports.MsgAcknowledgementResponse = {
|
|
1848
1977
|
typeUrl: "/ibc.core.channel.v1.MsgAcknowledgementResponse",
|
|
1849
1978
|
aminoType: "cosmos-sdk/MsgAcknowledgementResponse",
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
2
2
|
import { DeepPartial } from "../../../../helpers";
|
|
3
|
-
/**
|
|
3
|
+
/**
|
|
4
|
+
* GenesisState defines the ibc channel/v2 submodule's genesis state.
|
|
5
|
+
* @name GenesisState
|
|
6
|
+
* @package ibc.core.channel.v2
|
|
7
|
+
* @see proto type: ibc.core.channel.v2.GenesisState
|
|
8
|
+
*/
|
|
4
9
|
export interface GenesisState {
|
|
5
10
|
acknowledgements: PacketState[];
|
|
6
11
|
commitments: PacketState[];
|
|
@@ -12,7 +17,12 @@ export interface GenesisStateProtoMsg {
|
|
|
12
17
|
typeUrl: "/ibc.core.channel.v2.GenesisState";
|
|
13
18
|
value: Uint8Array;
|
|
14
19
|
}
|
|
15
|
-
/**
|
|
20
|
+
/**
|
|
21
|
+
* GenesisState defines the ibc channel/v2 submodule's genesis state.
|
|
22
|
+
* @name GenesisStateAmino
|
|
23
|
+
* @package ibc.core.channel.v2
|
|
24
|
+
* @see proto type: ibc.core.channel.v2.GenesisState
|
|
25
|
+
*/
|
|
16
26
|
export interface GenesisStateAmino {
|
|
17
27
|
acknowledgements?: PacketStateAmino[];
|
|
18
28
|
commitments?: PacketStateAmino[];
|
|
@@ -29,13 +39,22 @@ export interface GenesisStateAminoMsg {
|
|
|
29
39
|
* packet commitments, acknowledgements, and receipts.
|
|
30
40
|
* Caller is responsible for knowing the context necessary to interpret this
|
|
31
41
|
* state as a commitment, acknowledgement, or a receipt.
|
|
42
|
+
* @name PacketState
|
|
43
|
+
* @package ibc.core.channel.v2
|
|
44
|
+
* @see proto type: ibc.core.channel.v2.PacketState
|
|
32
45
|
*/
|
|
33
46
|
export interface PacketState {
|
|
34
|
-
/**
|
|
47
|
+
/**
|
|
48
|
+
* client unique identifier.
|
|
49
|
+
*/
|
|
35
50
|
clientId: string;
|
|
36
|
-
/**
|
|
51
|
+
/**
|
|
52
|
+
* packet sequence.
|
|
53
|
+
*/
|
|
37
54
|
sequence: bigint;
|
|
38
|
-
/**
|
|
55
|
+
/**
|
|
56
|
+
* embedded data that represents packet state.
|
|
57
|
+
*/
|
|
39
58
|
data: Uint8Array;
|
|
40
59
|
}
|
|
41
60
|
export interface PacketStateProtoMsg {
|
|
@@ -47,41 +66,74 @@ export interface PacketStateProtoMsg {
|
|
|
47
66
|
* packet commitments, acknowledgements, and receipts.
|
|
48
67
|
* Caller is responsible for knowing the context necessary to interpret this
|
|
49
68
|
* state as a commitment, acknowledgement, or a receipt.
|
|
69
|
+
* @name PacketStateAmino
|
|
70
|
+
* @package ibc.core.channel.v2
|
|
71
|
+
* @see proto type: ibc.core.channel.v2.PacketState
|
|
50
72
|
*/
|
|
51
73
|
export interface PacketStateAmino {
|
|
52
|
-
/**
|
|
74
|
+
/**
|
|
75
|
+
* client unique identifier.
|
|
76
|
+
*/
|
|
53
77
|
client_id?: string;
|
|
54
|
-
/**
|
|
78
|
+
/**
|
|
79
|
+
* packet sequence.
|
|
80
|
+
*/
|
|
55
81
|
sequence?: string;
|
|
56
|
-
/**
|
|
82
|
+
/**
|
|
83
|
+
* embedded data that represents packet state.
|
|
84
|
+
*/
|
|
57
85
|
data?: string;
|
|
58
86
|
}
|
|
59
87
|
export interface PacketStateAminoMsg {
|
|
60
88
|
type: "cosmos-sdk/PacketState";
|
|
61
89
|
value: PacketStateAmino;
|
|
62
90
|
}
|
|
63
|
-
/**
|
|
91
|
+
/**
|
|
92
|
+
* PacketSequence defines the genesis type necessary to retrieve and store next send sequences.
|
|
93
|
+
* @name PacketSequence
|
|
94
|
+
* @package ibc.core.channel.v2
|
|
95
|
+
* @see proto type: ibc.core.channel.v2.PacketSequence
|
|
96
|
+
*/
|
|
64
97
|
export interface PacketSequence {
|
|
65
|
-
/**
|
|
98
|
+
/**
|
|
99
|
+
* client unique identifier.
|
|
100
|
+
*/
|
|
66
101
|
clientId: string;
|
|
67
|
-
/**
|
|
102
|
+
/**
|
|
103
|
+
* packet sequence
|
|
104
|
+
*/
|
|
68
105
|
sequence: bigint;
|
|
69
106
|
}
|
|
70
107
|
export interface PacketSequenceProtoMsg {
|
|
71
108
|
typeUrl: "/ibc.core.channel.v2.PacketSequence";
|
|
72
109
|
value: Uint8Array;
|
|
73
110
|
}
|
|
74
|
-
/**
|
|
111
|
+
/**
|
|
112
|
+
* PacketSequence defines the genesis type necessary to retrieve and store next send sequences.
|
|
113
|
+
* @name PacketSequenceAmino
|
|
114
|
+
* @package ibc.core.channel.v2
|
|
115
|
+
* @see proto type: ibc.core.channel.v2.PacketSequence
|
|
116
|
+
*/
|
|
75
117
|
export interface PacketSequenceAmino {
|
|
76
|
-
/**
|
|
118
|
+
/**
|
|
119
|
+
* client unique identifier.
|
|
120
|
+
*/
|
|
77
121
|
client_id?: string;
|
|
78
|
-
/**
|
|
122
|
+
/**
|
|
123
|
+
* packet sequence
|
|
124
|
+
*/
|
|
79
125
|
sequence?: string;
|
|
80
126
|
}
|
|
81
127
|
export interface PacketSequenceAminoMsg {
|
|
82
128
|
type: "cosmos-sdk/PacketSequence";
|
|
83
129
|
value: PacketSequenceAmino;
|
|
84
130
|
}
|
|
131
|
+
/**
|
|
132
|
+
* GenesisState defines the ibc channel/v2 submodule's genesis state.
|
|
133
|
+
* @name GenesisState
|
|
134
|
+
* @package ibc.core.channel.v2
|
|
135
|
+
* @see proto type: ibc.core.channel.v2.GenesisState
|
|
136
|
+
*/
|
|
85
137
|
export declare const GenesisState: {
|
|
86
138
|
typeUrl: string;
|
|
87
139
|
aminoType: string;
|
|
@@ -96,6 +148,15 @@ export declare const GenesisState: {
|
|
|
96
148
|
toProto(message: GenesisState): Uint8Array;
|
|
97
149
|
toProtoMsg(message: GenesisState): GenesisStateProtoMsg;
|
|
98
150
|
};
|
|
151
|
+
/**
|
|
152
|
+
* PacketState defines the generic type necessary to retrieve and store
|
|
153
|
+
* packet commitments, acknowledgements, and receipts.
|
|
154
|
+
* Caller is responsible for knowing the context necessary to interpret this
|
|
155
|
+
* state as a commitment, acknowledgement, or a receipt.
|
|
156
|
+
* @name PacketState
|
|
157
|
+
* @package ibc.core.channel.v2
|
|
158
|
+
* @see proto type: ibc.core.channel.v2.PacketState
|
|
159
|
+
*/
|
|
99
160
|
export declare const PacketState: {
|
|
100
161
|
typeUrl: string;
|
|
101
162
|
aminoType: string;
|
|
@@ -110,6 +171,12 @@ export declare const PacketState: {
|
|
|
110
171
|
toProto(message: PacketState): Uint8Array;
|
|
111
172
|
toProtoMsg(message: PacketState): PacketStateProtoMsg;
|
|
112
173
|
};
|
|
174
|
+
/**
|
|
175
|
+
* PacketSequence defines the genesis type necessary to retrieve and store next send sequences.
|
|
176
|
+
* @name PacketSequence
|
|
177
|
+
* @package ibc.core.channel.v2
|
|
178
|
+
* @see proto type: ibc.core.channel.v2.PacketSequence
|
|
179
|
+
*/
|
|
113
180
|
export declare const PacketSequence: {
|
|
114
181
|
typeUrl: string;
|
|
115
182
|
aminoType: string;
|
|
@@ -13,6 +13,12 @@ function createBaseGenesisState() {
|
|
|
13
13
|
sendSequences: []
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
|
+
/**
|
|
17
|
+
* GenesisState defines the ibc channel/v2 submodule's genesis state.
|
|
18
|
+
* @name GenesisState
|
|
19
|
+
* @package ibc.core.channel.v2
|
|
20
|
+
* @see proto type: ibc.core.channel.v2.GenesisState
|
|
21
|
+
*/
|
|
16
22
|
exports.GenesisState = {
|
|
17
23
|
typeUrl: "/ibc.core.channel.v2.GenesisState",
|
|
18
24
|
aminoType: "cosmos-sdk/GenesisState",
|
|
@@ -144,6 +150,15 @@ function createBasePacketState() {
|
|
|
144
150
|
data: new Uint8Array()
|
|
145
151
|
};
|
|
146
152
|
}
|
|
153
|
+
/**
|
|
154
|
+
* PacketState defines the generic type necessary to retrieve and store
|
|
155
|
+
* packet commitments, acknowledgements, and receipts.
|
|
156
|
+
* Caller is responsible for knowing the context necessary to interpret this
|
|
157
|
+
* state as a commitment, acknowledgement, or a receipt.
|
|
158
|
+
* @name PacketState
|
|
159
|
+
* @package ibc.core.channel.v2
|
|
160
|
+
* @see proto type: ibc.core.channel.v2.PacketState
|
|
161
|
+
*/
|
|
147
162
|
exports.PacketState = {
|
|
148
163
|
typeUrl: "/ibc.core.channel.v2.PacketState",
|
|
149
164
|
aminoType: "cosmos-sdk/PacketState",
|
|
@@ -237,6 +252,12 @@ function createBasePacketSequence() {
|
|
|
237
252
|
sequence: BigInt(0)
|
|
238
253
|
};
|
|
239
254
|
}
|
|
255
|
+
/**
|
|
256
|
+
* PacketSequence defines the genesis type necessary to retrieve and store next send sequences.
|
|
257
|
+
* @name PacketSequence
|
|
258
|
+
* @package ibc.core.channel.v2
|
|
259
|
+
* @see proto type: ibc.core.channel.v2.PacketSequence
|
|
260
|
+
*/
|
|
240
261
|
exports.PacketSequence = {
|
|
241
262
|
typeUrl: "/ibc.core.channel.v2.PacketSequence",
|
|
242
263
|
aminoType: "cosmos-sdk/PacketSequence",
|