@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
|
@@ -47,20 +47,31 @@ export declare function orderToJSON(object: Order): string;
|
|
|
47
47
|
* Channel defines pipeline for exactly-once packet delivery between specific
|
|
48
48
|
* modules on separate blockchains, which has at least one end capable of
|
|
49
49
|
* sending packets and one end capable of receiving packets.
|
|
50
|
+
* @name Channel
|
|
51
|
+
* @package ibc.core.channel.v1
|
|
52
|
+
* @see proto type: ibc.core.channel.v1.Channel
|
|
50
53
|
*/
|
|
51
54
|
export interface Channel {
|
|
52
|
-
/**
|
|
55
|
+
/**
|
|
56
|
+
* current state of the channel end
|
|
57
|
+
*/
|
|
53
58
|
state: State;
|
|
54
|
-
/**
|
|
59
|
+
/**
|
|
60
|
+
* whether the channel is ordered or unordered
|
|
61
|
+
*/
|
|
55
62
|
ordering: Order;
|
|
56
|
-
/**
|
|
63
|
+
/**
|
|
64
|
+
* counterparty channel end
|
|
65
|
+
*/
|
|
57
66
|
counterparty: Counterparty;
|
|
58
67
|
/**
|
|
59
68
|
* list of connection identifiers, in order, along which packets sent on
|
|
60
69
|
* this channel will travel
|
|
61
70
|
*/
|
|
62
71
|
connectionHops: string[];
|
|
63
|
-
/**
|
|
72
|
+
/**
|
|
73
|
+
* opaque channel version, which is agreed upon during the handshake
|
|
74
|
+
*/
|
|
64
75
|
version: string;
|
|
65
76
|
}
|
|
66
77
|
export interface ChannelProtoMsg {
|
|
@@ -71,20 +82,31 @@ export interface ChannelProtoMsg {
|
|
|
71
82
|
* Channel defines pipeline for exactly-once packet delivery between specific
|
|
72
83
|
* modules on separate blockchains, which has at least one end capable of
|
|
73
84
|
* sending packets and one end capable of receiving packets.
|
|
85
|
+
* @name ChannelAmino
|
|
86
|
+
* @package ibc.core.channel.v1
|
|
87
|
+
* @see proto type: ibc.core.channel.v1.Channel
|
|
74
88
|
*/
|
|
75
89
|
export interface ChannelAmino {
|
|
76
|
-
/**
|
|
90
|
+
/**
|
|
91
|
+
* current state of the channel end
|
|
92
|
+
*/
|
|
77
93
|
state?: State;
|
|
78
|
-
/**
|
|
94
|
+
/**
|
|
95
|
+
* whether the channel is ordered or unordered
|
|
96
|
+
*/
|
|
79
97
|
ordering?: Order;
|
|
80
|
-
/**
|
|
98
|
+
/**
|
|
99
|
+
* counterparty channel end
|
|
100
|
+
*/
|
|
81
101
|
counterparty?: CounterpartyAmino;
|
|
82
102
|
/**
|
|
83
103
|
* list of connection identifiers, in order, along which packets sent on
|
|
84
104
|
* this channel will travel
|
|
85
105
|
*/
|
|
86
106
|
connection_hops?: string[];
|
|
87
|
-
/**
|
|
107
|
+
/**
|
|
108
|
+
* opaque channel version, which is agreed upon during the handshake
|
|
109
|
+
*/
|
|
88
110
|
version?: string;
|
|
89
111
|
}
|
|
90
112
|
export interface ChannelAminoMsg {
|
|
@@ -94,24 +116,39 @@ export interface ChannelAminoMsg {
|
|
|
94
116
|
/**
|
|
95
117
|
* IdentifiedChannel defines a channel with additional port and channel
|
|
96
118
|
* identifier fields.
|
|
119
|
+
* @name IdentifiedChannel
|
|
120
|
+
* @package ibc.core.channel.v1
|
|
121
|
+
* @see proto type: ibc.core.channel.v1.IdentifiedChannel
|
|
97
122
|
*/
|
|
98
123
|
export interface IdentifiedChannel {
|
|
99
|
-
/**
|
|
124
|
+
/**
|
|
125
|
+
* current state of the channel end
|
|
126
|
+
*/
|
|
100
127
|
state: State;
|
|
101
|
-
/**
|
|
128
|
+
/**
|
|
129
|
+
* whether the channel is ordered or unordered
|
|
130
|
+
*/
|
|
102
131
|
ordering: Order;
|
|
103
|
-
/**
|
|
132
|
+
/**
|
|
133
|
+
* counterparty channel end
|
|
134
|
+
*/
|
|
104
135
|
counterparty: Counterparty;
|
|
105
136
|
/**
|
|
106
137
|
* list of connection identifiers, in order, along which packets sent on
|
|
107
138
|
* this channel will travel
|
|
108
139
|
*/
|
|
109
140
|
connectionHops: string[];
|
|
110
|
-
/**
|
|
141
|
+
/**
|
|
142
|
+
* opaque channel version, which is agreed upon during the handshake
|
|
143
|
+
*/
|
|
111
144
|
version: string;
|
|
112
|
-
/**
|
|
145
|
+
/**
|
|
146
|
+
* port identifier
|
|
147
|
+
*/
|
|
113
148
|
portId: string;
|
|
114
|
-
/**
|
|
149
|
+
/**
|
|
150
|
+
* channel identifier
|
|
151
|
+
*/
|
|
115
152
|
channelId: string;
|
|
116
153
|
}
|
|
117
154
|
export interface IdentifiedChannelProtoMsg {
|
|
@@ -121,53 +158,91 @@ export interface IdentifiedChannelProtoMsg {
|
|
|
121
158
|
/**
|
|
122
159
|
* IdentifiedChannel defines a channel with additional port and channel
|
|
123
160
|
* identifier fields.
|
|
161
|
+
* @name IdentifiedChannelAmino
|
|
162
|
+
* @package ibc.core.channel.v1
|
|
163
|
+
* @see proto type: ibc.core.channel.v1.IdentifiedChannel
|
|
124
164
|
*/
|
|
125
165
|
export interface IdentifiedChannelAmino {
|
|
126
|
-
/**
|
|
166
|
+
/**
|
|
167
|
+
* current state of the channel end
|
|
168
|
+
*/
|
|
127
169
|
state?: State;
|
|
128
|
-
/**
|
|
170
|
+
/**
|
|
171
|
+
* whether the channel is ordered or unordered
|
|
172
|
+
*/
|
|
129
173
|
ordering?: Order;
|
|
130
|
-
/**
|
|
174
|
+
/**
|
|
175
|
+
* counterparty channel end
|
|
176
|
+
*/
|
|
131
177
|
counterparty?: CounterpartyAmino;
|
|
132
178
|
/**
|
|
133
179
|
* list of connection identifiers, in order, along which packets sent on
|
|
134
180
|
* this channel will travel
|
|
135
181
|
*/
|
|
136
182
|
connection_hops?: string[];
|
|
137
|
-
/**
|
|
183
|
+
/**
|
|
184
|
+
* opaque channel version, which is agreed upon during the handshake
|
|
185
|
+
*/
|
|
138
186
|
version?: string;
|
|
139
|
-
/**
|
|
187
|
+
/**
|
|
188
|
+
* port identifier
|
|
189
|
+
*/
|
|
140
190
|
port_id?: string;
|
|
141
|
-
/**
|
|
191
|
+
/**
|
|
192
|
+
* channel identifier
|
|
193
|
+
*/
|
|
142
194
|
channel_id?: string;
|
|
143
195
|
}
|
|
144
196
|
export interface IdentifiedChannelAminoMsg {
|
|
145
197
|
type: "cosmos-sdk/IdentifiedChannel";
|
|
146
198
|
value: IdentifiedChannelAmino;
|
|
147
199
|
}
|
|
148
|
-
/**
|
|
200
|
+
/**
|
|
201
|
+
* Counterparty defines a channel end counterparty
|
|
202
|
+
* @name Counterparty
|
|
203
|
+
* @package ibc.core.channel.v1
|
|
204
|
+
* @see proto type: ibc.core.channel.v1.Counterparty
|
|
205
|
+
*/
|
|
149
206
|
export interface Counterparty {
|
|
150
|
-
/**
|
|
207
|
+
/**
|
|
208
|
+
* port on the counterparty chain which owns the other end of the channel.
|
|
209
|
+
*/
|
|
151
210
|
portId: string;
|
|
152
|
-
/**
|
|
211
|
+
/**
|
|
212
|
+
* channel end on the counterparty chain
|
|
213
|
+
*/
|
|
153
214
|
channelId: string;
|
|
154
215
|
}
|
|
155
216
|
export interface CounterpartyProtoMsg {
|
|
156
217
|
typeUrl: "/ibc.core.channel.v1.Counterparty";
|
|
157
218
|
value: Uint8Array;
|
|
158
219
|
}
|
|
159
|
-
/**
|
|
220
|
+
/**
|
|
221
|
+
* Counterparty defines a channel end counterparty
|
|
222
|
+
* @name CounterpartyAmino
|
|
223
|
+
* @package ibc.core.channel.v1
|
|
224
|
+
* @see proto type: ibc.core.channel.v1.Counterparty
|
|
225
|
+
*/
|
|
160
226
|
export interface CounterpartyAmino {
|
|
161
|
-
/**
|
|
227
|
+
/**
|
|
228
|
+
* port on the counterparty chain which owns the other end of the channel.
|
|
229
|
+
*/
|
|
162
230
|
port_id?: string;
|
|
163
|
-
/**
|
|
231
|
+
/**
|
|
232
|
+
* channel end on the counterparty chain
|
|
233
|
+
*/
|
|
164
234
|
channel_id?: string;
|
|
165
235
|
}
|
|
166
236
|
export interface CounterpartyAminoMsg {
|
|
167
237
|
type: "cosmos-sdk/Counterparty";
|
|
168
238
|
value: CounterpartyAmino;
|
|
169
239
|
}
|
|
170
|
-
/**
|
|
240
|
+
/**
|
|
241
|
+
* Packet defines a type that carries data across different chains through IBC
|
|
242
|
+
* @name Packet
|
|
243
|
+
* @package ibc.core.channel.v1
|
|
244
|
+
* @see proto type: ibc.core.channel.v1.Packet
|
|
245
|
+
*/
|
|
171
246
|
export interface Packet {
|
|
172
247
|
/**
|
|
173
248
|
* number corresponds to the order of sends and receives, where a Packet
|
|
@@ -175,26 +250,45 @@ export interface Packet {
|
|
|
175
250
|
* with a later sequence number.
|
|
176
251
|
*/
|
|
177
252
|
sequence: bigint;
|
|
178
|
-
/**
|
|
253
|
+
/**
|
|
254
|
+
* identifies the port on the sending chain.
|
|
255
|
+
*/
|
|
179
256
|
sourcePort: string;
|
|
180
|
-
/**
|
|
257
|
+
/**
|
|
258
|
+
* identifies the channel end on the sending chain.
|
|
259
|
+
*/
|
|
181
260
|
sourceChannel: string;
|
|
182
|
-
/**
|
|
261
|
+
/**
|
|
262
|
+
* identifies the port on the receiving chain.
|
|
263
|
+
*/
|
|
183
264
|
destinationPort: string;
|
|
184
|
-
/**
|
|
265
|
+
/**
|
|
266
|
+
* identifies the channel end on the receiving chain.
|
|
267
|
+
*/
|
|
185
268
|
destinationChannel: string;
|
|
186
|
-
/**
|
|
269
|
+
/**
|
|
270
|
+
* actual opaque bytes transferred directly to the application module
|
|
271
|
+
*/
|
|
187
272
|
data: Uint8Array;
|
|
188
|
-
/**
|
|
273
|
+
/**
|
|
274
|
+
* block height after which the packet times out
|
|
275
|
+
*/
|
|
189
276
|
timeoutHeight: Height;
|
|
190
|
-
/**
|
|
277
|
+
/**
|
|
278
|
+
* block timestamp (in nanoseconds) after which the packet times out
|
|
279
|
+
*/
|
|
191
280
|
timeoutTimestamp: bigint;
|
|
192
281
|
}
|
|
193
282
|
export interface PacketProtoMsg {
|
|
194
283
|
typeUrl: "/ibc.core.channel.v1.Packet";
|
|
195
284
|
value: Uint8Array;
|
|
196
285
|
}
|
|
197
|
-
/**
|
|
286
|
+
/**
|
|
287
|
+
* Packet defines a type that carries data across different chains through IBC
|
|
288
|
+
* @name PacketAmino
|
|
289
|
+
* @package ibc.core.channel.v1
|
|
290
|
+
* @see proto type: ibc.core.channel.v1.Packet
|
|
291
|
+
*/
|
|
198
292
|
export interface PacketAmino {
|
|
199
293
|
/**
|
|
200
294
|
* number corresponds to the order of sends and receives, where a Packet
|
|
@@ -202,19 +296,33 @@ export interface PacketAmino {
|
|
|
202
296
|
* with a later sequence number.
|
|
203
297
|
*/
|
|
204
298
|
sequence?: string;
|
|
205
|
-
/**
|
|
299
|
+
/**
|
|
300
|
+
* identifies the port on the sending chain.
|
|
301
|
+
*/
|
|
206
302
|
source_port?: string;
|
|
207
|
-
/**
|
|
303
|
+
/**
|
|
304
|
+
* identifies the channel end on the sending chain.
|
|
305
|
+
*/
|
|
208
306
|
source_channel?: string;
|
|
209
|
-
/**
|
|
307
|
+
/**
|
|
308
|
+
* identifies the port on the receiving chain.
|
|
309
|
+
*/
|
|
210
310
|
destination_port?: string;
|
|
211
|
-
/**
|
|
311
|
+
/**
|
|
312
|
+
* identifies the channel end on the receiving chain.
|
|
313
|
+
*/
|
|
212
314
|
destination_channel?: string;
|
|
213
|
-
/**
|
|
315
|
+
/**
|
|
316
|
+
* actual opaque bytes transferred directly to the application module
|
|
317
|
+
*/
|
|
214
318
|
data?: string;
|
|
215
|
-
/**
|
|
319
|
+
/**
|
|
320
|
+
* block height after which the packet times out
|
|
321
|
+
*/
|
|
216
322
|
timeout_height?: HeightAmino;
|
|
217
|
-
/**
|
|
323
|
+
/**
|
|
324
|
+
* block timestamp (in nanoseconds) after which the packet times out
|
|
325
|
+
*/
|
|
218
326
|
timeout_timestamp?: string;
|
|
219
327
|
}
|
|
220
328
|
export interface PacketAminoMsg {
|
|
@@ -226,15 +334,26 @@ export interface PacketAminoMsg {
|
|
|
226
334
|
* packet commitments, acknowledgements, and receipts.
|
|
227
335
|
* Caller is responsible for knowing the context necessary to interpret this
|
|
228
336
|
* state as a commitment, acknowledgement, or a receipt.
|
|
337
|
+
* @name PacketState
|
|
338
|
+
* @package ibc.core.channel.v1
|
|
339
|
+
* @see proto type: ibc.core.channel.v1.PacketState
|
|
229
340
|
*/
|
|
230
341
|
export interface PacketState {
|
|
231
|
-
/**
|
|
342
|
+
/**
|
|
343
|
+
* channel port identifier.
|
|
344
|
+
*/
|
|
232
345
|
portId: string;
|
|
233
|
-
/**
|
|
346
|
+
/**
|
|
347
|
+
* channel unique identifier.
|
|
348
|
+
*/
|
|
234
349
|
channelId: string;
|
|
235
|
-
/**
|
|
350
|
+
/**
|
|
351
|
+
* packet sequence.
|
|
352
|
+
*/
|
|
236
353
|
sequence: bigint;
|
|
237
|
-
/**
|
|
354
|
+
/**
|
|
355
|
+
* embedded data that represents packet state.
|
|
356
|
+
*/
|
|
238
357
|
data: Uint8Array;
|
|
239
358
|
}
|
|
240
359
|
export interface PacketStateProtoMsg {
|
|
@@ -246,15 +365,26 @@ export interface PacketStateProtoMsg {
|
|
|
246
365
|
* packet commitments, acknowledgements, and receipts.
|
|
247
366
|
* Caller is responsible for knowing the context necessary to interpret this
|
|
248
367
|
* state as a commitment, acknowledgement, or a receipt.
|
|
368
|
+
* @name PacketStateAmino
|
|
369
|
+
* @package ibc.core.channel.v1
|
|
370
|
+
* @see proto type: ibc.core.channel.v1.PacketState
|
|
249
371
|
*/
|
|
250
372
|
export interface PacketStateAmino {
|
|
251
|
-
/**
|
|
373
|
+
/**
|
|
374
|
+
* channel port identifier.
|
|
375
|
+
*/
|
|
252
376
|
port_id?: string;
|
|
253
|
-
/**
|
|
377
|
+
/**
|
|
378
|
+
* channel unique identifier.
|
|
379
|
+
*/
|
|
254
380
|
channel_id?: string;
|
|
255
|
-
/**
|
|
381
|
+
/**
|
|
382
|
+
* packet sequence.
|
|
383
|
+
*/
|
|
256
384
|
sequence?: string;
|
|
257
|
-
/**
|
|
385
|
+
/**
|
|
386
|
+
* embedded data that represents packet state.
|
|
387
|
+
*/
|
|
258
388
|
data?: string;
|
|
259
389
|
}
|
|
260
390
|
export interface PacketStateAminoMsg {
|
|
@@ -265,13 +395,22 @@ export interface PacketStateAminoMsg {
|
|
|
265
395
|
* PacketId is an identifier for a unique Packet
|
|
266
396
|
* Source chains refer to packets by source port/channel
|
|
267
397
|
* Destination chains refer to packets by destination port/channel
|
|
398
|
+
* @name PacketId
|
|
399
|
+
* @package ibc.core.channel.v1
|
|
400
|
+
* @see proto type: ibc.core.channel.v1.PacketId
|
|
268
401
|
*/
|
|
269
402
|
export interface PacketId {
|
|
270
|
-
/**
|
|
403
|
+
/**
|
|
404
|
+
* channel port identifier
|
|
405
|
+
*/
|
|
271
406
|
portId: string;
|
|
272
|
-
/**
|
|
407
|
+
/**
|
|
408
|
+
* channel unique identifier
|
|
409
|
+
*/
|
|
273
410
|
channelId: string;
|
|
274
|
-
/**
|
|
411
|
+
/**
|
|
412
|
+
* packet sequence
|
|
413
|
+
*/
|
|
275
414
|
sequence: bigint;
|
|
276
415
|
}
|
|
277
416
|
export interface PacketIdProtoMsg {
|
|
@@ -282,13 +421,22 @@ export interface PacketIdProtoMsg {
|
|
|
282
421
|
* PacketId is an identifier for a unique Packet
|
|
283
422
|
* Source chains refer to packets by source port/channel
|
|
284
423
|
* Destination chains refer to packets by destination port/channel
|
|
424
|
+
* @name PacketIdAmino
|
|
425
|
+
* @package ibc.core.channel.v1
|
|
426
|
+
* @see proto type: ibc.core.channel.v1.PacketId
|
|
285
427
|
*/
|
|
286
428
|
export interface PacketIdAmino {
|
|
287
|
-
/**
|
|
429
|
+
/**
|
|
430
|
+
* channel port identifier
|
|
431
|
+
*/
|
|
288
432
|
port_id?: string;
|
|
289
|
-
/**
|
|
433
|
+
/**
|
|
434
|
+
* channel unique identifier
|
|
435
|
+
*/
|
|
290
436
|
channel_id?: string;
|
|
291
|
-
/**
|
|
437
|
+
/**
|
|
438
|
+
* packet sequence
|
|
439
|
+
*/
|
|
292
440
|
sequence?: string;
|
|
293
441
|
}
|
|
294
442
|
export interface PacketIdAminoMsg {
|
|
@@ -303,6 +451,9 @@ export interface PacketIdAminoMsg {
|
|
|
303
451
|
* The first byte of any message with this format will be the non-ASCII values
|
|
304
452
|
* `0xaa` (result) or `0xb2` (error). Implemented as defined by ICS:
|
|
305
453
|
* https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#acknowledgement-envelope
|
|
454
|
+
* @name Acknowledgement
|
|
455
|
+
* @package ibc.core.channel.v1
|
|
456
|
+
* @see proto type: ibc.core.channel.v1.Acknowledgement
|
|
306
457
|
*/
|
|
307
458
|
export interface Acknowledgement {
|
|
308
459
|
result?: Uint8Array;
|
|
@@ -320,6 +471,9 @@ export interface AcknowledgementProtoMsg {
|
|
|
320
471
|
* The first byte of any message with this format will be the non-ASCII values
|
|
321
472
|
* `0xaa` (result) or `0xb2` (error). Implemented as defined by ICS:
|
|
322
473
|
* https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#acknowledgement-envelope
|
|
474
|
+
* @name AcknowledgementAmino
|
|
475
|
+
* @package ibc.core.channel.v1
|
|
476
|
+
* @see proto type: ibc.core.channel.v1.Acknowledgement
|
|
323
477
|
*/
|
|
324
478
|
export interface AcknowledgementAmino {
|
|
325
479
|
result?: string;
|
|
@@ -333,11 +487,18 @@ export interface AcknowledgementAminoMsg {
|
|
|
333
487
|
* Timeout defines an execution deadline structure for 04-channel handlers.
|
|
334
488
|
* This includes packet lifecycle handlers.
|
|
335
489
|
* A valid Timeout contains either one or both of a timestamp and block height (sequence).
|
|
490
|
+
* @name Timeout
|
|
491
|
+
* @package ibc.core.channel.v1
|
|
492
|
+
* @see proto type: ibc.core.channel.v1.Timeout
|
|
336
493
|
*/
|
|
337
494
|
export interface Timeout {
|
|
338
|
-
/**
|
|
495
|
+
/**
|
|
496
|
+
* block height after which the packet times out
|
|
497
|
+
*/
|
|
339
498
|
height: Height;
|
|
340
|
-
/**
|
|
499
|
+
/**
|
|
500
|
+
* block timestamp (in nanoseconds) after which the packet times out
|
|
501
|
+
*/
|
|
341
502
|
timestamp: bigint;
|
|
342
503
|
}
|
|
343
504
|
export interface TimeoutProtoMsg {
|
|
@@ -348,17 +509,32 @@ export interface TimeoutProtoMsg {
|
|
|
348
509
|
* Timeout defines an execution deadline structure for 04-channel handlers.
|
|
349
510
|
* This includes packet lifecycle handlers.
|
|
350
511
|
* A valid Timeout contains either one or both of a timestamp and block height (sequence).
|
|
512
|
+
* @name TimeoutAmino
|
|
513
|
+
* @package ibc.core.channel.v1
|
|
514
|
+
* @see proto type: ibc.core.channel.v1.Timeout
|
|
351
515
|
*/
|
|
352
516
|
export interface TimeoutAmino {
|
|
353
|
-
/**
|
|
517
|
+
/**
|
|
518
|
+
* block height after which the packet times out
|
|
519
|
+
*/
|
|
354
520
|
height?: HeightAmino;
|
|
355
|
-
/**
|
|
521
|
+
/**
|
|
522
|
+
* block timestamp (in nanoseconds) after which the packet times out
|
|
523
|
+
*/
|
|
356
524
|
timestamp?: string;
|
|
357
525
|
}
|
|
358
526
|
export interface TimeoutAminoMsg {
|
|
359
527
|
type: "cosmos-sdk/Timeout";
|
|
360
528
|
value: TimeoutAmino;
|
|
361
529
|
}
|
|
530
|
+
/**
|
|
531
|
+
* Channel defines pipeline for exactly-once packet delivery between specific
|
|
532
|
+
* modules on separate blockchains, which has at least one end capable of
|
|
533
|
+
* sending packets and one end capable of receiving packets.
|
|
534
|
+
* @name Channel
|
|
535
|
+
* @package ibc.core.channel.v1
|
|
536
|
+
* @see proto type: ibc.core.channel.v1.Channel
|
|
537
|
+
*/
|
|
362
538
|
export declare const Channel: {
|
|
363
539
|
typeUrl: string;
|
|
364
540
|
aminoType: string;
|
|
@@ -373,6 +549,13 @@ export declare const Channel: {
|
|
|
373
549
|
toProto(message: Channel): Uint8Array;
|
|
374
550
|
toProtoMsg(message: Channel): ChannelProtoMsg;
|
|
375
551
|
};
|
|
552
|
+
/**
|
|
553
|
+
* IdentifiedChannel defines a channel with additional port and channel
|
|
554
|
+
* identifier fields.
|
|
555
|
+
* @name IdentifiedChannel
|
|
556
|
+
* @package ibc.core.channel.v1
|
|
557
|
+
* @see proto type: ibc.core.channel.v1.IdentifiedChannel
|
|
558
|
+
*/
|
|
376
559
|
export declare const IdentifiedChannel: {
|
|
377
560
|
typeUrl: string;
|
|
378
561
|
aminoType: string;
|
|
@@ -387,6 +570,12 @@ export declare const IdentifiedChannel: {
|
|
|
387
570
|
toProto(message: IdentifiedChannel): Uint8Array;
|
|
388
571
|
toProtoMsg(message: IdentifiedChannel): IdentifiedChannelProtoMsg;
|
|
389
572
|
};
|
|
573
|
+
/**
|
|
574
|
+
* Counterparty defines a channel end counterparty
|
|
575
|
+
* @name Counterparty
|
|
576
|
+
* @package ibc.core.channel.v1
|
|
577
|
+
* @see proto type: ibc.core.channel.v1.Counterparty
|
|
578
|
+
*/
|
|
390
579
|
export declare const Counterparty: {
|
|
391
580
|
typeUrl: string;
|
|
392
581
|
aminoType: string;
|
|
@@ -401,6 +590,12 @@ export declare const Counterparty: {
|
|
|
401
590
|
toProto(message: Counterparty): Uint8Array;
|
|
402
591
|
toProtoMsg(message: Counterparty): CounterpartyProtoMsg;
|
|
403
592
|
};
|
|
593
|
+
/**
|
|
594
|
+
* Packet defines a type that carries data across different chains through IBC
|
|
595
|
+
* @name Packet
|
|
596
|
+
* @package ibc.core.channel.v1
|
|
597
|
+
* @see proto type: ibc.core.channel.v1.Packet
|
|
598
|
+
*/
|
|
404
599
|
export declare const Packet: {
|
|
405
600
|
typeUrl: string;
|
|
406
601
|
aminoType: string;
|
|
@@ -415,6 +610,15 @@ export declare const Packet: {
|
|
|
415
610
|
toProto(message: Packet): Uint8Array;
|
|
416
611
|
toProtoMsg(message: Packet): PacketProtoMsg;
|
|
417
612
|
};
|
|
613
|
+
/**
|
|
614
|
+
* PacketState defines the generic type necessary to retrieve and store
|
|
615
|
+
* packet commitments, acknowledgements, and receipts.
|
|
616
|
+
* Caller is responsible for knowing the context necessary to interpret this
|
|
617
|
+
* state as a commitment, acknowledgement, or a receipt.
|
|
618
|
+
* @name PacketState
|
|
619
|
+
* @package ibc.core.channel.v1
|
|
620
|
+
* @see proto type: ibc.core.channel.v1.PacketState
|
|
621
|
+
*/
|
|
418
622
|
export declare const PacketState: {
|
|
419
623
|
typeUrl: string;
|
|
420
624
|
aminoType: string;
|
|
@@ -429,6 +633,14 @@ export declare const PacketState: {
|
|
|
429
633
|
toProto(message: PacketState): Uint8Array;
|
|
430
634
|
toProtoMsg(message: PacketState): PacketStateProtoMsg;
|
|
431
635
|
};
|
|
636
|
+
/**
|
|
637
|
+
* PacketId is an identifier for a unique Packet
|
|
638
|
+
* Source chains refer to packets by source port/channel
|
|
639
|
+
* Destination chains refer to packets by destination port/channel
|
|
640
|
+
* @name PacketId
|
|
641
|
+
* @package ibc.core.channel.v1
|
|
642
|
+
* @see proto type: ibc.core.channel.v1.PacketId
|
|
643
|
+
*/
|
|
432
644
|
export declare const PacketId: {
|
|
433
645
|
typeUrl: string;
|
|
434
646
|
aminoType: string;
|
|
@@ -443,6 +655,18 @@ export declare const PacketId: {
|
|
|
443
655
|
toProto(message: PacketId): Uint8Array;
|
|
444
656
|
toProtoMsg(message: PacketId): PacketIdProtoMsg;
|
|
445
657
|
};
|
|
658
|
+
/**
|
|
659
|
+
* Acknowledgement is the recommended acknowledgement format to be used by
|
|
660
|
+
* app-specific protocols.
|
|
661
|
+
* NOTE: The field numbers 21 and 22 were explicitly chosen to avoid accidental
|
|
662
|
+
* conflicts with other protobuf message formats used for acknowledgements.
|
|
663
|
+
* The first byte of any message with this format will be the non-ASCII values
|
|
664
|
+
* `0xaa` (result) or `0xb2` (error). Implemented as defined by ICS:
|
|
665
|
+
* https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#acknowledgement-envelope
|
|
666
|
+
* @name Acknowledgement
|
|
667
|
+
* @package ibc.core.channel.v1
|
|
668
|
+
* @see proto type: ibc.core.channel.v1.Acknowledgement
|
|
669
|
+
*/
|
|
446
670
|
export declare const Acknowledgement: {
|
|
447
671
|
typeUrl: string;
|
|
448
672
|
aminoType: string;
|
|
@@ -457,6 +681,14 @@ export declare const Acknowledgement: {
|
|
|
457
681
|
toProto(message: Acknowledgement): Uint8Array;
|
|
458
682
|
toProtoMsg(message: Acknowledgement): AcknowledgementProtoMsg;
|
|
459
683
|
};
|
|
684
|
+
/**
|
|
685
|
+
* Timeout defines an execution deadline structure for 04-channel handlers.
|
|
686
|
+
* This includes packet lifecycle handlers.
|
|
687
|
+
* A valid Timeout contains either one or both of a timestamp and block height (sequence).
|
|
688
|
+
* @name Timeout
|
|
689
|
+
* @package ibc.core.channel.v1
|
|
690
|
+
* @see proto type: ibc.core.channel.v1.Timeout
|
|
691
|
+
*/
|
|
460
692
|
export declare const Timeout: {
|
|
461
693
|
typeUrl: string;
|
|
462
694
|
aminoType: string;
|