@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,61 @@
|
|
|
1
|
+
import { TelescopeGeneratedType } from "../../../../types";
|
|
2
|
+
import { Registry } from "@cosmjs/proto-signing";
|
|
3
|
+
import { MsgAddRateLimit, MsgUpdateRateLimit, MsgRemoveRateLimit, MsgResetRateLimit } from "./tx";
|
|
4
|
+
export declare const registry: ReadonlyArray<[string, TelescopeGeneratedType<any, any, any>]>;
|
|
5
|
+
export declare const load: (protoRegistry: Registry) => void;
|
|
6
|
+
export declare const MessageComposer: {
|
|
7
|
+
encoded: {
|
|
8
|
+
addRateLimit(value: MsgAddRateLimit): {
|
|
9
|
+
typeUrl: string;
|
|
10
|
+
value: Uint8Array<ArrayBufferLike>;
|
|
11
|
+
};
|
|
12
|
+
updateRateLimit(value: MsgUpdateRateLimit): {
|
|
13
|
+
typeUrl: string;
|
|
14
|
+
value: Uint8Array<ArrayBufferLike>;
|
|
15
|
+
};
|
|
16
|
+
removeRateLimit(value: MsgRemoveRateLimit): {
|
|
17
|
+
typeUrl: string;
|
|
18
|
+
value: Uint8Array<ArrayBufferLike>;
|
|
19
|
+
};
|
|
20
|
+
resetRateLimit(value: MsgResetRateLimit): {
|
|
21
|
+
typeUrl: string;
|
|
22
|
+
value: Uint8Array<ArrayBufferLike>;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
withTypeUrl: {
|
|
26
|
+
addRateLimit(value: MsgAddRateLimit): {
|
|
27
|
+
typeUrl: string;
|
|
28
|
+
value: MsgAddRateLimit;
|
|
29
|
+
};
|
|
30
|
+
updateRateLimit(value: MsgUpdateRateLimit): {
|
|
31
|
+
typeUrl: string;
|
|
32
|
+
value: MsgUpdateRateLimit;
|
|
33
|
+
};
|
|
34
|
+
removeRateLimit(value: MsgRemoveRateLimit): {
|
|
35
|
+
typeUrl: string;
|
|
36
|
+
value: MsgRemoveRateLimit;
|
|
37
|
+
};
|
|
38
|
+
resetRateLimit(value: MsgResetRateLimit): {
|
|
39
|
+
typeUrl: string;
|
|
40
|
+
value: MsgResetRateLimit;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
43
|
+
fromPartial: {
|
|
44
|
+
addRateLimit(value: MsgAddRateLimit): {
|
|
45
|
+
typeUrl: string;
|
|
46
|
+
value: MsgAddRateLimit;
|
|
47
|
+
};
|
|
48
|
+
updateRateLimit(value: MsgUpdateRateLimit): {
|
|
49
|
+
typeUrl: string;
|
|
50
|
+
value: MsgUpdateRateLimit;
|
|
51
|
+
};
|
|
52
|
+
removeRateLimit(value: MsgRemoveRateLimit): {
|
|
53
|
+
typeUrl: string;
|
|
54
|
+
value: MsgRemoveRateLimit;
|
|
55
|
+
};
|
|
56
|
+
resetRateLimit(value: MsgResetRateLimit): {
|
|
57
|
+
typeUrl: string;
|
|
58
|
+
value: MsgResetRateLimit;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
};
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MessageComposer = exports.load = exports.registry = void 0;
|
|
4
|
+
const tx_1 = require("./tx");
|
|
5
|
+
exports.registry = [["/ibc.applications.rate_limiting.v1.MsgAddRateLimit", tx_1.MsgAddRateLimit], ["/ibc.applications.rate_limiting.v1.MsgUpdateRateLimit", tx_1.MsgUpdateRateLimit], ["/ibc.applications.rate_limiting.v1.MsgRemoveRateLimit", tx_1.MsgRemoveRateLimit], ["/ibc.applications.rate_limiting.v1.MsgResetRateLimit", tx_1.MsgResetRateLimit]];
|
|
6
|
+
const load = (protoRegistry) => {
|
|
7
|
+
exports.registry.forEach(([typeUrl, mod]) => {
|
|
8
|
+
protoRegistry.register(typeUrl, mod);
|
|
9
|
+
});
|
|
10
|
+
};
|
|
11
|
+
exports.load = load;
|
|
12
|
+
exports.MessageComposer = {
|
|
13
|
+
encoded: {
|
|
14
|
+
addRateLimit(value) {
|
|
15
|
+
return {
|
|
16
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgAddRateLimit",
|
|
17
|
+
value: tx_1.MsgAddRateLimit.encode(value).finish()
|
|
18
|
+
};
|
|
19
|
+
},
|
|
20
|
+
updateRateLimit(value) {
|
|
21
|
+
return {
|
|
22
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgUpdateRateLimit",
|
|
23
|
+
value: tx_1.MsgUpdateRateLimit.encode(value).finish()
|
|
24
|
+
};
|
|
25
|
+
},
|
|
26
|
+
removeRateLimit(value) {
|
|
27
|
+
return {
|
|
28
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgRemoveRateLimit",
|
|
29
|
+
value: tx_1.MsgRemoveRateLimit.encode(value).finish()
|
|
30
|
+
};
|
|
31
|
+
},
|
|
32
|
+
resetRateLimit(value) {
|
|
33
|
+
return {
|
|
34
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgResetRateLimit",
|
|
35
|
+
value: tx_1.MsgResetRateLimit.encode(value).finish()
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
withTypeUrl: {
|
|
40
|
+
addRateLimit(value) {
|
|
41
|
+
return {
|
|
42
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgAddRateLimit",
|
|
43
|
+
value
|
|
44
|
+
};
|
|
45
|
+
},
|
|
46
|
+
updateRateLimit(value) {
|
|
47
|
+
return {
|
|
48
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgUpdateRateLimit",
|
|
49
|
+
value
|
|
50
|
+
};
|
|
51
|
+
},
|
|
52
|
+
removeRateLimit(value) {
|
|
53
|
+
return {
|
|
54
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgRemoveRateLimit",
|
|
55
|
+
value
|
|
56
|
+
};
|
|
57
|
+
},
|
|
58
|
+
resetRateLimit(value) {
|
|
59
|
+
return {
|
|
60
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgResetRateLimit",
|
|
61
|
+
value
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
fromPartial: {
|
|
66
|
+
addRateLimit(value) {
|
|
67
|
+
return {
|
|
68
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgAddRateLimit",
|
|
69
|
+
value: tx_1.MsgAddRateLimit.fromPartial(value)
|
|
70
|
+
};
|
|
71
|
+
},
|
|
72
|
+
updateRateLimit(value) {
|
|
73
|
+
return {
|
|
74
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgUpdateRateLimit",
|
|
75
|
+
value: tx_1.MsgUpdateRateLimit.fromPartial(value)
|
|
76
|
+
};
|
|
77
|
+
},
|
|
78
|
+
removeRateLimit(value) {
|
|
79
|
+
return {
|
|
80
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgRemoveRateLimit",
|
|
81
|
+
value: tx_1.MsgRemoveRateLimit.fromPartial(value)
|
|
82
|
+
};
|
|
83
|
+
},
|
|
84
|
+
resetRateLimit(value) {
|
|
85
|
+
return {
|
|
86
|
+
typeUrl: "/ibc.applications.rate_limiting.v1.MsgResetRateLimit",
|
|
87
|
+
value: tx_1.MsgResetRateLimit.fromPartial(value)
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { TxRpc } from "../../../../types";
|
|
2
|
+
import { MsgAddRateLimit, MsgAddRateLimitResponse, MsgUpdateRateLimit, MsgUpdateRateLimitResponse, MsgRemoveRateLimit, MsgRemoveRateLimitResponse, MsgResetRateLimit, MsgResetRateLimitResponse } from "./tx";
|
|
3
|
+
/** Msg service for rate limit txs */
|
|
4
|
+
export interface Msg {
|
|
5
|
+
/** Gov tx to add a new rate limit */
|
|
6
|
+
addRateLimit(request: MsgAddRateLimit): Promise<MsgAddRateLimitResponse>;
|
|
7
|
+
/** Gov tx to update an existing rate limit */
|
|
8
|
+
updateRateLimit(request: MsgUpdateRateLimit): Promise<MsgUpdateRateLimitResponse>;
|
|
9
|
+
/** Gov tx to remove a rate limit */
|
|
10
|
+
removeRateLimit(request: MsgRemoveRateLimit): Promise<MsgRemoveRateLimitResponse>;
|
|
11
|
+
/** Gov tx to reset the flow on a rate limit */
|
|
12
|
+
resetRateLimit(request: MsgResetRateLimit): Promise<MsgResetRateLimitResponse>;
|
|
13
|
+
}
|
|
14
|
+
export declare class MsgClientImpl implements Msg {
|
|
15
|
+
private readonly rpc;
|
|
16
|
+
constructor(rpc: TxRpc);
|
|
17
|
+
addRateLimit: (request: MsgAddRateLimit) => Promise<MsgAddRateLimitResponse>;
|
|
18
|
+
updateRateLimit: (request: MsgUpdateRateLimit) => Promise<MsgUpdateRateLimitResponse>;
|
|
19
|
+
removeRateLimit: (request: MsgRemoveRateLimit) => Promise<MsgRemoveRateLimitResponse>;
|
|
20
|
+
resetRateLimit: (request: MsgResetRateLimit) => Promise<MsgResetRateLimitResponse>;
|
|
21
|
+
}
|
|
22
|
+
export declare const createClientImpl: (rpc: TxRpc) => MsgClientImpl;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.createClientImpl = exports.MsgClientImpl = void 0;
|
|
4
|
+
const binary_1 = require("../../../../binary");
|
|
5
|
+
const tx_1 = require("./tx");
|
|
6
|
+
class MsgClientImpl {
|
|
7
|
+
rpc;
|
|
8
|
+
constructor(rpc) {
|
|
9
|
+
this.rpc = rpc;
|
|
10
|
+
}
|
|
11
|
+
/* Gov tx to add a new rate limit */
|
|
12
|
+
addRateLimit = async (request) => {
|
|
13
|
+
const data = tx_1.MsgAddRateLimit.encode(request).finish();
|
|
14
|
+
const promise = this.rpc.request("ibc.applications.rate_limiting.v1.Msg", "AddRateLimit", data);
|
|
15
|
+
return promise.then(data => tx_1.MsgAddRateLimitResponse.decode(new binary_1.BinaryReader(data)));
|
|
16
|
+
};
|
|
17
|
+
/* Gov tx to update an existing rate limit */
|
|
18
|
+
updateRateLimit = async (request) => {
|
|
19
|
+
const data = tx_1.MsgUpdateRateLimit.encode(request).finish();
|
|
20
|
+
const promise = this.rpc.request("ibc.applications.rate_limiting.v1.Msg", "UpdateRateLimit", data);
|
|
21
|
+
return promise.then(data => tx_1.MsgUpdateRateLimitResponse.decode(new binary_1.BinaryReader(data)));
|
|
22
|
+
};
|
|
23
|
+
/* Gov tx to remove a rate limit */
|
|
24
|
+
removeRateLimit = async (request) => {
|
|
25
|
+
const data = tx_1.MsgRemoveRateLimit.encode(request).finish();
|
|
26
|
+
const promise = this.rpc.request("ibc.applications.rate_limiting.v1.Msg", "RemoveRateLimit", data);
|
|
27
|
+
return promise.then(data => tx_1.MsgRemoveRateLimitResponse.decode(new binary_1.BinaryReader(data)));
|
|
28
|
+
};
|
|
29
|
+
/* Gov tx to reset the flow on a rate limit */
|
|
30
|
+
resetRateLimit = async (request) => {
|
|
31
|
+
const data = tx_1.MsgResetRateLimit.encode(request).finish();
|
|
32
|
+
const promise = this.rpc.request("ibc.applications.rate_limiting.v1.Msg", "ResetRateLimit", data);
|
|
33
|
+
return promise.then(data => tx_1.MsgResetRateLimitResponse.decode(new binary_1.BinaryReader(data)));
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
exports.MsgClientImpl = MsgClientImpl;
|
|
37
|
+
const createClientImpl = (rpc) => {
|
|
38
|
+
return new MsgClientImpl(rpc);
|
|
39
|
+
};
|
|
40
|
+
exports.createClientImpl = createClientImpl;
|
|
@@ -1,15 +1,28 @@
|
|
|
1
1
|
import { Coin, CoinAmino } from "../../../../cosmos/base/v1beta1/coin";
|
|
2
2
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
3
3
|
import { DeepPartial } from "../../../../helpers";
|
|
4
|
-
/**
|
|
4
|
+
/**
|
|
5
|
+
* Allocation defines the spend limit for a particular port and channel
|
|
6
|
+
* @name Allocation
|
|
7
|
+
* @package ibc.applications.transfer.v1
|
|
8
|
+
* @see proto type: ibc.applications.transfer.v1.Allocation
|
|
9
|
+
*/
|
|
5
10
|
export interface Allocation {
|
|
6
|
-
/**
|
|
11
|
+
/**
|
|
12
|
+
* the port on which the packet will be sent
|
|
13
|
+
*/
|
|
7
14
|
sourcePort: string;
|
|
8
|
-
/**
|
|
15
|
+
/**
|
|
16
|
+
* the channel by which the packet will be sent
|
|
17
|
+
*/
|
|
9
18
|
sourceChannel: string;
|
|
10
|
-
/**
|
|
19
|
+
/**
|
|
20
|
+
* spend limitation on the channel
|
|
21
|
+
*/
|
|
11
22
|
spendLimit: Coin[];
|
|
12
|
-
/**
|
|
23
|
+
/**
|
|
24
|
+
* allow list of receivers, an empty allow list permits any receiver address
|
|
25
|
+
*/
|
|
13
26
|
allowList: string[];
|
|
14
27
|
/**
|
|
15
28
|
* allow list of memo strings, an empty list prohibits all memo strings;
|
|
@@ -21,15 +34,28 @@ export interface AllocationProtoMsg {
|
|
|
21
34
|
typeUrl: "/ibc.applications.transfer.v1.Allocation";
|
|
22
35
|
value: Uint8Array;
|
|
23
36
|
}
|
|
24
|
-
/**
|
|
37
|
+
/**
|
|
38
|
+
* Allocation defines the spend limit for a particular port and channel
|
|
39
|
+
* @name AllocationAmino
|
|
40
|
+
* @package ibc.applications.transfer.v1
|
|
41
|
+
* @see proto type: ibc.applications.transfer.v1.Allocation
|
|
42
|
+
*/
|
|
25
43
|
export interface AllocationAmino {
|
|
26
|
-
/**
|
|
44
|
+
/**
|
|
45
|
+
* the port on which the packet will be sent
|
|
46
|
+
*/
|
|
27
47
|
source_port?: string;
|
|
28
|
-
/**
|
|
48
|
+
/**
|
|
49
|
+
* the channel by which the packet will be sent
|
|
50
|
+
*/
|
|
29
51
|
source_channel?: string;
|
|
30
|
-
/**
|
|
52
|
+
/**
|
|
53
|
+
* spend limitation on the channel
|
|
54
|
+
*/
|
|
31
55
|
spend_limit?: CoinAmino[];
|
|
32
|
-
/**
|
|
56
|
+
/**
|
|
57
|
+
* allow list of receivers, an empty allow list permits any receiver address
|
|
58
|
+
*/
|
|
33
59
|
allow_list?: string[];
|
|
34
60
|
/**
|
|
35
61
|
* allow list of memo strings, an empty list prohibits all memo strings;
|
|
@@ -44,9 +70,14 @@ export interface AllocationAminoMsg {
|
|
|
44
70
|
/**
|
|
45
71
|
* TransferAuthorization allows the grantee to spend up to spend_limit coins from
|
|
46
72
|
* the granter's account for ibc transfer on a specific channel
|
|
73
|
+
* @name TransferAuthorization
|
|
74
|
+
* @package ibc.applications.transfer.v1
|
|
75
|
+
* @see proto type: ibc.applications.transfer.v1.TransferAuthorization
|
|
47
76
|
*/
|
|
48
77
|
export interface TransferAuthorization {
|
|
49
|
-
/**
|
|
78
|
+
/**
|
|
79
|
+
* port and channel amounts
|
|
80
|
+
*/
|
|
50
81
|
allocations: Allocation[];
|
|
51
82
|
}
|
|
52
83
|
export interface TransferAuthorizationProtoMsg {
|
|
@@ -56,15 +87,26 @@ export interface TransferAuthorizationProtoMsg {
|
|
|
56
87
|
/**
|
|
57
88
|
* TransferAuthorization allows the grantee to spend up to spend_limit coins from
|
|
58
89
|
* the granter's account for ibc transfer on a specific channel
|
|
90
|
+
* @name TransferAuthorizationAmino
|
|
91
|
+
* @package ibc.applications.transfer.v1
|
|
92
|
+
* @see proto type: ibc.applications.transfer.v1.TransferAuthorization
|
|
59
93
|
*/
|
|
60
94
|
export interface TransferAuthorizationAmino {
|
|
61
|
-
/**
|
|
95
|
+
/**
|
|
96
|
+
* port and channel amounts
|
|
97
|
+
*/
|
|
62
98
|
allocations?: AllocationAmino[];
|
|
63
99
|
}
|
|
64
100
|
export interface TransferAuthorizationAminoMsg {
|
|
65
101
|
type: "cosmos-sdk/TransferAuthorization";
|
|
66
102
|
value: TransferAuthorizationAmino;
|
|
67
103
|
}
|
|
104
|
+
/**
|
|
105
|
+
* Allocation defines the spend limit for a particular port and channel
|
|
106
|
+
* @name Allocation
|
|
107
|
+
* @package ibc.applications.transfer.v1
|
|
108
|
+
* @see proto type: ibc.applications.transfer.v1.Allocation
|
|
109
|
+
*/
|
|
68
110
|
export declare const Allocation: {
|
|
69
111
|
typeUrl: string;
|
|
70
112
|
aminoType: string;
|
|
@@ -79,6 +121,13 @@ export declare const Allocation: {
|
|
|
79
121
|
toProto(message: Allocation): Uint8Array;
|
|
80
122
|
toProtoMsg(message: Allocation): AllocationProtoMsg;
|
|
81
123
|
};
|
|
124
|
+
/**
|
|
125
|
+
* TransferAuthorization allows the grantee to spend up to spend_limit coins from
|
|
126
|
+
* the granter's account for ibc transfer on a specific channel
|
|
127
|
+
* @name TransferAuthorization
|
|
128
|
+
* @package ibc.applications.transfer.v1
|
|
129
|
+
* @see proto type: ibc.applications.transfer.v1.TransferAuthorization
|
|
130
|
+
*/
|
|
82
131
|
export declare const TransferAuthorization: {
|
|
83
132
|
typeUrl: string;
|
|
84
133
|
aminoType: string;
|
|
@@ -13,6 +13,12 @@ function createBaseAllocation() {
|
|
|
13
13
|
allowedPacketData: []
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
|
+
/**
|
|
17
|
+
* Allocation defines the spend limit for a particular port and channel
|
|
18
|
+
* @name Allocation
|
|
19
|
+
* @package ibc.applications.transfer.v1
|
|
20
|
+
* @see proto type: ibc.applications.transfer.v1.Allocation
|
|
21
|
+
*/
|
|
16
22
|
exports.Allocation = {
|
|
17
23
|
typeUrl: "/ibc.applications.transfer.v1.Allocation",
|
|
18
24
|
aminoType: "cosmos-sdk/Allocation",
|
|
@@ -136,6 +142,13 @@ function createBaseTransferAuthorization() {
|
|
|
136
142
|
allocations: []
|
|
137
143
|
};
|
|
138
144
|
}
|
|
145
|
+
/**
|
|
146
|
+
* TransferAuthorization allows the grantee to spend up to spend_limit coins from
|
|
147
|
+
* the granter's account for ibc transfer on a specific channel
|
|
148
|
+
* @name TransferAuthorization
|
|
149
|
+
* @package ibc.applications.transfer.v1
|
|
150
|
+
* @see proto type: ibc.applications.transfer.v1.TransferAuthorization
|
|
151
|
+
*/
|
|
139
152
|
exports.TransferAuthorization = {
|
|
140
153
|
typeUrl: "/ibc.applications.transfer.v1.TransferAuthorization",
|
|
141
154
|
aminoType: "cosmos-sdk/TransferAuthorization",
|
|
@@ -3,15 +3,20 @@ import { DeepPartial } from "../../../../helpers";
|
|
|
3
3
|
/**
|
|
4
4
|
* DenomTrace contains the base denomination for ICS20 fungible tokens and the
|
|
5
5
|
* source tracing information path.
|
|
6
|
+
* @name DenomTrace
|
|
7
|
+
* @package ibc.applications.transfer.v1
|
|
8
|
+
* @see proto type: ibc.applications.transfer.v1.DenomTrace
|
|
9
|
+
* @deprecated
|
|
6
10
|
*/
|
|
7
|
-
/** @deprecated */
|
|
8
11
|
export interface DenomTrace {
|
|
9
12
|
/**
|
|
10
13
|
* path defines the chain of port/channel identifiers used for tracing the
|
|
11
14
|
* source of the fungible token.
|
|
12
15
|
*/
|
|
13
16
|
path: string;
|
|
14
|
-
/**
|
|
17
|
+
/**
|
|
18
|
+
* base denomination of the relayed fungible token.
|
|
19
|
+
*/
|
|
15
20
|
baseDenom: string;
|
|
16
21
|
}
|
|
17
22
|
export interface DenomTraceProtoMsg {
|
|
@@ -21,21 +26,34 @@ export interface DenomTraceProtoMsg {
|
|
|
21
26
|
/**
|
|
22
27
|
* DenomTrace contains the base denomination for ICS20 fungible tokens and the
|
|
23
28
|
* source tracing information path.
|
|
29
|
+
* @name DenomTraceAmino
|
|
30
|
+
* @package ibc.applications.transfer.v1
|
|
31
|
+
* @see proto type: ibc.applications.transfer.v1.DenomTrace
|
|
32
|
+
* @deprecated
|
|
24
33
|
*/
|
|
25
|
-
/** @deprecated */
|
|
26
34
|
export interface DenomTraceAmino {
|
|
27
35
|
/**
|
|
28
36
|
* path defines the chain of port/channel identifiers used for tracing the
|
|
29
37
|
* source of the fungible token.
|
|
30
38
|
*/
|
|
31
39
|
path?: string;
|
|
32
|
-
/**
|
|
40
|
+
/**
|
|
41
|
+
* base denomination of the relayed fungible token.
|
|
42
|
+
*/
|
|
33
43
|
base_denom?: string;
|
|
34
44
|
}
|
|
35
45
|
export interface DenomTraceAminoMsg {
|
|
36
46
|
type: "cosmos-sdk/DenomTrace";
|
|
37
47
|
value: DenomTraceAmino;
|
|
38
48
|
}
|
|
49
|
+
/**
|
|
50
|
+
* DenomTrace contains the base denomination for ICS20 fungible tokens and the
|
|
51
|
+
* source tracing information path.
|
|
52
|
+
* @name DenomTrace
|
|
53
|
+
* @package ibc.applications.transfer.v1
|
|
54
|
+
* @see proto type: ibc.applications.transfer.v1.DenomTrace
|
|
55
|
+
* @deprecated
|
|
56
|
+
*/
|
|
39
57
|
export declare const DenomTrace: {
|
|
40
58
|
typeUrl: string;
|
|
41
59
|
aminoType: string;
|
|
@@ -9,6 +9,14 @@ function createBaseDenomTrace() {
|
|
|
9
9
|
baseDenom: ""
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* DenomTrace contains the base denomination for ICS20 fungible tokens and the
|
|
14
|
+
* source tracing information path.
|
|
15
|
+
* @name DenomTrace
|
|
16
|
+
* @package ibc.applications.transfer.v1
|
|
17
|
+
* @see proto type: ibc.applications.transfer.v1.DenomTrace
|
|
18
|
+
* @deprecated
|
|
19
|
+
*/
|
|
12
20
|
exports.DenomTrace = {
|
|
13
21
|
typeUrl: "/ibc.applications.transfer.v1.DenomTrace",
|
|
14
22
|
aminoType: "cosmos-sdk/DenomTrace",
|
|
@@ -3,7 +3,12 @@ import { Params, ParamsAmino } from "./transfer";
|
|
|
3
3
|
import { Coin, CoinAmino } from "../../../../cosmos/base/v1beta1/coin";
|
|
4
4
|
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
5
5
|
import { DeepPartial } from "../../../../helpers";
|
|
6
|
-
/**
|
|
6
|
+
/**
|
|
7
|
+
* GenesisState defines the ibc-transfer genesis state
|
|
8
|
+
* @name GenesisState
|
|
9
|
+
* @package ibc.applications.transfer.v1
|
|
10
|
+
* @see proto type: ibc.applications.transfer.v1.GenesisState
|
|
11
|
+
*/
|
|
7
12
|
export interface GenesisState {
|
|
8
13
|
portId: string;
|
|
9
14
|
denoms: Denom[];
|
|
@@ -18,7 +23,12 @@ export interface GenesisStateProtoMsg {
|
|
|
18
23
|
typeUrl: "/ibc.applications.transfer.v1.GenesisState";
|
|
19
24
|
value: Uint8Array;
|
|
20
25
|
}
|
|
21
|
-
/**
|
|
26
|
+
/**
|
|
27
|
+
* GenesisState defines the ibc-transfer genesis state
|
|
28
|
+
* @name GenesisStateAmino
|
|
29
|
+
* @package ibc.applications.transfer.v1
|
|
30
|
+
* @see proto type: ibc.applications.transfer.v1.GenesisState
|
|
31
|
+
*/
|
|
22
32
|
export interface GenesisStateAmino {
|
|
23
33
|
port_id?: string;
|
|
24
34
|
denoms?: DenomAmino[];
|
|
@@ -33,6 +43,12 @@ export interface GenesisStateAminoMsg {
|
|
|
33
43
|
type: "cosmos-sdk/GenesisState";
|
|
34
44
|
value: GenesisStateAmino;
|
|
35
45
|
}
|
|
46
|
+
/**
|
|
47
|
+
* GenesisState defines the ibc-transfer genesis state
|
|
48
|
+
* @name GenesisState
|
|
49
|
+
* @package ibc.applications.transfer.v1
|
|
50
|
+
* @see proto type: ibc.applications.transfer.v1.GenesisState
|
|
51
|
+
*/
|
|
36
52
|
export declare const GenesisState: {
|
|
37
53
|
typeUrl: string;
|
|
38
54
|
aminoType: string;
|
|
@@ -14,6 +14,12 @@ function createBaseGenesisState() {
|
|
|
14
14
|
totalEscrowed: []
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* GenesisState defines the ibc-transfer genesis state
|
|
19
|
+
* @name GenesisState
|
|
20
|
+
* @package ibc.applications.transfer.v1
|
|
21
|
+
* @see proto type: ibc.applications.transfer.v1.GenesisState
|
|
22
|
+
*/
|
|
17
23
|
exports.GenesisState = {
|
|
18
24
|
typeUrl: "/ibc.applications.transfer.v1.GenesisState",
|
|
19
25
|
aminoType: "cosmos-sdk/GenesisState",
|
|
@@ -4,17 +4,30 @@ import { DeepPartial } from "../../../../helpers";
|
|
|
4
4
|
* FungibleTokenPacketData defines a struct for the packet payload
|
|
5
5
|
* See FungibleTokenPacketData spec:
|
|
6
6
|
* https://github.com/cosmos/ibc/tree/master/spec/app/ics-020-fungible-token-transfer#data-structures
|
|
7
|
+
* @name FungibleTokenPacketData
|
|
8
|
+
* @package ibc.applications.transfer.v1
|
|
9
|
+
* @see proto type: ibc.applications.transfer.v1.FungibleTokenPacketData
|
|
7
10
|
*/
|
|
8
11
|
export interface FungibleTokenPacketData {
|
|
9
|
-
/**
|
|
12
|
+
/**
|
|
13
|
+
* the token denomination to be transferred
|
|
14
|
+
*/
|
|
10
15
|
denom: string;
|
|
11
|
-
/**
|
|
16
|
+
/**
|
|
17
|
+
* the token amount to be transferred
|
|
18
|
+
*/
|
|
12
19
|
amount: string;
|
|
13
|
-
/**
|
|
20
|
+
/**
|
|
21
|
+
* the sender address
|
|
22
|
+
*/
|
|
14
23
|
sender: string;
|
|
15
|
-
/**
|
|
24
|
+
/**
|
|
25
|
+
* the recipient address on the destination chain
|
|
26
|
+
*/
|
|
16
27
|
receiver: string;
|
|
17
|
-
/**
|
|
28
|
+
/**
|
|
29
|
+
* optional memo
|
|
30
|
+
*/
|
|
18
31
|
memo: string;
|
|
19
32
|
}
|
|
20
33
|
export interface FungibleTokenPacketDataProtoMsg {
|
|
@@ -25,23 +38,44 @@ export interface FungibleTokenPacketDataProtoMsg {
|
|
|
25
38
|
* FungibleTokenPacketData defines a struct for the packet payload
|
|
26
39
|
* See FungibleTokenPacketData spec:
|
|
27
40
|
* https://github.com/cosmos/ibc/tree/master/spec/app/ics-020-fungible-token-transfer#data-structures
|
|
41
|
+
* @name FungibleTokenPacketDataAmino
|
|
42
|
+
* @package ibc.applications.transfer.v1
|
|
43
|
+
* @see proto type: ibc.applications.transfer.v1.FungibleTokenPacketData
|
|
28
44
|
*/
|
|
29
45
|
export interface FungibleTokenPacketDataAmino {
|
|
30
|
-
/**
|
|
46
|
+
/**
|
|
47
|
+
* the token denomination to be transferred
|
|
48
|
+
*/
|
|
31
49
|
denom?: string;
|
|
32
|
-
/**
|
|
50
|
+
/**
|
|
51
|
+
* the token amount to be transferred
|
|
52
|
+
*/
|
|
33
53
|
amount?: string;
|
|
34
|
-
/**
|
|
54
|
+
/**
|
|
55
|
+
* the sender address
|
|
56
|
+
*/
|
|
35
57
|
sender?: string;
|
|
36
|
-
/**
|
|
58
|
+
/**
|
|
59
|
+
* the recipient address on the destination chain
|
|
60
|
+
*/
|
|
37
61
|
receiver?: string;
|
|
38
|
-
/**
|
|
62
|
+
/**
|
|
63
|
+
* optional memo
|
|
64
|
+
*/
|
|
39
65
|
memo?: string;
|
|
40
66
|
}
|
|
41
67
|
export interface FungibleTokenPacketDataAminoMsg {
|
|
42
68
|
type: "cosmos-sdk/FungibleTokenPacketData";
|
|
43
69
|
value: FungibleTokenPacketDataAmino;
|
|
44
70
|
}
|
|
71
|
+
/**
|
|
72
|
+
* FungibleTokenPacketData defines a struct for the packet payload
|
|
73
|
+
* See FungibleTokenPacketData spec:
|
|
74
|
+
* https://github.com/cosmos/ibc/tree/master/spec/app/ics-020-fungible-token-transfer#data-structures
|
|
75
|
+
* @name FungibleTokenPacketData
|
|
76
|
+
* @package ibc.applications.transfer.v1
|
|
77
|
+
* @see proto type: ibc.applications.transfer.v1.FungibleTokenPacketData
|
|
78
|
+
*/
|
|
45
79
|
export declare const FungibleTokenPacketData: {
|
|
46
80
|
typeUrl: string;
|
|
47
81
|
aminoType: string;
|
|
@@ -12,6 +12,14 @@ function createBaseFungibleTokenPacketData() {
|
|
|
12
12
|
memo: ""
|
|
13
13
|
};
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* FungibleTokenPacketData defines a struct for the packet payload
|
|
17
|
+
* See FungibleTokenPacketData spec:
|
|
18
|
+
* https://github.com/cosmos/ibc/tree/master/spec/app/ics-020-fungible-token-transfer#data-structures
|
|
19
|
+
* @name FungibleTokenPacketData
|
|
20
|
+
* @package ibc.applications.transfer.v1
|
|
21
|
+
* @see proto type: ibc.applications.transfer.v1.FungibleTokenPacketData
|
|
22
|
+
*/
|
|
15
23
|
exports.FungibleTokenPacketData = {
|
|
16
24
|
typeUrl: "/ibc.applications.transfer.v1.FungibleTokenPacketData",
|
|
17
25
|
aminoType: "cosmos-sdk/FungibleTokenPacketData",
|