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
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
-
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
4
3
|
Object.defineProperty(exports, "__esModule", {
|
|
5
4
|
value: true
|
|
6
5
|
});
|
|
@@ -9,28 +8,180 @@ var _pagination = require("../../../../cosmos/base/query/v1beta1/pagination");
|
|
|
9
8
|
var _connection = require("./connection");
|
|
10
9
|
var _client = require("../../client/v1/client");
|
|
11
10
|
var _any = require("../../../../google/protobuf/any");
|
|
12
|
-
var
|
|
11
|
+
var _binary = require("../../../../binary");
|
|
13
12
|
var _helpers = require("../../../../helpers");
|
|
14
|
-
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
15
|
-
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
16
13
|
function _createForOfIteratorHelper(o, allowArrayLike) { var it = typeof Symbol !== "undefined" && o[Symbol.iterator] || o["@@iterator"]; if (!it) { if (Array.isArray(o) || (it = _unsupportedIterableToArray(o)) || allowArrayLike && o && typeof o.length === "number") { if (it) o = it; var i = 0; var F = function F() {}; return { s: F, n: function n() { if (i >= o.length) return { done: true }; return { done: false, value: o[i++] }; }, e: function e(_e) { throw _e; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var normalCompletion = true, didErr = false, err; return { s: function s() { it = it.call(o); }, n: function n() { var step = it.next(); normalCompletion = step.done; return step; }, e: function e(_e2) { didErr = true; err = _e2; }, f: function f() { try { if (!normalCompletion && it["return"] != null) it["return"](); } finally { if (didErr) throw err; } } }; }
|
|
17
14
|
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
18
|
-
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++)
|
|
15
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
|
|
16
|
+
/**
|
|
17
|
+
* QueryConnectionRequest is the request type for the Query/Connection RPC
|
|
18
|
+
* method
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* QueryConnectionRequest is the request type for the Query/Connection RPC
|
|
23
|
+
* method
|
|
24
|
+
*/
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* QueryConnectionRequest is the request type for the Query/Connection RPC
|
|
28
|
+
* method
|
|
29
|
+
*/
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* QueryConnectionResponse is the response type for the Query/Connection RPC
|
|
33
|
+
* method. Besides the connection end, it includes a proof and the height from
|
|
34
|
+
* which the proof was retrieved.
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* QueryConnectionResponse is the response type for the Query/Connection RPC
|
|
39
|
+
* method. Besides the connection end, it includes a proof and the height from
|
|
40
|
+
* which the proof was retrieved.
|
|
41
|
+
*/
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* QueryConnectionResponse is the response type for the Query/Connection RPC
|
|
45
|
+
* method. Besides the connection end, it includes a proof and the height from
|
|
46
|
+
* which the proof was retrieved.
|
|
47
|
+
*/
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* QueryConnectionsRequest is the request type for the Query/Connections RPC
|
|
51
|
+
* method
|
|
52
|
+
*/
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* QueryConnectionsRequest is the request type for the Query/Connections RPC
|
|
56
|
+
* method
|
|
57
|
+
*/
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* QueryConnectionsRequest is the request type for the Query/Connections RPC
|
|
61
|
+
* method
|
|
62
|
+
*/
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* QueryConnectionsResponse is the response type for the Query/Connections RPC
|
|
66
|
+
* method.
|
|
67
|
+
*/
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* QueryConnectionsResponse is the response type for the Query/Connections RPC
|
|
71
|
+
* method.
|
|
72
|
+
*/
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* QueryConnectionsResponse is the response type for the Query/Connections RPC
|
|
76
|
+
* method.
|
|
77
|
+
*/
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* QueryClientConnectionsRequest is the request type for the
|
|
81
|
+
* Query/ClientConnections RPC method
|
|
82
|
+
*/
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* QueryClientConnectionsRequest is the request type for the
|
|
86
|
+
* Query/ClientConnections RPC method
|
|
87
|
+
*/
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* QueryClientConnectionsRequest is the request type for the
|
|
91
|
+
* Query/ClientConnections RPC method
|
|
92
|
+
*/
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* QueryClientConnectionsResponse is the response type for the
|
|
96
|
+
* Query/ClientConnections RPC method
|
|
97
|
+
*/
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* QueryClientConnectionsResponse is the response type for the
|
|
101
|
+
* Query/ClientConnections RPC method
|
|
102
|
+
*/
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* QueryClientConnectionsResponse is the response type for the
|
|
106
|
+
* Query/ClientConnections RPC method
|
|
107
|
+
*/
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* QueryConnectionClientStateRequest is the request type for the
|
|
111
|
+
* Query/ConnectionClientState RPC method
|
|
112
|
+
*/
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* QueryConnectionClientStateRequest is the request type for the
|
|
116
|
+
* Query/ConnectionClientState RPC method
|
|
117
|
+
*/
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* QueryConnectionClientStateRequest is the request type for the
|
|
121
|
+
* Query/ConnectionClientState RPC method
|
|
122
|
+
*/
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* QueryConnectionClientStateResponse is the response type for the
|
|
126
|
+
* Query/ConnectionClientState RPC method
|
|
127
|
+
*/
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* QueryConnectionClientStateResponse is the response type for the
|
|
131
|
+
* Query/ConnectionClientState RPC method
|
|
132
|
+
*/
|
|
133
|
+
|
|
134
|
+
/**
|
|
135
|
+
* QueryConnectionClientStateResponse is the response type for the
|
|
136
|
+
* Query/ConnectionClientState RPC method
|
|
137
|
+
*/
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
* QueryConnectionConsensusStateRequest is the request type for the
|
|
141
|
+
* Query/ConnectionConsensusState RPC method
|
|
142
|
+
*/
|
|
143
|
+
|
|
144
|
+
/**
|
|
145
|
+
* QueryConnectionConsensusStateRequest is the request type for the
|
|
146
|
+
* Query/ConnectionConsensusState RPC method
|
|
147
|
+
*/
|
|
148
|
+
|
|
149
|
+
/**
|
|
150
|
+
* QueryConnectionConsensusStateRequest is the request type for the
|
|
151
|
+
* Query/ConnectionConsensusState RPC method
|
|
152
|
+
*/
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* QueryConnectionConsensusStateResponse is the response type for the
|
|
156
|
+
* Query/ConnectionConsensusState RPC method
|
|
157
|
+
*/
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* QueryConnectionConsensusStateResponse is the response type for the
|
|
161
|
+
* Query/ConnectionConsensusState RPC method
|
|
162
|
+
*/
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
* QueryConnectionConsensusStateResponse is the response type for the
|
|
166
|
+
* Query/ConnectionConsensusState RPC method
|
|
167
|
+
*/
|
|
168
|
+
|
|
19
169
|
function createBaseQueryConnectionRequest() {
|
|
20
170
|
return {
|
|
21
171
|
connectionId: ""
|
|
22
172
|
};
|
|
23
173
|
}
|
|
24
174
|
var QueryConnectionRequest = {
|
|
175
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionRequest",
|
|
25
176
|
encode: function encode(message) {
|
|
26
|
-
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] :
|
|
177
|
+
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _binary.BinaryWriter.create();
|
|
27
178
|
if (message.connectionId !== "") {
|
|
28
179
|
writer.uint32(10).string(message.connectionId);
|
|
29
180
|
}
|
|
30
181
|
return writer;
|
|
31
182
|
},
|
|
32
183
|
decode: function decode(input, length) {
|
|
33
|
-
var reader = input instanceof
|
|
184
|
+
var reader = input instanceof _binary.BinaryReader ? input : new _binary.BinaryReader(input);
|
|
34
185
|
var end = length === undefined ? reader.len : reader.pos + length;
|
|
35
186
|
var message = createBaseQueryConnectionRequest();
|
|
36
187
|
while (reader.pos < end) {
|
|
@@ -51,6 +202,39 @@ var QueryConnectionRequest = {
|
|
|
51
202
|
var message = createBaseQueryConnectionRequest();
|
|
52
203
|
message.connectionId = (_object$connectionId = object.connectionId) !== null && _object$connectionId !== void 0 ? _object$connectionId : "";
|
|
53
204
|
return message;
|
|
205
|
+
},
|
|
206
|
+
fromAmino: function fromAmino(object) {
|
|
207
|
+
var message = createBaseQueryConnectionRequest();
|
|
208
|
+
if (object.connection_id !== undefined && object.connection_id !== null) {
|
|
209
|
+
message.connectionId = object.connection_id;
|
|
210
|
+
}
|
|
211
|
+
return message;
|
|
212
|
+
},
|
|
213
|
+
toAmino: function toAmino(message) {
|
|
214
|
+
var obj = {};
|
|
215
|
+
obj.connection_id = message.connectionId;
|
|
216
|
+
return obj;
|
|
217
|
+
},
|
|
218
|
+
fromAminoMsg: function fromAminoMsg(object) {
|
|
219
|
+
return QueryConnectionRequest.fromAmino(object.value);
|
|
220
|
+
},
|
|
221
|
+
toAminoMsg: function toAminoMsg(message) {
|
|
222
|
+
return {
|
|
223
|
+
type: "cosmos-sdk/QueryConnectionRequest",
|
|
224
|
+
value: QueryConnectionRequest.toAmino(message)
|
|
225
|
+
};
|
|
226
|
+
},
|
|
227
|
+
fromProtoMsg: function fromProtoMsg(message) {
|
|
228
|
+
return QueryConnectionRequest.decode(message.value);
|
|
229
|
+
},
|
|
230
|
+
toProto: function toProto(message) {
|
|
231
|
+
return QueryConnectionRequest.encode(message).finish();
|
|
232
|
+
},
|
|
233
|
+
toProtoMsg: function toProtoMsg(message) {
|
|
234
|
+
return {
|
|
235
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionRequest",
|
|
236
|
+
value: QueryConnectionRequest.encode(message).finish()
|
|
237
|
+
};
|
|
54
238
|
}
|
|
55
239
|
};
|
|
56
240
|
exports.QueryConnectionRequest = QueryConnectionRequest;
|
|
@@ -58,12 +242,13 @@ function createBaseQueryConnectionResponse() {
|
|
|
58
242
|
return {
|
|
59
243
|
connection: undefined,
|
|
60
244
|
proof: new Uint8Array(),
|
|
61
|
-
proofHeight:
|
|
245
|
+
proofHeight: _client.Height.fromPartial({})
|
|
62
246
|
};
|
|
63
247
|
}
|
|
64
248
|
var QueryConnectionResponse = {
|
|
249
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionResponse",
|
|
65
250
|
encode: function encode(message) {
|
|
66
|
-
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] :
|
|
251
|
+
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _binary.BinaryWriter.create();
|
|
67
252
|
if (message.connection !== undefined) {
|
|
68
253
|
_connection.ConnectionEnd.encode(message.connection, writer.uint32(10).fork()).ldelim();
|
|
69
254
|
}
|
|
@@ -76,7 +261,7 @@ var QueryConnectionResponse = {
|
|
|
76
261
|
return writer;
|
|
77
262
|
},
|
|
78
263
|
decode: function decode(input, length) {
|
|
79
|
-
var reader = input instanceof
|
|
264
|
+
var reader = input instanceof _binary.BinaryReader ? input : new _binary.BinaryReader(input);
|
|
80
265
|
var end = length === undefined ? reader.len : reader.pos + length;
|
|
81
266
|
var message = createBaseQueryConnectionResponse();
|
|
82
267
|
while (reader.pos < end) {
|
|
@@ -105,6 +290,47 @@ var QueryConnectionResponse = {
|
|
|
105
290
|
message.proof = (_object$proof = object.proof) !== null && _object$proof !== void 0 ? _object$proof : new Uint8Array();
|
|
106
291
|
message.proofHeight = object.proofHeight !== undefined && object.proofHeight !== null ? _client.Height.fromPartial(object.proofHeight) : undefined;
|
|
107
292
|
return message;
|
|
293
|
+
},
|
|
294
|
+
fromAmino: function fromAmino(object) {
|
|
295
|
+
var message = createBaseQueryConnectionResponse();
|
|
296
|
+
if (object.connection !== undefined && object.connection !== null) {
|
|
297
|
+
message.connection = _connection.ConnectionEnd.fromAmino(object.connection);
|
|
298
|
+
}
|
|
299
|
+
if (object.proof !== undefined && object.proof !== null) {
|
|
300
|
+
message.proof = (0, _helpers.bytesFromBase64)(object.proof);
|
|
301
|
+
}
|
|
302
|
+
if (object.proof_height !== undefined && object.proof_height !== null) {
|
|
303
|
+
message.proofHeight = _client.Height.fromAmino(object.proof_height);
|
|
304
|
+
}
|
|
305
|
+
return message;
|
|
306
|
+
},
|
|
307
|
+
toAmino: function toAmino(message) {
|
|
308
|
+
var obj = {};
|
|
309
|
+
obj.connection = message.connection ? _connection.ConnectionEnd.toAmino(message.connection) : undefined;
|
|
310
|
+
obj.proof = message.proof ? (0, _helpers.base64FromBytes)(message.proof) : undefined;
|
|
311
|
+
obj.proof_height = message.proofHeight ? _client.Height.toAmino(message.proofHeight) : {};
|
|
312
|
+
return obj;
|
|
313
|
+
},
|
|
314
|
+
fromAminoMsg: function fromAminoMsg(object) {
|
|
315
|
+
return QueryConnectionResponse.fromAmino(object.value);
|
|
316
|
+
},
|
|
317
|
+
toAminoMsg: function toAminoMsg(message) {
|
|
318
|
+
return {
|
|
319
|
+
type: "cosmos-sdk/QueryConnectionResponse",
|
|
320
|
+
value: QueryConnectionResponse.toAmino(message)
|
|
321
|
+
};
|
|
322
|
+
},
|
|
323
|
+
fromProtoMsg: function fromProtoMsg(message) {
|
|
324
|
+
return QueryConnectionResponse.decode(message.value);
|
|
325
|
+
},
|
|
326
|
+
toProto: function toProto(message) {
|
|
327
|
+
return QueryConnectionResponse.encode(message).finish();
|
|
328
|
+
},
|
|
329
|
+
toProtoMsg: function toProtoMsg(message) {
|
|
330
|
+
return {
|
|
331
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionResponse",
|
|
332
|
+
value: QueryConnectionResponse.encode(message).finish()
|
|
333
|
+
};
|
|
108
334
|
}
|
|
109
335
|
};
|
|
110
336
|
exports.QueryConnectionResponse = QueryConnectionResponse;
|
|
@@ -114,15 +340,16 @@ function createBaseQueryConnectionsRequest() {
|
|
|
114
340
|
};
|
|
115
341
|
}
|
|
116
342
|
var QueryConnectionsRequest = {
|
|
343
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionsRequest",
|
|
117
344
|
encode: function encode(message) {
|
|
118
|
-
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] :
|
|
345
|
+
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _binary.BinaryWriter.create();
|
|
119
346
|
if (message.pagination !== undefined) {
|
|
120
347
|
_pagination.PageRequest.encode(message.pagination, writer.uint32(10).fork()).ldelim();
|
|
121
348
|
}
|
|
122
349
|
return writer;
|
|
123
350
|
},
|
|
124
351
|
decode: function decode(input, length) {
|
|
125
|
-
var reader = input instanceof
|
|
352
|
+
var reader = input instanceof _binary.BinaryReader ? input : new _binary.BinaryReader(input);
|
|
126
353
|
var end = length === undefined ? reader.len : reader.pos + length;
|
|
127
354
|
var message = createBaseQueryConnectionsRequest();
|
|
128
355
|
while (reader.pos < end) {
|
|
@@ -142,6 +369,39 @@ var QueryConnectionsRequest = {
|
|
|
142
369
|
var message = createBaseQueryConnectionsRequest();
|
|
143
370
|
message.pagination = object.pagination !== undefined && object.pagination !== null ? _pagination.PageRequest.fromPartial(object.pagination) : undefined;
|
|
144
371
|
return message;
|
|
372
|
+
},
|
|
373
|
+
fromAmino: function fromAmino(object) {
|
|
374
|
+
var message = createBaseQueryConnectionsRequest();
|
|
375
|
+
if (object.pagination !== undefined && object.pagination !== null) {
|
|
376
|
+
message.pagination = _pagination.PageRequest.fromAmino(object.pagination);
|
|
377
|
+
}
|
|
378
|
+
return message;
|
|
379
|
+
},
|
|
380
|
+
toAmino: function toAmino(message) {
|
|
381
|
+
var obj = {};
|
|
382
|
+
obj.pagination = message.pagination ? _pagination.PageRequest.toAmino(message.pagination) : undefined;
|
|
383
|
+
return obj;
|
|
384
|
+
},
|
|
385
|
+
fromAminoMsg: function fromAminoMsg(object) {
|
|
386
|
+
return QueryConnectionsRequest.fromAmino(object.value);
|
|
387
|
+
},
|
|
388
|
+
toAminoMsg: function toAminoMsg(message) {
|
|
389
|
+
return {
|
|
390
|
+
type: "cosmos-sdk/QueryConnectionsRequest",
|
|
391
|
+
value: QueryConnectionsRequest.toAmino(message)
|
|
392
|
+
};
|
|
393
|
+
},
|
|
394
|
+
fromProtoMsg: function fromProtoMsg(message) {
|
|
395
|
+
return QueryConnectionsRequest.decode(message.value);
|
|
396
|
+
},
|
|
397
|
+
toProto: function toProto(message) {
|
|
398
|
+
return QueryConnectionsRequest.encode(message).finish();
|
|
399
|
+
},
|
|
400
|
+
toProtoMsg: function toProtoMsg(message) {
|
|
401
|
+
return {
|
|
402
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionsRequest",
|
|
403
|
+
value: QueryConnectionsRequest.encode(message).finish()
|
|
404
|
+
};
|
|
145
405
|
}
|
|
146
406
|
};
|
|
147
407
|
exports.QueryConnectionsRequest = QueryConnectionsRequest;
|
|
@@ -149,12 +409,13 @@ function createBaseQueryConnectionsResponse() {
|
|
|
149
409
|
return {
|
|
150
410
|
connections: [],
|
|
151
411
|
pagination: undefined,
|
|
152
|
-
height:
|
|
412
|
+
height: _client.Height.fromPartial({})
|
|
153
413
|
};
|
|
154
414
|
}
|
|
155
415
|
var QueryConnectionsResponse = {
|
|
416
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionsResponse",
|
|
156
417
|
encode: function encode(message) {
|
|
157
|
-
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] :
|
|
418
|
+
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _binary.BinaryWriter.create();
|
|
158
419
|
var _iterator = _createForOfIteratorHelper(message.connections),
|
|
159
420
|
_step;
|
|
160
421
|
try {
|
|
@@ -176,7 +437,7 @@ var QueryConnectionsResponse = {
|
|
|
176
437
|
return writer;
|
|
177
438
|
},
|
|
178
439
|
decode: function decode(input, length) {
|
|
179
|
-
var reader = input instanceof
|
|
440
|
+
var reader = input instanceof _binary.BinaryReader ? input : new _binary.BinaryReader(input);
|
|
180
441
|
var end = length === undefined ? reader.len : reader.pos + length;
|
|
181
442
|
var message = createBaseQueryConnectionsResponse();
|
|
182
443
|
while (reader.pos < end) {
|
|
@@ -207,6 +468,54 @@ var QueryConnectionsResponse = {
|
|
|
207
468
|
message.pagination = object.pagination !== undefined && object.pagination !== null ? _pagination.PageResponse.fromPartial(object.pagination) : undefined;
|
|
208
469
|
message.height = object.height !== undefined && object.height !== null ? _client.Height.fromPartial(object.height) : undefined;
|
|
209
470
|
return message;
|
|
471
|
+
},
|
|
472
|
+
fromAmino: function fromAmino(object) {
|
|
473
|
+
var _object$connections2;
|
|
474
|
+
var message = createBaseQueryConnectionsResponse();
|
|
475
|
+
message.connections = ((_object$connections2 = object.connections) === null || _object$connections2 === void 0 ? void 0 : _object$connections2.map(function (e) {
|
|
476
|
+
return _connection.IdentifiedConnection.fromAmino(e);
|
|
477
|
+
})) || [];
|
|
478
|
+
if (object.pagination !== undefined && object.pagination !== null) {
|
|
479
|
+
message.pagination = _pagination.PageResponse.fromAmino(object.pagination);
|
|
480
|
+
}
|
|
481
|
+
if (object.height !== undefined && object.height !== null) {
|
|
482
|
+
message.height = _client.Height.fromAmino(object.height);
|
|
483
|
+
}
|
|
484
|
+
return message;
|
|
485
|
+
},
|
|
486
|
+
toAmino: function toAmino(message) {
|
|
487
|
+
var obj = {};
|
|
488
|
+
if (message.connections) {
|
|
489
|
+
obj.connections = message.connections.map(function (e) {
|
|
490
|
+
return e ? _connection.IdentifiedConnection.toAmino(e) : undefined;
|
|
491
|
+
});
|
|
492
|
+
} else {
|
|
493
|
+
obj.connections = [];
|
|
494
|
+
}
|
|
495
|
+
obj.pagination = message.pagination ? _pagination.PageResponse.toAmino(message.pagination) : undefined;
|
|
496
|
+
obj.height = message.height ? _client.Height.toAmino(message.height) : {};
|
|
497
|
+
return obj;
|
|
498
|
+
},
|
|
499
|
+
fromAminoMsg: function fromAminoMsg(object) {
|
|
500
|
+
return QueryConnectionsResponse.fromAmino(object.value);
|
|
501
|
+
},
|
|
502
|
+
toAminoMsg: function toAminoMsg(message) {
|
|
503
|
+
return {
|
|
504
|
+
type: "cosmos-sdk/QueryConnectionsResponse",
|
|
505
|
+
value: QueryConnectionsResponse.toAmino(message)
|
|
506
|
+
};
|
|
507
|
+
},
|
|
508
|
+
fromProtoMsg: function fromProtoMsg(message) {
|
|
509
|
+
return QueryConnectionsResponse.decode(message.value);
|
|
510
|
+
},
|
|
511
|
+
toProto: function toProto(message) {
|
|
512
|
+
return QueryConnectionsResponse.encode(message).finish();
|
|
513
|
+
},
|
|
514
|
+
toProtoMsg: function toProtoMsg(message) {
|
|
515
|
+
return {
|
|
516
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionsResponse",
|
|
517
|
+
value: QueryConnectionsResponse.encode(message).finish()
|
|
518
|
+
};
|
|
210
519
|
}
|
|
211
520
|
};
|
|
212
521
|
exports.QueryConnectionsResponse = QueryConnectionsResponse;
|
|
@@ -216,15 +525,16 @@ function createBaseQueryClientConnectionsRequest() {
|
|
|
216
525
|
};
|
|
217
526
|
}
|
|
218
527
|
var QueryClientConnectionsRequest = {
|
|
528
|
+
typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsRequest",
|
|
219
529
|
encode: function encode(message) {
|
|
220
|
-
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] :
|
|
530
|
+
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _binary.BinaryWriter.create();
|
|
221
531
|
if (message.clientId !== "") {
|
|
222
532
|
writer.uint32(10).string(message.clientId);
|
|
223
533
|
}
|
|
224
534
|
return writer;
|
|
225
535
|
},
|
|
226
536
|
decode: function decode(input, length) {
|
|
227
|
-
var reader = input instanceof
|
|
537
|
+
var reader = input instanceof _binary.BinaryReader ? input : new _binary.BinaryReader(input);
|
|
228
538
|
var end = length === undefined ? reader.len : reader.pos + length;
|
|
229
539
|
var message = createBaseQueryClientConnectionsRequest();
|
|
230
540
|
while (reader.pos < end) {
|
|
@@ -245,6 +555,39 @@ var QueryClientConnectionsRequest = {
|
|
|
245
555
|
var message = createBaseQueryClientConnectionsRequest();
|
|
246
556
|
message.clientId = (_object$clientId = object.clientId) !== null && _object$clientId !== void 0 ? _object$clientId : "";
|
|
247
557
|
return message;
|
|
558
|
+
},
|
|
559
|
+
fromAmino: function fromAmino(object) {
|
|
560
|
+
var message = createBaseQueryClientConnectionsRequest();
|
|
561
|
+
if (object.client_id !== undefined && object.client_id !== null) {
|
|
562
|
+
message.clientId = object.client_id;
|
|
563
|
+
}
|
|
564
|
+
return message;
|
|
565
|
+
},
|
|
566
|
+
toAmino: function toAmino(message) {
|
|
567
|
+
var obj = {};
|
|
568
|
+
obj.client_id = message.clientId;
|
|
569
|
+
return obj;
|
|
570
|
+
},
|
|
571
|
+
fromAminoMsg: function fromAminoMsg(object) {
|
|
572
|
+
return QueryClientConnectionsRequest.fromAmino(object.value);
|
|
573
|
+
},
|
|
574
|
+
toAminoMsg: function toAminoMsg(message) {
|
|
575
|
+
return {
|
|
576
|
+
type: "cosmos-sdk/QueryClientConnectionsRequest",
|
|
577
|
+
value: QueryClientConnectionsRequest.toAmino(message)
|
|
578
|
+
};
|
|
579
|
+
},
|
|
580
|
+
fromProtoMsg: function fromProtoMsg(message) {
|
|
581
|
+
return QueryClientConnectionsRequest.decode(message.value);
|
|
582
|
+
},
|
|
583
|
+
toProto: function toProto(message) {
|
|
584
|
+
return QueryClientConnectionsRequest.encode(message).finish();
|
|
585
|
+
},
|
|
586
|
+
toProtoMsg: function toProtoMsg(message) {
|
|
587
|
+
return {
|
|
588
|
+
typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsRequest",
|
|
589
|
+
value: QueryClientConnectionsRequest.encode(message).finish()
|
|
590
|
+
};
|
|
248
591
|
}
|
|
249
592
|
};
|
|
250
593
|
exports.QueryClientConnectionsRequest = QueryClientConnectionsRequest;
|
|
@@ -252,12 +595,13 @@ function createBaseQueryClientConnectionsResponse() {
|
|
|
252
595
|
return {
|
|
253
596
|
connectionPaths: [],
|
|
254
597
|
proof: new Uint8Array(),
|
|
255
|
-
proofHeight:
|
|
598
|
+
proofHeight: _client.Height.fromPartial({})
|
|
256
599
|
};
|
|
257
600
|
}
|
|
258
601
|
var QueryClientConnectionsResponse = {
|
|
602
|
+
typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsResponse",
|
|
259
603
|
encode: function encode(message) {
|
|
260
|
-
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] :
|
|
604
|
+
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _binary.BinaryWriter.create();
|
|
261
605
|
var _iterator2 = _createForOfIteratorHelper(message.connectionPaths),
|
|
262
606
|
_step2;
|
|
263
607
|
try {
|
|
@@ -279,7 +623,7 @@ var QueryClientConnectionsResponse = {
|
|
|
279
623
|
return writer;
|
|
280
624
|
},
|
|
281
625
|
decode: function decode(input, length) {
|
|
282
|
-
var reader = input instanceof
|
|
626
|
+
var reader = input instanceof _binary.BinaryReader ? input : new _binary.BinaryReader(input);
|
|
283
627
|
var end = length === undefined ? reader.len : reader.pos + length;
|
|
284
628
|
var message = createBaseQueryClientConnectionsResponse();
|
|
285
629
|
while (reader.pos < end) {
|
|
@@ -310,6 +654,54 @@ var QueryClientConnectionsResponse = {
|
|
|
310
654
|
message.proof = (_object$proof2 = object.proof) !== null && _object$proof2 !== void 0 ? _object$proof2 : new Uint8Array();
|
|
311
655
|
message.proofHeight = object.proofHeight !== undefined && object.proofHeight !== null ? _client.Height.fromPartial(object.proofHeight) : undefined;
|
|
312
656
|
return message;
|
|
657
|
+
},
|
|
658
|
+
fromAmino: function fromAmino(object) {
|
|
659
|
+
var _object$connection_pa;
|
|
660
|
+
var message = createBaseQueryClientConnectionsResponse();
|
|
661
|
+
message.connectionPaths = ((_object$connection_pa = object.connection_paths) === null || _object$connection_pa === void 0 ? void 0 : _object$connection_pa.map(function (e) {
|
|
662
|
+
return e;
|
|
663
|
+
})) || [];
|
|
664
|
+
if (object.proof !== undefined && object.proof !== null) {
|
|
665
|
+
message.proof = (0, _helpers.bytesFromBase64)(object.proof);
|
|
666
|
+
}
|
|
667
|
+
if (object.proof_height !== undefined && object.proof_height !== null) {
|
|
668
|
+
message.proofHeight = _client.Height.fromAmino(object.proof_height);
|
|
669
|
+
}
|
|
670
|
+
return message;
|
|
671
|
+
},
|
|
672
|
+
toAmino: function toAmino(message) {
|
|
673
|
+
var obj = {};
|
|
674
|
+
if (message.connectionPaths) {
|
|
675
|
+
obj.connection_paths = message.connectionPaths.map(function (e) {
|
|
676
|
+
return e;
|
|
677
|
+
});
|
|
678
|
+
} else {
|
|
679
|
+
obj.connection_paths = [];
|
|
680
|
+
}
|
|
681
|
+
obj.proof = message.proof ? (0, _helpers.base64FromBytes)(message.proof) : undefined;
|
|
682
|
+
obj.proof_height = message.proofHeight ? _client.Height.toAmino(message.proofHeight) : {};
|
|
683
|
+
return obj;
|
|
684
|
+
},
|
|
685
|
+
fromAminoMsg: function fromAminoMsg(object) {
|
|
686
|
+
return QueryClientConnectionsResponse.fromAmino(object.value);
|
|
687
|
+
},
|
|
688
|
+
toAminoMsg: function toAminoMsg(message) {
|
|
689
|
+
return {
|
|
690
|
+
type: "cosmos-sdk/QueryClientConnectionsResponse",
|
|
691
|
+
value: QueryClientConnectionsResponse.toAmino(message)
|
|
692
|
+
};
|
|
693
|
+
},
|
|
694
|
+
fromProtoMsg: function fromProtoMsg(message) {
|
|
695
|
+
return QueryClientConnectionsResponse.decode(message.value);
|
|
696
|
+
},
|
|
697
|
+
toProto: function toProto(message) {
|
|
698
|
+
return QueryClientConnectionsResponse.encode(message).finish();
|
|
699
|
+
},
|
|
700
|
+
toProtoMsg: function toProtoMsg(message) {
|
|
701
|
+
return {
|
|
702
|
+
typeUrl: "/ibc.core.connection.v1.QueryClientConnectionsResponse",
|
|
703
|
+
value: QueryClientConnectionsResponse.encode(message).finish()
|
|
704
|
+
};
|
|
313
705
|
}
|
|
314
706
|
};
|
|
315
707
|
exports.QueryClientConnectionsResponse = QueryClientConnectionsResponse;
|
|
@@ -319,15 +711,16 @@ function createBaseQueryConnectionClientStateRequest() {
|
|
|
319
711
|
};
|
|
320
712
|
}
|
|
321
713
|
var QueryConnectionClientStateRequest = {
|
|
714
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateRequest",
|
|
322
715
|
encode: function encode(message) {
|
|
323
|
-
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] :
|
|
716
|
+
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _binary.BinaryWriter.create();
|
|
324
717
|
if (message.connectionId !== "") {
|
|
325
718
|
writer.uint32(10).string(message.connectionId);
|
|
326
719
|
}
|
|
327
720
|
return writer;
|
|
328
721
|
},
|
|
329
722
|
decode: function decode(input, length) {
|
|
330
|
-
var reader = input instanceof
|
|
723
|
+
var reader = input instanceof _binary.BinaryReader ? input : new _binary.BinaryReader(input);
|
|
331
724
|
var end = length === undefined ? reader.len : reader.pos + length;
|
|
332
725
|
var message = createBaseQueryConnectionClientStateRequest();
|
|
333
726
|
while (reader.pos < end) {
|
|
@@ -348,6 +741,39 @@ var QueryConnectionClientStateRequest = {
|
|
|
348
741
|
var message = createBaseQueryConnectionClientStateRequest();
|
|
349
742
|
message.connectionId = (_object$connectionId2 = object.connectionId) !== null && _object$connectionId2 !== void 0 ? _object$connectionId2 : "";
|
|
350
743
|
return message;
|
|
744
|
+
},
|
|
745
|
+
fromAmino: function fromAmino(object) {
|
|
746
|
+
var message = createBaseQueryConnectionClientStateRequest();
|
|
747
|
+
if (object.connection_id !== undefined && object.connection_id !== null) {
|
|
748
|
+
message.connectionId = object.connection_id;
|
|
749
|
+
}
|
|
750
|
+
return message;
|
|
751
|
+
},
|
|
752
|
+
toAmino: function toAmino(message) {
|
|
753
|
+
var obj = {};
|
|
754
|
+
obj.connection_id = message.connectionId;
|
|
755
|
+
return obj;
|
|
756
|
+
},
|
|
757
|
+
fromAminoMsg: function fromAminoMsg(object) {
|
|
758
|
+
return QueryConnectionClientStateRequest.fromAmino(object.value);
|
|
759
|
+
},
|
|
760
|
+
toAminoMsg: function toAminoMsg(message) {
|
|
761
|
+
return {
|
|
762
|
+
type: "cosmos-sdk/QueryConnectionClientStateRequest",
|
|
763
|
+
value: QueryConnectionClientStateRequest.toAmino(message)
|
|
764
|
+
};
|
|
765
|
+
},
|
|
766
|
+
fromProtoMsg: function fromProtoMsg(message) {
|
|
767
|
+
return QueryConnectionClientStateRequest.decode(message.value);
|
|
768
|
+
},
|
|
769
|
+
toProto: function toProto(message) {
|
|
770
|
+
return QueryConnectionClientStateRequest.encode(message).finish();
|
|
771
|
+
},
|
|
772
|
+
toProtoMsg: function toProtoMsg(message) {
|
|
773
|
+
return {
|
|
774
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateRequest",
|
|
775
|
+
value: QueryConnectionClientStateRequest.encode(message).finish()
|
|
776
|
+
};
|
|
351
777
|
}
|
|
352
778
|
};
|
|
353
779
|
exports.QueryConnectionClientStateRequest = QueryConnectionClientStateRequest;
|
|
@@ -355,12 +781,13 @@ function createBaseQueryConnectionClientStateResponse() {
|
|
|
355
781
|
return {
|
|
356
782
|
identifiedClientState: undefined,
|
|
357
783
|
proof: new Uint8Array(),
|
|
358
|
-
proofHeight:
|
|
784
|
+
proofHeight: _client.Height.fromPartial({})
|
|
359
785
|
};
|
|
360
786
|
}
|
|
361
787
|
var QueryConnectionClientStateResponse = {
|
|
788
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateResponse",
|
|
362
789
|
encode: function encode(message) {
|
|
363
|
-
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] :
|
|
790
|
+
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _binary.BinaryWriter.create();
|
|
364
791
|
if (message.identifiedClientState !== undefined) {
|
|
365
792
|
_client.IdentifiedClientState.encode(message.identifiedClientState, writer.uint32(10).fork()).ldelim();
|
|
366
793
|
}
|
|
@@ -373,7 +800,7 @@ var QueryConnectionClientStateResponse = {
|
|
|
373
800
|
return writer;
|
|
374
801
|
},
|
|
375
802
|
decode: function decode(input, length) {
|
|
376
|
-
var reader = input instanceof
|
|
803
|
+
var reader = input instanceof _binary.BinaryReader ? input : new _binary.BinaryReader(input);
|
|
377
804
|
var end = length === undefined ? reader.len : reader.pos + length;
|
|
378
805
|
var message = createBaseQueryConnectionClientStateResponse();
|
|
379
806
|
while (reader.pos < end) {
|
|
@@ -402,32 +829,74 @@ var QueryConnectionClientStateResponse = {
|
|
|
402
829
|
message.proof = (_object$proof3 = object.proof) !== null && _object$proof3 !== void 0 ? _object$proof3 : new Uint8Array();
|
|
403
830
|
message.proofHeight = object.proofHeight !== undefined && object.proofHeight !== null ? _client.Height.fromPartial(object.proofHeight) : undefined;
|
|
404
831
|
return message;
|
|
832
|
+
},
|
|
833
|
+
fromAmino: function fromAmino(object) {
|
|
834
|
+
var message = createBaseQueryConnectionClientStateResponse();
|
|
835
|
+
if (object.identified_client_state !== undefined && object.identified_client_state !== null) {
|
|
836
|
+
message.identifiedClientState = _client.IdentifiedClientState.fromAmino(object.identified_client_state);
|
|
837
|
+
}
|
|
838
|
+
if (object.proof !== undefined && object.proof !== null) {
|
|
839
|
+
message.proof = (0, _helpers.bytesFromBase64)(object.proof);
|
|
840
|
+
}
|
|
841
|
+
if (object.proof_height !== undefined && object.proof_height !== null) {
|
|
842
|
+
message.proofHeight = _client.Height.fromAmino(object.proof_height);
|
|
843
|
+
}
|
|
844
|
+
return message;
|
|
845
|
+
},
|
|
846
|
+
toAmino: function toAmino(message) {
|
|
847
|
+
var obj = {};
|
|
848
|
+
obj.identified_client_state = message.identifiedClientState ? _client.IdentifiedClientState.toAmino(message.identifiedClientState) : undefined;
|
|
849
|
+
obj.proof = message.proof ? (0, _helpers.base64FromBytes)(message.proof) : undefined;
|
|
850
|
+
obj.proof_height = message.proofHeight ? _client.Height.toAmino(message.proofHeight) : {};
|
|
851
|
+
return obj;
|
|
852
|
+
},
|
|
853
|
+
fromAminoMsg: function fromAminoMsg(object) {
|
|
854
|
+
return QueryConnectionClientStateResponse.fromAmino(object.value);
|
|
855
|
+
},
|
|
856
|
+
toAminoMsg: function toAminoMsg(message) {
|
|
857
|
+
return {
|
|
858
|
+
type: "cosmos-sdk/QueryConnectionClientStateResponse",
|
|
859
|
+
value: QueryConnectionClientStateResponse.toAmino(message)
|
|
860
|
+
};
|
|
861
|
+
},
|
|
862
|
+
fromProtoMsg: function fromProtoMsg(message) {
|
|
863
|
+
return QueryConnectionClientStateResponse.decode(message.value);
|
|
864
|
+
},
|
|
865
|
+
toProto: function toProto(message) {
|
|
866
|
+
return QueryConnectionClientStateResponse.encode(message).finish();
|
|
867
|
+
},
|
|
868
|
+
toProtoMsg: function toProtoMsg(message) {
|
|
869
|
+
return {
|
|
870
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionClientStateResponse",
|
|
871
|
+
value: QueryConnectionClientStateResponse.encode(message).finish()
|
|
872
|
+
};
|
|
405
873
|
}
|
|
406
874
|
};
|
|
407
875
|
exports.QueryConnectionClientStateResponse = QueryConnectionClientStateResponse;
|
|
408
876
|
function createBaseQueryConnectionConsensusStateRequest() {
|
|
409
877
|
return {
|
|
410
878
|
connectionId: "",
|
|
411
|
-
revisionNumber:
|
|
412
|
-
revisionHeight:
|
|
879
|
+
revisionNumber: BigInt(0),
|
|
880
|
+
revisionHeight: BigInt(0)
|
|
413
881
|
};
|
|
414
882
|
}
|
|
415
883
|
var QueryConnectionConsensusStateRequest = {
|
|
884
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateRequest",
|
|
416
885
|
encode: function encode(message) {
|
|
417
|
-
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] :
|
|
886
|
+
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _binary.BinaryWriter.create();
|
|
418
887
|
if (message.connectionId !== "") {
|
|
419
888
|
writer.uint32(10).string(message.connectionId);
|
|
420
889
|
}
|
|
421
|
-
if (
|
|
890
|
+
if (message.revisionNumber !== BigInt(0)) {
|
|
422
891
|
writer.uint32(16).uint64(message.revisionNumber);
|
|
423
892
|
}
|
|
424
|
-
if (
|
|
893
|
+
if (message.revisionHeight !== BigInt(0)) {
|
|
425
894
|
writer.uint32(24).uint64(message.revisionHeight);
|
|
426
895
|
}
|
|
427
896
|
return writer;
|
|
428
897
|
},
|
|
429
898
|
decode: function decode(input, length) {
|
|
430
|
-
var reader = input instanceof
|
|
899
|
+
var reader = input instanceof _binary.BinaryReader ? input : new _binary.BinaryReader(input);
|
|
431
900
|
var end = length === undefined ? reader.len : reader.pos + length;
|
|
432
901
|
var message = createBaseQueryConnectionConsensusStateRequest();
|
|
433
902
|
while (reader.pos < end) {
|
|
@@ -453,9 +922,50 @@ var QueryConnectionConsensusStateRequest = {
|
|
|
453
922
|
var _object$connectionId3;
|
|
454
923
|
var message = createBaseQueryConnectionConsensusStateRequest();
|
|
455
924
|
message.connectionId = (_object$connectionId3 = object.connectionId) !== null && _object$connectionId3 !== void 0 ? _object$connectionId3 : "";
|
|
456
|
-
message.revisionNumber = object.revisionNumber !== undefined && object.revisionNumber !== null ?
|
|
457
|
-
message.revisionHeight = object.revisionHeight !== undefined && object.revisionHeight !== null ?
|
|
925
|
+
message.revisionNumber = object.revisionNumber !== undefined && object.revisionNumber !== null ? BigInt(object.revisionNumber.toString()) : BigInt(0);
|
|
926
|
+
message.revisionHeight = object.revisionHeight !== undefined && object.revisionHeight !== null ? BigInt(object.revisionHeight.toString()) : BigInt(0);
|
|
458
927
|
return message;
|
|
928
|
+
},
|
|
929
|
+
fromAmino: function fromAmino(object) {
|
|
930
|
+
var message = createBaseQueryConnectionConsensusStateRequest();
|
|
931
|
+
if (object.connection_id !== undefined && object.connection_id !== null) {
|
|
932
|
+
message.connectionId = object.connection_id;
|
|
933
|
+
}
|
|
934
|
+
if (object.revision_number !== undefined && object.revision_number !== null) {
|
|
935
|
+
message.revisionNumber = BigInt(object.revision_number);
|
|
936
|
+
}
|
|
937
|
+
if (object.revision_height !== undefined && object.revision_height !== null) {
|
|
938
|
+
message.revisionHeight = BigInt(object.revision_height);
|
|
939
|
+
}
|
|
940
|
+
return message;
|
|
941
|
+
},
|
|
942
|
+
toAmino: function toAmino(message) {
|
|
943
|
+
var obj = {};
|
|
944
|
+
obj.connection_id = message.connectionId;
|
|
945
|
+
obj.revision_number = message.revisionNumber ? message.revisionNumber.toString() : undefined;
|
|
946
|
+
obj.revision_height = message.revisionHeight ? message.revisionHeight.toString() : undefined;
|
|
947
|
+
return obj;
|
|
948
|
+
},
|
|
949
|
+
fromAminoMsg: function fromAminoMsg(object) {
|
|
950
|
+
return QueryConnectionConsensusStateRequest.fromAmino(object.value);
|
|
951
|
+
},
|
|
952
|
+
toAminoMsg: function toAminoMsg(message) {
|
|
953
|
+
return {
|
|
954
|
+
type: "cosmos-sdk/QueryConnectionConsensusStateRequest",
|
|
955
|
+
value: QueryConnectionConsensusStateRequest.toAmino(message)
|
|
956
|
+
};
|
|
957
|
+
},
|
|
958
|
+
fromProtoMsg: function fromProtoMsg(message) {
|
|
959
|
+
return QueryConnectionConsensusStateRequest.decode(message.value);
|
|
960
|
+
},
|
|
961
|
+
toProto: function toProto(message) {
|
|
962
|
+
return QueryConnectionConsensusStateRequest.encode(message).finish();
|
|
963
|
+
},
|
|
964
|
+
toProtoMsg: function toProtoMsg(message) {
|
|
965
|
+
return {
|
|
966
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateRequest",
|
|
967
|
+
value: QueryConnectionConsensusStateRequest.encode(message).finish()
|
|
968
|
+
};
|
|
459
969
|
}
|
|
460
970
|
};
|
|
461
971
|
exports.QueryConnectionConsensusStateRequest = QueryConnectionConsensusStateRequest;
|
|
@@ -464,12 +974,13 @@ function createBaseQueryConnectionConsensusStateResponse() {
|
|
|
464
974
|
consensusState: undefined,
|
|
465
975
|
clientId: "",
|
|
466
976
|
proof: new Uint8Array(),
|
|
467
|
-
proofHeight:
|
|
977
|
+
proofHeight: _client.Height.fromPartial({})
|
|
468
978
|
};
|
|
469
979
|
}
|
|
470
980
|
var QueryConnectionConsensusStateResponse = {
|
|
981
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateResponse",
|
|
471
982
|
encode: function encode(message) {
|
|
472
|
-
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] :
|
|
983
|
+
var writer = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : _binary.BinaryWriter.create();
|
|
473
984
|
if (message.consensusState !== undefined) {
|
|
474
985
|
_any.Any.encode(message.consensusState, writer.uint32(10).fork()).ldelim();
|
|
475
986
|
}
|
|
@@ -485,7 +996,7 @@ var QueryConnectionConsensusStateResponse = {
|
|
|
485
996
|
return writer;
|
|
486
997
|
},
|
|
487
998
|
decode: function decode(input, length) {
|
|
488
|
-
var reader = input instanceof
|
|
999
|
+
var reader = input instanceof _binary.BinaryReader ? input : new _binary.BinaryReader(input);
|
|
489
1000
|
var end = length === undefined ? reader.len : reader.pos + length;
|
|
490
1001
|
var message = createBaseQueryConnectionConsensusStateResponse();
|
|
491
1002
|
while (reader.pos < end) {
|
|
@@ -518,6 +1029,51 @@ var QueryConnectionConsensusStateResponse = {
|
|
|
518
1029
|
message.proof = (_object$proof4 = object.proof) !== null && _object$proof4 !== void 0 ? _object$proof4 : new Uint8Array();
|
|
519
1030
|
message.proofHeight = object.proofHeight !== undefined && object.proofHeight !== null ? _client.Height.fromPartial(object.proofHeight) : undefined;
|
|
520
1031
|
return message;
|
|
1032
|
+
},
|
|
1033
|
+
fromAmino: function fromAmino(object) {
|
|
1034
|
+
var message = createBaseQueryConnectionConsensusStateResponse();
|
|
1035
|
+
if (object.consensus_state !== undefined && object.consensus_state !== null) {
|
|
1036
|
+
message.consensusState = _any.Any.fromAmino(object.consensus_state);
|
|
1037
|
+
}
|
|
1038
|
+
if (object.client_id !== undefined && object.client_id !== null) {
|
|
1039
|
+
message.clientId = object.client_id;
|
|
1040
|
+
}
|
|
1041
|
+
if (object.proof !== undefined && object.proof !== null) {
|
|
1042
|
+
message.proof = (0, _helpers.bytesFromBase64)(object.proof);
|
|
1043
|
+
}
|
|
1044
|
+
if (object.proof_height !== undefined && object.proof_height !== null) {
|
|
1045
|
+
message.proofHeight = _client.Height.fromAmino(object.proof_height);
|
|
1046
|
+
}
|
|
1047
|
+
return message;
|
|
1048
|
+
},
|
|
1049
|
+
toAmino: function toAmino(message) {
|
|
1050
|
+
var obj = {};
|
|
1051
|
+
obj.consensus_state = message.consensusState ? _any.Any.toAmino(message.consensusState) : undefined;
|
|
1052
|
+
obj.client_id = message.clientId;
|
|
1053
|
+
obj.proof = message.proof ? (0, _helpers.base64FromBytes)(message.proof) : undefined;
|
|
1054
|
+
obj.proof_height = message.proofHeight ? _client.Height.toAmino(message.proofHeight) : {};
|
|
1055
|
+
return obj;
|
|
1056
|
+
},
|
|
1057
|
+
fromAminoMsg: function fromAminoMsg(object) {
|
|
1058
|
+
return QueryConnectionConsensusStateResponse.fromAmino(object.value);
|
|
1059
|
+
},
|
|
1060
|
+
toAminoMsg: function toAminoMsg(message) {
|
|
1061
|
+
return {
|
|
1062
|
+
type: "cosmos-sdk/QueryConnectionConsensusStateResponse",
|
|
1063
|
+
value: QueryConnectionConsensusStateResponse.toAmino(message)
|
|
1064
|
+
};
|
|
1065
|
+
},
|
|
1066
|
+
fromProtoMsg: function fromProtoMsg(message) {
|
|
1067
|
+
return QueryConnectionConsensusStateResponse.decode(message.value);
|
|
1068
|
+
},
|
|
1069
|
+
toProto: function toProto(message) {
|
|
1070
|
+
return QueryConnectionConsensusStateResponse.encode(message).finish();
|
|
1071
|
+
},
|
|
1072
|
+
toProtoMsg: function toProtoMsg(message) {
|
|
1073
|
+
return {
|
|
1074
|
+
typeUrl: "/ibc.core.connection.v1.QueryConnectionConsensusStateResponse",
|
|
1075
|
+
value: QueryConnectionConsensusStateResponse.encode(message).finish()
|
|
1076
|
+
};
|
|
521
1077
|
}
|
|
522
1078
|
};
|
|
523
1079
|
exports.QueryConnectionConsensusStateResponse = QueryConnectionConsensusStateResponse;
|