@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
|
@@ -9,6 +9,12 @@ function createBaseQueryAccountsRequest() {
|
|
|
9
9
|
pagination: undefined
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* QueryAccountsRequest is the request type for the Query/Accounts RPC method.
|
|
14
|
+
* @name QueryAccountsRequest
|
|
15
|
+
* @package cosmos.auth.v1beta1
|
|
16
|
+
* @see proto type: cosmos.auth.v1beta1.QueryAccountsRequest
|
|
17
|
+
*/
|
|
12
18
|
export const QueryAccountsRequest = {
|
|
13
19
|
typeUrl: "/cosmos.auth.v1beta1.QueryAccountsRequest",
|
|
14
20
|
aminoType: "cosmos-sdk/QueryAccountsRequest",
|
|
@@ -80,6 +86,12 @@ function createBaseQueryAccountsResponse() {
|
|
|
80
86
|
pagination: undefined
|
|
81
87
|
};
|
|
82
88
|
}
|
|
89
|
+
/**
|
|
90
|
+
* QueryAccountsResponse is the response type for the Query/Accounts RPC method.
|
|
91
|
+
* @name QueryAccountsResponse
|
|
92
|
+
* @package cosmos.auth.v1beta1
|
|
93
|
+
* @see proto type: cosmos.auth.v1beta1.QueryAccountsResponse
|
|
94
|
+
*/
|
|
83
95
|
export const QueryAccountsResponse = {
|
|
84
96
|
typeUrl: "/cosmos.auth.v1beta1.QueryAccountsResponse",
|
|
85
97
|
aminoType: "cosmos-sdk/QueryAccountsResponse",
|
|
@@ -164,6 +176,12 @@ function createBaseQueryAccountRequest() {
|
|
|
164
176
|
address: ""
|
|
165
177
|
};
|
|
166
178
|
}
|
|
179
|
+
/**
|
|
180
|
+
* QueryAccountRequest is the request type for the Query/Account RPC method.
|
|
181
|
+
* @name QueryAccountRequest
|
|
182
|
+
* @package cosmos.auth.v1beta1
|
|
183
|
+
* @see proto type: cosmos.auth.v1beta1.QueryAccountRequest
|
|
184
|
+
*/
|
|
167
185
|
export const QueryAccountRequest = {
|
|
168
186
|
typeUrl: "/cosmos.auth.v1beta1.QueryAccountRequest",
|
|
169
187
|
aminoType: "cosmos-sdk/QueryAccountRequest",
|
|
@@ -234,6 +252,12 @@ function createBaseQueryAccountResponse() {
|
|
|
234
252
|
account: undefined
|
|
235
253
|
};
|
|
236
254
|
}
|
|
255
|
+
/**
|
|
256
|
+
* QueryAccountResponse is the response type for the Query/Account RPC method.
|
|
257
|
+
* @name QueryAccountResponse
|
|
258
|
+
* @package cosmos.auth.v1beta1
|
|
259
|
+
* @see proto type: cosmos.auth.v1beta1.QueryAccountResponse
|
|
260
|
+
*/
|
|
237
261
|
export const QueryAccountResponse = {
|
|
238
262
|
typeUrl: "/cosmos.auth.v1beta1.QueryAccountResponse",
|
|
239
263
|
aminoType: "cosmos-sdk/QueryAccountResponse",
|
|
@@ -302,6 +326,12 @@ export const QueryAccountResponse = {
|
|
|
302
326
|
function createBaseQueryParamsRequest() {
|
|
303
327
|
return {};
|
|
304
328
|
}
|
|
329
|
+
/**
|
|
330
|
+
* QueryParamsRequest is the request type for the Query/Params RPC method.
|
|
331
|
+
* @name QueryParamsRequest
|
|
332
|
+
* @package cosmos.auth.v1beta1
|
|
333
|
+
* @see proto type: cosmos.auth.v1beta1.QueryParamsRequest
|
|
334
|
+
*/
|
|
305
335
|
export const QueryParamsRequest = {
|
|
306
336
|
typeUrl: "/cosmos.auth.v1beta1.QueryParamsRequest",
|
|
307
337
|
aminoType: "cosmos-sdk/QueryParamsRequest",
|
|
@@ -361,6 +391,12 @@ function createBaseQueryParamsResponse() {
|
|
|
361
391
|
params: Params.fromPartial({})
|
|
362
392
|
};
|
|
363
393
|
}
|
|
394
|
+
/**
|
|
395
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
396
|
+
* @name QueryParamsResponse
|
|
397
|
+
* @package cosmos.auth.v1beta1
|
|
398
|
+
* @see proto type: cosmos.auth.v1beta1.QueryParamsResponse
|
|
399
|
+
*/
|
|
364
400
|
export const QueryParamsResponse = {
|
|
365
401
|
typeUrl: "/cosmos.auth.v1beta1.QueryParamsResponse",
|
|
366
402
|
aminoType: "cosmos-sdk/QueryParamsResponse",
|
|
@@ -429,6 +465,12 @@ export const QueryParamsResponse = {
|
|
|
429
465
|
function createBaseQueryModuleAccountsRequest() {
|
|
430
466
|
return {};
|
|
431
467
|
}
|
|
468
|
+
/**
|
|
469
|
+
* QueryModuleAccountsRequest is the request type for the Query/ModuleAccounts RPC method.
|
|
470
|
+
* @name QueryModuleAccountsRequest
|
|
471
|
+
* @package cosmos.auth.v1beta1
|
|
472
|
+
* @see proto type: cosmos.auth.v1beta1.QueryModuleAccountsRequest
|
|
473
|
+
*/
|
|
432
474
|
export const QueryModuleAccountsRequest = {
|
|
433
475
|
typeUrl: "/cosmos.auth.v1beta1.QueryModuleAccountsRequest",
|
|
434
476
|
aminoType: "cosmos-sdk/QueryModuleAccountsRequest",
|
|
@@ -488,6 +530,12 @@ function createBaseQueryModuleAccountsResponse() {
|
|
|
488
530
|
accounts: []
|
|
489
531
|
};
|
|
490
532
|
}
|
|
533
|
+
/**
|
|
534
|
+
* QueryModuleAccountsResponse is the response type for the Query/ModuleAccounts RPC method.
|
|
535
|
+
* @name QueryModuleAccountsResponse
|
|
536
|
+
* @package cosmos.auth.v1beta1
|
|
537
|
+
* @see proto type: cosmos.auth.v1beta1.QueryModuleAccountsResponse
|
|
538
|
+
*/
|
|
491
539
|
export const QueryModuleAccountsResponse = {
|
|
492
540
|
typeUrl: "/cosmos.auth.v1beta1.QueryModuleAccountsResponse",
|
|
493
541
|
aminoType: "cosmos-sdk/QueryModuleAccountsResponse",
|
|
@@ -561,6 +609,12 @@ function createBaseQueryModuleAccountByNameRequest() {
|
|
|
561
609
|
name: ""
|
|
562
610
|
};
|
|
563
611
|
}
|
|
612
|
+
/**
|
|
613
|
+
* QueryModuleAccountByNameRequest is the request type for the Query/ModuleAccountByName RPC method.
|
|
614
|
+
* @name QueryModuleAccountByNameRequest
|
|
615
|
+
* @package cosmos.auth.v1beta1
|
|
616
|
+
* @see proto type: cosmos.auth.v1beta1.QueryModuleAccountByNameRequest
|
|
617
|
+
*/
|
|
564
618
|
export const QueryModuleAccountByNameRequest = {
|
|
565
619
|
typeUrl: "/cosmos.auth.v1beta1.QueryModuleAccountByNameRequest",
|
|
566
620
|
aminoType: "cosmos-sdk/QueryModuleAccountByNameRequest",
|
|
@@ -631,6 +685,12 @@ function createBaseQueryModuleAccountByNameResponse() {
|
|
|
631
685
|
account: undefined
|
|
632
686
|
};
|
|
633
687
|
}
|
|
688
|
+
/**
|
|
689
|
+
* QueryModuleAccountByNameResponse is the response type for the Query/ModuleAccountByName RPC method.
|
|
690
|
+
* @name QueryModuleAccountByNameResponse
|
|
691
|
+
* @package cosmos.auth.v1beta1
|
|
692
|
+
* @see proto type: cosmos.auth.v1beta1.QueryModuleAccountByNameResponse
|
|
693
|
+
*/
|
|
634
694
|
export const QueryModuleAccountByNameResponse = {
|
|
635
695
|
typeUrl: "/cosmos.auth.v1beta1.QueryModuleAccountByNameResponse",
|
|
636
696
|
aminoType: "cosmos-sdk/QueryModuleAccountByNameResponse",
|
|
@@ -699,6 +759,12 @@ export const QueryModuleAccountByNameResponse = {
|
|
|
699
759
|
function createBaseBech32PrefixRequest() {
|
|
700
760
|
return {};
|
|
701
761
|
}
|
|
762
|
+
/**
|
|
763
|
+
* Bech32PrefixRequest is the request type for Bech32Prefix rpc method.
|
|
764
|
+
* @name Bech32PrefixRequest
|
|
765
|
+
* @package cosmos.auth.v1beta1
|
|
766
|
+
* @see proto type: cosmos.auth.v1beta1.Bech32PrefixRequest
|
|
767
|
+
*/
|
|
702
768
|
export const Bech32PrefixRequest = {
|
|
703
769
|
typeUrl: "/cosmos.auth.v1beta1.Bech32PrefixRequest",
|
|
704
770
|
aminoType: "cosmos-sdk/Bech32PrefixRequest",
|
|
@@ -758,6 +824,12 @@ function createBaseBech32PrefixResponse() {
|
|
|
758
824
|
bech32Prefix: ""
|
|
759
825
|
};
|
|
760
826
|
}
|
|
827
|
+
/**
|
|
828
|
+
* Bech32PrefixResponse is the response type for Bech32Prefix rpc method.
|
|
829
|
+
* @name Bech32PrefixResponse
|
|
830
|
+
* @package cosmos.auth.v1beta1
|
|
831
|
+
* @see proto type: cosmos.auth.v1beta1.Bech32PrefixResponse
|
|
832
|
+
*/
|
|
761
833
|
export const Bech32PrefixResponse = {
|
|
762
834
|
typeUrl: "/cosmos.auth.v1beta1.Bech32PrefixResponse",
|
|
763
835
|
aminoType: "cosmos-sdk/Bech32PrefixResponse",
|
|
@@ -828,6 +900,12 @@ function createBaseAddressBytesToStringRequest() {
|
|
|
828
900
|
addressBytes: new Uint8Array()
|
|
829
901
|
};
|
|
830
902
|
}
|
|
903
|
+
/**
|
|
904
|
+
* AddressBytesToStringRequest is the request type for AddressString rpc method.
|
|
905
|
+
* @name AddressBytesToStringRequest
|
|
906
|
+
* @package cosmos.auth.v1beta1
|
|
907
|
+
* @see proto type: cosmos.auth.v1beta1.AddressBytesToStringRequest
|
|
908
|
+
*/
|
|
831
909
|
export const AddressBytesToStringRequest = {
|
|
832
910
|
typeUrl: "/cosmos.auth.v1beta1.AddressBytesToStringRequest",
|
|
833
911
|
aminoType: "cosmos-sdk/AddressBytesToStringRequest",
|
|
@@ -898,6 +976,12 @@ function createBaseAddressBytesToStringResponse() {
|
|
|
898
976
|
addressString: ""
|
|
899
977
|
};
|
|
900
978
|
}
|
|
979
|
+
/**
|
|
980
|
+
* AddressBytesToStringResponse is the response type for AddressString rpc method.
|
|
981
|
+
* @name AddressBytesToStringResponse
|
|
982
|
+
* @package cosmos.auth.v1beta1
|
|
983
|
+
* @see proto type: cosmos.auth.v1beta1.AddressBytesToStringResponse
|
|
984
|
+
*/
|
|
901
985
|
export const AddressBytesToStringResponse = {
|
|
902
986
|
typeUrl: "/cosmos.auth.v1beta1.AddressBytesToStringResponse",
|
|
903
987
|
aminoType: "cosmos-sdk/AddressBytesToStringResponse",
|
|
@@ -968,6 +1052,12 @@ function createBaseAddressStringToBytesRequest() {
|
|
|
968
1052
|
addressString: ""
|
|
969
1053
|
};
|
|
970
1054
|
}
|
|
1055
|
+
/**
|
|
1056
|
+
* AddressStringToBytesRequest is the request type for AccountBytes rpc method.
|
|
1057
|
+
* @name AddressStringToBytesRequest
|
|
1058
|
+
* @package cosmos.auth.v1beta1
|
|
1059
|
+
* @see proto type: cosmos.auth.v1beta1.AddressStringToBytesRequest
|
|
1060
|
+
*/
|
|
971
1061
|
export const AddressStringToBytesRequest = {
|
|
972
1062
|
typeUrl: "/cosmos.auth.v1beta1.AddressStringToBytesRequest",
|
|
973
1063
|
aminoType: "cosmos-sdk/AddressStringToBytesRequest",
|
|
@@ -1038,6 +1128,12 @@ function createBaseAddressStringToBytesResponse() {
|
|
|
1038
1128
|
addressBytes: new Uint8Array()
|
|
1039
1129
|
};
|
|
1040
1130
|
}
|
|
1131
|
+
/**
|
|
1132
|
+
* AddressStringToBytesResponse is the response type for AddressBytes rpc method.
|
|
1133
|
+
* @name AddressStringToBytesResponse
|
|
1134
|
+
* @package cosmos.auth.v1beta1
|
|
1135
|
+
* @see proto type: cosmos.auth.v1beta1.AddressStringToBytesResponse
|
|
1136
|
+
*/
|
|
1041
1137
|
export const AddressStringToBytesResponse = {
|
|
1042
1138
|
typeUrl: "/cosmos.auth.v1beta1.AddressStringToBytesResponse",
|
|
1043
1139
|
aminoType: "cosmos-sdk/AddressStringToBytesResponse",
|
|
@@ -1109,6 +1205,12 @@ function createBaseQueryAccountAddressByIDRequest() {
|
|
|
1109
1205
|
accountId: BigInt(0)
|
|
1110
1206
|
};
|
|
1111
1207
|
}
|
|
1208
|
+
/**
|
|
1209
|
+
* QueryAccountAddressByIDRequest is the request type for AccountAddressByID rpc method
|
|
1210
|
+
* @name QueryAccountAddressByIDRequest
|
|
1211
|
+
* @package cosmos.auth.v1beta1
|
|
1212
|
+
* @see proto type: cosmos.auth.v1beta1.QueryAccountAddressByIDRequest
|
|
1213
|
+
*/
|
|
1112
1214
|
export const QueryAccountAddressByIDRequest = {
|
|
1113
1215
|
typeUrl: "/cosmos.auth.v1beta1.QueryAccountAddressByIDRequest",
|
|
1114
1216
|
aminoType: "cosmos-sdk/QueryAccountAddressByIDRequest",
|
|
@@ -1190,6 +1292,12 @@ function createBaseQueryAccountAddressByIDResponse() {
|
|
|
1190
1292
|
accountAddress: ""
|
|
1191
1293
|
};
|
|
1192
1294
|
}
|
|
1295
|
+
/**
|
|
1296
|
+
* QueryAccountAddressByIDResponse is the response type for AccountAddressByID rpc method
|
|
1297
|
+
* @name QueryAccountAddressByIDResponse
|
|
1298
|
+
* @package cosmos.auth.v1beta1
|
|
1299
|
+
* @see proto type: cosmos.auth.v1beta1.QueryAccountAddressByIDResponse
|
|
1300
|
+
*/
|
|
1193
1301
|
export const QueryAccountAddressByIDResponse = {
|
|
1194
1302
|
typeUrl: "/cosmos.auth.v1beta1.QueryAccountAddressByIDResponse",
|
|
1195
1303
|
aminoType: "cosmos-sdk/QueryAccountAddressByIDResponse",
|
|
@@ -1260,6 +1368,12 @@ function createBaseQueryAccountInfoRequest() {
|
|
|
1260
1368
|
address: ""
|
|
1261
1369
|
};
|
|
1262
1370
|
}
|
|
1371
|
+
/**
|
|
1372
|
+
* QueryAccountInfoRequest is the Query/AccountInfo request type.
|
|
1373
|
+
* @name QueryAccountInfoRequest
|
|
1374
|
+
* @package cosmos.auth.v1beta1
|
|
1375
|
+
* @see proto type: cosmos.auth.v1beta1.QueryAccountInfoRequest
|
|
1376
|
+
*/
|
|
1263
1377
|
export const QueryAccountInfoRequest = {
|
|
1264
1378
|
typeUrl: "/cosmos.auth.v1beta1.QueryAccountInfoRequest",
|
|
1265
1379
|
aminoType: "cosmos-sdk/QueryAccountInfoRequest",
|
|
@@ -1330,6 +1444,12 @@ function createBaseQueryAccountInfoResponse() {
|
|
|
1330
1444
|
info: undefined
|
|
1331
1445
|
};
|
|
1332
1446
|
}
|
|
1447
|
+
/**
|
|
1448
|
+
* QueryAccountInfoResponse is the Query/AccountInfo response type.
|
|
1449
|
+
* @name QueryAccountInfoResponse
|
|
1450
|
+
* @package cosmos.auth.v1beta1
|
|
1451
|
+
* @see proto type: cosmos.auth.v1beta1.QueryAccountInfoResponse
|
|
1452
|
+
*/
|
|
1333
1453
|
export const QueryAccountInfoResponse = {
|
|
1334
1454
|
typeUrl: "/cosmos.auth.v1beta1.QueryAccountInfoResponse",
|
|
1335
1455
|
aminoType: "cosmos-sdk/QueryAccountInfoResponse",
|
|
@@ -8,9 +8,7 @@ export class LCDQueryClient {
|
|
|
8
8
|
/* Accounts returns all the existing accounts.
|
|
9
9
|
|
|
10
10
|
When called from another module, this query might consume a high amount of
|
|
11
|
-
gas if the pagination field is incorrectly set.
|
|
12
|
-
|
|
13
|
-
Since: cosmos-sdk 0.43 */
|
|
11
|
+
gas if the pagination field is incorrectly set. */
|
|
14
12
|
accounts = async (params = {
|
|
15
13
|
pagination: undefined
|
|
16
14
|
}) => {
|
|
@@ -28,9 +26,7 @@ export class LCDQueryClient {
|
|
|
28
26
|
const endpoint = `cosmos/auth/v1beta1/accounts/${params.address}`;
|
|
29
27
|
return await this.req.get(endpoint);
|
|
30
28
|
};
|
|
31
|
-
/* AccountAddressByID returns account address based on account number.
|
|
32
|
-
|
|
33
|
-
Since: cosmos-sdk 0.46.2 */
|
|
29
|
+
/* AccountAddressByID returns account address based on account number. */
|
|
34
30
|
accountAddressByID = async (params) => {
|
|
35
31
|
const options = {
|
|
36
32
|
params: {}
|
|
@@ -46,9 +42,7 @@ export class LCDQueryClient {
|
|
|
46
42
|
const endpoint = `cosmos/auth/v1beta1/params`;
|
|
47
43
|
return await this.req.get(endpoint);
|
|
48
44
|
};
|
|
49
|
-
/* ModuleAccounts returns all the existing module accounts.
|
|
50
|
-
|
|
51
|
-
Since: cosmos-sdk 0.46 */
|
|
45
|
+
/* ModuleAccounts returns all the existing module accounts. */
|
|
52
46
|
moduleAccounts = async (_params = {}) => {
|
|
53
47
|
const endpoint = `cosmos/auth/v1beta1/module_accounts`;
|
|
54
48
|
return await this.req.get(endpoint);
|
|
@@ -58,30 +52,22 @@ export class LCDQueryClient {
|
|
|
58
52
|
const endpoint = `cosmos/auth/v1beta1/module_accounts/${params.name}`;
|
|
59
53
|
return await this.req.get(endpoint);
|
|
60
54
|
};
|
|
61
|
-
/* Bech32Prefix queries bech32Prefix
|
|
62
|
-
|
|
63
|
-
Since: cosmos-sdk 0.46 */
|
|
55
|
+
/* Bech32Prefix queries bech32Prefix */
|
|
64
56
|
bech32Prefix = async (_params = {}) => {
|
|
65
57
|
const endpoint = `cosmos/auth/v1beta1/bech32`;
|
|
66
58
|
return await this.req.get(endpoint);
|
|
67
59
|
};
|
|
68
|
-
/* AddressBytesToString converts Account Address bytes to string
|
|
69
|
-
|
|
70
|
-
Since: cosmos-sdk 0.46 */
|
|
60
|
+
/* AddressBytesToString converts Account Address bytes to string */
|
|
71
61
|
addressBytesToString = async (params) => {
|
|
72
62
|
const endpoint = `cosmos/auth/v1beta1/bech32/${params.addressBytes}`;
|
|
73
63
|
return await this.req.get(endpoint);
|
|
74
64
|
};
|
|
75
|
-
/* AddressStringToBytes converts Address string to bytes
|
|
76
|
-
|
|
77
|
-
Since: cosmos-sdk 0.46 */
|
|
65
|
+
/* AddressStringToBytes converts Address string to bytes */
|
|
78
66
|
addressStringToBytes = async (params) => {
|
|
79
67
|
const endpoint = `cosmos/auth/v1beta1/bech32/${params.addressString}`;
|
|
80
68
|
return await this.req.get(endpoint);
|
|
81
69
|
};
|
|
82
|
-
/* AccountInfo queries account info which is common to all account types.
|
|
83
|
-
|
|
84
|
-
Since: cosmos-sdk 0.47 */
|
|
70
|
+
/* AccountInfo queries account info which is common to all account types. */
|
|
85
71
|
accountInfo = async (params) => {
|
|
86
72
|
const endpoint = `cosmos/auth/v1beta1/account_info/${params.address}`;
|
|
87
73
|
return await this.req.get(endpoint);
|
|
@@ -9,9 +9,7 @@ export class QueryClientImpl {
|
|
|
9
9
|
/* Accounts returns all the existing accounts.
|
|
10
10
|
|
|
11
11
|
When called from another module, this query might consume a high amount of
|
|
12
|
-
gas if the pagination field is incorrectly set.
|
|
13
|
-
|
|
14
|
-
Since: cosmos-sdk 0.43 */
|
|
12
|
+
gas if the pagination field is incorrectly set. */
|
|
15
13
|
accounts = async (request = {
|
|
16
14
|
pagination: undefined
|
|
17
15
|
}) => {
|
|
@@ -25,9 +23,7 @@ export class QueryClientImpl {
|
|
|
25
23
|
const promise = this.rpc.request("cosmos.auth.v1beta1.Query", "Account", data);
|
|
26
24
|
return promise.then(data => QueryAccountResponse.decode(new BinaryReader(data)));
|
|
27
25
|
};
|
|
28
|
-
/* AccountAddressByID returns account address based on account number.
|
|
29
|
-
|
|
30
|
-
Since: cosmos-sdk 0.46.2 */
|
|
26
|
+
/* AccountAddressByID returns account address based on account number. */
|
|
31
27
|
accountAddressByID = async (request) => {
|
|
32
28
|
const data = QueryAccountAddressByIDRequest.encode(request).finish();
|
|
33
29
|
const promise = this.rpc.request("cosmos.auth.v1beta1.Query", "AccountAddressByID", data);
|
|
@@ -39,9 +35,7 @@ export class QueryClientImpl {
|
|
|
39
35
|
const promise = this.rpc.request("cosmos.auth.v1beta1.Query", "Params", data);
|
|
40
36
|
return promise.then(data => QueryParamsResponse.decode(new BinaryReader(data)));
|
|
41
37
|
};
|
|
42
|
-
/* ModuleAccounts returns all the existing module accounts.
|
|
43
|
-
|
|
44
|
-
Since: cosmos-sdk 0.46 */
|
|
38
|
+
/* ModuleAccounts returns all the existing module accounts. */
|
|
45
39
|
moduleAccounts = async (request = {}) => {
|
|
46
40
|
const data = QueryModuleAccountsRequest.encode(request).finish();
|
|
47
41
|
const promise = this.rpc.request("cosmos.auth.v1beta1.Query", "ModuleAccounts", data);
|
|
@@ -53,33 +47,25 @@ export class QueryClientImpl {
|
|
|
53
47
|
const promise = this.rpc.request("cosmos.auth.v1beta1.Query", "ModuleAccountByName", data);
|
|
54
48
|
return promise.then(data => QueryModuleAccountByNameResponse.decode(new BinaryReader(data)));
|
|
55
49
|
};
|
|
56
|
-
/* Bech32Prefix queries bech32Prefix
|
|
57
|
-
|
|
58
|
-
Since: cosmos-sdk 0.46 */
|
|
50
|
+
/* Bech32Prefix queries bech32Prefix */
|
|
59
51
|
bech32Prefix = async (request = {}) => {
|
|
60
52
|
const data = Bech32PrefixRequest.encode(request).finish();
|
|
61
53
|
const promise = this.rpc.request("cosmos.auth.v1beta1.Query", "Bech32Prefix", data);
|
|
62
54
|
return promise.then(data => Bech32PrefixResponse.decode(new BinaryReader(data)));
|
|
63
55
|
};
|
|
64
|
-
/* AddressBytesToString converts Account Address bytes to string
|
|
65
|
-
|
|
66
|
-
Since: cosmos-sdk 0.46 */
|
|
56
|
+
/* AddressBytesToString converts Account Address bytes to string */
|
|
67
57
|
addressBytesToString = async (request) => {
|
|
68
58
|
const data = AddressBytesToStringRequest.encode(request).finish();
|
|
69
59
|
const promise = this.rpc.request("cosmos.auth.v1beta1.Query", "AddressBytesToString", data);
|
|
70
60
|
return promise.then(data => AddressBytesToStringResponse.decode(new BinaryReader(data)));
|
|
71
61
|
};
|
|
72
|
-
/* AddressStringToBytes converts Address string to bytes
|
|
73
|
-
|
|
74
|
-
Since: cosmos-sdk 0.46 */
|
|
62
|
+
/* AddressStringToBytes converts Address string to bytes */
|
|
75
63
|
addressStringToBytes = async (request) => {
|
|
76
64
|
const data = AddressStringToBytesRequest.encode(request).finish();
|
|
77
65
|
const promise = this.rpc.request("cosmos.auth.v1beta1.Query", "AddressStringToBytes", data);
|
|
78
66
|
return promise.then(data => AddressStringToBytesResponse.decode(new BinaryReader(data)));
|
|
79
67
|
};
|
|
80
|
-
/* AccountInfo queries account info which is common to all account types.
|
|
81
|
-
|
|
82
|
-
Since: cosmos-sdk 0.47 */
|
|
68
|
+
/* AccountInfo queries account info which is common to all account types. */
|
|
83
69
|
accountInfo = async (request) => {
|
|
84
70
|
const data = QueryAccountInfoRequest.encode(request).finish();
|
|
85
71
|
const promise = this.rpc.request("cosmos.auth.v1beta1.Query", "AccountInfo", data);
|
|
@@ -7,6 +7,12 @@ function createBaseMsgUpdateParams() {
|
|
|
7
7
|
params: Params.fromPartial({})
|
|
8
8
|
};
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
12
|
+
* @name MsgUpdateParams
|
|
13
|
+
* @package cosmos.auth.v1beta1
|
|
14
|
+
* @see proto type: cosmos.auth.v1beta1.MsgUpdateParams
|
|
15
|
+
*/
|
|
10
16
|
export const MsgUpdateParams = {
|
|
11
17
|
typeUrl: "/cosmos.auth.v1beta1.MsgUpdateParams",
|
|
12
18
|
aminoType: "cosmos-sdk/x/auth/MsgUpdateParams",
|
|
@@ -86,6 +92,13 @@ export const MsgUpdateParams = {
|
|
|
86
92
|
function createBaseMsgUpdateParamsResponse() {
|
|
87
93
|
return {};
|
|
88
94
|
}
|
|
95
|
+
/**
|
|
96
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
97
|
+
* MsgUpdateParams message.
|
|
98
|
+
* @name MsgUpdateParamsResponse
|
|
99
|
+
* @package cosmos.auth.v1beta1
|
|
100
|
+
* @see proto type: cosmos.auth.v1beta1.MsgUpdateParamsResponse
|
|
101
|
+
*/
|
|
89
102
|
export const MsgUpdateParamsResponse = {
|
|
90
103
|
typeUrl: "/cosmos.auth.v1beta1.MsgUpdateParamsResponse",
|
|
91
104
|
aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
|
|
@@ -6,9 +6,7 @@ export class MsgClientImpl {
|
|
|
6
6
|
this.rpc = rpc;
|
|
7
7
|
}
|
|
8
8
|
/* UpdateParams defines a (governance) operation for updating the x/auth module
|
|
9
|
-
parameters. The authority defaults to the x/gov module account.
|
|
10
|
-
|
|
11
|
-
Since: cosmos-sdk 0.47 */
|
|
9
|
+
parameters. The authority defaults to the x/gov module account. */
|
|
12
10
|
updateParams = async (request) => {
|
|
13
11
|
const data = MsgUpdateParams.encode(request).finish();
|
|
14
12
|
const promise = this.rpc.request("cosmos.auth.v1beta1.Msg", "UpdateParams", data);
|
|
@@ -3,6 +3,12 @@ import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
|
3
3
|
function createBaseModule() {
|
|
4
4
|
return {};
|
|
5
5
|
}
|
|
6
|
+
/**
|
|
7
|
+
* Module is the config object of the authz module.
|
|
8
|
+
* @name Module
|
|
9
|
+
* @package cosmos.authz.module.v1
|
|
10
|
+
* @see proto type: cosmos.authz.module.v1.Module
|
|
11
|
+
*/
|
|
6
12
|
export const Module = {
|
|
7
13
|
typeUrl: "/cosmos.authz.module.v1.Module",
|
|
8
14
|
aminoType: "cosmos-sdk/Module",
|
|
@@ -11,6 +11,13 @@ function createBaseGenericAuthorization() {
|
|
|
11
11
|
msg: ""
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* GenericAuthorization gives the grantee unrestricted permissions to execute
|
|
16
|
+
* the provided method on behalf of the granter's account.
|
|
17
|
+
* @name GenericAuthorization
|
|
18
|
+
* @package cosmos.authz.v1beta1
|
|
19
|
+
* @see proto type: cosmos.authz.v1beta1.GenericAuthorization
|
|
20
|
+
*/
|
|
14
21
|
export const GenericAuthorization = {
|
|
15
22
|
typeUrl: "/cosmos.authz.v1beta1.GenericAuthorization",
|
|
16
23
|
aminoType: "cosmos-sdk/GenericAuthorization",
|
|
@@ -82,6 +89,13 @@ function createBaseGrant() {
|
|
|
82
89
|
expiration: undefined
|
|
83
90
|
};
|
|
84
91
|
}
|
|
92
|
+
/**
|
|
93
|
+
* Grant gives permissions to execute
|
|
94
|
+
* the provide method with expiration time.
|
|
95
|
+
* @name Grant
|
|
96
|
+
* @package cosmos.authz.v1beta1
|
|
97
|
+
* @see proto type: cosmos.authz.v1beta1.Grant
|
|
98
|
+
*/
|
|
85
99
|
export const Grant = {
|
|
86
100
|
typeUrl: "/cosmos.authz.v1beta1.Grant",
|
|
87
101
|
aminoType: "cosmos-sdk/Grant",
|
|
@@ -166,6 +180,13 @@ function createBaseGrantAuthorization() {
|
|
|
166
180
|
expiration: undefined
|
|
167
181
|
};
|
|
168
182
|
}
|
|
183
|
+
/**
|
|
184
|
+
* GrantAuthorization extends a grant with both the addresses of the grantee and granter.
|
|
185
|
+
* It is used in genesis.proto and query.proto
|
|
186
|
+
* @name GrantAuthorization
|
|
187
|
+
* @package cosmos.authz.v1beta1
|
|
188
|
+
* @see proto type: cosmos.authz.v1beta1.GrantAuthorization
|
|
189
|
+
*/
|
|
169
190
|
export const GrantAuthorization = {
|
|
170
191
|
typeUrl: "/cosmos.authz.v1beta1.GrantAuthorization",
|
|
171
192
|
aminoType: "cosmos-sdk/GrantAuthorization",
|
|
@@ -269,6 +290,12 @@ function createBaseGrantQueueItem() {
|
|
|
269
290
|
msgTypeUrls: []
|
|
270
291
|
};
|
|
271
292
|
}
|
|
293
|
+
/**
|
|
294
|
+
* GrantQueueItem contains the list of TypeURL of a sdk.Msg.
|
|
295
|
+
* @name GrantQueueItem
|
|
296
|
+
* @package cosmos.authz.v1beta1
|
|
297
|
+
* @see proto type: cosmos.authz.v1beta1.GrantQueueItem
|
|
298
|
+
*/
|
|
272
299
|
export const GrantQueueItem = {
|
|
273
300
|
typeUrl: "/cosmos.authz.v1beta1.GrantQueueItem",
|
|
274
301
|
aminoType: "cosmos-sdk/GrantQueueItem",
|
|
@@ -7,6 +7,12 @@ function createBaseEventGrant() {
|
|
|
7
7
|
grantee: ""
|
|
8
8
|
};
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* EventGrant is emitted on Msg/Grant
|
|
12
|
+
* @name EventGrant
|
|
13
|
+
* @package cosmos.authz.v1beta1
|
|
14
|
+
* @see proto type: cosmos.authz.v1beta1.EventGrant
|
|
15
|
+
*/
|
|
10
16
|
export const EventGrant = {
|
|
11
17
|
typeUrl: "/cosmos.authz.v1beta1.EventGrant",
|
|
12
18
|
aminoType: "cosmos-sdk/EventGrant",
|
|
@@ -101,6 +107,12 @@ function createBaseEventRevoke() {
|
|
|
101
107
|
grantee: ""
|
|
102
108
|
};
|
|
103
109
|
}
|
|
110
|
+
/**
|
|
111
|
+
* EventRevoke is emitted on Msg/Revoke
|
|
112
|
+
* @name EventRevoke
|
|
113
|
+
* @package cosmos.authz.v1beta1
|
|
114
|
+
* @see proto type: cosmos.authz.v1beta1.EventRevoke
|
|
115
|
+
*/
|
|
104
116
|
export const EventRevoke = {
|
|
105
117
|
typeUrl: "/cosmos.authz.v1beta1.EventRevoke",
|
|
106
118
|
aminoType: "cosmos-sdk/EventRevoke",
|
|
@@ -6,6 +6,12 @@ function createBaseGenesisState() {
|
|
|
6
6
|
authorization: []
|
|
7
7
|
};
|
|
8
8
|
}
|
|
9
|
+
/**
|
|
10
|
+
* GenesisState defines the authz module's genesis state.
|
|
11
|
+
* @name GenesisState
|
|
12
|
+
* @package cosmos.authz.v1beta1
|
|
13
|
+
* @see proto type: cosmos.authz.v1beta1.GenesisState
|
|
14
|
+
*/
|
|
9
15
|
export const GenesisState = {
|
|
10
16
|
typeUrl: "/cosmos.authz.v1beta1.GenesisState",
|
|
11
17
|
aminoType: "cosmos-sdk/GenesisState",
|
|
@@ -10,6 +10,12 @@ function createBaseQueryGrantsRequest() {
|
|
|
10
10
|
pagination: undefined
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* QueryGrantsRequest is the request type for the Query/Grants RPC method.
|
|
15
|
+
* @name QueryGrantsRequest
|
|
16
|
+
* @package cosmos.authz.v1beta1
|
|
17
|
+
* @see proto type: cosmos.authz.v1beta1.QueryGrantsRequest
|
|
18
|
+
*/
|
|
13
19
|
export const QueryGrantsRequest = {
|
|
14
20
|
typeUrl: "/cosmos.authz.v1beta1.QueryGrantsRequest",
|
|
15
21
|
aminoType: "cosmos-sdk/QueryGrantsRequest",
|
|
@@ -114,6 +120,12 @@ function createBaseQueryGrantsResponse() {
|
|
|
114
120
|
pagination: undefined
|
|
115
121
|
};
|
|
116
122
|
}
|
|
123
|
+
/**
|
|
124
|
+
* QueryGrantsResponse is the response type for the Query/Authorizations RPC method.
|
|
125
|
+
* @name QueryGrantsResponse
|
|
126
|
+
* @package cosmos.authz.v1beta1
|
|
127
|
+
* @see proto type: cosmos.authz.v1beta1.QueryGrantsResponse
|
|
128
|
+
*/
|
|
117
129
|
export const QueryGrantsResponse = {
|
|
118
130
|
typeUrl: "/cosmos.authz.v1beta1.QueryGrantsResponse",
|
|
119
131
|
aminoType: "cosmos-sdk/QueryGrantsResponse",
|
|
@@ -199,6 +211,12 @@ function createBaseQueryGranterGrantsRequest() {
|
|
|
199
211
|
pagination: undefined
|
|
200
212
|
};
|
|
201
213
|
}
|
|
214
|
+
/**
|
|
215
|
+
* QueryGranterGrantsRequest is the request type for the Query/GranterGrants RPC method.
|
|
216
|
+
* @name QueryGranterGrantsRequest
|
|
217
|
+
* @package cosmos.authz.v1beta1
|
|
218
|
+
* @see proto type: cosmos.authz.v1beta1.QueryGranterGrantsRequest
|
|
219
|
+
*/
|
|
202
220
|
export const QueryGranterGrantsRequest = {
|
|
203
221
|
typeUrl: "/cosmos.authz.v1beta1.QueryGranterGrantsRequest",
|
|
204
222
|
aminoType: "cosmos-sdk/QueryGranterGrantsRequest",
|
|
@@ -281,6 +299,12 @@ function createBaseQueryGranterGrantsResponse() {
|
|
|
281
299
|
pagination: undefined
|
|
282
300
|
};
|
|
283
301
|
}
|
|
302
|
+
/**
|
|
303
|
+
* QueryGranterGrantsResponse is the response type for the Query/GranterGrants RPC method.
|
|
304
|
+
* @name QueryGranterGrantsResponse
|
|
305
|
+
* @package cosmos.authz.v1beta1
|
|
306
|
+
* @see proto type: cosmos.authz.v1beta1.QueryGranterGrantsResponse
|
|
307
|
+
*/
|
|
284
308
|
export const QueryGranterGrantsResponse = {
|
|
285
309
|
typeUrl: "/cosmos.authz.v1beta1.QueryGranterGrantsResponse",
|
|
286
310
|
aminoType: "cosmos-sdk/QueryGranterGrantsResponse",
|
|
@@ -366,6 +390,12 @@ function createBaseQueryGranteeGrantsRequest() {
|
|
|
366
390
|
pagination: undefined
|
|
367
391
|
};
|
|
368
392
|
}
|
|
393
|
+
/**
|
|
394
|
+
* QueryGranteeGrantsRequest is the request type for the Query/GranteeGrants RPC method.
|
|
395
|
+
* @name QueryGranteeGrantsRequest
|
|
396
|
+
* @package cosmos.authz.v1beta1
|
|
397
|
+
* @see proto type: cosmos.authz.v1beta1.QueryGranteeGrantsRequest
|
|
398
|
+
*/
|
|
369
399
|
export const QueryGranteeGrantsRequest = {
|
|
370
400
|
typeUrl: "/cosmos.authz.v1beta1.QueryGranteeGrantsRequest",
|
|
371
401
|
aminoType: "cosmos-sdk/QueryGranteeGrantsRequest",
|
|
@@ -448,6 +478,12 @@ function createBaseQueryGranteeGrantsResponse() {
|
|
|
448
478
|
pagination: undefined
|
|
449
479
|
};
|
|
450
480
|
}
|
|
481
|
+
/**
|
|
482
|
+
* QueryGranteeGrantsResponse is the response type for the Query/GranteeGrants RPC method.
|
|
483
|
+
* @name QueryGranteeGrantsResponse
|
|
484
|
+
* @package cosmos.authz.v1beta1
|
|
485
|
+
* @see proto type: cosmos.authz.v1beta1.QueryGranteeGrantsResponse
|
|
486
|
+
*/
|
|
451
487
|
export const QueryGranteeGrantsResponse = {
|
|
452
488
|
typeUrl: "/cosmos.authz.v1beta1.QueryGranteeGrantsResponse",
|
|
453
489
|
aminoType: "cosmos-sdk/QueryGranteeGrantsResponse",
|
|
@@ -25,9 +25,7 @@ export class LCDQueryClient {
|
|
|
25
25
|
const endpoint = `cosmos/authz/v1beta1/grants`;
|
|
26
26
|
return await this.req.get(endpoint, options);
|
|
27
27
|
};
|
|
28
|
-
/* GranterGrants returns list of `GrantAuthorization`, granted by granter.
|
|
29
|
-
|
|
30
|
-
Since: cosmos-sdk 0.46 */
|
|
28
|
+
/* GranterGrants returns list of `GrantAuthorization`, granted by granter. */
|
|
31
29
|
granterGrants = async (params) => {
|
|
32
30
|
const options = {
|
|
33
31
|
params: {}
|
|
@@ -38,9 +36,7 @@ export class LCDQueryClient {
|
|
|
38
36
|
const endpoint = `cosmos/authz/v1beta1/grants/granter/${params.granter}`;
|
|
39
37
|
return await this.req.get(endpoint, options);
|
|
40
38
|
};
|
|
41
|
-
/* GranteeGrants returns a list of `GrantAuthorization` by grantee.
|
|
42
|
-
|
|
43
|
-
Since: cosmos-sdk 0.46 */
|
|
39
|
+
/* GranteeGrants returns a list of `GrantAuthorization` by grantee. */
|
|
44
40
|
granteeGrants = async (params) => {
|
|
45
41
|
const options = {
|
|
46
42
|
params: {}
|
|
@@ -12,17 +12,13 @@ export class QueryClientImpl {
|
|
|
12
12
|
const promise = this.rpc.request("cosmos.authz.v1beta1.Query", "Grants", data);
|
|
13
13
|
return promise.then(data => QueryGrantsResponse.decode(new BinaryReader(data)));
|
|
14
14
|
};
|
|
15
|
-
/* GranterGrants returns list of `GrantAuthorization`, granted by granter.
|
|
16
|
-
|
|
17
|
-
Since: cosmos-sdk 0.46 */
|
|
15
|
+
/* GranterGrants returns list of `GrantAuthorization`, granted by granter. */
|
|
18
16
|
granterGrants = async (request) => {
|
|
19
17
|
const data = QueryGranterGrantsRequest.encode(request).finish();
|
|
20
18
|
const promise = this.rpc.request("cosmos.authz.v1beta1.Query", "GranterGrants", data);
|
|
21
19
|
return promise.then(data => QueryGranterGrantsResponse.decode(new BinaryReader(data)));
|
|
22
20
|
};
|
|
23
|
-
/* GranteeGrants returns a list of `GrantAuthorization` by grantee.
|
|
24
|
-
|
|
25
|
-
Since: cosmos-sdk 0.46 */
|
|
21
|
+
/* GranteeGrants returns a list of `GrantAuthorization` by grantee. */
|
|
26
22
|
granteeGrants = async (request) => {
|
|
27
23
|
const data = QueryGranteeGrantsRequest.encode(request).finish();
|
|
28
24
|
const promise = this.rpc.request("cosmos.authz.v1beta1.Query", "GranteeGrants", data);
|