@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
|
@@ -4,9 +4,16 @@ import { CompactBitArray, CompactBitArrayAmino } from "../../crypto/multisig/v1b
|
|
|
4
4
|
import { Coin, CoinAmino } from "../../base/v1beta1/coin";
|
|
5
5
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
6
6
|
import { DeepPartial } from "../../../helpers";
|
|
7
|
-
/**
|
|
7
|
+
/**
|
|
8
|
+
* Tx is the standard type used for broadcasting transactions.
|
|
9
|
+
* @name Tx
|
|
10
|
+
* @package cosmos.tx.v1beta1
|
|
11
|
+
* @see proto type: cosmos.tx.v1beta1.Tx
|
|
12
|
+
*/
|
|
8
13
|
export interface Tx {
|
|
9
|
-
/**
|
|
14
|
+
/**
|
|
15
|
+
* body is the processable content of the transaction
|
|
16
|
+
*/
|
|
10
17
|
body?: TxBody;
|
|
11
18
|
/**
|
|
12
19
|
* auth_info is the authorization related content of the transaction,
|
|
@@ -24,9 +31,16 @@ export interface TxProtoMsg {
|
|
|
24
31
|
typeUrl: "/cosmos.tx.v1beta1.Tx";
|
|
25
32
|
value: Uint8Array;
|
|
26
33
|
}
|
|
27
|
-
/**
|
|
34
|
+
/**
|
|
35
|
+
* Tx is the standard type used for broadcasting transactions.
|
|
36
|
+
* @name TxAmino
|
|
37
|
+
* @package cosmos.tx.v1beta1
|
|
38
|
+
* @see proto type: cosmos.tx.v1beta1.Tx
|
|
39
|
+
*/
|
|
28
40
|
export interface TxAmino {
|
|
29
|
-
/**
|
|
41
|
+
/**
|
|
42
|
+
* body is the processable content of the transaction
|
|
43
|
+
*/
|
|
30
44
|
body?: TxBodyAmino;
|
|
31
45
|
/**
|
|
32
46
|
* auth_info is the authorization related content of the transaction,
|
|
@@ -50,6 +64,9 @@ export interface TxAminoMsg {
|
|
|
50
64
|
* verification. The binary `serialize(tx: TxRaw)` is stored in Tendermint and
|
|
51
65
|
* the hash `sha256(serialize(tx: TxRaw))` becomes the "txhash", commonly used
|
|
52
66
|
* as the transaction ID.
|
|
67
|
+
* @name TxRaw
|
|
68
|
+
* @package cosmos.tx.v1beta1
|
|
69
|
+
* @see proto type: cosmos.tx.v1beta1.TxRaw
|
|
53
70
|
*/
|
|
54
71
|
export interface TxRaw {
|
|
55
72
|
/**
|
|
@@ -79,6 +96,9 @@ export interface TxRawProtoMsg {
|
|
|
79
96
|
* verification. The binary `serialize(tx: TxRaw)` is stored in Tendermint and
|
|
80
97
|
* the hash `sha256(serialize(tx: TxRaw))` becomes the "txhash", commonly used
|
|
81
98
|
* as the transaction ID.
|
|
99
|
+
* @name TxRawAmino
|
|
100
|
+
* @package cosmos.tx.v1beta1
|
|
101
|
+
* @see proto type: cosmos.tx.v1beta1.TxRaw
|
|
82
102
|
*/
|
|
83
103
|
export interface TxRawAmino {
|
|
84
104
|
/**
|
|
@@ -102,7 +122,12 @@ export interface TxRawAminoMsg {
|
|
|
102
122
|
type: "cosmos-sdk/TxRaw";
|
|
103
123
|
value: TxRawAmino;
|
|
104
124
|
}
|
|
105
|
-
/**
|
|
125
|
+
/**
|
|
126
|
+
* SignDoc is the type used for generating sign bytes for SIGN_MODE_DIRECT.
|
|
127
|
+
* @name SignDoc
|
|
128
|
+
* @package cosmos.tx.v1beta1
|
|
129
|
+
* @see proto type: cosmos.tx.v1beta1.SignDoc
|
|
130
|
+
*/
|
|
106
131
|
export interface SignDoc {
|
|
107
132
|
/**
|
|
108
133
|
* body_bytes is protobuf serialization of a TxBody that matches the
|
|
@@ -120,14 +145,21 @@ export interface SignDoc {
|
|
|
120
145
|
* attacker
|
|
121
146
|
*/
|
|
122
147
|
chainId: string;
|
|
123
|
-
/**
|
|
148
|
+
/**
|
|
149
|
+
* account_number is the account number of the account in state
|
|
150
|
+
*/
|
|
124
151
|
accountNumber: bigint;
|
|
125
152
|
}
|
|
126
153
|
export interface SignDocProtoMsg {
|
|
127
154
|
typeUrl: "/cosmos.tx.v1beta1.SignDoc";
|
|
128
155
|
value: Uint8Array;
|
|
129
156
|
}
|
|
130
|
-
/**
|
|
157
|
+
/**
|
|
158
|
+
* SignDoc is the type used for generating sign bytes for SIGN_MODE_DIRECT.
|
|
159
|
+
* @name SignDocAmino
|
|
160
|
+
* @package cosmos.tx.v1beta1
|
|
161
|
+
* @see proto type: cosmos.tx.v1beta1.SignDoc
|
|
162
|
+
*/
|
|
131
163
|
export interface SignDocAmino {
|
|
132
164
|
/**
|
|
133
165
|
* body_bytes is protobuf serialization of a TxBody that matches the
|
|
@@ -145,7 +177,9 @@ export interface SignDocAmino {
|
|
|
145
177
|
* attacker
|
|
146
178
|
*/
|
|
147
179
|
chain_id?: string;
|
|
148
|
-
/**
|
|
180
|
+
/**
|
|
181
|
+
* account_number is the account number of the account in state
|
|
182
|
+
*/
|
|
149
183
|
account_number?: string;
|
|
150
184
|
}
|
|
151
185
|
export interface SignDocAminoMsg {
|
|
@@ -155,8 +189,9 @@ export interface SignDocAminoMsg {
|
|
|
155
189
|
/**
|
|
156
190
|
* SignDocDirectAux is the type used for generating sign bytes for
|
|
157
191
|
* SIGN_MODE_DIRECT_AUX.
|
|
158
|
-
*
|
|
159
|
-
*
|
|
192
|
+
* @name SignDocDirectAux
|
|
193
|
+
* @package cosmos.tx.v1beta1
|
|
194
|
+
* @see proto type: cosmos.tx.v1beta1.SignDocDirectAux
|
|
160
195
|
*/
|
|
161
196
|
export interface SignDocDirectAux {
|
|
162
197
|
/**
|
|
@@ -164,7 +199,9 @@ export interface SignDocDirectAux {
|
|
|
164
199
|
* representation in TxRaw.
|
|
165
200
|
*/
|
|
166
201
|
bodyBytes: Uint8Array;
|
|
167
|
-
/**
|
|
202
|
+
/**
|
|
203
|
+
* public_key is the public key of the signing account.
|
|
204
|
+
*/
|
|
168
205
|
publicKey?: Any;
|
|
169
206
|
/**
|
|
170
207
|
* chain_id is the identifier of the chain this transaction targets.
|
|
@@ -172,12 +209,18 @@ export interface SignDocDirectAux {
|
|
|
172
209
|
* attacker.
|
|
173
210
|
*/
|
|
174
211
|
chainId: string;
|
|
175
|
-
/**
|
|
212
|
+
/**
|
|
213
|
+
* account_number is the account number of the account in state.
|
|
214
|
+
*/
|
|
176
215
|
accountNumber: bigint;
|
|
177
|
-
/**
|
|
216
|
+
/**
|
|
217
|
+
* sequence is the sequence number of the signing account.
|
|
218
|
+
*/
|
|
178
219
|
sequence: bigint;
|
|
179
|
-
/**
|
|
180
|
-
|
|
220
|
+
/**
|
|
221
|
+
* tips have been depreacted and should not be used
|
|
222
|
+
* @deprecated
|
|
223
|
+
*/
|
|
181
224
|
tip?: Tip;
|
|
182
225
|
}
|
|
183
226
|
export interface SignDocDirectAuxProtoMsg {
|
|
@@ -187,8 +230,9 @@ export interface SignDocDirectAuxProtoMsg {
|
|
|
187
230
|
/**
|
|
188
231
|
* SignDocDirectAux is the type used for generating sign bytes for
|
|
189
232
|
* SIGN_MODE_DIRECT_AUX.
|
|
190
|
-
*
|
|
191
|
-
*
|
|
233
|
+
* @name SignDocDirectAuxAmino
|
|
234
|
+
* @package cosmos.tx.v1beta1
|
|
235
|
+
* @see proto type: cosmos.tx.v1beta1.SignDocDirectAux
|
|
192
236
|
*/
|
|
193
237
|
export interface SignDocDirectAuxAmino {
|
|
194
238
|
/**
|
|
@@ -196,7 +240,9 @@ export interface SignDocDirectAuxAmino {
|
|
|
196
240
|
* representation in TxRaw.
|
|
197
241
|
*/
|
|
198
242
|
body_bytes?: string;
|
|
199
|
-
/**
|
|
243
|
+
/**
|
|
244
|
+
* public_key is the public key of the signing account.
|
|
245
|
+
*/
|
|
200
246
|
public_key?: AnyAmino;
|
|
201
247
|
/**
|
|
202
248
|
* chain_id is the identifier of the chain this transaction targets.
|
|
@@ -204,19 +250,30 @@ export interface SignDocDirectAuxAmino {
|
|
|
204
250
|
* attacker.
|
|
205
251
|
*/
|
|
206
252
|
chain_id?: string;
|
|
207
|
-
/**
|
|
253
|
+
/**
|
|
254
|
+
* account_number is the account number of the account in state.
|
|
255
|
+
*/
|
|
208
256
|
account_number?: string;
|
|
209
|
-
/**
|
|
257
|
+
/**
|
|
258
|
+
* sequence is the sequence number of the signing account.
|
|
259
|
+
*/
|
|
210
260
|
sequence?: string;
|
|
211
|
-
/**
|
|
212
|
-
|
|
261
|
+
/**
|
|
262
|
+
* tips have been depreacted and should not be used
|
|
263
|
+
* @deprecated
|
|
264
|
+
*/
|
|
213
265
|
tip?: TipAmino;
|
|
214
266
|
}
|
|
215
267
|
export interface SignDocDirectAuxAminoMsg {
|
|
216
268
|
type: "cosmos-sdk/SignDocDirectAux";
|
|
217
269
|
value: SignDocDirectAuxAmino;
|
|
218
270
|
}
|
|
219
|
-
/**
|
|
271
|
+
/**
|
|
272
|
+
* TxBody is the body of a transaction that all signers sign over.
|
|
273
|
+
* @name TxBody
|
|
274
|
+
* @package cosmos.tx.v1beta1
|
|
275
|
+
* @see proto type: cosmos.tx.v1beta1.TxBody
|
|
276
|
+
*/
|
|
220
277
|
export interface TxBody {
|
|
221
278
|
/**
|
|
222
279
|
* messages is a list of messages to be executed. The required signers of
|
|
@@ -231,14 +288,40 @@ export interface TxBody {
|
|
|
231
288
|
/**
|
|
232
289
|
* memo is any arbitrary note/comment to be added to the transaction.
|
|
233
290
|
* WARNING: in clients, any publicly exposed text should not be called memo,
|
|
234
|
-
* but should be called `note` instead (see
|
|
291
|
+
* but should be called `note` instead (see
|
|
292
|
+
* https://github.com/cosmos/cosmos-sdk/issues/9122).
|
|
235
293
|
*/
|
|
236
294
|
memo: string;
|
|
237
295
|
/**
|
|
238
|
-
*
|
|
239
|
-
* be processed by the chain
|
|
296
|
+
* timeout_height is the block height after which this transaction will not
|
|
297
|
+
* be processed by the chain.
|
|
240
298
|
*/
|
|
241
299
|
timeoutHeight: bigint;
|
|
300
|
+
/**
|
|
301
|
+
* unordered, when set to true, indicates that the transaction signer(s)
|
|
302
|
+
* intend for the transaction to be evaluated and executed in an un-ordered
|
|
303
|
+
* fashion. Specifically, the account's nonce will NOT be checked or
|
|
304
|
+
* incremented, which allows for fire-and-forget as well as concurrent
|
|
305
|
+
* transaction execution.
|
|
306
|
+
*
|
|
307
|
+
* Note, when set to true, the existing 'timeout_timestamp' value must
|
|
308
|
+
* be set and will be used to correspond to a timestamp in which the transaction is deemed
|
|
309
|
+
* valid.
|
|
310
|
+
*
|
|
311
|
+
* When true, the sequence value MUST be 0, and any transaction with unordered=true and a non-zero sequence value will
|
|
312
|
+
* be rejected.
|
|
313
|
+
* External services that make assumptions about sequence values may need to be updated because of this.
|
|
314
|
+
*/
|
|
315
|
+
unordered: boolean;
|
|
316
|
+
/**
|
|
317
|
+
* timeout_timestamp is the block time after which this transaction will not
|
|
318
|
+
* be processed by the chain.
|
|
319
|
+
*
|
|
320
|
+
* Note, if unordered=true this value MUST be set
|
|
321
|
+
* and will act as a short-lived TTL in which the transaction is deemed valid
|
|
322
|
+
* and kept in memory to prevent duplicates.
|
|
323
|
+
*/
|
|
324
|
+
timeoutTimestamp?: Date;
|
|
242
325
|
/**
|
|
243
326
|
* extension_options are arbitrary options that can be added by chains
|
|
244
327
|
* when the default options are not sufficient. If any of these are present
|
|
@@ -256,7 +339,12 @@ export interface TxBodyProtoMsg {
|
|
|
256
339
|
typeUrl: "/cosmos.tx.v1beta1.TxBody";
|
|
257
340
|
value: Uint8Array;
|
|
258
341
|
}
|
|
259
|
-
/**
|
|
342
|
+
/**
|
|
343
|
+
* TxBody is the body of a transaction that all signers sign over.
|
|
344
|
+
* @name TxBodyAmino
|
|
345
|
+
* @package cosmos.tx.v1beta1
|
|
346
|
+
* @see proto type: cosmos.tx.v1beta1.TxBody
|
|
347
|
+
*/
|
|
260
348
|
export interface TxBodyAmino {
|
|
261
349
|
/**
|
|
262
350
|
* messages is a list of messages to be executed. The required signers of
|
|
@@ -271,14 +359,40 @@ export interface TxBodyAmino {
|
|
|
271
359
|
/**
|
|
272
360
|
* memo is any arbitrary note/comment to be added to the transaction.
|
|
273
361
|
* WARNING: in clients, any publicly exposed text should not be called memo,
|
|
274
|
-
* but should be called `note` instead (see
|
|
362
|
+
* but should be called `note` instead (see
|
|
363
|
+
* https://github.com/cosmos/cosmos-sdk/issues/9122).
|
|
275
364
|
*/
|
|
276
365
|
memo?: string;
|
|
277
366
|
/**
|
|
278
|
-
*
|
|
279
|
-
* be processed by the chain
|
|
367
|
+
* timeout_height is the block height after which this transaction will not
|
|
368
|
+
* be processed by the chain.
|
|
280
369
|
*/
|
|
281
370
|
timeout_height?: string;
|
|
371
|
+
/**
|
|
372
|
+
* unordered, when set to true, indicates that the transaction signer(s)
|
|
373
|
+
* intend for the transaction to be evaluated and executed in an un-ordered
|
|
374
|
+
* fashion. Specifically, the account's nonce will NOT be checked or
|
|
375
|
+
* incremented, which allows for fire-and-forget as well as concurrent
|
|
376
|
+
* transaction execution.
|
|
377
|
+
*
|
|
378
|
+
* Note, when set to true, the existing 'timeout_timestamp' value must
|
|
379
|
+
* be set and will be used to correspond to a timestamp in which the transaction is deemed
|
|
380
|
+
* valid.
|
|
381
|
+
*
|
|
382
|
+
* When true, the sequence value MUST be 0, and any transaction with unordered=true and a non-zero sequence value will
|
|
383
|
+
* be rejected.
|
|
384
|
+
* External services that make assumptions about sequence values may need to be updated because of this.
|
|
385
|
+
*/
|
|
386
|
+
unordered?: boolean;
|
|
387
|
+
/**
|
|
388
|
+
* timeout_timestamp is the block time after which this transaction will not
|
|
389
|
+
* be processed by the chain.
|
|
390
|
+
*
|
|
391
|
+
* Note, if unordered=true this value MUST be set
|
|
392
|
+
* and will act as a short-lived TTL in which the transaction is deemed valid
|
|
393
|
+
* and kept in memory to prevent duplicates.
|
|
394
|
+
*/
|
|
395
|
+
timeout_timestamp?: string;
|
|
282
396
|
/**
|
|
283
397
|
* extension_options are arbitrary options that can be added by chains
|
|
284
398
|
* when the default options are not sufficient. If any of these are present
|
|
@@ -299,6 +413,9 @@ export interface TxBodyAminoMsg {
|
|
|
299
413
|
/**
|
|
300
414
|
* AuthInfo describes the fee and signer modes that are used to sign a
|
|
301
415
|
* transaction.
|
|
416
|
+
* @name AuthInfo
|
|
417
|
+
* @package cosmos.tx.v1beta1
|
|
418
|
+
* @see proto type: cosmos.tx.v1beta1.AuthInfo
|
|
302
419
|
*/
|
|
303
420
|
export interface AuthInfo {
|
|
304
421
|
/**
|
|
@@ -320,10 +437,8 @@ export interface AuthInfo {
|
|
|
320
437
|
*
|
|
321
438
|
* This field is ignored if the chain didn't enable tips, i.e. didn't add the
|
|
322
439
|
* `TipDecorator` in its posthandler.
|
|
323
|
-
*
|
|
324
|
-
* Since: cosmos-sdk 0.46
|
|
440
|
+
* @deprecated
|
|
325
441
|
*/
|
|
326
|
-
/** @deprecated */
|
|
327
442
|
tip?: Tip;
|
|
328
443
|
}
|
|
329
444
|
export interface AuthInfoProtoMsg {
|
|
@@ -333,6 +448,9 @@ export interface AuthInfoProtoMsg {
|
|
|
333
448
|
/**
|
|
334
449
|
* AuthInfo describes the fee and signer modes that are used to sign a
|
|
335
450
|
* transaction.
|
|
451
|
+
* @name AuthInfoAmino
|
|
452
|
+
* @package cosmos.tx.v1beta1
|
|
453
|
+
* @see proto type: cosmos.tx.v1beta1.AuthInfo
|
|
336
454
|
*/
|
|
337
455
|
export interface AuthInfoAmino {
|
|
338
456
|
/**
|
|
@@ -354,10 +472,8 @@ export interface AuthInfoAmino {
|
|
|
354
472
|
*
|
|
355
473
|
* This field is ignored if the chain didn't enable tips, i.e. didn't add the
|
|
356
474
|
* `TipDecorator` in its posthandler.
|
|
357
|
-
*
|
|
358
|
-
* Since: cosmos-sdk 0.46
|
|
475
|
+
* @deprecated
|
|
359
476
|
*/
|
|
360
|
-
/** @deprecated */
|
|
361
477
|
tip?: TipAmino;
|
|
362
478
|
}
|
|
363
479
|
export interface AuthInfoAminoMsg {
|
|
@@ -367,6 +483,9 @@ export interface AuthInfoAminoMsg {
|
|
|
367
483
|
/**
|
|
368
484
|
* SignerInfo describes the public key and signing mode of a single top-level
|
|
369
485
|
* signer.
|
|
486
|
+
* @name SignerInfo
|
|
487
|
+
* @package cosmos.tx.v1beta1
|
|
488
|
+
* @see proto type: cosmos.tx.v1beta1.SignerInfo
|
|
370
489
|
*/
|
|
371
490
|
export interface SignerInfo {
|
|
372
491
|
/**
|
|
@@ -394,6 +513,9 @@ export interface SignerInfoProtoMsg {
|
|
|
394
513
|
/**
|
|
395
514
|
* SignerInfo describes the public key and signing mode of a single top-level
|
|
396
515
|
* signer.
|
|
516
|
+
* @name SignerInfoAmino
|
|
517
|
+
* @package cosmos.tx.v1beta1
|
|
518
|
+
* @see proto type: cosmos.tx.v1beta1.SignerInfo
|
|
397
519
|
*/
|
|
398
520
|
export interface SignerInfoAmino {
|
|
399
521
|
/**
|
|
@@ -418,22 +540,40 @@ export interface SignerInfoAminoMsg {
|
|
|
418
540
|
type: "cosmos-sdk/SignerInfo";
|
|
419
541
|
value: SignerInfoAmino;
|
|
420
542
|
}
|
|
421
|
-
/**
|
|
543
|
+
/**
|
|
544
|
+
* ModeInfo describes the signing mode of a single or nested multisig signer.
|
|
545
|
+
* @name ModeInfo
|
|
546
|
+
* @package cosmos.tx.v1beta1
|
|
547
|
+
* @see proto type: cosmos.tx.v1beta1.ModeInfo
|
|
548
|
+
*/
|
|
422
549
|
export interface ModeInfo {
|
|
423
|
-
/**
|
|
550
|
+
/**
|
|
551
|
+
* single represents a single signer
|
|
552
|
+
*/
|
|
424
553
|
single?: ModeInfo_Single;
|
|
425
|
-
/**
|
|
554
|
+
/**
|
|
555
|
+
* multi represents a nested multisig signer
|
|
556
|
+
*/
|
|
426
557
|
multi?: ModeInfo_Multi;
|
|
427
558
|
}
|
|
428
559
|
export interface ModeInfoProtoMsg {
|
|
429
560
|
typeUrl: "/cosmos.tx.v1beta1.ModeInfo";
|
|
430
561
|
value: Uint8Array;
|
|
431
562
|
}
|
|
432
|
-
/**
|
|
563
|
+
/**
|
|
564
|
+
* ModeInfo describes the signing mode of a single or nested multisig signer.
|
|
565
|
+
* @name ModeInfoAmino
|
|
566
|
+
* @package cosmos.tx.v1beta1
|
|
567
|
+
* @see proto type: cosmos.tx.v1beta1.ModeInfo
|
|
568
|
+
*/
|
|
433
569
|
export interface ModeInfoAmino {
|
|
434
|
-
/**
|
|
570
|
+
/**
|
|
571
|
+
* single represents a single signer
|
|
572
|
+
*/
|
|
435
573
|
single?: ModeInfo_SingleAmino;
|
|
436
|
-
/**
|
|
574
|
+
/**
|
|
575
|
+
* multi represents a nested multisig signer
|
|
576
|
+
*/
|
|
437
577
|
multi?: ModeInfo_MultiAmino;
|
|
438
578
|
}
|
|
439
579
|
export interface ModeInfoAminoMsg {
|
|
@@ -444,9 +584,14 @@ export interface ModeInfoAminoMsg {
|
|
|
444
584
|
* Single is the mode info for a single signer. It is structured as a message
|
|
445
585
|
* to allow for additional fields such as locale for SIGN_MODE_TEXTUAL in the
|
|
446
586
|
* future
|
|
587
|
+
* @name ModeInfo_Single
|
|
588
|
+
* @package cosmos.tx.v1beta1
|
|
589
|
+
* @see proto type: cosmos.tx.v1beta1.Single
|
|
447
590
|
*/
|
|
448
591
|
export interface ModeInfo_Single {
|
|
449
|
-
/**
|
|
592
|
+
/**
|
|
593
|
+
* mode is the signing mode of the single signer
|
|
594
|
+
*/
|
|
450
595
|
mode: SignMode;
|
|
451
596
|
}
|
|
452
597
|
export interface ModeInfo_SingleProtoMsg {
|
|
@@ -457,18 +602,30 @@ export interface ModeInfo_SingleProtoMsg {
|
|
|
457
602
|
* Single is the mode info for a single signer. It is structured as a message
|
|
458
603
|
* to allow for additional fields such as locale for SIGN_MODE_TEXTUAL in the
|
|
459
604
|
* future
|
|
605
|
+
* @name ModeInfo_SingleAmino
|
|
606
|
+
* @package cosmos.tx.v1beta1
|
|
607
|
+
* @see proto type: cosmos.tx.v1beta1.ModeInfo_Single
|
|
460
608
|
*/
|
|
461
609
|
export interface ModeInfo_SingleAmino {
|
|
462
|
-
/**
|
|
610
|
+
/**
|
|
611
|
+
* mode is the signing mode of the single signer
|
|
612
|
+
*/
|
|
463
613
|
mode?: SignMode;
|
|
464
614
|
}
|
|
465
615
|
export interface ModeInfo_SingleAminoMsg {
|
|
466
616
|
type: "cosmos-sdk/Single";
|
|
467
617
|
value: ModeInfo_SingleAmino;
|
|
468
618
|
}
|
|
469
|
-
/**
|
|
619
|
+
/**
|
|
620
|
+
* Multi is the mode info for a multisig public key
|
|
621
|
+
* @name ModeInfo_Multi
|
|
622
|
+
* @package cosmos.tx.v1beta1
|
|
623
|
+
* @see proto type: cosmos.tx.v1beta1.Multi
|
|
624
|
+
*/
|
|
470
625
|
export interface ModeInfo_Multi {
|
|
471
|
-
/**
|
|
626
|
+
/**
|
|
627
|
+
* bitarray specifies which keys within the multisig are signing
|
|
628
|
+
*/
|
|
472
629
|
bitarray?: CompactBitArray;
|
|
473
630
|
/**
|
|
474
631
|
* mode_infos is the corresponding modes of the signers of the multisig
|
|
@@ -480,9 +637,16 @@ export interface ModeInfo_MultiProtoMsg {
|
|
|
480
637
|
typeUrl: "/cosmos.tx.v1beta1.Multi";
|
|
481
638
|
value: Uint8Array;
|
|
482
639
|
}
|
|
483
|
-
/**
|
|
640
|
+
/**
|
|
641
|
+
* Multi is the mode info for a multisig public key
|
|
642
|
+
* @name ModeInfo_MultiAmino
|
|
643
|
+
* @package cosmos.tx.v1beta1
|
|
644
|
+
* @see proto type: cosmos.tx.v1beta1.ModeInfo_Multi
|
|
645
|
+
*/
|
|
484
646
|
export interface ModeInfo_MultiAmino {
|
|
485
|
-
/**
|
|
647
|
+
/**
|
|
648
|
+
* bitarray specifies which keys within the multisig are signing
|
|
649
|
+
*/
|
|
486
650
|
bitarray?: CompactBitArrayAmino;
|
|
487
651
|
/**
|
|
488
652
|
* mode_infos is the corresponding modes of the signers of the multisig
|
|
@@ -498,9 +662,14 @@ export interface ModeInfo_MultiAminoMsg {
|
|
|
498
662
|
* Fee includes the amount of coins paid in fees and the maximum
|
|
499
663
|
* gas to be used by the transaction. The ratio yields an effective "gasprice",
|
|
500
664
|
* which must be above some miminum to be accepted into the mempool.
|
|
665
|
+
* @name Fee
|
|
666
|
+
* @package cosmos.tx.v1beta1
|
|
667
|
+
* @see proto type: cosmos.tx.v1beta1.Fee
|
|
501
668
|
*/
|
|
502
669
|
export interface Fee {
|
|
503
|
-
/**
|
|
670
|
+
/**
|
|
671
|
+
* amount is the amount of coins to be paid as a fee
|
|
672
|
+
*/
|
|
504
673
|
amount: Coin[];
|
|
505
674
|
/**
|
|
506
675
|
* gas_limit is the maximum gas that can be used in transaction processing
|
|
@@ -508,15 +677,17 @@ export interface Fee {
|
|
|
508
677
|
*/
|
|
509
678
|
gasLimit: bigint;
|
|
510
679
|
/**
|
|
511
|
-
* if unset, the first signer is responsible for paying the fees. If set, the
|
|
512
|
-
* the payer must be a tx signer (and
|
|
513
|
-
* setting this field does *not*
|
|
680
|
+
* if unset, the first signer is responsible for paying the fees. If set, the
|
|
681
|
+
* specified account must pay the fees. the payer must be a tx signer (and
|
|
682
|
+
* thus have signed this field in AuthInfo). setting this field does *not*
|
|
683
|
+
* change the ordering of required signers for the transaction.
|
|
514
684
|
*/
|
|
515
685
|
payer: string;
|
|
516
686
|
/**
|
|
517
|
-
* if set, the fee payer (either the first signer or the value of the payer
|
|
518
|
-
*
|
|
519
|
-
*
|
|
687
|
+
* if set, the fee payer (either the first signer or the value of the payer
|
|
688
|
+
* field) requests that a fee grant be used to pay fees instead of the fee
|
|
689
|
+
* payer's own balance. If an appropriate fee grant does not exist or the
|
|
690
|
+
* chain does not support fee grants, this will fail
|
|
520
691
|
*/
|
|
521
692
|
granter: string;
|
|
522
693
|
}
|
|
@@ -528,9 +699,14 @@ export interface FeeProtoMsg {
|
|
|
528
699
|
* Fee includes the amount of coins paid in fees and the maximum
|
|
529
700
|
* gas to be used by the transaction. The ratio yields an effective "gasprice",
|
|
530
701
|
* which must be above some miminum to be accepted into the mempool.
|
|
702
|
+
* @name FeeAmino
|
|
703
|
+
* @package cosmos.tx.v1beta1
|
|
704
|
+
* @see proto type: cosmos.tx.v1beta1.Fee
|
|
531
705
|
*/
|
|
532
706
|
export interface FeeAmino {
|
|
533
|
-
/**
|
|
707
|
+
/**
|
|
708
|
+
* amount is the amount of coins to be paid as a fee
|
|
709
|
+
*/
|
|
534
710
|
amount: CoinAmino[];
|
|
535
711
|
/**
|
|
536
712
|
* gas_limit is the maximum gas that can be used in transaction processing
|
|
@@ -538,15 +714,17 @@ export interface FeeAmino {
|
|
|
538
714
|
*/
|
|
539
715
|
gas_limit?: string;
|
|
540
716
|
/**
|
|
541
|
-
* if unset, the first signer is responsible for paying the fees. If set, the
|
|
542
|
-
* the payer must be a tx signer (and
|
|
543
|
-
* setting this field does *not*
|
|
717
|
+
* if unset, the first signer is responsible for paying the fees. If set, the
|
|
718
|
+
* specified account must pay the fees. the payer must be a tx signer (and
|
|
719
|
+
* thus have signed this field in AuthInfo). setting this field does *not*
|
|
720
|
+
* change the ordering of required signers for the transaction.
|
|
544
721
|
*/
|
|
545
722
|
payer?: string;
|
|
546
723
|
/**
|
|
547
|
-
* if set, the fee payer (either the first signer or the value of the payer
|
|
548
|
-
*
|
|
549
|
-
*
|
|
724
|
+
* if set, the fee payer (either the first signer or the value of the payer
|
|
725
|
+
* field) requests that a fee grant be used to pay fees instead of the fee
|
|
726
|
+
* payer's own balance. If an appropriate fee grant does not exist or the
|
|
727
|
+
* chain does not support fee grants, this will fail
|
|
550
728
|
*/
|
|
551
729
|
granter?: string;
|
|
552
730
|
}
|
|
@@ -556,14 +734,19 @@ export interface FeeAminoMsg {
|
|
|
556
734
|
}
|
|
557
735
|
/**
|
|
558
736
|
* Tip is the tip used for meta-transactions.
|
|
559
|
-
*
|
|
560
|
-
*
|
|
737
|
+
* @name Tip
|
|
738
|
+
* @package cosmos.tx.v1beta1
|
|
739
|
+
* @see proto type: cosmos.tx.v1beta1.Tip
|
|
740
|
+
* @deprecated
|
|
561
741
|
*/
|
|
562
|
-
/** @deprecated */
|
|
563
742
|
export interface Tip {
|
|
564
|
-
/**
|
|
743
|
+
/**
|
|
744
|
+
* amount is the amount of the tip
|
|
745
|
+
*/
|
|
565
746
|
amount: Coin[];
|
|
566
|
-
/**
|
|
747
|
+
/**
|
|
748
|
+
* tipper is the address of the account paying for the tip
|
|
749
|
+
*/
|
|
567
750
|
tipper: string;
|
|
568
751
|
}
|
|
569
752
|
export interface TipProtoMsg {
|
|
@@ -572,14 +755,19 @@ export interface TipProtoMsg {
|
|
|
572
755
|
}
|
|
573
756
|
/**
|
|
574
757
|
* Tip is the tip used for meta-transactions.
|
|
575
|
-
*
|
|
576
|
-
*
|
|
758
|
+
* @name TipAmino
|
|
759
|
+
* @package cosmos.tx.v1beta1
|
|
760
|
+
* @see proto type: cosmos.tx.v1beta1.Tip
|
|
761
|
+
* @deprecated
|
|
577
762
|
*/
|
|
578
|
-
/** @deprecated */
|
|
579
763
|
export interface TipAmino {
|
|
580
|
-
/**
|
|
764
|
+
/**
|
|
765
|
+
* amount is the amount of the tip
|
|
766
|
+
*/
|
|
581
767
|
amount: CoinAmino[];
|
|
582
|
-
/**
|
|
768
|
+
/**
|
|
769
|
+
* tipper is the address of the account paying for the tip
|
|
770
|
+
*/
|
|
583
771
|
tipper?: string;
|
|
584
772
|
}
|
|
585
773
|
export interface TipAminoMsg {
|
|
@@ -591,8 +779,9 @@ export interface TipAminoMsg {
|
|
|
591
779
|
* tipper) builds and sends to the fee payer (who will build and broadcast the
|
|
592
780
|
* actual tx). AuxSignerData is not a valid tx in itself, and will be rejected
|
|
593
781
|
* by the node if sent directly as-is.
|
|
594
|
-
*
|
|
595
|
-
*
|
|
782
|
+
* @name AuxSignerData
|
|
783
|
+
* @package cosmos.tx.v1beta1
|
|
784
|
+
* @see proto type: cosmos.tx.v1beta1.AuxSignerData
|
|
596
785
|
*/
|
|
597
786
|
export interface AuxSignerData {
|
|
598
787
|
/**
|
|
@@ -607,9 +796,13 @@ export interface AuxSignerData {
|
|
|
607
796
|
* LEGACY_AMINO_JSON.
|
|
608
797
|
*/
|
|
609
798
|
signDoc?: SignDocDirectAux;
|
|
610
|
-
/**
|
|
799
|
+
/**
|
|
800
|
+
* mode is the signing mode of the single signer.
|
|
801
|
+
*/
|
|
611
802
|
mode: SignMode;
|
|
612
|
-
/**
|
|
803
|
+
/**
|
|
804
|
+
* sig is the signature of the sign doc.
|
|
805
|
+
*/
|
|
613
806
|
sig: Uint8Array;
|
|
614
807
|
}
|
|
615
808
|
export interface AuxSignerDataProtoMsg {
|
|
@@ -621,8 +814,9 @@ export interface AuxSignerDataProtoMsg {
|
|
|
621
814
|
* tipper) builds and sends to the fee payer (who will build and broadcast the
|
|
622
815
|
* actual tx). AuxSignerData is not a valid tx in itself, and will be rejected
|
|
623
816
|
* by the node if sent directly as-is.
|
|
624
|
-
*
|
|
625
|
-
*
|
|
817
|
+
* @name AuxSignerDataAmino
|
|
818
|
+
* @package cosmos.tx.v1beta1
|
|
819
|
+
* @see proto type: cosmos.tx.v1beta1.AuxSignerData
|
|
626
820
|
*/
|
|
627
821
|
export interface AuxSignerDataAmino {
|
|
628
822
|
/**
|
|
@@ -637,15 +831,25 @@ export interface AuxSignerDataAmino {
|
|
|
637
831
|
* LEGACY_AMINO_JSON.
|
|
638
832
|
*/
|
|
639
833
|
sign_doc?: SignDocDirectAuxAmino;
|
|
640
|
-
/**
|
|
834
|
+
/**
|
|
835
|
+
* mode is the signing mode of the single signer.
|
|
836
|
+
*/
|
|
641
837
|
mode?: SignMode;
|
|
642
|
-
/**
|
|
838
|
+
/**
|
|
839
|
+
* sig is the signature of the sign doc.
|
|
840
|
+
*/
|
|
643
841
|
sig?: string;
|
|
644
842
|
}
|
|
645
843
|
export interface AuxSignerDataAminoMsg {
|
|
646
844
|
type: "cosmos-sdk/AuxSignerData";
|
|
647
845
|
value: AuxSignerDataAmino;
|
|
648
846
|
}
|
|
847
|
+
/**
|
|
848
|
+
* Tx is the standard type used for broadcasting transactions.
|
|
849
|
+
* @name Tx
|
|
850
|
+
* @package cosmos.tx.v1beta1
|
|
851
|
+
* @see proto type: cosmos.tx.v1beta1.Tx
|
|
852
|
+
*/
|
|
649
853
|
export declare const Tx: {
|
|
650
854
|
typeUrl: string;
|
|
651
855
|
aminoType: string;
|
|
@@ -660,6 +864,16 @@ export declare const Tx: {
|
|
|
660
864
|
toProto(message: Tx): Uint8Array;
|
|
661
865
|
toProtoMsg(message: Tx): TxProtoMsg;
|
|
662
866
|
};
|
|
867
|
+
/**
|
|
868
|
+
* TxRaw is a variant of Tx that pins the signer's exact binary representation
|
|
869
|
+
* of body and auth_info. This is used for signing, broadcasting and
|
|
870
|
+
* verification. The binary `serialize(tx: TxRaw)` is stored in Tendermint and
|
|
871
|
+
* the hash `sha256(serialize(tx: TxRaw))` becomes the "txhash", commonly used
|
|
872
|
+
* as the transaction ID.
|
|
873
|
+
* @name TxRaw
|
|
874
|
+
* @package cosmos.tx.v1beta1
|
|
875
|
+
* @see proto type: cosmos.tx.v1beta1.TxRaw
|
|
876
|
+
*/
|
|
663
877
|
export declare const TxRaw: {
|
|
664
878
|
typeUrl: string;
|
|
665
879
|
aminoType: string;
|
|
@@ -674,6 +888,12 @@ export declare const TxRaw: {
|
|
|
674
888
|
toProto(message: TxRaw): Uint8Array;
|
|
675
889
|
toProtoMsg(message: TxRaw): TxRawProtoMsg;
|
|
676
890
|
};
|
|
891
|
+
/**
|
|
892
|
+
* SignDoc is the type used for generating sign bytes for SIGN_MODE_DIRECT.
|
|
893
|
+
* @name SignDoc
|
|
894
|
+
* @package cosmos.tx.v1beta1
|
|
895
|
+
* @see proto type: cosmos.tx.v1beta1.SignDoc
|
|
896
|
+
*/
|
|
677
897
|
export declare const SignDoc: {
|
|
678
898
|
typeUrl: string;
|
|
679
899
|
aminoType: string;
|
|
@@ -688,6 +908,13 @@ export declare const SignDoc: {
|
|
|
688
908
|
toProto(message: SignDoc): Uint8Array;
|
|
689
909
|
toProtoMsg(message: SignDoc): SignDocProtoMsg;
|
|
690
910
|
};
|
|
911
|
+
/**
|
|
912
|
+
* SignDocDirectAux is the type used for generating sign bytes for
|
|
913
|
+
* SIGN_MODE_DIRECT_AUX.
|
|
914
|
+
* @name SignDocDirectAux
|
|
915
|
+
* @package cosmos.tx.v1beta1
|
|
916
|
+
* @see proto type: cosmos.tx.v1beta1.SignDocDirectAux
|
|
917
|
+
*/
|
|
691
918
|
export declare const SignDocDirectAux: {
|
|
692
919
|
typeUrl: string;
|
|
693
920
|
aminoType: string;
|
|
@@ -702,6 +929,12 @@ export declare const SignDocDirectAux: {
|
|
|
702
929
|
toProto(message: SignDocDirectAux): Uint8Array;
|
|
703
930
|
toProtoMsg(message: SignDocDirectAux): SignDocDirectAuxProtoMsg;
|
|
704
931
|
};
|
|
932
|
+
/**
|
|
933
|
+
* TxBody is the body of a transaction that all signers sign over.
|
|
934
|
+
* @name TxBody
|
|
935
|
+
* @package cosmos.tx.v1beta1
|
|
936
|
+
* @see proto type: cosmos.tx.v1beta1.TxBody
|
|
937
|
+
*/
|
|
705
938
|
export declare const TxBody: {
|
|
706
939
|
typeUrl: string;
|
|
707
940
|
aminoType: string;
|
|
@@ -716,6 +949,13 @@ export declare const TxBody: {
|
|
|
716
949
|
toProto(message: TxBody): Uint8Array;
|
|
717
950
|
toProtoMsg(message: TxBody): TxBodyProtoMsg;
|
|
718
951
|
};
|
|
952
|
+
/**
|
|
953
|
+
* AuthInfo describes the fee and signer modes that are used to sign a
|
|
954
|
+
* transaction.
|
|
955
|
+
* @name AuthInfo
|
|
956
|
+
* @package cosmos.tx.v1beta1
|
|
957
|
+
* @see proto type: cosmos.tx.v1beta1.AuthInfo
|
|
958
|
+
*/
|
|
719
959
|
export declare const AuthInfo: {
|
|
720
960
|
typeUrl: string;
|
|
721
961
|
aminoType: string;
|
|
@@ -730,6 +970,13 @@ export declare const AuthInfo: {
|
|
|
730
970
|
toProto(message: AuthInfo): Uint8Array;
|
|
731
971
|
toProtoMsg(message: AuthInfo): AuthInfoProtoMsg;
|
|
732
972
|
};
|
|
973
|
+
/**
|
|
974
|
+
* SignerInfo describes the public key and signing mode of a single top-level
|
|
975
|
+
* signer.
|
|
976
|
+
* @name SignerInfo
|
|
977
|
+
* @package cosmos.tx.v1beta1
|
|
978
|
+
* @see proto type: cosmos.tx.v1beta1.SignerInfo
|
|
979
|
+
*/
|
|
733
980
|
export declare const SignerInfo: {
|
|
734
981
|
typeUrl: string;
|
|
735
982
|
aminoType: string;
|
|
@@ -744,6 +991,12 @@ export declare const SignerInfo: {
|
|
|
744
991
|
toProto(message: SignerInfo): Uint8Array;
|
|
745
992
|
toProtoMsg(message: SignerInfo): SignerInfoProtoMsg;
|
|
746
993
|
};
|
|
994
|
+
/**
|
|
995
|
+
* ModeInfo describes the signing mode of a single or nested multisig signer.
|
|
996
|
+
* @name ModeInfo
|
|
997
|
+
* @package cosmos.tx.v1beta1
|
|
998
|
+
* @see proto type: cosmos.tx.v1beta1.ModeInfo
|
|
999
|
+
*/
|
|
747
1000
|
export declare const ModeInfo: {
|
|
748
1001
|
typeUrl: string;
|
|
749
1002
|
aminoType: string;
|
|
@@ -758,6 +1011,14 @@ export declare const ModeInfo: {
|
|
|
758
1011
|
toProto(message: ModeInfo): Uint8Array;
|
|
759
1012
|
toProtoMsg(message: ModeInfo): ModeInfoProtoMsg;
|
|
760
1013
|
};
|
|
1014
|
+
/**
|
|
1015
|
+
* Single is the mode info for a single signer. It is structured as a message
|
|
1016
|
+
* to allow for additional fields such as locale for SIGN_MODE_TEXTUAL in the
|
|
1017
|
+
* future
|
|
1018
|
+
* @name ModeInfo_Single
|
|
1019
|
+
* @package cosmos.tx.v1beta1
|
|
1020
|
+
* @see proto type: cosmos.tx.v1beta1.Single
|
|
1021
|
+
*/
|
|
761
1022
|
export declare const ModeInfo_Single: {
|
|
762
1023
|
typeUrl: string;
|
|
763
1024
|
aminoType: string;
|
|
@@ -772,6 +1033,12 @@ export declare const ModeInfo_Single: {
|
|
|
772
1033
|
toProto(message: ModeInfo_Single): Uint8Array;
|
|
773
1034
|
toProtoMsg(message: ModeInfo_Single): ModeInfo_SingleProtoMsg;
|
|
774
1035
|
};
|
|
1036
|
+
/**
|
|
1037
|
+
* Multi is the mode info for a multisig public key
|
|
1038
|
+
* @name ModeInfo_Multi
|
|
1039
|
+
* @package cosmos.tx.v1beta1
|
|
1040
|
+
* @see proto type: cosmos.tx.v1beta1.Multi
|
|
1041
|
+
*/
|
|
775
1042
|
export declare const ModeInfo_Multi: {
|
|
776
1043
|
typeUrl: string;
|
|
777
1044
|
aminoType: string;
|
|
@@ -786,6 +1053,14 @@ export declare const ModeInfo_Multi: {
|
|
|
786
1053
|
toProto(message: ModeInfo_Multi): Uint8Array;
|
|
787
1054
|
toProtoMsg(message: ModeInfo_Multi): ModeInfo_MultiProtoMsg;
|
|
788
1055
|
};
|
|
1056
|
+
/**
|
|
1057
|
+
* Fee includes the amount of coins paid in fees and the maximum
|
|
1058
|
+
* gas to be used by the transaction. The ratio yields an effective "gasprice",
|
|
1059
|
+
* which must be above some miminum to be accepted into the mempool.
|
|
1060
|
+
* @name Fee
|
|
1061
|
+
* @package cosmos.tx.v1beta1
|
|
1062
|
+
* @see proto type: cosmos.tx.v1beta1.Fee
|
|
1063
|
+
*/
|
|
789
1064
|
export declare const Fee: {
|
|
790
1065
|
typeUrl: string;
|
|
791
1066
|
aminoType: string;
|
|
@@ -800,6 +1075,13 @@ export declare const Fee: {
|
|
|
800
1075
|
toProto(message: Fee): Uint8Array;
|
|
801
1076
|
toProtoMsg(message: Fee): FeeProtoMsg;
|
|
802
1077
|
};
|
|
1078
|
+
/**
|
|
1079
|
+
* Tip is the tip used for meta-transactions.
|
|
1080
|
+
* @name Tip
|
|
1081
|
+
* @package cosmos.tx.v1beta1
|
|
1082
|
+
* @see proto type: cosmos.tx.v1beta1.Tip
|
|
1083
|
+
* @deprecated
|
|
1084
|
+
*/
|
|
803
1085
|
export declare const Tip: {
|
|
804
1086
|
typeUrl: string;
|
|
805
1087
|
aminoType: string;
|
|
@@ -814,6 +1096,15 @@ export declare const Tip: {
|
|
|
814
1096
|
toProto(message: Tip): Uint8Array;
|
|
815
1097
|
toProtoMsg(message: Tip): TipProtoMsg;
|
|
816
1098
|
};
|
|
1099
|
+
/**
|
|
1100
|
+
* AuxSignerData is the intermediary format that an auxiliary signer (e.g. a
|
|
1101
|
+
* tipper) builds and sends to the fee payer (who will build and broadcast the
|
|
1102
|
+
* actual tx). AuxSignerData is not a valid tx in itself, and will be rejected
|
|
1103
|
+
* by the node if sent directly as-is.
|
|
1104
|
+
* @name AuxSignerData
|
|
1105
|
+
* @package cosmos.tx.v1beta1
|
|
1106
|
+
* @see proto type: cosmos.tx.v1beta1.AuxSignerData
|
|
1107
|
+
*/
|
|
817
1108
|
export declare const AuxSignerData: {
|
|
818
1109
|
typeUrl: string;
|
|
819
1110
|
aminoType: string;
|