@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
|
@@ -51,20 +51,23 @@ export declare function broadcastModeToJSON(object: BroadcastMode): string;
|
|
|
51
51
|
/**
|
|
52
52
|
* GetTxsEventRequest is the request type for the Service.TxsByEvents
|
|
53
53
|
* RPC method.
|
|
54
|
+
* @name GetTxsEventRequest
|
|
55
|
+
* @package cosmos.tx.v1beta1
|
|
56
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxsEventRequest
|
|
54
57
|
*/
|
|
55
58
|
export interface GetTxsEventRequest {
|
|
56
59
|
/**
|
|
57
60
|
* events is the list of transaction event type.
|
|
58
61
|
* Deprecated post v0.47.x: use query instead, which should contain a valid
|
|
59
62
|
* events query.
|
|
63
|
+
* @deprecated
|
|
60
64
|
*/
|
|
61
|
-
/** @deprecated */
|
|
62
65
|
events: string[];
|
|
63
66
|
/**
|
|
64
67
|
* pagination defines a pagination for the request.
|
|
65
68
|
* Deprecated post v0.46.x: use page and limit instead.
|
|
69
|
+
* @deprecated
|
|
66
70
|
*/
|
|
67
|
-
/** @deprecated */
|
|
68
71
|
pagination?: PageRequest;
|
|
69
72
|
orderBy: OrderBy;
|
|
70
73
|
/**
|
|
@@ -80,8 +83,6 @@ export interface GetTxsEventRequest {
|
|
|
80
83
|
/**
|
|
81
84
|
* query defines the transaction event query that is proxied to Tendermint's
|
|
82
85
|
* TxSearch RPC method. The query must be valid.
|
|
83
|
-
*
|
|
84
|
-
* Since cosmos-sdk 0.50
|
|
85
86
|
*/
|
|
86
87
|
query: string;
|
|
87
88
|
}
|
|
@@ -92,20 +93,23 @@ export interface GetTxsEventRequestProtoMsg {
|
|
|
92
93
|
/**
|
|
93
94
|
* GetTxsEventRequest is the request type for the Service.TxsByEvents
|
|
94
95
|
* RPC method.
|
|
96
|
+
* @name GetTxsEventRequestAmino
|
|
97
|
+
* @package cosmos.tx.v1beta1
|
|
98
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxsEventRequest
|
|
95
99
|
*/
|
|
96
100
|
export interface GetTxsEventRequestAmino {
|
|
97
101
|
/**
|
|
98
102
|
* events is the list of transaction event type.
|
|
99
103
|
* Deprecated post v0.47.x: use query instead, which should contain a valid
|
|
100
104
|
* events query.
|
|
105
|
+
* @deprecated
|
|
101
106
|
*/
|
|
102
|
-
/** @deprecated */
|
|
103
107
|
events?: string[];
|
|
104
108
|
/**
|
|
105
109
|
* pagination defines a pagination for the request.
|
|
106
110
|
* Deprecated post v0.46.x: use page and limit instead.
|
|
111
|
+
* @deprecated
|
|
107
112
|
*/
|
|
108
|
-
/** @deprecated */
|
|
109
113
|
pagination?: PageRequestAmino;
|
|
110
114
|
order_by?: OrderBy;
|
|
111
115
|
/**
|
|
@@ -121,8 +125,6 @@ export interface GetTxsEventRequestAmino {
|
|
|
121
125
|
/**
|
|
122
126
|
* query defines the transaction event query that is proxied to Tendermint's
|
|
123
127
|
* TxSearch RPC method. The query must be valid.
|
|
124
|
-
*
|
|
125
|
-
* Since cosmos-sdk 0.50
|
|
126
128
|
*/
|
|
127
129
|
query?: string;
|
|
128
130
|
}
|
|
@@ -133,19 +135,28 @@ export interface GetTxsEventRequestAminoMsg {
|
|
|
133
135
|
/**
|
|
134
136
|
* GetTxsEventResponse is the response type for the Service.TxsByEvents
|
|
135
137
|
* RPC method.
|
|
138
|
+
* @name GetTxsEventResponse
|
|
139
|
+
* @package cosmos.tx.v1beta1
|
|
140
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxsEventResponse
|
|
136
141
|
*/
|
|
137
142
|
export interface GetTxsEventResponse {
|
|
138
|
-
/**
|
|
143
|
+
/**
|
|
144
|
+
* txs is the list of queried transactions.
|
|
145
|
+
*/
|
|
139
146
|
txs: Tx[];
|
|
140
|
-
/**
|
|
147
|
+
/**
|
|
148
|
+
* tx_responses is the list of queried TxResponses.
|
|
149
|
+
*/
|
|
141
150
|
txResponses: TxResponse[];
|
|
142
151
|
/**
|
|
143
152
|
* pagination defines a pagination for the response.
|
|
144
153
|
* Deprecated post v0.46.x: use total instead.
|
|
154
|
+
* @deprecated
|
|
145
155
|
*/
|
|
146
|
-
/** @deprecated */
|
|
147
156
|
pagination?: PageResponse;
|
|
148
|
-
/**
|
|
157
|
+
/**
|
|
158
|
+
* total is total number of results available
|
|
159
|
+
*/
|
|
149
160
|
total: bigint;
|
|
150
161
|
}
|
|
151
162
|
export interface GetTxsEventResponseProtoMsg {
|
|
@@ -155,19 +166,28 @@ export interface GetTxsEventResponseProtoMsg {
|
|
|
155
166
|
/**
|
|
156
167
|
* GetTxsEventResponse is the response type for the Service.TxsByEvents
|
|
157
168
|
* RPC method.
|
|
169
|
+
* @name GetTxsEventResponseAmino
|
|
170
|
+
* @package cosmos.tx.v1beta1
|
|
171
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxsEventResponse
|
|
158
172
|
*/
|
|
159
173
|
export interface GetTxsEventResponseAmino {
|
|
160
|
-
/**
|
|
174
|
+
/**
|
|
175
|
+
* txs is the list of queried transactions.
|
|
176
|
+
*/
|
|
161
177
|
txs?: TxAmino[];
|
|
162
|
-
/**
|
|
178
|
+
/**
|
|
179
|
+
* tx_responses is the list of queried TxResponses.
|
|
180
|
+
*/
|
|
163
181
|
tx_responses?: TxResponseAmino[];
|
|
164
182
|
/**
|
|
165
183
|
* pagination defines a pagination for the response.
|
|
166
184
|
* Deprecated post v0.46.x: use total instead.
|
|
185
|
+
* @deprecated
|
|
167
186
|
*/
|
|
168
|
-
/** @deprecated */
|
|
169
187
|
pagination?: PageResponseAmino;
|
|
170
|
-
/**
|
|
188
|
+
/**
|
|
189
|
+
* total is total number of results available
|
|
190
|
+
*/
|
|
171
191
|
total?: string;
|
|
172
192
|
}
|
|
173
193
|
export interface GetTxsEventResponseAminoMsg {
|
|
@@ -177,9 +197,14 @@ export interface GetTxsEventResponseAminoMsg {
|
|
|
177
197
|
/**
|
|
178
198
|
* BroadcastTxRequest is the request type for the Service.BroadcastTxRequest
|
|
179
199
|
* RPC method.
|
|
200
|
+
* @name BroadcastTxRequest
|
|
201
|
+
* @package cosmos.tx.v1beta1
|
|
202
|
+
* @see proto type: cosmos.tx.v1beta1.BroadcastTxRequest
|
|
180
203
|
*/
|
|
181
204
|
export interface BroadcastTxRequest {
|
|
182
|
-
/**
|
|
205
|
+
/**
|
|
206
|
+
* tx_bytes is the raw transaction.
|
|
207
|
+
*/
|
|
183
208
|
txBytes: Uint8Array;
|
|
184
209
|
mode: BroadcastMode;
|
|
185
210
|
}
|
|
@@ -190,9 +215,14 @@ export interface BroadcastTxRequestProtoMsg {
|
|
|
190
215
|
/**
|
|
191
216
|
* BroadcastTxRequest is the request type for the Service.BroadcastTxRequest
|
|
192
217
|
* RPC method.
|
|
218
|
+
* @name BroadcastTxRequestAmino
|
|
219
|
+
* @package cosmos.tx.v1beta1
|
|
220
|
+
* @see proto type: cosmos.tx.v1beta1.BroadcastTxRequest
|
|
193
221
|
*/
|
|
194
222
|
export interface BroadcastTxRequestAmino {
|
|
195
|
-
/**
|
|
223
|
+
/**
|
|
224
|
+
* tx_bytes is the raw transaction.
|
|
225
|
+
*/
|
|
196
226
|
tx_bytes?: string;
|
|
197
227
|
mode?: BroadcastMode;
|
|
198
228
|
}
|
|
@@ -203,9 +233,14 @@ export interface BroadcastTxRequestAminoMsg {
|
|
|
203
233
|
/**
|
|
204
234
|
* BroadcastTxResponse is the response type for the
|
|
205
235
|
* Service.BroadcastTx method.
|
|
236
|
+
* @name BroadcastTxResponse
|
|
237
|
+
* @package cosmos.tx.v1beta1
|
|
238
|
+
* @see proto type: cosmos.tx.v1beta1.BroadcastTxResponse
|
|
206
239
|
*/
|
|
207
240
|
export interface BroadcastTxResponse {
|
|
208
|
-
/**
|
|
241
|
+
/**
|
|
242
|
+
* tx_response is the queried TxResponses.
|
|
243
|
+
*/
|
|
209
244
|
txResponse?: TxResponse;
|
|
210
245
|
}
|
|
211
246
|
export interface BroadcastTxResponseProtoMsg {
|
|
@@ -215,9 +250,14 @@ export interface BroadcastTxResponseProtoMsg {
|
|
|
215
250
|
/**
|
|
216
251
|
* BroadcastTxResponse is the response type for the
|
|
217
252
|
* Service.BroadcastTx method.
|
|
253
|
+
* @name BroadcastTxResponseAmino
|
|
254
|
+
* @package cosmos.tx.v1beta1
|
|
255
|
+
* @see proto type: cosmos.tx.v1beta1.BroadcastTxResponse
|
|
218
256
|
*/
|
|
219
257
|
export interface BroadcastTxResponseAmino {
|
|
220
|
-
/**
|
|
258
|
+
/**
|
|
259
|
+
* tx_response is the queried TxResponses.
|
|
260
|
+
*/
|
|
221
261
|
tx_response?: TxResponseAmino;
|
|
222
262
|
}
|
|
223
263
|
export interface BroadcastTxResponseAminoMsg {
|
|
@@ -227,18 +267,19 @@ export interface BroadcastTxResponseAminoMsg {
|
|
|
227
267
|
/**
|
|
228
268
|
* SimulateRequest is the request type for the Service.Simulate
|
|
229
269
|
* RPC method.
|
|
270
|
+
* @name SimulateRequest
|
|
271
|
+
* @package cosmos.tx.v1beta1
|
|
272
|
+
* @see proto type: cosmos.tx.v1beta1.SimulateRequest
|
|
230
273
|
*/
|
|
231
274
|
export interface SimulateRequest {
|
|
232
275
|
/**
|
|
233
276
|
* tx is the transaction to simulate.
|
|
234
277
|
* Deprecated. Send raw tx bytes instead.
|
|
278
|
+
* @deprecated
|
|
235
279
|
*/
|
|
236
|
-
/** @deprecated */
|
|
237
280
|
tx?: Tx;
|
|
238
281
|
/**
|
|
239
282
|
* tx_bytes is the raw transaction.
|
|
240
|
-
*
|
|
241
|
-
* Since: cosmos-sdk 0.43
|
|
242
283
|
*/
|
|
243
284
|
txBytes: Uint8Array;
|
|
244
285
|
}
|
|
@@ -249,18 +290,19 @@ export interface SimulateRequestProtoMsg {
|
|
|
249
290
|
/**
|
|
250
291
|
* SimulateRequest is the request type for the Service.Simulate
|
|
251
292
|
* RPC method.
|
|
293
|
+
* @name SimulateRequestAmino
|
|
294
|
+
* @package cosmos.tx.v1beta1
|
|
295
|
+
* @see proto type: cosmos.tx.v1beta1.SimulateRequest
|
|
252
296
|
*/
|
|
253
297
|
export interface SimulateRequestAmino {
|
|
254
298
|
/**
|
|
255
299
|
* tx is the transaction to simulate.
|
|
256
300
|
* Deprecated. Send raw tx bytes instead.
|
|
301
|
+
* @deprecated
|
|
257
302
|
*/
|
|
258
|
-
/** @deprecated */
|
|
259
303
|
tx?: TxAmino;
|
|
260
304
|
/**
|
|
261
305
|
* tx_bytes is the raw transaction.
|
|
262
|
-
*
|
|
263
|
-
* Since: cosmos-sdk 0.43
|
|
264
306
|
*/
|
|
265
307
|
tx_bytes?: string;
|
|
266
308
|
}
|
|
@@ -271,11 +313,18 @@ export interface SimulateRequestAminoMsg {
|
|
|
271
313
|
/**
|
|
272
314
|
* SimulateResponse is the response type for the
|
|
273
315
|
* Service.SimulateRPC method.
|
|
316
|
+
* @name SimulateResponse
|
|
317
|
+
* @package cosmos.tx.v1beta1
|
|
318
|
+
* @see proto type: cosmos.tx.v1beta1.SimulateResponse
|
|
274
319
|
*/
|
|
275
320
|
export interface SimulateResponse {
|
|
276
|
-
/**
|
|
321
|
+
/**
|
|
322
|
+
* gas_info is the information about gas used in the simulation.
|
|
323
|
+
*/
|
|
277
324
|
gasInfo?: GasInfo;
|
|
278
|
-
/**
|
|
325
|
+
/**
|
|
326
|
+
* result is the result of the simulation.
|
|
327
|
+
*/
|
|
279
328
|
result?: Result;
|
|
280
329
|
}
|
|
281
330
|
export interface SimulateResponseProtoMsg {
|
|
@@ -285,11 +334,18 @@ export interface SimulateResponseProtoMsg {
|
|
|
285
334
|
/**
|
|
286
335
|
* SimulateResponse is the response type for the
|
|
287
336
|
* Service.SimulateRPC method.
|
|
337
|
+
* @name SimulateResponseAmino
|
|
338
|
+
* @package cosmos.tx.v1beta1
|
|
339
|
+
* @see proto type: cosmos.tx.v1beta1.SimulateResponse
|
|
288
340
|
*/
|
|
289
341
|
export interface SimulateResponseAmino {
|
|
290
|
-
/**
|
|
342
|
+
/**
|
|
343
|
+
* gas_info is the information about gas used in the simulation.
|
|
344
|
+
*/
|
|
291
345
|
gas_info?: GasInfoAmino;
|
|
292
|
-
/**
|
|
346
|
+
/**
|
|
347
|
+
* result is the result of the simulation.
|
|
348
|
+
*/
|
|
293
349
|
result?: ResultAmino;
|
|
294
350
|
}
|
|
295
351
|
export interface SimulateResponseAminoMsg {
|
|
@@ -299,9 +355,14 @@ export interface SimulateResponseAminoMsg {
|
|
|
299
355
|
/**
|
|
300
356
|
* GetTxRequest is the request type for the Service.GetTx
|
|
301
357
|
* RPC method.
|
|
358
|
+
* @name GetTxRequest
|
|
359
|
+
* @package cosmos.tx.v1beta1
|
|
360
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxRequest
|
|
302
361
|
*/
|
|
303
362
|
export interface GetTxRequest {
|
|
304
|
-
/**
|
|
363
|
+
/**
|
|
364
|
+
* hash is the tx hash to query, encoded as a hex string.
|
|
365
|
+
*/
|
|
305
366
|
hash: string;
|
|
306
367
|
}
|
|
307
368
|
export interface GetTxRequestProtoMsg {
|
|
@@ -311,31 +372,54 @@ export interface GetTxRequestProtoMsg {
|
|
|
311
372
|
/**
|
|
312
373
|
* GetTxRequest is the request type for the Service.GetTx
|
|
313
374
|
* RPC method.
|
|
375
|
+
* @name GetTxRequestAmino
|
|
376
|
+
* @package cosmos.tx.v1beta1
|
|
377
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxRequest
|
|
314
378
|
*/
|
|
315
379
|
export interface GetTxRequestAmino {
|
|
316
|
-
/**
|
|
380
|
+
/**
|
|
381
|
+
* hash is the tx hash to query, encoded as a hex string.
|
|
382
|
+
*/
|
|
317
383
|
hash?: string;
|
|
318
384
|
}
|
|
319
385
|
export interface GetTxRequestAminoMsg {
|
|
320
386
|
type: "cosmos-sdk/GetTxRequest";
|
|
321
387
|
value: GetTxRequestAmino;
|
|
322
388
|
}
|
|
323
|
-
/**
|
|
389
|
+
/**
|
|
390
|
+
* GetTxResponse is the response type for the Service.GetTx method.
|
|
391
|
+
* @name GetTxResponse
|
|
392
|
+
* @package cosmos.tx.v1beta1
|
|
393
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxResponse
|
|
394
|
+
*/
|
|
324
395
|
export interface GetTxResponse {
|
|
325
|
-
/**
|
|
396
|
+
/**
|
|
397
|
+
* tx is the queried transaction.
|
|
398
|
+
*/
|
|
326
399
|
tx?: Tx;
|
|
327
|
-
/**
|
|
400
|
+
/**
|
|
401
|
+
* tx_response is the queried TxResponses.
|
|
402
|
+
*/
|
|
328
403
|
txResponse?: TxResponse;
|
|
329
404
|
}
|
|
330
405
|
export interface GetTxResponseProtoMsg {
|
|
331
406
|
typeUrl: "/cosmos.tx.v1beta1.GetTxResponse";
|
|
332
407
|
value: Uint8Array;
|
|
333
408
|
}
|
|
334
|
-
/**
|
|
409
|
+
/**
|
|
410
|
+
* GetTxResponse is the response type for the Service.GetTx method.
|
|
411
|
+
* @name GetTxResponseAmino
|
|
412
|
+
* @package cosmos.tx.v1beta1
|
|
413
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxResponse
|
|
414
|
+
*/
|
|
335
415
|
export interface GetTxResponseAmino {
|
|
336
|
-
/**
|
|
416
|
+
/**
|
|
417
|
+
* tx is the queried transaction.
|
|
418
|
+
*/
|
|
337
419
|
tx?: TxAmino;
|
|
338
|
-
/**
|
|
420
|
+
/**
|
|
421
|
+
* tx_response is the queried TxResponses.
|
|
422
|
+
*/
|
|
339
423
|
tx_response?: TxResponseAmino;
|
|
340
424
|
}
|
|
341
425
|
export interface GetTxResponseAminoMsg {
|
|
@@ -345,13 +429,18 @@ export interface GetTxResponseAminoMsg {
|
|
|
345
429
|
/**
|
|
346
430
|
* GetBlockWithTxsRequest is the request type for the Service.GetBlockWithTxs
|
|
347
431
|
* RPC method.
|
|
348
|
-
*
|
|
349
|
-
*
|
|
432
|
+
* @name GetBlockWithTxsRequest
|
|
433
|
+
* @package cosmos.tx.v1beta1
|
|
434
|
+
* @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsRequest
|
|
350
435
|
*/
|
|
351
436
|
export interface GetBlockWithTxsRequest {
|
|
352
|
-
/**
|
|
437
|
+
/**
|
|
438
|
+
* height is the height of the block to query.
|
|
439
|
+
*/
|
|
353
440
|
height: bigint;
|
|
354
|
-
/**
|
|
441
|
+
/**
|
|
442
|
+
* pagination defines a pagination for the request.
|
|
443
|
+
*/
|
|
355
444
|
pagination?: PageRequest;
|
|
356
445
|
}
|
|
357
446
|
export interface GetBlockWithTxsRequestProtoMsg {
|
|
@@ -361,13 +450,18 @@ export interface GetBlockWithTxsRequestProtoMsg {
|
|
|
361
450
|
/**
|
|
362
451
|
* GetBlockWithTxsRequest is the request type for the Service.GetBlockWithTxs
|
|
363
452
|
* RPC method.
|
|
364
|
-
*
|
|
365
|
-
*
|
|
453
|
+
* @name GetBlockWithTxsRequestAmino
|
|
454
|
+
* @package cosmos.tx.v1beta1
|
|
455
|
+
* @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsRequest
|
|
366
456
|
*/
|
|
367
457
|
export interface GetBlockWithTxsRequestAmino {
|
|
368
|
-
/**
|
|
458
|
+
/**
|
|
459
|
+
* height is the height of the block to query.
|
|
460
|
+
*/
|
|
369
461
|
height?: string;
|
|
370
|
-
/**
|
|
462
|
+
/**
|
|
463
|
+
* pagination defines a pagination for the request.
|
|
464
|
+
*/
|
|
371
465
|
pagination?: PageRequestAmino;
|
|
372
466
|
}
|
|
373
467
|
export interface GetBlockWithTxsRequestAminoMsg {
|
|
@@ -377,15 +471,20 @@ export interface GetBlockWithTxsRequestAminoMsg {
|
|
|
377
471
|
/**
|
|
378
472
|
* GetBlockWithTxsResponse is the response type for the Service.GetBlockWithTxs
|
|
379
473
|
* method.
|
|
380
|
-
*
|
|
381
|
-
*
|
|
474
|
+
* @name GetBlockWithTxsResponse
|
|
475
|
+
* @package cosmos.tx.v1beta1
|
|
476
|
+
* @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsResponse
|
|
382
477
|
*/
|
|
383
478
|
export interface GetBlockWithTxsResponse {
|
|
384
|
-
/**
|
|
479
|
+
/**
|
|
480
|
+
* txs are the transactions in the block.
|
|
481
|
+
*/
|
|
385
482
|
txs: Tx[];
|
|
386
483
|
blockId?: BlockID;
|
|
387
484
|
block?: Block;
|
|
388
|
-
/**
|
|
485
|
+
/**
|
|
486
|
+
* pagination defines a pagination for the response.
|
|
487
|
+
*/
|
|
389
488
|
pagination?: PageResponse;
|
|
390
489
|
}
|
|
391
490
|
export interface GetBlockWithTxsResponseProtoMsg {
|
|
@@ -395,15 +494,20 @@ export interface GetBlockWithTxsResponseProtoMsg {
|
|
|
395
494
|
/**
|
|
396
495
|
* GetBlockWithTxsResponse is the response type for the Service.GetBlockWithTxs
|
|
397
496
|
* method.
|
|
398
|
-
*
|
|
399
|
-
*
|
|
497
|
+
* @name GetBlockWithTxsResponseAmino
|
|
498
|
+
* @package cosmos.tx.v1beta1
|
|
499
|
+
* @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsResponse
|
|
400
500
|
*/
|
|
401
501
|
export interface GetBlockWithTxsResponseAmino {
|
|
402
|
-
/**
|
|
502
|
+
/**
|
|
503
|
+
* txs are the transactions in the block.
|
|
504
|
+
*/
|
|
403
505
|
txs?: TxAmino[];
|
|
404
506
|
block_id?: BlockIDAmino;
|
|
405
507
|
block?: BlockAmino;
|
|
406
|
-
/**
|
|
508
|
+
/**
|
|
509
|
+
* pagination defines a pagination for the response.
|
|
510
|
+
*/
|
|
407
511
|
pagination?: PageResponseAmino;
|
|
408
512
|
}
|
|
409
513
|
export interface GetBlockWithTxsResponseAminoMsg {
|
|
@@ -413,11 +517,14 @@ export interface GetBlockWithTxsResponseAminoMsg {
|
|
|
413
517
|
/**
|
|
414
518
|
* TxDecodeRequest is the request type for the Service.TxDecode
|
|
415
519
|
* RPC method.
|
|
416
|
-
*
|
|
417
|
-
*
|
|
520
|
+
* @name TxDecodeRequest
|
|
521
|
+
* @package cosmos.tx.v1beta1
|
|
522
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeRequest
|
|
418
523
|
*/
|
|
419
524
|
export interface TxDecodeRequest {
|
|
420
|
-
/**
|
|
525
|
+
/**
|
|
526
|
+
* tx_bytes is the raw transaction.
|
|
527
|
+
*/
|
|
421
528
|
txBytes: Uint8Array;
|
|
422
529
|
}
|
|
423
530
|
export interface TxDecodeRequestProtoMsg {
|
|
@@ -427,11 +534,14 @@ export interface TxDecodeRequestProtoMsg {
|
|
|
427
534
|
/**
|
|
428
535
|
* TxDecodeRequest is the request type for the Service.TxDecode
|
|
429
536
|
* RPC method.
|
|
430
|
-
*
|
|
431
|
-
*
|
|
537
|
+
* @name TxDecodeRequestAmino
|
|
538
|
+
* @package cosmos.tx.v1beta1
|
|
539
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeRequest
|
|
432
540
|
*/
|
|
433
541
|
export interface TxDecodeRequestAmino {
|
|
434
|
-
/**
|
|
542
|
+
/**
|
|
543
|
+
* tx_bytes is the raw transaction.
|
|
544
|
+
*/
|
|
435
545
|
tx_bytes?: string;
|
|
436
546
|
}
|
|
437
547
|
export interface TxDecodeRequestAminoMsg {
|
|
@@ -441,11 +551,14 @@ export interface TxDecodeRequestAminoMsg {
|
|
|
441
551
|
/**
|
|
442
552
|
* TxDecodeResponse is the response type for the
|
|
443
553
|
* Service.TxDecode method.
|
|
444
|
-
*
|
|
445
|
-
*
|
|
554
|
+
* @name TxDecodeResponse
|
|
555
|
+
* @package cosmos.tx.v1beta1
|
|
556
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeResponse
|
|
446
557
|
*/
|
|
447
558
|
export interface TxDecodeResponse {
|
|
448
|
-
/**
|
|
559
|
+
/**
|
|
560
|
+
* tx is the decoded transaction.
|
|
561
|
+
*/
|
|
449
562
|
tx?: Tx;
|
|
450
563
|
}
|
|
451
564
|
export interface TxDecodeResponseProtoMsg {
|
|
@@ -455,11 +568,14 @@ export interface TxDecodeResponseProtoMsg {
|
|
|
455
568
|
/**
|
|
456
569
|
* TxDecodeResponse is the response type for the
|
|
457
570
|
* Service.TxDecode method.
|
|
458
|
-
*
|
|
459
|
-
*
|
|
571
|
+
* @name TxDecodeResponseAmino
|
|
572
|
+
* @package cosmos.tx.v1beta1
|
|
573
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeResponse
|
|
460
574
|
*/
|
|
461
575
|
export interface TxDecodeResponseAmino {
|
|
462
|
-
/**
|
|
576
|
+
/**
|
|
577
|
+
* tx is the decoded transaction.
|
|
578
|
+
*/
|
|
463
579
|
tx?: TxAmino;
|
|
464
580
|
}
|
|
465
581
|
export interface TxDecodeResponseAminoMsg {
|
|
@@ -469,11 +585,14 @@ export interface TxDecodeResponseAminoMsg {
|
|
|
469
585
|
/**
|
|
470
586
|
* TxEncodeRequest is the request type for the Service.TxEncode
|
|
471
587
|
* RPC method.
|
|
472
|
-
*
|
|
473
|
-
*
|
|
588
|
+
* @name TxEncodeRequest
|
|
589
|
+
* @package cosmos.tx.v1beta1
|
|
590
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeRequest
|
|
474
591
|
*/
|
|
475
592
|
export interface TxEncodeRequest {
|
|
476
|
-
/**
|
|
593
|
+
/**
|
|
594
|
+
* tx is the transaction to encode.
|
|
595
|
+
*/
|
|
477
596
|
tx?: Tx;
|
|
478
597
|
}
|
|
479
598
|
export interface TxEncodeRequestProtoMsg {
|
|
@@ -483,11 +602,14 @@ export interface TxEncodeRequestProtoMsg {
|
|
|
483
602
|
/**
|
|
484
603
|
* TxEncodeRequest is the request type for the Service.TxEncode
|
|
485
604
|
* RPC method.
|
|
486
|
-
*
|
|
487
|
-
*
|
|
605
|
+
* @name TxEncodeRequestAmino
|
|
606
|
+
* @package cosmos.tx.v1beta1
|
|
607
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeRequest
|
|
488
608
|
*/
|
|
489
609
|
export interface TxEncodeRequestAmino {
|
|
490
|
-
/**
|
|
610
|
+
/**
|
|
611
|
+
* tx is the transaction to encode.
|
|
612
|
+
*/
|
|
491
613
|
tx?: TxAmino;
|
|
492
614
|
}
|
|
493
615
|
export interface TxEncodeRequestAminoMsg {
|
|
@@ -497,11 +619,14 @@ export interface TxEncodeRequestAminoMsg {
|
|
|
497
619
|
/**
|
|
498
620
|
* TxEncodeResponse is the response type for the
|
|
499
621
|
* Service.TxEncode method.
|
|
500
|
-
*
|
|
501
|
-
*
|
|
622
|
+
* @name TxEncodeResponse
|
|
623
|
+
* @package cosmos.tx.v1beta1
|
|
624
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeResponse
|
|
502
625
|
*/
|
|
503
626
|
export interface TxEncodeResponse {
|
|
504
|
-
/**
|
|
627
|
+
/**
|
|
628
|
+
* tx_bytes is the encoded transaction bytes.
|
|
629
|
+
*/
|
|
505
630
|
txBytes: Uint8Array;
|
|
506
631
|
}
|
|
507
632
|
export interface TxEncodeResponseProtoMsg {
|
|
@@ -511,11 +636,14 @@ export interface TxEncodeResponseProtoMsg {
|
|
|
511
636
|
/**
|
|
512
637
|
* TxEncodeResponse is the response type for the
|
|
513
638
|
* Service.TxEncode method.
|
|
514
|
-
*
|
|
515
|
-
*
|
|
639
|
+
* @name TxEncodeResponseAmino
|
|
640
|
+
* @package cosmos.tx.v1beta1
|
|
641
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeResponse
|
|
516
642
|
*/
|
|
517
643
|
export interface TxEncodeResponseAmino {
|
|
518
|
-
/**
|
|
644
|
+
/**
|
|
645
|
+
* tx_bytes is the encoded transaction bytes.
|
|
646
|
+
*/
|
|
519
647
|
tx_bytes?: string;
|
|
520
648
|
}
|
|
521
649
|
export interface TxEncodeResponseAminoMsg {
|
|
@@ -525,8 +653,9 @@ export interface TxEncodeResponseAminoMsg {
|
|
|
525
653
|
/**
|
|
526
654
|
* TxEncodeAminoRequest is the request type for the Service.TxEncodeAmino
|
|
527
655
|
* RPC method.
|
|
528
|
-
*
|
|
529
|
-
*
|
|
656
|
+
* @name TxEncodeAminoRequest
|
|
657
|
+
* @package cosmos.tx.v1beta1
|
|
658
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeAminoRequest
|
|
530
659
|
*/
|
|
531
660
|
export interface TxEncodeAminoRequest {
|
|
532
661
|
aminoJson: string;
|
|
@@ -538,8 +667,9 @@ export interface TxEncodeAminoRequestProtoMsg {
|
|
|
538
667
|
/**
|
|
539
668
|
* TxEncodeAminoRequest is the request type for the Service.TxEncodeAmino
|
|
540
669
|
* RPC method.
|
|
541
|
-
*
|
|
542
|
-
*
|
|
670
|
+
* @name TxEncodeAminoRequestAmino
|
|
671
|
+
* @package cosmos.tx.v1beta1
|
|
672
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeAminoRequest
|
|
543
673
|
*/
|
|
544
674
|
export interface TxEncodeAminoRequestAmino {
|
|
545
675
|
amino_json?: string;
|
|
@@ -551,8 +681,9 @@ export interface TxEncodeAminoRequestAminoMsg {
|
|
|
551
681
|
/**
|
|
552
682
|
* TxEncodeAminoResponse is the response type for the Service.TxEncodeAmino
|
|
553
683
|
* RPC method.
|
|
554
|
-
*
|
|
555
|
-
*
|
|
684
|
+
* @name TxEncodeAminoResponse
|
|
685
|
+
* @package cosmos.tx.v1beta1
|
|
686
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeAminoResponse
|
|
556
687
|
*/
|
|
557
688
|
export interface TxEncodeAminoResponse {
|
|
558
689
|
aminoBinary: Uint8Array;
|
|
@@ -564,8 +695,9 @@ export interface TxEncodeAminoResponseProtoMsg {
|
|
|
564
695
|
/**
|
|
565
696
|
* TxEncodeAminoResponse is the response type for the Service.TxEncodeAmino
|
|
566
697
|
* RPC method.
|
|
567
|
-
*
|
|
568
|
-
*
|
|
698
|
+
* @name TxEncodeAminoResponseAmino
|
|
699
|
+
* @package cosmos.tx.v1beta1
|
|
700
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeAminoResponse
|
|
569
701
|
*/
|
|
570
702
|
export interface TxEncodeAminoResponseAmino {
|
|
571
703
|
amino_binary?: string;
|
|
@@ -577,8 +709,9 @@ export interface TxEncodeAminoResponseAminoMsg {
|
|
|
577
709
|
/**
|
|
578
710
|
* TxDecodeAminoRequest is the request type for the Service.TxDecodeAmino
|
|
579
711
|
* RPC method.
|
|
580
|
-
*
|
|
581
|
-
*
|
|
712
|
+
* @name TxDecodeAminoRequest
|
|
713
|
+
* @package cosmos.tx.v1beta1
|
|
714
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeAminoRequest
|
|
582
715
|
*/
|
|
583
716
|
export interface TxDecodeAminoRequest {
|
|
584
717
|
aminoBinary: Uint8Array;
|
|
@@ -590,8 +723,9 @@ export interface TxDecodeAminoRequestProtoMsg {
|
|
|
590
723
|
/**
|
|
591
724
|
* TxDecodeAminoRequest is the request type for the Service.TxDecodeAmino
|
|
592
725
|
* RPC method.
|
|
593
|
-
*
|
|
594
|
-
*
|
|
726
|
+
* @name TxDecodeAminoRequestAmino
|
|
727
|
+
* @package cosmos.tx.v1beta1
|
|
728
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeAminoRequest
|
|
595
729
|
*/
|
|
596
730
|
export interface TxDecodeAminoRequestAmino {
|
|
597
731
|
amino_binary?: string;
|
|
@@ -603,8 +737,9 @@ export interface TxDecodeAminoRequestAminoMsg {
|
|
|
603
737
|
/**
|
|
604
738
|
* TxDecodeAminoResponse is the response type for the Service.TxDecodeAmino
|
|
605
739
|
* RPC method.
|
|
606
|
-
*
|
|
607
|
-
*
|
|
740
|
+
* @name TxDecodeAminoResponse
|
|
741
|
+
* @package cosmos.tx.v1beta1
|
|
742
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeAminoResponse
|
|
608
743
|
*/
|
|
609
744
|
export interface TxDecodeAminoResponse {
|
|
610
745
|
aminoJson: string;
|
|
@@ -616,8 +751,9 @@ export interface TxDecodeAminoResponseProtoMsg {
|
|
|
616
751
|
/**
|
|
617
752
|
* TxDecodeAminoResponse is the response type for the Service.TxDecodeAmino
|
|
618
753
|
* RPC method.
|
|
619
|
-
*
|
|
620
|
-
*
|
|
754
|
+
* @name TxDecodeAminoResponseAmino
|
|
755
|
+
* @package cosmos.tx.v1beta1
|
|
756
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeAminoResponse
|
|
621
757
|
*/
|
|
622
758
|
export interface TxDecodeAminoResponseAmino {
|
|
623
759
|
amino_json?: string;
|
|
@@ -626,6 +762,13 @@ export interface TxDecodeAminoResponseAminoMsg {
|
|
|
626
762
|
type: "cosmos-sdk/TxDecodeAminoResponse";
|
|
627
763
|
value: TxDecodeAminoResponseAmino;
|
|
628
764
|
}
|
|
765
|
+
/**
|
|
766
|
+
* GetTxsEventRequest is the request type for the Service.TxsByEvents
|
|
767
|
+
* RPC method.
|
|
768
|
+
* @name GetTxsEventRequest
|
|
769
|
+
* @package cosmos.tx.v1beta1
|
|
770
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxsEventRequest
|
|
771
|
+
*/
|
|
629
772
|
export declare const GetTxsEventRequest: {
|
|
630
773
|
typeUrl: string;
|
|
631
774
|
aminoType: string;
|
|
@@ -640,6 +783,13 @@ export declare const GetTxsEventRequest: {
|
|
|
640
783
|
toProto(message: GetTxsEventRequest): Uint8Array;
|
|
641
784
|
toProtoMsg(message: GetTxsEventRequest): GetTxsEventRequestProtoMsg;
|
|
642
785
|
};
|
|
786
|
+
/**
|
|
787
|
+
* GetTxsEventResponse is the response type for the Service.TxsByEvents
|
|
788
|
+
* RPC method.
|
|
789
|
+
* @name GetTxsEventResponse
|
|
790
|
+
* @package cosmos.tx.v1beta1
|
|
791
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxsEventResponse
|
|
792
|
+
*/
|
|
643
793
|
export declare const GetTxsEventResponse: {
|
|
644
794
|
typeUrl: string;
|
|
645
795
|
aminoType: string;
|
|
@@ -654,6 +804,13 @@ export declare const GetTxsEventResponse: {
|
|
|
654
804
|
toProto(message: GetTxsEventResponse): Uint8Array;
|
|
655
805
|
toProtoMsg(message: GetTxsEventResponse): GetTxsEventResponseProtoMsg;
|
|
656
806
|
};
|
|
807
|
+
/**
|
|
808
|
+
* BroadcastTxRequest is the request type for the Service.BroadcastTxRequest
|
|
809
|
+
* RPC method.
|
|
810
|
+
* @name BroadcastTxRequest
|
|
811
|
+
* @package cosmos.tx.v1beta1
|
|
812
|
+
* @see proto type: cosmos.tx.v1beta1.BroadcastTxRequest
|
|
813
|
+
*/
|
|
657
814
|
export declare const BroadcastTxRequest: {
|
|
658
815
|
typeUrl: string;
|
|
659
816
|
aminoType: string;
|
|
@@ -668,6 +825,13 @@ export declare const BroadcastTxRequest: {
|
|
|
668
825
|
toProto(message: BroadcastTxRequest): Uint8Array;
|
|
669
826
|
toProtoMsg(message: BroadcastTxRequest): BroadcastTxRequestProtoMsg;
|
|
670
827
|
};
|
|
828
|
+
/**
|
|
829
|
+
* BroadcastTxResponse is the response type for the
|
|
830
|
+
* Service.BroadcastTx method.
|
|
831
|
+
* @name BroadcastTxResponse
|
|
832
|
+
* @package cosmos.tx.v1beta1
|
|
833
|
+
* @see proto type: cosmos.tx.v1beta1.BroadcastTxResponse
|
|
834
|
+
*/
|
|
671
835
|
export declare const BroadcastTxResponse: {
|
|
672
836
|
typeUrl: string;
|
|
673
837
|
aminoType: string;
|
|
@@ -682,6 +846,13 @@ export declare const BroadcastTxResponse: {
|
|
|
682
846
|
toProto(message: BroadcastTxResponse): Uint8Array;
|
|
683
847
|
toProtoMsg(message: BroadcastTxResponse): BroadcastTxResponseProtoMsg;
|
|
684
848
|
};
|
|
849
|
+
/**
|
|
850
|
+
* SimulateRequest is the request type for the Service.Simulate
|
|
851
|
+
* RPC method.
|
|
852
|
+
* @name SimulateRequest
|
|
853
|
+
* @package cosmos.tx.v1beta1
|
|
854
|
+
* @see proto type: cosmos.tx.v1beta1.SimulateRequest
|
|
855
|
+
*/
|
|
685
856
|
export declare const SimulateRequest: {
|
|
686
857
|
typeUrl: string;
|
|
687
858
|
aminoType: string;
|
|
@@ -696,6 +867,13 @@ export declare const SimulateRequest: {
|
|
|
696
867
|
toProto(message: SimulateRequest): Uint8Array;
|
|
697
868
|
toProtoMsg(message: SimulateRequest): SimulateRequestProtoMsg;
|
|
698
869
|
};
|
|
870
|
+
/**
|
|
871
|
+
* SimulateResponse is the response type for the
|
|
872
|
+
* Service.SimulateRPC method.
|
|
873
|
+
* @name SimulateResponse
|
|
874
|
+
* @package cosmos.tx.v1beta1
|
|
875
|
+
* @see proto type: cosmos.tx.v1beta1.SimulateResponse
|
|
876
|
+
*/
|
|
699
877
|
export declare const SimulateResponse: {
|
|
700
878
|
typeUrl: string;
|
|
701
879
|
aminoType: string;
|
|
@@ -710,6 +888,13 @@ export declare const SimulateResponse: {
|
|
|
710
888
|
toProto(message: SimulateResponse): Uint8Array;
|
|
711
889
|
toProtoMsg(message: SimulateResponse): SimulateResponseProtoMsg;
|
|
712
890
|
};
|
|
891
|
+
/**
|
|
892
|
+
* GetTxRequest is the request type for the Service.GetTx
|
|
893
|
+
* RPC method.
|
|
894
|
+
* @name GetTxRequest
|
|
895
|
+
* @package cosmos.tx.v1beta1
|
|
896
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxRequest
|
|
897
|
+
*/
|
|
713
898
|
export declare const GetTxRequest: {
|
|
714
899
|
typeUrl: string;
|
|
715
900
|
aminoType: string;
|
|
@@ -724,6 +909,12 @@ export declare const GetTxRequest: {
|
|
|
724
909
|
toProto(message: GetTxRequest): Uint8Array;
|
|
725
910
|
toProtoMsg(message: GetTxRequest): GetTxRequestProtoMsg;
|
|
726
911
|
};
|
|
912
|
+
/**
|
|
913
|
+
* GetTxResponse is the response type for the Service.GetTx method.
|
|
914
|
+
* @name GetTxResponse
|
|
915
|
+
* @package cosmos.tx.v1beta1
|
|
916
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxResponse
|
|
917
|
+
*/
|
|
727
918
|
export declare const GetTxResponse: {
|
|
728
919
|
typeUrl: string;
|
|
729
920
|
aminoType: string;
|
|
@@ -738,6 +929,13 @@ export declare const GetTxResponse: {
|
|
|
738
929
|
toProto(message: GetTxResponse): Uint8Array;
|
|
739
930
|
toProtoMsg(message: GetTxResponse): GetTxResponseProtoMsg;
|
|
740
931
|
};
|
|
932
|
+
/**
|
|
933
|
+
* GetBlockWithTxsRequest is the request type for the Service.GetBlockWithTxs
|
|
934
|
+
* RPC method.
|
|
935
|
+
* @name GetBlockWithTxsRequest
|
|
936
|
+
* @package cosmos.tx.v1beta1
|
|
937
|
+
* @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsRequest
|
|
938
|
+
*/
|
|
741
939
|
export declare const GetBlockWithTxsRequest: {
|
|
742
940
|
typeUrl: string;
|
|
743
941
|
aminoType: string;
|
|
@@ -752,6 +950,13 @@ export declare const GetBlockWithTxsRequest: {
|
|
|
752
950
|
toProto(message: GetBlockWithTxsRequest): Uint8Array;
|
|
753
951
|
toProtoMsg(message: GetBlockWithTxsRequest): GetBlockWithTxsRequestProtoMsg;
|
|
754
952
|
};
|
|
953
|
+
/**
|
|
954
|
+
* GetBlockWithTxsResponse is the response type for the Service.GetBlockWithTxs
|
|
955
|
+
* method.
|
|
956
|
+
* @name GetBlockWithTxsResponse
|
|
957
|
+
* @package cosmos.tx.v1beta1
|
|
958
|
+
* @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsResponse
|
|
959
|
+
*/
|
|
755
960
|
export declare const GetBlockWithTxsResponse: {
|
|
756
961
|
typeUrl: string;
|
|
757
962
|
aminoType: string;
|
|
@@ -766,6 +971,13 @@ export declare const GetBlockWithTxsResponse: {
|
|
|
766
971
|
toProto(message: GetBlockWithTxsResponse): Uint8Array;
|
|
767
972
|
toProtoMsg(message: GetBlockWithTxsResponse): GetBlockWithTxsResponseProtoMsg;
|
|
768
973
|
};
|
|
974
|
+
/**
|
|
975
|
+
* TxDecodeRequest is the request type for the Service.TxDecode
|
|
976
|
+
* RPC method.
|
|
977
|
+
* @name TxDecodeRequest
|
|
978
|
+
* @package cosmos.tx.v1beta1
|
|
979
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeRequest
|
|
980
|
+
*/
|
|
769
981
|
export declare const TxDecodeRequest: {
|
|
770
982
|
typeUrl: string;
|
|
771
983
|
aminoType: string;
|
|
@@ -780,6 +992,13 @@ export declare const TxDecodeRequest: {
|
|
|
780
992
|
toProto(message: TxDecodeRequest): Uint8Array;
|
|
781
993
|
toProtoMsg(message: TxDecodeRequest): TxDecodeRequestProtoMsg;
|
|
782
994
|
};
|
|
995
|
+
/**
|
|
996
|
+
* TxDecodeResponse is the response type for the
|
|
997
|
+
* Service.TxDecode method.
|
|
998
|
+
* @name TxDecodeResponse
|
|
999
|
+
* @package cosmos.tx.v1beta1
|
|
1000
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeResponse
|
|
1001
|
+
*/
|
|
783
1002
|
export declare const TxDecodeResponse: {
|
|
784
1003
|
typeUrl: string;
|
|
785
1004
|
aminoType: string;
|
|
@@ -794,6 +1013,13 @@ export declare const TxDecodeResponse: {
|
|
|
794
1013
|
toProto(message: TxDecodeResponse): Uint8Array;
|
|
795
1014
|
toProtoMsg(message: TxDecodeResponse): TxDecodeResponseProtoMsg;
|
|
796
1015
|
};
|
|
1016
|
+
/**
|
|
1017
|
+
* TxEncodeRequest is the request type for the Service.TxEncode
|
|
1018
|
+
* RPC method.
|
|
1019
|
+
* @name TxEncodeRequest
|
|
1020
|
+
* @package cosmos.tx.v1beta1
|
|
1021
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeRequest
|
|
1022
|
+
*/
|
|
797
1023
|
export declare const TxEncodeRequest: {
|
|
798
1024
|
typeUrl: string;
|
|
799
1025
|
aminoType: string;
|
|
@@ -808,6 +1034,13 @@ export declare const TxEncodeRequest: {
|
|
|
808
1034
|
toProto(message: TxEncodeRequest): Uint8Array;
|
|
809
1035
|
toProtoMsg(message: TxEncodeRequest): TxEncodeRequestProtoMsg;
|
|
810
1036
|
};
|
|
1037
|
+
/**
|
|
1038
|
+
* TxEncodeResponse is the response type for the
|
|
1039
|
+
* Service.TxEncode method.
|
|
1040
|
+
* @name TxEncodeResponse
|
|
1041
|
+
* @package cosmos.tx.v1beta1
|
|
1042
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeResponse
|
|
1043
|
+
*/
|
|
811
1044
|
export declare const TxEncodeResponse: {
|
|
812
1045
|
typeUrl: string;
|
|
813
1046
|
aminoType: string;
|
|
@@ -822,6 +1055,13 @@ export declare const TxEncodeResponse: {
|
|
|
822
1055
|
toProto(message: TxEncodeResponse): Uint8Array;
|
|
823
1056
|
toProtoMsg(message: TxEncodeResponse): TxEncodeResponseProtoMsg;
|
|
824
1057
|
};
|
|
1058
|
+
/**
|
|
1059
|
+
* TxEncodeAminoRequest is the request type for the Service.TxEncodeAmino
|
|
1060
|
+
* RPC method.
|
|
1061
|
+
* @name TxEncodeAminoRequest
|
|
1062
|
+
* @package cosmos.tx.v1beta1
|
|
1063
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeAminoRequest
|
|
1064
|
+
*/
|
|
825
1065
|
export declare const TxEncodeAminoRequest: {
|
|
826
1066
|
typeUrl: string;
|
|
827
1067
|
aminoType: string;
|
|
@@ -836,6 +1076,13 @@ export declare const TxEncodeAminoRequest: {
|
|
|
836
1076
|
toProto(message: TxEncodeAminoRequest): Uint8Array;
|
|
837
1077
|
toProtoMsg(message: TxEncodeAminoRequest): TxEncodeAminoRequestProtoMsg;
|
|
838
1078
|
};
|
|
1079
|
+
/**
|
|
1080
|
+
* TxEncodeAminoResponse is the response type for the Service.TxEncodeAmino
|
|
1081
|
+
* RPC method.
|
|
1082
|
+
* @name TxEncodeAminoResponse
|
|
1083
|
+
* @package cosmos.tx.v1beta1
|
|
1084
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeAminoResponse
|
|
1085
|
+
*/
|
|
839
1086
|
export declare const TxEncodeAminoResponse: {
|
|
840
1087
|
typeUrl: string;
|
|
841
1088
|
aminoType: string;
|
|
@@ -850,6 +1097,13 @@ export declare const TxEncodeAminoResponse: {
|
|
|
850
1097
|
toProto(message: TxEncodeAminoResponse): Uint8Array;
|
|
851
1098
|
toProtoMsg(message: TxEncodeAminoResponse): TxEncodeAminoResponseProtoMsg;
|
|
852
1099
|
};
|
|
1100
|
+
/**
|
|
1101
|
+
* TxDecodeAminoRequest is the request type for the Service.TxDecodeAmino
|
|
1102
|
+
* RPC method.
|
|
1103
|
+
* @name TxDecodeAminoRequest
|
|
1104
|
+
* @package cosmos.tx.v1beta1
|
|
1105
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeAminoRequest
|
|
1106
|
+
*/
|
|
853
1107
|
export declare const TxDecodeAminoRequest: {
|
|
854
1108
|
typeUrl: string;
|
|
855
1109
|
aminoType: string;
|
|
@@ -864,6 +1118,13 @@ export declare const TxDecodeAminoRequest: {
|
|
|
864
1118
|
toProto(message: TxDecodeAminoRequest): Uint8Array;
|
|
865
1119
|
toProtoMsg(message: TxDecodeAminoRequest): TxDecodeAminoRequestProtoMsg;
|
|
866
1120
|
};
|
|
1121
|
+
/**
|
|
1122
|
+
* TxDecodeAminoResponse is the response type for the Service.TxDecodeAmino
|
|
1123
|
+
* RPC method.
|
|
1124
|
+
* @name TxDecodeAminoResponse
|
|
1125
|
+
* @package cosmos.tx.v1beta1
|
|
1126
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeAminoResponse
|
|
1127
|
+
*/
|
|
867
1128
|
export declare const TxDecodeAminoResponse: {
|
|
868
1129
|
typeUrl: string;
|
|
869
1130
|
aminoType: string;
|