@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
package/esm/ibc/bundle.js
CHANGED
|
@@ -1,101 +1,110 @@
|
|
|
1
1
|
//@ts-nocheck
|
|
2
|
-
import * as
|
|
3
|
-
import * as
|
|
4
|
-
import * as
|
|
5
|
-
import * as
|
|
6
|
-
import * as
|
|
7
|
-
import * as
|
|
8
|
-
import * as
|
|
9
|
-
import * as
|
|
10
|
-
import * as
|
|
11
|
-
import * as
|
|
12
|
-
import * as
|
|
13
|
-
import * as
|
|
14
|
-
import * as
|
|
15
|
-
import * as
|
|
16
|
-
import * as
|
|
17
|
-
import * as
|
|
18
|
-
import * as
|
|
19
|
-
import * as
|
|
20
|
-
import * as
|
|
21
|
-
import * as
|
|
22
|
-
import * as
|
|
23
|
-
import * as
|
|
24
|
-
import * as
|
|
25
|
-
import * as
|
|
26
|
-
import * as
|
|
27
|
-
import * as
|
|
28
|
-
import * as
|
|
29
|
-
import * as
|
|
30
|
-
import * as
|
|
31
|
-
import * as
|
|
32
|
-
import * as
|
|
33
|
-
import * as
|
|
34
|
-
import * as
|
|
35
|
-
import * as
|
|
36
|
-
import * as
|
|
37
|
-
import * as
|
|
38
|
-
import * as
|
|
39
|
-
import * as
|
|
40
|
-
import * as
|
|
41
|
-
import * as
|
|
42
|
-
import * as
|
|
43
|
-
import * as
|
|
44
|
-
import * as
|
|
45
|
-
import * as
|
|
46
|
-
import * as
|
|
47
|
-
import * as
|
|
48
|
-
import * as
|
|
49
|
-
import * as
|
|
50
|
-
import * as
|
|
51
|
-
import * as
|
|
52
|
-
import * as
|
|
53
|
-
import * as
|
|
54
|
-
import * as
|
|
55
|
-
import * as
|
|
56
|
-
import * as
|
|
57
|
-
import * as
|
|
58
|
-
import * as
|
|
59
|
-
import * as
|
|
60
|
-
import * as
|
|
61
|
-
import * as
|
|
62
|
-
import * as
|
|
63
|
-
import * as
|
|
64
|
-
import * as
|
|
65
|
-
import * as
|
|
66
|
-
import * as
|
|
67
|
-
import * as
|
|
68
|
-
import * as
|
|
69
|
-
import * as
|
|
70
|
-
import * as
|
|
71
|
-
import * as
|
|
72
|
-
import * as
|
|
73
|
-
import * as
|
|
74
|
-
import * as
|
|
75
|
-
import * as
|
|
76
|
-
import * as
|
|
77
|
-
import * as
|
|
78
|
-
import * as
|
|
79
|
-
import * as
|
|
80
|
-
import * as
|
|
81
|
-
import * as
|
|
82
|
-
import * as
|
|
83
|
-
import * as
|
|
84
|
-
import * as
|
|
85
|
-
import * as
|
|
86
|
-
import * as
|
|
87
|
-
import * as
|
|
88
|
-
import * as
|
|
89
|
-
import * as
|
|
90
|
-
import * as
|
|
91
|
-
import * as
|
|
92
|
-
import * as
|
|
93
|
-
import * as
|
|
94
|
-
import * as
|
|
95
|
-
import * as
|
|
96
|
-
import * as
|
|
97
|
-
import * as
|
|
98
|
-
import * as
|
|
2
|
+
import * as _122 from "./applications/interchain_accounts/controller/v1/controller";
|
|
3
|
+
import * as _123 from "./applications/interchain_accounts/controller/v1/query";
|
|
4
|
+
import * as _124 from "./applications/interchain_accounts/controller/v1/tx";
|
|
5
|
+
import * as _125 from "./applications/interchain_accounts/genesis/v1/genesis";
|
|
6
|
+
import * as _126 from "./applications/interchain_accounts/host/v1/host";
|
|
7
|
+
import * as _127 from "./applications/interchain_accounts/host/v1/query";
|
|
8
|
+
import * as _128 from "./applications/interchain_accounts/host/v1/tx";
|
|
9
|
+
import * as _129 from "./applications/interchain_accounts/v1/account";
|
|
10
|
+
import * as _130 from "./applications/interchain_accounts/v1/metadata";
|
|
11
|
+
import * as _131 from "./applications/interchain_accounts/v1/packet";
|
|
12
|
+
import * as _132 from "./applications/packet_forward_middleware/v1/genesis";
|
|
13
|
+
import * as _133 from "./applications/rate_limiting/v1/genesis";
|
|
14
|
+
import * as _134 from "./applications/rate_limiting/v1/query";
|
|
15
|
+
import * as _135 from "./applications/rate_limiting/v1/rate_limiting";
|
|
16
|
+
import * as _136 from "./applications/rate_limiting/v1/tx";
|
|
17
|
+
import * as _137 from "./applications/transfer/v1/authz";
|
|
18
|
+
import * as _138 from "./applications/transfer/v1/denomtrace";
|
|
19
|
+
import * as _139 from "./applications/transfer/v1/genesis";
|
|
20
|
+
import * as _140 from "./applications/transfer/v1/packet";
|
|
21
|
+
import * as _141 from "./applications/transfer/v1/query";
|
|
22
|
+
import * as _142 from "./applications/transfer/v1/token";
|
|
23
|
+
import * as _143 from "./applications/transfer/v1/transfer";
|
|
24
|
+
import * as _144 from "./applications/transfer/v1/tx";
|
|
25
|
+
import * as _145 from "./core/channel/v1/channel";
|
|
26
|
+
import * as _146 from "./core/channel/v1/genesis";
|
|
27
|
+
import * as _147 from "./core/channel/v1/query";
|
|
28
|
+
import * as _148 from "./core/channel/v1/tx";
|
|
29
|
+
import * as _149 from "./core/channel/v2/genesis";
|
|
30
|
+
import * as _150 from "./core/channel/v2/packet";
|
|
31
|
+
import * as _151 from "./core/channel/v2/query";
|
|
32
|
+
import * as _152 from "./core/channel/v2/tx";
|
|
33
|
+
import * as _153 from "./core/client/v1/client";
|
|
34
|
+
import * as _154 from "./core/client/v1/genesis";
|
|
35
|
+
import * as _155 from "./core/client/v1/query";
|
|
36
|
+
import * as _156 from "./core/client/v1/tx";
|
|
37
|
+
import * as _157 from "./core/client/v2/config";
|
|
38
|
+
import * as _158 from "./core/client/v2/counterparty";
|
|
39
|
+
import * as _159 from "./core/client/v2/genesis";
|
|
40
|
+
import * as _160 from "./core/client/v2/query";
|
|
41
|
+
import * as _161 from "./core/client/v2/tx";
|
|
42
|
+
import * as _162 from "./core/commitment/v1/commitment";
|
|
43
|
+
import * as _163 from "./core/commitment/v2/commitment";
|
|
44
|
+
import * as _164 from "./core/connection/v1/connection";
|
|
45
|
+
import * as _165 from "./core/connection/v1/genesis";
|
|
46
|
+
import * as _166 from "./core/connection/v1/query";
|
|
47
|
+
import * as _167 from "./core/connection/v1/tx";
|
|
48
|
+
import * as _168 from "./lightclients/solomachine/v2/solomachine";
|
|
49
|
+
import * as _169 from "./lightclients/solomachine/v3/solomachine";
|
|
50
|
+
import * as _170 from "./lightclients/tendermint/v1/tendermint";
|
|
51
|
+
import * as _171 from "./lightclients/wasm/v1/genesis";
|
|
52
|
+
import * as _172 from "./lightclients/wasm/v1/query";
|
|
53
|
+
import * as _173 from "./lightclients/wasm/v1/tx";
|
|
54
|
+
import * as _174 from "./lightclients/wasm/v1/wasm";
|
|
55
|
+
import * as _284 from "./applications/interchain_accounts/controller/v1/tx.amino";
|
|
56
|
+
import * as _285 from "./applications/interchain_accounts/host/v1/tx.amino";
|
|
57
|
+
import * as _286 from "./applications/rate_limiting/v1/tx.amino";
|
|
58
|
+
import * as _287 from "./applications/transfer/v1/tx.amino";
|
|
59
|
+
import * as _288 from "./core/channel/v1/tx.amino";
|
|
60
|
+
import * as _289 from "./core/channel/v2/tx.amino";
|
|
61
|
+
import * as _290 from "./core/client/v1/tx.amino";
|
|
62
|
+
import * as _291 from "./core/client/v2/tx.amino";
|
|
63
|
+
import * as _292 from "./core/connection/v1/tx.amino";
|
|
64
|
+
import * as _293 from "./lightclients/wasm/v1/tx.amino";
|
|
65
|
+
import * as _294 from "./applications/interchain_accounts/controller/v1/tx.registry";
|
|
66
|
+
import * as _295 from "./applications/interchain_accounts/host/v1/tx.registry";
|
|
67
|
+
import * as _296 from "./applications/rate_limiting/v1/tx.registry";
|
|
68
|
+
import * as _297 from "./applications/transfer/v1/tx.registry";
|
|
69
|
+
import * as _298 from "./core/channel/v1/tx.registry";
|
|
70
|
+
import * as _299 from "./core/channel/v2/tx.registry";
|
|
71
|
+
import * as _300 from "./core/client/v1/tx.registry";
|
|
72
|
+
import * as _301 from "./core/client/v2/tx.registry";
|
|
73
|
+
import * as _302 from "./core/connection/v1/tx.registry";
|
|
74
|
+
import * as _303 from "./lightclients/wasm/v1/tx.registry";
|
|
75
|
+
import * as _304 from "./applications/interchain_accounts/controller/v1/query.lcd";
|
|
76
|
+
import * as _305 from "./applications/interchain_accounts/host/v1/query.lcd";
|
|
77
|
+
import * as _306 from "./applications/rate_limiting/v1/query.lcd";
|
|
78
|
+
import * as _307 from "./applications/transfer/v1/query.lcd";
|
|
79
|
+
import * as _308 from "./core/channel/v1/query.lcd";
|
|
80
|
+
import * as _309 from "./core/channel/v2/query.lcd";
|
|
81
|
+
import * as _310 from "./core/client/v1/query.lcd";
|
|
82
|
+
import * as _311 from "./core/client/v2/query.lcd";
|
|
83
|
+
import * as _312 from "./core/connection/v1/query.lcd";
|
|
84
|
+
import * as _313 from "./lightclients/wasm/v1/query.lcd";
|
|
85
|
+
import * as _314 from "./applications/interchain_accounts/controller/v1/query.rpc.Query";
|
|
86
|
+
import * as _315 from "./applications/interchain_accounts/host/v1/query.rpc.Query";
|
|
87
|
+
import * as _316 from "./applications/rate_limiting/v1/query.rpc.Query";
|
|
88
|
+
import * as _317 from "./applications/transfer/v1/query.rpc.Query";
|
|
89
|
+
import * as _318 from "./core/channel/v1/query.rpc.Query";
|
|
90
|
+
import * as _319 from "./core/channel/v2/query.rpc.Query";
|
|
91
|
+
import * as _320 from "./core/client/v1/query.rpc.Query";
|
|
92
|
+
import * as _321 from "./core/client/v2/query.rpc.Query";
|
|
93
|
+
import * as _322 from "./core/connection/v1/query.rpc.Query";
|
|
94
|
+
import * as _323 from "./lightclients/wasm/v1/query.rpc.Query";
|
|
95
|
+
import * as _324 from "./applications/interchain_accounts/controller/v1/tx.rpc.msg";
|
|
96
|
+
import * as _325 from "./applications/interchain_accounts/host/v1/tx.rpc.msg";
|
|
97
|
+
import * as _326 from "./applications/rate_limiting/v1/tx.rpc.msg";
|
|
98
|
+
import * as _327 from "./applications/transfer/v1/tx.rpc.msg";
|
|
99
|
+
import * as _328 from "./core/channel/v1/tx.rpc.msg";
|
|
100
|
+
import * as _329 from "./core/channel/v2/tx.rpc.msg";
|
|
101
|
+
import * as _330 from "./core/client/v1/tx.rpc.msg";
|
|
102
|
+
import * as _331 from "./core/client/v2/tx.rpc.msg";
|
|
103
|
+
import * as _332 from "./core/connection/v1/tx.rpc.msg";
|
|
104
|
+
import * as _333 from "./lightclients/wasm/v1/tx.rpc.msg";
|
|
105
|
+
import * as _347 from "./lcd";
|
|
106
|
+
import * as _348 from "./rpc.query";
|
|
107
|
+
import * as _349 from "./rpc.tx";
|
|
99
108
|
export var ibc;
|
|
100
109
|
(function (ibc) {
|
|
101
110
|
let applications;
|
|
@@ -105,63 +114,77 @@ export var ibc;
|
|
|
105
114
|
let controller;
|
|
106
115
|
(function (controller) {
|
|
107
116
|
controller.v1 = {
|
|
117
|
+
..._122,
|
|
118
|
+
..._123,
|
|
108
119
|
..._124,
|
|
109
|
-
...
|
|
110
|
-
...
|
|
111
|
-
...
|
|
112
|
-
...
|
|
113
|
-
...
|
|
114
|
-
..._308,
|
|
115
|
-
..._317
|
|
120
|
+
..._284,
|
|
121
|
+
..._294,
|
|
122
|
+
..._304,
|
|
123
|
+
..._314,
|
|
124
|
+
..._324
|
|
116
125
|
};
|
|
117
126
|
})(controller = interchain_accounts.controller || (interchain_accounts.controller = {}));
|
|
118
127
|
let genesis;
|
|
119
128
|
(function (genesis) {
|
|
120
129
|
genesis.v1 = {
|
|
121
|
-
...
|
|
130
|
+
..._125
|
|
122
131
|
};
|
|
123
132
|
})(genesis = interchain_accounts.genesis || (interchain_accounts.genesis = {}));
|
|
124
133
|
let host;
|
|
125
134
|
(function (host) {
|
|
126
135
|
host.v1 = {
|
|
136
|
+
..._126,
|
|
137
|
+
..._127,
|
|
127
138
|
..._128,
|
|
128
|
-
...
|
|
129
|
-
...
|
|
130
|
-
...
|
|
131
|
-
...
|
|
132
|
-
...
|
|
133
|
-
..._309,
|
|
134
|
-
..._318
|
|
139
|
+
..._285,
|
|
140
|
+
..._295,
|
|
141
|
+
..._305,
|
|
142
|
+
..._315,
|
|
143
|
+
..._325
|
|
135
144
|
};
|
|
136
145
|
})(host = interchain_accounts.host || (interchain_accounts.host = {}));
|
|
137
146
|
interchain_accounts.v1 = {
|
|
138
|
-
...
|
|
139
|
-
...
|
|
140
|
-
...
|
|
147
|
+
..._129,
|
|
148
|
+
..._130,
|
|
149
|
+
..._131
|
|
141
150
|
};
|
|
142
151
|
})(interchain_accounts = applications.interchain_accounts || (applications.interchain_accounts = {}));
|
|
143
152
|
let packet_forward_middleware;
|
|
144
153
|
(function (packet_forward_middleware) {
|
|
145
154
|
packet_forward_middleware.v1 = {
|
|
146
|
-
...
|
|
155
|
+
..._132
|
|
147
156
|
};
|
|
148
157
|
})(packet_forward_middleware = applications.packet_forward_middleware || (applications.packet_forward_middleware = {}));
|
|
158
|
+
let rate_limiting;
|
|
159
|
+
(function (rate_limiting) {
|
|
160
|
+
rate_limiting.v1 = {
|
|
161
|
+
..._133,
|
|
162
|
+
..._134,
|
|
163
|
+
..._135,
|
|
164
|
+
..._136,
|
|
165
|
+
..._286,
|
|
166
|
+
..._296,
|
|
167
|
+
..._306,
|
|
168
|
+
..._316,
|
|
169
|
+
..._326
|
|
170
|
+
};
|
|
171
|
+
})(rate_limiting = applications.rate_limiting || (applications.rate_limiting = {}));
|
|
149
172
|
let transfer;
|
|
150
173
|
(function (transfer) {
|
|
151
174
|
transfer.v1 = {
|
|
152
|
-
..._135,
|
|
153
|
-
..._136,
|
|
154
175
|
..._137,
|
|
155
176
|
..._138,
|
|
156
177
|
..._139,
|
|
157
178
|
..._140,
|
|
158
179
|
..._141,
|
|
159
180
|
..._142,
|
|
160
|
-
...
|
|
161
|
-
...
|
|
162
|
-
...
|
|
163
|
-
...
|
|
164
|
-
...
|
|
181
|
+
..._143,
|
|
182
|
+
..._144,
|
|
183
|
+
..._287,
|
|
184
|
+
..._297,
|
|
185
|
+
..._307,
|
|
186
|
+
..._317,
|
|
187
|
+
..._327
|
|
165
188
|
};
|
|
166
189
|
})(transfer = applications.transfer || (applications.transfer = {}));
|
|
167
190
|
})(applications = ibc.applications || (ibc.applications = {}));
|
|
@@ -170,75 +193,75 @@ export var ibc;
|
|
|
170
193
|
let channel;
|
|
171
194
|
(function (channel) {
|
|
172
195
|
channel.v1 = {
|
|
173
|
-
..._143,
|
|
174
|
-
..._144,
|
|
175
196
|
..._145,
|
|
176
197
|
..._146,
|
|
177
|
-
..._284,
|
|
178
|
-
..._293,
|
|
179
|
-
..._302,
|
|
180
|
-
..._311,
|
|
181
|
-
..._320
|
|
182
|
-
};
|
|
183
|
-
channel.v2 = {
|
|
184
198
|
..._147,
|
|
185
199
|
..._148,
|
|
200
|
+
..._288,
|
|
201
|
+
..._298,
|
|
202
|
+
..._308,
|
|
203
|
+
..._318,
|
|
204
|
+
..._328
|
|
205
|
+
};
|
|
206
|
+
channel.v2 = {
|
|
186
207
|
..._149,
|
|
187
208
|
..._150,
|
|
188
|
-
...
|
|
189
|
-
...
|
|
190
|
-
...
|
|
191
|
-
...
|
|
192
|
-
...
|
|
209
|
+
..._151,
|
|
210
|
+
..._152,
|
|
211
|
+
..._289,
|
|
212
|
+
..._299,
|
|
213
|
+
..._309,
|
|
214
|
+
..._319,
|
|
215
|
+
..._329
|
|
193
216
|
};
|
|
194
217
|
})(channel = core.channel || (core.channel = {}));
|
|
195
218
|
let client;
|
|
196
219
|
(function (client) {
|
|
197
220
|
client.v1 = {
|
|
198
|
-
..._151,
|
|
199
|
-
..._152,
|
|
200
221
|
..._153,
|
|
201
222
|
..._154,
|
|
202
|
-
..._286,
|
|
203
|
-
..._295,
|
|
204
|
-
..._304,
|
|
205
|
-
..._313,
|
|
206
|
-
..._322
|
|
207
|
-
};
|
|
208
|
-
client.v2 = {
|
|
209
223
|
..._155,
|
|
210
224
|
..._156,
|
|
225
|
+
..._290,
|
|
226
|
+
..._300,
|
|
227
|
+
..._310,
|
|
228
|
+
..._320,
|
|
229
|
+
..._330
|
|
230
|
+
};
|
|
231
|
+
client.v2 = {
|
|
211
232
|
..._157,
|
|
212
233
|
..._158,
|
|
213
234
|
..._159,
|
|
214
|
-
...
|
|
215
|
-
...
|
|
216
|
-
...
|
|
217
|
-
...
|
|
218
|
-
...
|
|
235
|
+
..._160,
|
|
236
|
+
..._161,
|
|
237
|
+
..._291,
|
|
238
|
+
..._301,
|
|
239
|
+
..._311,
|
|
240
|
+
..._321,
|
|
241
|
+
..._331
|
|
219
242
|
};
|
|
220
243
|
})(client = core.client || (core.client = {}));
|
|
221
244
|
let commitment;
|
|
222
245
|
(function (commitment) {
|
|
223
246
|
commitment.v1 = {
|
|
224
|
-
...
|
|
247
|
+
..._162
|
|
225
248
|
};
|
|
226
249
|
commitment.v2 = {
|
|
227
|
-
...
|
|
250
|
+
..._163
|
|
228
251
|
};
|
|
229
252
|
})(commitment = core.commitment || (core.commitment = {}));
|
|
230
253
|
let connection;
|
|
231
254
|
(function (connection) {
|
|
232
255
|
connection.v1 = {
|
|
233
|
-
..._162,
|
|
234
|
-
..._163,
|
|
235
256
|
..._164,
|
|
236
257
|
..._165,
|
|
237
|
-
...
|
|
238
|
-
...
|
|
239
|
-
...
|
|
240
|
-
...
|
|
241
|
-
...
|
|
258
|
+
..._166,
|
|
259
|
+
..._167,
|
|
260
|
+
..._292,
|
|
261
|
+
..._302,
|
|
262
|
+
..._312,
|
|
263
|
+
..._322,
|
|
264
|
+
..._332
|
|
242
265
|
};
|
|
243
266
|
})(connection = core.connection || (core.connection = {}));
|
|
244
267
|
})(core = ibc.core || (ibc.core = {}));
|
|
@@ -247,36 +270,36 @@ export var ibc;
|
|
|
247
270
|
let solomachine;
|
|
248
271
|
(function (solomachine) {
|
|
249
272
|
solomachine.v2 = {
|
|
250
|
-
...
|
|
273
|
+
..._168
|
|
251
274
|
};
|
|
252
275
|
solomachine.v3 = {
|
|
253
|
-
...
|
|
276
|
+
..._169
|
|
254
277
|
};
|
|
255
278
|
})(solomachine = lightclients.solomachine || (lightclients.solomachine = {}));
|
|
256
279
|
let tendermint;
|
|
257
280
|
(function (tendermint) {
|
|
258
281
|
tendermint.v1 = {
|
|
259
|
-
...
|
|
282
|
+
..._170
|
|
260
283
|
};
|
|
261
284
|
})(tendermint = lightclients.tendermint || (lightclients.tendermint = {}));
|
|
262
285
|
let wasm;
|
|
263
286
|
(function (wasm) {
|
|
264
287
|
wasm.v1 = {
|
|
265
|
-
..._169,
|
|
266
|
-
..._170,
|
|
267
288
|
..._171,
|
|
268
289
|
..._172,
|
|
269
|
-
...
|
|
270
|
-
...
|
|
271
|
-
...
|
|
272
|
-
...
|
|
273
|
-
...
|
|
290
|
+
..._173,
|
|
291
|
+
..._174,
|
|
292
|
+
..._293,
|
|
293
|
+
..._303,
|
|
294
|
+
..._313,
|
|
295
|
+
..._323,
|
|
296
|
+
..._333
|
|
274
297
|
};
|
|
275
298
|
})(wasm = lightclients.wasm || (lightclients.wasm = {}));
|
|
276
299
|
})(lightclients = ibc.lightclients || (ibc.lightclients = {}));
|
|
277
300
|
ibc.ClientFactory = {
|
|
278
|
-
...
|
|
279
|
-
...
|
|
280
|
-
...
|
|
301
|
+
..._347,
|
|
302
|
+
..._348,
|
|
303
|
+
..._349
|
|
281
304
|
};
|
|
282
305
|
})(ibc || (ibc = {}));
|
package/esm/ibc/client.js
CHANGED
|
@@ -3,6 +3,7 @@ import { Registry } from "@cosmjs/proto-signing";
|
|
|
3
3
|
import { defaultRegistryTypes, AminoTypes, SigningStargateClient } from "@cosmjs/stargate";
|
|
4
4
|
import * as ibcApplicationsInterchainAccountsControllerV1TxRegistry from "./applications/interchain_accounts/controller/v1/tx.registry";
|
|
5
5
|
import * as ibcApplicationsInterchainAccountsHostV1TxRegistry from "./applications/interchain_accounts/host/v1/tx.registry";
|
|
6
|
+
import * as ibcApplicationsRateLimitingV1TxRegistry from "./applications/rate_limiting/v1/tx.registry";
|
|
6
7
|
import * as ibcApplicationsTransferV1TxRegistry from "./applications/transfer/v1/tx.registry";
|
|
7
8
|
import * as ibcCoreChannelV1TxRegistry from "./core/channel/v1/tx.registry";
|
|
8
9
|
import * as ibcCoreChannelV2TxRegistry from "./core/channel/v2/tx.registry";
|
|
@@ -12,6 +13,7 @@ import * as ibcCoreConnectionV1TxRegistry from "./core/connection/v1/tx.registry
|
|
|
12
13
|
import * as ibcLightclientsWasmV1TxRegistry from "./lightclients/wasm/v1/tx.registry";
|
|
13
14
|
import * as ibcApplicationsInterchainAccountsControllerV1TxAmino from "./applications/interchain_accounts/controller/v1/tx.amino";
|
|
14
15
|
import * as ibcApplicationsInterchainAccountsHostV1TxAmino from "./applications/interchain_accounts/host/v1/tx.amino";
|
|
16
|
+
import * as ibcApplicationsRateLimitingV1TxAmino from "./applications/rate_limiting/v1/tx.amino";
|
|
15
17
|
import * as ibcApplicationsTransferV1TxAmino from "./applications/transfer/v1/tx.amino";
|
|
16
18
|
import * as ibcCoreChannelV1TxAmino from "./core/channel/v1/tx.amino";
|
|
17
19
|
import * as ibcCoreChannelV2TxAmino from "./core/channel/v2/tx.amino";
|
|
@@ -22,6 +24,7 @@ import * as ibcLightclientsWasmV1TxAmino from "./lightclients/wasm/v1/tx.amino";
|
|
|
22
24
|
export const ibcAminoConverters = {
|
|
23
25
|
...ibcApplicationsInterchainAccountsControllerV1TxAmino.AminoConverter,
|
|
24
26
|
...ibcApplicationsInterchainAccountsHostV1TxAmino.AminoConverter,
|
|
27
|
+
...ibcApplicationsRateLimitingV1TxAmino.AminoConverter,
|
|
25
28
|
...ibcApplicationsTransferV1TxAmino.AminoConverter,
|
|
26
29
|
...ibcCoreChannelV1TxAmino.AminoConverter,
|
|
27
30
|
...ibcCoreChannelV2TxAmino.AminoConverter,
|
|
@@ -30,7 +33,7 @@ export const ibcAminoConverters = {
|
|
|
30
33
|
...ibcCoreConnectionV1TxAmino.AminoConverter,
|
|
31
34
|
...ibcLightclientsWasmV1TxAmino.AminoConverter
|
|
32
35
|
};
|
|
33
|
-
export const ibcProtoRegistry = [...ibcApplicationsInterchainAccountsControllerV1TxRegistry.registry, ...ibcApplicationsInterchainAccountsHostV1TxRegistry.registry, ...ibcApplicationsTransferV1TxRegistry.registry, ...ibcCoreChannelV1TxRegistry.registry, ...ibcCoreChannelV2TxRegistry.registry, ...ibcCoreClientV1TxRegistry.registry, ...ibcCoreClientV2TxRegistry.registry, ...ibcCoreConnectionV1TxRegistry.registry, ...ibcLightclientsWasmV1TxRegistry.registry];
|
|
36
|
+
export const ibcProtoRegistry = [...ibcApplicationsInterchainAccountsControllerV1TxRegistry.registry, ...ibcApplicationsInterchainAccountsHostV1TxRegistry.registry, ...ibcApplicationsRateLimitingV1TxRegistry.registry, ...ibcApplicationsTransferV1TxRegistry.registry, ...ibcCoreChannelV1TxRegistry.registry, ...ibcCoreChannelV2TxRegistry.registry, ...ibcCoreClientV1TxRegistry.registry, ...ibcCoreClientV2TxRegistry.registry, ...ibcCoreConnectionV1TxRegistry.registry, ...ibcLightclientsWasmV1TxRegistry.registry];
|
|
34
37
|
export const getSigningIbcClientOptions = ({ defaultTypes = defaultRegistryTypes } = {}) => {
|
|
35
38
|
const registry = new Registry([...defaultTypes, ...ibcProtoRegistry]);
|
|
36
39
|
const aminoTypes = new AminoTypes({
|
|
@@ -121,6 +121,14 @@ function createBaseChannel() {
|
|
|
121
121
|
version: ""
|
|
122
122
|
};
|
|
123
123
|
}
|
|
124
|
+
/**
|
|
125
|
+
* Channel defines pipeline for exactly-once packet delivery between specific
|
|
126
|
+
* modules on separate blockchains, which has at least one end capable of
|
|
127
|
+
* sending packets and one end capable of receiving packets.
|
|
128
|
+
* @name Channel
|
|
129
|
+
* @package ibc.core.channel.v1
|
|
130
|
+
* @see proto type: ibc.core.channel.v1.Channel
|
|
131
|
+
*/
|
|
124
132
|
export const Channel = {
|
|
125
133
|
typeUrl: "/ibc.core.channel.v1.Channel",
|
|
126
134
|
aminoType: "cosmos-sdk/Channel",
|
|
@@ -244,6 +252,13 @@ function createBaseIdentifiedChannel() {
|
|
|
244
252
|
channelId: ""
|
|
245
253
|
};
|
|
246
254
|
}
|
|
255
|
+
/**
|
|
256
|
+
* IdentifiedChannel defines a channel with additional port and channel
|
|
257
|
+
* identifier fields.
|
|
258
|
+
* @name IdentifiedChannel
|
|
259
|
+
* @package ibc.core.channel.v1
|
|
260
|
+
* @see proto type: ibc.core.channel.v1.IdentifiedChannel
|
|
261
|
+
*/
|
|
247
262
|
export const IdentifiedChannel = {
|
|
248
263
|
typeUrl: "/ibc.core.channel.v1.IdentifiedChannel",
|
|
249
264
|
aminoType: "cosmos-sdk/IdentifiedChannel",
|
|
@@ -384,6 +399,12 @@ function createBaseCounterparty() {
|
|
|
384
399
|
channelId: ""
|
|
385
400
|
};
|
|
386
401
|
}
|
|
402
|
+
/**
|
|
403
|
+
* Counterparty defines a channel end counterparty
|
|
404
|
+
* @name Counterparty
|
|
405
|
+
* @package ibc.core.channel.v1
|
|
406
|
+
* @see proto type: ibc.core.channel.v1.Counterparty
|
|
407
|
+
*/
|
|
387
408
|
export const Counterparty = {
|
|
388
409
|
typeUrl: "/ibc.core.channel.v1.Counterparty",
|
|
389
410
|
aminoType: "cosmos-sdk/Counterparty",
|
|
@@ -472,6 +493,12 @@ function createBasePacket() {
|
|
|
472
493
|
timeoutTimestamp: BigInt(0)
|
|
473
494
|
};
|
|
474
495
|
}
|
|
496
|
+
/**
|
|
497
|
+
* Packet defines a type that carries data across different chains through IBC
|
|
498
|
+
* @name Packet
|
|
499
|
+
* @package ibc.core.channel.v1
|
|
500
|
+
* @see proto type: ibc.core.channel.v1.Packet
|
|
501
|
+
*/
|
|
475
502
|
export const Packet = {
|
|
476
503
|
typeUrl: "/ibc.core.channel.v1.Packet",
|
|
477
504
|
aminoType: "cosmos-sdk/Packet",
|
|
@@ -622,6 +649,15 @@ function createBasePacketState() {
|
|
|
622
649
|
data: new Uint8Array()
|
|
623
650
|
};
|
|
624
651
|
}
|
|
652
|
+
/**
|
|
653
|
+
* PacketState defines the generic type necessary to retrieve and store
|
|
654
|
+
* packet commitments, acknowledgements, and receipts.
|
|
655
|
+
* Caller is responsible for knowing the context necessary to interpret this
|
|
656
|
+
* state as a commitment, acknowledgement, or a receipt.
|
|
657
|
+
* @name PacketState
|
|
658
|
+
* @package ibc.core.channel.v1
|
|
659
|
+
* @see proto type: ibc.core.channel.v1.PacketState
|
|
660
|
+
*/
|
|
625
661
|
export const PacketState = {
|
|
626
662
|
typeUrl: "/ibc.core.channel.v1.PacketState",
|
|
627
663
|
aminoType: "cosmos-sdk/PacketState",
|
|
@@ -727,6 +763,14 @@ function createBasePacketId() {
|
|
|
727
763
|
sequence: BigInt(0)
|
|
728
764
|
};
|
|
729
765
|
}
|
|
766
|
+
/**
|
|
767
|
+
* PacketId is an identifier for a unique Packet
|
|
768
|
+
* Source chains refer to packets by source port/channel
|
|
769
|
+
* Destination chains refer to packets by destination port/channel
|
|
770
|
+
* @name PacketId
|
|
771
|
+
* @package ibc.core.channel.v1
|
|
772
|
+
* @see proto type: ibc.core.channel.v1.PacketId
|
|
773
|
+
*/
|
|
730
774
|
export const PacketId = {
|
|
731
775
|
typeUrl: "/ibc.core.channel.v1.PacketId",
|
|
732
776
|
aminoType: "cosmos-sdk/PacketId",
|
|
@@ -820,6 +864,18 @@ function createBaseAcknowledgement() {
|
|
|
820
864
|
error: undefined
|
|
821
865
|
};
|
|
822
866
|
}
|
|
867
|
+
/**
|
|
868
|
+
* Acknowledgement is the recommended acknowledgement format to be used by
|
|
869
|
+
* app-specific protocols.
|
|
870
|
+
* NOTE: The field numbers 21 and 22 were explicitly chosen to avoid accidental
|
|
871
|
+
* conflicts with other protobuf message formats used for acknowledgements.
|
|
872
|
+
* The first byte of any message with this format will be the non-ASCII values
|
|
873
|
+
* `0xaa` (result) or `0xb2` (error). Implemented as defined by ICS:
|
|
874
|
+
* https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#acknowledgement-envelope
|
|
875
|
+
* @name Acknowledgement
|
|
876
|
+
* @package ibc.core.channel.v1
|
|
877
|
+
* @see proto type: ibc.core.channel.v1.Acknowledgement
|
|
878
|
+
*/
|
|
823
879
|
export const Acknowledgement = {
|
|
824
880
|
typeUrl: "/ibc.core.channel.v1.Acknowledgement",
|
|
825
881
|
aminoType: "cosmos-sdk/Acknowledgement",
|
|
@@ -902,6 +958,14 @@ function createBaseTimeout() {
|
|
|
902
958
|
timestamp: BigInt(0)
|
|
903
959
|
};
|
|
904
960
|
}
|
|
961
|
+
/**
|
|
962
|
+
* Timeout defines an execution deadline structure for 04-channel handlers.
|
|
963
|
+
* This includes packet lifecycle handlers.
|
|
964
|
+
* A valid Timeout contains either one or both of a timestamp and block height (sequence).
|
|
965
|
+
* @name Timeout
|
|
966
|
+
* @package ibc.core.channel.v1
|
|
967
|
+
* @see proto type: ibc.core.channel.v1.Timeout
|
|
968
|
+
*/
|
|
905
969
|
export const Timeout = {
|
|
906
970
|
typeUrl: "/ibc.core.channel.v1.Timeout",
|
|
907
971
|
aminoType: "cosmos-sdk/Timeout",
|