@sparkdreamnft/sparkdreamjs 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/app/runtime/v1alpha1/module.d.ts +75 -10
- package/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/cosmos/app/v1alpha1/module.d.ts +55 -6
- package/cosmos/app/v1alpha1/module.js +19 -0
- package/cosmos/auth/module/v1/module.d.ts +72 -12
- package/cosmos/auth/module/v1/module.js +25 -1
- package/cosmos/auth/v1beta1/auth.d.ts +68 -10
- package/cosmos/auth/v1beta1/auth.js +26 -0
- package/cosmos/auth/v1beta1/genesis.d.ts +30 -6
- package/cosmos/auth/v1beta1/genesis.js +6 -0
- package/cosmos/auth/v1beta1/query.d.ts +334 -92
- package/cosmos/auth/v1beta1/query.js +120 -0
- package/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/cosmos/auth/v1beta1/query.rpc.Query.d.ts +6 -32
- package/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/cosmos/auth/v1beta1/tx.d.ts +31 -10
- package/cosmos/auth/v1beta1/tx.js +13 -0
- package/cosmos/auth/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/authz/module/v1/module.d.ts +18 -2
- package/cosmos/authz/module/v1/module.js +6 -0
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/event.d.ts +72 -16
- package/cosmos/authz/v1beta1/event.js +12 -0
- package/cosmos/authz/v1beta1/genesis.d.ts +18 -2
- package/cosmos/authz/v1beta1/genesis.js +6 -0
- package/cosmos/authz/v1beta1/query.d.ts +168 -32
- package/cosmos/authz/v1beta1/query.js +36 -0
- package/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/cosmos/authz/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/bank/module/v1/module.d.ts +24 -4
- package/cosmos/bank/module/v1/module.js +6 -0
- package/cosmos/bank/v1beta1/authz.d.ts +13 -8
- package/cosmos/bank/v1beta1/authz.js +7 -0
- package/cosmos/bank/v1beta1/bank.d.ts +136 -34
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/genesis.d.ts +61 -16
- package/cosmos/bank/v1beta1/genesis.js +13 -0
- package/cosmos/bank/v1beta1/query.d.ts +599 -138
- package/cosmos/bank/v1beta1/query.js +179 -0
- package/cosmos/bank/v1beta1/query.lcd.d.ts +2 -2
- package/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/cosmos/bank/v1beta1/query.rpc.Query.d.ts +7 -17
- package/cosmos/bank/v1beta1/query.rpc.Query.js +17 -27
- package/cosmos/bank/v1beta1/tx.d.ts +143 -30
- package/cosmos/bank/v1beta1/tx.js +53 -0
- package/cosmos/bank/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -80
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/node/v1beta1/query.d.ts +102 -18
- package/cosmos/base/node/v1beta1/query.js +24 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -4
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/reflection/v2alpha1/reflection.d.ts +613 -98
- package/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/benchmark/module/v1/module.d.ts +102 -26
- package/cosmos/benchmark/module/v1/module.js +12 -0
- package/cosmos/benchmark/v1/benchmark.d.ts +18 -2
- package/cosmos/benchmark/v1/benchmark.js +6 -0
- package/cosmos/benchmark/v1/tx.d.ts +36 -4
- package/cosmos/benchmark/v1/tx.js +12 -0
- package/cosmos/bundle.d.ts +2283 -2421
- package/cosmos/bundle.js +242 -261
- package/cosmos/circuit/module/v1/module.d.ts +24 -4
- package/cosmos/circuit/module/v1/module.js +6 -0
- package/cosmos/circuit/v1/query.d.ts +120 -16
- package/cosmos/circuit/v1/query.js +36 -0
- package/cosmos/circuit/v1/tx.d.ts +126 -18
- package/cosmos/circuit/v1/tx.js +36 -0
- package/cosmos/circuit/v1/types.d.ts +55 -6
- package/cosmos/circuit/v1/types.js +19 -0
- package/cosmos/consensus/module/v1/module.d.ts +24 -4
- package/cosmos/consensus/module/v1/module.js +6 -0
- package/cosmos/consensus/v1/query.d.ts +36 -4
- package/cosmos/consensus/v1/query.js +12 -0
- package/cosmos/consensus/v1/tx.d.ts +37 -6
- package/cosmos/consensus/v1/tx.js +13 -0
- package/cosmos/consensus/v1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/cosmos/counter/module/v1/module.d.ts +24 -4
- package/cosmos/counter/module/v1/module.js +6 -0
- package/cosmos/counter/v1/query.d.ts +36 -4
- package/cosmos/counter/v1/query.js +12 -0
- package/cosmos/counter/v1/tx.d.ts +54 -10
- package/cosmos/counter/v1/tx.js +12 -0
- package/cosmos/crisis/module/v1/module.d.ts +30 -6
- package/cosmos/crisis/module/v1/module.js +6 -0
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/hd/v1/hd.d.ts +42 -10
- package/cosmos/crypto/hd/v1/hd.js +6 -0
- package/cosmos/crypto/keyring/v1/record.d.ts +121 -20
- package/cosmos/crypto/keyring/v1/record.js +31 -0
- package/cosmos/crypto/multisig/keys.d.ts +14 -0
- package/cosmos/crypto/multisig/keys.js +8 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/module/v1/module.d.ts +24 -4
- package/cosmos/distribution/module/v1/module.js +6 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/genesis.d.ts +298 -66
- package/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/cosmos/distribution/v1beta1/query.d.ts +430 -58
- package/cosmos/distribution/v1beta1/query.js +136 -0
- package/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.d.ts +5 -1
- package/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/cosmos/distribution/v1beta1/tx.d.ts +199 -34
- package/cosmos/distribution/v1beta1/tx.js +97 -0
- package/cosmos/distribution/v1beta1/tx.rpc.msg.d.ts +3 -5
- package/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/cosmos/epochs/module/v1/module.d.ts +18 -2
- package/cosmos/epochs/module/v1/module.js +6 -0
- package/cosmos/epochs/v1beta1/events.d.ts +36 -4
- package/cosmos/epochs/v1beta1/events.js +12 -0
- package/cosmos/epochs/v1beta1/genesis.d.ts +37 -4
- package/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/cosmos/epochs/v1beta1/query.d.ts +52 -0
- package/cosmos/epochs/v1beta1/query.js +28 -0
- package/cosmos/evidence/module/v1/module.d.ts +18 -2
- package/cosmos/evidence/module/v1/module.js +6 -0
- package/cosmos/feegrant/module/v1/module.d.ts +18 -2
- package/cosmos/feegrant/module/v1/module.js +6 -0
- package/cosmos/feegrant/v1beta1/feegrant.d.ts +118 -22
- package/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/cosmos/feegrant/v1beta1/genesis.d.ts +18 -2
- package/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/cosmos/feegrant/v1beta1/query.d.ts +150 -34
- package/cosmos/feegrant/v1beta1/query.js +36 -0
- package/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/cosmos/feegrant/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/feegrant/v1beta1/tx.d.ts +131 -27
- package/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/genutil/module/v1/module.d.ts +18 -2
- package/cosmos/genutil/module/v1/module.js +6 -0
- package/cosmos/gov/module/v1/module.d.ts +24 -4
- package/cosmos/gov/module/v1/module.js +6 -0
- package/cosmos/gov/v1/genesis.d.ts +48 -24
- package/cosmos/gov/v1/genesis.js +6 -0
- package/cosmos/gov/v1/gov.d.ts +341 -124
- package/cosmos/gov/v1/gov.js +59 -0
- package/cosmos/gov/v1/query.d.ts +469 -92
- package/cosmos/gov/v1/query.js +109 -0
- package/cosmos/gov/v1/tx.d.ts +368 -93
- package/cosmos/gov/v1/tx.js +88 -0
- package/cosmos/gov/v1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/cosmos/gov/v1beta1/genesis.d.ts +60 -16
- package/cosmos/gov/v1beta1/genesis.js +6 -0
- package/cosmos/gov/v1beta1/gov.d.ts +291 -69
- package/cosmos/gov/v1beta1/gov.js +57 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/tx.d.ts +209 -45
- package/cosmos/gov/v1beta1/tx.js +49 -0
- package/cosmos/gov/v1beta1/tx.rpc.msg.d.ts +1 -5
- package/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/group/module/v1/module.d.ts +18 -2
- package/cosmos/group/module/v1/module.js +6 -0
- package/cosmos/group/v1/events.d.ts +300 -56
- package/cosmos/group/v1/events.js +66 -0
- package/cosmos/group/v1/genesis.d.ts +48 -12
- package/cosmos/group/v1/genesis.js +6 -0
- package/cosmos/group/v1/query.d.ts +768 -152
- package/cosmos/group/v1/query.js +168 -0
- package/cosmos/group/v1/query.lcd.js +1 -3
- package/cosmos/group/v1/query.rpc.Query.d.ts +1 -5
- package/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/cosmos/group/v1/tx.d.ts +804 -163
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/types.d.ts +398 -91
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/mint/module/v1/module.d.ts +24 -4
- package/cosmos/mint/module/v1/module.js +6 -0
- package/cosmos/mint/v1beta1/genesis.d.ts +30 -6
- package/cosmos/mint/v1beta1/genesis.js +6 -0
- package/cosmos/mint/v1beta1/mint.d.ts +84 -20
- package/cosmos/mint/v1beta1/mint.js +12 -0
- package/cosmos/mint/v1beta1/query.d.ts +111 -12
- package/cosmos/mint/v1beta1/query.js +39 -0
- package/cosmos/mint/v1beta1/tx.d.ts +31 -10
- package/cosmos/mint/v1beta1/tx.js +13 -0
- package/cosmos/mint/v1beta1/tx.rpc.msg.d.ts +0 -2
- package/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/cosmos/nft/module/v1/module.d.ts +18 -2
- package/cosmos/nft/module/v1/module.js +6 -0
- package/cosmos/params/module/v1/module.d.ts +18 -2
- package/cosmos/params/module/v1/module.js +6 -0
- package/cosmos/params/v1beta1/params.d.ts +31 -2
- package/cosmos/params/v1beta1/params.js +13 -0
- package/cosmos/params/v1beta1/query.d.ts +93 -22
- package/cosmos/params/v1beta1/query.js +33 -0
- package/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/cosmos/params/v1beta1/query.rpc.Query.d.ts +1 -5
- package/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/cosmos/protocolpool/module/v1/module.d.ts +24 -4
- package/cosmos/protocolpool/module/v1/module.js +6 -0
- package/cosmos/protocolpool/v1/genesis.d.ts +24 -4
- package/cosmos/protocolpool/v1/genesis.js +6 -0
- package/cosmos/protocolpool/v1/query.d.ts +138 -12
- package/cosmos/protocolpool/v1/query.js +54 -0
- package/cosmos/protocolpool/v1/tx.d.ts +217 -30
- package/cosmos/protocolpool/v1/tx.js +67 -0
- package/cosmos/protocolpool/v1/types.d.ts +54 -10
- package/cosmos/protocolpool/v1/types.js +12 -0
- package/cosmos/reflection/v1/reflection.d.ts +42 -6
- package/cosmos/reflection/v1/reflection.js +12 -0
- package/cosmos/rpc.query.d.ts +1 -9
- package/cosmos/rpc.query.js +0 -5
- package/cosmos/slashing/module/v1/module.d.ts +24 -4
- package/cosmos/slashing/module/v1/module.js +6 -0
- package/cosmos/staking/module/v1/module.d.ts +36 -8
- package/cosmos/staking/module/v1/module.js +6 -0
- package/cosmos/staking/v1beta1/authz.d.ts +43 -15
- package/cosmos/staking/v1beta1/authz.js +13 -5
- package/cosmos/staking/v1beta1/genesis.d.ts +84 -20
- package/cosmos/staking/v1beta1/genesis.js +12 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/staking.d.ts +631 -121
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +234 -42
- package/cosmos/staking/v1beta1/tx.js +88 -0
- package/cosmos/staking/v1beta1/tx.rpc.msg.d.ts +0 -3
- package/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/cosmos/store/internal/kv/v1beta1/kv.d.ts +36 -4
- package/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/cosmos/store/snapshots/v1/snapshot.d.ts +114 -30
- package/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/cosmos/store/streaming/abci/grpc.d.ts +78 -10
- package/cosmos/store/streaming/abci/grpc.js +24 -0
- package/cosmos/store/v1beta1/commit_info.d.ts +39 -0
- package/cosmos/store/v1beta1/commit_info.js +21 -0
- package/cosmos/store/v1beta1/listening.d.ts +45 -10
- package/cosmos/store/v1beta1/listening.js +15 -0
- package/cosmos/tx/config/v1/config.d.ts +18 -2
- package/cosmos/tx/config/v1/config.js +6 -0
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +355 -94
- package/cosmos/tx/v1beta1/service.js +125 -0
- package/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/cosmos/tx/v1beta1/service.rpc.Service.d.ts +5 -25
- package/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/cosmos/tx/v1beta1/tx.d.ts +371 -80
- package/cosmos/tx/v1beta1/tx.js +118 -0
- package/cosmos/upgrade/module/v1/module.d.ts +24 -4
- package/cosmos/upgrade/module/v1/module.js +6 -0
- package/cosmos/upgrade/v1beta1/query.d.ts +158 -30
- package/cosmos/upgrade/v1beta1/query.js +70 -0
- package/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/cosmos/upgrade/v1beta1/query.rpc.Query.d.ts +2 -10
- package/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/cosmos/upgrade/v1beta1/tx.d.ts +66 -22
- package/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.d.ts +1 -7
- package/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +118 -30
- package/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/cosmos/vesting/module/v1/module.d.ts +18 -2
- package/cosmos/vesting/module/v1/module.js +6 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +94 -22
- package/cosmos/vesting/v1beta1/tx.js +40 -0
- package/cosmos/vesting/v1beta1/tx.rpc.msg.d.ts +0 -4
- package/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/cosmos/vesting/v1beta1/vesting.d.ts +103 -12
- package/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/app/runtime/v1alpha1/module.js +44 -1
- package/esm/cosmos/app/v1alpha1/module.js +19 -0
- package/esm/cosmos/auth/module/v1/module.js +25 -1
- package/esm/cosmos/auth/v1beta1/auth.js +26 -0
- package/esm/cosmos/auth/v1beta1/genesis.js +6 -0
- package/esm/cosmos/auth/v1beta1/query.js +120 -0
- package/esm/cosmos/auth/v1beta1/query.lcd.js +7 -21
- package/esm/cosmos/auth/v1beta1/query.rpc.Query.js +7 -21
- package/esm/cosmos/auth/v1beta1/tx.js +13 -0
- package/esm/cosmos/auth/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/authz/module/v1/module.js +6 -0
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/event.js +12 -0
- package/esm/cosmos/authz/v1beta1/genesis.js +6 -0
- package/esm/cosmos/authz/v1beta1/query.js +36 -0
- package/esm/cosmos/authz/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/authz/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/bank/module/v1/module.js +6 -0
- package/esm/cosmos/bank/v1beta1/authz.js +7 -0
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/genesis.js +13 -0
- package/esm/cosmos/bank/v1beta1/query.js +179 -0
- package/esm/cosmos/bank/v1beta1/query.lcd.js +28 -29
- package/esm/cosmos/bank/v1beta1/query.rpc.Query.js +18 -28
- package/esm/cosmos/bank/v1beta1/tx.js +53 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/node/v1beta1/query.js +24 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/reflection/v2alpha1/reflection.js +163 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/benchmark/module/v1/module.js +12 -0
- package/esm/cosmos/benchmark/v1/benchmark.js +6 -0
- package/esm/cosmos/benchmark/v1/tx.js +12 -0
- package/esm/cosmos/bundle.js +242 -261
- package/esm/cosmos/circuit/module/v1/module.js +6 -0
- package/esm/cosmos/circuit/v1/query.js +36 -0
- package/esm/cosmos/circuit/v1/tx.js +36 -0
- package/esm/cosmos/circuit/v1/types.js +19 -0
- package/esm/cosmos/consensus/module/v1/module.js +6 -0
- package/esm/cosmos/consensus/v1/query.js +12 -0
- package/esm/cosmos/consensus/v1/tx.js +13 -0
- package/esm/cosmos/consensus/v1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/counter/module/v1/module.js +6 -0
- package/esm/cosmos/counter/v1/query.js +12 -0
- package/esm/cosmos/counter/v1/tx.js +12 -0
- package/esm/cosmos/crisis/module/v1/module.js +6 -0
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/hd/v1/hd.js +6 -0
- package/esm/cosmos/crypto/keyring/v1/record.js +31 -0
- package/esm/cosmos/crypto/multisig/keys.js +8 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/module/v1/module.js +6 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/genesis.js +52 -0
- package/esm/cosmos/distribution/v1beta1/query.js +136 -0
- package/esm/cosmos/distribution/v1beta1/query.lcd.js +3 -1
- package/esm/cosmos/distribution/v1beta1/query.rpc.Query.js +3 -1
- package/esm/cosmos/distribution/v1beta1/tx.js +97 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/esm/cosmos/epochs/module/v1/module.js +6 -0
- package/esm/cosmos/epochs/v1beta1/events.js +12 -0
- package/esm/cosmos/epochs/v1beta1/genesis.js +13 -0
- package/esm/cosmos/epochs/v1beta1/query.js +28 -0
- package/esm/cosmos/evidence/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/module/v1/module.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/feegrant.js +26 -0
- package/esm/cosmos/feegrant/v1beta1/genesis.js +6 -0
- package/esm/cosmos/feegrant/v1beta1/query.js +36 -0
- package/esm/cosmos/feegrant/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/feegrant/v1beta1/tx.js +37 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/genutil/module/v1/module.js +6 -0
- package/esm/cosmos/gov/module/v1/module.js +6 -0
- package/esm/cosmos/gov/v1/genesis.js +6 -0
- package/esm/cosmos/gov/v1/gov.js +59 -0
- package/esm/cosmos/gov/v1/query.js +109 -0
- package/esm/cosmos/gov/v1/tx.js +88 -0
- package/esm/cosmos/gov/v1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/gov/v1beta1/genesis.js +6 -0
- package/esm/cosmos/gov/v1beta1/gov.js +57 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/tx.js +49 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/group/module/v1/module.js +6 -0
- package/esm/cosmos/group/v1/events.js +66 -0
- package/esm/cosmos/group/v1/genesis.js +6 -0
- package/esm/cosmos/group/v1/query.js +168 -0
- package/esm/cosmos/group/v1/query.lcd.js +1 -3
- package/esm/cosmos/group/v1/query.rpc.Query.js +1 -3
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/mint/module/v1/module.js +6 -0
- package/esm/cosmos/mint/v1beta1/genesis.js +6 -0
- package/esm/cosmos/mint/v1beta1/mint.js +12 -0
- package/esm/cosmos/mint/v1beta1/query.js +39 -0
- package/esm/cosmos/mint/v1beta1/tx.js +13 -0
- package/esm/cosmos/mint/v1beta1/tx.rpc.msg.js +1 -3
- package/esm/cosmos/nft/module/v1/module.js +6 -0
- package/esm/cosmos/params/module/v1/module.js +6 -0
- package/esm/cosmos/params/v1beta1/params.js +13 -0
- package/esm/cosmos/params/v1beta1/query.js +33 -0
- package/esm/cosmos/params/v1beta1/query.lcd.js +1 -3
- package/esm/cosmos/params/v1beta1/query.rpc.Query.js +1 -3
- package/esm/cosmos/protocolpool/module/v1/module.js +6 -0
- package/esm/cosmos/protocolpool/v1/genesis.js +6 -0
- package/esm/cosmos/protocolpool/v1/query.js +54 -0
- package/esm/cosmos/protocolpool/v1/tx.js +67 -0
- package/esm/cosmos/protocolpool/v1/types.js +12 -0
- package/esm/cosmos/reflection/v1/reflection.js +12 -0
- package/esm/cosmos/rpc.query.js +0 -5
- package/esm/cosmos/slashing/module/v1/module.js +6 -0
- package/esm/cosmos/staking/module/v1/module.js +6 -0
- package/esm/cosmos/staking/v1beta1/authz.js +13 -5
- package/esm/cosmos/staking/v1beta1/genesis.js +12 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +88 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.msg.js +2 -5
- package/esm/cosmos/store/internal/kv/v1beta1/kv.js +12 -0
- package/esm/cosmos/store/snapshots/v1/snapshot.js +42 -0
- package/esm/cosmos/store/streaming/abci/grpc.js +24 -0
- package/esm/cosmos/store/v1beta1/commit_info.js +21 -0
- package/esm/cosmos/store/v1beta1/listening.js +15 -0
- package/esm/cosmos/tx/config/v1/config.js +6 -0
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +125 -0
- package/esm/cosmos/tx/v1beta1/service.lcd.js +1 -3
- package/esm/cosmos/tx/v1beta1/service.rpc.Service.js +5 -15
- package/esm/cosmos/tx/v1beta1/tx.js +119 -1
- package/esm/cosmos/upgrade/module/v1/module.js +6 -0
- package/esm/cosmos/upgrade/v1beta1/query.js +70 -0
- package/esm/cosmos/upgrade/v1beta1/query.lcd.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/query.rpc.Query.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/tx.js +24 -0
- package/esm/cosmos/upgrade/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +32 -0
- package/esm/cosmos/vesting/module/v1/module.js +6 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +40 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.msg.js +2 -6
- package/esm/cosmos/vesting/v1beta1/vesting.js +43 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/gogoproto/bundle.js +2 -2
- package/esm/google/api/http.js +283 -0
- package/esm/google/bundle.js +7 -7
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +220 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/esm/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/esm/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/esm/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/esm/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/esm/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/esm/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/esm/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/esm/ibc/applications/rate_limiting/v1/genesis.js +139 -0
- package/esm/ibc/applications/rate_limiting/v1/query.js +903 -0
- package/esm/ibc/applications/rate_limiting/v1/query.lcd.js +44 -0
- package/esm/ibc/applications/rate_limiting/v1/query.rpc.Query.js +71 -0
- package/esm/ibc/applications/rate_limiting/v1/rate_limiting.js +632 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.amino.js +24 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.js +726 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.registry.js +87 -0
- package/esm/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +35 -0
- package/esm/ibc/applications/transfer/v1/authz.js +13 -0
- package/esm/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/esm/ibc/applications/transfer/v1/genesis.js +6 -0
- package/esm/ibc/applications/transfer/v1/packet.js +8 -0
- package/esm/ibc/applications/transfer/v1/query.js +78 -0
- package/esm/ibc/applications/transfer/v1/token.js +18 -0
- package/esm/ibc/applications/transfer/v1/transfer.js +9 -0
- package/esm/ibc/applications/transfer/v1/tx.js +40 -1
- package/esm/ibc/bundle.js +196 -173
- package/esm/ibc/client.js +4 -1
- package/esm/ibc/core/channel/v1/channel.js +64 -0
- package/esm/ibc/core/channel/v1/genesis.js +13 -0
- package/esm/ibc/core/channel/v1/query.js +197 -0
- package/esm/ibc/core/channel/v1/tx.js +129 -0
- package/esm/ibc/core/channel/v2/genesis.js +21 -0
- package/esm/ibc/core/channel/v2/packet.js +29 -0
- package/esm/ibc/core/channel/v2/query.js +100 -0
- package/esm/ibc/core/channel/v2/tx.js +48 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/genesis.js +20 -0
- package/esm/ibc/core/client/v1/query.js +154 -0
- package/esm/ibc/core/client/v1/tx.amino.js +1 -6
- package/esm/ibc/core/client/v1/tx.js +86 -151
- package/esm/ibc/core/client/v1/tx.registry.js +2 -20
- package/esm/ibc/core/client/v1/tx.rpc.msg.js +1 -7
- package/esm/ibc/core/client/v2/config.js +9 -0
- package/esm/ibc/core/client/v2/counterparty.js +6 -0
- package/esm/ibc/core/client/v2/genesis.js +12 -0
- package/esm/ibc/core/client/v2/query.js +26 -0
- package/esm/ibc/core/client/v2/tx.js +24 -0
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/commitment/v2/commitment.js +36 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/genesis.js +6 -0
- package/esm/ibc/core/connection/v1/query.js +83 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/lcd.js +5 -0
- package/esm/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/esm/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/esm/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/esm/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/esm/ibc/lightclients/wasm/v1/query.js +24 -0
- package/esm/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/esm/ibc/lightclients/wasm/v1/wasm.js +18 -73
- package/esm/ibc/rpc.query.js +3 -5
- package/esm/ibc/rpc.tx.js +3 -0
- package/esm/index.js +1 -1
- package/esm/sparkdream/blog/module/v1/module.js +6 -0
- package/esm/sparkdream/blog/v1/genesis.js +6 -0
- package/esm/sparkdream/blog/v1/params.js +6 -0
- package/esm/sparkdream/blog/v1/post.js +6 -0
- package/esm/sparkdream/blog/v1/query.js +36 -0
- package/esm/sparkdream/blog/v1/tx.js +49 -0
- package/esm/sparkdream/bundle.js +41 -41
- package/esm/sparkdream/rpc.query.js +0 -5
- package/esm/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/esm/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/esm/sparkdream/sparkdream/v1/params.js +6 -0
- package/esm/sparkdream/sparkdream/v1/query.js +12 -0
- package/esm/sparkdream/sparkdream/v1/tx.js +13 -0
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/bundle.js +18 -18
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/p2p/types.js +20 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/gogoproto/bundle.js +2 -2
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/bundle.d.ts +418 -418
- package/google/bundle.js +7 -7
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +738 -90
- package/google/protobuf/descriptor.js +220 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/interchain_accounts/controller/v1/controller.d.ts +19 -2
- package/ibc/applications/interchain_accounts/controller/v1/controller.js +7 -0
- package/ibc/applications/interchain_accounts/controller/v1/query.d.ts +78 -10
- package/ibc/applications/interchain_accounts/controller/v1/query.js +24 -0
- package/ibc/applications/interchain_accounts/controller/v1/tx.d.ts +114 -14
- package/ibc/applications/interchain_accounts/controller/v1/tx.js +36 -0
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.d.ts +85 -8
- package/ibc/applications/interchain_accounts/genesis/v1/genesis.js +31 -0
- package/ibc/applications/interchain_accounts/host/v1/host.d.ts +38 -4
- package/ibc/applications/interchain_accounts/host/v1/host.js +14 -0
- package/ibc/applications/interchain_accounts/host/v1/query.d.ts +42 -6
- package/ibc/applications/interchain_accounts/host/v1/query.js +12 -0
- package/ibc/applications/interchain_accounts/host/v1/tx.d.ts +102 -18
- package/ibc/applications/interchain_accounts/host/v1/tx.js +24 -0
- package/ibc/applications/interchain_accounts/v1/account.d.ts +18 -2
- package/ibc/applications/interchain_accounts/v1/account.js +6 -0
- package/ibc/applications/interchain_accounts/v1/metadata.d.ts +43 -10
- package/ibc/applications/interchain_accounts/v1/metadata.js +7 -0
- package/ibc/applications/interchain_accounts/v1/packet.d.ts +36 -4
- package/ibc/applications/interchain_accounts/v1/packet.js +12 -0
- package/ibc/applications/packet_forward_middleware/v1/genesis.d.ts +46 -2
- package/ibc/applications/packet_forward_middleware/v1/genesis.js +18 -0
- package/ibc/applications/rate_limiting/v1/genesis.d.ts +57 -0
- package/ibc/applications/rate_limiting/v1/genesis.js +142 -0
- package/ibc/applications/rate_limiting/v1/query.d.ts +551 -0
- package/ibc/applications/rate_limiting/v1/query.js +906 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.d.ts +14 -0
- package/ibc/applications/rate_limiting/v1/query.lcd.js +48 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.d.ts +40 -0
- package/ibc/applications/rate_limiting/v1/query.rpc.Query.js +76 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.d.ts +374 -0
- package/ibc/applications/rate_limiting/v1/rate_limiting.js +637 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.d.ts +23 -0
- package/ibc/applications/rate_limiting/v1/tx.amino.js +27 -0
- package/ibc/applications/rate_limiting/v1/tx.d.ts +518 -0
- package/ibc/applications/rate_limiting/v1/tx.js +729 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.d.ts +61 -0
- package/ibc/applications/rate_limiting/v1/tx.registry.js +91 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.d.ts +22 -0
- package/ibc/applications/rate_limiting/v1/tx.rpc.msg.js +40 -0
- package/ibc/applications/transfer/v1/authz.d.ts +61 -12
- package/ibc/applications/transfer/v1/authz.js +13 -0
- package/ibc/applications/transfer/v1/denomtrace.d.ts +22 -4
- package/ibc/applications/transfer/v1/denomtrace.js +8 -0
- package/ibc/applications/transfer/v1/genesis.d.ts +18 -2
- package/ibc/applications/transfer/v1/genesis.js +6 -0
- package/ibc/applications/transfer/v1/packet.d.ts +44 -10
- package/ibc/applications/transfer/v1/packet.js +8 -0
- package/ibc/applications/transfer/v1/query.d.ts +252 -34
- package/ibc/applications/transfer/v1/query.js +78 -0
- package/ibc/applications/transfer/v1/token.d.ts +78 -14
- package/ibc/applications/transfer/v1/token.js +18 -0
- package/ibc/applications/transfer/v1/transfer.d.ts +15 -0
- package/ibc/applications/transfer/v1/transfer.js +9 -0
- package/ibc/applications/transfer/v1/tx.d.ts +135 -22
- package/ibc/applications/transfer/v1/tx.js +40 -1
- package/ibc/bundle.d.ts +3830 -3396
- package/ibc/bundle.js +196 -173
- package/ibc/client.d.ts +20 -5
- package/ibc/client.js +4 -1
- package/ibc/core/channel/v1/channel.d.ts +292 -60
- package/ibc/core/channel/v1/channel.js +64 -0
- package/ibc/core/channel/v1/genesis.d.ts +37 -4
- package/ibc/core/channel/v1/genesis.js +13 -0
- package/ibc/core/channel/v1/query.d.ts +839 -158
- package/ibc/core/channel/v1/query.js +197 -0
- package/ibc/core/channel/v1/tx.d.ts +335 -30
- package/ibc/core/channel/v1/tx.js +129 -0
- package/ibc/core/channel/v2/genesis.d.ts +81 -14
- package/ibc/core/channel/v2/genesis.js +21 -0
- package/ibc/core/channel/v2/packet.d.ts +137 -28
- package/ibc/core/channel/v2/packet.js +29 -0
- package/ibc/core/channel/v2/query.d.ts +490 -98
- package/ibc/core/channel/v2/query.js +100 -0
- package/ibc/core/channel/v2/tx.d.ts +144 -16
- package/ibc/core/channel/v2/tx.js +48 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/genesis.d.ts +82 -16
- package/ibc/core/client/v1/genesis.js +20 -0
- package/ibc/core/client/v1/query.d.ts +508 -74
- package/ibc/core/client/v1/query.js +154 -0
- package/ibc/core/client/v1/tx.amino.d.ts +1 -6
- package/ibc/core/client/v1/tx.amino.js +0 -5
- package/ibc/core/client/v1/tx.d.ts +336 -138
- package/ibc/core/client/v1/tx.js +87 -152
- package/ibc/core/client/v1/tx.registry.d.ts +1 -13
- package/ibc/core/client/v1/tx.registry.js +1 -19
- package/ibc/core/client/v1/tx.rpc.msg.d.ts +1 -4
- package/ibc/core/client/v1/tx.rpc.msg.js +0 -6
- package/ibc/core/client/v2/config.d.ts +21 -2
- package/ibc/core/client/v2/config.js +9 -0
- package/ibc/core/client/v2/counterparty.d.ts +30 -6
- package/ibc/core/client/v2/counterparty.js +6 -0
- package/ibc/core/client/v2/genesis.d.ts +54 -10
- package/ibc/core/client/v2/genesis.js +12 -0
- package/ibc/core/client/v2/query.d.ts +74 -8
- package/ibc/core/client/v2/query.js +26 -0
- package/ibc/core/client/v2/tx.d.ts +108 -20
- package/ibc/core/client/v2/tx.js +24 -0
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/commitment/v2/commitment.d.ts +42 -0
- package/ibc/core/commitment/v2/commitment.js +36 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/genesis.d.ts +24 -4
- package/ibc/core/connection/v1/genesis.js +6 -0
- package/ibc/core/connection/v1/query.d.ts +293 -46
- package/ibc/core/connection/v1/query.js +83 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/lcd.d.ts +3 -0
- package/ibc/lcd.js +5 -0
- package/ibc/lightclients/solomachine/v2/solomachine.d.ts +277 -24
- package/ibc/lightclients/solomachine/v2/solomachine.js +109 -0
- package/ibc/lightclients/solomachine/v3/solomachine.d.ts +180 -26
- package/ibc/lightclients/solomachine/v3/solomachine.js +54 -0
- package/ibc/lightclients/tendermint/v1/tendermint.d.ts +140 -26
- package/ibc/lightclients/tendermint/v1/tendermint.js +44 -0
- package/ibc/lightclients/wasm/v1/genesis.d.ts +48 -8
- package/ibc/lightclients/wasm/v1/genesis.js +12 -0
- package/ibc/lightclients/wasm/v1/query.d.ts +96 -16
- package/ibc/lightclients/wasm/v1/query.js +24 -0
- package/ibc/lightclients/wasm/v1/tx.d.ts +162 -30
- package/ibc/lightclients/wasm/v1/tx.js +36 -0
- package/ibc/lightclients/wasm/v1/wasm.d.ts +52 -46
- package/ibc/lightclients/wasm/v1/wasm.js +19 -74
- package/ibc/rpc.query.d.ts +11 -9
- package/ibc/rpc.query.js +3 -5
- package/ibc/rpc.tx.d.ts +3 -0
- package/ibc/rpc.tx.js +3 -0
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
- package/sparkdream/blog/module/v1/module.d.ts +18 -2
- package/sparkdream/blog/module/v1/module.js +6 -0
- package/sparkdream/blog/v1/genesis.d.ts +24 -4
- package/sparkdream/blog/v1/genesis.js +6 -0
- package/sparkdream/blog/v1/params.d.ts +18 -2
- package/sparkdream/blog/v1/params.js +6 -0
- package/sparkdream/blog/v1/post.d.ts +18 -2
- package/sparkdream/blog/v1/post.js +6 -0
- package/sparkdream/blog/v1/query.d.ts +114 -14
- package/sparkdream/blog/v1/query.js +36 -0
- package/sparkdream/blog/v1/tx.d.ts +151 -18
- package/sparkdream/blog/v1/tx.js +49 -0
- package/sparkdream/bundle.d.ts +302 -310
- package/sparkdream/bundle.js +41 -41
- package/sparkdream/rpc.query.d.ts +1 -9
- package/sparkdream/rpc.query.js +0 -5
- package/sparkdream/sparkdream/module/v1/module.d.ts +18 -2
- package/sparkdream/sparkdream/module/v1/module.js +6 -0
- package/sparkdream/sparkdream/v1/genesis.d.ts +24 -4
- package/sparkdream/sparkdream/v1/genesis.js +6 -0
- package/sparkdream/sparkdream/v1/params.d.ts +18 -2
- package/sparkdream/sparkdream/v1/params.js +6 -0
- package/sparkdream/sparkdream/v1/query.d.ts +42 -6
- package/sparkdream/sparkdream/v1/query.js +12 -0
- package/sparkdream/sparkdream/v1/tx.d.ts +37 -4
- package/sparkdream/sparkdream/v1/tx.js +13 -0
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +18 -18
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/p2p/types.d.ts +60 -0
- package/tendermint/p2p/types.js +20 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
- package/cosmos/orm/module/v1alpha1/module.d.ts +0 -38
- package/cosmos/orm/module/v1alpha1/module.js +0 -62
- package/cosmos/orm/query/v1alpha1/query.d.ts +0 -353
- package/cosmos/orm/query/v1alpha1/query.js +0 -695
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.d.ts +0 -20
- package/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -38
- package/esm/cosmos/orm/module/v1alpha1/module.js +0 -59
- package/esm/cosmos/orm/query/v1alpha1/query.js +0 -692
- package/esm/cosmos/orm/query/v1alpha1/query.rpc.Query.js +0 -33
package/cosmos/bundle.js
CHANGED
|
@@ -117,133 +117,130 @@ const _80 = __importStar(require("./mint/v1beta1/query"));
|
|
|
117
117
|
const _81 = __importStar(require("./mint/v1beta1/tx"));
|
|
118
118
|
const _82 = __importStar(require("./msg/textual/v1/textual"));
|
|
119
119
|
const _83 = __importStar(require("./nft/module/v1/module"));
|
|
120
|
-
const _84 = __importStar(require("./
|
|
121
|
-
const _85 = __importStar(require("./
|
|
122
|
-
const _86 = __importStar(require("./params/
|
|
123
|
-
const _87 = __importStar(require("./
|
|
124
|
-
const _88 = __importStar(require("./
|
|
125
|
-
const _89 = __importStar(require("./protocolpool/
|
|
126
|
-
const _90 = __importStar(require("./protocolpool/v1/
|
|
127
|
-
const _91 = __importStar(require("./protocolpool/v1/
|
|
128
|
-
const _92 = __importStar(require("./
|
|
129
|
-
const _93 = __importStar(require("./
|
|
130
|
-
const _94 = __importStar(require("./
|
|
131
|
-
const _95 = __importStar(require("./
|
|
132
|
-
const _96 = __importStar(require("./
|
|
133
|
-
const _97 = __importStar(require("./staking/
|
|
134
|
-
const _98 = __importStar(require("./staking/v1beta1/
|
|
135
|
-
const _99 = __importStar(require("./staking/v1beta1/
|
|
136
|
-
const _100 = __importStar(require("./staking/v1beta1/
|
|
137
|
-
const _101 = __importStar(require("./
|
|
138
|
-
const _102 = __importStar(require("./
|
|
139
|
-
const _103 = __importStar(require("./store/
|
|
140
|
-
const _104 = __importStar(require("./store/
|
|
141
|
-
const _105 = __importStar(require("./store/
|
|
142
|
-
const _106 = __importStar(require("./
|
|
143
|
-
const _107 = __importStar(require("./
|
|
144
|
-
const _108 = __importStar(require("./tx/
|
|
145
|
-
const _109 = __importStar(require("./tx/
|
|
146
|
-
const _110 = __importStar(require("./
|
|
147
|
-
const _111 = __importStar(require("./
|
|
148
|
-
const _112 = __importStar(require("./upgrade/
|
|
149
|
-
const _113 = __importStar(require("./upgrade/v1beta1/
|
|
150
|
-
const _114 = __importStar(require("./
|
|
151
|
-
const _115 = __importStar(require("./
|
|
152
|
-
const _116 = __importStar(require("./vesting/
|
|
153
|
-
const
|
|
154
|
-
const
|
|
155
|
-
const
|
|
156
|
-
const
|
|
157
|
-
const
|
|
158
|
-
const
|
|
159
|
-
const
|
|
160
|
-
const
|
|
161
|
-
const
|
|
162
|
-
const
|
|
163
|
-
const
|
|
164
|
-
const
|
|
165
|
-
const
|
|
166
|
-
const
|
|
167
|
-
const
|
|
168
|
-
const
|
|
169
|
-
const
|
|
170
|
-
const
|
|
171
|
-
const
|
|
172
|
-
const
|
|
173
|
-
const
|
|
174
|
-
const
|
|
175
|
-
const
|
|
176
|
-
const
|
|
177
|
-
const
|
|
178
|
-
const
|
|
179
|
-
const
|
|
180
|
-
const
|
|
181
|
-
const
|
|
182
|
-
const
|
|
183
|
-
const
|
|
184
|
-
const
|
|
185
|
-
const
|
|
186
|
-
const
|
|
187
|
-
const
|
|
188
|
-
const
|
|
189
|
-
const
|
|
190
|
-
const
|
|
191
|
-
const
|
|
192
|
-
const
|
|
193
|
-
const
|
|
194
|
-
const
|
|
195
|
-
const
|
|
196
|
-
const
|
|
197
|
-
const
|
|
198
|
-
const
|
|
199
|
-
const
|
|
200
|
-
const
|
|
201
|
-
const
|
|
202
|
-
const
|
|
203
|
-
const
|
|
204
|
-
const
|
|
205
|
-
const
|
|
206
|
-
const
|
|
207
|
-
const
|
|
208
|
-
const
|
|
209
|
-
const
|
|
210
|
-
const
|
|
211
|
-
const
|
|
212
|
-
const
|
|
213
|
-
const
|
|
214
|
-
const
|
|
215
|
-
const
|
|
216
|
-
const
|
|
217
|
-
const
|
|
218
|
-
const
|
|
219
|
-
const
|
|
220
|
-
const
|
|
221
|
-
const
|
|
222
|
-
const
|
|
223
|
-
const
|
|
224
|
-
const
|
|
225
|
-
const
|
|
226
|
-
const
|
|
227
|
-
const
|
|
228
|
-
const
|
|
229
|
-
const
|
|
230
|
-
const
|
|
231
|
-
const
|
|
232
|
-
const
|
|
233
|
-
const
|
|
234
|
-
const
|
|
235
|
-
const
|
|
236
|
-
const
|
|
237
|
-
const
|
|
238
|
-
const
|
|
239
|
-
const
|
|
240
|
-
const
|
|
241
|
-
const
|
|
242
|
-
const
|
|
243
|
-
const
|
|
244
|
-
const _338 = __importStar(require("./lcd"));
|
|
245
|
-
const _339 = __importStar(require("./rpc.query"));
|
|
246
|
-
const _340 = __importStar(require("./rpc.tx"));
|
|
120
|
+
const _84 = __importStar(require("./params/module/v1/module"));
|
|
121
|
+
const _85 = __importStar(require("./params/v1beta1/params"));
|
|
122
|
+
const _86 = __importStar(require("./params/v1beta1/query"));
|
|
123
|
+
const _87 = __importStar(require("./protocolpool/module/v1/module"));
|
|
124
|
+
const _88 = __importStar(require("./protocolpool/v1/genesis"));
|
|
125
|
+
const _89 = __importStar(require("./protocolpool/v1/query"));
|
|
126
|
+
const _90 = __importStar(require("./protocolpool/v1/tx"));
|
|
127
|
+
const _91 = __importStar(require("./protocolpool/v1/types"));
|
|
128
|
+
const _92 = __importStar(require("./query/v1/query"));
|
|
129
|
+
const _93 = __importStar(require("./reflection/v1/reflection"));
|
|
130
|
+
const _94 = __importStar(require("./slashing/module/v1/module"));
|
|
131
|
+
const _95 = __importStar(require("./staking/module/v1/module"));
|
|
132
|
+
const _96 = __importStar(require("./staking/v1beta1/authz"));
|
|
133
|
+
const _97 = __importStar(require("./staking/v1beta1/genesis"));
|
|
134
|
+
const _98 = __importStar(require("./staking/v1beta1/query"));
|
|
135
|
+
const _99 = __importStar(require("./staking/v1beta1/staking"));
|
|
136
|
+
const _100 = __importStar(require("./staking/v1beta1/tx"));
|
|
137
|
+
const _101 = __importStar(require("./store/internal/kv/v1beta1/kv"));
|
|
138
|
+
const _102 = __importStar(require("./store/snapshots/v1/snapshot"));
|
|
139
|
+
const _103 = __importStar(require("./store/streaming/abci/grpc"));
|
|
140
|
+
const _104 = __importStar(require("./store/v1beta1/commit_info"));
|
|
141
|
+
const _105 = __importStar(require("./store/v1beta1/listening"));
|
|
142
|
+
const _106 = __importStar(require("./tx/config/v1/config"));
|
|
143
|
+
const _107 = __importStar(require("./tx/signing/v1beta1/signing"));
|
|
144
|
+
const _108 = __importStar(require("./tx/v1beta1/service"));
|
|
145
|
+
const _109 = __importStar(require("./tx/v1beta1/tx"));
|
|
146
|
+
const _110 = __importStar(require("./upgrade/module/v1/module"));
|
|
147
|
+
const _111 = __importStar(require("./upgrade/v1beta1/query"));
|
|
148
|
+
const _112 = __importStar(require("./upgrade/v1beta1/tx"));
|
|
149
|
+
const _113 = __importStar(require("./upgrade/v1beta1/upgrade"));
|
|
150
|
+
const _114 = __importStar(require("./vesting/module/v1/module"));
|
|
151
|
+
const _115 = __importStar(require("./vesting/v1beta1/tx"));
|
|
152
|
+
const _116 = __importStar(require("./vesting/v1beta1/vesting"));
|
|
153
|
+
const _196 = __importStar(require("./auth/v1beta1/tx.amino"));
|
|
154
|
+
const _197 = __importStar(require("./authz/v1beta1/tx.amino"));
|
|
155
|
+
const _198 = __importStar(require("./bank/v1beta1/tx.amino"));
|
|
156
|
+
const _199 = __importStar(require("./benchmark/v1/tx.amino"));
|
|
157
|
+
const _200 = __importStar(require("./circuit/v1/tx.amino"));
|
|
158
|
+
const _201 = __importStar(require("./consensus/v1/tx.amino"));
|
|
159
|
+
const _202 = __importStar(require("./counter/v1/tx.amino"));
|
|
160
|
+
const _203 = __importStar(require("./distribution/v1beta1/tx.amino"));
|
|
161
|
+
const _204 = __importStar(require("./feegrant/v1beta1/tx.amino"));
|
|
162
|
+
const _205 = __importStar(require("./gov/v1/tx.amino"));
|
|
163
|
+
const _206 = __importStar(require("./gov/v1beta1/tx.amino"));
|
|
164
|
+
const _207 = __importStar(require("./group/v1/tx.amino"));
|
|
165
|
+
const _208 = __importStar(require("./mint/v1beta1/tx.amino"));
|
|
166
|
+
const _209 = __importStar(require("./protocolpool/v1/tx.amino"));
|
|
167
|
+
const _210 = __importStar(require("./staking/v1beta1/tx.amino"));
|
|
168
|
+
const _211 = __importStar(require("./upgrade/v1beta1/tx.amino"));
|
|
169
|
+
const _212 = __importStar(require("./vesting/v1beta1/tx.amino"));
|
|
170
|
+
const _213 = __importStar(require("./auth/v1beta1/tx.registry"));
|
|
171
|
+
const _214 = __importStar(require("./authz/v1beta1/tx.registry"));
|
|
172
|
+
const _215 = __importStar(require("./bank/v1beta1/tx.registry"));
|
|
173
|
+
const _216 = __importStar(require("./benchmark/v1/tx.registry"));
|
|
174
|
+
const _217 = __importStar(require("./circuit/v1/tx.registry"));
|
|
175
|
+
const _218 = __importStar(require("./consensus/v1/tx.registry"));
|
|
176
|
+
const _219 = __importStar(require("./counter/v1/tx.registry"));
|
|
177
|
+
const _220 = __importStar(require("./distribution/v1beta1/tx.registry"));
|
|
178
|
+
const _221 = __importStar(require("./feegrant/v1beta1/tx.registry"));
|
|
179
|
+
const _222 = __importStar(require("./gov/v1/tx.registry"));
|
|
180
|
+
const _223 = __importStar(require("./gov/v1beta1/tx.registry"));
|
|
181
|
+
const _224 = __importStar(require("./group/v1/tx.registry"));
|
|
182
|
+
const _225 = __importStar(require("./mint/v1beta1/tx.registry"));
|
|
183
|
+
const _226 = __importStar(require("./protocolpool/v1/tx.registry"));
|
|
184
|
+
const _227 = __importStar(require("./staking/v1beta1/tx.registry"));
|
|
185
|
+
const _228 = __importStar(require("./upgrade/v1beta1/tx.registry"));
|
|
186
|
+
const _229 = __importStar(require("./vesting/v1beta1/tx.registry"));
|
|
187
|
+
const _230 = __importStar(require("./auth/v1beta1/query.lcd"));
|
|
188
|
+
const _231 = __importStar(require("./authz/v1beta1/query.lcd"));
|
|
189
|
+
const _232 = __importStar(require("./bank/v1beta1/query.lcd"));
|
|
190
|
+
const _233 = __importStar(require("./base/node/v1beta1/query.lcd"));
|
|
191
|
+
const _234 = __importStar(require("./circuit/v1/query.lcd"));
|
|
192
|
+
const _235 = __importStar(require("./consensus/v1/query.lcd"));
|
|
193
|
+
const _236 = __importStar(require("./distribution/v1beta1/query.lcd"));
|
|
194
|
+
const _237 = __importStar(require("./epochs/v1beta1/query.lcd"));
|
|
195
|
+
const _238 = __importStar(require("./feegrant/v1beta1/query.lcd"));
|
|
196
|
+
const _239 = __importStar(require("./gov/v1/query.lcd"));
|
|
197
|
+
const _240 = __importStar(require("./gov/v1beta1/query.lcd"));
|
|
198
|
+
const _241 = __importStar(require("./group/v1/query.lcd"));
|
|
199
|
+
const _242 = __importStar(require("./mint/v1beta1/query.lcd"));
|
|
200
|
+
const _243 = __importStar(require("./params/v1beta1/query.lcd"));
|
|
201
|
+
const _244 = __importStar(require("./protocolpool/v1/query.lcd"));
|
|
202
|
+
const _245 = __importStar(require("./staking/v1beta1/query.lcd"));
|
|
203
|
+
const _246 = __importStar(require("./tx/v1beta1/service.lcd"));
|
|
204
|
+
const _247 = __importStar(require("./upgrade/v1beta1/query.lcd"));
|
|
205
|
+
const _248 = __importStar(require("./auth/v1beta1/query.rpc.Query"));
|
|
206
|
+
const _249 = __importStar(require("./authz/v1beta1/query.rpc.Query"));
|
|
207
|
+
const _250 = __importStar(require("./bank/v1beta1/query.rpc.Query"));
|
|
208
|
+
const _251 = __importStar(require("./base/node/v1beta1/query.rpc.Service"));
|
|
209
|
+
const _252 = __importStar(require("./circuit/v1/query.rpc.Query"));
|
|
210
|
+
const _253 = __importStar(require("./consensus/v1/query.rpc.Query"));
|
|
211
|
+
const _254 = __importStar(require("./counter/v1/query.rpc.Query"));
|
|
212
|
+
const _255 = __importStar(require("./distribution/v1beta1/query.rpc.Query"));
|
|
213
|
+
const _256 = __importStar(require("./epochs/v1beta1/query.rpc.Query"));
|
|
214
|
+
const _257 = __importStar(require("./feegrant/v1beta1/query.rpc.Query"));
|
|
215
|
+
const _258 = __importStar(require("./gov/v1/query.rpc.Query"));
|
|
216
|
+
const _259 = __importStar(require("./gov/v1beta1/query.rpc.Query"));
|
|
217
|
+
const _260 = __importStar(require("./group/v1/query.rpc.Query"));
|
|
218
|
+
const _261 = __importStar(require("./mint/v1beta1/query.rpc.Query"));
|
|
219
|
+
const _262 = __importStar(require("./params/v1beta1/query.rpc.Query"));
|
|
220
|
+
const _263 = __importStar(require("./protocolpool/v1/query.rpc.Query"));
|
|
221
|
+
const _264 = __importStar(require("./staking/v1beta1/query.rpc.Query"));
|
|
222
|
+
const _265 = __importStar(require("./tx/v1beta1/service.rpc.Service"));
|
|
223
|
+
const _266 = __importStar(require("./upgrade/v1beta1/query.rpc.Query"));
|
|
224
|
+
const _267 = __importStar(require("./auth/v1beta1/tx.rpc.msg"));
|
|
225
|
+
const _268 = __importStar(require("./authz/v1beta1/tx.rpc.msg"));
|
|
226
|
+
const _269 = __importStar(require("./bank/v1beta1/tx.rpc.msg"));
|
|
227
|
+
const _270 = __importStar(require("./benchmark/v1/tx.rpc.msg"));
|
|
228
|
+
const _271 = __importStar(require("./circuit/v1/tx.rpc.msg"));
|
|
229
|
+
const _272 = __importStar(require("./consensus/v1/tx.rpc.msg"));
|
|
230
|
+
const _273 = __importStar(require("./counter/v1/tx.rpc.msg"));
|
|
231
|
+
const _274 = __importStar(require("./distribution/v1beta1/tx.rpc.msg"));
|
|
232
|
+
const _275 = __importStar(require("./feegrant/v1beta1/tx.rpc.msg"));
|
|
233
|
+
const _276 = __importStar(require("./gov/v1/tx.rpc.msg"));
|
|
234
|
+
const _277 = __importStar(require("./gov/v1beta1/tx.rpc.msg"));
|
|
235
|
+
const _278 = __importStar(require("./group/v1/tx.rpc.msg"));
|
|
236
|
+
const _279 = __importStar(require("./mint/v1beta1/tx.rpc.msg"));
|
|
237
|
+
const _280 = __importStar(require("./protocolpool/v1/tx.rpc.msg"));
|
|
238
|
+
const _281 = __importStar(require("./staking/v1beta1/tx.rpc.msg"));
|
|
239
|
+
const _282 = __importStar(require("./upgrade/v1beta1/tx.rpc.msg"));
|
|
240
|
+
const _283 = __importStar(require("./vesting/v1beta1/tx.rpc.msg"));
|
|
241
|
+
const _344 = __importStar(require("./lcd"));
|
|
242
|
+
const _345 = __importStar(require("./rpc.query"));
|
|
243
|
+
const _346 = __importStar(require("./rpc.tx"));
|
|
247
244
|
var cosmos;
|
|
248
245
|
(function (cosmos) {
|
|
249
246
|
let app;
|
|
@@ -268,11 +265,11 @@ var cosmos;
|
|
|
268
265
|
..._5,
|
|
269
266
|
..._6,
|
|
270
267
|
..._7,
|
|
271
|
-
...
|
|
272
|
-
...
|
|
273
|
-
...
|
|
274
|
-
...
|
|
275
|
-
...
|
|
268
|
+
..._196,
|
|
269
|
+
..._213,
|
|
270
|
+
..._230,
|
|
271
|
+
..._248,
|
|
272
|
+
..._267
|
|
276
273
|
};
|
|
277
274
|
})(auth = cosmos.auth || (cosmos.auth = {}));
|
|
278
275
|
let authz;
|
|
@@ -289,11 +286,11 @@ var cosmos;
|
|
|
289
286
|
..._11,
|
|
290
287
|
..._12,
|
|
291
288
|
..._13,
|
|
292
|
-
...
|
|
293
|
-
...
|
|
294
|
-
...
|
|
295
|
-
...
|
|
296
|
-
...
|
|
289
|
+
..._197,
|
|
290
|
+
..._214,
|
|
291
|
+
..._231,
|
|
292
|
+
..._249,
|
|
293
|
+
..._268
|
|
297
294
|
};
|
|
298
295
|
})(authz = cosmos.authz || (cosmos.authz = {}));
|
|
299
296
|
let bank;
|
|
@@ -310,11 +307,11 @@ var cosmos;
|
|
|
310
307
|
..._17,
|
|
311
308
|
..._18,
|
|
312
309
|
..._19,
|
|
313
|
-
...
|
|
314
|
-
...
|
|
315
|
-
...
|
|
316
|
-
...
|
|
317
|
-
...
|
|
310
|
+
..._198,
|
|
311
|
+
..._215,
|
|
312
|
+
..._232,
|
|
313
|
+
..._250,
|
|
314
|
+
..._269
|
|
318
315
|
};
|
|
319
316
|
})(bank = cosmos.bank || (cosmos.bank = {}));
|
|
320
317
|
let base;
|
|
@@ -329,8 +326,8 @@ var cosmos;
|
|
|
329
326
|
(function (node) {
|
|
330
327
|
node.v1beta1 = {
|
|
331
328
|
..._21,
|
|
332
|
-
...
|
|
333
|
-
...
|
|
329
|
+
..._233,
|
|
330
|
+
..._251
|
|
334
331
|
};
|
|
335
332
|
})(node = base.node || (base.node = {}));
|
|
336
333
|
let query;
|
|
@@ -360,9 +357,9 @@ var cosmos;
|
|
|
360
357
|
benchmark.v1 = {
|
|
361
358
|
..._26,
|
|
362
359
|
..._27,
|
|
363
|
-
...
|
|
364
|
-
...
|
|
365
|
-
...
|
|
360
|
+
..._199,
|
|
361
|
+
..._216,
|
|
362
|
+
..._270
|
|
366
363
|
};
|
|
367
364
|
})(benchmark = cosmos.benchmark || (cosmos.benchmark = {}));
|
|
368
365
|
let circuit;
|
|
@@ -377,11 +374,11 @@ var cosmos;
|
|
|
377
374
|
..._29,
|
|
378
375
|
..._30,
|
|
379
376
|
..._31,
|
|
380
|
-
...
|
|
381
|
-
...
|
|
382
|
-
...
|
|
383
|
-
...
|
|
384
|
-
...
|
|
377
|
+
..._200,
|
|
378
|
+
..._217,
|
|
379
|
+
..._234,
|
|
380
|
+
..._252,
|
|
381
|
+
..._271
|
|
385
382
|
};
|
|
386
383
|
})(circuit = cosmos.circuit || (cosmos.circuit = {}));
|
|
387
384
|
let consensus;
|
|
@@ -395,11 +392,11 @@ var cosmos;
|
|
|
395
392
|
consensus.v1 = {
|
|
396
393
|
..._33,
|
|
397
394
|
..._34,
|
|
398
|
-
...
|
|
399
|
-
...
|
|
400
|
-
...
|
|
401
|
-
...
|
|
402
|
-
...
|
|
395
|
+
..._201,
|
|
396
|
+
..._218,
|
|
397
|
+
..._235,
|
|
398
|
+
..._253,
|
|
399
|
+
..._272
|
|
403
400
|
};
|
|
404
401
|
})(consensus = cosmos.consensus || (cosmos.consensus = {}));
|
|
405
402
|
let counter;
|
|
@@ -413,10 +410,10 @@ var cosmos;
|
|
|
413
410
|
counter.v1 = {
|
|
414
411
|
..._36,
|
|
415
412
|
..._37,
|
|
416
|
-
...
|
|
417
|
-
...
|
|
418
|
-
...
|
|
419
|
-
...
|
|
413
|
+
..._202,
|
|
414
|
+
..._219,
|
|
415
|
+
..._254,
|
|
416
|
+
..._273
|
|
420
417
|
};
|
|
421
418
|
})(counter = cosmos.counter || (cosmos.counter = {}));
|
|
422
419
|
let crisis;
|
|
@@ -468,11 +465,11 @@ var cosmos;
|
|
|
468
465
|
..._47,
|
|
469
466
|
..._48,
|
|
470
467
|
..._49,
|
|
471
|
-
...
|
|
472
|
-
...
|
|
473
|
-
...
|
|
474
|
-
...
|
|
475
|
-
...
|
|
468
|
+
..._203,
|
|
469
|
+
..._220,
|
|
470
|
+
..._236,
|
|
471
|
+
..._255,
|
|
472
|
+
..._274
|
|
476
473
|
};
|
|
477
474
|
})(distribution = cosmos.distribution || (cosmos.distribution = {}));
|
|
478
475
|
let epochs;
|
|
@@ -487,8 +484,8 @@ var cosmos;
|
|
|
487
484
|
..._51,
|
|
488
485
|
..._52,
|
|
489
486
|
..._53,
|
|
490
|
-
...
|
|
491
|
-
...
|
|
487
|
+
..._237,
|
|
488
|
+
..._256
|
|
492
489
|
};
|
|
493
490
|
})(epochs = cosmos.epochs || (cosmos.epochs = {}));
|
|
494
491
|
let evidence;
|
|
@@ -513,11 +510,11 @@ var cosmos;
|
|
|
513
510
|
..._57,
|
|
514
511
|
..._58,
|
|
515
512
|
..._59,
|
|
516
|
-
...
|
|
517
|
-
...
|
|
518
|
-
...
|
|
519
|
-
...
|
|
520
|
-
...
|
|
513
|
+
..._204,
|
|
514
|
+
..._221,
|
|
515
|
+
..._238,
|
|
516
|
+
..._257,
|
|
517
|
+
..._275
|
|
521
518
|
};
|
|
522
519
|
})(feegrant = cosmos.feegrant || (cosmos.feegrant = {}));
|
|
523
520
|
let genutil;
|
|
@@ -542,22 +539,22 @@ var cosmos;
|
|
|
542
539
|
..._63,
|
|
543
540
|
..._64,
|
|
544
541
|
..._65,
|
|
545
|
-
...
|
|
546
|
-
...
|
|
547
|
-
...
|
|
548
|
-
...
|
|
549
|
-
...
|
|
542
|
+
..._205,
|
|
543
|
+
..._222,
|
|
544
|
+
..._239,
|
|
545
|
+
..._258,
|
|
546
|
+
..._276
|
|
550
547
|
};
|
|
551
548
|
gov.v1beta1 = {
|
|
552
549
|
..._66,
|
|
553
550
|
..._67,
|
|
554
551
|
..._68,
|
|
555
552
|
..._69,
|
|
556
|
-
...
|
|
557
|
-
...
|
|
558
|
-
...
|
|
559
|
-
...
|
|
560
|
-
...
|
|
553
|
+
..._206,
|
|
554
|
+
..._223,
|
|
555
|
+
..._240,
|
|
556
|
+
..._259,
|
|
557
|
+
..._277
|
|
561
558
|
};
|
|
562
559
|
})(gov = cosmos.gov || (cosmos.gov = {}));
|
|
563
560
|
let group;
|
|
@@ -574,11 +571,11 @@ var cosmos;
|
|
|
574
571
|
..._73,
|
|
575
572
|
..._74,
|
|
576
573
|
..._75,
|
|
577
|
-
...
|
|
578
|
-
...
|
|
579
|
-
...
|
|
580
|
-
...
|
|
581
|
-
...
|
|
574
|
+
..._207,
|
|
575
|
+
..._224,
|
|
576
|
+
..._241,
|
|
577
|
+
..._260,
|
|
578
|
+
..._278
|
|
582
579
|
};
|
|
583
580
|
})(group = cosmos.group || (cosmos.group = {}));
|
|
584
581
|
let ics23;
|
|
@@ -600,11 +597,11 @@ var cosmos;
|
|
|
600
597
|
..._79,
|
|
601
598
|
..._80,
|
|
602
599
|
..._81,
|
|
603
|
-
...
|
|
604
|
-
...
|
|
605
|
-
...
|
|
606
|
-
...
|
|
607
|
-
...
|
|
600
|
+
..._208,
|
|
601
|
+
..._225,
|
|
602
|
+
..._242,
|
|
603
|
+
..._261,
|
|
604
|
+
..._279
|
|
608
605
|
};
|
|
609
606
|
})(mint = cosmos.mint || (cosmos.mint = {}));
|
|
610
607
|
let msg;
|
|
@@ -625,35 +622,19 @@ var cosmos;
|
|
|
625
622
|
};
|
|
626
623
|
})(module = nft.module || (nft.module = {}));
|
|
627
624
|
})(nft = cosmos.nft || (cosmos.nft = {}));
|
|
628
|
-
let orm;
|
|
629
|
-
(function (orm) {
|
|
630
|
-
let module;
|
|
631
|
-
(function (module) {
|
|
632
|
-
module.v1alpha1 = {
|
|
633
|
-
..._84
|
|
634
|
-
};
|
|
635
|
-
})(module = orm.module || (orm.module = {}));
|
|
636
|
-
let query;
|
|
637
|
-
(function (query) {
|
|
638
|
-
query.v1alpha1 = {
|
|
639
|
-
..._85,
|
|
640
|
-
..._260
|
|
641
|
-
};
|
|
642
|
-
})(query = orm.query || (orm.query = {}));
|
|
643
|
-
})(orm = cosmos.orm || (cosmos.orm = {}));
|
|
644
625
|
let params;
|
|
645
626
|
(function (params) {
|
|
646
627
|
let module;
|
|
647
628
|
(function (module) {
|
|
648
629
|
module.v1 = {
|
|
649
|
-
...
|
|
630
|
+
..._84
|
|
650
631
|
};
|
|
651
632
|
})(module = params.module || (params.module = {}));
|
|
652
633
|
params.v1beta1 = {
|
|
653
|
-
...
|
|
654
|
-
...
|
|
655
|
-
...
|
|
656
|
-
...
|
|
634
|
+
..._85,
|
|
635
|
+
..._86,
|
|
636
|
+
..._243,
|
|
637
|
+
..._262
|
|
657
638
|
};
|
|
658
639
|
})(params = cosmos.params || (cosmos.params = {}));
|
|
659
640
|
let protocolpool;
|
|
@@ -661,31 +642,31 @@ var cosmos;
|
|
|
661
642
|
let module;
|
|
662
643
|
(function (module) {
|
|
663
644
|
module.v1 = {
|
|
664
|
-
...
|
|
645
|
+
..._87
|
|
665
646
|
};
|
|
666
647
|
})(module = protocolpool.module || (protocolpool.module = {}));
|
|
667
648
|
protocolpool.v1 = {
|
|
649
|
+
..._88,
|
|
650
|
+
..._89,
|
|
668
651
|
..._90,
|
|
669
652
|
..._91,
|
|
670
|
-
...
|
|
671
|
-
...
|
|
672
|
-
...
|
|
673
|
-
...
|
|
674
|
-
...
|
|
675
|
-
..._262,
|
|
676
|
-
..._279
|
|
653
|
+
..._209,
|
|
654
|
+
..._226,
|
|
655
|
+
..._244,
|
|
656
|
+
..._263,
|
|
657
|
+
..._280
|
|
677
658
|
};
|
|
678
659
|
})(protocolpool = cosmos.protocolpool || (cosmos.protocolpool = {}));
|
|
679
660
|
let query;
|
|
680
661
|
(function (query) {
|
|
681
662
|
query.v1 = {
|
|
682
|
-
...
|
|
663
|
+
..._92
|
|
683
664
|
};
|
|
684
665
|
})(query = cosmos.query || (cosmos.query = {}));
|
|
685
666
|
let reflection;
|
|
686
667
|
(function (reflection) {
|
|
687
668
|
reflection.v1 = {
|
|
688
|
-
...
|
|
669
|
+
..._93
|
|
689
670
|
};
|
|
690
671
|
})(reflection = cosmos.reflection || (cosmos.reflection = {}));
|
|
691
672
|
let slashing;
|
|
@@ -693,7 +674,7 @@ var cosmos;
|
|
|
693
674
|
let module;
|
|
694
675
|
(function (module) {
|
|
695
676
|
module.v1 = {
|
|
696
|
-
...
|
|
677
|
+
..._94
|
|
697
678
|
};
|
|
698
679
|
})(module = slashing.module || (slashing.module = {}));
|
|
699
680
|
})(slashing = cosmos.slashing || (cosmos.slashing = {}));
|
|
@@ -702,20 +683,20 @@ var cosmos;
|
|
|
702
683
|
let module;
|
|
703
684
|
(function (module) {
|
|
704
685
|
module.v1 = {
|
|
705
|
-
...
|
|
686
|
+
..._95
|
|
706
687
|
};
|
|
707
688
|
})(module = staking.module || (staking.module = {}));
|
|
708
689
|
staking.v1beta1 = {
|
|
690
|
+
..._96,
|
|
691
|
+
..._97,
|
|
709
692
|
..._98,
|
|
710
693
|
..._99,
|
|
711
694
|
..._100,
|
|
712
|
-
...
|
|
713
|
-
...
|
|
714
|
-
...
|
|
715
|
-
...
|
|
716
|
-
...
|
|
717
|
-
..._263,
|
|
718
|
-
..._280
|
|
695
|
+
..._210,
|
|
696
|
+
..._227,
|
|
697
|
+
..._245,
|
|
698
|
+
..._264,
|
|
699
|
+
..._281
|
|
719
700
|
};
|
|
720
701
|
})(staking = cosmos.staking || (cosmos.staking = {}));
|
|
721
702
|
let store;
|
|
@@ -725,25 +706,25 @@ var cosmos;
|
|
|
725
706
|
let kv;
|
|
726
707
|
(function (kv) {
|
|
727
708
|
kv.v1beta1 = {
|
|
728
|
-
...
|
|
709
|
+
..._101
|
|
729
710
|
};
|
|
730
711
|
})(kv = internal.kv || (internal.kv = {}));
|
|
731
712
|
})(internal = store.internal || (store.internal = {}));
|
|
732
713
|
let snapshots;
|
|
733
714
|
(function (snapshots) {
|
|
734
715
|
snapshots.v1 = {
|
|
735
|
-
...
|
|
716
|
+
..._102
|
|
736
717
|
};
|
|
737
718
|
})(snapshots = store.snapshots || (store.snapshots = {}));
|
|
738
719
|
let streaming;
|
|
739
720
|
(function (streaming) {
|
|
740
721
|
streaming.abci = {
|
|
741
|
-
...
|
|
722
|
+
..._103
|
|
742
723
|
};
|
|
743
724
|
})(streaming = store.streaming || (store.streaming = {}));
|
|
744
725
|
store.v1beta1 = {
|
|
745
|
-
...
|
|
746
|
-
...
|
|
726
|
+
..._104,
|
|
727
|
+
..._105
|
|
747
728
|
};
|
|
748
729
|
})(store = cosmos.store || (cosmos.store = {}));
|
|
749
730
|
let tx;
|
|
@@ -751,20 +732,20 @@ var cosmos;
|
|
|
751
732
|
let config;
|
|
752
733
|
(function (config) {
|
|
753
734
|
config.v1 = {
|
|
754
|
-
...
|
|
735
|
+
..._106
|
|
755
736
|
};
|
|
756
737
|
})(config = tx.config || (tx.config = {}));
|
|
757
738
|
let signing;
|
|
758
739
|
(function (signing) {
|
|
759
740
|
signing.v1beta1 = {
|
|
760
|
-
...
|
|
741
|
+
..._107
|
|
761
742
|
};
|
|
762
743
|
})(signing = tx.signing || (tx.signing = {}));
|
|
763
744
|
tx.v1beta1 = {
|
|
764
|
-
...
|
|
765
|
-
...
|
|
766
|
-
...
|
|
767
|
-
...
|
|
745
|
+
..._108,
|
|
746
|
+
..._109,
|
|
747
|
+
..._246,
|
|
748
|
+
..._265
|
|
768
749
|
};
|
|
769
750
|
})(tx = cosmos.tx || (cosmos.tx = {}));
|
|
770
751
|
let upgrade;
|
|
@@ -772,18 +753,18 @@ var cosmos;
|
|
|
772
753
|
let module;
|
|
773
754
|
(function (module) {
|
|
774
755
|
module.v1 = {
|
|
775
|
-
...
|
|
756
|
+
..._110
|
|
776
757
|
};
|
|
777
758
|
})(module = upgrade.module || (upgrade.module = {}));
|
|
778
759
|
upgrade.v1beta1 = {
|
|
760
|
+
..._111,
|
|
761
|
+
..._112,
|
|
779
762
|
..._113,
|
|
780
|
-
...
|
|
781
|
-
...
|
|
782
|
-
...
|
|
783
|
-
...
|
|
784
|
-
...
|
|
785
|
-
..._265,
|
|
786
|
-
..._281
|
|
763
|
+
..._211,
|
|
764
|
+
..._228,
|
|
765
|
+
..._247,
|
|
766
|
+
..._266,
|
|
767
|
+
..._282
|
|
787
768
|
};
|
|
788
769
|
})(upgrade = cosmos.upgrade || (cosmos.upgrade = {}));
|
|
789
770
|
let vesting;
|
|
@@ -791,20 +772,20 @@ var cosmos;
|
|
|
791
772
|
let module;
|
|
792
773
|
(function (module) {
|
|
793
774
|
module.v1 = {
|
|
794
|
-
...
|
|
775
|
+
..._114
|
|
795
776
|
};
|
|
796
777
|
})(module = vesting.module || (vesting.module = {}));
|
|
797
778
|
vesting.v1beta1 = {
|
|
798
|
-
...
|
|
799
|
-
...
|
|
800
|
-
...
|
|
801
|
-
...
|
|
802
|
-
...
|
|
779
|
+
..._115,
|
|
780
|
+
..._116,
|
|
781
|
+
..._212,
|
|
782
|
+
..._229,
|
|
783
|
+
..._283
|
|
803
784
|
};
|
|
804
785
|
})(vesting = cosmos.vesting || (cosmos.vesting = {}));
|
|
805
786
|
cosmos.ClientFactory = {
|
|
806
|
-
...
|
|
807
|
-
...
|
|
808
|
-
...
|
|
787
|
+
..._344,
|
|
788
|
+
..._345,
|
|
789
|
+
..._346
|
|
809
790
|
};
|
|
810
791
|
})(cosmos || (exports.cosmos = cosmos = {}));
|