@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
|
@@ -3,7 +3,12 @@ import { InterchainAccountPacketData, InterchainAccountPacketDataAmino } from ".
|
|
|
3
3
|
import { Params, ParamsAmino } from "./controller";
|
|
4
4
|
import { BinaryReader, BinaryWriter } from "../../../../../binary";
|
|
5
5
|
import { DeepPartial } from "../../../../../helpers";
|
|
6
|
-
/**
|
|
6
|
+
/**
|
|
7
|
+
* MsgRegisterInterchainAccount defines the payload for Msg/RegisterAccount
|
|
8
|
+
* @name MsgRegisterInterchainAccount
|
|
9
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
10
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccount
|
|
11
|
+
*/
|
|
7
12
|
export interface MsgRegisterInterchainAccount {
|
|
8
13
|
owner: string;
|
|
9
14
|
connectionId: string;
|
|
@@ -14,7 +19,12 @@ export interface MsgRegisterInterchainAccountProtoMsg {
|
|
|
14
19
|
typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccount";
|
|
15
20
|
value: Uint8Array;
|
|
16
21
|
}
|
|
17
|
-
/**
|
|
22
|
+
/**
|
|
23
|
+
* MsgRegisterInterchainAccount defines the payload for Msg/RegisterAccount
|
|
24
|
+
* @name MsgRegisterInterchainAccountAmino
|
|
25
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
26
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccount
|
|
27
|
+
*/
|
|
18
28
|
export interface MsgRegisterInterchainAccountAmino {
|
|
19
29
|
owner?: string;
|
|
20
30
|
connection_id?: string;
|
|
@@ -25,7 +35,12 @@ export interface MsgRegisterInterchainAccountAminoMsg {
|
|
|
25
35
|
type: "cosmos-sdk/MsgRegisterInterchainAccount";
|
|
26
36
|
value: MsgRegisterInterchainAccountAmino;
|
|
27
37
|
}
|
|
28
|
-
/**
|
|
38
|
+
/**
|
|
39
|
+
* MsgRegisterInterchainAccountResponse defines the response for Msg/RegisterAccount
|
|
40
|
+
* @name MsgRegisterInterchainAccountResponse
|
|
41
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
42
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccountResponse
|
|
43
|
+
*/
|
|
29
44
|
export interface MsgRegisterInterchainAccountResponse {
|
|
30
45
|
channelId: string;
|
|
31
46
|
portId: string;
|
|
@@ -34,7 +49,12 @@ export interface MsgRegisterInterchainAccountResponseProtoMsg {
|
|
|
34
49
|
typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccountResponse";
|
|
35
50
|
value: Uint8Array;
|
|
36
51
|
}
|
|
37
|
-
/**
|
|
52
|
+
/**
|
|
53
|
+
* MsgRegisterInterchainAccountResponse defines the response for Msg/RegisterAccount
|
|
54
|
+
* @name MsgRegisterInterchainAccountResponseAmino
|
|
55
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
56
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccountResponse
|
|
57
|
+
*/
|
|
38
58
|
export interface MsgRegisterInterchainAccountResponseAmino {
|
|
39
59
|
channel_id?: string;
|
|
40
60
|
port_id?: string;
|
|
@@ -43,7 +63,12 @@ export interface MsgRegisterInterchainAccountResponseAminoMsg {
|
|
|
43
63
|
type: "cosmos-sdk/MsgRegisterInterchainAccountResponse";
|
|
44
64
|
value: MsgRegisterInterchainAccountResponseAmino;
|
|
45
65
|
}
|
|
46
|
-
/**
|
|
66
|
+
/**
|
|
67
|
+
* MsgSendTx defines the payload for Msg/SendTx
|
|
68
|
+
* @name MsgSendTx
|
|
69
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
70
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgSendTx
|
|
71
|
+
*/
|
|
47
72
|
export interface MsgSendTx {
|
|
48
73
|
owner: string;
|
|
49
74
|
connectionId: string;
|
|
@@ -58,7 +83,12 @@ export interface MsgSendTxProtoMsg {
|
|
|
58
83
|
typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgSendTx";
|
|
59
84
|
value: Uint8Array;
|
|
60
85
|
}
|
|
61
|
-
/**
|
|
86
|
+
/**
|
|
87
|
+
* MsgSendTx defines the payload for Msg/SendTx
|
|
88
|
+
* @name MsgSendTxAmino
|
|
89
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
90
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgSendTx
|
|
91
|
+
*/
|
|
62
92
|
export interface MsgSendTxAmino {
|
|
63
93
|
owner?: string;
|
|
64
94
|
connection_id?: string;
|
|
@@ -73,7 +103,12 @@ export interface MsgSendTxAminoMsg {
|
|
|
73
103
|
type: "cosmos-sdk/MsgSendTx";
|
|
74
104
|
value: MsgSendTxAmino;
|
|
75
105
|
}
|
|
76
|
-
/**
|
|
106
|
+
/**
|
|
107
|
+
* MsgSendTxResponse defines the response for MsgSendTx
|
|
108
|
+
* @name MsgSendTxResponse
|
|
109
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
110
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgSendTxResponse
|
|
111
|
+
*/
|
|
77
112
|
export interface MsgSendTxResponse {
|
|
78
113
|
sequence: bigint;
|
|
79
114
|
}
|
|
@@ -81,7 +116,12 @@ export interface MsgSendTxResponseProtoMsg {
|
|
|
81
116
|
typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgSendTxResponse";
|
|
82
117
|
value: Uint8Array;
|
|
83
118
|
}
|
|
84
|
-
/**
|
|
119
|
+
/**
|
|
120
|
+
* MsgSendTxResponse defines the response for MsgSendTx
|
|
121
|
+
* @name MsgSendTxResponseAmino
|
|
122
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
123
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgSendTxResponse
|
|
124
|
+
*/
|
|
85
125
|
export interface MsgSendTxResponseAmino {
|
|
86
126
|
sequence?: string;
|
|
87
127
|
}
|
|
@@ -89,9 +129,16 @@ export interface MsgSendTxResponseAminoMsg {
|
|
|
89
129
|
type: "cosmos-sdk/MsgSendTxResponse";
|
|
90
130
|
value: MsgSendTxResponseAmino;
|
|
91
131
|
}
|
|
92
|
-
/**
|
|
132
|
+
/**
|
|
133
|
+
* MsgUpdateParams defines the payload for Msg/UpdateParams
|
|
134
|
+
* @name MsgUpdateParams
|
|
135
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
136
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgUpdateParams
|
|
137
|
+
*/
|
|
93
138
|
export interface MsgUpdateParams {
|
|
94
|
-
/**
|
|
139
|
+
/**
|
|
140
|
+
* signer address
|
|
141
|
+
*/
|
|
95
142
|
signer: string;
|
|
96
143
|
/**
|
|
97
144
|
* params defines the 27-interchain-accounts/controller parameters to update.
|
|
@@ -104,9 +151,16 @@ export interface MsgUpdateParamsProtoMsg {
|
|
|
104
151
|
typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgUpdateParams";
|
|
105
152
|
value: Uint8Array;
|
|
106
153
|
}
|
|
107
|
-
/**
|
|
154
|
+
/**
|
|
155
|
+
* MsgUpdateParams defines the payload for Msg/UpdateParams
|
|
156
|
+
* @name MsgUpdateParamsAmino
|
|
157
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
158
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgUpdateParams
|
|
159
|
+
*/
|
|
108
160
|
export interface MsgUpdateParamsAmino {
|
|
109
|
-
/**
|
|
161
|
+
/**
|
|
162
|
+
* signer address
|
|
163
|
+
*/
|
|
110
164
|
signer?: string;
|
|
111
165
|
/**
|
|
112
166
|
* params defines the 27-interchain-accounts/controller parameters to update.
|
|
@@ -119,20 +173,36 @@ export interface MsgUpdateParamsAminoMsg {
|
|
|
119
173
|
type: "cosmos-sdk/MsgUpdateParams";
|
|
120
174
|
value: MsgUpdateParamsAmino;
|
|
121
175
|
}
|
|
122
|
-
/**
|
|
176
|
+
/**
|
|
177
|
+
* MsgUpdateParamsResponse defines the response for Msg/UpdateParams
|
|
178
|
+
* @name MsgUpdateParamsResponse
|
|
179
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
180
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgUpdateParamsResponse
|
|
181
|
+
*/
|
|
123
182
|
export interface MsgUpdateParamsResponse {
|
|
124
183
|
}
|
|
125
184
|
export interface MsgUpdateParamsResponseProtoMsg {
|
|
126
185
|
typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgUpdateParamsResponse";
|
|
127
186
|
value: Uint8Array;
|
|
128
187
|
}
|
|
129
|
-
/**
|
|
188
|
+
/**
|
|
189
|
+
* MsgUpdateParamsResponse defines the response for Msg/UpdateParams
|
|
190
|
+
* @name MsgUpdateParamsResponseAmino
|
|
191
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
192
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgUpdateParamsResponse
|
|
193
|
+
*/
|
|
130
194
|
export interface MsgUpdateParamsResponseAmino {
|
|
131
195
|
}
|
|
132
196
|
export interface MsgUpdateParamsResponseAminoMsg {
|
|
133
197
|
type: "cosmos-sdk/MsgUpdateParamsResponse";
|
|
134
198
|
value: MsgUpdateParamsResponseAmino;
|
|
135
199
|
}
|
|
200
|
+
/**
|
|
201
|
+
* MsgRegisterInterchainAccount defines the payload for Msg/RegisterAccount
|
|
202
|
+
* @name MsgRegisterInterchainAccount
|
|
203
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
204
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccount
|
|
205
|
+
*/
|
|
136
206
|
export declare const MsgRegisterInterchainAccount: {
|
|
137
207
|
typeUrl: string;
|
|
138
208
|
aminoType: string;
|
|
@@ -147,6 +217,12 @@ export declare const MsgRegisterInterchainAccount: {
|
|
|
147
217
|
toProto(message: MsgRegisterInterchainAccount): Uint8Array;
|
|
148
218
|
toProtoMsg(message: MsgRegisterInterchainAccount): MsgRegisterInterchainAccountProtoMsg;
|
|
149
219
|
};
|
|
220
|
+
/**
|
|
221
|
+
* MsgRegisterInterchainAccountResponse defines the response for Msg/RegisterAccount
|
|
222
|
+
* @name MsgRegisterInterchainAccountResponse
|
|
223
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
224
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccountResponse
|
|
225
|
+
*/
|
|
150
226
|
export declare const MsgRegisterInterchainAccountResponse: {
|
|
151
227
|
typeUrl: string;
|
|
152
228
|
aminoType: string;
|
|
@@ -161,6 +237,12 @@ export declare const MsgRegisterInterchainAccountResponse: {
|
|
|
161
237
|
toProto(message: MsgRegisterInterchainAccountResponse): Uint8Array;
|
|
162
238
|
toProtoMsg(message: MsgRegisterInterchainAccountResponse): MsgRegisterInterchainAccountResponseProtoMsg;
|
|
163
239
|
};
|
|
240
|
+
/**
|
|
241
|
+
* MsgSendTx defines the payload for Msg/SendTx
|
|
242
|
+
* @name MsgSendTx
|
|
243
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
244
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgSendTx
|
|
245
|
+
*/
|
|
164
246
|
export declare const MsgSendTx: {
|
|
165
247
|
typeUrl: string;
|
|
166
248
|
aminoType: string;
|
|
@@ -175,6 +257,12 @@ export declare const MsgSendTx: {
|
|
|
175
257
|
toProto(message: MsgSendTx): Uint8Array;
|
|
176
258
|
toProtoMsg(message: MsgSendTx): MsgSendTxProtoMsg;
|
|
177
259
|
};
|
|
260
|
+
/**
|
|
261
|
+
* MsgSendTxResponse defines the response for MsgSendTx
|
|
262
|
+
* @name MsgSendTxResponse
|
|
263
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
264
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgSendTxResponse
|
|
265
|
+
*/
|
|
178
266
|
export declare const MsgSendTxResponse: {
|
|
179
267
|
typeUrl: string;
|
|
180
268
|
aminoType: string;
|
|
@@ -189,6 +277,12 @@ export declare const MsgSendTxResponse: {
|
|
|
189
277
|
toProto(message: MsgSendTxResponse): Uint8Array;
|
|
190
278
|
toProtoMsg(message: MsgSendTxResponse): MsgSendTxResponseProtoMsg;
|
|
191
279
|
};
|
|
280
|
+
/**
|
|
281
|
+
* MsgUpdateParams defines the payload for Msg/UpdateParams
|
|
282
|
+
* @name MsgUpdateParams
|
|
283
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
284
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgUpdateParams
|
|
285
|
+
*/
|
|
192
286
|
export declare const MsgUpdateParams: {
|
|
193
287
|
typeUrl: string;
|
|
194
288
|
aminoType: string;
|
|
@@ -203,6 +297,12 @@ export declare const MsgUpdateParams: {
|
|
|
203
297
|
toProto(message: MsgUpdateParams): Uint8Array;
|
|
204
298
|
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
205
299
|
};
|
|
300
|
+
/**
|
|
301
|
+
* MsgUpdateParamsResponse defines the response for Msg/UpdateParams
|
|
302
|
+
* @name MsgUpdateParamsResponse
|
|
303
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
304
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgUpdateParamsResponse
|
|
305
|
+
*/
|
|
206
306
|
export declare const MsgUpdateParamsResponse: {
|
|
207
307
|
typeUrl: string;
|
|
208
308
|
aminoType: string;
|
|
@@ -12,6 +12,12 @@ function createBaseMsgRegisterInterchainAccount() {
|
|
|
12
12
|
ordering: 0
|
|
13
13
|
};
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* MsgRegisterInterchainAccount defines the payload for Msg/RegisterAccount
|
|
17
|
+
* @name MsgRegisterInterchainAccount
|
|
18
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
19
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccount
|
|
20
|
+
*/
|
|
15
21
|
exports.MsgRegisterInterchainAccount = {
|
|
16
22
|
typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccount",
|
|
17
23
|
aminoType: "cosmos-sdk/MsgRegisterInterchainAccount",
|
|
@@ -116,6 +122,12 @@ function createBaseMsgRegisterInterchainAccountResponse() {
|
|
|
116
122
|
portId: ""
|
|
117
123
|
};
|
|
118
124
|
}
|
|
125
|
+
/**
|
|
126
|
+
* MsgRegisterInterchainAccountResponse defines the response for Msg/RegisterAccount
|
|
127
|
+
* @name MsgRegisterInterchainAccountResponse
|
|
128
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
129
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccountResponse
|
|
130
|
+
*/
|
|
119
131
|
exports.MsgRegisterInterchainAccountResponse = {
|
|
120
132
|
typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgRegisterInterchainAccountResponse",
|
|
121
133
|
aminoType: "cosmos-sdk/MsgRegisterInterchainAccountResponse",
|
|
@@ -200,6 +212,12 @@ function createBaseMsgSendTx() {
|
|
|
200
212
|
relativeTimeout: BigInt(0)
|
|
201
213
|
};
|
|
202
214
|
}
|
|
215
|
+
/**
|
|
216
|
+
* MsgSendTx defines the payload for Msg/SendTx
|
|
217
|
+
* @name MsgSendTx
|
|
218
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
219
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgSendTx
|
|
220
|
+
*/
|
|
203
221
|
exports.MsgSendTx = {
|
|
204
222
|
typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgSendTx",
|
|
205
223
|
aminoType: "cosmos-sdk/MsgSendTx",
|
|
@@ -303,6 +321,12 @@ function createBaseMsgSendTxResponse() {
|
|
|
303
321
|
sequence: BigInt(0)
|
|
304
322
|
};
|
|
305
323
|
}
|
|
324
|
+
/**
|
|
325
|
+
* MsgSendTxResponse defines the response for MsgSendTx
|
|
326
|
+
* @name MsgSendTxResponse
|
|
327
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
328
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgSendTxResponse
|
|
329
|
+
*/
|
|
306
330
|
exports.MsgSendTxResponse = {
|
|
307
331
|
typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgSendTxResponse",
|
|
308
332
|
aminoType: "cosmos-sdk/MsgSendTxResponse",
|
|
@@ -374,6 +398,12 @@ function createBaseMsgUpdateParams() {
|
|
|
374
398
|
params: controller_1.Params.fromPartial({})
|
|
375
399
|
};
|
|
376
400
|
}
|
|
401
|
+
/**
|
|
402
|
+
* MsgUpdateParams defines the payload for Msg/UpdateParams
|
|
403
|
+
* @name MsgUpdateParams
|
|
404
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
405
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgUpdateParams
|
|
406
|
+
*/
|
|
377
407
|
exports.MsgUpdateParams = {
|
|
378
408
|
typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgUpdateParams",
|
|
379
409
|
aminoType: "cosmos-sdk/MsgUpdateParams",
|
|
@@ -453,6 +483,12 @@ exports.MsgUpdateParams = {
|
|
|
453
483
|
function createBaseMsgUpdateParamsResponse() {
|
|
454
484
|
return {};
|
|
455
485
|
}
|
|
486
|
+
/**
|
|
487
|
+
* MsgUpdateParamsResponse defines the response for Msg/UpdateParams
|
|
488
|
+
* @name MsgUpdateParamsResponse
|
|
489
|
+
* @package ibc.applications.interchain_accounts.controller.v1
|
|
490
|
+
* @see proto type: ibc.applications.interchain_accounts.controller.v1.MsgUpdateParamsResponse
|
|
491
|
+
*/
|
|
456
492
|
exports.MsgUpdateParamsResponse = {
|
|
457
493
|
typeUrl: "/ibc.applications.interchain_accounts.controller.v1.MsgUpdateParamsResponse",
|
|
458
494
|
aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
|
|
@@ -4,7 +4,12 @@ import { Params as Params2 } from "../../host/v1/host";
|
|
|
4
4
|
import { ParamsAmino as Params2Amino } from "../../host/v1/host";
|
|
5
5
|
import { BinaryReader, BinaryWriter } from "../../../../../binary";
|
|
6
6
|
import { DeepPartial } from "../../../../../helpers";
|
|
7
|
-
/**
|
|
7
|
+
/**
|
|
8
|
+
* GenesisState defines the interchain accounts genesis state
|
|
9
|
+
* @name GenesisState
|
|
10
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
11
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.GenesisState
|
|
12
|
+
*/
|
|
8
13
|
export interface GenesisState {
|
|
9
14
|
controllerGenesisState: ControllerGenesisState;
|
|
10
15
|
hostGenesisState: HostGenesisState;
|
|
@@ -13,7 +18,12 @@ export interface GenesisStateProtoMsg {
|
|
|
13
18
|
typeUrl: "/ibc.applications.interchain_accounts.genesis.v1.GenesisState";
|
|
14
19
|
value: Uint8Array;
|
|
15
20
|
}
|
|
16
|
-
/**
|
|
21
|
+
/**
|
|
22
|
+
* GenesisState defines the interchain accounts genesis state
|
|
23
|
+
* @name GenesisStateAmino
|
|
24
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
25
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.GenesisState
|
|
26
|
+
*/
|
|
17
27
|
export interface GenesisStateAmino {
|
|
18
28
|
controller_genesis_state?: ControllerGenesisStateAmino;
|
|
19
29
|
host_genesis_state?: HostGenesisStateAmino;
|
|
@@ -22,7 +32,12 @@ export interface GenesisStateAminoMsg {
|
|
|
22
32
|
type: "cosmos-sdk/GenesisState";
|
|
23
33
|
value: GenesisStateAmino;
|
|
24
34
|
}
|
|
25
|
-
/**
|
|
35
|
+
/**
|
|
36
|
+
* ControllerGenesisState defines the interchain accounts controller genesis state
|
|
37
|
+
* @name ControllerGenesisState
|
|
38
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
39
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.ControllerGenesisState
|
|
40
|
+
*/
|
|
26
41
|
export interface ControllerGenesisState {
|
|
27
42
|
activeChannels: ActiveChannel[];
|
|
28
43
|
interchainAccounts: RegisteredInterchainAccount[];
|
|
@@ -33,7 +48,12 @@ export interface ControllerGenesisStateProtoMsg {
|
|
|
33
48
|
typeUrl: "/ibc.applications.interchain_accounts.genesis.v1.ControllerGenesisState";
|
|
34
49
|
value: Uint8Array;
|
|
35
50
|
}
|
|
36
|
-
/**
|
|
51
|
+
/**
|
|
52
|
+
* ControllerGenesisState defines the interchain accounts controller genesis state
|
|
53
|
+
* @name ControllerGenesisStateAmino
|
|
54
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
55
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.ControllerGenesisState
|
|
56
|
+
*/
|
|
37
57
|
export interface ControllerGenesisStateAmino {
|
|
38
58
|
active_channels?: ActiveChannelAmino[];
|
|
39
59
|
interchain_accounts?: RegisteredInterchainAccountAmino[];
|
|
@@ -44,7 +64,12 @@ export interface ControllerGenesisStateAminoMsg {
|
|
|
44
64
|
type: "cosmos-sdk/ControllerGenesisState";
|
|
45
65
|
value: ControllerGenesisStateAmino;
|
|
46
66
|
}
|
|
47
|
-
/**
|
|
67
|
+
/**
|
|
68
|
+
* HostGenesisState defines the interchain accounts host genesis state
|
|
69
|
+
* @name HostGenesisState
|
|
70
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
71
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.HostGenesisState
|
|
72
|
+
*/
|
|
48
73
|
export interface HostGenesisState {
|
|
49
74
|
activeChannels: ActiveChannel[];
|
|
50
75
|
interchainAccounts: RegisteredInterchainAccount[];
|
|
@@ -55,7 +80,12 @@ export interface HostGenesisStateProtoMsg {
|
|
|
55
80
|
typeUrl: "/ibc.applications.interchain_accounts.genesis.v1.HostGenesisState";
|
|
56
81
|
value: Uint8Array;
|
|
57
82
|
}
|
|
58
|
-
/**
|
|
83
|
+
/**
|
|
84
|
+
* HostGenesisState defines the interchain accounts host genesis state
|
|
85
|
+
* @name HostGenesisStateAmino
|
|
86
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
87
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.HostGenesisState
|
|
88
|
+
*/
|
|
59
89
|
export interface HostGenesisStateAmino {
|
|
60
90
|
active_channels?: ActiveChannelAmino[];
|
|
61
91
|
interchain_accounts?: RegisteredInterchainAccountAmino[];
|
|
@@ -69,6 +99,9 @@ export interface HostGenesisStateAminoMsg {
|
|
|
69
99
|
/**
|
|
70
100
|
* ActiveChannel contains a connection ID, port ID and associated active channel ID, as well as a boolean flag to
|
|
71
101
|
* indicate if the channel is middleware enabled
|
|
102
|
+
* @name ActiveChannel
|
|
103
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
104
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.ActiveChannel
|
|
72
105
|
*/
|
|
73
106
|
export interface ActiveChannel {
|
|
74
107
|
connectionId: string;
|
|
@@ -83,6 +116,9 @@ export interface ActiveChannelProtoMsg {
|
|
|
83
116
|
/**
|
|
84
117
|
* ActiveChannel contains a connection ID, port ID and associated active channel ID, as well as a boolean flag to
|
|
85
118
|
* indicate if the channel is middleware enabled
|
|
119
|
+
* @name ActiveChannelAmino
|
|
120
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
121
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.ActiveChannel
|
|
86
122
|
*/
|
|
87
123
|
export interface ActiveChannelAmino {
|
|
88
124
|
connection_id?: string;
|
|
@@ -94,7 +130,12 @@ export interface ActiveChannelAminoMsg {
|
|
|
94
130
|
type: "cosmos-sdk/ActiveChannel";
|
|
95
131
|
value: ActiveChannelAmino;
|
|
96
132
|
}
|
|
97
|
-
/**
|
|
133
|
+
/**
|
|
134
|
+
* RegisteredInterchainAccount contains a connection ID, port ID and associated interchain account address
|
|
135
|
+
* @name RegisteredInterchainAccount
|
|
136
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
137
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.RegisteredInterchainAccount
|
|
138
|
+
*/
|
|
98
139
|
export interface RegisteredInterchainAccount {
|
|
99
140
|
connectionId: string;
|
|
100
141
|
portId: string;
|
|
@@ -104,7 +145,12 @@ export interface RegisteredInterchainAccountProtoMsg {
|
|
|
104
145
|
typeUrl: "/ibc.applications.interchain_accounts.genesis.v1.RegisteredInterchainAccount";
|
|
105
146
|
value: Uint8Array;
|
|
106
147
|
}
|
|
107
|
-
/**
|
|
148
|
+
/**
|
|
149
|
+
* RegisteredInterchainAccount contains a connection ID, port ID and associated interchain account address
|
|
150
|
+
* @name RegisteredInterchainAccountAmino
|
|
151
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
152
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.RegisteredInterchainAccount
|
|
153
|
+
*/
|
|
108
154
|
export interface RegisteredInterchainAccountAmino {
|
|
109
155
|
connection_id?: string;
|
|
110
156
|
port_id?: string;
|
|
@@ -114,6 +160,12 @@ export interface RegisteredInterchainAccountAminoMsg {
|
|
|
114
160
|
type: "cosmos-sdk/RegisteredInterchainAccount";
|
|
115
161
|
value: RegisteredInterchainAccountAmino;
|
|
116
162
|
}
|
|
163
|
+
/**
|
|
164
|
+
* GenesisState defines the interchain accounts genesis state
|
|
165
|
+
* @name GenesisState
|
|
166
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
167
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.GenesisState
|
|
168
|
+
*/
|
|
117
169
|
export declare const GenesisState: {
|
|
118
170
|
typeUrl: string;
|
|
119
171
|
aminoType: string;
|
|
@@ -128,6 +180,12 @@ export declare const GenesisState: {
|
|
|
128
180
|
toProto(message: GenesisState): Uint8Array;
|
|
129
181
|
toProtoMsg(message: GenesisState): GenesisStateProtoMsg;
|
|
130
182
|
};
|
|
183
|
+
/**
|
|
184
|
+
* ControllerGenesisState defines the interchain accounts controller genesis state
|
|
185
|
+
* @name ControllerGenesisState
|
|
186
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
187
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.ControllerGenesisState
|
|
188
|
+
*/
|
|
131
189
|
export declare const ControllerGenesisState: {
|
|
132
190
|
typeUrl: string;
|
|
133
191
|
aminoType: string;
|
|
@@ -142,6 +200,12 @@ export declare const ControllerGenesisState: {
|
|
|
142
200
|
toProto(message: ControllerGenesisState): Uint8Array;
|
|
143
201
|
toProtoMsg(message: ControllerGenesisState): ControllerGenesisStateProtoMsg;
|
|
144
202
|
};
|
|
203
|
+
/**
|
|
204
|
+
* HostGenesisState defines the interchain accounts host genesis state
|
|
205
|
+
* @name HostGenesisState
|
|
206
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
207
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.HostGenesisState
|
|
208
|
+
*/
|
|
145
209
|
export declare const HostGenesisState: {
|
|
146
210
|
typeUrl: string;
|
|
147
211
|
aminoType: string;
|
|
@@ -156,6 +220,13 @@ export declare const HostGenesisState: {
|
|
|
156
220
|
toProto(message: HostGenesisState): Uint8Array;
|
|
157
221
|
toProtoMsg(message: HostGenesisState): HostGenesisStateProtoMsg;
|
|
158
222
|
};
|
|
223
|
+
/**
|
|
224
|
+
* ActiveChannel contains a connection ID, port ID and associated active channel ID, as well as a boolean flag to
|
|
225
|
+
* indicate if the channel is middleware enabled
|
|
226
|
+
* @name ActiveChannel
|
|
227
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
228
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.ActiveChannel
|
|
229
|
+
*/
|
|
159
230
|
export declare const ActiveChannel: {
|
|
160
231
|
typeUrl: string;
|
|
161
232
|
aminoType: string;
|
|
@@ -170,6 +241,12 @@ export declare const ActiveChannel: {
|
|
|
170
241
|
toProto(message: ActiveChannel): Uint8Array;
|
|
171
242
|
toProtoMsg(message: ActiveChannel): ActiveChannelProtoMsg;
|
|
172
243
|
};
|
|
244
|
+
/**
|
|
245
|
+
* RegisteredInterchainAccount contains a connection ID, port ID and associated interchain account address
|
|
246
|
+
* @name RegisteredInterchainAccount
|
|
247
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
248
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.RegisteredInterchainAccount
|
|
249
|
+
*/
|
|
173
250
|
export declare const RegisteredInterchainAccount: {
|
|
174
251
|
typeUrl: string;
|
|
175
252
|
aminoType: string;
|
|
@@ -11,6 +11,12 @@ function createBaseGenesisState() {
|
|
|
11
11
|
hostGenesisState: exports.HostGenesisState.fromPartial({})
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* GenesisState defines the interchain accounts genesis state
|
|
16
|
+
* @name GenesisState
|
|
17
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
18
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.GenesisState
|
|
19
|
+
*/
|
|
14
20
|
exports.GenesisState = {
|
|
15
21
|
typeUrl: "/ibc.applications.interchain_accounts.genesis.v1.GenesisState",
|
|
16
22
|
aminoType: "cosmos-sdk/GenesisState",
|
|
@@ -95,6 +101,12 @@ function createBaseControllerGenesisState() {
|
|
|
95
101
|
params: controller_1.Params.fromPartial({})
|
|
96
102
|
};
|
|
97
103
|
}
|
|
104
|
+
/**
|
|
105
|
+
* ControllerGenesisState defines the interchain accounts controller genesis state
|
|
106
|
+
* @name ControllerGenesisState
|
|
107
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
108
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.ControllerGenesisState
|
|
109
|
+
*/
|
|
98
110
|
exports.ControllerGenesisState = {
|
|
99
111
|
typeUrl: "/ibc.applications.interchain_accounts.genesis.v1.ControllerGenesisState",
|
|
100
112
|
aminoType: "cosmos-sdk/ControllerGenesisState",
|
|
@@ -210,6 +222,12 @@ function createBaseHostGenesisState() {
|
|
|
210
222
|
params: host_1.Params.fromPartial({})
|
|
211
223
|
};
|
|
212
224
|
}
|
|
225
|
+
/**
|
|
226
|
+
* HostGenesisState defines the interchain accounts host genesis state
|
|
227
|
+
* @name HostGenesisState
|
|
228
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
229
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.HostGenesisState
|
|
230
|
+
*/
|
|
213
231
|
exports.HostGenesisState = {
|
|
214
232
|
typeUrl: "/ibc.applications.interchain_accounts.genesis.v1.HostGenesisState",
|
|
215
233
|
aminoType: "cosmos-sdk/HostGenesisState",
|
|
@@ -322,6 +340,13 @@ function createBaseActiveChannel() {
|
|
|
322
340
|
isMiddlewareEnabled: false
|
|
323
341
|
};
|
|
324
342
|
}
|
|
343
|
+
/**
|
|
344
|
+
* ActiveChannel contains a connection ID, port ID and associated active channel ID, as well as a boolean flag to
|
|
345
|
+
* indicate if the channel is middleware enabled
|
|
346
|
+
* @name ActiveChannel
|
|
347
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
348
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.ActiveChannel
|
|
349
|
+
*/
|
|
325
350
|
exports.ActiveChannel = {
|
|
326
351
|
typeUrl: "/ibc.applications.interchain_accounts.genesis.v1.ActiveChannel",
|
|
327
352
|
aminoType: "cosmos-sdk/ActiveChannel",
|
|
@@ -427,6 +452,12 @@ function createBaseRegisteredInterchainAccount() {
|
|
|
427
452
|
accountAddress: ""
|
|
428
453
|
};
|
|
429
454
|
}
|
|
455
|
+
/**
|
|
456
|
+
* RegisteredInterchainAccount contains a connection ID, port ID and associated interchain account address
|
|
457
|
+
* @name RegisteredInterchainAccount
|
|
458
|
+
* @package ibc.applications.interchain_accounts.genesis.v1
|
|
459
|
+
* @see proto type: ibc.applications.interchain_accounts.genesis.v1.RegisteredInterchainAccount
|
|
460
|
+
*/
|
|
430
461
|
exports.RegisteredInterchainAccount = {
|
|
431
462
|
typeUrl: "/ibc.applications.interchain_accounts.genesis.v1.RegisteredInterchainAccount",
|
|
432
463
|
aminoType: "cosmos-sdk/RegisteredInterchainAccount",
|
|
@@ -3,11 +3,18 @@ import { DeepPartial } from "../../../../../helpers";
|
|
|
3
3
|
/**
|
|
4
4
|
* Params defines the set of on-chain interchain accounts parameters.
|
|
5
5
|
* The following parameters may be used to disable the host submodule.
|
|
6
|
+
* @name Params
|
|
7
|
+
* @package ibc.applications.interchain_accounts.host.v1
|
|
8
|
+
* @see proto type: ibc.applications.interchain_accounts.host.v1.Params
|
|
6
9
|
*/
|
|
7
10
|
export interface Params {
|
|
8
|
-
/**
|
|
11
|
+
/**
|
|
12
|
+
* host_enabled enables or disables the host submodule.
|
|
13
|
+
*/
|
|
9
14
|
hostEnabled: boolean;
|
|
10
|
-
/**
|
|
15
|
+
/**
|
|
16
|
+
* allow_messages defines a list of sdk message typeURLs allowed to be executed on a host chain.
|
|
17
|
+
*/
|
|
11
18
|
allowMessages: string[];
|
|
12
19
|
}
|
|
13
20
|
export interface ParamsProtoMsg {
|
|
@@ -17,11 +24,18 @@ export interface ParamsProtoMsg {
|
|
|
17
24
|
/**
|
|
18
25
|
* Params defines the set of on-chain interchain accounts parameters.
|
|
19
26
|
* The following parameters may be used to disable the host submodule.
|
|
27
|
+
* @name ParamsAmino
|
|
28
|
+
* @package ibc.applications.interchain_accounts.host.v1
|
|
29
|
+
* @see proto type: ibc.applications.interchain_accounts.host.v1.Params
|
|
20
30
|
*/
|
|
21
31
|
export interface ParamsAmino {
|
|
22
|
-
/**
|
|
32
|
+
/**
|
|
33
|
+
* host_enabled enables or disables the host submodule.
|
|
34
|
+
*/
|
|
23
35
|
host_enabled?: boolean;
|
|
24
|
-
/**
|
|
36
|
+
/**
|
|
37
|
+
* allow_messages defines a list of sdk message typeURLs allowed to be executed on a host chain.
|
|
38
|
+
*/
|
|
25
39
|
allow_messages?: string[];
|
|
26
40
|
}
|
|
27
41
|
export interface ParamsAminoMsg {
|
|
@@ -31,6 +45,9 @@ export interface ParamsAminoMsg {
|
|
|
31
45
|
/**
|
|
32
46
|
* QueryRequest defines the parameters for a particular query request
|
|
33
47
|
* by an interchain account.
|
|
48
|
+
* @name QueryRequest
|
|
49
|
+
* @package ibc.applications.interchain_accounts.host.v1
|
|
50
|
+
* @see proto type: ibc.applications.interchain_accounts.host.v1.QueryRequest
|
|
34
51
|
*/
|
|
35
52
|
export interface QueryRequest {
|
|
36
53
|
/**
|
|
@@ -51,6 +68,9 @@ export interface QueryRequestProtoMsg {
|
|
|
51
68
|
/**
|
|
52
69
|
* QueryRequest defines the parameters for a particular query request
|
|
53
70
|
* by an interchain account.
|
|
71
|
+
* @name QueryRequestAmino
|
|
72
|
+
* @package ibc.applications.interchain_accounts.host.v1
|
|
73
|
+
* @see proto type: ibc.applications.interchain_accounts.host.v1.QueryRequest
|
|
54
74
|
*/
|
|
55
75
|
export interface QueryRequestAmino {
|
|
56
76
|
/**
|
|
@@ -68,6 +88,13 @@ export interface QueryRequestAminoMsg {
|
|
|
68
88
|
type: "cosmos-sdk/QueryRequest";
|
|
69
89
|
value: QueryRequestAmino;
|
|
70
90
|
}
|
|
91
|
+
/**
|
|
92
|
+
* Params defines the set of on-chain interchain accounts parameters.
|
|
93
|
+
* The following parameters may be used to disable the host submodule.
|
|
94
|
+
* @name Params
|
|
95
|
+
* @package ibc.applications.interchain_accounts.host.v1
|
|
96
|
+
* @see proto type: ibc.applications.interchain_accounts.host.v1.Params
|
|
97
|
+
*/
|
|
71
98
|
export declare const Params: {
|
|
72
99
|
typeUrl: string;
|
|
73
100
|
aminoType: string;
|
|
@@ -82,6 +109,13 @@ export declare const Params: {
|
|
|
82
109
|
toProto(message: Params): Uint8Array;
|
|
83
110
|
toProtoMsg(message: Params): ParamsProtoMsg;
|
|
84
111
|
};
|
|
112
|
+
/**
|
|
113
|
+
* QueryRequest defines the parameters for a particular query request
|
|
114
|
+
* by an interchain account.
|
|
115
|
+
* @name QueryRequest
|
|
116
|
+
* @package ibc.applications.interchain_accounts.host.v1
|
|
117
|
+
* @see proto type: ibc.applications.interchain_accounts.host.v1.QueryRequest
|
|
118
|
+
*/
|
|
85
119
|
export declare const QueryRequest: {
|
|
86
120
|
typeUrl: string;
|
|
87
121
|
aminoType: string;
|