@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,518 @@
|
|
|
1
|
+
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
2
|
+
import { DeepPartial } from "../../../../helpers";
|
|
3
|
+
/**
|
|
4
|
+
* Gov tx to add a new rate limit
|
|
5
|
+
* @name MsgAddRateLimit
|
|
6
|
+
* @package ibc.applications.rate_limiting.v1
|
|
7
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgAddRateLimit
|
|
8
|
+
*/
|
|
9
|
+
export interface MsgAddRateLimit {
|
|
10
|
+
/**
|
|
11
|
+
* signer defines the x/gov module account address or other authority signing the message
|
|
12
|
+
*/
|
|
13
|
+
signer: string;
|
|
14
|
+
/**
|
|
15
|
+
* Denom for the rate limit, as it appears on the rate limited chain
|
|
16
|
+
* When rate limiting a non-native token, this will be an ibc denom
|
|
17
|
+
*/
|
|
18
|
+
denom: string;
|
|
19
|
+
/**
|
|
20
|
+
* ChannelId for the rate limit, on the side of the rate limited chain
|
|
21
|
+
*/
|
|
22
|
+
channelOrClientId: string;
|
|
23
|
+
/**
|
|
24
|
+
* MaxPercentSend defines the threshold for outflows
|
|
25
|
+
* The threshold is defined as a percentage (e.g. 10 indicates 10%)
|
|
26
|
+
*/
|
|
27
|
+
maxPercentSend: string;
|
|
28
|
+
/**
|
|
29
|
+
* MaxPercentSend defines the threshold for inflows
|
|
30
|
+
* The threshold is defined as a percentage (e.g. 10 indicates 10%)
|
|
31
|
+
*/
|
|
32
|
+
maxPercentRecv: string;
|
|
33
|
+
/**
|
|
34
|
+
* DurationHours specifies the number of hours before the rate limit
|
|
35
|
+
* is reset (e.g. 24 indicates that the rate limit is reset each day)
|
|
36
|
+
*/
|
|
37
|
+
durationHours: bigint;
|
|
38
|
+
}
|
|
39
|
+
export interface MsgAddRateLimitProtoMsg {
|
|
40
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgAddRateLimit";
|
|
41
|
+
value: Uint8Array;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Gov tx to add a new rate limit
|
|
45
|
+
* @name MsgAddRateLimitAmino
|
|
46
|
+
* @package ibc.applications.rate_limiting.v1
|
|
47
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgAddRateLimit
|
|
48
|
+
*/
|
|
49
|
+
export interface MsgAddRateLimitAmino {
|
|
50
|
+
/**
|
|
51
|
+
* signer defines the x/gov module account address or other authority signing the message
|
|
52
|
+
*/
|
|
53
|
+
signer?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Denom for the rate limit, as it appears on the rate limited chain
|
|
56
|
+
* When rate limiting a non-native token, this will be an ibc denom
|
|
57
|
+
*/
|
|
58
|
+
denom?: string;
|
|
59
|
+
/**
|
|
60
|
+
* ChannelId for the rate limit, on the side of the rate limited chain
|
|
61
|
+
*/
|
|
62
|
+
channel_or_client_id?: string;
|
|
63
|
+
/**
|
|
64
|
+
* MaxPercentSend defines the threshold for outflows
|
|
65
|
+
* The threshold is defined as a percentage (e.g. 10 indicates 10%)
|
|
66
|
+
*/
|
|
67
|
+
max_percent_send?: string;
|
|
68
|
+
/**
|
|
69
|
+
* MaxPercentSend defines the threshold for inflows
|
|
70
|
+
* The threshold is defined as a percentage (e.g. 10 indicates 10%)
|
|
71
|
+
*/
|
|
72
|
+
max_percent_recv?: string;
|
|
73
|
+
/**
|
|
74
|
+
* DurationHours specifies the number of hours before the rate limit
|
|
75
|
+
* is reset (e.g. 24 indicates that the rate limit is reset each day)
|
|
76
|
+
*/
|
|
77
|
+
duration_hours?: string;
|
|
78
|
+
}
|
|
79
|
+
export interface MsgAddRateLimitAminoMsg {
|
|
80
|
+
type: "ratelimit/MsgAddRateLimit";
|
|
81
|
+
value: MsgAddRateLimitAmino;
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* MsgAddRateLimitResponse is the return type for AddRateLimit function.
|
|
85
|
+
* @name MsgAddRateLimitResponse
|
|
86
|
+
* @package ibc.applications.rate_limiting.v1
|
|
87
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgAddRateLimitResponse
|
|
88
|
+
*/
|
|
89
|
+
export interface MsgAddRateLimitResponse {
|
|
90
|
+
}
|
|
91
|
+
export interface MsgAddRateLimitResponseProtoMsg {
|
|
92
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgAddRateLimitResponse";
|
|
93
|
+
value: Uint8Array;
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* MsgAddRateLimitResponse is the return type for AddRateLimit function.
|
|
97
|
+
* @name MsgAddRateLimitResponseAmino
|
|
98
|
+
* @package ibc.applications.rate_limiting.v1
|
|
99
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgAddRateLimitResponse
|
|
100
|
+
*/
|
|
101
|
+
export interface MsgAddRateLimitResponseAmino {
|
|
102
|
+
}
|
|
103
|
+
export interface MsgAddRateLimitResponseAminoMsg {
|
|
104
|
+
type: "cosmos-sdk/MsgAddRateLimitResponse";
|
|
105
|
+
value: MsgAddRateLimitResponseAmino;
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Gov tx to update an existing rate limit
|
|
109
|
+
* @name MsgUpdateRateLimit
|
|
110
|
+
* @package ibc.applications.rate_limiting.v1
|
|
111
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgUpdateRateLimit
|
|
112
|
+
*/
|
|
113
|
+
export interface MsgUpdateRateLimit {
|
|
114
|
+
/**
|
|
115
|
+
* signer defines the x/gov module account address or other authority signing the message
|
|
116
|
+
*/
|
|
117
|
+
signer: string;
|
|
118
|
+
/**
|
|
119
|
+
* Denom for the rate limit, as it appears on the rate limited chain
|
|
120
|
+
* When rate limiting a non-native token, this will be an ibc denom
|
|
121
|
+
*/
|
|
122
|
+
denom: string;
|
|
123
|
+
/**
|
|
124
|
+
* ChannelId for the rate limit, on the side of the rate limited chain
|
|
125
|
+
*/
|
|
126
|
+
channelOrClientId: string;
|
|
127
|
+
/**
|
|
128
|
+
* MaxPercentSend defines the threshold for outflows
|
|
129
|
+
* The threshold is defined as a percentage (e.g. 10 indicates 10%)
|
|
130
|
+
*/
|
|
131
|
+
maxPercentSend: string;
|
|
132
|
+
/**
|
|
133
|
+
* MaxPercentSend defines the threshold for inflows
|
|
134
|
+
* The threshold is defined as a percentage (e.g. 10 indicates 10%)
|
|
135
|
+
*/
|
|
136
|
+
maxPercentRecv: string;
|
|
137
|
+
/**
|
|
138
|
+
* DurationHours specifies the number of hours before the rate limit
|
|
139
|
+
* is reset (e.g. 24 indicates that the rate limit is reset each day)
|
|
140
|
+
*/
|
|
141
|
+
durationHours: bigint;
|
|
142
|
+
}
|
|
143
|
+
export interface MsgUpdateRateLimitProtoMsg {
|
|
144
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgUpdateRateLimit";
|
|
145
|
+
value: Uint8Array;
|
|
146
|
+
}
|
|
147
|
+
/**
|
|
148
|
+
* Gov tx to update an existing rate limit
|
|
149
|
+
* @name MsgUpdateRateLimitAmino
|
|
150
|
+
* @package ibc.applications.rate_limiting.v1
|
|
151
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgUpdateRateLimit
|
|
152
|
+
*/
|
|
153
|
+
export interface MsgUpdateRateLimitAmino {
|
|
154
|
+
/**
|
|
155
|
+
* signer defines the x/gov module account address or other authority signing the message
|
|
156
|
+
*/
|
|
157
|
+
signer?: string;
|
|
158
|
+
/**
|
|
159
|
+
* Denom for the rate limit, as it appears on the rate limited chain
|
|
160
|
+
* When rate limiting a non-native token, this will be an ibc denom
|
|
161
|
+
*/
|
|
162
|
+
denom?: string;
|
|
163
|
+
/**
|
|
164
|
+
* ChannelId for the rate limit, on the side of the rate limited chain
|
|
165
|
+
*/
|
|
166
|
+
channel_or_client_id?: string;
|
|
167
|
+
/**
|
|
168
|
+
* MaxPercentSend defines the threshold for outflows
|
|
169
|
+
* The threshold is defined as a percentage (e.g. 10 indicates 10%)
|
|
170
|
+
*/
|
|
171
|
+
max_percent_send?: string;
|
|
172
|
+
/**
|
|
173
|
+
* MaxPercentSend defines the threshold for inflows
|
|
174
|
+
* The threshold is defined as a percentage (e.g. 10 indicates 10%)
|
|
175
|
+
*/
|
|
176
|
+
max_percent_recv?: string;
|
|
177
|
+
/**
|
|
178
|
+
* DurationHours specifies the number of hours before the rate limit
|
|
179
|
+
* is reset (e.g. 24 indicates that the rate limit is reset each day)
|
|
180
|
+
*/
|
|
181
|
+
duration_hours?: string;
|
|
182
|
+
}
|
|
183
|
+
export interface MsgUpdateRateLimitAminoMsg {
|
|
184
|
+
type: "ratelimit/MsgUpdateRateLimit";
|
|
185
|
+
value: MsgUpdateRateLimitAmino;
|
|
186
|
+
}
|
|
187
|
+
/**
|
|
188
|
+
* MsgUpdateRateLimitResponse is the return type for UpdateRateLimit.
|
|
189
|
+
* @name MsgUpdateRateLimitResponse
|
|
190
|
+
* @package ibc.applications.rate_limiting.v1
|
|
191
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgUpdateRateLimitResponse
|
|
192
|
+
*/
|
|
193
|
+
export interface MsgUpdateRateLimitResponse {
|
|
194
|
+
}
|
|
195
|
+
export interface MsgUpdateRateLimitResponseProtoMsg {
|
|
196
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgUpdateRateLimitResponse";
|
|
197
|
+
value: Uint8Array;
|
|
198
|
+
}
|
|
199
|
+
/**
|
|
200
|
+
* MsgUpdateRateLimitResponse is the return type for UpdateRateLimit.
|
|
201
|
+
* @name MsgUpdateRateLimitResponseAmino
|
|
202
|
+
* @package ibc.applications.rate_limiting.v1
|
|
203
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgUpdateRateLimitResponse
|
|
204
|
+
*/
|
|
205
|
+
export interface MsgUpdateRateLimitResponseAmino {
|
|
206
|
+
}
|
|
207
|
+
export interface MsgUpdateRateLimitResponseAminoMsg {
|
|
208
|
+
type: "cosmos-sdk/MsgUpdateRateLimitResponse";
|
|
209
|
+
value: MsgUpdateRateLimitResponseAmino;
|
|
210
|
+
}
|
|
211
|
+
/**
|
|
212
|
+
* Gov tx to remove a rate limit
|
|
213
|
+
* @name MsgRemoveRateLimit
|
|
214
|
+
* @package ibc.applications.rate_limiting.v1
|
|
215
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgRemoveRateLimit
|
|
216
|
+
*/
|
|
217
|
+
export interface MsgRemoveRateLimit {
|
|
218
|
+
/**
|
|
219
|
+
* signer defines the x/gov module account address or other authority signing the message
|
|
220
|
+
*/
|
|
221
|
+
signer: string;
|
|
222
|
+
/**
|
|
223
|
+
* Denom for the rate limit, as it appears on the rate limited chain
|
|
224
|
+
* When rate limiting a non-native token, this will be an ibc denom
|
|
225
|
+
*/
|
|
226
|
+
denom: string;
|
|
227
|
+
/**
|
|
228
|
+
* ChannelId for the rate limit, on the side of the rate limited chain
|
|
229
|
+
*/
|
|
230
|
+
channelOrClientId: string;
|
|
231
|
+
}
|
|
232
|
+
export interface MsgRemoveRateLimitProtoMsg {
|
|
233
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgRemoveRateLimit";
|
|
234
|
+
value: Uint8Array;
|
|
235
|
+
}
|
|
236
|
+
/**
|
|
237
|
+
* Gov tx to remove a rate limit
|
|
238
|
+
* @name MsgRemoveRateLimitAmino
|
|
239
|
+
* @package ibc.applications.rate_limiting.v1
|
|
240
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgRemoveRateLimit
|
|
241
|
+
*/
|
|
242
|
+
export interface MsgRemoveRateLimitAmino {
|
|
243
|
+
/**
|
|
244
|
+
* signer defines the x/gov module account address or other authority signing the message
|
|
245
|
+
*/
|
|
246
|
+
signer?: string;
|
|
247
|
+
/**
|
|
248
|
+
* Denom for the rate limit, as it appears on the rate limited chain
|
|
249
|
+
* When rate limiting a non-native token, this will be an ibc denom
|
|
250
|
+
*/
|
|
251
|
+
denom?: string;
|
|
252
|
+
/**
|
|
253
|
+
* ChannelId for the rate limit, on the side of the rate limited chain
|
|
254
|
+
*/
|
|
255
|
+
channel_or_client_id?: string;
|
|
256
|
+
}
|
|
257
|
+
export interface MsgRemoveRateLimitAminoMsg {
|
|
258
|
+
type: "ratelimit/MsgRemoveRateLimit";
|
|
259
|
+
value: MsgRemoveRateLimitAmino;
|
|
260
|
+
}
|
|
261
|
+
/**
|
|
262
|
+
* MsgRemoveRateLimitResponse is the response type for RemoveRateLimit
|
|
263
|
+
* @name MsgRemoveRateLimitResponse
|
|
264
|
+
* @package ibc.applications.rate_limiting.v1
|
|
265
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgRemoveRateLimitResponse
|
|
266
|
+
*/
|
|
267
|
+
export interface MsgRemoveRateLimitResponse {
|
|
268
|
+
}
|
|
269
|
+
export interface MsgRemoveRateLimitResponseProtoMsg {
|
|
270
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgRemoveRateLimitResponse";
|
|
271
|
+
value: Uint8Array;
|
|
272
|
+
}
|
|
273
|
+
/**
|
|
274
|
+
* MsgRemoveRateLimitResponse is the response type for RemoveRateLimit
|
|
275
|
+
* @name MsgRemoveRateLimitResponseAmino
|
|
276
|
+
* @package ibc.applications.rate_limiting.v1
|
|
277
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgRemoveRateLimitResponse
|
|
278
|
+
*/
|
|
279
|
+
export interface MsgRemoveRateLimitResponseAmino {
|
|
280
|
+
}
|
|
281
|
+
export interface MsgRemoveRateLimitResponseAminoMsg {
|
|
282
|
+
type: "cosmos-sdk/MsgRemoveRateLimitResponse";
|
|
283
|
+
value: MsgRemoveRateLimitResponseAmino;
|
|
284
|
+
}
|
|
285
|
+
/**
|
|
286
|
+
* Gov tx to reset the flow on a rate limit
|
|
287
|
+
* @name MsgResetRateLimit
|
|
288
|
+
* @package ibc.applications.rate_limiting.v1
|
|
289
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgResetRateLimit
|
|
290
|
+
*/
|
|
291
|
+
export interface MsgResetRateLimit {
|
|
292
|
+
/**
|
|
293
|
+
* signer defines the x/gov module account address or other authority signing the message
|
|
294
|
+
*/
|
|
295
|
+
signer: string;
|
|
296
|
+
/**
|
|
297
|
+
* Denom for the rate limit, as it appears on the rate limited chain
|
|
298
|
+
* When rate limiting a non-native token, this will be an ibc denom
|
|
299
|
+
*/
|
|
300
|
+
denom: string;
|
|
301
|
+
/**
|
|
302
|
+
* ChannelId for the rate limit, on the side of the rate limited chain
|
|
303
|
+
*/
|
|
304
|
+
channelOrClientId: string;
|
|
305
|
+
}
|
|
306
|
+
export interface MsgResetRateLimitProtoMsg {
|
|
307
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgResetRateLimit";
|
|
308
|
+
value: Uint8Array;
|
|
309
|
+
}
|
|
310
|
+
/**
|
|
311
|
+
* Gov tx to reset the flow on a rate limit
|
|
312
|
+
* @name MsgResetRateLimitAmino
|
|
313
|
+
* @package ibc.applications.rate_limiting.v1
|
|
314
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgResetRateLimit
|
|
315
|
+
*/
|
|
316
|
+
export interface MsgResetRateLimitAmino {
|
|
317
|
+
/**
|
|
318
|
+
* signer defines the x/gov module account address or other authority signing the message
|
|
319
|
+
*/
|
|
320
|
+
signer?: string;
|
|
321
|
+
/**
|
|
322
|
+
* Denom for the rate limit, as it appears on the rate limited chain
|
|
323
|
+
* When rate limiting a non-native token, this will be an ibc denom
|
|
324
|
+
*/
|
|
325
|
+
denom?: string;
|
|
326
|
+
/**
|
|
327
|
+
* ChannelId for the rate limit, on the side of the rate limited chain
|
|
328
|
+
*/
|
|
329
|
+
channel_or_client_id?: string;
|
|
330
|
+
}
|
|
331
|
+
export interface MsgResetRateLimitAminoMsg {
|
|
332
|
+
type: "ratelimit/MsgResetRateLimit";
|
|
333
|
+
value: MsgResetRateLimitAmino;
|
|
334
|
+
}
|
|
335
|
+
/**
|
|
336
|
+
* MsgResetRateLimitResponse is the response type for ResetRateLimit.
|
|
337
|
+
* @name MsgResetRateLimitResponse
|
|
338
|
+
* @package ibc.applications.rate_limiting.v1
|
|
339
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgResetRateLimitResponse
|
|
340
|
+
*/
|
|
341
|
+
export interface MsgResetRateLimitResponse {
|
|
342
|
+
}
|
|
343
|
+
export interface MsgResetRateLimitResponseProtoMsg {
|
|
344
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgResetRateLimitResponse";
|
|
345
|
+
value: Uint8Array;
|
|
346
|
+
}
|
|
347
|
+
/**
|
|
348
|
+
* MsgResetRateLimitResponse is the response type for ResetRateLimit.
|
|
349
|
+
* @name MsgResetRateLimitResponseAmino
|
|
350
|
+
* @package ibc.applications.rate_limiting.v1
|
|
351
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgResetRateLimitResponse
|
|
352
|
+
*/
|
|
353
|
+
export interface MsgResetRateLimitResponseAmino {
|
|
354
|
+
}
|
|
355
|
+
export interface MsgResetRateLimitResponseAminoMsg {
|
|
356
|
+
type: "cosmos-sdk/MsgResetRateLimitResponse";
|
|
357
|
+
value: MsgResetRateLimitResponseAmino;
|
|
358
|
+
}
|
|
359
|
+
/**
|
|
360
|
+
* Gov tx to add a new rate limit
|
|
361
|
+
* @name MsgAddRateLimit
|
|
362
|
+
* @package ibc.applications.rate_limiting.v1
|
|
363
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgAddRateLimit
|
|
364
|
+
*/
|
|
365
|
+
export declare const MsgAddRateLimit: {
|
|
366
|
+
typeUrl: string;
|
|
367
|
+
aminoType: string;
|
|
368
|
+
encode(message: MsgAddRateLimit, writer?: BinaryWriter): BinaryWriter;
|
|
369
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgAddRateLimit;
|
|
370
|
+
fromPartial(object: DeepPartial<MsgAddRateLimit>): MsgAddRateLimit;
|
|
371
|
+
fromAmino(object: MsgAddRateLimitAmino): MsgAddRateLimit;
|
|
372
|
+
toAmino(message: MsgAddRateLimit): MsgAddRateLimitAmino;
|
|
373
|
+
fromAminoMsg(object: MsgAddRateLimitAminoMsg): MsgAddRateLimit;
|
|
374
|
+
toAminoMsg(message: MsgAddRateLimit): MsgAddRateLimitAminoMsg;
|
|
375
|
+
fromProtoMsg(message: MsgAddRateLimitProtoMsg): MsgAddRateLimit;
|
|
376
|
+
toProto(message: MsgAddRateLimit): Uint8Array;
|
|
377
|
+
toProtoMsg(message: MsgAddRateLimit): MsgAddRateLimitProtoMsg;
|
|
378
|
+
};
|
|
379
|
+
/**
|
|
380
|
+
* MsgAddRateLimitResponse is the return type for AddRateLimit function.
|
|
381
|
+
* @name MsgAddRateLimitResponse
|
|
382
|
+
* @package ibc.applications.rate_limiting.v1
|
|
383
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgAddRateLimitResponse
|
|
384
|
+
*/
|
|
385
|
+
export declare const MsgAddRateLimitResponse: {
|
|
386
|
+
typeUrl: string;
|
|
387
|
+
aminoType: string;
|
|
388
|
+
encode(_: MsgAddRateLimitResponse, writer?: BinaryWriter): BinaryWriter;
|
|
389
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgAddRateLimitResponse;
|
|
390
|
+
fromPartial(_: DeepPartial<MsgAddRateLimitResponse>): MsgAddRateLimitResponse;
|
|
391
|
+
fromAmino(_: MsgAddRateLimitResponseAmino): MsgAddRateLimitResponse;
|
|
392
|
+
toAmino(_: MsgAddRateLimitResponse): MsgAddRateLimitResponseAmino;
|
|
393
|
+
fromAminoMsg(object: MsgAddRateLimitResponseAminoMsg): MsgAddRateLimitResponse;
|
|
394
|
+
toAminoMsg(message: MsgAddRateLimitResponse): MsgAddRateLimitResponseAminoMsg;
|
|
395
|
+
fromProtoMsg(message: MsgAddRateLimitResponseProtoMsg): MsgAddRateLimitResponse;
|
|
396
|
+
toProto(message: MsgAddRateLimitResponse): Uint8Array;
|
|
397
|
+
toProtoMsg(message: MsgAddRateLimitResponse): MsgAddRateLimitResponseProtoMsg;
|
|
398
|
+
};
|
|
399
|
+
/**
|
|
400
|
+
* Gov tx to update an existing rate limit
|
|
401
|
+
* @name MsgUpdateRateLimit
|
|
402
|
+
* @package ibc.applications.rate_limiting.v1
|
|
403
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgUpdateRateLimit
|
|
404
|
+
*/
|
|
405
|
+
export declare const MsgUpdateRateLimit: {
|
|
406
|
+
typeUrl: string;
|
|
407
|
+
aminoType: string;
|
|
408
|
+
encode(message: MsgUpdateRateLimit, writer?: BinaryWriter): BinaryWriter;
|
|
409
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateRateLimit;
|
|
410
|
+
fromPartial(object: DeepPartial<MsgUpdateRateLimit>): MsgUpdateRateLimit;
|
|
411
|
+
fromAmino(object: MsgUpdateRateLimitAmino): MsgUpdateRateLimit;
|
|
412
|
+
toAmino(message: MsgUpdateRateLimit): MsgUpdateRateLimitAmino;
|
|
413
|
+
fromAminoMsg(object: MsgUpdateRateLimitAminoMsg): MsgUpdateRateLimit;
|
|
414
|
+
toAminoMsg(message: MsgUpdateRateLimit): MsgUpdateRateLimitAminoMsg;
|
|
415
|
+
fromProtoMsg(message: MsgUpdateRateLimitProtoMsg): MsgUpdateRateLimit;
|
|
416
|
+
toProto(message: MsgUpdateRateLimit): Uint8Array;
|
|
417
|
+
toProtoMsg(message: MsgUpdateRateLimit): MsgUpdateRateLimitProtoMsg;
|
|
418
|
+
};
|
|
419
|
+
/**
|
|
420
|
+
* MsgUpdateRateLimitResponse is the return type for UpdateRateLimit.
|
|
421
|
+
* @name MsgUpdateRateLimitResponse
|
|
422
|
+
* @package ibc.applications.rate_limiting.v1
|
|
423
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgUpdateRateLimitResponse
|
|
424
|
+
*/
|
|
425
|
+
export declare const MsgUpdateRateLimitResponse: {
|
|
426
|
+
typeUrl: string;
|
|
427
|
+
aminoType: string;
|
|
428
|
+
encode(_: MsgUpdateRateLimitResponse, writer?: BinaryWriter): BinaryWriter;
|
|
429
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateRateLimitResponse;
|
|
430
|
+
fromPartial(_: DeepPartial<MsgUpdateRateLimitResponse>): MsgUpdateRateLimitResponse;
|
|
431
|
+
fromAmino(_: MsgUpdateRateLimitResponseAmino): MsgUpdateRateLimitResponse;
|
|
432
|
+
toAmino(_: MsgUpdateRateLimitResponse): MsgUpdateRateLimitResponseAmino;
|
|
433
|
+
fromAminoMsg(object: MsgUpdateRateLimitResponseAminoMsg): MsgUpdateRateLimitResponse;
|
|
434
|
+
toAminoMsg(message: MsgUpdateRateLimitResponse): MsgUpdateRateLimitResponseAminoMsg;
|
|
435
|
+
fromProtoMsg(message: MsgUpdateRateLimitResponseProtoMsg): MsgUpdateRateLimitResponse;
|
|
436
|
+
toProto(message: MsgUpdateRateLimitResponse): Uint8Array;
|
|
437
|
+
toProtoMsg(message: MsgUpdateRateLimitResponse): MsgUpdateRateLimitResponseProtoMsg;
|
|
438
|
+
};
|
|
439
|
+
/**
|
|
440
|
+
* Gov tx to remove a rate limit
|
|
441
|
+
* @name MsgRemoveRateLimit
|
|
442
|
+
* @package ibc.applications.rate_limiting.v1
|
|
443
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgRemoveRateLimit
|
|
444
|
+
*/
|
|
445
|
+
export declare const MsgRemoveRateLimit: {
|
|
446
|
+
typeUrl: string;
|
|
447
|
+
aminoType: string;
|
|
448
|
+
encode(message: MsgRemoveRateLimit, writer?: BinaryWriter): BinaryWriter;
|
|
449
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRemoveRateLimit;
|
|
450
|
+
fromPartial(object: DeepPartial<MsgRemoveRateLimit>): MsgRemoveRateLimit;
|
|
451
|
+
fromAmino(object: MsgRemoveRateLimitAmino): MsgRemoveRateLimit;
|
|
452
|
+
toAmino(message: MsgRemoveRateLimit): MsgRemoveRateLimitAmino;
|
|
453
|
+
fromAminoMsg(object: MsgRemoveRateLimitAminoMsg): MsgRemoveRateLimit;
|
|
454
|
+
toAminoMsg(message: MsgRemoveRateLimit): MsgRemoveRateLimitAminoMsg;
|
|
455
|
+
fromProtoMsg(message: MsgRemoveRateLimitProtoMsg): MsgRemoveRateLimit;
|
|
456
|
+
toProto(message: MsgRemoveRateLimit): Uint8Array;
|
|
457
|
+
toProtoMsg(message: MsgRemoveRateLimit): MsgRemoveRateLimitProtoMsg;
|
|
458
|
+
};
|
|
459
|
+
/**
|
|
460
|
+
* MsgRemoveRateLimitResponse is the response type for RemoveRateLimit
|
|
461
|
+
* @name MsgRemoveRateLimitResponse
|
|
462
|
+
* @package ibc.applications.rate_limiting.v1
|
|
463
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgRemoveRateLimitResponse
|
|
464
|
+
*/
|
|
465
|
+
export declare const MsgRemoveRateLimitResponse: {
|
|
466
|
+
typeUrl: string;
|
|
467
|
+
aminoType: string;
|
|
468
|
+
encode(_: MsgRemoveRateLimitResponse, writer?: BinaryWriter): BinaryWriter;
|
|
469
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgRemoveRateLimitResponse;
|
|
470
|
+
fromPartial(_: DeepPartial<MsgRemoveRateLimitResponse>): MsgRemoveRateLimitResponse;
|
|
471
|
+
fromAmino(_: MsgRemoveRateLimitResponseAmino): MsgRemoveRateLimitResponse;
|
|
472
|
+
toAmino(_: MsgRemoveRateLimitResponse): MsgRemoveRateLimitResponseAmino;
|
|
473
|
+
fromAminoMsg(object: MsgRemoveRateLimitResponseAminoMsg): MsgRemoveRateLimitResponse;
|
|
474
|
+
toAminoMsg(message: MsgRemoveRateLimitResponse): MsgRemoveRateLimitResponseAminoMsg;
|
|
475
|
+
fromProtoMsg(message: MsgRemoveRateLimitResponseProtoMsg): MsgRemoveRateLimitResponse;
|
|
476
|
+
toProto(message: MsgRemoveRateLimitResponse): Uint8Array;
|
|
477
|
+
toProtoMsg(message: MsgRemoveRateLimitResponse): MsgRemoveRateLimitResponseProtoMsg;
|
|
478
|
+
};
|
|
479
|
+
/**
|
|
480
|
+
* Gov tx to reset the flow on a rate limit
|
|
481
|
+
* @name MsgResetRateLimit
|
|
482
|
+
* @package ibc.applications.rate_limiting.v1
|
|
483
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgResetRateLimit
|
|
484
|
+
*/
|
|
485
|
+
export declare const MsgResetRateLimit: {
|
|
486
|
+
typeUrl: string;
|
|
487
|
+
aminoType: string;
|
|
488
|
+
encode(message: MsgResetRateLimit, writer?: BinaryWriter): BinaryWriter;
|
|
489
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgResetRateLimit;
|
|
490
|
+
fromPartial(object: DeepPartial<MsgResetRateLimit>): MsgResetRateLimit;
|
|
491
|
+
fromAmino(object: MsgResetRateLimitAmino): MsgResetRateLimit;
|
|
492
|
+
toAmino(message: MsgResetRateLimit): MsgResetRateLimitAmino;
|
|
493
|
+
fromAminoMsg(object: MsgResetRateLimitAminoMsg): MsgResetRateLimit;
|
|
494
|
+
toAminoMsg(message: MsgResetRateLimit): MsgResetRateLimitAminoMsg;
|
|
495
|
+
fromProtoMsg(message: MsgResetRateLimitProtoMsg): MsgResetRateLimit;
|
|
496
|
+
toProto(message: MsgResetRateLimit): Uint8Array;
|
|
497
|
+
toProtoMsg(message: MsgResetRateLimit): MsgResetRateLimitProtoMsg;
|
|
498
|
+
};
|
|
499
|
+
/**
|
|
500
|
+
* MsgResetRateLimitResponse is the response type for ResetRateLimit.
|
|
501
|
+
* @name MsgResetRateLimitResponse
|
|
502
|
+
* @package ibc.applications.rate_limiting.v1
|
|
503
|
+
* @see proto type: ibc.applications.rate_limiting.v1.MsgResetRateLimitResponse
|
|
504
|
+
*/
|
|
505
|
+
export declare const MsgResetRateLimitResponse: {
|
|
506
|
+
typeUrl: string;
|
|
507
|
+
aminoType: string;
|
|
508
|
+
encode(_: MsgResetRateLimitResponse, writer?: BinaryWriter): BinaryWriter;
|
|
509
|
+
decode(input: BinaryReader | Uint8Array, length?: number): MsgResetRateLimitResponse;
|
|
510
|
+
fromPartial(_: DeepPartial<MsgResetRateLimitResponse>): MsgResetRateLimitResponse;
|
|
511
|
+
fromAmino(_: MsgResetRateLimitResponseAmino): MsgResetRateLimitResponse;
|
|
512
|
+
toAmino(_: MsgResetRateLimitResponse): MsgResetRateLimitResponseAmino;
|
|
513
|
+
fromAminoMsg(object: MsgResetRateLimitResponseAminoMsg): MsgResetRateLimitResponse;
|
|
514
|
+
toAminoMsg(message: MsgResetRateLimitResponse): MsgResetRateLimitResponseAminoMsg;
|
|
515
|
+
fromProtoMsg(message: MsgResetRateLimitResponseProtoMsg): MsgResetRateLimitResponse;
|
|
516
|
+
toProto(message: MsgResetRateLimitResponse): Uint8Array;
|
|
517
|
+
toProtoMsg(message: MsgResetRateLimitResponse): MsgResetRateLimitResponseProtoMsg;
|
|
518
|
+
};
|