@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
|
@@ -0,0 +1,906 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.QueryAllWhitelistedAddressesResponse = exports.QueryAllWhitelistedAddressesRequest = exports.QueryAllBlacklistedDenomsResponse = exports.QueryAllBlacklistedDenomsRequest = exports.QueryRateLimitsByChannelOrClientIDResponse = exports.QueryRateLimitsByChannelOrClientIDRequest = exports.QueryRateLimitsByChainIDResponse = exports.QueryRateLimitsByChainIDRequest = exports.QueryRateLimitResponse = exports.QueryRateLimitRequest = exports.QueryAllRateLimitsResponse = exports.QueryAllRateLimitsRequest = void 0;
|
|
4
|
+
//@ts-nocheck
|
|
5
|
+
const rate_limiting_1 = require("./rate_limiting");
|
|
6
|
+
const binary_1 = require("../../../../binary");
|
|
7
|
+
function createBaseQueryAllRateLimitsRequest() {
|
|
8
|
+
return {};
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Queries all rate limits
|
|
12
|
+
* @name QueryAllRateLimitsRequest
|
|
13
|
+
* @package ibc.applications.rate_limiting.v1
|
|
14
|
+
* @see proto type: ibc.applications.rate_limiting.v1.QueryAllRateLimitsRequest
|
|
15
|
+
*/
|
|
16
|
+
exports.QueryAllRateLimitsRequest = {
|
|
17
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllRateLimitsRequest",
|
|
18
|
+
aminoType: "cosmos-sdk/QueryAllRateLimitsRequest",
|
|
19
|
+
encode(_, writer = binary_1.BinaryWriter.create()) {
|
|
20
|
+
return writer;
|
|
21
|
+
},
|
|
22
|
+
decode(input, length) {
|
|
23
|
+
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.BinaryReader(input);
|
|
24
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
25
|
+
const message = createBaseQueryAllRateLimitsRequest();
|
|
26
|
+
while (reader.pos < end) {
|
|
27
|
+
const tag = reader.uint32();
|
|
28
|
+
switch (tag >>> 3) {
|
|
29
|
+
default:
|
|
30
|
+
reader.skipType(tag & 7);
|
|
31
|
+
break;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
return message;
|
|
35
|
+
},
|
|
36
|
+
fromPartial(_) {
|
|
37
|
+
const message = createBaseQueryAllRateLimitsRequest();
|
|
38
|
+
return message;
|
|
39
|
+
},
|
|
40
|
+
fromAmino(_) {
|
|
41
|
+
const message = createBaseQueryAllRateLimitsRequest();
|
|
42
|
+
return message;
|
|
43
|
+
},
|
|
44
|
+
toAmino(_) {
|
|
45
|
+
const obj = {};
|
|
46
|
+
return obj;
|
|
47
|
+
},
|
|
48
|
+
fromAminoMsg(object) {
|
|
49
|
+
return exports.QueryAllRateLimitsRequest.fromAmino(object.value);
|
|
50
|
+
},
|
|
51
|
+
toAminoMsg(message) {
|
|
52
|
+
return {
|
|
53
|
+
type: "cosmos-sdk/QueryAllRateLimitsRequest",
|
|
54
|
+
value: exports.QueryAllRateLimitsRequest.toAmino(message)
|
|
55
|
+
};
|
|
56
|
+
},
|
|
57
|
+
fromProtoMsg(message) {
|
|
58
|
+
return exports.QueryAllRateLimitsRequest.decode(message.value);
|
|
59
|
+
},
|
|
60
|
+
toProto(message) {
|
|
61
|
+
return exports.QueryAllRateLimitsRequest.encode(message).finish();
|
|
62
|
+
},
|
|
63
|
+
toProtoMsg(message) {
|
|
64
|
+
return {
|
|
65
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllRateLimitsRequest",
|
|
66
|
+
value: exports.QueryAllRateLimitsRequest.encode(message).finish()
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
};
|
|
70
|
+
function createBaseQueryAllRateLimitsResponse() {
|
|
71
|
+
return {
|
|
72
|
+
rateLimits: []
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* QueryAllRateLimitsResponse returns all the rate limits stored on the chain.
|
|
77
|
+
* @name QueryAllRateLimitsResponse
|
|
78
|
+
* @package ibc.applications.rate_limiting.v1
|
|
79
|
+
* @see proto type: ibc.applications.rate_limiting.v1.QueryAllRateLimitsResponse
|
|
80
|
+
*/
|
|
81
|
+
exports.QueryAllRateLimitsResponse = {
|
|
82
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllRateLimitsResponse",
|
|
83
|
+
aminoType: "cosmos-sdk/QueryAllRateLimitsResponse",
|
|
84
|
+
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
85
|
+
for (const v of message.rateLimits) {
|
|
86
|
+
rate_limiting_1.RateLimit.encode(v, writer.uint32(10).fork()).ldelim();
|
|
87
|
+
}
|
|
88
|
+
return writer;
|
|
89
|
+
},
|
|
90
|
+
decode(input, length) {
|
|
91
|
+
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.BinaryReader(input);
|
|
92
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
93
|
+
const message = createBaseQueryAllRateLimitsResponse();
|
|
94
|
+
while (reader.pos < end) {
|
|
95
|
+
const tag = reader.uint32();
|
|
96
|
+
switch (tag >>> 3) {
|
|
97
|
+
case 1:
|
|
98
|
+
message.rateLimits.push(rate_limiting_1.RateLimit.decode(reader, reader.uint32()));
|
|
99
|
+
break;
|
|
100
|
+
default:
|
|
101
|
+
reader.skipType(tag & 7);
|
|
102
|
+
break;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
return message;
|
|
106
|
+
},
|
|
107
|
+
fromPartial(object) {
|
|
108
|
+
const message = createBaseQueryAllRateLimitsResponse();
|
|
109
|
+
message.rateLimits = object.rateLimits?.map(e => rate_limiting_1.RateLimit.fromPartial(e)) || [];
|
|
110
|
+
return message;
|
|
111
|
+
},
|
|
112
|
+
fromAmino(object) {
|
|
113
|
+
const message = createBaseQueryAllRateLimitsResponse();
|
|
114
|
+
message.rateLimits = object.rate_limits?.map(e => rate_limiting_1.RateLimit.fromAmino(e)) || [];
|
|
115
|
+
return message;
|
|
116
|
+
},
|
|
117
|
+
toAmino(message) {
|
|
118
|
+
const obj = {};
|
|
119
|
+
if (message.rateLimits) {
|
|
120
|
+
obj.rate_limits = message.rateLimits.map(e => e ? rate_limiting_1.RateLimit.toAmino(e) : undefined);
|
|
121
|
+
}
|
|
122
|
+
else {
|
|
123
|
+
obj.rate_limits = message.rateLimits;
|
|
124
|
+
}
|
|
125
|
+
return obj;
|
|
126
|
+
},
|
|
127
|
+
fromAminoMsg(object) {
|
|
128
|
+
return exports.QueryAllRateLimitsResponse.fromAmino(object.value);
|
|
129
|
+
},
|
|
130
|
+
toAminoMsg(message) {
|
|
131
|
+
return {
|
|
132
|
+
type: "cosmos-sdk/QueryAllRateLimitsResponse",
|
|
133
|
+
value: exports.QueryAllRateLimitsResponse.toAmino(message)
|
|
134
|
+
};
|
|
135
|
+
},
|
|
136
|
+
fromProtoMsg(message) {
|
|
137
|
+
return exports.QueryAllRateLimitsResponse.decode(message.value);
|
|
138
|
+
},
|
|
139
|
+
toProto(message) {
|
|
140
|
+
return exports.QueryAllRateLimitsResponse.encode(message).finish();
|
|
141
|
+
},
|
|
142
|
+
toProtoMsg(message) {
|
|
143
|
+
return {
|
|
144
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllRateLimitsResponse",
|
|
145
|
+
value: exports.QueryAllRateLimitsResponse.encode(message).finish()
|
|
146
|
+
};
|
|
147
|
+
}
|
|
148
|
+
};
|
|
149
|
+
function createBaseQueryRateLimitRequest() {
|
|
150
|
+
return {
|
|
151
|
+
denom: "",
|
|
152
|
+
channelOrClientId: ""
|
|
153
|
+
};
|
|
154
|
+
}
|
|
155
|
+
/**
|
|
156
|
+
* Queries a specific rate limit by channel ID and denom
|
|
157
|
+
* @name QueryRateLimitRequest
|
|
158
|
+
* @package ibc.applications.rate_limiting.v1
|
|
159
|
+
* @see proto type: ibc.applications.rate_limiting.v1.QueryRateLimitRequest
|
|
160
|
+
*/
|
|
161
|
+
exports.QueryRateLimitRequest = {
|
|
162
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitRequest",
|
|
163
|
+
aminoType: "cosmos-sdk/QueryRateLimitRequest",
|
|
164
|
+
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
165
|
+
if (message.denom !== "") {
|
|
166
|
+
writer.uint32(10).string(message.denom);
|
|
167
|
+
}
|
|
168
|
+
if (message.channelOrClientId !== "") {
|
|
169
|
+
writer.uint32(18).string(message.channelOrClientId);
|
|
170
|
+
}
|
|
171
|
+
return writer;
|
|
172
|
+
},
|
|
173
|
+
decode(input, length) {
|
|
174
|
+
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.BinaryReader(input);
|
|
175
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
176
|
+
const message = createBaseQueryRateLimitRequest();
|
|
177
|
+
while (reader.pos < end) {
|
|
178
|
+
const tag = reader.uint32();
|
|
179
|
+
switch (tag >>> 3) {
|
|
180
|
+
case 1:
|
|
181
|
+
message.denom = reader.string();
|
|
182
|
+
break;
|
|
183
|
+
case 2:
|
|
184
|
+
message.channelOrClientId = reader.string();
|
|
185
|
+
break;
|
|
186
|
+
default:
|
|
187
|
+
reader.skipType(tag & 7);
|
|
188
|
+
break;
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
return message;
|
|
192
|
+
},
|
|
193
|
+
fromPartial(object) {
|
|
194
|
+
const message = createBaseQueryRateLimitRequest();
|
|
195
|
+
message.denom = object.denom ?? "";
|
|
196
|
+
message.channelOrClientId = object.channelOrClientId ?? "";
|
|
197
|
+
return message;
|
|
198
|
+
},
|
|
199
|
+
fromAmino(object) {
|
|
200
|
+
const message = createBaseQueryRateLimitRequest();
|
|
201
|
+
if (object.denom !== undefined && object.denom !== null) {
|
|
202
|
+
message.denom = object.denom;
|
|
203
|
+
}
|
|
204
|
+
if (object.channel_or_client_id !== undefined && object.channel_or_client_id !== null) {
|
|
205
|
+
message.channelOrClientId = object.channel_or_client_id;
|
|
206
|
+
}
|
|
207
|
+
return message;
|
|
208
|
+
},
|
|
209
|
+
toAmino(message) {
|
|
210
|
+
const obj = {};
|
|
211
|
+
obj.denom = message.denom === "" ? undefined : message.denom;
|
|
212
|
+
obj.channel_or_client_id = message.channelOrClientId === "" ? undefined : message.channelOrClientId;
|
|
213
|
+
return obj;
|
|
214
|
+
},
|
|
215
|
+
fromAminoMsg(object) {
|
|
216
|
+
return exports.QueryRateLimitRequest.fromAmino(object.value);
|
|
217
|
+
},
|
|
218
|
+
toAminoMsg(message) {
|
|
219
|
+
return {
|
|
220
|
+
type: "cosmos-sdk/QueryRateLimitRequest",
|
|
221
|
+
value: exports.QueryRateLimitRequest.toAmino(message)
|
|
222
|
+
};
|
|
223
|
+
},
|
|
224
|
+
fromProtoMsg(message) {
|
|
225
|
+
return exports.QueryRateLimitRequest.decode(message.value);
|
|
226
|
+
},
|
|
227
|
+
toProto(message) {
|
|
228
|
+
return exports.QueryRateLimitRequest.encode(message).finish();
|
|
229
|
+
},
|
|
230
|
+
toProtoMsg(message) {
|
|
231
|
+
return {
|
|
232
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitRequest",
|
|
233
|
+
value: exports.QueryRateLimitRequest.encode(message).finish()
|
|
234
|
+
};
|
|
235
|
+
}
|
|
236
|
+
};
|
|
237
|
+
function createBaseQueryRateLimitResponse() {
|
|
238
|
+
return {
|
|
239
|
+
rateLimit: undefined
|
|
240
|
+
};
|
|
241
|
+
}
|
|
242
|
+
/**
|
|
243
|
+
* QueryRateLimitResponse returns a rate limit by denom and channel_or_client_id combination.
|
|
244
|
+
* @name QueryRateLimitResponse
|
|
245
|
+
* @package ibc.applications.rate_limiting.v1
|
|
246
|
+
* @see proto type: ibc.applications.rate_limiting.v1.QueryRateLimitResponse
|
|
247
|
+
*/
|
|
248
|
+
exports.QueryRateLimitResponse = {
|
|
249
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitResponse",
|
|
250
|
+
aminoType: "cosmos-sdk/QueryRateLimitResponse",
|
|
251
|
+
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
252
|
+
if (message.rateLimit !== undefined) {
|
|
253
|
+
rate_limiting_1.RateLimit.encode(message.rateLimit, writer.uint32(10).fork()).ldelim();
|
|
254
|
+
}
|
|
255
|
+
return writer;
|
|
256
|
+
},
|
|
257
|
+
decode(input, length) {
|
|
258
|
+
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.BinaryReader(input);
|
|
259
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
260
|
+
const message = createBaseQueryRateLimitResponse();
|
|
261
|
+
while (reader.pos < end) {
|
|
262
|
+
const tag = reader.uint32();
|
|
263
|
+
switch (tag >>> 3) {
|
|
264
|
+
case 1:
|
|
265
|
+
message.rateLimit = rate_limiting_1.RateLimit.decode(reader, reader.uint32());
|
|
266
|
+
break;
|
|
267
|
+
default:
|
|
268
|
+
reader.skipType(tag & 7);
|
|
269
|
+
break;
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
return message;
|
|
273
|
+
},
|
|
274
|
+
fromPartial(object) {
|
|
275
|
+
const message = createBaseQueryRateLimitResponse();
|
|
276
|
+
message.rateLimit = object.rateLimit !== undefined && object.rateLimit !== null ? rate_limiting_1.RateLimit.fromPartial(object.rateLimit) : undefined;
|
|
277
|
+
return message;
|
|
278
|
+
},
|
|
279
|
+
fromAmino(object) {
|
|
280
|
+
const message = createBaseQueryRateLimitResponse();
|
|
281
|
+
if (object.rate_limit !== undefined && object.rate_limit !== null) {
|
|
282
|
+
message.rateLimit = rate_limiting_1.RateLimit.fromAmino(object.rate_limit);
|
|
283
|
+
}
|
|
284
|
+
return message;
|
|
285
|
+
},
|
|
286
|
+
toAmino(message) {
|
|
287
|
+
const obj = {};
|
|
288
|
+
obj.rate_limit = message.rateLimit ? rate_limiting_1.RateLimit.toAmino(message.rateLimit) : undefined;
|
|
289
|
+
return obj;
|
|
290
|
+
},
|
|
291
|
+
fromAminoMsg(object) {
|
|
292
|
+
return exports.QueryRateLimitResponse.fromAmino(object.value);
|
|
293
|
+
},
|
|
294
|
+
toAminoMsg(message) {
|
|
295
|
+
return {
|
|
296
|
+
type: "cosmos-sdk/QueryRateLimitResponse",
|
|
297
|
+
value: exports.QueryRateLimitResponse.toAmino(message)
|
|
298
|
+
};
|
|
299
|
+
},
|
|
300
|
+
fromProtoMsg(message) {
|
|
301
|
+
return exports.QueryRateLimitResponse.decode(message.value);
|
|
302
|
+
},
|
|
303
|
+
toProto(message) {
|
|
304
|
+
return exports.QueryRateLimitResponse.encode(message).finish();
|
|
305
|
+
},
|
|
306
|
+
toProtoMsg(message) {
|
|
307
|
+
return {
|
|
308
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitResponse",
|
|
309
|
+
value: exports.QueryRateLimitResponse.encode(message).finish()
|
|
310
|
+
};
|
|
311
|
+
}
|
|
312
|
+
};
|
|
313
|
+
function createBaseQueryRateLimitsByChainIDRequest() {
|
|
314
|
+
return {
|
|
315
|
+
chainId: ""
|
|
316
|
+
};
|
|
317
|
+
}
|
|
318
|
+
/**
|
|
319
|
+
* Queries all the rate limits for a given chain
|
|
320
|
+
* @name QueryRateLimitsByChainIDRequest
|
|
321
|
+
* @package ibc.applications.rate_limiting.v1
|
|
322
|
+
* @see proto type: ibc.applications.rate_limiting.v1.QueryRateLimitsByChainIDRequest
|
|
323
|
+
*/
|
|
324
|
+
exports.QueryRateLimitsByChainIDRequest = {
|
|
325
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitsByChainIDRequest",
|
|
326
|
+
aminoType: "cosmos-sdk/QueryRateLimitsByChainIDRequest",
|
|
327
|
+
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
328
|
+
if (message.chainId !== "") {
|
|
329
|
+
writer.uint32(10).string(message.chainId);
|
|
330
|
+
}
|
|
331
|
+
return writer;
|
|
332
|
+
},
|
|
333
|
+
decode(input, length) {
|
|
334
|
+
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.BinaryReader(input);
|
|
335
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
336
|
+
const message = createBaseQueryRateLimitsByChainIDRequest();
|
|
337
|
+
while (reader.pos < end) {
|
|
338
|
+
const tag = reader.uint32();
|
|
339
|
+
switch (tag >>> 3) {
|
|
340
|
+
case 1:
|
|
341
|
+
message.chainId = reader.string();
|
|
342
|
+
break;
|
|
343
|
+
default:
|
|
344
|
+
reader.skipType(tag & 7);
|
|
345
|
+
break;
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
return message;
|
|
349
|
+
},
|
|
350
|
+
fromPartial(object) {
|
|
351
|
+
const message = createBaseQueryRateLimitsByChainIDRequest();
|
|
352
|
+
message.chainId = object.chainId ?? "";
|
|
353
|
+
return message;
|
|
354
|
+
},
|
|
355
|
+
fromAmino(object) {
|
|
356
|
+
const message = createBaseQueryRateLimitsByChainIDRequest();
|
|
357
|
+
if (object.chain_id !== undefined && object.chain_id !== null) {
|
|
358
|
+
message.chainId = object.chain_id;
|
|
359
|
+
}
|
|
360
|
+
return message;
|
|
361
|
+
},
|
|
362
|
+
toAmino(message) {
|
|
363
|
+
const obj = {};
|
|
364
|
+
obj.chain_id = message.chainId === "" ? undefined : message.chainId;
|
|
365
|
+
return obj;
|
|
366
|
+
},
|
|
367
|
+
fromAminoMsg(object) {
|
|
368
|
+
return exports.QueryRateLimitsByChainIDRequest.fromAmino(object.value);
|
|
369
|
+
},
|
|
370
|
+
toAminoMsg(message) {
|
|
371
|
+
return {
|
|
372
|
+
type: "cosmos-sdk/QueryRateLimitsByChainIDRequest",
|
|
373
|
+
value: exports.QueryRateLimitsByChainIDRequest.toAmino(message)
|
|
374
|
+
};
|
|
375
|
+
},
|
|
376
|
+
fromProtoMsg(message) {
|
|
377
|
+
return exports.QueryRateLimitsByChainIDRequest.decode(message.value);
|
|
378
|
+
},
|
|
379
|
+
toProto(message) {
|
|
380
|
+
return exports.QueryRateLimitsByChainIDRequest.encode(message).finish();
|
|
381
|
+
},
|
|
382
|
+
toProtoMsg(message) {
|
|
383
|
+
return {
|
|
384
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitsByChainIDRequest",
|
|
385
|
+
value: exports.QueryRateLimitsByChainIDRequest.encode(message).finish()
|
|
386
|
+
};
|
|
387
|
+
}
|
|
388
|
+
};
|
|
389
|
+
function createBaseQueryRateLimitsByChainIDResponse() {
|
|
390
|
+
return {
|
|
391
|
+
rateLimits: []
|
|
392
|
+
};
|
|
393
|
+
}
|
|
394
|
+
/**
|
|
395
|
+
* QueryRateLimitsByChainIDResponse returns all rate-limits by a chain.
|
|
396
|
+
* @name QueryRateLimitsByChainIDResponse
|
|
397
|
+
* @package ibc.applications.rate_limiting.v1
|
|
398
|
+
* @see proto type: ibc.applications.rate_limiting.v1.QueryRateLimitsByChainIDResponse
|
|
399
|
+
*/
|
|
400
|
+
exports.QueryRateLimitsByChainIDResponse = {
|
|
401
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitsByChainIDResponse",
|
|
402
|
+
aminoType: "cosmos-sdk/QueryRateLimitsByChainIDResponse",
|
|
403
|
+
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
404
|
+
for (const v of message.rateLimits) {
|
|
405
|
+
rate_limiting_1.RateLimit.encode(v, writer.uint32(10).fork()).ldelim();
|
|
406
|
+
}
|
|
407
|
+
return writer;
|
|
408
|
+
},
|
|
409
|
+
decode(input, length) {
|
|
410
|
+
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.BinaryReader(input);
|
|
411
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
412
|
+
const message = createBaseQueryRateLimitsByChainIDResponse();
|
|
413
|
+
while (reader.pos < end) {
|
|
414
|
+
const tag = reader.uint32();
|
|
415
|
+
switch (tag >>> 3) {
|
|
416
|
+
case 1:
|
|
417
|
+
message.rateLimits.push(rate_limiting_1.RateLimit.decode(reader, reader.uint32()));
|
|
418
|
+
break;
|
|
419
|
+
default:
|
|
420
|
+
reader.skipType(tag & 7);
|
|
421
|
+
break;
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
return message;
|
|
425
|
+
},
|
|
426
|
+
fromPartial(object) {
|
|
427
|
+
const message = createBaseQueryRateLimitsByChainIDResponse();
|
|
428
|
+
message.rateLimits = object.rateLimits?.map(e => rate_limiting_1.RateLimit.fromPartial(e)) || [];
|
|
429
|
+
return message;
|
|
430
|
+
},
|
|
431
|
+
fromAmino(object) {
|
|
432
|
+
const message = createBaseQueryRateLimitsByChainIDResponse();
|
|
433
|
+
message.rateLimits = object.rate_limits?.map(e => rate_limiting_1.RateLimit.fromAmino(e)) || [];
|
|
434
|
+
return message;
|
|
435
|
+
},
|
|
436
|
+
toAmino(message) {
|
|
437
|
+
const obj = {};
|
|
438
|
+
if (message.rateLimits) {
|
|
439
|
+
obj.rate_limits = message.rateLimits.map(e => e ? rate_limiting_1.RateLimit.toAmino(e) : undefined);
|
|
440
|
+
}
|
|
441
|
+
else {
|
|
442
|
+
obj.rate_limits = message.rateLimits;
|
|
443
|
+
}
|
|
444
|
+
return obj;
|
|
445
|
+
},
|
|
446
|
+
fromAminoMsg(object) {
|
|
447
|
+
return exports.QueryRateLimitsByChainIDResponse.fromAmino(object.value);
|
|
448
|
+
},
|
|
449
|
+
toAminoMsg(message) {
|
|
450
|
+
return {
|
|
451
|
+
type: "cosmos-sdk/QueryRateLimitsByChainIDResponse",
|
|
452
|
+
value: exports.QueryRateLimitsByChainIDResponse.toAmino(message)
|
|
453
|
+
};
|
|
454
|
+
},
|
|
455
|
+
fromProtoMsg(message) {
|
|
456
|
+
return exports.QueryRateLimitsByChainIDResponse.decode(message.value);
|
|
457
|
+
},
|
|
458
|
+
toProto(message) {
|
|
459
|
+
return exports.QueryRateLimitsByChainIDResponse.encode(message).finish();
|
|
460
|
+
},
|
|
461
|
+
toProtoMsg(message) {
|
|
462
|
+
return {
|
|
463
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitsByChainIDResponse",
|
|
464
|
+
value: exports.QueryRateLimitsByChainIDResponse.encode(message).finish()
|
|
465
|
+
};
|
|
466
|
+
}
|
|
467
|
+
};
|
|
468
|
+
function createBaseQueryRateLimitsByChannelOrClientIDRequest() {
|
|
469
|
+
return {
|
|
470
|
+
channelOrClientId: ""
|
|
471
|
+
};
|
|
472
|
+
}
|
|
473
|
+
/**
|
|
474
|
+
* Queries all the rate limits for a given channel or client ID
|
|
475
|
+
* @name QueryRateLimitsByChannelOrClientIDRequest
|
|
476
|
+
* @package ibc.applications.rate_limiting.v1
|
|
477
|
+
* @see proto type: ibc.applications.rate_limiting.v1.QueryRateLimitsByChannelOrClientIDRequest
|
|
478
|
+
*/
|
|
479
|
+
exports.QueryRateLimitsByChannelOrClientIDRequest = {
|
|
480
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitsByChannelOrClientIDRequest",
|
|
481
|
+
aminoType: "cosmos-sdk/QueryRateLimitsByChannelOrClientIDRequest",
|
|
482
|
+
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
483
|
+
if (message.channelOrClientId !== "") {
|
|
484
|
+
writer.uint32(10).string(message.channelOrClientId);
|
|
485
|
+
}
|
|
486
|
+
return writer;
|
|
487
|
+
},
|
|
488
|
+
decode(input, length) {
|
|
489
|
+
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.BinaryReader(input);
|
|
490
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
491
|
+
const message = createBaseQueryRateLimitsByChannelOrClientIDRequest();
|
|
492
|
+
while (reader.pos < end) {
|
|
493
|
+
const tag = reader.uint32();
|
|
494
|
+
switch (tag >>> 3) {
|
|
495
|
+
case 1:
|
|
496
|
+
message.channelOrClientId = reader.string();
|
|
497
|
+
break;
|
|
498
|
+
default:
|
|
499
|
+
reader.skipType(tag & 7);
|
|
500
|
+
break;
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
return message;
|
|
504
|
+
},
|
|
505
|
+
fromPartial(object) {
|
|
506
|
+
const message = createBaseQueryRateLimitsByChannelOrClientIDRequest();
|
|
507
|
+
message.channelOrClientId = object.channelOrClientId ?? "";
|
|
508
|
+
return message;
|
|
509
|
+
},
|
|
510
|
+
fromAmino(object) {
|
|
511
|
+
const message = createBaseQueryRateLimitsByChannelOrClientIDRequest();
|
|
512
|
+
if (object.channel_or_client_id !== undefined && object.channel_or_client_id !== null) {
|
|
513
|
+
message.channelOrClientId = object.channel_or_client_id;
|
|
514
|
+
}
|
|
515
|
+
return message;
|
|
516
|
+
},
|
|
517
|
+
toAmino(message) {
|
|
518
|
+
const obj = {};
|
|
519
|
+
obj.channel_or_client_id = message.channelOrClientId === "" ? undefined : message.channelOrClientId;
|
|
520
|
+
return obj;
|
|
521
|
+
},
|
|
522
|
+
fromAminoMsg(object) {
|
|
523
|
+
return exports.QueryRateLimitsByChannelOrClientIDRequest.fromAmino(object.value);
|
|
524
|
+
},
|
|
525
|
+
toAminoMsg(message) {
|
|
526
|
+
return {
|
|
527
|
+
type: "cosmos-sdk/QueryRateLimitsByChannelOrClientIDRequest",
|
|
528
|
+
value: exports.QueryRateLimitsByChannelOrClientIDRequest.toAmino(message)
|
|
529
|
+
};
|
|
530
|
+
},
|
|
531
|
+
fromProtoMsg(message) {
|
|
532
|
+
return exports.QueryRateLimitsByChannelOrClientIDRequest.decode(message.value);
|
|
533
|
+
},
|
|
534
|
+
toProto(message) {
|
|
535
|
+
return exports.QueryRateLimitsByChannelOrClientIDRequest.encode(message).finish();
|
|
536
|
+
},
|
|
537
|
+
toProtoMsg(message) {
|
|
538
|
+
return {
|
|
539
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitsByChannelOrClientIDRequest",
|
|
540
|
+
value: exports.QueryRateLimitsByChannelOrClientIDRequest.encode(message).finish()
|
|
541
|
+
};
|
|
542
|
+
}
|
|
543
|
+
};
|
|
544
|
+
function createBaseQueryRateLimitsByChannelOrClientIDResponse() {
|
|
545
|
+
return {
|
|
546
|
+
rateLimits: []
|
|
547
|
+
};
|
|
548
|
+
}
|
|
549
|
+
/**
|
|
550
|
+
* QueryRateLimitsByChannelOrClientIDResponse returns all rate-limits by a channel or client id.
|
|
551
|
+
* @name QueryRateLimitsByChannelOrClientIDResponse
|
|
552
|
+
* @package ibc.applications.rate_limiting.v1
|
|
553
|
+
* @see proto type: ibc.applications.rate_limiting.v1.QueryRateLimitsByChannelOrClientIDResponse
|
|
554
|
+
*/
|
|
555
|
+
exports.QueryRateLimitsByChannelOrClientIDResponse = {
|
|
556
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitsByChannelOrClientIDResponse",
|
|
557
|
+
aminoType: "cosmos-sdk/QueryRateLimitsByChannelOrClientIDResponse",
|
|
558
|
+
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
559
|
+
for (const v of message.rateLimits) {
|
|
560
|
+
rate_limiting_1.RateLimit.encode(v, writer.uint32(10).fork()).ldelim();
|
|
561
|
+
}
|
|
562
|
+
return writer;
|
|
563
|
+
},
|
|
564
|
+
decode(input, length) {
|
|
565
|
+
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.BinaryReader(input);
|
|
566
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
567
|
+
const message = createBaseQueryRateLimitsByChannelOrClientIDResponse();
|
|
568
|
+
while (reader.pos < end) {
|
|
569
|
+
const tag = reader.uint32();
|
|
570
|
+
switch (tag >>> 3) {
|
|
571
|
+
case 1:
|
|
572
|
+
message.rateLimits.push(rate_limiting_1.RateLimit.decode(reader, reader.uint32()));
|
|
573
|
+
break;
|
|
574
|
+
default:
|
|
575
|
+
reader.skipType(tag & 7);
|
|
576
|
+
break;
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
return message;
|
|
580
|
+
},
|
|
581
|
+
fromPartial(object) {
|
|
582
|
+
const message = createBaseQueryRateLimitsByChannelOrClientIDResponse();
|
|
583
|
+
message.rateLimits = object.rateLimits?.map(e => rate_limiting_1.RateLimit.fromPartial(e)) || [];
|
|
584
|
+
return message;
|
|
585
|
+
},
|
|
586
|
+
fromAmino(object) {
|
|
587
|
+
const message = createBaseQueryRateLimitsByChannelOrClientIDResponse();
|
|
588
|
+
message.rateLimits = object.rate_limits?.map(e => rate_limiting_1.RateLimit.fromAmino(e)) || [];
|
|
589
|
+
return message;
|
|
590
|
+
},
|
|
591
|
+
toAmino(message) {
|
|
592
|
+
const obj = {};
|
|
593
|
+
if (message.rateLimits) {
|
|
594
|
+
obj.rate_limits = message.rateLimits.map(e => e ? rate_limiting_1.RateLimit.toAmino(e) : undefined);
|
|
595
|
+
}
|
|
596
|
+
else {
|
|
597
|
+
obj.rate_limits = message.rateLimits;
|
|
598
|
+
}
|
|
599
|
+
return obj;
|
|
600
|
+
},
|
|
601
|
+
fromAminoMsg(object) {
|
|
602
|
+
return exports.QueryRateLimitsByChannelOrClientIDResponse.fromAmino(object.value);
|
|
603
|
+
},
|
|
604
|
+
toAminoMsg(message) {
|
|
605
|
+
return {
|
|
606
|
+
type: "cosmos-sdk/QueryRateLimitsByChannelOrClientIDResponse",
|
|
607
|
+
value: exports.QueryRateLimitsByChannelOrClientIDResponse.toAmino(message)
|
|
608
|
+
};
|
|
609
|
+
},
|
|
610
|
+
fromProtoMsg(message) {
|
|
611
|
+
return exports.QueryRateLimitsByChannelOrClientIDResponse.decode(message.value);
|
|
612
|
+
},
|
|
613
|
+
toProto(message) {
|
|
614
|
+
return exports.QueryRateLimitsByChannelOrClientIDResponse.encode(message).finish();
|
|
615
|
+
},
|
|
616
|
+
toProtoMsg(message) {
|
|
617
|
+
return {
|
|
618
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryRateLimitsByChannelOrClientIDResponse",
|
|
619
|
+
value: exports.QueryRateLimitsByChannelOrClientIDResponse.encode(message).finish()
|
|
620
|
+
};
|
|
621
|
+
}
|
|
622
|
+
};
|
|
623
|
+
function createBaseQueryAllBlacklistedDenomsRequest() {
|
|
624
|
+
return {};
|
|
625
|
+
}
|
|
626
|
+
/**
|
|
627
|
+
* Queries all blacklisted denoms
|
|
628
|
+
* @name QueryAllBlacklistedDenomsRequest
|
|
629
|
+
* @package ibc.applications.rate_limiting.v1
|
|
630
|
+
* @see proto type: ibc.applications.rate_limiting.v1.QueryAllBlacklistedDenomsRequest
|
|
631
|
+
*/
|
|
632
|
+
exports.QueryAllBlacklistedDenomsRequest = {
|
|
633
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllBlacklistedDenomsRequest",
|
|
634
|
+
aminoType: "cosmos-sdk/QueryAllBlacklistedDenomsRequest",
|
|
635
|
+
encode(_, writer = binary_1.BinaryWriter.create()) {
|
|
636
|
+
return writer;
|
|
637
|
+
},
|
|
638
|
+
decode(input, length) {
|
|
639
|
+
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.BinaryReader(input);
|
|
640
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
641
|
+
const message = createBaseQueryAllBlacklistedDenomsRequest();
|
|
642
|
+
while (reader.pos < end) {
|
|
643
|
+
const tag = reader.uint32();
|
|
644
|
+
switch (tag >>> 3) {
|
|
645
|
+
default:
|
|
646
|
+
reader.skipType(tag & 7);
|
|
647
|
+
break;
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
return message;
|
|
651
|
+
},
|
|
652
|
+
fromPartial(_) {
|
|
653
|
+
const message = createBaseQueryAllBlacklistedDenomsRequest();
|
|
654
|
+
return message;
|
|
655
|
+
},
|
|
656
|
+
fromAmino(_) {
|
|
657
|
+
const message = createBaseQueryAllBlacklistedDenomsRequest();
|
|
658
|
+
return message;
|
|
659
|
+
},
|
|
660
|
+
toAmino(_) {
|
|
661
|
+
const obj = {};
|
|
662
|
+
return obj;
|
|
663
|
+
},
|
|
664
|
+
fromAminoMsg(object) {
|
|
665
|
+
return exports.QueryAllBlacklistedDenomsRequest.fromAmino(object.value);
|
|
666
|
+
},
|
|
667
|
+
toAminoMsg(message) {
|
|
668
|
+
return {
|
|
669
|
+
type: "cosmos-sdk/QueryAllBlacklistedDenomsRequest",
|
|
670
|
+
value: exports.QueryAllBlacklistedDenomsRequest.toAmino(message)
|
|
671
|
+
};
|
|
672
|
+
},
|
|
673
|
+
fromProtoMsg(message) {
|
|
674
|
+
return exports.QueryAllBlacklistedDenomsRequest.decode(message.value);
|
|
675
|
+
},
|
|
676
|
+
toProto(message) {
|
|
677
|
+
return exports.QueryAllBlacklistedDenomsRequest.encode(message).finish();
|
|
678
|
+
},
|
|
679
|
+
toProtoMsg(message) {
|
|
680
|
+
return {
|
|
681
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllBlacklistedDenomsRequest",
|
|
682
|
+
value: exports.QueryAllBlacklistedDenomsRequest.encode(message).finish()
|
|
683
|
+
};
|
|
684
|
+
}
|
|
685
|
+
};
|
|
686
|
+
function createBaseQueryAllBlacklistedDenomsResponse() {
|
|
687
|
+
return {
|
|
688
|
+
denoms: []
|
|
689
|
+
};
|
|
690
|
+
}
|
|
691
|
+
/**
|
|
692
|
+
* QueryAllBlacklistedDenomsResponse returns all the blacklisted denosm.
|
|
693
|
+
* @name QueryAllBlacklistedDenomsResponse
|
|
694
|
+
* @package ibc.applications.rate_limiting.v1
|
|
695
|
+
* @see proto type: ibc.applications.rate_limiting.v1.QueryAllBlacklistedDenomsResponse
|
|
696
|
+
*/
|
|
697
|
+
exports.QueryAllBlacklistedDenomsResponse = {
|
|
698
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllBlacklistedDenomsResponse",
|
|
699
|
+
aminoType: "cosmos-sdk/QueryAllBlacklistedDenomsResponse",
|
|
700
|
+
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
701
|
+
for (const v of message.denoms) {
|
|
702
|
+
writer.uint32(10).string(v);
|
|
703
|
+
}
|
|
704
|
+
return writer;
|
|
705
|
+
},
|
|
706
|
+
decode(input, length) {
|
|
707
|
+
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.BinaryReader(input);
|
|
708
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
709
|
+
const message = createBaseQueryAllBlacklistedDenomsResponse();
|
|
710
|
+
while (reader.pos < end) {
|
|
711
|
+
const tag = reader.uint32();
|
|
712
|
+
switch (tag >>> 3) {
|
|
713
|
+
case 1:
|
|
714
|
+
message.denoms.push(reader.string());
|
|
715
|
+
break;
|
|
716
|
+
default:
|
|
717
|
+
reader.skipType(tag & 7);
|
|
718
|
+
break;
|
|
719
|
+
}
|
|
720
|
+
}
|
|
721
|
+
return message;
|
|
722
|
+
},
|
|
723
|
+
fromPartial(object) {
|
|
724
|
+
const message = createBaseQueryAllBlacklistedDenomsResponse();
|
|
725
|
+
message.denoms = object.denoms?.map(e => e) || [];
|
|
726
|
+
return message;
|
|
727
|
+
},
|
|
728
|
+
fromAmino(object) {
|
|
729
|
+
const message = createBaseQueryAllBlacklistedDenomsResponse();
|
|
730
|
+
message.denoms = object.denoms?.map(e => e) || [];
|
|
731
|
+
return message;
|
|
732
|
+
},
|
|
733
|
+
toAmino(message) {
|
|
734
|
+
const obj = {};
|
|
735
|
+
if (message.denoms) {
|
|
736
|
+
obj.denoms = message.denoms.map(e => e);
|
|
737
|
+
}
|
|
738
|
+
else {
|
|
739
|
+
obj.denoms = message.denoms;
|
|
740
|
+
}
|
|
741
|
+
return obj;
|
|
742
|
+
},
|
|
743
|
+
fromAminoMsg(object) {
|
|
744
|
+
return exports.QueryAllBlacklistedDenomsResponse.fromAmino(object.value);
|
|
745
|
+
},
|
|
746
|
+
toAminoMsg(message) {
|
|
747
|
+
return {
|
|
748
|
+
type: "cosmos-sdk/QueryAllBlacklistedDenomsResponse",
|
|
749
|
+
value: exports.QueryAllBlacklistedDenomsResponse.toAmino(message)
|
|
750
|
+
};
|
|
751
|
+
},
|
|
752
|
+
fromProtoMsg(message) {
|
|
753
|
+
return exports.QueryAllBlacklistedDenomsResponse.decode(message.value);
|
|
754
|
+
},
|
|
755
|
+
toProto(message) {
|
|
756
|
+
return exports.QueryAllBlacklistedDenomsResponse.encode(message).finish();
|
|
757
|
+
},
|
|
758
|
+
toProtoMsg(message) {
|
|
759
|
+
return {
|
|
760
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllBlacklistedDenomsResponse",
|
|
761
|
+
value: exports.QueryAllBlacklistedDenomsResponse.encode(message).finish()
|
|
762
|
+
};
|
|
763
|
+
}
|
|
764
|
+
};
|
|
765
|
+
function createBaseQueryAllWhitelistedAddressesRequest() {
|
|
766
|
+
return {};
|
|
767
|
+
}
|
|
768
|
+
/**
|
|
769
|
+
* Queries all whitelisted address pairs
|
|
770
|
+
* @name QueryAllWhitelistedAddressesRequest
|
|
771
|
+
* @package ibc.applications.rate_limiting.v1
|
|
772
|
+
* @see proto type: ibc.applications.rate_limiting.v1.QueryAllWhitelistedAddressesRequest
|
|
773
|
+
*/
|
|
774
|
+
exports.QueryAllWhitelistedAddressesRequest = {
|
|
775
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllWhitelistedAddressesRequest",
|
|
776
|
+
aminoType: "cosmos-sdk/QueryAllWhitelistedAddressesRequest",
|
|
777
|
+
encode(_, writer = binary_1.BinaryWriter.create()) {
|
|
778
|
+
return writer;
|
|
779
|
+
},
|
|
780
|
+
decode(input, length) {
|
|
781
|
+
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.BinaryReader(input);
|
|
782
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
783
|
+
const message = createBaseQueryAllWhitelistedAddressesRequest();
|
|
784
|
+
while (reader.pos < end) {
|
|
785
|
+
const tag = reader.uint32();
|
|
786
|
+
switch (tag >>> 3) {
|
|
787
|
+
default:
|
|
788
|
+
reader.skipType(tag & 7);
|
|
789
|
+
break;
|
|
790
|
+
}
|
|
791
|
+
}
|
|
792
|
+
return message;
|
|
793
|
+
},
|
|
794
|
+
fromPartial(_) {
|
|
795
|
+
const message = createBaseQueryAllWhitelistedAddressesRequest();
|
|
796
|
+
return message;
|
|
797
|
+
},
|
|
798
|
+
fromAmino(_) {
|
|
799
|
+
const message = createBaseQueryAllWhitelistedAddressesRequest();
|
|
800
|
+
return message;
|
|
801
|
+
},
|
|
802
|
+
toAmino(_) {
|
|
803
|
+
const obj = {};
|
|
804
|
+
return obj;
|
|
805
|
+
},
|
|
806
|
+
fromAminoMsg(object) {
|
|
807
|
+
return exports.QueryAllWhitelistedAddressesRequest.fromAmino(object.value);
|
|
808
|
+
},
|
|
809
|
+
toAminoMsg(message) {
|
|
810
|
+
return {
|
|
811
|
+
type: "cosmos-sdk/QueryAllWhitelistedAddressesRequest",
|
|
812
|
+
value: exports.QueryAllWhitelistedAddressesRequest.toAmino(message)
|
|
813
|
+
};
|
|
814
|
+
},
|
|
815
|
+
fromProtoMsg(message) {
|
|
816
|
+
return exports.QueryAllWhitelistedAddressesRequest.decode(message.value);
|
|
817
|
+
},
|
|
818
|
+
toProto(message) {
|
|
819
|
+
return exports.QueryAllWhitelistedAddressesRequest.encode(message).finish();
|
|
820
|
+
},
|
|
821
|
+
toProtoMsg(message) {
|
|
822
|
+
return {
|
|
823
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllWhitelistedAddressesRequest",
|
|
824
|
+
value: exports.QueryAllWhitelistedAddressesRequest.encode(message).finish()
|
|
825
|
+
};
|
|
826
|
+
}
|
|
827
|
+
};
|
|
828
|
+
function createBaseQueryAllWhitelistedAddressesResponse() {
|
|
829
|
+
return {
|
|
830
|
+
addressPairs: []
|
|
831
|
+
};
|
|
832
|
+
}
|
|
833
|
+
/**
|
|
834
|
+
* QueryAllWhitelistedAddressesResponse returns all whitelisted pairs.
|
|
835
|
+
* @name QueryAllWhitelistedAddressesResponse
|
|
836
|
+
* @package ibc.applications.rate_limiting.v1
|
|
837
|
+
* @see proto type: ibc.applications.rate_limiting.v1.QueryAllWhitelistedAddressesResponse
|
|
838
|
+
*/
|
|
839
|
+
exports.QueryAllWhitelistedAddressesResponse = {
|
|
840
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllWhitelistedAddressesResponse",
|
|
841
|
+
aminoType: "cosmos-sdk/QueryAllWhitelistedAddressesResponse",
|
|
842
|
+
encode(message, writer = binary_1.BinaryWriter.create()) {
|
|
843
|
+
for (const v of message.addressPairs) {
|
|
844
|
+
rate_limiting_1.WhitelistedAddressPair.encode(v, writer.uint32(10).fork()).ldelim();
|
|
845
|
+
}
|
|
846
|
+
return writer;
|
|
847
|
+
},
|
|
848
|
+
decode(input, length) {
|
|
849
|
+
const reader = input instanceof binary_1.BinaryReader ? input : new binary_1.BinaryReader(input);
|
|
850
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
851
|
+
const message = createBaseQueryAllWhitelistedAddressesResponse();
|
|
852
|
+
while (reader.pos < end) {
|
|
853
|
+
const tag = reader.uint32();
|
|
854
|
+
switch (tag >>> 3) {
|
|
855
|
+
case 1:
|
|
856
|
+
message.addressPairs.push(rate_limiting_1.WhitelistedAddressPair.decode(reader, reader.uint32()));
|
|
857
|
+
break;
|
|
858
|
+
default:
|
|
859
|
+
reader.skipType(tag & 7);
|
|
860
|
+
break;
|
|
861
|
+
}
|
|
862
|
+
}
|
|
863
|
+
return message;
|
|
864
|
+
},
|
|
865
|
+
fromPartial(object) {
|
|
866
|
+
const message = createBaseQueryAllWhitelistedAddressesResponse();
|
|
867
|
+
message.addressPairs = object.addressPairs?.map(e => rate_limiting_1.WhitelistedAddressPair.fromPartial(e)) || [];
|
|
868
|
+
return message;
|
|
869
|
+
},
|
|
870
|
+
fromAmino(object) {
|
|
871
|
+
const message = createBaseQueryAllWhitelistedAddressesResponse();
|
|
872
|
+
message.addressPairs = object.address_pairs?.map(e => rate_limiting_1.WhitelistedAddressPair.fromAmino(e)) || [];
|
|
873
|
+
return message;
|
|
874
|
+
},
|
|
875
|
+
toAmino(message) {
|
|
876
|
+
const obj = {};
|
|
877
|
+
if (message.addressPairs) {
|
|
878
|
+
obj.address_pairs = message.addressPairs.map(e => e ? rate_limiting_1.WhitelistedAddressPair.toAmino(e) : undefined);
|
|
879
|
+
}
|
|
880
|
+
else {
|
|
881
|
+
obj.address_pairs = message.addressPairs;
|
|
882
|
+
}
|
|
883
|
+
return obj;
|
|
884
|
+
},
|
|
885
|
+
fromAminoMsg(object) {
|
|
886
|
+
return exports.QueryAllWhitelistedAddressesResponse.fromAmino(object.value);
|
|
887
|
+
},
|
|
888
|
+
toAminoMsg(message) {
|
|
889
|
+
return {
|
|
890
|
+
type: "cosmos-sdk/QueryAllWhitelistedAddressesResponse",
|
|
891
|
+
value: exports.QueryAllWhitelistedAddressesResponse.toAmino(message)
|
|
892
|
+
};
|
|
893
|
+
},
|
|
894
|
+
fromProtoMsg(message) {
|
|
895
|
+
return exports.QueryAllWhitelistedAddressesResponse.decode(message.value);
|
|
896
|
+
},
|
|
897
|
+
toProto(message) {
|
|
898
|
+
return exports.QueryAllWhitelistedAddressesResponse.encode(message).finish();
|
|
899
|
+
},
|
|
900
|
+
toProtoMsg(message) {
|
|
901
|
+
return {
|
|
902
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.QueryAllWhitelistedAddressesResponse",
|
|
903
|
+
value: exports.QueryAllWhitelistedAddressesResponse.encode(message).finish()
|
|
904
|
+
};
|
|
905
|
+
}
|
|
906
|
+
};
|