juno-network 0.15.0 → 0.17.0
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/README.md +1 -4
- package/main/codegen/JunoSwap.client.js +165 -184
- package/main/codegen/amino/amino.js +5 -0
- package/main/codegen/amino/bundle.js +16 -0
- package/main/codegen/binary.js +478 -0
- package/main/codegen/confio/proofs.js +836 -72
- package/main/codegen/contracts.js +8 -4
- package/main/codegen/cosmos/app/v1alpha1/config.js +221 -0
- package/main/codegen/cosmos/app/v1alpha1/module.js +324 -0
- package/main/codegen/cosmos/app/v1alpha1/query.js +149 -0
- package/main/codegen/cosmos/app/v1alpha1/query.rpc.Query.js +45 -0
- package/main/codegen/cosmos/auth/v1beta1/auth.js +382 -0
- package/main/codegen/cosmos/auth/v1beta1/genesis.js +120 -0
- package/main/codegen/cosmos/auth/v1beta1/query.js +1133 -0
- package/main/codegen/cosmos/auth/v1beta1/query.lcd.js +223 -0
- package/main/codegen/cosmos/auth/v1beta1/query.rpc.Query.js +128 -0
- package/main/codegen/cosmos/authz/v1beta1/authz.js +220 -13
- package/main/codegen/cosmos/authz/v1beta1/event.js +101 -8
- package/main/codegen/cosmos/authz/v1beta1/genesis.js +51 -7
- package/main/codegen/cosmos/authz/v1beta1/query.js +311 -21
- package/main/codegen/cosmos/authz/v1beta1/query.lcd.js +65 -69
- package/main/codegen/cosmos/authz/v1beta1/query.rpc.Query.js +5 -7
- package/main/codegen/cosmos/authz/v1beta1/tx.amino.js +25 -0
- package/main/codegen/cosmos/authz/v1beta1/tx.js +312 -18
- package/main/codegen/cosmos/authz/v1beta1/tx.registry.js +83 -0
- package/main/codegen/cosmos/authz/v1beta1/tx.rpc.msg.js +5 -7
- package/main/codegen/cosmos/bank/v1beta1/authz.js +66 -7
- package/main/codegen/cosmos/bank/v1beta1/bank.js +425 -21
- package/main/codegen/cosmos/bank/v1beta1/genesis.js +138 -10
- package/main/codegen/cosmos/bank/v1beta1/query.js +964 -49
- package/main/codegen/cosmos/bank/v1beta1/query.lcd.js +148 -163
- package/main/codegen/cosmos/bank/v1beta1/query.rpc.Query.js +11 -13
- package/main/codegen/cosmos/bank/v1beta1/tx.amino.js +5 -86
- package/main/codegen/cosmos/bank/v1beta1/tx.js +194 -13
- package/main/codegen/cosmos/bank/v1beta1/tx.rpc.msg.js +4 -6
- package/main/codegen/cosmos/base/abci/v1beta1/abci.js +677 -60
- package/main/codegen/cosmos/base/kv/v1beta1/kv.js +197 -0
- package/main/codegen/cosmos/base/query/v1beta1/pagination.js +162 -17
- package/main/codegen/cosmos/base/reflection/v1beta1/reflection.js +362 -0
- package/main/codegen/cosmos/base/reflection/v2alpha1/reflection.js +1230 -57
- package/main/codegen/cosmos/base/snapshots/v1beta1/snapshot.js +916 -0
- package/main/codegen/cosmos/base/store/v1beta1/commit_info.js +326 -0
- package/main/codegen/cosmos/base/store/v1beta1/listening.js +140 -0
- package/main/codegen/cosmos/base/tendermint/v1beta1/query.js +1431 -0
- package/main/codegen/cosmos/base/tendermint/v1beta1/query.lcd.js +202 -0
- package/main/codegen/cosmos/base/tendermint/v1beta1/query.rpc.Service.js +115 -0
- package/main/codegen/cosmos/base/v1beta1/coin.js +207 -12
- package/main/codegen/cosmos/bundle.js +274 -105
- package/main/codegen/cosmos/capability/v1beta1/capability.js +300 -0
- package/main/codegen/cosmos/capability/v1beta1/genesis.js +208 -0
- package/main/codegen/cosmos/client.js +37 -23
- package/main/codegen/cosmos/crisis/v1beta1/genesis.js +85 -0
- package/main/codegen/cosmos/crisis/v1beta1/tx.amino.js +15 -0
- package/main/codegen/cosmos/crisis/v1beta1/tx.js +173 -0
- package/main/codegen/cosmos/crisis/v1beta1/tx.registry.js +47 -0
- package/main/codegen/cosmos/crisis/v1beta1/tx.rpc.msg.js +33 -0
- package/main/codegen/cosmos/crypto/ed25519/keys.js +113 -8
- package/main/codegen/cosmos/crypto/hd/v1/hd.js +59 -6
- package/main/codegen/cosmos/crypto/keyring/v1/record.js +236 -14
- package/main/codegen/cosmos/crypto/multisig/keys.js +67 -7
- package/main/codegen/cosmos/crypto/multisig/v1beta1/multisig.js +125 -9
- package/main/codegen/cosmos/crypto/secp256k1/keys.js +104 -8
- package/main/codegen/cosmos/crypto/secp256r1/keys.js +86 -8
- package/main/codegen/cosmos/distribution/v1beta1/distribution.js +788 -56
- package/main/codegen/cosmos/distribution/v1beta1/genesis.js +514 -38
- package/main/codegen/cosmos/distribution/v1beta1/query.js +970 -53
- package/main/codegen/cosmos/distribution/v1beta1/query.lcd.js +107 -124
- package/main/codegen/cosmos/distribution/v1beta1/query.rpc.Query.js +11 -13
- package/main/codegen/cosmos/distribution/v1beta1/tx.amino.js +9 -70
- package/main/codegen/cosmos/distribution/v1beta1/tx.js +403 -25
- package/main/codegen/cosmos/distribution/v1beta1/tx.rpc.msg.js +6 -8
- package/main/codegen/cosmos/evidence/v1beta1/evidence.js +132 -0
- package/main/codegen/cosmos/evidence/v1beta1/genesis.js +107 -0
- package/main/codegen/cosmos/evidence/v1beta1/query.js +371 -0
- package/main/codegen/cosmos/evidence/v1beta1/query.lcd.js +87 -0
- package/main/codegen/cosmos/evidence/v1beta1/query.rpc.Query.js +60 -0
- package/main/codegen/cosmos/evidence/v1beta1/tx.amino.js +15 -0
- package/main/codegen/cosmos/evidence/v1beta1/tx.js +186 -0
- package/main/codegen/cosmos/evidence/v1beta1/tx.registry.js +47 -0
- package/main/codegen/cosmos/evidence/v1beta1/tx.rpc.msg.js +33 -0
- package/main/codegen/cosmos/feegrant/v1beta1/feegrant.js +512 -0
- package/main/codegen/cosmos/feegrant/v1beta1/genesis.js +107 -0
- package/main/codegen/cosmos/feegrant/v1beta1/query.js +575 -0
- package/main/codegen/cosmos/feegrant/v1beta1/query.lcd.js +114 -0
- package/main/codegen/cosmos/feegrant/v1beta1/query.rpc.Query.js +70 -0
- package/main/codegen/cosmos/feegrant/v1beta1/tx.amino.js +20 -0
- package/main/codegen/cosmos/feegrant/v1beta1/tx.js +337 -0
- package/main/codegen/cosmos/feegrant/v1beta1/tx.registry.js +65 -0
- package/main/codegen/cosmos/feegrant/v1beta1/tx.rpc.msg.js +43 -0
- package/main/codegen/cosmos/genutil/v1beta1/genesis.js +107 -0
- package/main/codegen/cosmos/gov/v1/genesis.js +90 -11
- package/main/codegen/cosmos/gov/v1/gov.js +497 -58
- package/main/codegen/cosmos/gov/v1/query.js +770 -56
- package/main/codegen/cosmos/gov/v1/query.lcd.js +107 -123
- package/main/codegen/cosmos/gov/v1/query.rpc.Query.js +10 -12
- package/main/codegen/cosmos/gov/v1/tx.amino.js +11 -156
- package/main/codegen/cosmos/gov/v1/tx.js +511 -38
- package/main/codegen/cosmos/gov/v1/tx.rpc.msg.js +7 -9
- package/main/codegen/cosmos/gov/v1beta1/genesis.js +93 -14
- package/main/codegen/cosmos/gov/v1beta1/gov.js +560 -69
- package/main/codegen/cosmos/gov/v1beta1/query.js +777 -63
- package/main/codegen/cosmos/gov/v1beta1/query.lcd.js +107 -123
- package/main/codegen/cosmos/gov/v1beta1/query.rpc.Query.js +10 -12
- package/main/codegen/cosmos/gov/v1beta1/tx.amino.js +9 -118
- package/main/codegen/cosmos/gov/v1beta1/tx.js +424 -34
- package/main/codegen/cosmos/gov/v1beta1/tx.rpc.msg.js +6 -8
- package/main/codegen/cosmos/group/v1/events.js +729 -0
- package/main/codegen/cosmos/group/v1/genesis.js +259 -0
- package/main/codegen/cosmos/group/v1/query.js +2377 -0
- package/main/codegen/cosmos/group/v1/query.lcd.js +398 -0
- package/main/codegen/cosmos/group/v1/query.rpc.Query.js +200 -0
- package/main/codegen/cosmos/group/v1/tx.amino.js +80 -0
- package/main/codegen/cosmos/group/v1/tx.js +2590 -0
- package/main/codegen/cosmos/group/v1/tx.registry.js +281 -0
- package/main/codegen/cosmos/group/v1/tx.rpc.msg.js +163 -0
- package/main/codegen/cosmos/group/v1/types.js +1607 -0
- package/main/codegen/cosmos/lcd.js +255 -128
- package/main/codegen/cosmos/mint/v1beta1/genesis.js +97 -0
- package/main/codegen/cosmos/mint/v1beta1/mint.js +236 -0
- package/main/codegen/cosmos/mint/v1beta1/query.js +461 -0
- package/main/codegen/cosmos/mint/v1beta1/query.lcd.js +108 -0
- package/main/codegen/cosmos/mint/v1beta1/query.rpc.Query.js +73 -0
- package/main/codegen/cosmos/msg/v1/msg.js +5 -0
- package/main/codegen/cosmos/nft/v1beta1/event.js +325 -0
- package/main/codegen/cosmos/nft/v1beta1/genesis.js +244 -0
- package/main/codegen/cosmos/nft/v1beta1/nft.js +284 -0
- package/main/codegen/cosmos/nft/v1beta1/query.js +1219 -0
- package/main/codegen/cosmos/nft/v1beta1/query.lcd.js +226 -0
- package/main/codegen/cosmos/nft/v1beta1/query.rpc.Query.js +125 -0
- package/main/codegen/cosmos/nft/v1beta1/tx.amino.js +15 -0
- package/main/codegen/cosmos/nft/v1beta1/tx.js +185 -0
- package/main/codegen/cosmos/nft/v1beta1/tx.registry.js +47 -0
- package/main/codegen/cosmos/nft/v1beta1/tx.rpc.msg.js +33 -0
- package/main/codegen/cosmos/orm/v1/orm.js +400 -0
- package/main/codegen/cosmos/orm/v1alpha1/schema.js +278 -0
- package/main/codegen/cosmos/params/v1beta1/params.js +241 -0
- package/main/codegen/cosmos/params/v1beta1/query.js +473 -0
- package/main/codegen/cosmos/params/v1beta1/query.lcd.js +87 -0
- package/main/codegen/cosmos/params/v1beta1/query.rpc.Query.js +58 -0
- package/main/codegen/cosmos/rpc.query.js +198 -97
- package/main/codegen/cosmos/rpc.tx.js +178 -96
- package/main/codegen/cosmos/slashing/v1beta1/genesis.js +445 -0
- package/main/codegen/cosmos/slashing/v1beta1/query.js +529 -0
- package/main/codegen/cosmos/slashing/v1beta1/query.lcd.js +115 -0
- package/main/codegen/cosmos/slashing/v1beta1/query.rpc.Query.js +74 -0
- package/main/codegen/cosmos/slashing/v1beta1/slashing.js +283 -0
- package/main/codegen/cosmos/slashing/v1beta1/tx.amino.js +15 -0
- package/main/codegen/cosmos/slashing/v1beta1/tx.js +149 -0
- package/main/codegen/cosmos/slashing/v1beta1/tx.registry.js +47 -0
- package/main/codegen/cosmos/slashing/v1beta1/tx.rpc.msg.js +33 -0
- package/main/codegen/cosmos/staking/v1beta1/authz.js +120 -26
- package/main/codegen/cosmos/staking/v1beta1/genesis.js +153 -13
- package/main/codegen/cosmos/staking/v1beta1/query.js +1467 -72
- package/main/codegen/cosmos/staking/v1beta1/query.lcd.js +205 -229
- package/main/codegen/cosmos/staking/v1beta1/query.rpc.Query.js +16 -18
- package/main/codegen/cosmos/staking/v1beta1/staking.js +1257 -98
- package/main/codegen/cosmos/staking/v1beta1/tx.amino.js +11 -189
- package/main/codegen/cosmos/staking/v1beta1/tx.js +513 -35
- package/main/codegen/cosmos/staking/v1beta1/tx.rpc.msg.js +7 -9
- package/main/codegen/cosmos/tx/signing/v1beta1/signing.js +273 -43
- package/main/codegen/cosmos/tx/v1beta1/service.js +603 -54
- package/main/codegen/cosmos/tx/v1beta1/service.lcd.js +52 -57
- package/main/codegen/cosmos/tx/v1beta1/service.rpc.Service.js +7 -9
- package/main/codegen/cosmos/tx/v1beta1/tx.js +856 -53
- package/main/codegen/cosmos/upgrade/v1beta1/query.js +523 -31
- package/main/codegen/cosmos/upgrade/v1beta1/query.lcd.js +69 -77
- package/main/codegen/cosmos/upgrade/v1beta1/query.rpc.Query.js +7 -9
- package/main/codegen/cosmos/upgrade/v1beta1/tx.amino.js +5 -47
- package/main/codegen/cosmos/upgrade/v1beta1/tx.js +214 -13
- package/main/codegen/cosmos/upgrade/v1beta1/tx.rpc.msg.js +4 -6
- package/main/codegen/cosmos/upgrade/v1beta1/upgrade.js +248 -20
- package/main/codegen/cosmos/vesting/v1beta1/tx.amino.js +25 -0
- package/main/codegen/cosmos/vesting/v1beta1/tx.js +636 -0
- package/main/codegen/cosmos/vesting/v1beta1/tx.registry.js +83 -0
- package/main/codegen/cosmos/vesting/v1beta1/tx.rpc.msg.js +53 -0
- package/main/codegen/cosmos/vesting/v1beta1/vesting.js +718 -0
- package/main/codegen/cosmos_proto/bundle.js +6 -6
- package/main/codegen/cosmos_proto/cosmos.js +129 -21
- package/main/codegen/cosmwasm/bundle.js +21 -21
- package/main/codegen/cosmwasm/client.js +21 -23
- package/main/codegen/cosmwasm/lcd.js +272 -145
- package/main/codegen/cosmwasm/rpc.query.js +211 -110
- package/main/codegen/cosmwasm/rpc.tx.js +193 -111
- package/main/codegen/cosmwasm/wasm/v1/authz.js +534 -34
- package/main/codegen/cosmwasm/wasm/v1/genesis.js +320 -24
- package/main/codegen/cosmwasm/wasm/v1/ibc.js +103 -14
- package/main/codegen/cosmwasm/wasm/v1/proposal.js +841 -45
- package/main/codegen/cosmwasm/wasm/v1/query.js +1232 -64
- package/main/codegen/cosmwasm/wasm/v1/query.lcd.js +153 -175
- package/main/codegen/cosmwasm/wasm/v1/query.rpc.Query.js +13 -15
- package/main/codegen/cosmwasm/wasm/v1/tx.amino.js +15 -217
- package/main/codegen/cosmwasm/wasm/v1/tx.js +742 -49
- package/main/codegen/cosmwasm/wasm/v1/tx.rpc.msg.js +9 -11
- package/main/codegen/cosmwasm/wasm/v1/types.js +447 -61
- package/main/codegen/gaia/bundle.js +12 -12
- package/main/codegen/gaia/globalfee/v1beta1/genesis.js +82 -10
- package/main/codegen/gaia/globalfee/v1beta1/query.js +95 -9
- package/main/codegen/gaia/globalfee/v1beta1/query.lcd.js +11 -13
- package/main/codegen/gaia/globalfee/v1beta1/query.rpc.Query.js +3 -5
- package/main/codegen/gaia/lcd.js +272 -145
- package/main/codegen/gaia/rpc.query.js +211 -110
- package/main/codegen/gogoproto/bundle.js +6 -6
- package/main/codegen/google/api/annotations.js +5 -0
- package/main/codegen/google/api/http.js +1216 -0
- package/main/codegen/google/bundle.js +13 -10
- package/main/codegen/google/protobuf/any.js +278 -6
- package/main/codegen/google/protobuf/descriptor.js +1691 -171
- package/main/codegen/google/protobuf/duration.js +215 -10
- package/main/codegen/google/protobuf/empty.js +63 -6
- package/main/codegen/google/protobuf/timestamp.js +283 -9
- package/main/codegen/helpers.js +19 -53
- package/main/codegen/ibc/applications/transfer/v1/genesis.js +60 -8
- package/main/codegen/ibc/applications/transfer/v1/query.js +297 -17
- package/main/codegen/ibc/applications/transfer/v1/query.lcd.js +40 -46
- package/main/codegen/ibc/applications/transfer/v1/query.rpc.Query.js +5 -7
- package/main/codegen/ibc/applications/transfer/v1/transfer.js +117 -8
- package/main/codegen/ibc/applications/transfer/v1/tx.amino.js +3 -50
- package/main/codegen/ibc/applications/transfer/v1/tx.js +122 -14
- package/main/codegen/ibc/applications/transfer/v1/tx.rpc.msg.js +3 -5
- package/main/codegen/ibc/applications/transfer/v2/packet.js +67 -6
- package/main/codegen/ibc/bundle.js +71 -60
- package/main/codegen/ibc/client.js +21 -23
- package/main/codegen/ibc/core/channel/v1/channel.js +438 -57
- package/main/codegen/ibc/core/channel/v1/genesis.js +180 -16
- package/main/codegen/ibc/core/channel/v1/query.js +1604 -97
- package/main/codegen/ibc/core/channel/v1/query.lcd.js +184 -202
- package/main/codegen/ibc/core/channel/v1/query.rpc.Query.js +15 -17
- package/main/codegen/ibc/core/channel/v1/tx.amino.js +21 -470
- package/main/codegen/ibc/core/channel/v1/tx.js +1053 -64
- package/main/codegen/ibc/core/channel/v1/tx.rpc.msg.js +12 -14
- package/main/codegen/ibc/core/client/v1/client.js +438 -28
- package/main/codegen/ibc/core/client/v1/genesis.js +204 -15
- package/main/codegen/ibc/core/client/v1/query.js +874 -45
- package/main/codegen/ibc/core/client/v1/query.lcd.js +110 -124
- package/main/codegen/ibc/core/client/v1/query.rpc.Query.js +10 -12
- package/main/codegen/ibc/core/client/v1/tx.amino.js +9 -128
- package/main/codegen/ibc/core/client/v1/tx.js +402 -20
- package/main/codegen/ibc/core/client/v1/tx.rpc.msg.js +6 -8
- package/main/codegen/ibc/core/commitment/v1/commitment.js +236 -13
- package/main/codegen/ibc/core/connection/v1/connection.js +434 -52
- package/main/codegen/ibc/core/connection/v1/genesis.js +73 -12
- package/main/codegen/ibc/core/connection/v1/query.js +592 -36
- package/main/codegen/ibc/core/connection/v1/query.lcd.js +68 -75
- package/main/codegen/ibc/core/connection/v1/query.rpc.Query.js +7 -9
- package/main/codegen/ibc/core/connection/v1/tx.amino.js +9 -248
- package/main/codegen/ibc/core/connection/v1/tx.js +504 -34
- package/main/codegen/ibc/core/connection/v1/tx.rpc.msg.js +6 -8
- package/main/codegen/ibc/core/port/v1/query.js +224 -0
- package/main/codegen/ibc/core/port/v1/query.rpc.Query.js +44 -0
- package/main/codegen/ibc/core/types/v1/genesis.js +111 -0
- package/main/codegen/ibc/lcd.js +320 -193
- package/main/codegen/ibc/lightclients/localhost/v1/localhost.js +57 -7
- package/main/codegen/ibc/lightclients/solomachine/v1/solomachine.js +933 -91
- package/main/codegen/ibc/lightclients/solomachine/v2/solomachine.js +930 -88
- package/main/codegen/ibc/lightclients/tendermint/v1/tendermint.js +378 -30
- package/main/codegen/ibc/rpc.query.js +257 -146
- package/main/codegen/ibc/rpc.tx.js +235 -153
- package/main/codegen/ics23/bundle.js +6 -6
- package/main/codegen/index.js +74 -41
- package/main/codegen/juno/bundle.js +77 -24
- package/main/codegen/juno/client.js +33 -25
- package/main/codegen/juno/clock/v1/genesis.js +183 -0
- package/main/codegen/juno/clock/v1/query.js +288 -0
- package/main/codegen/juno/clock/v1/query.lcd.js +80 -0
- package/main/codegen/juno/clock/v1/query.rpc.Query.js +59 -0
- package/main/codegen/juno/clock/v1/tx.amino.js +15 -0
- package/main/codegen/juno/clock/v1/tx.js +177 -0
- package/main/codegen/juno/clock/v1/tx.registry.js +47 -0
- package/main/codegen/juno/clock/v1/tx.rpc.msg.js +33 -0
- package/main/codegen/juno/cwhooks/v1/genesis.js +212 -0
- package/main/codegen/juno/cwhooks/v1/query.js +436 -0
- package/main/codegen/juno/cwhooks/v1/query.lcd.js +108 -0
- package/main/codegen/juno/cwhooks/v1/query.rpc.Query.js +73 -0
- package/main/codegen/juno/cwhooks/v1/tx.amino.js +35 -0
- package/main/codegen/juno/cwhooks/v1/tx.js +745 -0
- package/main/codegen/juno/cwhooks/v1/tx.registry.js +119 -0
- package/main/codegen/juno/cwhooks/v1/tx.rpc.msg.js +73 -0
- package/main/codegen/juno/drip/v1/genesis.js +183 -0
- package/main/codegen/juno/drip/v1/query.js +137 -0
- package/main/codegen/juno/drip/v1/query.lcd.js +52 -0
- package/main/codegen/juno/drip/v1/query.rpc.Query.js +45 -0
- package/main/codegen/juno/drip/v1/tx.amino.js +20 -0
- package/main/codegen/juno/drip/v1/tx.js +326 -0
- package/main/codegen/juno/drip/v1/tx.registry.js +65 -0
- package/main/codegen/juno/drip/v1/tx.rpc.msg.js +43 -0
- package/main/codegen/juno/feepay/v1/feepay.js +217 -0
- package/main/codegen/juno/feepay/v1/genesis.js +185 -0
- package/main/codegen/juno/feepay/v1/query.js +769 -0
- package/main/codegen/juno/feepay/v1/query.lcd.js +165 -0
- package/main/codegen/juno/feepay/v1/query.rpc.Query.js +100 -0
- package/main/codegen/juno/feepay/v1/tx.amino.js +35 -0
- package/main/codegen/juno/feepay/v1/tx.js +792 -0
- package/main/codegen/juno/feepay/v1/tx.registry.js +119 -0
- package/main/codegen/juno/feepay/v1/tx.rpc.msg.js +73 -0
- package/main/codegen/juno/feeshare/v1/feeshare.js +54 -6
- package/main/codegen/juno/feeshare/v1/genesis.js +104 -12
- package/main/codegen/juno/feeshare/v1/query.js +446 -27
- package/main/codegen/juno/feeshare/v1/query.lcd.js +78 -86
- package/main/codegen/juno/feeshare/v1/query.rpc.Query.js +7 -9
- package/main/codegen/juno/feeshare/v1/tx.amino.js +12 -56
- package/main/codegen/juno/feeshare/v1/tx.js +406 -18
- package/main/codegen/juno/feeshare/v1/tx.registry.js +19 -1
- package/main/codegen/juno/feeshare/v1/tx.rpc.msg.js +15 -7
- package/main/codegen/juno/lcd.js +339 -156
- package/main/codegen/juno/mint/genesis.js +43 -8
- package/main/codegen/juno/mint/mint.js +117 -24
- package/main/codegen/juno/mint/query.js +384 -19
- package/main/codegen/juno/mint/query.lcd.js +61 -39
- package/main/codegen/juno/mint/query.rpc.Query.js +19 -7
- package/main/codegen/juno/mint/tx.amino.js +15 -0
- package/main/codegen/juno/mint/tx.js +177 -0
- package/main/codegen/juno/mint/tx.registry.js +47 -0
- package/main/codegen/juno/mint/tx.rpc.msg.js +33 -0
- package/main/codegen/juno/rpc.query.js +258 -117
- package/main/codegen/juno/rpc.tx.js +250 -111
- package/main/codegen/osmosis/bundle.js +19 -19
- package/main/codegen/osmosis/client.js +21 -23
- package/main/codegen/osmosis/lcd.js +272 -145
- package/main/codegen/osmosis/rpc.query.js +211 -110
- package/main/codegen/osmosis/rpc.tx.js +193 -111
- package/main/codegen/osmosis/tokenfactory/v1beta1/authorityMetadata.js +55 -6
- package/main/codegen/osmosis/tokenfactory/v1beta1/genesis.js +115 -11
- package/main/codegen/osmosis/tokenfactory/v1beta1/params.js +64 -8
- package/main/codegen/osmosis/tokenfactory/v1beta1/query.js +295 -19
- package/main/codegen/osmosis/tokenfactory/v1beta1/query.lcd.js +37 -41
- package/main/codegen/osmosis/tokenfactory/v1beta1/query.rpc.Query.js +5 -7
- package/main/codegen/osmosis/tokenfactory/v1beta1/tx.amino.js +18 -165
- package/main/codegen/osmosis/tokenfactory/v1beta1/tx.js +785 -34
- package/main/codegen/osmosis/tokenfactory/v1beta1/tx.registry.js +19 -1
- package/main/codegen/osmosis/tokenfactory/v1beta1/tx.rpc.msg.js +18 -10
- package/main/codegen/router/bundle.js +12 -12
- package/main/codegen/router/lcd.js +269 -142
- package/main/codegen/router/rpc.query.js +208 -107
- package/main/codegen/router/v1/genesis.js +221 -24
- package/main/codegen/router/v1/query.js +69 -8
- package/main/codegen/router/v1/query.lcd.js +11 -13
- package/main/codegen/router/v1/query.rpc.Query.js +3 -5
- package/main/codegen/tendermint/abci/types.js +2058 -229
- package/main/codegen/tendermint/bundle.js +21 -21
- package/main/codegen/tendermint/crypto/keys.js +42 -6
- package/main/codegen/tendermint/crypto/proof.js +228 -21
- package/main/codegen/tendermint/libs/bits/types.js +47 -12
- package/main/codegen/tendermint/p2p/types.js +230 -26
- package/main/codegen/tendermint/types/block.js +46 -9
- package/main/codegen/tendermint/types/evidence.js +198 -27
- package/main/codegen/tendermint/types/params.js +316 -47
- package/main/codegen/tendermint/types/types.js +680 -87
- package/main/codegen/tendermint/types/validator.js +136 -24
- package/main/codegen/tendermint/version/types.js +114 -18
- package/main/codegen/utf8.js +129 -0
- package/main/codegen/varint.js +440 -0
- package/module/codegen/amino/amino.js +1 -0
- package/module/codegen/amino/bundle.js +5 -0
- package/module/codegen/binary.js +374 -0
- package/module/codegen/confio/proofs.js +806 -67
- package/module/codegen/contracts.js +2 -2
- package/module/codegen/cosmos/app/v1alpha1/config.js +193 -0
- package/module/codegen/cosmos/app/v1alpha1/module.js +279 -0
- package/module/codegen/cosmos/app/v1alpha1/query.js +139 -0
- package/module/codegen/cosmos/app/v1alpha1/query.rpc.Query.js +27 -0
- package/module/codegen/cosmos/auth/v1beta1/auth.js +352 -0
- package/module/codegen/cosmos/auth/v1beta1/genesis.js +94 -0
- package/module/codegen/cosmos/auth/v1beta1/query.js +1066 -0
- package/module/codegen/cosmos/auth/v1beta1/query.lcd.js +62 -0
- package/module/codegen/cosmos/auth/v1beta1/query.rpc.Query.js +83 -0
- package/module/codegen/cosmos/authz/v1beta1/authz.js +210 -9
- package/module/codegen/cosmos/authz/v1beta1/event.js +101 -5
- package/module/codegen/cosmos/authz/v1beta1/genesis.js +46 -3
- package/module/codegen/cosmos/authz/v1beta1/query.js +298 -17
- package/module/codegen/cosmos/authz/v1beta1/query.lcd.js +0 -3
- package/module/codegen/cosmos/authz/v1beta1/query.rpc.Query.js +4 -4
- package/module/codegen/cosmos/authz/v1beta1/tx.amino.js +18 -0
- package/module/codegen/cosmos/authz/v1beta1/tx.js +303 -14
- package/module/codegen/cosmos/authz/v1beta1/tx.registry.js +69 -0
- package/module/codegen/cosmos/authz/v1beta1/tx.rpc.msg.js +4 -4
- package/module/codegen/cosmos/bank/v1beta1/authz.js +61 -3
- package/module/codegen/cosmos/bank/v1beta1/bank.js +400 -17
- package/module/codegen/cosmos/bank/v1beta1/genesis.js +121 -6
- package/module/codegen/cosmos/bank/v1beta1/query.js +943 -45
- package/module/codegen/cosmos/bank/v1beta1/query.lcd.js +0 -9
- package/module/codegen/cosmos/bank/v1beta1/query.rpc.Query.js +10 -10
- package/module/codegen/cosmos/bank/v1beta1/tx.amino.js +5 -70
- package/module/codegen/cosmos/bank/v1beta1/tx.js +181 -9
- package/module/codegen/cosmos/bank/v1beta1/tx.rpc.msg.js +3 -3
- package/module/codegen/cosmos/base/abci/v1beta1/abci.js +636 -57
- package/module/codegen/cosmos/base/kv/v1beta1/kv.js +169 -0
- package/module/codegen/cosmos/base/query/v1beta1/pagination.js +153 -15
- package/module/codegen/cosmos/base/reflection/v1beta1/reflection.js +315 -0
- package/module/codegen/cosmos/base/reflection/v2alpha1/reflection.js +1197 -53
- package/module/codegen/cosmos/base/snapshots/v1beta1/snapshot.js +859 -0
- package/module/codegen/cosmos/base/store/v1beta1/commit_info.js +296 -0
- package/module/codegen/cosmos/base/store/v1beta1/listening.js +132 -0
- package/module/codegen/cosmos/base/tendermint/v1beta1/query.js +1347 -0
- package/module/codegen/cosmos/base/tendermint/v1beta1/query.lcd.js +60 -0
- package/module/codegen/cosmos/base/tendermint/v1beta1/query.rpc.Service.js +74 -0
- package/module/codegen/cosmos/base/v1beta1/coin.js +207 -9
- package/module/codegen/cosmos/bundle.js +272 -103
- package/module/codegen/cosmos/capability/v1beta1/capability.js +270 -0
- package/module/codegen/cosmos/capability/v1beta1/genesis.js +180 -0
- package/module/codegen/cosmos/client.js +21 -5
- package/module/codegen/cosmos/crisis/v1beta1/genesis.js +77 -0
- package/module/codegen/cosmos/crisis/v1beta1/tx.amino.js +8 -0
- package/module/codegen/cosmos/crisis/v1beta1/tx.js +163 -0
- package/module/codegen/cosmos/crisis/v1beta1/tx.registry.js +33 -0
- package/module/codegen/cosmos/crisis/v1beta1/tx.rpc.msg.js +17 -0
- package/module/codegen/cosmos/crypto/ed25519/keys.js +113 -5
- package/module/codegen/cosmos/crypto/hd/v1/hd.js +59 -3
- package/module/codegen/cosmos/crypto/keyring/v1/record.js +236 -11
- package/module/codegen/cosmos/crypto/multisig/keys.js +62 -3
- package/module/codegen/cosmos/crypto/multisig/v1beta1/multisig.js +120 -5
- package/module/codegen/cosmos/crypto/secp256k1/keys.js +104 -5
- package/module/codegen/cosmos/crypto/secp256r1/keys.js +86 -5
- package/module/codegen/cosmos/distribution/v1beta1/distribution.js +753 -52
- package/module/codegen/cosmos/distribution/v1beta1/genesis.js +475 -34
- package/module/codegen/cosmos/distribution/v1beta1/query.js +943 -49
- package/module/codegen/cosmos/distribution/v1beta1/query.lcd.js +0 -9
- package/module/codegen/cosmos/distribution/v1beta1/query.rpc.Query.js +10 -10
- package/module/codegen/cosmos/distribution/v1beta1/tx.amino.js +9 -74
- package/module/codegen/cosmos/distribution/v1beta1/tx.js +390 -21
- package/module/codegen/cosmos/distribution/v1beta1/tx.rpc.msg.js +5 -5
- package/module/codegen/cosmos/evidence/v1beta1/evidence.js +124 -0
- package/module/codegen/cosmos/evidence/v1beta1/genesis.js +81 -0
- package/module/codegen/cosmos/evidence/v1beta1/query.js +339 -0
- package/module/codegen/cosmos/evidence/v1beta1/query.lcd.js +30 -0
- package/module/codegen/cosmos/evidence/v1beta1/query.rpc.Query.js +38 -0
- package/module/codegen/cosmos/evidence/v1beta1/tx.amino.js +8 -0
- package/module/codegen/cosmos/evidence/v1beta1/tx.js +176 -0
- package/module/codegen/cosmos/evidence/v1beta1/tx.registry.js +33 -0
- package/module/codegen/cosmos/evidence/v1beta1/tx.rpc.msg.js +17 -0
- package/module/codegen/cosmos/feegrant/v1beta1/feegrant.js +435 -0
- package/module/codegen/cosmos/feegrant/v1beta1/genesis.js +81 -0
- package/module/codegen/cosmos/feegrant/v1beta1/query.js +524 -0
- package/module/codegen/cosmos/feegrant/v1beta1/query.lcd.js +41 -0
- package/module/codegen/cosmos/feegrant/v1beta1/query.rpc.Query.js +45 -0
- package/module/codegen/cosmos/feegrant/v1beta1/tx.amino.js +13 -0
- package/module/codegen/cosmos/feegrant/v1beta1/tx.js +323 -0
- package/module/codegen/cosmos/feegrant/v1beta1/tx.registry.js +51 -0
- package/module/codegen/cosmos/feegrant/v1beta1/tx.rpc.msg.js +23 -0
- package/module/codegen/cosmos/genutil/v1beta1/genesis.js +81 -0
- package/module/codegen/cosmos/gov/v1/genesis.js +75 -7
- package/module/codegen/cosmos/gov/v1/gov.js +471 -56
- package/module/codegen/cosmos/gov/v1/query.js +756 -53
- package/module/codegen/cosmos/gov/v1/query.lcd.js +0 -8
- package/module/codegen/cosmos/gov/v1/query.rpc.Query.js +9 -9
- package/module/codegen/cosmos/gov/v1/tx.amino.js +11 -150
- package/module/codegen/cosmos/gov/v1/tx.js +490 -35
- package/module/codegen/cosmos/gov/v1/tx.rpc.msg.js +6 -6
- package/module/codegen/cosmos/gov/v1beta1/genesis.js +78 -10
- package/module/codegen/cosmos/gov/v1beta1/gov.js +538 -67
- package/module/codegen/cosmos/gov/v1beta1/query.js +763 -60
- package/module/codegen/cosmos/gov/v1beta1/query.lcd.js +0 -8
- package/module/codegen/cosmos/gov/v1beta1/query.rpc.Query.js +9 -9
- package/module/codegen/cosmos/gov/v1beta1/tx.amino.js +9 -114
- package/module/codegen/cosmos/gov/v1beta1/tx.js +407 -31
- package/module/codegen/cosmos/gov/v1beta1/tx.rpc.msg.js +5 -5
- package/module/codegen/cosmos/group/v1/events.js +705 -0
- package/module/codegen/cosmos/group/v1/genesis.js +173 -0
- package/module/codegen/cosmos/group/v1/query.js +2196 -0
- package/module/codegen/cosmos/group/v1/query.lcd.js +136 -0
- package/module/codegen/cosmos/group/v1/query.rpc.Query.js +135 -0
- package/module/codegen/cosmos/group/v1/tx.amino.js +73 -0
- package/module/codegen/cosmos/group/v1/tx.js +2445 -0
- package/module/codegen/cosmos/group/v1/tx.registry.js +267 -0
- package/module/codegen/cosmos/group/v1/tx.rpc.msg.js +95 -0
- package/module/codegen/cosmos/group/v1/types.js +1511 -0
- package/module/codegen/cosmos/lcd.js +48 -1
- package/module/codegen/cosmos/mint/v1beta1/genesis.js +89 -0
- package/module/codegen/cosmos/mint/v1beta1/mint.js +226 -0
- package/module/codegen/cosmos/mint/v1beta1/query.js +443 -0
- package/module/codegen/cosmos/mint/v1beta1/query.lcd.js +27 -0
- package/module/codegen/cosmos/mint/v1beta1/query.rpc.Query.js +45 -0
- package/module/codegen/cosmos/msg/v1/msg.js +1 -0
- package/module/codegen/cosmos/nft/v1beta1/event.js +313 -0
- package/module/codegen/cosmos/nft/v1beta1/genesis.js +186 -0
- package/module/codegen/cosmos/nft/v1beta1/nft.js +274 -0
- package/module/codegen/cosmos/nft/v1beta1/query.js +1152 -0
- package/module/codegen/cosmos/nft/v1beta1/query.lcd.js +73 -0
- package/module/codegen/cosmos/nft/v1beta1/query.rpc.Query.js +83 -0
- package/module/codegen/cosmos/nft/v1beta1/tx.amino.js +8 -0
- package/module/codegen/cosmos/nft/v1beta1/tx.js +175 -0
- package/module/codegen/cosmos/nft/v1beta1/tx.registry.js +33 -0
- package/module/codegen/cosmos/nft/v1beta1/tx.rpc.msg.js +17 -0
- package/module/codegen/cosmos/orm/v1/orm.js +368 -0
- package/module/codegen/cosmos/orm/v1alpha1/schema.js +245 -0
- package/module/codegen/cosmos/params/v1beta1/params.js +213 -0
- package/module/codegen/cosmos/params/v1beta1/query.js +424 -0
- package/module/codegen/cosmos/params/v1beta1/query.lcd.js +31 -0
- package/module/codegen/cosmos/params/v1beta1/query.rpc.Query.js +36 -0
- package/module/codegen/cosmos/rpc.query.js +32 -0
- package/module/codegen/cosmos/rpc.tx.js +21 -0
- package/module/codegen/cosmos/slashing/v1beta1/genesis.js +383 -0
- package/module/codegen/cosmos/slashing/v1beta1/query.js +493 -0
- package/module/codegen/cosmos/slashing/v1beta1/query.lcd.js +36 -0
- package/module/codegen/cosmos/slashing/v1beta1/query.rpc.Query.js +47 -0
- package/module/codegen/cosmos/slashing/v1beta1/slashing.js +273 -0
- package/module/codegen/cosmos/slashing/v1beta1/tx.amino.js +8 -0
- package/module/codegen/cosmos/slashing/v1beta1/tx.js +139 -0
- package/module/codegen/cosmos/slashing/v1beta1/tx.registry.js +33 -0
- package/module/codegen/cosmos/slashing/v1beta1/tx.rpc.msg.js +17 -0
- package/module/codegen/cosmos/staking/v1beta1/authz.js +111 -22
- package/module/codegen/cosmos/staking/v1beta1/genesis.js +131 -10
- package/module/codegen/cosmos/staking/v1beta1/query.js +1436 -68
- package/module/codegen/cosmos/staking/v1beta1/query.lcd.js +0 -14
- package/module/codegen/cosmos/staking/v1beta1/query.rpc.Query.js +15 -15
- package/module/codegen/cosmos/staking/v1beta1/staking.js +1225 -95
- package/module/codegen/cosmos/staking/v1beta1/tx.amino.js +11 -199
- package/module/codegen/cosmos/staking/v1beta1/tx.js +511 -32
- package/module/codegen/cosmos/staking/v1beta1/tx.rpc.msg.js +6 -6
- package/module/codegen/cosmos/tx/signing/v1beta1/signing.js +261 -40
- package/module/codegen/cosmos/tx/v1beta1/service.js +581 -52
- package/module/codegen/cosmos/tx/v1beta1/service.lcd.js +0 -3
- package/module/codegen/cosmos/tx/v1beta1/service.rpc.Service.js +6 -6
- package/module/codegen/cosmos/tx/v1beta1/tx.js +818 -50
- package/module/codegen/cosmos/upgrade/v1beta1/query.js +514 -28
- package/module/codegen/cosmos/upgrade/v1beta1/query.lcd.js +0 -5
- package/module/codegen/cosmos/upgrade/v1beta1/query.rpc.Query.js +6 -6
- package/module/codegen/cosmos/upgrade/v1beta1/tx.amino.js +5 -51
- package/module/codegen/cosmos/upgrade/v1beta1/tx.js +214 -10
- package/module/codegen/cosmos/upgrade/v1beta1/tx.rpc.msg.js +3 -3
- package/module/codegen/cosmos/upgrade/v1beta1/upgrade.js +247 -18
- package/module/codegen/cosmos/vesting/v1beta1/tx.amino.js +18 -0
- package/module/codegen/cosmos/vesting/v1beta1/tx.js +570 -0
- package/module/codegen/cosmos/vesting/v1beta1/tx.registry.js +69 -0
- package/module/codegen/cosmos/vesting/v1beta1/tx.rpc.msg.js +29 -0
- package/module/codegen/cosmos/vesting/v1beta1/vesting.js +622 -0
- package/module/codegen/cosmos_proto/bundle.js +4 -4
- package/module/codegen/cosmos_proto/cosmos.js +121 -15
- package/module/codegen/cosmwasm/bundle.js +19 -19
- package/module/codegen/cosmwasm/client.js +3 -3
- package/module/codegen/cosmwasm/lcd.js +48 -1
- package/module/codegen/cosmwasm/rpc.query.js +32 -0
- package/module/codegen/cosmwasm/rpc.tx.js +21 -0
- package/module/codegen/cosmwasm/wasm/v1/authz.js +504 -30
- package/module/codegen/cosmwasm/wasm/v1/genesis.js +294 -21
- package/module/codegen/cosmwasm/wasm/v1/ibc.js +102 -12
- package/module/codegen/cosmwasm/wasm/v1/proposal.js +815 -42
- package/module/codegen/cosmwasm/wasm/v1/query.js +1203 -61
- package/module/codegen/cosmwasm/wasm/v1/query.lcd.js +0 -11
- package/module/codegen/cosmwasm/wasm/v1/query.rpc.Query.js +12 -12
- package/module/codegen/cosmwasm/wasm/v1/tx.amino.js +15 -219
- package/module/codegen/cosmwasm/wasm/v1/tx.js +728 -46
- package/module/codegen/cosmwasm/wasm/v1/tx.rpc.msg.js +8 -8
- package/module/codegen/cosmwasm/wasm/v1/types.js +437 -59
- package/module/codegen/gaia/bundle.js +10 -10
- package/module/codegen/gaia/globalfee/v1beta1/genesis.js +77 -6
- package/module/codegen/gaia/globalfee/v1beta1/query.js +90 -5
- package/module/codegen/gaia/globalfee/v1beta1/query.lcd.js +0 -1
- package/module/codegen/gaia/globalfee/v1beta1/query.rpc.Query.js +2 -2
- package/module/codegen/gaia/lcd.js +48 -1
- package/module/codegen/gaia/rpc.query.js +32 -0
- package/module/codegen/gogoproto/bundle.js +4 -4
- package/module/codegen/google/api/annotations.js +1 -0
- package/module/codegen/google/api/http.js +1171 -0
- package/module/codegen/google/bundle.js +11 -8
- package/module/codegen/google/protobuf/any.js +278 -3
- package/module/codegen/google/protobuf/descriptor.js +1534 -165
- package/module/codegen/google/protobuf/duration.js +154 -7
- package/module/codegen/google/protobuf/empty.js +63 -3
- package/module/codegen/google/protobuf/timestamp.js +199 -7
- package/module/codegen/helpers.js +19 -46
- package/module/codegen/ibc/applications/transfer/v1/genesis.js +55 -4
- package/module/codegen/ibc/applications/transfer/v1/query.js +292 -13
- package/module/codegen/ibc/applications/transfer/v1/query.lcd.js +0 -3
- package/module/codegen/ibc/applications/transfer/v1/query.rpc.Query.js +4 -4
- package/module/codegen/ibc/applications/transfer/v1/transfer.js +117 -5
- package/module/codegen/ibc/applications/transfer/v1/tx.amino.js +3 -52
- package/module/codegen/ibc/applications/transfer/v1/tx.js +116 -11
- package/module/codegen/ibc/applications/transfer/v1/tx.rpc.msg.js +2 -2
- package/module/codegen/ibc/applications/transfer/v2/packet.js +67 -3
- package/module/codegen/ibc/bundle.js +69 -58
- package/module/codegen/ibc/client.js +3 -3
- package/module/codegen/ibc/core/channel/v1/channel.js +424 -55
- package/module/codegen/ibc/core/channel/v1/genesis.js +149 -12
- package/module/codegen/ibc/core/channel/v1/query.js +1565 -93
- package/module/codegen/ibc/core/channel/v1/query.lcd.js +0 -13
- package/module/codegen/ibc/core/channel/v1/query.rpc.Query.js +14 -14
- package/module/codegen/ibc/core/channel/v1/tx.amino.js +21 -490
- package/module/codegen/ibc/core/channel/v1/tx.js +1049 -62
- package/module/codegen/ibc/core/channel/v1/tx.rpc.msg.js +11 -11
- package/module/codegen/ibc/core/client/v1/client.js +424 -24
- package/module/codegen/ibc/core/client/v1/genesis.js +186 -12
- package/module/codegen/ibc/core/client/v1/query.js +861 -42
- package/module/codegen/ibc/core/client/v1/query.lcd.js +0 -8
- package/module/codegen/ibc/core/client/v1/query.rpc.Query.js +9 -9
- package/module/codegen/ibc/core/client/v1/tx.amino.js +9 -136
- package/module/codegen/ibc/core/client/v1/tx.js +402 -17
- package/module/codegen/ibc/core/client/v1/tx.rpc.msg.js +5 -5
- package/module/codegen/ibc/core/commitment/v1/commitment.js +227 -9
- package/module/codegen/ibc/core/connection/v1/connection.js +409 -48
- package/module/codegen/ibc/core/connection/v1/genesis.js +62 -8
- package/module/codegen/ibc/core/connection/v1/query.js +579 -33
- package/module/codegen/ibc/core/connection/v1/query.lcd.js +0 -5
- package/module/codegen/ibc/core/connection/v1/query.rpc.Query.js +6 -6
- package/module/codegen/ibc/core/connection/v1/tx.amino.js +9 -252
- package/module/codegen/ibc/core/connection/v1/tx.js +495 -31
- package/module/codegen/ibc/core/connection/v1/tx.rpc.msg.js +5 -5
- package/module/codegen/ibc/core/port/v1/query.js +214 -0
- package/module/codegen/ibc/core/port/v1/query.rpc.Query.js +27 -0
- package/module/codegen/ibc/core/types/v1/genesis.js +103 -0
- package/module/codegen/ibc/lcd.js +48 -1
- package/module/codegen/ibc/lightclients/localhost/v1/localhost.js +57 -4
- package/module/codegen/ibc/lightclients/solomachine/v1/solomachine.js +930 -89
- package/module/codegen/ibc/lightclients/solomachine/v2/solomachine.js +927 -86
- package/module/codegen/ibc/lightclients/tendermint/v1/tendermint.js +365 -27
- package/module/codegen/ibc/rpc.query.js +35 -0
- package/module/codegen/ibc/rpc.tx.js +21 -0
- package/module/codegen/ics23/bundle.js +4 -4
- package/module/codegen/index.js +5 -2
- package/module/codegen/juno/bundle.js +75 -22
- package/module/codegen/juno/client.js +15 -5
- package/module/codegen/juno/clock/v1/genesis.js +155 -0
- package/module/codegen/juno/clock/v1/query.js +256 -0
- package/module/codegen/juno/clock/v1/query.lcd.js +21 -0
- package/module/codegen/juno/clock/v1/query.rpc.Query.js +36 -0
- package/module/codegen/juno/clock/v1/tx.amino.js +8 -0
- package/module/codegen/juno/clock/v1/tx.js +167 -0
- package/module/codegen/juno/clock/v1/tx.registry.js +33 -0
- package/module/codegen/juno/clock/v1/tx.rpc.msg.js +17 -0
- package/module/codegen/juno/cwhooks/v1/genesis.js +169 -0
- package/module/codegen/juno/cwhooks/v1/query.js +385 -0
- package/module/codegen/juno/cwhooks/v1/query.lcd.js +27 -0
- package/module/codegen/juno/cwhooks/v1/query.rpc.Query.js +45 -0
- package/module/codegen/juno/cwhooks/v1/tx.amino.js +28 -0
- package/module/codegen/juno/cwhooks/v1/tx.js +719 -0
- package/module/codegen/juno/cwhooks/v1/tx.registry.js +105 -0
- package/module/codegen/juno/cwhooks/v1/tx.rpc.msg.js +41 -0
- package/module/codegen/juno/drip/v1/genesis.js +155 -0
- package/module/codegen/juno/drip/v1/query.js +127 -0
- package/module/codegen/juno/drip/v1/query.lcd.js +15 -0
- package/module/codegen/juno/drip/v1/query.rpc.Query.js +27 -0
- package/module/codegen/juno/drip/v1/tx.amino.js +13 -0
- package/module/codegen/juno/drip/v1/tx.js +294 -0
- package/module/codegen/juno/drip/v1/tx.registry.js +51 -0
- package/module/codegen/juno/drip/v1/tx.rpc.msg.js +23 -0
- package/module/codegen/juno/feepay/v1/feepay.js +207 -0
- package/module/codegen/juno/feepay/v1/genesis.js +157 -0
- package/module/codegen/juno/feepay/v1/query.js +725 -0
- package/module/codegen/juno/feepay/v1/query.lcd.js +48 -0
- package/module/codegen/juno/feepay/v1/query.rpc.Query.js +65 -0
- package/module/codegen/juno/feepay/v1/tx.amino.js +28 -0
- package/module/codegen/juno/feepay/v1/tx.js +748 -0
- package/module/codegen/juno/feepay/v1/tx.registry.js +105 -0
- package/module/codegen/juno/feepay/v1/tx.rpc.msg.js +41 -0
- package/module/codegen/juno/feeshare/v1/feeshare.js +54 -3
- package/module/codegen/juno/feeshare/v1/genesis.js +95 -8
- package/module/codegen/juno/feeshare/v1/query.js +433 -23
- package/module/codegen/juno/feeshare/v1/query.lcd.js +0 -5
- package/module/codegen/juno/feeshare/v1/query.rpc.Query.js +6 -6
- package/module/codegen/juno/feeshare/v1/tx.amino.js +12 -62
- package/module/codegen/juno/feeshare/v1/tx.js +400 -13
- package/module/codegen/juno/feeshare/v1/tx.registry.js +20 -2
- package/module/codegen/juno/feeshare/v1/tx.rpc.msg.js +11 -5
- package/module/codegen/juno/lcd.js +68 -1
- package/module/codegen/juno/mint/genesis.js +43 -5
- package/module/codegen/juno/mint/mint.js +115 -21
- package/module/codegen/juno/mint/query.js +378 -14
- package/module/codegen/juno/mint/query.lcd.js +6 -3
- package/module/codegen/juno/mint/query.rpc.Query.js +14 -5
- package/module/codegen/juno/mint/tx.amino.js +8 -0
- package/module/codegen/juno/mint/tx.js +167 -0
- package/module/codegen/juno/mint/tx.registry.js +33 -0
- package/module/codegen/juno/mint/tx.rpc.msg.js +17 -0
- package/module/codegen/juno/rpc.query.js +44 -0
- package/module/codegen/juno/rpc.tx.js +35 -1
- package/module/codegen/osmosis/bundle.js +17 -17
- package/module/codegen/osmosis/client.js +3 -3
- package/module/codegen/osmosis/lcd.js +48 -1
- package/module/codegen/osmosis/rpc.query.js +32 -0
- package/module/codegen/osmosis/rpc.tx.js +21 -0
- package/module/codegen/osmosis/tokenfactory/v1beta1/authorityMetadata.js +55 -3
- package/module/codegen/osmosis/tokenfactory/v1beta1/genesis.js +110 -7
- package/module/codegen/osmosis/tokenfactory/v1beta1/params.js +59 -4
- package/module/codegen/osmosis/tokenfactory/v1beta1/query.js +290 -15
- package/module/codegen/osmosis/tokenfactory/v1beta1/query.lcd.js +0 -3
- package/module/codegen/osmosis/tokenfactory/v1beta1/query.rpc.Query.js +4 -4
- package/module/codegen/osmosis/tokenfactory/v1beta1/tx.amino.js +18 -173
- package/module/codegen/osmosis/tokenfactory/v1beta1/tx.js +780 -30
- package/module/codegen/osmosis/tokenfactory/v1beta1/tx.registry.js +20 -2
- package/module/codegen/osmosis/tokenfactory/v1beta1/tx.rpc.msg.js +14 -8
- package/module/codegen/router/bundle.js +10 -10
- package/module/codegen/router/lcd.js +48 -1
- package/module/codegen/router/rpc.query.js +32 -0
- package/module/codegen/router/v1/genesis.js +217 -22
- package/module/codegen/router/v1/query.js +69 -5
- package/module/codegen/router/v1/query.lcd.js +0 -1
- package/module/codegen/router/v1/query.rpc.Query.js +2 -2
- package/module/codegen/tendermint/abci/types.js +1996 -220
- package/module/codegen/tendermint/bundle.js +19 -19
- package/module/codegen/tendermint/crypto/keys.js +42 -3
- package/module/codegen/tendermint/crypto/proof.js +221 -18
- package/module/codegen/tendermint/libs/bits/types.js +42 -8
- package/module/codegen/tendermint/p2p/types.js +226 -23
- package/module/codegen/tendermint/types/block.js +46 -6
- package/module/codegen/tendermint/types/evidence.js +191 -24
- package/module/codegen/tendermint/types/params.js +306 -43
- package/module/codegen/tendermint/types/types.js +666 -85
- package/module/codegen/tendermint/types/validator.js +132 -21
- package/module/codegen/tendermint/version/types.js +108 -15
- package/module/codegen/utf8.js +121 -0
- package/module/codegen/varint.js +420 -0
- package/package.json +8 -9
- package/src/codegen/amino/amino.ts +1 -0
- package/src/codegen/amino/bundle.ts +4 -0
- package/src/codegen/binary.ts +534 -0
- package/src/codegen/confio/proofs.ts +828 -387
- package/src/codegen/cosmos/app/v1alpha1/config.ts +255 -0
- package/src/codegen/cosmos/app/v1alpha1/module.ts +454 -0
- package/src/codegen/cosmos/app/v1alpha1/query.rpc.Query.ts +30 -0
- package/src/codegen/cosmos/app/v1alpha1/query.ts +163 -0
- package/src/codegen/cosmos/auth/v1beta1/auth.ts +418 -0
- package/src/codegen/cosmos/auth/v1beta1/genesis.ts +113 -0
- package/src/codegen/cosmos/auth/v1beta1/query.lcd.ts +65 -0
- package/src/codegen/cosmos/auth/v1beta1/query.rpc.Query.ts +102 -0
- package/src/codegen/cosmos/auth/v1beta1/query.ts +1249 -0
- package/src/codegen/cosmos/authz/v1beta1/authz.ts +238 -81
- package/src/codegen/cosmos/authz/v1beta1/event.ts +127 -56
- package/src/codegen/cosmos/authz/v1beta1/genesis.ts +54 -19
- package/src/codegen/cosmos/authz/v1beta1/query.lcd.ts +1 -18
- package/src/codegen/cosmos/authz/v1beta1/query.rpc.Query.ts +4 -15
- package/src/codegen/cosmos/authz/v1beta1/query.ts +359 -140
- package/src/codegen/cosmos/authz/v1beta1/tx.amino.ts +18 -0
- package/src/codegen/cosmos/authz/v1beta1/tx.registry.ts +70 -0
- package/src/codegen/cosmos/authz/v1beta1/tx.rpc.msg.ts +4 -12
- package/src/codegen/cosmos/authz/v1beta1/tx.ts +336 -113
- package/src/codegen/cosmos/bank/v1beta1/authz.ts +59 -19
- package/src/codegen/cosmos/bank/v1beta1/bank.ts +454 -172
- package/src/codegen/cosmos/bank/v1beta1/genesis.ts +142 -60
- package/src/codegen/cosmos/bank/v1beta1/query.lcd.ts +1 -35
- package/src/codegen/cosmos/bank/v1beta1/query.rpc.Query.ts +10 -39
- package/src/codegen/cosmos/bank/v1beta1/query.ts +1075 -385
- package/src/codegen/cosmos/bank/v1beta1/tx.amino.ts +4 -101
- package/src/codegen/cosmos/bank/v1beta1/tx.registry.ts +0 -6
- package/src/codegen/cosmos/bank/v1beta1/tx.rpc.msg.ts +3 -9
- package/src/codegen/cosmos/bank/v1beta1/tx.ts +212 -70
- package/src/codegen/cosmos/base/abci/v1beta1/abci.ts +767 -356
- package/src/codegen/cosmos/base/kv/v1beta1/kv.ts +197 -0
- package/src/codegen/cosmos/base/query/v1beta1/pagination.ts +166 -77
- package/src/codegen/cosmos/base/reflection/v1beta1/reflection.ts +364 -0
- package/src/codegen/cosmos/base/reflection/v2alpha1/reflection.ts +1406 -501
- package/src/codegen/cosmos/base/snapshots/v1beta1/snapshot.ts +1023 -0
- package/src/codegen/cosmos/base/store/v1beta1/commit_info.ts +343 -0
- package/src/codegen/cosmos/base/store/v1beta1/listening.ts +158 -0
- package/src/codegen/cosmos/base/tendermint/v1beta1/query.lcd.ts +63 -0
- package/src/codegen/cosmos/base/tendermint/v1beta1/query.rpc.Service.ts +87 -0
- package/src/codegen/cosmos/base/tendermint/v1beta1/query.ts +1606 -0
- package/src/codegen/cosmos/base/v1beta1/coin.ts +221 -70
- package/src/codegen/cosmos/bundle.ts +439 -157
- package/src/codegen/cosmos/capability/v1beta1/capability.ts +312 -0
- package/src/codegen/cosmos/capability/v1beta1/genesis.ts +226 -0
- package/src/codegen/cosmos/client.ts +31 -5
- package/src/codegen/cosmos/crisis/v1beta1/genesis.ts +99 -0
- package/src/codegen/cosmos/crisis/v1beta1/tx.amino.ts +8 -0
- package/src/codegen/cosmos/crisis/v1beta1/tx.registry.ts +34 -0
- package/src/codegen/cosmos/crisis/v1beta1/tx.rpc.msg.ts +20 -0
- package/src/codegen/cosmos/crisis/v1beta1/tx.ts +190 -0
- package/src/codegen/cosmos/crypto/ed25519/keys.ts +111 -34
- package/src/codegen/cosmos/crypto/hd/v1/hd.ts +76 -39
- package/src/codegen/cosmos/crypto/keyring/v1/record.ts +280 -108
- package/src/codegen/cosmos/crypto/multisig/keys.ts +63 -21
- package/src/codegen/cosmos/crypto/multisig/v1beta1/multisig.ts +118 -36
- package/src/codegen/cosmos/crypto/secp256k1/keys.ts +108 -34
- package/src/codegen/cosmos/crypto/secp256r1/keys.ts +104 -36
- package/src/codegen/cosmos/distribution/v1beta1/distribution.ts +778 -261
- package/src/codegen/cosmos/distribution/v1beta1/genesis.ts +591 -274
- package/src/codegen/cosmos/distribution/v1beta1/query.lcd.ts +1 -25
- package/src/codegen/cosmos/distribution/v1beta1/query.rpc.Query.ts +10 -39
- package/src/codegen/cosmos/distribution/v1beta1/query.ts +1022 -353
- package/src/codegen/cosmos/distribution/v1beta1/tx.amino.ts +8 -105
- package/src/codegen/cosmos/distribution/v1beta1/tx.registry.ts +0 -12
- package/src/codegen/cosmos/distribution/v1beta1/tx.rpc.msg.ts +5 -15
- package/src/codegen/cosmos/distribution/v1beta1/tx.ts +423 -133
- package/src/codegen/cosmos/evidence/v1beta1/evidence.ts +146 -0
- package/src/codegen/cosmos/evidence/v1beta1/genesis.ts +95 -0
- package/src/codegen/cosmos/evidence/v1beta1/query.lcd.ts +33 -0
- package/src/codegen/cosmos/evidence/v1beta1/query.rpc.Query.ts +43 -0
- package/src/codegen/cosmos/evidence/v1beta1/query.ts +405 -0
- package/src/codegen/cosmos/evidence/v1beta1/tx.amino.ts +8 -0
- package/src/codegen/cosmos/evidence/v1beta1/tx.registry.ts +34 -0
- package/src/codegen/cosmos/evidence/v1beta1/tx.rpc.msg.ts +23 -0
- package/src/codegen/cosmos/evidence/v1beta1/tx.ts +207 -0
- package/src/codegen/cosmos/feegrant/v1beta1/feegrant.ts +560 -0
- package/src/codegen/cosmos/feegrant/v1beta1/genesis.ts +93 -0
- package/src/codegen/cosmos/feegrant/v1beta1/query.lcd.ts +44 -0
- package/src/codegen/cosmos/feegrant/v1beta1/query.rpc.Query.ts +55 -0
- package/src/codegen/cosmos/feegrant/v1beta1/query.ts +634 -0
- package/src/codegen/cosmos/feegrant/v1beta1/tx.amino.ts +13 -0
- package/src/codegen/cosmos/feegrant/v1beta1/tx.registry.ts +52 -0
- package/src/codegen/cosmos/feegrant/v1beta1/tx.rpc.msg.ts +34 -0
- package/src/codegen/cosmos/feegrant/v1beta1/tx.ts +384 -0
- package/src/codegen/cosmos/genutil/v1beta1/genesis.ts +95 -0
- package/src/codegen/cosmos/gov/v1/genesis.ts +100 -55
- package/src/codegen/cosmos/gov/v1/gov.ts +560 -306
- package/src/codegen/cosmos/gov/v1/query.lcd.ts +1 -28
- package/src/codegen/cosmos/gov/v1/query.rpc.Query.ts +9 -35
- package/src/codegen/cosmos/gov/v1/query.ts +929 -365
- package/src/codegen/cosmos/gov/v1/tx.amino.ts +10 -208
- package/src/codegen/cosmos/gov/v1/tx.registry.ts +0 -15
- package/src/codegen/cosmos/gov/v1/tx.rpc.msg.ts +6 -18
- package/src/codegen/cosmos/gov/v1/tx.ts +582 -213
- package/src/codegen/cosmos/gov/v1beta1/genesis.ts +107 -62
- package/src/codegen/cosmos/gov/v1beta1/gov.ts +641 -348
- package/src/codegen/cosmos/gov/v1beta1/query.lcd.ts +1 -28
- package/src/codegen/cosmos/gov/v1beta1/query.rpc.Query.ts +9 -35
- package/src/codegen/cosmos/gov/v1beta1/query.ts +948 -384
- package/src/codegen/cosmos/gov/v1beta1/tx.amino.ts +8 -159
- package/src/codegen/cosmos/gov/v1beta1/tx.registry.ts +0 -12
- package/src/codegen/cosmos/gov/v1beta1/tx.rpc.msg.ts +5 -15
- package/src/codegen/cosmos/gov/v1beta1/tx.ts +468 -168
- package/src/codegen/cosmos/group/v1/events.ts +855 -0
- package/src/codegen/cosmos/group/v1/genesis.ts +240 -0
- package/src/codegen/cosmos/group/v1/query.lcd.ts +139 -0
- package/src/codegen/cosmos/group/v1/query.rpc.Query.ts +162 -0
- package/src/codegen/cosmos/group/v1/query.ts +2674 -0
- package/src/codegen/cosmos/group/v1/tx.amino.ts +73 -0
- package/src/codegen/cosmos/group/v1/tx.registry.ts +268 -0
- package/src/codegen/cosmos/group/v1/tx.rpc.msg.ts +124 -0
- package/src/codegen/cosmos/group/v1/tx.ts +2998 -0
- package/src/codegen/cosmos/group/v1/types.ts +1964 -0
- package/src/codegen/cosmos/lcd.ts +48 -1
- package/src/codegen/cosmos/mint/v1beta1/genesis.ts +110 -0
- package/src/codegen/cosmos/mint/v1beta1/mint.ts +286 -0
- package/src/codegen/cosmos/mint/v1beta1/query.lcd.ts +30 -0
- package/src/codegen/cosmos/mint/v1beta1/query.rpc.Query.ts +52 -0
- package/src/codegen/cosmos/mint/v1beta1/query.ts +513 -0
- package/src/codegen/cosmos/msg/v1/msg.ts +1 -0
- package/src/codegen/cosmos/nft/v1beta1/event.ts +373 -0
- package/src/codegen/cosmos/nft/v1beta1/genesis.ts +222 -0
- package/src/codegen/cosmos/nft/v1beta1/nft.ts +354 -0
- package/src/codegen/cosmos/nft/v1beta1/query.lcd.ts +76 -0
- package/src/codegen/cosmos/nft/v1beta1/query.rpc.Query.ts +101 -0
- package/src/codegen/cosmos/nft/v1beta1/query.ts +1360 -0
- package/src/codegen/cosmos/nft/v1beta1/tx.amino.ts +8 -0
- package/src/codegen/cosmos/nft/v1beta1/tx.registry.ts +34 -0
- package/src/codegen/cosmos/nft/v1beta1/tx.rpc.msg.ts +20 -0
- package/src/codegen/cosmos/nft/v1beta1/tx.ts +213 -0
- package/src/codegen/cosmos/orm/v1/orm.ts +566 -0
- package/src/codegen/cosmos/orm/v1alpha1/schema.ts +348 -0
- package/src/codegen/cosmos/params/v1beta1/params.ts +250 -0
- package/src/codegen/cosmos/params/v1beta1/query.lcd.ts +34 -0
- package/src/codegen/cosmos/params/v1beta1/query.rpc.Query.ts +44 -0
- package/src/codegen/cosmos/params/v1beta1/query.ts +495 -0
- package/src/codegen/cosmos/rpc.query.ts +32 -0
- package/src/codegen/cosmos/rpc.tx.ts +21 -0
- package/src/codegen/cosmos/slashing/v1beta1/genesis.ts +478 -0
- package/src/codegen/cosmos/slashing/v1beta1/query.lcd.ts +39 -0
- package/src/codegen/cosmos/slashing/v1beta1/query.rpc.Query.ts +54 -0
- package/src/codegen/cosmos/slashing/v1beta1/query.ts +577 -0
- package/src/codegen/cosmos/slashing/v1beta1/slashing.ts +356 -0
- package/src/codegen/cosmos/slashing/v1beta1/tx.amino.ts +8 -0
- package/src/codegen/cosmos/slashing/v1beta1/tx.registry.ts +34 -0
- package/src/codegen/cosmos/slashing/v1beta1/tx.rpc.msg.ts +24 -0
- package/src/codegen/cosmos/slashing/v1beta1/tx.ts +160 -0
- package/src/codegen/cosmos/staking/v1beta1/authz.ts +130 -84
- package/src/codegen/cosmos/staking/v1beta1/genesis.ts +170 -82
- package/src/codegen/cosmos/staking/v1beta1/query.lcd.ts +1 -48
- package/src/codegen/cosmos/staking/v1beta1/query.rpc.Query.ts +15 -59
- package/src/codegen/cosmos/staking/v1beta1/query.ts +1616 -586
- package/src/codegen/cosmos/staking/v1beta1/staking.ts +1395 -616
- package/src/codegen/cosmos/staking/v1beta1/tx.amino.ts +10 -276
- package/src/codegen/cosmos/staking/v1beta1/tx.registry.ts +0 -15
- package/src/codegen/cosmos/staking/v1beta1/tx.rpc.msg.ts +6 -18
- package/src/codegen/cosmos/staking/v1beta1/tx.ts +609 -224
- package/src/codegen/cosmos/tx/signing/v1beta1/signing.ts +306 -181
- package/src/codegen/cosmos/tx/v1beta1/service.lcd.ts +1 -15
- package/src/codegen/cosmos/tx/v1beta1/service.rpc.Service.ts +6 -23
- package/src/codegen/cosmos/tx/v1beta1/service.ts +635 -293
- package/src/codegen/cosmos/tx/v1beta1/tx.ts +930 -405
- package/src/codegen/cosmos/upgrade/v1beta1/query.lcd.ts +1 -15
- package/src/codegen/cosmos/upgrade/v1beta1/query.rpc.Query.ts +6 -23
- package/src/codegen/cosmos/upgrade/v1beta1/query.ts +550 -182
- package/src/codegen/cosmos/upgrade/v1beta1/tx.amino.ts +4 -77
- package/src/codegen/cosmos/upgrade/v1beta1/tx.registry.ts +0 -6
- package/src/codegen/cosmos/upgrade/v1beta1/tx.rpc.msg.ts +3 -9
- package/src/codegen/cosmos/upgrade/v1beta1/tx.ts +217 -73
- package/src/codegen/cosmos/upgrade/v1beta1/upgrade.ts +284 -124
- package/src/codegen/cosmos/vesting/v1beta1/tx.amino.ts +18 -0
- package/src/codegen/cosmos/vesting/v1beta1/tx.registry.ts +70 -0
- package/src/codegen/cosmos/vesting/v1beta1/tx.rpc.msg.ts +45 -0
- package/src/codegen/cosmos/vesting/v1beta1/tx.ts +657 -0
- package/src/codegen/cosmos/vesting/v1beta1/vesting.ts +724 -0
- package/src/codegen/cosmos_proto/bundle.ts +3 -2
- package/src/codegen/cosmos_proto/cosmos.ts +125 -67
- package/src/codegen/cosmwasm/bundle.ts +32 -30
- package/src/codegen/cosmwasm/client.ts +5 -3
- package/src/codegen/cosmwasm/lcd.ts +48 -1
- package/src/codegen/cosmwasm/rpc.query.ts +32 -0
- package/src/codegen/cosmwasm/rpc.tx.ts +21 -0
- package/src/codegen/cosmwasm/wasm/v1/authz.ts +528 -180
- package/src/codegen/cosmwasm/wasm/v1/genesis.ts +356 -134
- package/src/codegen/cosmwasm/wasm/v1/ibc.ts +131 -60
- package/src/codegen/cosmwasm/wasm/v1/proposal.ts +987 -497
- package/src/codegen/cosmwasm/wasm/v1/query.lcd.ts +1 -37
- package/src/codegen/cosmwasm/wasm/v1/query.rpc.Query.ts +12 -47
- package/src/codegen/cosmwasm/wasm/v1/query.ts +1352 -486
- package/src/codegen/cosmwasm/wasm/v1/tx.amino.ts +14 -298
- package/src/codegen/cosmwasm/wasm/v1/tx.registry.ts +0 -21
- package/src/codegen/cosmwasm/wasm/v1/tx.rpc.msg.ts +8 -24
- package/src/codegen/cosmwasm/wasm/v1/tx.ts +893 -386
- package/src/codegen/cosmwasm/wasm/v1/types.ts +541 -300
- package/src/codegen/gaia/bundle.ts +14 -12
- package/src/codegen/gaia/globalfee/v1beta1/genesis.ts +97 -40
- package/src/codegen/gaia/globalfee/v1beta1/query.lcd.ts +1 -5
- package/src/codegen/gaia/globalfee/v1beta1/query.rpc.Query.ts +2 -7
- package/src/codegen/gaia/globalfee/v1beta1/query.ts +92 -33
- package/src/codegen/gaia/lcd.ts +48 -1
- package/src/codegen/gaia/rpc.query.ts +32 -0
- package/src/codegen/gogoproto/bundle.ts +3 -2
- package/src/codegen/google/api/annotations.ts +1 -0
- package/src/codegen/google/api/http.ts +1351 -0
- package/src/codegen/google/bundle.ts +17 -10
- package/src/codegen/google/protobuf/any.ts +131 -24
- package/src/codegen/google/protobuf/descriptor.ts +1890 -1033
- package/src/codegen/google/protobuf/duration.ts +106 -41
- package/src/codegen/google/protobuf/empty.ts +49 -16
- package/src/codegen/google/protobuf/timestamp.ts +127 -39
- package/src/codegen/helpers.ts +174 -166
- package/src/codegen/ibc/applications/transfer/v1/genesis.ts +67 -26
- package/src/codegen/ibc/applications/transfer/v1/query.lcd.ts +1 -11
- package/src/codegen/ibc/applications/transfer/v1/query.rpc.Query.ts +4 -15
- package/src/codegen/ibc/applications/transfer/v1/query.ts +322 -108
- package/src/codegen/ibc/applications/transfer/v1/transfer.ts +123 -46
- package/src/codegen/ibc/applications/transfer/v1/tx.amino.ts +2 -67
- package/src/codegen/ibc/applications/transfer/v1/tx.registry.ts +0 -3
- package/src/codegen/ibc/applications/transfer/v1/tx.rpc.msg.ts +2 -6
- package/src/codegen/ibc/applications/transfer/v1/tx.ts +148 -75
- package/src/codegen/ibc/applications/transfer/v2/packet.ts +74 -34
- package/src/codegen/ibc/bundle.ts +115 -90
- package/src/codegen/ibc/client.ts +5 -3
- package/src/codegen/ibc/core/channel/v1/channel.ts +489 -301
- package/src/codegen/ibc/core/channel/v1/genesis.ts +177 -68
- package/src/codegen/ibc/core/channel/v1/query.lcd.ts +1 -38
- package/src/codegen/ibc/core/channel/v1/query.rpc.Query.ts +14 -55
- package/src/codegen/ibc/core/channel/v1/query.ts +1799 -794
- package/src/codegen/ibc/core/channel/v1/tx.amino.ts +20 -637
- package/src/codegen/ibc/core/channel/v1/tx.registry.ts +0 -30
- package/src/codegen/ibc/core/channel/v1/tx.rpc.msg.ts +11 -33
- package/src/codegen/ibc/core/channel/v1/tx.ts +1224 -442
- package/src/codegen/ibc/core/client/v1/client.ts +463 -184
- package/src/codegen/ibc/core/client/v1/genesis.ts +218 -91
- package/src/codegen/ibc/core/client/v1/query.lcd.ts +1 -25
- package/src/codegen/ibc/core/client/v1/query.rpc.Query.ts +9 -35
- package/src/codegen/ibc/core/client/v1/query.ts +929 -333
- package/src/codegen/ibc/core/client/v1/tx.amino.ts +8 -190
- package/src/codegen/ibc/core/client/v1/tx.registry.ts +0 -12
- package/src/codegen/ibc/core/client/v1/tx.rpc.msg.ts +5 -15
- package/src/codegen/ibc/core/client/v1/tx.ts +461 -182
- package/src/codegen/ibc/core/commitment/v1/commitment.ts +224 -67
- package/src/codegen/ibc/core/connection/v1/connection.ts +485 -246
- package/src/codegen/ibc/core/connection/v1/genesis.ts +81 -37
- package/src/codegen/ibc/core/connection/v1/query.lcd.ts +1 -15
- package/src/codegen/ibc/core/connection/v1/query.rpc.Query.ts +6 -23
- package/src/codegen/ibc/core/connection/v1/query.ts +653 -261
- package/src/codegen/ibc/core/connection/v1/tx.amino.ts +8 -328
- package/src/codegen/ibc/core/connection/v1/tx.registry.ts +0 -12
- package/src/codegen/ibc/core/connection/v1/tx.rpc.msg.ts +5 -15
- package/src/codegen/ibc/core/connection/v1/tx.ts +583 -242
- package/src/codegen/ibc/core/port/v1/query.rpc.Query.ts +30 -0
- package/src/codegen/ibc/core/port/v1/query.ts +269 -0
- package/src/codegen/ibc/core/types/v1/genesis.ts +135 -0
- package/src/codegen/ibc/lcd.ts +48 -1
- package/src/codegen/ibc/lightclients/localhost/v1/localhost.ts +65 -28
- package/src/codegen/ibc/lightclients/solomachine/v1/solomachine.ts +1061 -473
- package/src/codegen/ibc/lightclients/solomachine/v2/solomachine.ts +1056 -468
- package/src/codegen/ibc/lightclients/tendermint/v1/tendermint.ts +419 -189
- package/src/codegen/ibc/rpc.query.ts +35 -0
- package/src/codegen/ibc/rpc.tx.ts +21 -0
- package/src/codegen/ics23/bundle.ts +3 -2
- package/src/codegen/index.ts +5 -2
- package/src/codegen/juno/bundle.ts +127 -34
- package/src/codegen/juno/client.ts +21 -4
- package/src/codegen/juno/clock/v1/genesis.ts +188 -0
- package/src/codegen/juno/clock/v1/query.lcd.ts +24 -0
- package/src/codegen/juno/clock/v1/query.rpc.Query.ts +41 -0
- package/src/codegen/juno/clock/v1/query.ts +298 -0
- package/src/codegen/juno/clock/v1/tx.amino.ts +8 -0
- package/src/codegen/juno/clock/v1/tx.registry.ts +34 -0
- package/src/codegen/juno/clock/v1/tx.rpc.msg.ts +25 -0
- package/src/codegen/juno/clock/v1/tx.ts +203 -0
- package/src/codegen/juno/cwhooks/v1/genesis.ts +209 -0
- package/src/codegen/juno/cwhooks/v1/query.lcd.ts +30 -0
- package/src/codegen/juno/cwhooks/v1/query.rpc.Query.ts +52 -0
- package/src/codegen/juno/cwhooks/v1/query.ts +447 -0
- package/src/codegen/juno/cwhooks/v1/tx.amino.ts +28 -0
- package/src/codegen/juno/cwhooks/v1/tx.registry.ts +106 -0
- package/src/codegen/juno/cwhooks/v1/tx.rpc.msg.ts +57 -0
- package/src/codegen/juno/cwhooks/v1/tx.ts +851 -0
- package/src/codegen/juno/drip/v1/genesis.ts +190 -0
- package/src/codegen/juno/drip/v1/query.lcd.ts +18 -0
- package/src/codegen/juno/drip/v1/query.rpc.Query.ts +30 -0
- package/src/codegen/juno/drip/v1/query.ts +151 -0
- package/src/codegen/juno/drip/v1/tx.amino.ts +13 -0
- package/src/codegen/juno/drip/v1/tx.registry.ts +52 -0
- package/src/codegen/juno/drip/v1/tx.rpc.msg.ts +27 -0
- package/src/codegen/juno/drip/v1/tx.ts +360 -0
- package/src/codegen/juno/feepay/v1/feepay.ts +257 -0
- package/src/codegen/juno/feepay/v1/genesis.ts +191 -0
- package/src/codegen/juno/feepay/v1/query.lcd.ts +51 -0
- package/src/codegen/juno/feepay/v1/query.rpc.Query.ts +76 -0
- package/src/codegen/juno/feepay/v1/query.ts +886 -0
- package/src/codegen/juno/feepay/v1/tx.amino.ts +28 -0
- package/src/codegen/juno/feepay/v1/tx.registry.ts +106 -0
- package/src/codegen/juno/feepay/v1/tx.rpc.msg.ts +52 -0
- package/src/codegen/juno/feepay/v1/tx.ts +905 -0
- package/src/codegen/juno/feeshare/v1/feeshare.ts +61 -29
- package/src/codegen/juno/feeshare/v1/genesis.ts +119 -56
- package/src/codegen/juno/feeshare/v1/query.lcd.ts +1 -19
- package/src/codegen/juno/feeshare/v1/query.rpc.Query.ts +6 -23
- package/src/codegen/juno/feeshare/v1/query.ts +504 -203
- package/src/codegen/juno/feeshare/v1/tx.amino.ts +12 -87
- package/src/codegen/juno/feeshare/v1/tx.registry.ts +20 -11
- package/src/codegen/juno/feeshare/v1/tx.rpc.msg.ts +13 -13
- package/src/codegen/juno/feeshare/v1/tx.ts +485 -120
- package/src/codegen/juno/lcd.ts +68 -1
- package/src/codegen/juno/mint/genesis.ts +58 -30
- package/src/codegen/juno/mint/mint.ts +152 -73
- package/src/codegen/juno/mint/query.lcd.ts +8 -10
- package/src/codegen/juno/mint/query.rpc.Query.ts +16 -16
- package/src/codegen/juno/mint/query.ts +431 -99
- package/src/codegen/juno/mint/tx.amino.ts +8 -0
- package/src/codegen/juno/mint/tx.registry.ts +34 -0
- package/src/codegen/juno/mint/tx.rpc.msg.ts +25 -0
- package/src/codegen/juno/mint/tx.ts +203 -0
- package/src/codegen/juno/rpc.query.ts +44 -0
- package/src/codegen/juno/rpc.tx.ts +35 -1
- package/src/codegen/osmosis/bundle.ts +28 -26
- package/src/codegen/osmosis/client.ts +5 -3
- package/src/codegen/osmosis/lcd.ts +48 -1
- package/src/codegen/osmosis/rpc.query.ts +32 -0
- package/src/codegen/osmosis/rpc.tx.ts +21 -0
- package/src/codegen/osmosis/tokenfactory/v1beta1/authorityMetadata.ts +56 -19
- package/src/codegen/osmosis/tokenfactory/v1beta1/genesis.ts +126 -47
- package/src/codegen/osmosis/tokenfactory/v1beta1/params.ts +80 -20
- package/src/codegen/osmosis/tokenfactory/v1beta1/query.lcd.ts +1 -9
- package/src/codegen/osmosis/tokenfactory/v1beta1/query.rpc.Query.ts +4 -15
- package/src/codegen/osmosis/tokenfactory/v1beta1/query.ts +318 -105
- package/src/codegen/osmosis/tokenfactory/v1beta1/tx.amino.ts +18 -244
- package/src/codegen/osmosis/tokenfactory/v1beta1/tx.registry.ts +20 -20
- package/src/codegen/osmosis/tokenfactory/v1beta1/tx.rpc.msg.ts +21 -17
- package/src/codegen/osmosis/tokenfactory/v1beta1/tx.ts +881 -215
- package/src/codegen/router/bundle.ts +14 -12
- package/src/codegen/router/lcd.ts +48 -1
- package/src/codegen/router/rpc.query.ts +32 -0
- package/src/codegen/router/v1/genesis.ts +276 -119
- package/src/codegen/router/v1/query.lcd.ts +1 -5
- package/src/codegen/router/v1/query.rpc.Query.ts +2 -7
- package/src/codegen/router/v1/query.ts +85 -34
- package/src/codegen/tendermint/abci/types.ts +2651 -1184
- package/src/codegen/tendermint/bundle.ts +28 -22
- package/src/codegen/tendermint/crypto/keys.ts +51 -20
- package/src/codegen/tendermint/crypto/proof.ts +281 -108
- package/src/codegen/tendermint/libs/bits/types.ts +62 -32
- package/src/codegen/tendermint/p2p/types.ts +318 -126
- package/src/codegen/tendermint/types/block.ts +70 -33
- package/src/codegen/tendermint/types/evidence.ts +257 -112
- package/src/codegen/tendermint/types/params.ts +383 -188
- package/src/codegen/tendermint/types/types.ts +886 -437
- package/src/codegen/tendermint/types/validator.ts +191 -84
- package/src/codegen/tendermint/version/types.ts +125 -56
- package/src/codegen/utf8.ts +148 -0
- package/src/codegen/varint.ts +488 -0
- package/types/codegen/cosmos/authz/v1beta1/query.lcd.d.ts +1 -1
- package/types/codegen/cosmos/bank/v1beta1/query.lcd.d.ts +1 -1
- package/types/codegen/cosmos/distribution/v1beta1/query.lcd.d.ts +1 -1
- package/types/codegen/cosmos/gov/v1/query.lcd.d.ts +1 -1
- package/types/codegen/cosmos/gov/v1beta1/query.lcd.d.ts +1 -1
- package/types/codegen/cosmos/staking/v1beta1/query.lcd.d.ts +1 -1
- package/types/codegen/cosmos/tx/v1beta1/service.lcd.d.ts +1 -1
- package/types/codegen/cosmos/upgrade/v1beta1/query.lcd.d.ts +1 -1
- package/types/codegen/cosmwasm/wasm/v1/query.lcd.d.ts +1 -1
- package/types/codegen/gaia/globalfee/v1beta1/query.lcd.d.ts +1 -1
- package/types/codegen/helpers.d.ts +1 -1
- package/types/codegen/ibc/applications/transfer/v1/query.lcd.d.ts +1 -1
- package/types/codegen/ibc/core/channel/v1/query.lcd.d.ts +1 -1
- package/types/codegen/ibc/core/client/v1/query.lcd.d.ts +1 -1
- package/types/codegen/ibc/core/connection/v1/query.lcd.d.ts +1 -1
- package/types/codegen/index.d.ts +1 -1
- package/types/codegen/juno/feeshare/v1/query.lcd.d.ts +1 -1
- package/types/codegen/juno/mint/query.lcd.d.ts +1 -1
- package/types/codegen/osmosis/tokenfactory/v1beta1/query.lcd.d.ts +1 -1
- package/types/codegen/router/v1/query.lcd.d.ts +1 -1
|
@@ -2,27 +2,176 @@ import { PageRequest, PageResponse } from "../../../../cosmos/base/query/v1beta1
|
|
|
2
2
|
import { ConnectionEnd, IdentifiedConnection } from "./connection";
|
|
3
3
|
import { Height, IdentifiedClientState } from "../../client/v1/client";
|
|
4
4
|
import { Any } from "../../../../google/protobuf/any";
|
|
5
|
-
import
|
|
6
|
-
import {
|
|
5
|
+
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
6
|
+
import { bytesFromBase64, base64FromBytes } from "../../../../helpers";
|
|
7
7
|
/**
|
|
8
8
|
* QueryConnectionRequest is the request type for the Query/Connection RPC
|
|
9
9
|
* method
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
|
+
/**
|
|
13
|
+
* QueryConnectionRequest is the request type for the Query/Connection RPC
|
|
14
|
+
* method
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* QueryConnectionRequest is the request type for the Query/Connection RPC
|
|
19
|
+
* method
|
|
20
|
+
*/
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* QueryConnectionResponse is the response type for the Query/Connection RPC
|
|
24
|
+
* method. Besides the connection end, it includes a proof and the height from
|
|
25
|
+
* which the proof was retrieved.
|
|
26
|
+
*/
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* QueryConnectionResponse is the response type for the Query/Connection RPC
|
|
30
|
+
* method. Besides the connection end, it includes a proof and the height from
|
|
31
|
+
* which the proof was retrieved.
|
|
32
|
+
*/
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* QueryConnectionResponse is the response type for the Query/Connection RPC
|
|
36
|
+
* method. Besides the connection end, it includes a proof and the height from
|
|
37
|
+
* which the proof was retrieved.
|
|
38
|
+
*/
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* QueryConnectionsRequest is the request type for the Query/Connections RPC
|
|
42
|
+
* method
|
|
43
|
+
*/
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* QueryConnectionsRequest is the request type for the Query/Connections RPC
|
|
47
|
+
* method
|
|
48
|
+
*/
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* QueryConnectionsRequest is the request type for the Query/Connections RPC
|
|
52
|
+
* method
|
|
53
|
+
*/
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* QueryConnectionsResponse is the response type for the Query/Connections RPC
|
|
57
|
+
* method.
|
|
58
|
+
*/
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* QueryConnectionsResponse is the response type for the Query/Connections RPC
|
|
62
|
+
* method.
|
|
63
|
+
*/
|
|
64
|
+
|
|
65
|
+
/**
|
|
66
|
+
* QueryConnectionsResponse is the response type for the Query/Connections RPC
|
|
67
|
+
* method.
|
|
68
|
+
*/
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* QueryClientConnectionsRequest is the request type for the
|
|
72
|
+
* Query/ClientConnections RPC method
|
|
73
|
+
*/
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* QueryClientConnectionsRequest is the request type for the
|
|
77
|
+
* Query/ClientConnections RPC method
|
|
78
|
+
*/
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* QueryClientConnectionsRequest is the request type for the
|
|
82
|
+
* Query/ClientConnections RPC method
|
|
83
|
+
*/
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* QueryClientConnectionsResponse is the response type for the
|
|
87
|
+
* Query/ClientConnections RPC method
|
|
88
|
+
*/
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* QueryClientConnectionsResponse is the response type for the
|
|
92
|
+
* Query/ClientConnections RPC method
|
|
93
|
+
*/
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* QueryClientConnectionsResponse is the response type for the
|
|
97
|
+
* Query/ClientConnections RPC method
|
|
98
|
+
*/
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* QueryConnectionClientStateRequest is the request type for the
|
|
102
|
+
* Query/ConnectionClientState RPC method
|
|
103
|
+
*/
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* QueryConnectionClientStateRequest is the request type for the
|
|
107
|
+
* Query/ConnectionClientState RPC method
|
|
108
|
+
*/
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* QueryConnectionClientStateRequest is the request type for the
|
|
112
|
+
* Query/ConnectionClientState RPC method
|
|
113
|
+
*/
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
* QueryConnectionClientStateResponse is the response type for the
|
|
117
|
+
* Query/ConnectionClientState RPC method
|
|
118
|
+
*/
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* QueryConnectionClientStateResponse is the response type for the
|
|
122
|
+
* Query/ConnectionClientState RPC method
|
|
123
|
+
*/
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* QueryConnectionClientStateResponse is the response type for the
|
|
127
|
+
* Query/ConnectionClientState RPC method
|
|
128
|
+
*/
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* QueryConnectionConsensusStateRequest is the request type for the
|
|
132
|
+
* Query/ConnectionConsensusState RPC method
|
|
133
|
+
*/
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* QueryConnectionConsensusStateRequest is the request type for the
|
|
137
|
+
* Query/ConnectionConsensusState RPC method
|
|
138
|
+
*/
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* QueryConnectionConsensusStateRequest is the request type for the
|
|
142
|
+
* Query/ConnectionConsensusState RPC method
|
|
143
|
+
*/
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* QueryConnectionConsensusStateResponse is the response type for the
|
|
147
|
+
* Query/ConnectionConsensusState RPC method
|
|
148
|
+
*/
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* QueryConnectionConsensusStateResponse is the response type for the
|
|
152
|
+
* Query/ConnectionConsensusState RPC method
|
|
153
|
+
*/
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* QueryConnectionConsensusStateResponse is the response type for the
|
|
157
|
+
* Query/ConnectionConsensusState RPC method
|
|
158
|
+
*/
|
|
159
|
+
|
|
12
160
|
function createBaseQueryConnectionRequest() {
|
|
13
161
|
return {
|
|
14
162
|
connectionId: ""
|
|
15
163
|
};
|
|
16
164
|
}
|
|
17
165
|
export const QueryConnectionRequest = {
|
|
18
|
-
|
|
166
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionRequest",
|
|
167
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
19
168
|
if (message.connectionId !== "") {
|
|
20
169
|
writer.uint32(10).string(message.connectionId);
|
|
21
170
|
}
|
|
22
171
|
return writer;
|
|
23
172
|
},
|
|
24
173
|
decode(input, length) {
|
|
25
|
-
const reader = input instanceof
|
|
174
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
26
175
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
27
176
|
const message = createBaseQueryConnectionRequest();
|
|
28
177
|
while (reader.pos < end) {
|
|
@@ -43,17 +192,51 @@ export const QueryConnectionRequest = {
|
|
|
43
192
|
const message = createBaseQueryConnectionRequest();
|
|
44
193
|
message.connectionId = (_object$connectionId = object.connectionId) !== null && _object$connectionId !== void 0 ? _object$connectionId : "";
|
|
45
194
|
return message;
|
|
195
|
+
},
|
|
196
|
+
fromAmino(object) {
|
|
197
|
+
const message = createBaseQueryConnectionRequest();
|
|
198
|
+
if (object.connection_id !== undefined && object.connection_id !== null) {
|
|
199
|
+
message.connectionId = object.connection_id;
|
|
200
|
+
}
|
|
201
|
+
return message;
|
|
202
|
+
},
|
|
203
|
+
toAmino(message) {
|
|
204
|
+
const obj = {};
|
|
205
|
+
obj.connection_id = message.connectionId;
|
|
206
|
+
return obj;
|
|
207
|
+
},
|
|
208
|
+
fromAminoMsg(object) {
|
|
209
|
+
return QueryConnectionRequest.fromAmino(object.value);
|
|
210
|
+
},
|
|
211
|
+
toAminoMsg(message) {
|
|
212
|
+
return {
|
|
213
|
+
type: "cosmos-sdk/QueryConnectionRequest",
|
|
214
|
+
value: QueryConnectionRequest.toAmino(message)
|
|
215
|
+
};
|
|
216
|
+
},
|
|
217
|
+
fromProtoMsg(message) {
|
|
218
|
+
return QueryConnectionRequest.decode(message.value);
|
|
219
|
+
},
|
|
220
|
+
toProto(message) {
|
|
221
|
+
return QueryConnectionRequest.encode(message).finish();
|
|
222
|
+
},
|
|
223
|
+
toProtoMsg(message) {
|
|
224
|
+
return {
|
|
225
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionRequest",
|
|
226
|
+
value: QueryConnectionRequest.encode(message).finish()
|
|
227
|
+
};
|
|
46
228
|
}
|
|
47
229
|
};
|
|
48
230
|
function createBaseQueryConnectionResponse() {
|
|
49
231
|
return {
|
|
50
232
|
connection: undefined,
|
|
51
233
|
proof: new Uint8Array(),
|
|
52
|
-
proofHeight:
|
|
234
|
+
proofHeight: Height.fromPartial({})
|
|
53
235
|
};
|
|
54
236
|
}
|
|
55
237
|
export const QueryConnectionResponse = {
|
|
56
|
-
|
|
238
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionResponse",
|
|
239
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
57
240
|
if (message.connection !== undefined) {
|
|
58
241
|
ConnectionEnd.encode(message.connection, writer.uint32(10).fork()).ldelim();
|
|
59
242
|
}
|
|
@@ -66,7 +249,7 @@ export const QueryConnectionResponse = {
|
|
|
66
249
|
return writer;
|
|
67
250
|
},
|
|
68
251
|
decode(input, length) {
|
|
69
|
-
const reader = input instanceof
|
|
252
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
70
253
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
71
254
|
const message = createBaseQueryConnectionResponse();
|
|
72
255
|
while (reader.pos < end) {
|
|
@@ -95,6 +278,47 @@ export const QueryConnectionResponse = {
|
|
|
95
278
|
message.proof = (_object$proof = object.proof) !== null && _object$proof !== void 0 ? _object$proof : new Uint8Array();
|
|
96
279
|
message.proofHeight = object.proofHeight !== undefined && object.proofHeight !== null ? Height.fromPartial(object.proofHeight) : undefined;
|
|
97
280
|
return message;
|
|
281
|
+
},
|
|
282
|
+
fromAmino(object) {
|
|
283
|
+
const message = createBaseQueryConnectionResponse();
|
|
284
|
+
if (object.connection !== undefined && object.connection !== null) {
|
|
285
|
+
message.connection = ConnectionEnd.fromAmino(object.connection);
|
|
286
|
+
}
|
|
287
|
+
if (object.proof !== undefined && object.proof !== null) {
|
|
288
|
+
message.proof = bytesFromBase64(object.proof);
|
|
289
|
+
}
|
|
290
|
+
if (object.proof_height !== undefined && object.proof_height !== null) {
|
|
291
|
+
message.proofHeight = Height.fromAmino(object.proof_height);
|
|
292
|
+
}
|
|
293
|
+
return message;
|
|
294
|
+
},
|
|
295
|
+
toAmino(message) {
|
|
296
|
+
const obj = {};
|
|
297
|
+
obj.connection = message.connection ? ConnectionEnd.toAmino(message.connection) : undefined;
|
|
298
|
+
obj.proof = message.proof ? base64FromBytes(message.proof) : undefined;
|
|
299
|
+
obj.proof_height = message.proofHeight ? Height.toAmino(message.proofHeight) : {};
|
|
300
|
+
return obj;
|
|
301
|
+
},
|
|
302
|
+
fromAminoMsg(object) {
|
|
303
|
+
return QueryConnectionResponse.fromAmino(object.value);
|
|
304
|
+
},
|
|
305
|
+
toAminoMsg(message) {
|
|
306
|
+
return {
|
|
307
|
+
type: "cosmos-sdk/QueryConnectionResponse",
|
|
308
|
+
value: QueryConnectionResponse.toAmino(message)
|
|
309
|
+
};
|
|
310
|
+
},
|
|
311
|
+
fromProtoMsg(message) {
|
|
312
|
+
return QueryConnectionResponse.decode(message.value);
|
|
313
|
+
},
|
|
314
|
+
toProto(message) {
|
|
315
|
+
return QueryConnectionResponse.encode(message).finish();
|
|
316
|
+
},
|
|
317
|
+
toProtoMsg(message) {
|
|
318
|
+
return {
|
|
319
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionResponse",
|
|
320
|
+
value: QueryConnectionResponse.encode(message).finish()
|
|
321
|
+
};
|
|
98
322
|
}
|
|
99
323
|
};
|
|
100
324
|
function createBaseQueryConnectionsRequest() {
|
|
@@ -103,14 +327,15 @@ function createBaseQueryConnectionsRequest() {
|
|
|
103
327
|
};
|
|
104
328
|
}
|
|
105
329
|
export const QueryConnectionsRequest = {
|
|
106
|
-
|
|
330
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionsRequest",
|
|
331
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
107
332
|
if (message.pagination !== undefined) {
|
|
108
333
|
PageRequest.encode(message.pagination, writer.uint32(10).fork()).ldelim();
|
|
109
334
|
}
|
|
110
335
|
return writer;
|
|
111
336
|
},
|
|
112
337
|
decode(input, length) {
|
|
113
|
-
const reader = input instanceof
|
|
338
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
114
339
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
115
340
|
const message = createBaseQueryConnectionsRequest();
|
|
116
341
|
while (reader.pos < end) {
|
|
@@ -130,17 +355,51 @@ export const QueryConnectionsRequest = {
|
|
|
130
355
|
const message = createBaseQueryConnectionsRequest();
|
|
131
356
|
message.pagination = object.pagination !== undefined && object.pagination !== null ? PageRequest.fromPartial(object.pagination) : undefined;
|
|
132
357
|
return message;
|
|
358
|
+
},
|
|
359
|
+
fromAmino(object) {
|
|
360
|
+
const message = createBaseQueryConnectionsRequest();
|
|
361
|
+
if (object.pagination !== undefined && object.pagination !== null) {
|
|
362
|
+
message.pagination = PageRequest.fromAmino(object.pagination);
|
|
363
|
+
}
|
|
364
|
+
return message;
|
|
365
|
+
},
|
|
366
|
+
toAmino(message) {
|
|
367
|
+
const obj = {};
|
|
368
|
+
obj.pagination = message.pagination ? PageRequest.toAmino(message.pagination) : undefined;
|
|
369
|
+
return obj;
|
|
370
|
+
},
|
|
371
|
+
fromAminoMsg(object) {
|
|
372
|
+
return QueryConnectionsRequest.fromAmino(object.value);
|
|
373
|
+
},
|
|
374
|
+
toAminoMsg(message) {
|
|
375
|
+
return {
|
|
376
|
+
type: "cosmos-sdk/QueryConnectionsRequest",
|
|
377
|
+
value: QueryConnectionsRequest.toAmino(message)
|
|
378
|
+
};
|
|
379
|
+
},
|
|
380
|
+
fromProtoMsg(message) {
|
|
381
|
+
return QueryConnectionsRequest.decode(message.value);
|
|
382
|
+
},
|
|
383
|
+
toProto(message) {
|
|
384
|
+
return QueryConnectionsRequest.encode(message).finish();
|
|
385
|
+
},
|
|
386
|
+
toProtoMsg(message) {
|
|
387
|
+
return {
|
|
388
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionsRequest",
|
|
389
|
+
value: QueryConnectionsRequest.encode(message).finish()
|
|
390
|
+
};
|
|
133
391
|
}
|
|
134
392
|
};
|
|
135
393
|
function createBaseQueryConnectionsResponse() {
|
|
136
394
|
return {
|
|
137
395
|
connections: [],
|
|
138
396
|
pagination: undefined,
|
|
139
|
-
height:
|
|
397
|
+
height: Height.fromPartial({})
|
|
140
398
|
};
|
|
141
399
|
}
|
|
142
400
|
export const QueryConnectionsResponse = {
|
|
143
|
-
|
|
401
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionsResponse",
|
|
402
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
144
403
|
for (const v of message.connections) {
|
|
145
404
|
IdentifiedConnection.encode(v, writer.uint32(10).fork()).ldelim();
|
|
146
405
|
}
|
|
@@ -153,7 +412,7 @@ export const QueryConnectionsResponse = {
|
|
|
153
412
|
return writer;
|
|
154
413
|
},
|
|
155
414
|
decode(input, length) {
|
|
156
|
-
const reader = input instanceof
|
|
415
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
157
416
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
158
417
|
const message = createBaseQueryConnectionsResponse();
|
|
159
418
|
while (reader.pos < end) {
|
|
@@ -182,6 +441,50 @@ export const QueryConnectionsResponse = {
|
|
|
182
441
|
message.pagination = object.pagination !== undefined && object.pagination !== null ? PageResponse.fromPartial(object.pagination) : undefined;
|
|
183
442
|
message.height = object.height !== undefined && object.height !== null ? Height.fromPartial(object.height) : undefined;
|
|
184
443
|
return message;
|
|
444
|
+
},
|
|
445
|
+
fromAmino(object) {
|
|
446
|
+
var _object$connections2;
|
|
447
|
+
const message = createBaseQueryConnectionsResponse();
|
|
448
|
+
message.connections = ((_object$connections2 = object.connections) === null || _object$connections2 === void 0 ? void 0 : _object$connections2.map(e => IdentifiedConnection.fromAmino(e))) || [];
|
|
449
|
+
if (object.pagination !== undefined && object.pagination !== null) {
|
|
450
|
+
message.pagination = PageResponse.fromAmino(object.pagination);
|
|
451
|
+
}
|
|
452
|
+
if (object.height !== undefined && object.height !== null) {
|
|
453
|
+
message.height = Height.fromAmino(object.height);
|
|
454
|
+
}
|
|
455
|
+
return message;
|
|
456
|
+
},
|
|
457
|
+
toAmino(message) {
|
|
458
|
+
const obj = {};
|
|
459
|
+
if (message.connections) {
|
|
460
|
+
obj.connections = message.connections.map(e => e ? IdentifiedConnection.toAmino(e) : undefined);
|
|
461
|
+
} else {
|
|
462
|
+
obj.connections = [];
|
|
463
|
+
}
|
|
464
|
+
obj.pagination = message.pagination ? PageResponse.toAmino(message.pagination) : undefined;
|
|
465
|
+
obj.height = message.height ? Height.toAmino(message.height) : {};
|
|
466
|
+
return obj;
|
|
467
|
+
},
|
|
468
|
+
fromAminoMsg(object) {
|
|
469
|
+
return QueryConnectionsResponse.fromAmino(object.value);
|
|
470
|
+
},
|
|
471
|
+
toAminoMsg(message) {
|
|
472
|
+
return {
|
|
473
|
+
type: "cosmos-sdk/QueryConnectionsResponse",
|
|
474
|
+
value: QueryConnectionsResponse.toAmino(message)
|
|
475
|
+
};
|
|
476
|
+
},
|
|
477
|
+
fromProtoMsg(message) {
|
|
478
|
+
return QueryConnectionsResponse.decode(message.value);
|
|
479
|
+
},
|
|
480
|
+
toProto(message) {
|
|
481
|
+
return QueryConnectionsResponse.encode(message).finish();
|
|
482
|
+
},
|
|
483
|
+
toProtoMsg(message) {
|
|
484
|
+
return {
|
|
485
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionsResponse",
|
|
486
|
+
value: QueryConnectionsResponse.encode(message).finish()
|
|
487
|
+
};
|
|
185
488
|
}
|
|
186
489
|
};
|
|
187
490
|
function createBaseQueryClientConnectionsRequest() {
|
|
@@ -190,14 +493,15 @@ function createBaseQueryClientConnectionsRequest() {
|
|
|
190
493
|
};
|
|
191
494
|
}
|
|
192
495
|
export const QueryClientConnectionsRequest = {
|
|
193
|
-
|
|
496
|
+
typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsRequest",
|
|
497
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
194
498
|
if (message.clientId !== "") {
|
|
195
499
|
writer.uint32(10).string(message.clientId);
|
|
196
500
|
}
|
|
197
501
|
return writer;
|
|
198
502
|
},
|
|
199
503
|
decode(input, length) {
|
|
200
|
-
const reader = input instanceof
|
|
504
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
201
505
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
202
506
|
const message = createBaseQueryClientConnectionsRequest();
|
|
203
507
|
while (reader.pos < end) {
|
|
@@ -218,17 +522,51 @@ export const QueryClientConnectionsRequest = {
|
|
|
218
522
|
const message = createBaseQueryClientConnectionsRequest();
|
|
219
523
|
message.clientId = (_object$clientId = object.clientId) !== null && _object$clientId !== void 0 ? _object$clientId : "";
|
|
220
524
|
return message;
|
|
525
|
+
},
|
|
526
|
+
fromAmino(object) {
|
|
527
|
+
const message = createBaseQueryClientConnectionsRequest();
|
|
528
|
+
if (object.client_id !== undefined && object.client_id !== null) {
|
|
529
|
+
message.clientId = object.client_id;
|
|
530
|
+
}
|
|
531
|
+
return message;
|
|
532
|
+
},
|
|
533
|
+
toAmino(message) {
|
|
534
|
+
const obj = {};
|
|
535
|
+
obj.client_id = message.clientId;
|
|
536
|
+
return obj;
|
|
537
|
+
},
|
|
538
|
+
fromAminoMsg(object) {
|
|
539
|
+
return QueryClientConnectionsRequest.fromAmino(object.value);
|
|
540
|
+
},
|
|
541
|
+
toAminoMsg(message) {
|
|
542
|
+
return {
|
|
543
|
+
type: "cosmos-sdk/QueryClientConnectionsRequest",
|
|
544
|
+
value: QueryClientConnectionsRequest.toAmino(message)
|
|
545
|
+
};
|
|
546
|
+
},
|
|
547
|
+
fromProtoMsg(message) {
|
|
548
|
+
return QueryClientConnectionsRequest.decode(message.value);
|
|
549
|
+
},
|
|
550
|
+
toProto(message) {
|
|
551
|
+
return QueryClientConnectionsRequest.encode(message).finish();
|
|
552
|
+
},
|
|
553
|
+
toProtoMsg(message) {
|
|
554
|
+
return {
|
|
555
|
+
typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsRequest",
|
|
556
|
+
value: QueryClientConnectionsRequest.encode(message).finish()
|
|
557
|
+
};
|
|
221
558
|
}
|
|
222
559
|
};
|
|
223
560
|
function createBaseQueryClientConnectionsResponse() {
|
|
224
561
|
return {
|
|
225
562
|
connectionPaths: [],
|
|
226
563
|
proof: new Uint8Array(),
|
|
227
|
-
proofHeight:
|
|
564
|
+
proofHeight: Height.fromPartial({})
|
|
228
565
|
};
|
|
229
566
|
}
|
|
230
567
|
export const QueryClientConnectionsResponse = {
|
|
231
|
-
|
|
568
|
+
typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsResponse",
|
|
569
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
232
570
|
for (const v of message.connectionPaths) {
|
|
233
571
|
writer.uint32(10).string(v);
|
|
234
572
|
}
|
|
@@ -241,7 +579,7 @@ export const QueryClientConnectionsResponse = {
|
|
|
241
579
|
return writer;
|
|
242
580
|
},
|
|
243
581
|
decode(input, length) {
|
|
244
|
-
const reader = input instanceof
|
|
582
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
245
583
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
246
584
|
const message = createBaseQueryClientConnectionsResponse();
|
|
247
585
|
while (reader.pos < end) {
|
|
@@ -270,6 +608,50 @@ export const QueryClientConnectionsResponse = {
|
|
|
270
608
|
message.proof = (_object$proof2 = object.proof) !== null && _object$proof2 !== void 0 ? _object$proof2 : new Uint8Array();
|
|
271
609
|
message.proofHeight = object.proofHeight !== undefined && object.proofHeight !== null ? Height.fromPartial(object.proofHeight) : undefined;
|
|
272
610
|
return message;
|
|
611
|
+
},
|
|
612
|
+
fromAmino(object) {
|
|
613
|
+
var _object$connection_pa;
|
|
614
|
+
const message = createBaseQueryClientConnectionsResponse();
|
|
615
|
+
message.connectionPaths = ((_object$connection_pa = object.connection_paths) === null || _object$connection_pa === void 0 ? void 0 : _object$connection_pa.map(e => e)) || [];
|
|
616
|
+
if (object.proof !== undefined && object.proof !== null) {
|
|
617
|
+
message.proof = bytesFromBase64(object.proof);
|
|
618
|
+
}
|
|
619
|
+
if (object.proof_height !== undefined && object.proof_height !== null) {
|
|
620
|
+
message.proofHeight = Height.fromAmino(object.proof_height);
|
|
621
|
+
}
|
|
622
|
+
return message;
|
|
623
|
+
},
|
|
624
|
+
toAmino(message) {
|
|
625
|
+
const obj = {};
|
|
626
|
+
if (message.connectionPaths) {
|
|
627
|
+
obj.connection_paths = message.connectionPaths.map(e => e);
|
|
628
|
+
} else {
|
|
629
|
+
obj.connection_paths = [];
|
|
630
|
+
}
|
|
631
|
+
obj.proof = message.proof ? base64FromBytes(message.proof) : undefined;
|
|
632
|
+
obj.proof_height = message.proofHeight ? Height.toAmino(message.proofHeight) : {};
|
|
633
|
+
return obj;
|
|
634
|
+
},
|
|
635
|
+
fromAminoMsg(object) {
|
|
636
|
+
return QueryClientConnectionsResponse.fromAmino(object.value);
|
|
637
|
+
},
|
|
638
|
+
toAminoMsg(message) {
|
|
639
|
+
return {
|
|
640
|
+
type: "cosmos-sdk/QueryClientConnectionsResponse",
|
|
641
|
+
value: QueryClientConnectionsResponse.toAmino(message)
|
|
642
|
+
};
|
|
643
|
+
},
|
|
644
|
+
fromProtoMsg(message) {
|
|
645
|
+
return QueryClientConnectionsResponse.decode(message.value);
|
|
646
|
+
},
|
|
647
|
+
toProto(message) {
|
|
648
|
+
return QueryClientConnectionsResponse.encode(message).finish();
|
|
649
|
+
},
|
|
650
|
+
toProtoMsg(message) {
|
|
651
|
+
return {
|
|
652
|
+
typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsResponse",
|
|
653
|
+
value: QueryClientConnectionsResponse.encode(message).finish()
|
|
654
|
+
};
|
|
273
655
|
}
|
|
274
656
|
};
|
|
275
657
|
function createBaseQueryConnectionClientStateRequest() {
|
|
@@ -278,14 +660,15 @@ function createBaseQueryConnectionClientStateRequest() {
|
|
|
278
660
|
};
|
|
279
661
|
}
|
|
280
662
|
export const QueryConnectionClientStateRequest = {
|
|
281
|
-
|
|
663
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateRequest",
|
|
664
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
282
665
|
if (message.connectionId !== "") {
|
|
283
666
|
writer.uint32(10).string(message.connectionId);
|
|
284
667
|
}
|
|
285
668
|
return writer;
|
|
286
669
|
},
|
|
287
670
|
decode(input, length) {
|
|
288
|
-
const reader = input instanceof
|
|
671
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
289
672
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
290
673
|
const message = createBaseQueryConnectionClientStateRequest();
|
|
291
674
|
while (reader.pos < end) {
|
|
@@ -306,17 +689,51 @@ export const QueryConnectionClientStateRequest = {
|
|
|
306
689
|
const message = createBaseQueryConnectionClientStateRequest();
|
|
307
690
|
message.connectionId = (_object$connectionId2 = object.connectionId) !== null && _object$connectionId2 !== void 0 ? _object$connectionId2 : "";
|
|
308
691
|
return message;
|
|
692
|
+
},
|
|
693
|
+
fromAmino(object) {
|
|
694
|
+
const message = createBaseQueryConnectionClientStateRequest();
|
|
695
|
+
if (object.connection_id !== undefined && object.connection_id !== null) {
|
|
696
|
+
message.connectionId = object.connection_id;
|
|
697
|
+
}
|
|
698
|
+
return message;
|
|
699
|
+
},
|
|
700
|
+
toAmino(message) {
|
|
701
|
+
const obj = {};
|
|
702
|
+
obj.connection_id = message.connectionId;
|
|
703
|
+
return obj;
|
|
704
|
+
},
|
|
705
|
+
fromAminoMsg(object) {
|
|
706
|
+
return QueryConnectionClientStateRequest.fromAmino(object.value);
|
|
707
|
+
},
|
|
708
|
+
toAminoMsg(message) {
|
|
709
|
+
return {
|
|
710
|
+
type: "cosmos-sdk/QueryConnectionClientStateRequest",
|
|
711
|
+
value: QueryConnectionClientStateRequest.toAmino(message)
|
|
712
|
+
};
|
|
713
|
+
},
|
|
714
|
+
fromProtoMsg(message) {
|
|
715
|
+
return QueryConnectionClientStateRequest.decode(message.value);
|
|
716
|
+
},
|
|
717
|
+
toProto(message) {
|
|
718
|
+
return QueryConnectionClientStateRequest.encode(message).finish();
|
|
719
|
+
},
|
|
720
|
+
toProtoMsg(message) {
|
|
721
|
+
return {
|
|
722
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateRequest",
|
|
723
|
+
value: QueryConnectionClientStateRequest.encode(message).finish()
|
|
724
|
+
};
|
|
309
725
|
}
|
|
310
726
|
};
|
|
311
727
|
function createBaseQueryConnectionClientStateResponse() {
|
|
312
728
|
return {
|
|
313
729
|
identifiedClientState: undefined,
|
|
314
730
|
proof: new Uint8Array(),
|
|
315
|
-
proofHeight:
|
|
731
|
+
proofHeight: Height.fromPartial({})
|
|
316
732
|
};
|
|
317
733
|
}
|
|
318
734
|
export const QueryConnectionClientStateResponse = {
|
|
319
|
-
|
|
735
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateResponse",
|
|
736
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
320
737
|
if (message.identifiedClientState !== undefined) {
|
|
321
738
|
IdentifiedClientState.encode(message.identifiedClientState, writer.uint32(10).fork()).ldelim();
|
|
322
739
|
}
|
|
@@ -329,7 +746,7 @@ export const QueryConnectionClientStateResponse = {
|
|
|
329
746
|
return writer;
|
|
330
747
|
},
|
|
331
748
|
decode(input, length) {
|
|
332
|
-
const reader = input instanceof
|
|
749
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
333
750
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
334
751
|
const message = createBaseQueryConnectionClientStateResponse();
|
|
335
752
|
while (reader.pos < end) {
|
|
@@ -358,30 +775,72 @@ export const QueryConnectionClientStateResponse = {
|
|
|
358
775
|
message.proof = (_object$proof3 = object.proof) !== null && _object$proof3 !== void 0 ? _object$proof3 : new Uint8Array();
|
|
359
776
|
message.proofHeight = object.proofHeight !== undefined && object.proofHeight !== null ? Height.fromPartial(object.proofHeight) : undefined;
|
|
360
777
|
return message;
|
|
778
|
+
},
|
|
779
|
+
fromAmino(object) {
|
|
780
|
+
const message = createBaseQueryConnectionClientStateResponse();
|
|
781
|
+
if (object.identified_client_state !== undefined && object.identified_client_state !== null) {
|
|
782
|
+
message.identifiedClientState = IdentifiedClientState.fromAmino(object.identified_client_state);
|
|
783
|
+
}
|
|
784
|
+
if (object.proof !== undefined && object.proof !== null) {
|
|
785
|
+
message.proof = bytesFromBase64(object.proof);
|
|
786
|
+
}
|
|
787
|
+
if (object.proof_height !== undefined && object.proof_height !== null) {
|
|
788
|
+
message.proofHeight = Height.fromAmino(object.proof_height);
|
|
789
|
+
}
|
|
790
|
+
return message;
|
|
791
|
+
},
|
|
792
|
+
toAmino(message) {
|
|
793
|
+
const obj = {};
|
|
794
|
+
obj.identified_client_state = message.identifiedClientState ? IdentifiedClientState.toAmino(message.identifiedClientState) : undefined;
|
|
795
|
+
obj.proof = message.proof ? base64FromBytes(message.proof) : undefined;
|
|
796
|
+
obj.proof_height = message.proofHeight ? Height.toAmino(message.proofHeight) : {};
|
|
797
|
+
return obj;
|
|
798
|
+
},
|
|
799
|
+
fromAminoMsg(object) {
|
|
800
|
+
return QueryConnectionClientStateResponse.fromAmino(object.value);
|
|
801
|
+
},
|
|
802
|
+
toAminoMsg(message) {
|
|
803
|
+
return {
|
|
804
|
+
type: "cosmos-sdk/QueryConnectionClientStateResponse",
|
|
805
|
+
value: QueryConnectionClientStateResponse.toAmino(message)
|
|
806
|
+
};
|
|
807
|
+
},
|
|
808
|
+
fromProtoMsg(message) {
|
|
809
|
+
return QueryConnectionClientStateResponse.decode(message.value);
|
|
810
|
+
},
|
|
811
|
+
toProto(message) {
|
|
812
|
+
return QueryConnectionClientStateResponse.encode(message).finish();
|
|
813
|
+
},
|
|
814
|
+
toProtoMsg(message) {
|
|
815
|
+
return {
|
|
816
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateResponse",
|
|
817
|
+
value: QueryConnectionClientStateResponse.encode(message).finish()
|
|
818
|
+
};
|
|
361
819
|
}
|
|
362
820
|
};
|
|
363
821
|
function createBaseQueryConnectionConsensusStateRequest() {
|
|
364
822
|
return {
|
|
365
823
|
connectionId: "",
|
|
366
|
-
revisionNumber:
|
|
367
|
-
revisionHeight:
|
|
824
|
+
revisionNumber: BigInt(0),
|
|
825
|
+
revisionHeight: BigInt(0)
|
|
368
826
|
};
|
|
369
827
|
}
|
|
370
828
|
export const QueryConnectionConsensusStateRequest = {
|
|
371
|
-
|
|
829
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateRequest",
|
|
830
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
372
831
|
if (message.connectionId !== "") {
|
|
373
832
|
writer.uint32(10).string(message.connectionId);
|
|
374
833
|
}
|
|
375
|
-
if (
|
|
834
|
+
if (message.revisionNumber !== BigInt(0)) {
|
|
376
835
|
writer.uint32(16).uint64(message.revisionNumber);
|
|
377
836
|
}
|
|
378
|
-
if (
|
|
837
|
+
if (message.revisionHeight !== BigInt(0)) {
|
|
379
838
|
writer.uint32(24).uint64(message.revisionHeight);
|
|
380
839
|
}
|
|
381
840
|
return writer;
|
|
382
841
|
},
|
|
383
842
|
decode(input, length) {
|
|
384
|
-
const reader = input instanceof
|
|
843
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
385
844
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
386
845
|
const message = createBaseQueryConnectionConsensusStateRequest();
|
|
387
846
|
while (reader.pos < end) {
|
|
@@ -407,9 +866,50 @@ export const QueryConnectionConsensusStateRequest = {
|
|
|
407
866
|
var _object$connectionId3;
|
|
408
867
|
const message = createBaseQueryConnectionConsensusStateRequest();
|
|
409
868
|
message.connectionId = (_object$connectionId3 = object.connectionId) !== null && _object$connectionId3 !== void 0 ? _object$connectionId3 : "";
|
|
410
|
-
message.revisionNumber = object.revisionNumber !== undefined && object.revisionNumber !== null ?
|
|
411
|
-
message.revisionHeight = object.revisionHeight !== undefined && object.revisionHeight !== null ?
|
|
869
|
+
message.revisionNumber = object.revisionNumber !== undefined && object.revisionNumber !== null ? BigInt(object.revisionNumber.toString()) : BigInt(0);
|
|
870
|
+
message.revisionHeight = object.revisionHeight !== undefined && object.revisionHeight !== null ? BigInt(object.revisionHeight.toString()) : BigInt(0);
|
|
412
871
|
return message;
|
|
872
|
+
},
|
|
873
|
+
fromAmino(object) {
|
|
874
|
+
const message = createBaseQueryConnectionConsensusStateRequest();
|
|
875
|
+
if (object.connection_id !== undefined && object.connection_id !== null) {
|
|
876
|
+
message.connectionId = object.connection_id;
|
|
877
|
+
}
|
|
878
|
+
if (object.revision_number !== undefined && object.revision_number !== null) {
|
|
879
|
+
message.revisionNumber = BigInt(object.revision_number);
|
|
880
|
+
}
|
|
881
|
+
if (object.revision_height !== undefined && object.revision_height !== null) {
|
|
882
|
+
message.revisionHeight = BigInt(object.revision_height);
|
|
883
|
+
}
|
|
884
|
+
return message;
|
|
885
|
+
},
|
|
886
|
+
toAmino(message) {
|
|
887
|
+
const obj = {};
|
|
888
|
+
obj.connection_id = message.connectionId;
|
|
889
|
+
obj.revision_number = message.revisionNumber ? message.revisionNumber.toString() : undefined;
|
|
890
|
+
obj.revision_height = message.revisionHeight ? message.revisionHeight.toString() : undefined;
|
|
891
|
+
return obj;
|
|
892
|
+
},
|
|
893
|
+
fromAminoMsg(object) {
|
|
894
|
+
return QueryConnectionConsensusStateRequest.fromAmino(object.value);
|
|
895
|
+
},
|
|
896
|
+
toAminoMsg(message) {
|
|
897
|
+
return {
|
|
898
|
+
type: "cosmos-sdk/QueryConnectionConsensusStateRequest",
|
|
899
|
+
value: QueryConnectionConsensusStateRequest.toAmino(message)
|
|
900
|
+
};
|
|
901
|
+
},
|
|
902
|
+
fromProtoMsg(message) {
|
|
903
|
+
return QueryConnectionConsensusStateRequest.decode(message.value);
|
|
904
|
+
},
|
|
905
|
+
toProto(message) {
|
|
906
|
+
return QueryConnectionConsensusStateRequest.encode(message).finish();
|
|
907
|
+
},
|
|
908
|
+
toProtoMsg(message) {
|
|
909
|
+
return {
|
|
910
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateRequest",
|
|
911
|
+
value: QueryConnectionConsensusStateRequest.encode(message).finish()
|
|
912
|
+
};
|
|
413
913
|
}
|
|
414
914
|
};
|
|
415
915
|
function createBaseQueryConnectionConsensusStateResponse() {
|
|
@@ -417,11 +917,12 @@ function createBaseQueryConnectionConsensusStateResponse() {
|
|
|
417
917
|
consensusState: undefined,
|
|
418
918
|
clientId: "",
|
|
419
919
|
proof: new Uint8Array(),
|
|
420
|
-
proofHeight:
|
|
920
|
+
proofHeight: Height.fromPartial({})
|
|
421
921
|
};
|
|
422
922
|
}
|
|
423
923
|
export const QueryConnectionConsensusStateResponse = {
|
|
424
|
-
|
|
924
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateResponse",
|
|
925
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
425
926
|
if (message.consensusState !== undefined) {
|
|
426
927
|
Any.encode(message.consensusState, writer.uint32(10).fork()).ldelim();
|
|
427
928
|
}
|
|
@@ -437,7 +938,7 @@ export const QueryConnectionConsensusStateResponse = {
|
|
|
437
938
|
return writer;
|
|
438
939
|
},
|
|
439
940
|
decode(input, length) {
|
|
440
|
-
const reader = input instanceof
|
|
941
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
441
942
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
442
943
|
const message = createBaseQueryConnectionConsensusStateResponse();
|
|
443
944
|
while (reader.pos < end) {
|
|
@@ -470,5 +971,50 @@ export const QueryConnectionConsensusStateResponse = {
|
|
|
470
971
|
message.proof = (_object$proof4 = object.proof) !== null && _object$proof4 !== void 0 ? _object$proof4 : new Uint8Array();
|
|
471
972
|
message.proofHeight = object.proofHeight !== undefined && object.proofHeight !== null ? Height.fromPartial(object.proofHeight) : undefined;
|
|
472
973
|
return message;
|
|
974
|
+
},
|
|
975
|
+
fromAmino(object) {
|
|
976
|
+
const message = createBaseQueryConnectionConsensusStateResponse();
|
|
977
|
+
if (object.consensus_state !== undefined && object.consensus_state !== null) {
|
|
978
|
+
message.consensusState = Any.fromAmino(object.consensus_state);
|
|
979
|
+
}
|
|
980
|
+
if (object.client_id !== undefined && object.client_id !== null) {
|
|
981
|
+
message.clientId = object.client_id;
|
|
982
|
+
}
|
|
983
|
+
if (object.proof !== undefined && object.proof !== null) {
|
|
984
|
+
message.proof = bytesFromBase64(object.proof);
|
|
985
|
+
}
|
|
986
|
+
if (object.proof_height !== undefined && object.proof_height !== null) {
|
|
987
|
+
message.proofHeight = Height.fromAmino(object.proof_height);
|
|
988
|
+
}
|
|
989
|
+
return message;
|
|
990
|
+
},
|
|
991
|
+
toAmino(message) {
|
|
992
|
+
const obj = {};
|
|
993
|
+
obj.consensus_state = message.consensusState ? Any.toAmino(message.consensusState) : undefined;
|
|
994
|
+
obj.client_id = message.clientId;
|
|
995
|
+
obj.proof = message.proof ? base64FromBytes(message.proof) : undefined;
|
|
996
|
+
obj.proof_height = message.proofHeight ? Height.toAmino(message.proofHeight) : {};
|
|
997
|
+
return obj;
|
|
998
|
+
},
|
|
999
|
+
fromAminoMsg(object) {
|
|
1000
|
+
return QueryConnectionConsensusStateResponse.fromAmino(object.value);
|
|
1001
|
+
},
|
|
1002
|
+
toAminoMsg(message) {
|
|
1003
|
+
return {
|
|
1004
|
+
type: "cosmos-sdk/QueryConnectionConsensusStateResponse",
|
|
1005
|
+
value: QueryConnectionConsensusStateResponse.toAmino(message)
|
|
1006
|
+
};
|
|
1007
|
+
},
|
|
1008
|
+
fromProtoMsg(message) {
|
|
1009
|
+
return QueryConnectionConsensusStateResponse.decode(message.value);
|
|
1010
|
+
},
|
|
1011
|
+
toProto(message) {
|
|
1012
|
+
return QueryConnectionConsensusStateResponse.encode(message).finish();
|
|
1013
|
+
},
|
|
1014
|
+
toProtoMsg(message) {
|
|
1015
|
+
return {
|
|
1016
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateResponse",
|
|
1017
|
+
value: QueryConnectionConsensusStateResponse.encode(message).finish()
|
|
1018
|
+
};
|
|
473
1019
|
}
|
|
474
1020
|
};
|