@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
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { MsgCreateClient, MsgUpdateClient, MsgUpgradeClient,
|
|
2
|
-
export const registry = [["/ibc.core.client.v1.MsgCreateClient", MsgCreateClient], ["/ibc.core.client.v1.MsgUpdateClient", MsgUpdateClient], ["/ibc.core.client.v1.MsgUpgradeClient", MsgUpgradeClient], ["/ibc.core.client.v1.
|
|
1
|
+
import { MsgCreateClient, MsgUpdateClient, MsgUpgradeClient, MsgRecoverClient, MsgIBCSoftwareUpgrade, MsgUpdateParams, MsgDeleteClientCreator } from "./tx";
|
|
2
|
+
export const registry = [["/ibc.core.client.v1.MsgCreateClient", MsgCreateClient], ["/ibc.core.client.v1.MsgUpdateClient", MsgUpdateClient], ["/ibc.core.client.v1.MsgUpgradeClient", MsgUpgradeClient], ["/ibc.core.client.v1.MsgRecoverClient", MsgRecoverClient], ["/ibc.core.client.v1.MsgIBCSoftwareUpgrade", MsgIBCSoftwareUpgrade], ["/ibc.core.client.v1.MsgUpdateParams", MsgUpdateParams], ["/ibc.core.client.v1.MsgDeleteClientCreator", MsgDeleteClientCreator]];
|
|
3
3
|
export const load = (protoRegistry) => {
|
|
4
4
|
registry.forEach(([typeUrl, mod]) => {
|
|
5
5
|
protoRegistry.register(typeUrl, mod);
|
|
@@ -25,12 +25,6 @@ export const MessageComposer = {
|
|
|
25
25
|
value: MsgUpgradeClient.encode(value).finish()
|
|
26
26
|
};
|
|
27
27
|
},
|
|
28
|
-
submitMisbehaviour(value) {
|
|
29
|
-
return {
|
|
30
|
-
typeUrl: "/ibc.core.client.v1.MsgSubmitMisbehaviour",
|
|
31
|
-
value: MsgSubmitMisbehaviour.encode(value).finish()
|
|
32
|
-
};
|
|
33
|
-
},
|
|
34
28
|
recoverClient(value) {
|
|
35
29
|
return {
|
|
36
30
|
typeUrl: "/ibc.core.client.v1.MsgRecoverClient",
|
|
@@ -75,12 +69,6 @@ export const MessageComposer = {
|
|
|
75
69
|
value
|
|
76
70
|
};
|
|
77
71
|
},
|
|
78
|
-
submitMisbehaviour(value) {
|
|
79
|
-
return {
|
|
80
|
-
typeUrl: "/ibc.core.client.v1.MsgSubmitMisbehaviour",
|
|
81
|
-
value
|
|
82
|
-
};
|
|
83
|
-
},
|
|
84
72
|
recoverClient(value) {
|
|
85
73
|
return {
|
|
86
74
|
typeUrl: "/ibc.core.client.v1.MsgRecoverClient",
|
|
@@ -125,12 +113,6 @@ export const MessageComposer = {
|
|
|
125
113
|
value: MsgUpgradeClient.fromPartial(value)
|
|
126
114
|
};
|
|
127
115
|
},
|
|
128
|
-
submitMisbehaviour(value) {
|
|
129
|
-
return {
|
|
130
|
-
typeUrl: "/ibc.core.client.v1.MsgSubmitMisbehaviour",
|
|
131
|
-
value: MsgSubmitMisbehaviour.fromPartial(value)
|
|
132
|
-
};
|
|
133
|
-
},
|
|
134
116
|
recoverClient(value) {
|
|
135
117
|
return {
|
|
136
118
|
typeUrl: "/ibc.core.client.v1.MsgRecoverClient",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BinaryReader } from "../../../../binary";
|
|
2
|
-
import { MsgCreateClient, MsgCreateClientResponse, MsgUpdateClient, MsgUpdateClientResponse, MsgUpgradeClient, MsgUpgradeClientResponse,
|
|
2
|
+
import { MsgCreateClient, MsgCreateClientResponse, MsgUpdateClient, MsgUpdateClientResponse, MsgUpgradeClient, MsgUpgradeClientResponse, MsgRecoverClient, MsgRecoverClientResponse, MsgIBCSoftwareUpgrade, MsgIBCSoftwareUpgradeResponse, MsgUpdateParams, MsgUpdateParamsResponse, MsgDeleteClientCreator, MsgDeleteClientCreatorResponse } from "./tx";
|
|
3
3
|
export class MsgClientImpl {
|
|
4
4
|
rpc;
|
|
5
5
|
constructor(rpc) {
|
|
@@ -23,12 +23,6 @@ export class MsgClientImpl {
|
|
|
23
23
|
const promise = this.rpc.request("ibc.core.client.v1.Msg", "UpgradeClient", data);
|
|
24
24
|
return promise.then(data => MsgUpgradeClientResponse.decode(new BinaryReader(data)));
|
|
25
25
|
};
|
|
26
|
-
/* SubmitMisbehaviour defines a rpc handler method for MsgSubmitMisbehaviour. */
|
|
27
|
-
submitMisbehaviour = async (request) => {
|
|
28
|
-
const data = MsgSubmitMisbehaviour.encode(request).finish();
|
|
29
|
-
const promise = this.rpc.request("ibc.core.client.v1.Msg", "SubmitMisbehaviour", data);
|
|
30
|
-
return promise.then(data => MsgSubmitMisbehaviourResponse.decode(new BinaryReader(data)));
|
|
31
|
-
};
|
|
32
26
|
/* RecoverClient defines a rpc handler method for MsgRecoverClient. */
|
|
33
27
|
recoverClient = async (request) => {
|
|
34
28
|
const data = MsgRecoverClient.encode(request).finish();
|
|
@@ -5,6 +5,15 @@ function createBaseConfig() {
|
|
|
5
5
|
allowedRelayers: []
|
|
6
6
|
};
|
|
7
7
|
}
|
|
8
|
+
/**
|
|
9
|
+
* Config is a **per-client** configuration struct that sets which relayers are allowed to relay v2 IBC messages
|
|
10
|
+
* for a given client.
|
|
11
|
+
* If it is set, then only relayers in the allow list can send v2 messages
|
|
12
|
+
* If it is not set, then the client allows permissionless relaying of v2 messages
|
|
13
|
+
* @name Config
|
|
14
|
+
* @package ibc.core.client.v2
|
|
15
|
+
* @see proto type: ibc.core.client.v2.Config
|
|
16
|
+
*/
|
|
8
17
|
export const Config = {
|
|
9
18
|
typeUrl: "/ibc.core.client.v2.Config",
|
|
10
19
|
aminoType: "cosmos-sdk/Config",
|
|
@@ -7,6 +7,12 @@ function createBaseCounterpartyInfo() {
|
|
|
7
7
|
clientId: ""
|
|
8
8
|
};
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* CounterpartyInfo defines the key that the counterparty will use to message our client
|
|
12
|
+
* @name CounterpartyInfo
|
|
13
|
+
* @package ibc.core.client.v2
|
|
14
|
+
* @see proto type: ibc.core.client.v2.CounterpartyInfo
|
|
15
|
+
*/
|
|
10
16
|
export const CounterpartyInfo = {
|
|
11
17
|
typeUrl: "/ibc.core.client.v2.CounterpartyInfo",
|
|
12
18
|
aminoType: "cosmos-sdk/CounterpartyInfo",
|
|
@@ -7,6 +7,12 @@ function createBaseGenesisCounterpartyInfo() {
|
|
|
7
7
|
counterpartyInfo: CounterpartyInfo.fromPartial({})
|
|
8
8
|
};
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* GenesisCounterpartyInfo defines the state associating a client with a counterparty.
|
|
12
|
+
* @name GenesisCounterpartyInfo
|
|
13
|
+
* @package ibc.core.client.v2
|
|
14
|
+
* @see proto type: ibc.core.client.v2.GenesisCounterpartyInfo
|
|
15
|
+
*/
|
|
10
16
|
export const GenesisCounterpartyInfo = {
|
|
11
17
|
typeUrl: "/ibc.core.client.v2.GenesisCounterpartyInfo",
|
|
12
18
|
aminoType: "cosmos-sdk/GenesisCounterpartyInfo",
|
|
@@ -88,6 +94,12 @@ function createBaseGenesisState() {
|
|
|
88
94
|
counterpartyInfos: []
|
|
89
95
|
};
|
|
90
96
|
}
|
|
97
|
+
/**
|
|
98
|
+
* GenesisState defines the ibc client v2 submodule's genesis state.
|
|
99
|
+
* @name GenesisState
|
|
100
|
+
* @package ibc.core.client.v2
|
|
101
|
+
* @see proto type: ibc.core.client.v2.GenesisState
|
|
102
|
+
*/
|
|
91
103
|
export const GenesisState = {
|
|
92
104
|
typeUrl: "/ibc.core.client.v2.GenesisState",
|
|
93
105
|
aminoType: "cosmos-sdk/GenesisState",
|
|
@@ -7,6 +7,13 @@ function createBaseQueryCounterpartyInfoRequest() {
|
|
|
7
7
|
clientId: ""
|
|
8
8
|
};
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* QueryCounterpartyInfoRequest is the request type for the Query/CounterpartyInfo RPC
|
|
12
|
+
* method
|
|
13
|
+
* @name QueryCounterpartyInfoRequest
|
|
14
|
+
* @package ibc.core.client.v2
|
|
15
|
+
* @see proto type: ibc.core.client.v2.QueryCounterpartyInfoRequest
|
|
16
|
+
*/
|
|
10
17
|
export const QueryCounterpartyInfoRequest = {
|
|
11
18
|
typeUrl: "/ibc.core.client.v2.QueryCounterpartyInfoRequest",
|
|
12
19
|
aminoType: "cosmos-sdk/QueryCounterpartyInfoRequest",
|
|
@@ -77,6 +84,13 @@ function createBaseQueryCounterpartyInfoResponse() {
|
|
|
77
84
|
counterpartyInfo: undefined
|
|
78
85
|
};
|
|
79
86
|
}
|
|
87
|
+
/**
|
|
88
|
+
* QueryCounterpartyInfoResponse is the response type for the
|
|
89
|
+
* Query/CounterpartyInfo RPC method.
|
|
90
|
+
* @name QueryCounterpartyInfoResponse
|
|
91
|
+
* @package ibc.core.client.v2
|
|
92
|
+
* @see proto type: ibc.core.client.v2.QueryCounterpartyInfoResponse
|
|
93
|
+
*/
|
|
80
94
|
export const QueryCounterpartyInfoResponse = {
|
|
81
95
|
typeUrl: "/ibc.core.client.v2.QueryCounterpartyInfoResponse",
|
|
82
96
|
aminoType: "cosmos-sdk/QueryCounterpartyInfoResponse",
|
|
@@ -147,6 +161,12 @@ function createBaseQueryConfigRequest() {
|
|
|
147
161
|
clientId: ""
|
|
148
162
|
};
|
|
149
163
|
}
|
|
164
|
+
/**
|
|
165
|
+
* QueryConfigRequest is the request type for the Query/Config RPC method
|
|
166
|
+
* @name QueryConfigRequest
|
|
167
|
+
* @package ibc.core.client.v2
|
|
168
|
+
* @see proto type: ibc.core.client.v2.QueryConfigRequest
|
|
169
|
+
*/
|
|
150
170
|
export const QueryConfigRequest = {
|
|
151
171
|
typeUrl: "/ibc.core.client.v2.QueryConfigRequest",
|
|
152
172
|
aminoType: "cosmos-sdk/QueryConfigRequest",
|
|
@@ -217,6 +237,12 @@ function createBaseQueryConfigResponse() {
|
|
|
217
237
|
config: undefined
|
|
218
238
|
};
|
|
219
239
|
}
|
|
240
|
+
/**
|
|
241
|
+
* QueryConfigResponse is the response type for the Query/Config RPC method
|
|
242
|
+
* @name QueryConfigResponse
|
|
243
|
+
* @package ibc.core.client.v2
|
|
244
|
+
* @see proto type: ibc.core.client.v2.QueryConfigResponse
|
|
245
|
+
*/
|
|
220
246
|
export const QueryConfigResponse = {
|
|
221
247
|
typeUrl: "/ibc.core.client.v2.QueryConfigResponse",
|
|
222
248
|
aminoType: "cosmos-sdk/QueryConfigResponse",
|
|
@@ -10,6 +10,12 @@ function createBaseMsgRegisterCounterparty() {
|
|
|
10
10
|
signer: ""
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* MsgRegisterCounterparty defines a message to register a counterparty on a client
|
|
15
|
+
* @name MsgRegisterCounterparty
|
|
16
|
+
* @package ibc.core.client.v2
|
|
17
|
+
* @see proto type: ibc.core.client.v2.MsgRegisterCounterparty
|
|
18
|
+
*/
|
|
13
19
|
export const MsgRegisterCounterparty = {
|
|
14
20
|
typeUrl: "/ibc.core.client.v2.MsgRegisterCounterparty",
|
|
15
21
|
aminoType: "cosmos-sdk/MsgRegisterCounterparty",
|
|
@@ -114,6 +120,12 @@ export const MsgRegisterCounterparty = {
|
|
|
114
120
|
function createBaseMsgRegisterCounterpartyResponse() {
|
|
115
121
|
return {};
|
|
116
122
|
}
|
|
123
|
+
/**
|
|
124
|
+
* MsgRegisterCounterpartyResponse defines the Msg/RegisterCounterparty response type.
|
|
125
|
+
* @name MsgRegisterCounterpartyResponse
|
|
126
|
+
* @package ibc.core.client.v2
|
|
127
|
+
* @see proto type: ibc.core.client.v2.MsgRegisterCounterpartyResponse
|
|
128
|
+
*/
|
|
117
129
|
export const MsgRegisterCounterpartyResponse = {
|
|
118
130
|
typeUrl: "/ibc.core.client.v2.MsgRegisterCounterpartyResponse",
|
|
119
131
|
aminoType: "cosmos-sdk/MsgRegisterCounterpartyResponse",
|
|
@@ -175,6 +187,12 @@ function createBaseMsgUpdateClientConfig() {
|
|
|
175
187
|
signer: ""
|
|
176
188
|
};
|
|
177
189
|
}
|
|
190
|
+
/**
|
|
191
|
+
* MsgUpdateClientConfig defines the sdk.Msg type to update the configuration for a given client
|
|
192
|
+
* @name MsgUpdateClientConfig
|
|
193
|
+
* @package ibc.core.client.v2
|
|
194
|
+
* @see proto type: ibc.core.client.v2.MsgUpdateClientConfig
|
|
195
|
+
*/
|
|
178
196
|
export const MsgUpdateClientConfig = {
|
|
179
197
|
typeUrl: "/ibc.core.client.v2.MsgUpdateClientConfig",
|
|
180
198
|
aminoType: "cosmos-sdk/MsgUpdateClientConfig",
|
|
@@ -265,6 +283,12 @@ export const MsgUpdateClientConfig = {
|
|
|
265
283
|
function createBaseMsgUpdateClientConfigResponse() {
|
|
266
284
|
return {};
|
|
267
285
|
}
|
|
286
|
+
/**
|
|
287
|
+
* MsgUpdateClientConfigResponse defines the MsgUpdateClientConfig response type.
|
|
288
|
+
* @name MsgUpdateClientConfigResponse
|
|
289
|
+
* @package ibc.core.client.v2
|
|
290
|
+
* @see proto type: ibc.core.client.v2.MsgUpdateClientConfigResponse
|
|
291
|
+
*/
|
|
268
292
|
export const MsgUpdateClientConfigResponse = {
|
|
269
293
|
typeUrl: "/ibc.core.client.v2.MsgUpdateClientConfigResponse",
|
|
270
294
|
aminoType: "cosmos-sdk/MsgUpdateClientConfigResponse",
|
|
@@ -7,6 +7,13 @@ function createBaseMerkleRoot() {
|
|
|
7
7
|
hash: new Uint8Array()
|
|
8
8
|
};
|
|
9
9
|
}
|
|
10
|
+
/**
|
|
11
|
+
* MerkleRoot defines a merkle root hash.
|
|
12
|
+
* In the Cosmos SDK, the AppHash of a block header becomes the root.
|
|
13
|
+
* @name MerkleRoot
|
|
14
|
+
* @package ibc.core.commitment.v1
|
|
15
|
+
* @see proto type: ibc.core.commitment.v1.MerkleRoot
|
|
16
|
+
*/
|
|
10
17
|
export const MerkleRoot = {
|
|
11
18
|
typeUrl: "/ibc.core.commitment.v1.MerkleRoot",
|
|
12
19
|
aminoType: "cosmos-sdk/MerkleRoot",
|
|
@@ -77,6 +84,14 @@ function createBaseMerklePrefix() {
|
|
|
77
84
|
keyPrefix: new Uint8Array()
|
|
78
85
|
};
|
|
79
86
|
}
|
|
87
|
+
/**
|
|
88
|
+
* MerklePrefix is merkle path prefixed to the key.
|
|
89
|
+
* The constructed key from the Path and the key will be append(Path.KeyPath,
|
|
90
|
+
* append(Path.KeyPrefix, key...))
|
|
91
|
+
* @name MerklePrefix
|
|
92
|
+
* @package ibc.core.commitment.v1
|
|
93
|
+
* @see proto type: ibc.core.commitment.v1.MerklePrefix
|
|
94
|
+
*/
|
|
80
95
|
export const MerklePrefix = {
|
|
81
96
|
typeUrl: "/ibc.core.commitment.v1.MerklePrefix",
|
|
82
97
|
aminoType: "cosmos-sdk/MerklePrefix",
|
|
@@ -147,6 +162,16 @@ function createBaseMerkleProof() {
|
|
|
147
162
|
proofs: []
|
|
148
163
|
};
|
|
149
164
|
}
|
|
165
|
+
/**
|
|
166
|
+
* MerkleProof is a wrapper type over a chain of CommitmentProofs.
|
|
167
|
+
* It demonstrates membership or non-membership for an element or set of
|
|
168
|
+
* elements, verifiable in conjunction with a known commitment root. Proofs
|
|
169
|
+
* should be succinct.
|
|
170
|
+
* MerkleProofs are ordered from leaf-to-root
|
|
171
|
+
* @name MerkleProof
|
|
172
|
+
* @package ibc.core.commitment.v1
|
|
173
|
+
* @see proto type: ibc.core.commitment.v1.MerkleProof
|
|
174
|
+
*/
|
|
150
175
|
export const MerkleProof = {
|
|
151
176
|
typeUrl: "/ibc.core.commitment.v1.MerkleProof",
|
|
152
177
|
aminoType: "cosmos-sdk/MerkleProof",
|
|
@@ -6,6 +6,42 @@ function createBaseMerklePath() {
|
|
|
6
6
|
keyPath: []
|
|
7
7
|
};
|
|
8
8
|
}
|
|
9
|
+
/**
|
|
10
|
+
* MerklePath is the path used to verify commitment proofs, which can be an
|
|
11
|
+
* arbitrary structured object (defined by a commitment type).
|
|
12
|
+
* ICS-23 verification supports membership proofs for nested merkle trees.
|
|
13
|
+
* The ICS-24 standard provable keys MUST be stored in the lowest level tree with an optional prefix.
|
|
14
|
+
* The IC24 provable tree may then be stored in a higher level tree(s) that hash up to the root hash
|
|
15
|
+
* stored in the consensus state of the client.
|
|
16
|
+
* Each element of the path represents the key of a merkle tree from the root to the leaf.
|
|
17
|
+
* The elements of the path before the final element must be the path to the tree that contains
|
|
18
|
+
* the ICS24 provable store. Thus, it should remain constant for all ICS24 proofs.
|
|
19
|
+
* The final element of the path is the key of the leaf in the ICS24 provable store,
|
|
20
|
+
* Thus IBC core will append the ICS24 path to the final element of the MerklePath
|
|
21
|
+
* stored in the counterparty to create the full path to the leaf for proof verification.
|
|
22
|
+
* Examples:
|
|
23
|
+
* Cosmos SDK:
|
|
24
|
+
* The Cosmos SDK commits to a multi-tree where each store is an IAVL tree and all store hashes
|
|
25
|
+
* are hashed in a simple merkle tree to get the final root hash. Thus, the MerklePath in the counterparty
|
|
26
|
+
* MerklePrefix has the following structure: ["ibc", ""]
|
|
27
|
+
* The core IBC handler will append the ICS24 path to the final element of the MerklePath
|
|
28
|
+
* like so: ["ibc", "{packetCommitmentPath}"] which will then be used for final verification.
|
|
29
|
+
* Ethereum:
|
|
30
|
+
* The Ethereum client commits to a single Patricia merkle trie. The ICS24 provable store is managed
|
|
31
|
+
* by the smart contract state. Each smart contract has a specific prefix reserved within the global trie.
|
|
32
|
+
* Thus the MerklePath in the counterparty is the prefix to the smart contract state in the global trie.
|
|
33
|
+
* Since there is only one tree in the commitment structure of ethereum the MerklePath in the counterparty
|
|
34
|
+
* MerklePrefix has the following structure: ["IBCCoreContractAddressStoragePrefix"]
|
|
35
|
+
* The core IBC handler will append the ICS24 path to the final element of the MerklePath
|
|
36
|
+
* like so: ["IBCCoreContractAddressStoragePrefix{packetCommitmentPath}"] which will then be used for final
|
|
37
|
+
* verification. Thus the MerklePath in the counterparty MerklePrefix is the nested key path from the root hash of the
|
|
38
|
+
* consensus state down to the ICS24 provable store. The IBC handler retrieves the counterparty key path to the ICS24
|
|
39
|
+
* provable store from the MerklePath and appends the ICS24 path to get the final key path to the value being verified
|
|
40
|
+
* by the client against the root hash in the client's consensus state.
|
|
41
|
+
* @name MerklePath
|
|
42
|
+
* @package ibc.core.commitment.v2
|
|
43
|
+
* @see proto type: ibc.core.commitment.v2.MerklePath
|
|
44
|
+
*/
|
|
9
45
|
export const MerklePath = {
|
|
10
46
|
typeUrl: "/ibc.core.commitment.v2.MerklePath",
|
|
11
47
|
aminoType: "cosmos-sdk/MerklePath",
|
|
@@ -65,6 +65,15 @@ function createBaseConnectionEnd() {
|
|
|
65
65
|
delayPeriod: BigInt(0)
|
|
66
66
|
};
|
|
67
67
|
}
|
|
68
|
+
/**
|
|
69
|
+
* ConnectionEnd defines a stateful object on a chain connected to another
|
|
70
|
+
* separate one.
|
|
71
|
+
* NOTE: there must only be 2 defined ConnectionEnds to establish
|
|
72
|
+
* a connection between two chains.
|
|
73
|
+
* @name ConnectionEnd
|
|
74
|
+
* @package ibc.core.connection.v1
|
|
75
|
+
* @see proto type: ibc.core.connection.v1.ConnectionEnd
|
|
76
|
+
*/
|
|
68
77
|
export const ConnectionEnd = {
|
|
69
78
|
typeUrl: "/ibc.core.connection.v1.ConnectionEnd",
|
|
70
79
|
aminoType: "cosmos-sdk/ConnectionEnd",
|
|
@@ -187,6 +196,13 @@ function createBaseIdentifiedConnection() {
|
|
|
187
196
|
delayPeriod: BigInt(0)
|
|
188
197
|
};
|
|
189
198
|
}
|
|
199
|
+
/**
|
|
200
|
+
* IdentifiedConnection defines a connection with additional connection
|
|
201
|
+
* identifier field.
|
|
202
|
+
* @name IdentifiedConnection
|
|
203
|
+
* @package ibc.core.connection.v1
|
|
204
|
+
* @see proto type: ibc.core.connection.v1.IdentifiedConnection
|
|
205
|
+
*/
|
|
190
206
|
export const IdentifiedConnection = {
|
|
191
207
|
typeUrl: "/ibc.core.connection.v1.IdentifiedConnection",
|
|
192
208
|
aminoType: "cosmos-sdk/IdentifiedConnection",
|
|
@@ -317,6 +333,12 @@ function createBaseCounterparty() {
|
|
|
317
333
|
prefix: MerklePrefix.fromPartial({})
|
|
318
334
|
};
|
|
319
335
|
}
|
|
336
|
+
/**
|
|
337
|
+
* Counterparty defines the counterparty chain associated with a connection end.
|
|
338
|
+
* @name Counterparty
|
|
339
|
+
* @package ibc.core.connection.v1
|
|
340
|
+
* @see proto type: ibc.core.connection.v1.Counterparty
|
|
341
|
+
*/
|
|
320
342
|
export const Counterparty = {
|
|
321
343
|
typeUrl: "/ibc.core.connection.v1.Counterparty",
|
|
322
344
|
aminoType: "cosmos-sdk/Counterparty",
|
|
@@ -409,6 +431,12 @@ function createBaseClientPaths() {
|
|
|
409
431
|
paths: []
|
|
410
432
|
};
|
|
411
433
|
}
|
|
434
|
+
/**
|
|
435
|
+
* ClientPaths define all the connection paths for a client state.
|
|
436
|
+
* @name ClientPaths
|
|
437
|
+
* @package ibc.core.connection.v1
|
|
438
|
+
* @see proto type: ibc.core.connection.v1.ClientPaths
|
|
439
|
+
*/
|
|
412
440
|
export const ClientPaths = {
|
|
413
441
|
typeUrl: "/ibc.core.connection.v1.ClientPaths",
|
|
414
442
|
aminoType: "cosmos-sdk/ClientPaths",
|
|
@@ -483,6 +511,12 @@ function createBaseConnectionPaths() {
|
|
|
483
511
|
paths: []
|
|
484
512
|
};
|
|
485
513
|
}
|
|
514
|
+
/**
|
|
515
|
+
* ConnectionPaths define all the connection paths for a given client state.
|
|
516
|
+
* @name ConnectionPaths
|
|
517
|
+
* @package ibc.core.connection.v1
|
|
518
|
+
* @see proto type: ibc.core.connection.v1.ConnectionPaths
|
|
519
|
+
*/
|
|
486
520
|
export const ConnectionPaths = {
|
|
487
521
|
typeUrl: "/ibc.core.connection.v1.ConnectionPaths",
|
|
488
522
|
aminoType: "cosmos-sdk/ConnectionPaths",
|
|
@@ -568,6 +602,13 @@ function createBaseVersion() {
|
|
|
568
602
|
features: []
|
|
569
603
|
};
|
|
570
604
|
}
|
|
605
|
+
/**
|
|
606
|
+
* Version defines the versioning scheme used to negotiate the IBC version in
|
|
607
|
+
* the connection handshake.
|
|
608
|
+
* @name Version
|
|
609
|
+
* @package ibc.core.connection.v1
|
|
610
|
+
* @see proto type: ibc.core.connection.v1.Version
|
|
611
|
+
*/
|
|
571
612
|
export const Version = {
|
|
572
613
|
typeUrl: "/ibc.core.connection.v1.Version",
|
|
573
614
|
aminoType: "cosmos-sdk/Version",
|
|
@@ -652,6 +693,12 @@ function createBaseParams() {
|
|
|
652
693
|
maxExpectedTimePerBlock: BigInt(0)
|
|
653
694
|
};
|
|
654
695
|
}
|
|
696
|
+
/**
|
|
697
|
+
* Params defines the set of Connection parameters.
|
|
698
|
+
* @name Params
|
|
699
|
+
* @package ibc.core.connection.v1
|
|
700
|
+
* @see proto type: ibc.core.connection.v1.Params
|
|
701
|
+
*/
|
|
655
702
|
export const Params = {
|
|
656
703
|
typeUrl: "/ibc.core.connection.v1.Params",
|
|
657
704
|
aminoType: "cosmos-sdk/Params",
|
|
@@ -9,6 +9,12 @@ function createBaseGenesisState() {
|
|
|
9
9
|
params: Params.fromPartial({})
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* GenesisState defines the ibc connection submodule's genesis state.
|
|
14
|
+
* @name GenesisState
|
|
15
|
+
* @package ibc.core.connection.v1
|
|
16
|
+
* @see proto type: ibc.core.connection.v1.GenesisState
|
|
17
|
+
*/
|
|
12
18
|
export const GenesisState = {
|
|
13
19
|
typeUrl: "/ibc.core.connection.v1.GenesisState",
|
|
14
20
|
aminoType: "cosmos-sdk/GenesisState",
|
|
@@ -10,6 +10,13 @@ function createBaseQueryConnectionRequest() {
|
|
|
10
10
|
connectionId: ""
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* QueryConnectionRequest is the request type for the Query/Connection RPC
|
|
15
|
+
* method
|
|
16
|
+
* @name QueryConnectionRequest
|
|
17
|
+
* @package ibc.core.connection.v1
|
|
18
|
+
* @see proto type: ibc.core.connection.v1.QueryConnectionRequest
|
|
19
|
+
*/
|
|
13
20
|
export const QueryConnectionRequest = {
|
|
14
21
|
typeUrl: "/ibc.core.connection.v1.QueryConnectionRequest",
|
|
15
22
|
aminoType: "cosmos-sdk/QueryConnectionRequest",
|
|
@@ -82,6 +89,14 @@ function createBaseQueryConnectionResponse() {
|
|
|
82
89
|
proofHeight: Height.fromPartial({})
|
|
83
90
|
};
|
|
84
91
|
}
|
|
92
|
+
/**
|
|
93
|
+
* QueryConnectionResponse is the response type for the Query/Connection RPC
|
|
94
|
+
* method. Besides the connection end, it includes a proof and the height from
|
|
95
|
+
* which the proof was retrieved.
|
|
96
|
+
* @name QueryConnectionResponse
|
|
97
|
+
* @package ibc.core.connection.v1
|
|
98
|
+
* @see proto type: ibc.core.connection.v1.QueryConnectionResponse
|
|
99
|
+
*/
|
|
85
100
|
export const QueryConnectionResponse = {
|
|
86
101
|
typeUrl: "/ibc.core.connection.v1.QueryConnectionResponse",
|
|
87
102
|
aminoType: "cosmos-sdk/QueryConnectionResponse",
|
|
@@ -174,6 +189,13 @@ function createBaseQueryConnectionsRequest() {
|
|
|
174
189
|
pagination: undefined
|
|
175
190
|
};
|
|
176
191
|
}
|
|
192
|
+
/**
|
|
193
|
+
* QueryConnectionsRequest is the request type for the Query/Connections RPC
|
|
194
|
+
* method
|
|
195
|
+
* @name QueryConnectionsRequest
|
|
196
|
+
* @package ibc.core.connection.v1
|
|
197
|
+
* @see proto type: ibc.core.connection.v1.QueryConnectionsRequest
|
|
198
|
+
*/
|
|
177
199
|
export const QueryConnectionsRequest = {
|
|
178
200
|
typeUrl: "/ibc.core.connection.v1.QueryConnectionsRequest",
|
|
179
201
|
aminoType: "cosmos-sdk/QueryConnectionsRequest",
|
|
@@ -246,6 +268,13 @@ function createBaseQueryConnectionsResponse() {
|
|
|
246
268
|
height: Height.fromPartial({})
|
|
247
269
|
};
|
|
248
270
|
}
|
|
271
|
+
/**
|
|
272
|
+
* QueryConnectionsResponse is the response type for the Query/Connections RPC
|
|
273
|
+
* method.
|
|
274
|
+
* @name QueryConnectionsResponse
|
|
275
|
+
* @package ibc.core.connection.v1
|
|
276
|
+
* @see proto type: ibc.core.connection.v1.QueryConnectionsResponse
|
|
277
|
+
*/
|
|
249
278
|
export const QueryConnectionsResponse = {
|
|
250
279
|
typeUrl: "/ibc.core.connection.v1.QueryConnectionsResponse",
|
|
251
280
|
aminoType: "cosmos-sdk/QueryConnectionsResponse",
|
|
@@ -341,6 +370,13 @@ function createBaseQueryClientConnectionsRequest() {
|
|
|
341
370
|
clientId: ""
|
|
342
371
|
};
|
|
343
372
|
}
|
|
373
|
+
/**
|
|
374
|
+
* QueryClientConnectionsRequest is the request type for the
|
|
375
|
+
* Query/ClientConnections RPC method
|
|
376
|
+
* @name QueryClientConnectionsRequest
|
|
377
|
+
* @package ibc.core.connection.v1
|
|
378
|
+
* @see proto type: ibc.core.connection.v1.QueryClientConnectionsRequest
|
|
379
|
+
*/
|
|
344
380
|
export const QueryClientConnectionsRequest = {
|
|
345
381
|
typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsRequest",
|
|
346
382
|
aminoType: "cosmos-sdk/QueryClientConnectionsRequest",
|
|
@@ -413,6 +449,13 @@ function createBaseQueryClientConnectionsResponse() {
|
|
|
413
449
|
proofHeight: Height.fromPartial({})
|
|
414
450
|
};
|
|
415
451
|
}
|
|
452
|
+
/**
|
|
453
|
+
* QueryClientConnectionsResponse is the response type for the
|
|
454
|
+
* Query/ClientConnections RPC method
|
|
455
|
+
* @name QueryClientConnectionsResponse
|
|
456
|
+
* @package ibc.core.connection.v1
|
|
457
|
+
* @see proto type: ibc.core.connection.v1.QueryClientConnectionsResponse
|
|
458
|
+
*/
|
|
416
459
|
export const QueryClientConnectionsResponse = {
|
|
417
460
|
typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsResponse",
|
|
418
461
|
aminoType: "cosmos-sdk/QueryClientConnectionsResponse",
|
|
@@ -508,6 +551,13 @@ function createBaseQueryConnectionClientStateRequest() {
|
|
|
508
551
|
connectionId: ""
|
|
509
552
|
};
|
|
510
553
|
}
|
|
554
|
+
/**
|
|
555
|
+
* QueryConnectionClientStateRequest is the request type for the
|
|
556
|
+
* Query/ConnectionClientState RPC method
|
|
557
|
+
* @name QueryConnectionClientStateRequest
|
|
558
|
+
* @package ibc.core.connection.v1
|
|
559
|
+
* @see proto type: ibc.core.connection.v1.QueryConnectionClientStateRequest
|
|
560
|
+
*/
|
|
511
561
|
export const QueryConnectionClientStateRequest = {
|
|
512
562
|
typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateRequest",
|
|
513
563
|
aminoType: "cosmos-sdk/QueryConnectionClientStateRequest",
|
|
@@ -580,6 +630,13 @@ function createBaseQueryConnectionClientStateResponse() {
|
|
|
580
630
|
proofHeight: Height.fromPartial({})
|
|
581
631
|
};
|
|
582
632
|
}
|
|
633
|
+
/**
|
|
634
|
+
* QueryConnectionClientStateResponse is the response type for the
|
|
635
|
+
* Query/ConnectionClientState RPC method
|
|
636
|
+
* @name QueryConnectionClientStateResponse
|
|
637
|
+
* @package ibc.core.connection.v1
|
|
638
|
+
* @see proto type: ibc.core.connection.v1.QueryConnectionClientStateResponse
|
|
639
|
+
*/
|
|
583
640
|
export const QueryConnectionClientStateResponse = {
|
|
584
641
|
typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateResponse",
|
|
585
642
|
aminoType: "cosmos-sdk/QueryConnectionClientStateResponse",
|
|
@@ -674,6 +731,13 @@ function createBaseQueryConnectionConsensusStateRequest() {
|
|
|
674
731
|
revisionHeight: BigInt(0)
|
|
675
732
|
};
|
|
676
733
|
}
|
|
734
|
+
/**
|
|
735
|
+
* QueryConnectionConsensusStateRequest is the request type for the
|
|
736
|
+
* Query/ConnectionConsensusState RPC method
|
|
737
|
+
* @name QueryConnectionConsensusStateRequest
|
|
738
|
+
* @package ibc.core.connection.v1
|
|
739
|
+
* @see proto type: ibc.core.connection.v1.QueryConnectionConsensusStateRequest
|
|
740
|
+
*/
|
|
677
741
|
export const QueryConnectionConsensusStateRequest = {
|
|
678
742
|
typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateRequest",
|
|
679
743
|
aminoType: "cosmos-sdk/QueryConnectionConsensusStateRequest",
|
|
@@ -769,6 +833,13 @@ function createBaseQueryConnectionConsensusStateResponse() {
|
|
|
769
833
|
proofHeight: Height.fromPartial({})
|
|
770
834
|
};
|
|
771
835
|
}
|
|
836
|
+
/**
|
|
837
|
+
* QueryConnectionConsensusStateResponse is the response type for the
|
|
838
|
+
* Query/ConnectionConsensusState RPC method
|
|
839
|
+
* @name QueryConnectionConsensusStateResponse
|
|
840
|
+
* @package ibc.core.connection.v1
|
|
841
|
+
* @see proto type: ibc.core.connection.v1.QueryConnectionConsensusStateResponse
|
|
842
|
+
*/
|
|
772
843
|
export const QueryConnectionConsensusStateResponse = {
|
|
773
844
|
typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateResponse",
|
|
774
845
|
aminoType: "cosmos-sdk/QueryConnectionConsensusStateResponse",
|
|
@@ -870,6 +941,12 @@ export const QueryConnectionConsensusStateResponse = {
|
|
|
870
941
|
function createBaseQueryConnectionParamsRequest() {
|
|
871
942
|
return {};
|
|
872
943
|
}
|
|
944
|
+
/**
|
|
945
|
+
* QueryConnectionParamsRequest is the request type for the Query/ConnectionParams RPC method.
|
|
946
|
+
* @name QueryConnectionParamsRequest
|
|
947
|
+
* @package ibc.core.connection.v1
|
|
948
|
+
* @see proto type: ibc.core.connection.v1.QueryConnectionParamsRequest
|
|
949
|
+
*/
|
|
873
950
|
export const QueryConnectionParamsRequest = {
|
|
874
951
|
typeUrl: "/ibc.core.connection.v1.QueryConnectionParamsRequest",
|
|
875
952
|
aminoType: "cosmos-sdk/QueryConnectionParamsRequest",
|
|
@@ -929,6 +1006,12 @@ function createBaseQueryConnectionParamsResponse() {
|
|
|
929
1006
|
params: undefined
|
|
930
1007
|
};
|
|
931
1008
|
}
|
|
1009
|
+
/**
|
|
1010
|
+
* QueryConnectionParamsResponse is the response type for the Query/ConnectionParams RPC method.
|
|
1011
|
+
* @name QueryConnectionParamsResponse
|
|
1012
|
+
* @package ibc.core.connection.v1
|
|
1013
|
+
* @see proto type: ibc.core.connection.v1.QueryConnectionParamsResponse
|
|
1014
|
+
*/
|
|
932
1015
|
export const QueryConnectionParamsResponse = {
|
|
933
1016
|
typeUrl: "/ibc.core.connection.v1.QueryConnectionParamsResponse",
|
|
934
1017
|
aminoType: "cosmos-sdk/QueryConnectionParamsResponse",
|