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,68 +1,39 @@
|
|
|
1
|
-
import { MerklePrefix, MerklePrefixSDKType } from "../../commitment/v1/commitment";
|
|
2
|
-
import
|
|
3
|
-
import { Long, DeepPartial } from "../../../../helpers";
|
|
1
|
+
import { MerklePrefix, MerklePrefixAmino, MerklePrefixSDKType } from "../../commitment/v1/commitment";
|
|
2
|
+
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
4
3
|
/**
|
|
5
4
|
* State defines if a connection is in one of the following states:
|
|
6
5
|
* INIT, TRYOPEN, OPEN or UNINITIALIZED.
|
|
7
6
|
*/
|
|
8
|
-
|
|
9
7
|
export enum State {
|
|
10
8
|
/** STATE_UNINITIALIZED_UNSPECIFIED - Default State */
|
|
11
9
|
STATE_UNINITIALIZED_UNSPECIFIED = 0,
|
|
12
|
-
|
|
13
10
|
/** STATE_INIT - A connection end has just started the opening handshake. */
|
|
14
11
|
STATE_INIT = 1,
|
|
15
|
-
|
|
16
12
|
/**
|
|
17
13
|
* STATE_TRYOPEN - A connection end has acknowledged the handshake step on the counterparty
|
|
18
14
|
* chain.
|
|
19
15
|
*/
|
|
20
16
|
STATE_TRYOPEN = 2,
|
|
21
|
-
|
|
22
|
-
/** STATE_OPEN - A connection end has completed the handshake. */
|
|
23
|
-
STATE_OPEN = 3,
|
|
24
|
-
UNRECOGNIZED = -1,
|
|
25
|
-
}
|
|
26
|
-
/**
|
|
27
|
-
* State defines if a connection is in one of the following states:
|
|
28
|
-
* INIT, TRYOPEN, OPEN or UNINITIALIZED.
|
|
29
|
-
*/
|
|
30
|
-
|
|
31
|
-
export enum StateSDKType {
|
|
32
|
-
/** STATE_UNINITIALIZED_UNSPECIFIED - Default State */
|
|
33
|
-
STATE_UNINITIALIZED_UNSPECIFIED = 0,
|
|
34
|
-
|
|
35
|
-
/** STATE_INIT - A connection end has just started the opening handshake. */
|
|
36
|
-
STATE_INIT = 1,
|
|
37
|
-
|
|
38
|
-
/**
|
|
39
|
-
* STATE_TRYOPEN - A connection end has acknowledged the handshake step on the counterparty
|
|
40
|
-
* chain.
|
|
41
|
-
*/
|
|
42
|
-
STATE_TRYOPEN = 2,
|
|
43
|
-
|
|
44
17
|
/** STATE_OPEN - A connection end has completed the handshake. */
|
|
45
18
|
STATE_OPEN = 3,
|
|
46
19
|
UNRECOGNIZED = -1,
|
|
47
20
|
}
|
|
21
|
+
export const StateSDKType = State;
|
|
22
|
+
export const StateAmino = State;
|
|
48
23
|
export function stateFromJSON(object: any): State {
|
|
49
24
|
switch (object) {
|
|
50
25
|
case 0:
|
|
51
26
|
case "STATE_UNINITIALIZED_UNSPECIFIED":
|
|
52
27
|
return State.STATE_UNINITIALIZED_UNSPECIFIED;
|
|
53
|
-
|
|
54
28
|
case 1:
|
|
55
29
|
case "STATE_INIT":
|
|
56
30
|
return State.STATE_INIT;
|
|
57
|
-
|
|
58
31
|
case 2:
|
|
59
32
|
case "STATE_TRYOPEN":
|
|
60
33
|
return State.STATE_TRYOPEN;
|
|
61
|
-
|
|
62
34
|
case 3:
|
|
63
35
|
case "STATE_OPEN":
|
|
64
36
|
return State.STATE_OPEN;
|
|
65
|
-
|
|
66
37
|
case -1:
|
|
67
38
|
case "UNRECOGNIZED":
|
|
68
39
|
default:
|
|
@@ -73,16 +44,12 @@ export function stateToJSON(object: State): string {
|
|
|
73
44
|
switch (object) {
|
|
74
45
|
case State.STATE_UNINITIALIZED_UNSPECIFIED:
|
|
75
46
|
return "STATE_UNINITIALIZED_UNSPECIFIED";
|
|
76
|
-
|
|
77
47
|
case State.STATE_INIT:
|
|
78
48
|
return "STATE_INIT";
|
|
79
|
-
|
|
80
49
|
case State.STATE_TRYOPEN:
|
|
81
50
|
return "STATE_TRYOPEN";
|
|
82
|
-
|
|
83
51
|
case State.STATE_OPEN:
|
|
84
52
|
return "STATE_OPEN";
|
|
85
|
-
|
|
86
53
|
case State.UNRECOGNIZED:
|
|
87
54
|
default:
|
|
88
55
|
return "UNRECOGNIZED";
|
|
@@ -94,7 +61,6 @@ export function stateToJSON(object: State): string {
|
|
|
94
61
|
* NOTE: there must only be 2 defined ConnectionEnds to establish
|
|
95
62
|
* a connection between two chains.
|
|
96
63
|
*/
|
|
97
|
-
|
|
98
64
|
export interface ConnectionEnd {
|
|
99
65
|
/** client associated with this connection. */
|
|
100
66
|
clientId: string;
|
|
@@ -102,21 +68,21 @@ export interface ConnectionEnd {
|
|
|
102
68
|
* IBC version which can be utilised to determine encodings or protocols for
|
|
103
69
|
* channels or packets utilising this connection.
|
|
104
70
|
*/
|
|
105
|
-
|
|
106
71
|
versions: Version[];
|
|
107
72
|
/** current state of the connection end. */
|
|
108
|
-
|
|
109
73
|
state: State;
|
|
110
74
|
/** counterparty chain associated with this connection. */
|
|
111
|
-
|
|
112
|
-
counterparty?: Counterparty;
|
|
75
|
+
counterparty: Counterparty;
|
|
113
76
|
/**
|
|
114
77
|
* delay period that must pass before a consensus state can be used for
|
|
115
78
|
* packet-verification NOTE: delay period logic is only implemented by some
|
|
116
79
|
* clients.
|
|
117
80
|
*/
|
|
118
|
-
|
|
119
|
-
|
|
81
|
+
delayPeriod: bigint;
|
|
82
|
+
}
|
|
83
|
+
export interface ConnectionEndProtoMsg {
|
|
84
|
+
typeUrl: "/ibc.core.connection.v1.ConnectionEnd";
|
|
85
|
+
value: Uint8Array;
|
|
120
86
|
}
|
|
121
87
|
/**
|
|
122
88
|
* ConnectionEnd defines a stateful object on a chain connected to another
|
|
@@ -124,86 +90,105 @@ export interface ConnectionEnd {
|
|
|
124
90
|
* NOTE: there must only be 2 defined ConnectionEnds to establish
|
|
125
91
|
* a connection between two chains.
|
|
126
92
|
*/
|
|
127
|
-
|
|
128
|
-
export interface ConnectionEndSDKType {
|
|
93
|
+
export interface ConnectionEndAmino {
|
|
129
94
|
/** client associated with this connection. */
|
|
130
|
-
client_id
|
|
95
|
+
client_id?: string;
|
|
131
96
|
/**
|
|
132
97
|
* IBC version which can be utilised to determine encodings or protocols for
|
|
133
98
|
* channels or packets utilising this connection.
|
|
134
99
|
*/
|
|
135
|
-
|
|
136
|
-
versions: VersionSDKType[];
|
|
100
|
+
versions?: VersionAmino[];
|
|
137
101
|
/** current state of the connection end. */
|
|
138
|
-
|
|
139
|
-
state: StateSDKType;
|
|
102
|
+
state?: State;
|
|
140
103
|
/** counterparty chain associated with this connection. */
|
|
141
|
-
|
|
142
|
-
counterparty?: CounterpartySDKType;
|
|
104
|
+
counterparty?: CounterpartyAmino;
|
|
143
105
|
/**
|
|
144
106
|
* delay period that must pass before a consensus state can be used for
|
|
145
107
|
* packet-verification NOTE: delay period logic is only implemented by some
|
|
146
108
|
* clients.
|
|
147
109
|
*/
|
|
148
|
-
|
|
149
|
-
|
|
110
|
+
delay_period?: string;
|
|
111
|
+
}
|
|
112
|
+
export interface ConnectionEndAminoMsg {
|
|
113
|
+
type: "cosmos-sdk/ConnectionEnd";
|
|
114
|
+
value: ConnectionEndAmino;
|
|
115
|
+
}
|
|
116
|
+
/**
|
|
117
|
+
* ConnectionEnd defines a stateful object on a chain connected to another
|
|
118
|
+
* separate one.
|
|
119
|
+
* NOTE: there must only be 2 defined ConnectionEnds to establish
|
|
120
|
+
* a connection between two chains.
|
|
121
|
+
*/
|
|
122
|
+
export interface ConnectionEndSDKType {
|
|
123
|
+
client_id: string;
|
|
124
|
+
versions: VersionSDKType[];
|
|
125
|
+
state: State;
|
|
126
|
+
counterparty: CounterpartySDKType;
|
|
127
|
+
delay_period: bigint;
|
|
150
128
|
}
|
|
151
129
|
/**
|
|
152
130
|
* IdentifiedConnection defines a connection with additional connection
|
|
153
131
|
* identifier field.
|
|
154
132
|
*/
|
|
155
|
-
|
|
156
133
|
export interface IdentifiedConnection {
|
|
157
134
|
/** connection identifier. */
|
|
158
135
|
id: string;
|
|
159
136
|
/** client associated with this connection. */
|
|
160
|
-
|
|
161
137
|
clientId: string;
|
|
162
138
|
/**
|
|
163
139
|
* IBC version which can be utilised to determine encodings or protocols for
|
|
164
140
|
* channels or packets utilising this connection
|
|
165
141
|
*/
|
|
166
|
-
|
|
167
142
|
versions: Version[];
|
|
168
143
|
/** current state of the connection end. */
|
|
169
|
-
|
|
170
144
|
state: State;
|
|
171
145
|
/** counterparty chain associated with this connection. */
|
|
172
|
-
|
|
173
|
-
counterparty?: Counterparty;
|
|
146
|
+
counterparty: Counterparty;
|
|
174
147
|
/** delay period associated with this connection. */
|
|
175
|
-
|
|
176
|
-
|
|
148
|
+
delayPeriod: bigint;
|
|
149
|
+
}
|
|
150
|
+
export interface IdentifiedConnectionProtoMsg {
|
|
151
|
+
typeUrl: "/ibc.core.connection.v1.IdentifiedConnection";
|
|
152
|
+
value: Uint8Array;
|
|
177
153
|
}
|
|
178
154
|
/**
|
|
179
155
|
* IdentifiedConnection defines a connection with additional connection
|
|
180
156
|
* identifier field.
|
|
181
157
|
*/
|
|
182
|
-
|
|
183
|
-
export interface IdentifiedConnectionSDKType {
|
|
158
|
+
export interface IdentifiedConnectionAmino {
|
|
184
159
|
/** connection identifier. */
|
|
185
|
-
id
|
|
160
|
+
id?: string;
|
|
186
161
|
/** client associated with this connection. */
|
|
187
|
-
|
|
188
|
-
client_id: string;
|
|
162
|
+
client_id?: string;
|
|
189
163
|
/**
|
|
190
164
|
* IBC version which can be utilised to determine encodings or protocols for
|
|
191
165
|
* channels or packets utilising this connection
|
|
192
166
|
*/
|
|
193
|
-
|
|
194
|
-
versions: VersionSDKType[];
|
|
167
|
+
versions?: VersionAmino[];
|
|
195
168
|
/** current state of the connection end. */
|
|
196
|
-
|
|
197
|
-
state: StateSDKType;
|
|
169
|
+
state?: State;
|
|
198
170
|
/** counterparty chain associated with this connection. */
|
|
199
|
-
|
|
200
|
-
counterparty?: CounterpartySDKType;
|
|
171
|
+
counterparty?: CounterpartyAmino;
|
|
201
172
|
/** delay period associated with this connection. */
|
|
202
|
-
|
|
203
|
-
|
|
173
|
+
delay_period?: string;
|
|
174
|
+
}
|
|
175
|
+
export interface IdentifiedConnectionAminoMsg {
|
|
176
|
+
type: "cosmos-sdk/IdentifiedConnection";
|
|
177
|
+
value: IdentifiedConnectionAmino;
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* IdentifiedConnection defines a connection with additional connection
|
|
181
|
+
* identifier field.
|
|
182
|
+
*/
|
|
183
|
+
export interface IdentifiedConnectionSDKType {
|
|
184
|
+
id: string;
|
|
185
|
+
client_id: string;
|
|
186
|
+
versions: VersionSDKType[];
|
|
187
|
+
state: State;
|
|
188
|
+
counterparty: CounterpartySDKType;
|
|
189
|
+
delay_period: bigint;
|
|
204
190
|
}
|
|
205
191
|
/** Counterparty defines the counterparty chain associated with a connection end. */
|
|
206
|
-
|
|
207
192
|
export interface Counterparty {
|
|
208
193
|
/**
|
|
209
194
|
* identifies the client on the counterparty chain associated with a given
|
|
@@ -214,546 +199,800 @@ export interface Counterparty {
|
|
|
214
199
|
* identifies the connection end on the counterparty chain associated with a
|
|
215
200
|
* given connection.
|
|
216
201
|
*/
|
|
217
|
-
|
|
218
202
|
connectionId: string;
|
|
219
203
|
/** commitment merkle prefix of the counterparty chain. */
|
|
220
|
-
|
|
221
|
-
|
|
204
|
+
prefix: MerklePrefix;
|
|
205
|
+
}
|
|
206
|
+
export interface CounterpartyProtoMsg {
|
|
207
|
+
typeUrl: "/ibc.core.connection.v1.Counterparty";
|
|
208
|
+
value: Uint8Array;
|
|
222
209
|
}
|
|
223
210
|
/** Counterparty defines the counterparty chain associated with a connection end. */
|
|
224
|
-
|
|
225
|
-
export interface CounterpartySDKType {
|
|
211
|
+
export interface CounterpartyAmino {
|
|
226
212
|
/**
|
|
227
213
|
* identifies the client on the counterparty chain associated with a given
|
|
228
214
|
* connection.
|
|
229
215
|
*/
|
|
230
|
-
client_id
|
|
216
|
+
client_id?: string;
|
|
231
217
|
/**
|
|
232
218
|
* identifies the connection end on the counterparty chain associated with a
|
|
233
219
|
* given connection.
|
|
234
220
|
*/
|
|
235
|
-
|
|
236
|
-
connection_id: string;
|
|
221
|
+
connection_id?: string;
|
|
237
222
|
/** commitment merkle prefix of the counterparty chain. */
|
|
238
|
-
|
|
239
|
-
|
|
223
|
+
prefix?: MerklePrefixAmino;
|
|
224
|
+
}
|
|
225
|
+
export interface CounterpartyAminoMsg {
|
|
226
|
+
type: "cosmos-sdk/Counterparty";
|
|
227
|
+
value: CounterpartyAmino;
|
|
228
|
+
}
|
|
229
|
+
/** Counterparty defines the counterparty chain associated with a connection end. */
|
|
230
|
+
export interface CounterpartySDKType {
|
|
231
|
+
client_id: string;
|
|
232
|
+
connection_id: string;
|
|
233
|
+
prefix: MerklePrefixSDKType;
|
|
240
234
|
}
|
|
241
235
|
/** ClientPaths define all the connection paths for a client state. */
|
|
242
|
-
|
|
243
236
|
export interface ClientPaths {
|
|
244
237
|
/** list of connection paths */
|
|
245
238
|
paths: string[];
|
|
246
239
|
}
|
|
240
|
+
export interface ClientPathsProtoMsg {
|
|
241
|
+
typeUrl: "/ibc.core.connection.v1.ClientPaths";
|
|
242
|
+
value: Uint8Array;
|
|
243
|
+
}
|
|
247
244
|
/** ClientPaths define all the connection paths for a client state. */
|
|
248
|
-
|
|
249
|
-
export interface ClientPathsSDKType {
|
|
245
|
+
export interface ClientPathsAmino {
|
|
250
246
|
/** list of connection paths */
|
|
247
|
+
paths?: string[];
|
|
248
|
+
}
|
|
249
|
+
export interface ClientPathsAminoMsg {
|
|
250
|
+
type: "cosmos-sdk/ClientPaths";
|
|
251
|
+
value: ClientPathsAmino;
|
|
252
|
+
}
|
|
253
|
+
/** ClientPaths define all the connection paths for a client state. */
|
|
254
|
+
export interface ClientPathsSDKType {
|
|
251
255
|
paths: string[];
|
|
252
256
|
}
|
|
253
257
|
/** ConnectionPaths define all the connection paths for a given client state. */
|
|
254
|
-
|
|
255
258
|
export interface ConnectionPaths {
|
|
256
259
|
/** client state unique identifier */
|
|
257
260
|
clientId: string;
|
|
258
261
|
/** list of connection paths */
|
|
259
|
-
|
|
260
262
|
paths: string[];
|
|
261
263
|
}
|
|
264
|
+
export interface ConnectionPathsProtoMsg {
|
|
265
|
+
typeUrl: "/ibc.core.connection.v1.ConnectionPaths";
|
|
266
|
+
value: Uint8Array;
|
|
267
|
+
}
|
|
262
268
|
/** ConnectionPaths define all the connection paths for a given client state. */
|
|
263
|
-
|
|
264
|
-
export interface ConnectionPathsSDKType {
|
|
269
|
+
export interface ConnectionPathsAmino {
|
|
265
270
|
/** client state unique identifier */
|
|
266
|
-
client_id
|
|
271
|
+
client_id?: string;
|
|
267
272
|
/** list of connection paths */
|
|
268
|
-
|
|
273
|
+
paths?: string[];
|
|
274
|
+
}
|
|
275
|
+
export interface ConnectionPathsAminoMsg {
|
|
276
|
+
type: "cosmos-sdk/ConnectionPaths";
|
|
277
|
+
value: ConnectionPathsAmino;
|
|
278
|
+
}
|
|
279
|
+
/** ConnectionPaths define all the connection paths for a given client state. */
|
|
280
|
+
export interface ConnectionPathsSDKType {
|
|
281
|
+
client_id: string;
|
|
269
282
|
paths: string[];
|
|
270
283
|
}
|
|
271
284
|
/**
|
|
272
285
|
* Version defines the versioning scheme used to negotiate the IBC verison in
|
|
273
286
|
* the connection handshake.
|
|
274
287
|
*/
|
|
275
|
-
|
|
276
288
|
export interface Version {
|
|
277
289
|
/** unique version identifier */
|
|
278
290
|
identifier: string;
|
|
279
291
|
/** list of features compatible with the specified identifier */
|
|
280
|
-
|
|
281
292
|
features: string[];
|
|
282
293
|
}
|
|
294
|
+
export interface VersionProtoMsg {
|
|
295
|
+
typeUrl: "/ibc.core.connection.v1.Version";
|
|
296
|
+
value: Uint8Array;
|
|
297
|
+
}
|
|
283
298
|
/**
|
|
284
299
|
* Version defines the versioning scheme used to negotiate the IBC verison in
|
|
285
300
|
* the connection handshake.
|
|
286
301
|
*/
|
|
287
|
-
|
|
288
|
-
export interface VersionSDKType {
|
|
302
|
+
export interface VersionAmino {
|
|
289
303
|
/** unique version identifier */
|
|
290
|
-
identifier
|
|
304
|
+
identifier?: string;
|
|
291
305
|
/** list of features compatible with the specified identifier */
|
|
292
|
-
|
|
306
|
+
features?: string[];
|
|
307
|
+
}
|
|
308
|
+
export interface VersionAminoMsg {
|
|
309
|
+
type: "cosmos-sdk/Version";
|
|
310
|
+
value: VersionAmino;
|
|
311
|
+
}
|
|
312
|
+
/**
|
|
313
|
+
* Version defines the versioning scheme used to negotiate the IBC verison in
|
|
314
|
+
* the connection handshake.
|
|
315
|
+
*/
|
|
316
|
+
export interface VersionSDKType {
|
|
317
|
+
identifier: string;
|
|
293
318
|
features: string[];
|
|
294
319
|
}
|
|
295
320
|
/** Params defines the set of Connection parameters. */
|
|
296
|
-
|
|
297
321
|
export interface Params {
|
|
298
322
|
/**
|
|
299
323
|
* maximum expected time per block (in nanoseconds), used to enforce block delay. This parameter should reflect the
|
|
300
324
|
* largest amount of time that the chain might reasonably take to produce the next block under normal operating
|
|
301
325
|
* conditions. A safe choice is 3-5x the expected time per block.
|
|
302
326
|
*/
|
|
303
|
-
maxExpectedTimePerBlock:
|
|
327
|
+
maxExpectedTimePerBlock: bigint;
|
|
328
|
+
}
|
|
329
|
+
export interface ParamsProtoMsg {
|
|
330
|
+
typeUrl: "/ibc.core.connection.v1.Params";
|
|
331
|
+
value: Uint8Array;
|
|
304
332
|
}
|
|
305
333
|
/** Params defines the set of Connection parameters. */
|
|
306
|
-
|
|
307
|
-
export interface ParamsSDKType {
|
|
334
|
+
export interface ParamsAmino {
|
|
308
335
|
/**
|
|
309
336
|
* maximum expected time per block (in nanoseconds), used to enforce block delay. This parameter should reflect the
|
|
310
337
|
* largest amount of time that the chain might reasonably take to produce the next block under normal operating
|
|
311
338
|
* conditions. A safe choice is 3-5x the expected time per block.
|
|
312
339
|
*/
|
|
313
|
-
max_expected_time_per_block
|
|
340
|
+
max_expected_time_per_block?: string;
|
|
341
|
+
}
|
|
342
|
+
export interface ParamsAminoMsg {
|
|
343
|
+
type: "cosmos-sdk/Params";
|
|
344
|
+
value: ParamsAmino;
|
|
345
|
+
}
|
|
346
|
+
/** Params defines the set of Connection parameters. */
|
|
347
|
+
export interface ParamsSDKType {
|
|
348
|
+
max_expected_time_per_block: bigint;
|
|
314
349
|
}
|
|
315
|
-
|
|
316
350
|
function createBaseConnectionEnd(): ConnectionEnd {
|
|
317
351
|
return {
|
|
318
352
|
clientId: "",
|
|
319
353
|
versions: [],
|
|
320
354
|
state: 0,
|
|
321
|
-
counterparty:
|
|
322
|
-
delayPeriod:
|
|
355
|
+
counterparty: Counterparty.fromPartial({}),
|
|
356
|
+
delayPeriod: BigInt(0)
|
|
323
357
|
};
|
|
324
358
|
}
|
|
325
|
-
|
|
326
359
|
export const ConnectionEnd = {
|
|
327
|
-
|
|
360
|
+
typeUrl: "/ibc.core.connection.v1.ConnectionEnd",
|
|
361
|
+
encode(message: ConnectionEnd, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
328
362
|
if (message.clientId !== "") {
|
|
329
363
|
writer.uint32(10).string(message.clientId);
|
|
330
364
|
}
|
|
331
|
-
|
|
332
365
|
for (const v of message.versions) {
|
|
333
366
|
Version.encode(v!, writer.uint32(18).fork()).ldelim();
|
|
334
367
|
}
|
|
335
|
-
|
|
336
368
|
if (message.state !== 0) {
|
|
337
369
|
writer.uint32(24).int32(message.state);
|
|
338
370
|
}
|
|
339
|
-
|
|
340
371
|
if (message.counterparty !== undefined) {
|
|
341
372
|
Counterparty.encode(message.counterparty, writer.uint32(34).fork()).ldelim();
|
|
342
373
|
}
|
|
343
|
-
|
|
344
|
-
if (!message.delayPeriod.isZero()) {
|
|
374
|
+
if (message.delayPeriod !== BigInt(0)) {
|
|
345
375
|
writer.uint32(40).uint64(message.delayPeriod);
|
|
346
376
|
}
|
|
347
|
-
|
|
348
377
|
return writer;
|
|
349
378
|
},
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
379
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ConnectionEnd {
|
|
380
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
353
381
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
354
382
|
const message = createBaseConnectionEnd();
|
|
355
|
-
|
|
356
383
|
while (reader.pos < end) {
|
|
357
384
|
const tag = reader.uint32();
|
|
358
|
-
|
|
359
385
|
switch (tag >>> 3) {
|
|
360
386
|
case 1:
|
|
361
387
|
message.clientId = reader.string();
|
|
362
388
|
break;
|
|
363
|
-
|
|
364
389
|
case 2:
|
|
365
390
|
message.versions.push(Version.decode(reader, reader.uint32()));
|
|
366
391
|
break;
|
|
367
|
-
|
|
368
392
|
case 3:
|
|
369
393
|
message.state = (reader.int32() as any);
|
|
370
394
|
break;
|
|
371
|
-
|
|
372
395
|
case 4:
|
|
373
396
|
message.counterparty = Counterparty.decode(reader, reader.uint32());
|
|
374
397
|
break;
|
|
375
|
-
|
|
376
398
|
case 5:
|
|
377
|
-
message.delayPeriod =
|
|
399
|
+
message.delayPeriod = reader.uint64();
|
|
378
400
|
break;
|
|
379
|
-
|
|
380
401
|
default:
|
|
381
402
|
reader.skipType(tag & 7);
|
|
382
403
|
break;
|
|
383
404
|
}
|
|
384
405
|
}
|
|
385
|
-
|
|
386
406
|
return message;
|
|
387
407
|
},
|
|
388
|
-
|
|
389
|
-
fromPartial(object: DeepPartial<ConnectionEnd>): ConnectionEnd {
|
|
408
|
+
fromPartial(object: Partial<ConnectionEnd>): ConnectionEnd {
|
|
390
409
|
const message = createBaseConnectionEnd();
|
|
391
410
|
message.clientId = object.clientId ?? "";
|
|
392
411
|
message.versions = object.versions?.map(e => Version.fromPartial(e)) || [];
|
|
393
412
|
message.state = object.state ?? 0;
|
|
394
413
|
message.counterparty = object.counterparty !== undefined && object.counterparty !== null ? Counterparty.fromPartial(object.counterparty) : undefined;
|
|
395
|
-
message.delayPeriod = object.delayPeriod !== undefined && object.delayPeriod !== null ?
|
|
414
|
+
message.delayPeriod = object.delayPeriod !== undefined && object.delayPeriod !== null ? BigInt(object.delayPeriod.toString()) : BigInt(0);
|
|
396
415
|
return message;
|
|
416
|
+
},
|
|
417
|
+
fromAmino(object: ConnectionEndAmino): ConnectionEnd {
|
|
418
|
+
const message = createBaseConnectionEnd();
|
|
419
|
+
if (object.client_id !== undefined && object.client_id !== null) {
|
|
420
|
+
message.clientId = object.client_id;
|
|
421
|
+
}
|
|
422
|
+
message.versions = object.versions?.map(e => Version.fromAmino(e)) || [];
|
|
423
|
+
if (object.state !== undefined && object.state !== null) {
|
|
424
|
+
message.state = stateFromJSON(object.state);
|
|
425
|
+
}
|
|
426
|
+
if (object.counterparty !== undefined && object.counterparty !== null) {
|
|
427
|
+
message.counterparty = Counterparty.fromAmino(object.counterparty);
|
|
428
|
+
}
|
|
429
|
+
if (object.delay_period !== undefined && object.delay_period !== null) {
|
|
430
|
+
message.delayPeriod = BigInt(object.delay_period);
|
|
431
|
+
}
|
|
432
|
+
return message;
|
|
433
|
+
},
|
|
434
|
+
toAmino(message: ConnectionEnd): ConnectionEndAmino {
|
|
435
|
+
const obj: any = {};
|
|
436
|
+
obj.client_id = message.clientId;
|
|
437
|
+
if (message.versions) {
|
|
438
|
+
obj.versions = message.versions.map(e => e ? Version.toAmino(e) : undefined);
|
|
439
|
+
} else {
|
|
440
|
+
obj.versions = [];
|
|
441
|
+
}
|
|
442
|
+
obj.state = stateToJSON(message.state);
|
|
443
|
+
obj.counterparty = message.counterparty ? Counterparty.toAmino(message.counterparty) : undefined;
|
|
444
|
+
obj.delay_period = message.delayPeriod ? message.delayPeriod.toString() : undefined;
|
|
445
|
+
return obj;
|
|
446
|
+
},
|
|
447
|
+
fromAminoMsg(object: ConnectionEndAminoMsg): ConnectionEnd {
|
|
448
|
+
return ConnectionEnd.fromAmino(object.value);
|
|
449
|
+
},
|
|
450
|
+
toAminoMsg(message: ConnectionEnd): ConnectionEndAminoMsg {
|
|
451
|
+
return {
|
|
452
|
+
type: "cosmos-sdk/ConnectionEnd",
|
|
453
|
+
value: ConnectionEnd.toAmino(message)
|
|
454
|
+
};
|
|
455
|
+
},
|
|
456
|
+
fromProtoMsg(message: ConnectionEndProtoMsg): ConnectionEnd {
|
|
457
|
+
return ConnectionEnd.decode(message.value);
|
|
458
|
+
},
|
|
459
|
+
toProto(message: ConnectionEnd): Uint8Array {
|
|
460
|
+
return ConnectionEnd.encode(message).finish();
|
|
461
|
+
},
|
|
462
|
+
toProtoMsg(message: ConnectionEnd): ConnectionEndProtoMsg {
|
|
463
|
+
return {
|
|
464
|
+
typeUrl: "/ibc.core.connection.v1.ConnectionEnd",
|
|
465
|
+
value: ConnectionEnd.encode(message).finish()
|
|
466
|
+
};
|
|
397
467
|
}
|
|
398
|
-
|
|
399
468
|
};
|
|
400
|
-
|
|
401
469
|
function createBaseIdentifiedConnection(): IdentifiedConnection {
|
|
402
470
|
return {
|
|
403
471
|
id: "",
|
|
404
472
|
clientId: "",
|
|
405
473
|
versions: [],
|
|
406
474
|
state: 0,
|
|
407
|
-
counterparty:
|
|
408
|
-
delayPeriod:
|
|
475
|
+
counterparty: Counterparty.fromPartial({}),
|
|
476
|
+
delayPeriod: BigInt(0)
|
|
409
477
|
};
|
|
410
478
|
}
|
|
411
|
-
|
|
412
479
|
export const IdentifiedConnection = {
|
|
413
|
-
|
|
480
|
+
typeUrl: "/ibc.core.connection.v1.IdentifiedConnection",
|
|
481
|
+
encode(message: IdentifiedConnection, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
414
482
|
if (message.id !== "") {
|
|
415
483
|
writer.uint32(10).string(message.id);
|
|
416
484
|
}
|
|
417
|
-
|
|
418
485
|
if (message.clientId !== "") {
|
|
419
486
|
writer.uint32(18).string(message.clientId);
|
|
420
487
|
}
|
|
421
|
-
|
|
422
488
|
for (const v of message.versions) {
|
|
423
489
|
Version.encode(v!, writer.uint32(26).fork()).ldelim();
|
|
424
490
|
}
|
|
425
|
-
|
|
426
491
|
if (message.state !== 0) {
|
|
427
492
|
writer.uint32(32).int32(message.state);
|
|
428
493
|
}
|
|
429
|
-
|
|
430
494
|
if (message.counterparty !== undefined) {
|
|
431
495
|
Counterparty.encode(message.counterparty, writer.uint32(42).fork()).ldelim();
|
|
432
496
|
}
|
|
433
|
-
|
|
434
|
-
if (!message.delayPeriod.isZero()) {
|
|
497
|
+
if (message.delayPeriod !== BigInt(0)) {
|
|
435
498
|
writer.uint32(48).uint64(message.delayPeriod);
|
|
436
499
|
}
|
|
437
|
-
|
|
438
500
|
return writer;
|
|
439
501
|
},
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
502
|
+
decode(input: BinaryReader | Uint8Array, length?: number): IdentifiedConnection {
|
|
503
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
443
504
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
444
505
|
const message = createBaseIdentifiedConnection();
|
|
445
|
-
|
|
446
506
|
while (reader.pos < end) {
|
|
447
507
|
const tag = reader.uint32();
|
|
448
|
-
|
|
449
508
|
switch (tag >>> 3) {
|
|
450
509
|
case 1:
|
|
451
510
|
message.id = reader.string();
|
|
452
511
|
break;
|
|
453
|
-
|
|
454
512
|
case 2:
|
|
455
513
|
message.clientId = reader.string();
|
|
456
514
|
break;
|
|
457
|
-
|
|
458
515
|
case 3:
|
|
459
516
|
message.versions.push(Version.decode(reader, reader.uint32()));
|
|
460
517
|
break;
|
|
461
|
-
|
|
462
518
|
case 4:
|
|
463
519
|
message.state = (reader.int32() as any);
|
|
464
520
|
break;
|
|
465
|
-
|
|
466
521
|
case 5:
|
|
467
522
|
message.counterparty = Counterparty.decode(reader, reader.uint32());
|
|
468
523
|
break;
|
|
469
|
-
|
|
470
524
|
case 6:
|
|
471
|
-
message.delayPeriod =
|
|
525
|
+
message.delayPeriod = reader.uint64();
|
|
472
526
|
break;
|
|
473
|
-
|
|
474
527
|
default:
|
|
475
528
|
reader.skipType(tag & 7);
|
|
476
529
|
break;
|
|
477
530
|
}
|
|
478
531
|
}
|
|
479
|
-
|
|
480
532
|
return message;
|
|
481
533
|
},
|
|
482
|
-
|
|
483
|
-
fromPartial(object: DeepPartial<IdentifiedConnection>): IdentifiedConnection {
|
|
534
|
+
fromPartial(object: Partial<IdentifiedConnection>): IdentifiedConnection {
|
|
484
535
|
const message = createBaseIdentifiedConnection();
|
|
485
536
|
message.id = object.id ?? "";
|
|
486
537
|
message.clientId = object.clientId ?? "";
|
|
487
538
|
message.versions = object.versions?.map(e => Version.fromPartial(e)) || [];
|
|
488
539
|
message.state = object.state ?? 0;
|
|
489
540
|
message.counterparty = object.counterparty !== undefined && object.counterparty !== null ? Counterparty.fromPartial(object.counterparty) : undefined;
|
|
490
|
-
message.delayPeriod = object.delayPeriod !== undefined && object.delayPeriod !== null ?
|
|
541
|
+
message.delayPeriod = object.delayPeriod !== undefined && object.delayPeriod !== null ? BigInt(object.delayPeriod.toString()) : BigInt(0);
|
|
542
|
+
return message;
|
|
543
|
+
},
|
|
544
|
+
fromAmino(object: IdentifiedConnectionAmino): IdentifiedConnection {
|
|
545
|
+
const message = createBaseIdentifiedConnection();
|
|
546
|
+
if (object.id !== undefined && object.id !== null) {
|
|
547
|
+
message.id = object.id;
|
|
548
|
+
}
|
|
549
|
+
if (object.client_id !== undefined && object.client_id !== null) {
|
|
550
|
+
message.clientId = object.client_id;
|
|
551
|
+
}
|
|
552
|
+
message.versions = object.versions?.map(e => Version.fromAmino(e)) || [];
|
|
553
|
+
if (object.state !== undefined && object.state !== null) {
|
|
554
|
+
message.state = stateFromJSON(object.state);
|
|
555
|
+
}
|
|
556
|
+
if (object.counterparty !== undefined && object.counterparty !== null) {
|
|
557
|
+
message.counterparty = Counterparty.fromAmino(object.counterparty);
|
|
558
|
+
}
|
|
559
|
+
if (object.delay_period !== undefined && object.delay_period !== null) {
|
|
560
|
+
message.delayPeriod = BigInt(object.delay_period);
|
|
561
|
+
}
|
|
491
562
|
return message;
|
|
563
|
+
},
|
|
564
|
+
toAmino(message: IdentifiedConnection): IdentifiedConnectionAmino {
|
|
565
|
+
const obj: any = {};
|
|
566
|
+
obj.id = message.id;
|
|
567
|
+
obj.client_id = message.clientId;
|
|
568
|
+
if (message.versions) {
|
|
569
|
+
obj.versions = message.versions.map(e => e ? Version.toAmino(e) : undefined);
|
|
570
|
+
} else {
|
|
571
|
+
obj.versions = [];
|
|
572
|
+
}
|
|
573
|
+
obj.state = stateToJSON(message.state);
|
|
574
|
+
obj.counterparty = message.counterparty ? Counterparty.toAmino(message.counterparty) : undefined;
|
|
575
|
+
obj.delay_period = message.delayPeriod ? message.delayPeriod.toString() : undefined;
|
|
576
|
+
return obj;
|
|
577
|
+
},
|
|
578
|
+
fromAminoMsg(object: IdentifiedConnectionAminoMsg): IdentifiedConnection {
|
|
579
|
+
return IdentifiedConnection.fromAmino(object.value);
|
|
580
|
+
},
|
|
581
|
+
toAminoMsg(message: IdentifiedConnection): IdentifiedConnectionAminoMsg {
|
|
582
|
+
return {
|
|
583
|
+
type: "cosmos-sdk/IdentifiedConnection",
|
|
584
|
+
value: IdentifiedConnection.toAmino(message)
|
|
585
|
+
};
|
|
586
|
+
},
|
|
587
|
+
fromProtoMsg(message: IdentifiedConnectionProtoMsg): IdentifiedConnection {
|
|
588
|
+
return IdentifiedConnection.decode(message.value);
|
|
589
|
+
},
|
|
590
|
+
toProto(message: IdentifiedConnection): Uint8Array {
|
|
591
|
+
return IdentifiedConnection.encode(message).finish();
|
|
592
|
+
},
|
|
593
|
+
toProtoMsg(message: IdentifiedConnection): IdentifiedConnectionProtoMsg {
|
|
594
|
+
return {
|
|
595
|
+
typeUrl: "/ibc.core.connection.v1.IdentifiedConnection",
|
|
596
|
+
value: IdentifiedConnection.encode(message).finish()
|
|
597
|
+
};
|
|
492
598
|
}
|
|
493
|
-
|
|
494
599
|
};
|
|
495
|
-
|
|
496
600
|
function createBaseCounterparty(): Counterparty {
|
|
497
601
|
return {
|
|
498
602
|
clientId: "",
|
|
499
603
|
connectionId: "",
|
|
500
|
-
prefix:
|
|
604
|
+
prefix: MerklePrefix.fromPartial({})
|
|
501
605
|
};
|
|
502
606
|
}
|
|
503
|
-
|
|
504
607
|
export const Counterparty = {
|
|
505
|
-
|
|
608
|
+
typeUrl: "/ibc.core.connection.v1.Counterparty",
|
|
609
|
+
encode(message: Counterparty, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
506
610
|
if (message.clientId !== "") {
|
|
507
611
|
writer.uint32(10).string(message.clientId);
|
|
508
612
|
}
|
|
509
|
-
|
|
510
613
|
if (message.connectionId !== "") {
|
|
511
614
|
writer.uint32(18).string(message.connectionId);
|
|
512
615
|
}
|
|
513
|
-
|
|
514
616
|
if (message.prefix !== undefined) {
|
|
515
617
|
MerklePrefix.encode(message.prefix, writer.uint32(26).fork()).ldelim();
|
|
516
618
|
}
|
|
517
|
-
|
|
518
619
|
return writer;
|
|
519
620
|
},
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
621
|
+
decode(input: BinaryReader | Uint8Array, length?: number): Counterparty {
|
|
622
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
523
623
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
524
624
|
const message = createBaseCounterparty();
|
|
525
|
-
|
|
526
625
|
while (reader.pos < end) {
|
|
527
626
|
const tag = reader.uint32();
|
|
528
|
-
|
|
529
627
|
switch (tag >>> 3) {
|
|
530
628
|
case 1:
|
|
531
629
|
message.clientId = reader.string();
|
|
532
630
|
break;
|
|
533
|
-
|
|
534
631
|
case 2:
|
|
535
632
|
message.connectionId = reader.string();
|
|
536
633
|
break;
|
|
537
|
-
|
|
538
634
|
case 3:
|
|
539
635
|
message.prefix = MerklePrefix.decode(reader, reader.uint32());
|
|
540
636
|
break;
|
|
541
|
-
|
|
542
637
|
default:
|
|
543
638
|
reader.skipType(tag & 7);
|
|
544
639
|
break;
|
|
545
640
|
}
|
|
546
641
|
}
|
|
547
|
-
|
|
548
642
|
return message;
|
|
549
643
|
},
|
|
550
|
-
|
|
551
|
-
fromPartial(object: DeepPartial<Counterparty>): Counterparty {
|
|
644
|
+
fromPartial(object: Partial<Counterparty>): Counterparty {
|
|
552
645
|
const message = createBaseCounterparty();
|
|
553
646
|
message.clientId = object.clientId ?? "";
|
|
554
647
|
message.connectionId = object.connectionId ?? "";
|
|
555
648
|
message.prefix = object.prefix !== undefined && object.prefix !== null ? MerklePrefix.fromPartial(object.prefix) : undefined;
|
|
556
649
|
return message;
|
|
650
|
+
},
|
|
651
|
+
fromAmino(object: CounterpartyAmino): Counterparty {
|
|
652
|
+
const message = createBaseCounterparty();
|
|
653
|
+
if (object.client_id !== undefined && object.client_id !== null) {
|
|
654
|
+
message.clientId = object.client_id;
|
|
655
|
+
}
|
|
656
|
+
if (object.connection_id !== undefined && object.connection_id !== null) {
|
|
657
|
+
message.connectionId = object.connection_id;
|
|
658
|
+
}
|
|
659
|
+
if (object.prefix !== undefined && object.prefix !== null) {
|
|
660
|
+
message.prefix = MerklePrefix.fromAmino(object.prefix);
|
|
661
|
+
}
|
|
662
|
+
return message;
|
|
663
|
+
},
|
|
664
|
+
toAmino(message: Counterparty): CounterpartyAmino {
|
|
665
|
+
const obj: any = {};
|
|
666
|
+
obj.client_id = message.clientId;
|
|
667
|
+
obj.connection_id = message.connectionId;
|
|
668
|
+
obj.prefix = message.prefix ? MerklePrefix.toAmino(message.prefix) : undefined;
|
|
669
|
+
return obj;
|
|
670
|
+
},
|
|
671
|
+
fromAminoMsg(object: CounterpartyAminoMsg): Counterparty {
|
|
672
|
+
return Counterparty.fromAmino(object.value);
|
|
673
|
+
},
|
|
674
|
+
toAminoMsg(message: Counterparty): CounterpartyAminoMsg {
|
|
675
|
+
return {
|
|
676
|
+
type: "cosmos-sdk/Counterparty",
|
|
677
|
+
value: Counterparty.toAmino(message)
|
|
678
|
+
};
|
|
679
|
+
},
|
|
680
|
+
fromProtoMsg(message: CounterpartyProtoMsg): Counterparty {
|
|
681
|
+
return Counterparty.decode(message.value);
|
|
682
|
+
},
|
|
683
|
+
toProto(message: Counterparty): Uint8Array {
|
|
684
|
+
return Counterparty.encode(message).finish();
|
|
685
|
+
},
|
|
686
|
+
toProtoMsg(message: Counterparty): CounterpartyProtoMsg {
|
|
687
|
+
return {
|
|
688
|
+
typeUrl: "/ibc.core.connection.v1.Counterparty",
|
|
689
|
+
value: Counterparty.encode(message).finish()
|
|
690
|
+
};
|
|
557
691
|
}
|
|
558
|
-
|
|
559
692
|
};
|
|
560
|
-
|
|
561
693
|
function createBaseClientPaths(): ClientPaths {
|
|
562
694
|
return {
|
|
563
695
|
paths: []
|
|
564
696
|
};
|
|
565
697
|
}
|
|
566
|
-
|
|
567
698
|
export const ClientPaths = {
|
|
568
|
-
|
|
699
|
+
typeUrl: "/ibc.core.connection.v1.ClientPaths",
|
|
700
|
+
encode(message: ClientPaths, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
569
701
|
for (const v of message.paths) {
|
|
570
702
|
writer.uint32(10).string(v!);
|
|
571
703
|
}
|
|
572
|
-
|
|
573
704
|
return writer;
|
|
574
705
|
},
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
706
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ClientPaths {
|
|
707
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
578
708
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
579
709
|
const message = createBaseClientPaths();
|
|
580
|
-
|
|
581
710
|
while (reader.pos < end) {
|
|
582
711
|
const tag = reader.uint32();
|
|
583
|
-
|
|
584
712
|
switch (tag >>> 3) {
|
|
585
713
|
case 1:
|
|
586
714
|
message.paths.push(reader.string());
|
|
587
715
|
break;
|
|
588
|
-
|
|
589
716
|
default:
|
|
590
717
|
reader.skipType(tag & 7);
|
|
591
718
|
break;
|
|
592
719
|
}
|
|
593
720
|
}
|
|
594
|
-
|
|
595
721
|
return message;
|
|
596
722
|
},
|
|
597
|
-
|
|
598
|
-
|
|
723
|
+
fromPartial(object: Partial<ClientPaths>): ClientPaths {
|
|
724
|
+
const message = createBaseClientPaths();
|
|
725
|
+
message.paths = object.paths?.map(e => e) || [];
|
|
726
|
+
return message;
|
|
727
|
+
},
|
|
728
|
+
fromAmino(object: ClientPathsAmino): ClientPaths {
|
|
599
729
|
const message = createBaseClientPaths();
|
|
600
730
|
message.paths = object.paths?.map(e => e) || [];
|
|
601
731
|
return message;
|
|
732
|
+
},
|
|
733
|
+
toAmino(message: ClientPaths): ClientPathsAmino {
|
|
734
|
+
const obj: any = {};
|
|
735
|
+
if (message.paths) {
|
|
736
|
+
obj.paths = message.paths.map(e => e);
|
|
737
|
+
} else {
|
|
738
|
+
obj.paths = [];
|
|
739
|
+
}
|
|
740
|
+
return obj;
|
|
741
|
+
},
|
|
742
|
+
fromAminoMsg(object: ClientPathsAminoMsg): ClientPaths {
|
|
743
|
+
return ClientPaths.fromAmino(object.value);
|
|
744
|
+
},
|
|
745
|
+
toAminoMsg(message: ClientPaths): ClientPathsAminoMsg {
|
|
746
|
+
return {
|
|
747
|
+
type: "cosmos-sdk/ClientPaths",
|
|
748
|
+
value: ClientPaths.toAmino(message)
|
|
749
|
+
};
|
|
750
|
+
},
|
|
751
|
+
fromProtoMsg(message: ClientPathsProtoMsg): ClientPaths {
|
|
752
|
+
return ClientPaths.decode(message.value);
|
|
753
|
+
},
|
|
754
|
+
toProto(message: ClientPaths): Uint8Array {
|
|
755
|
+
return ClientPaths.encode(message).finish();
|
|
756
|
+
},
|
|
757
|
+
toProtoMsg(message: ClientPaths): ClientPathsProtoMsg {
|
|
758
|
+
return {
|
|
759
|
+
typeUrl: "/ibc.core.connection.v1.ClientPaths",
|
|
760
|
+
value: ClientPaths.encode(message).finish()
|
|
761
|
+
};
|
|
602
762
|
}
|
|
603
|
-
|
|
604
763
|
};
|
|
605
|
-
|
|
606
764
|
function createBaseConnectionPaths(): ConnectionPaths {
|
|
607
765
|
return {
|
|
608
766
|
clientId: "",
|
|
609
767
|
paths: []
|
|
610
768
|
};
|
|
611
769
|
}
|
|
612
|
-
|
|
613
770
|
export const ConnectionPaths = {
|
|
614
|
-
|
|
771
|
+
typeUrl: "/ibc.core.connection.v1.ConnectionPaths",
|
|
772
|
+
encode(message: ConnectionPaths, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
615
773
|
if (message.clientId !== "") {
|
|
616
774
|
writer.uint32(10).string(message.clientId);
|
|
617
775
|
}
|
|
618
|
-
|
|
619
776
|
for (const v of message.paths) {
|
|
620
777
|
writer.uint32(18).string(v!);
|
|
621
778
|
}
|
|
622
|
-
|
|
623
779
|
return writer;
|
|
624
780
|
},
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
781
|
+
decode(input: BinaryReader | Uint8Array, length?: number): ConnectionPaths {
|
|
782
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
628
783
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
629
784
|
const message = createBaseConnectionPaths();
|
|
630
|
-
|
|
631
785
|
while (reader.pos < end) {
|
|
632
786
|
const tag = reader.uint32();
|
|
633
|
-
|
|
634
787
|
switch (tag >>> 3) {
|
|
635
788
|
case 1:
|
|
636
789
|
message.clientId = reader.string();
|
|
637
790
|
break;
|
|
638
|
-
|
|
639
791
|
case 2:
|
|
640
792
|
message.paths.push(reader.string());
|
|
641
793
|
break;
|
|
642
|
-
|
|
643
794
|
default:
|
|
644
795
|
reader.skipType(tag & 7);
|
|
645
796
|
break;
|
|
646
797
|
}
|
|
647
798
|
}
|
|
648
|
-
|
|
649
799
|
return message;
|
|
650
800
|
},
|
|
651
|
-
|
|
652
|
-
fromPartial(object: DeepPartial<ConnectionPaths>): ConnectionPaths {
|
|
801
|
+
fromPartial(object: Partial<ConnectionPaths>): ConnectionPaths {
|
|
653
802
|
const message = createBaseConnectionPaths();
|
|
654
803
|
message.clientId = object.clientId ?? "";
|
|
655
804
|
message.paths = object.paths?.map(e => e) || [];
|
|
656
805
|
return message;
|
|
806
|
+
},
|
|
807
|
+
fromAmino(object: ConnectionPathsAmino): ConnectionPaths {
|
|
808
|
+
const message = createBaseConnectionPaths();
|
|
809
|
+
if (object.client_id !== undefined && object.client_id !== null) {
|
|
810
|
+
message.clientId = object.client_id;
|
|
811
|
+
}
|
|
812
|
+
message.paths = object.paths?.map(e => e) || [];
|
|
813
|
+
return message;
|
|
814
|
+
},
|
|
815
|
+
toAmino(message: ConnectionPaths): ConnectionPathsAmino {
|
|
816
|
+
const obj: any = {};
|
|
817
|
+
obj.client_id = message.clientId;
|
|
818
|
+
if (message.paths) {
|
|
819
|
+
obj.paths = message.paths.map(e => e);
|
|
820
|
+
} else {
|
|
821
|
+
obj.paths = [];
|
|
822
|
+
}
|
|
823
|
+
return obj;
|
|
824
|
+
},
|
|
825
|
+
fromAminoMsg(object: ConnectionPathsAminoMsg): ConnectionPaths {
|
|
826
|
+
return ConnectionPaths.fromAmino(object.value);
|
|
827
|
+
},
|
|
828
|
+
toAminoMsg(message: ConnectionPaths): ConnectionPathsAminoMsg {
|
|
829
|
+
return {
|
|
830
|
+
type: "cosmos-sdk/ConnectionPaths",
|
|
831
|
+
value: ConnectionPaths.toAmino(message)
|
|
832
|
+
};
|
|
833
|
+
},
|
|
834
|
+
fromProtoMsg(message: ConnectionPathsProtoMsg): ConnectionPaths {
|
|
835
|
+
return ConnectionPaths.decode(message.value);
|
|
836
|
+
},
|
|
837
|
+
toProto(message: ConnectionPaths): Uint8Array {
|
|
838
|
+
return ConnectionPaths.encode(message).finish();
|
|
839
|
+
},
|
|
840
|
+
toProtoMsg(message: ConnectionPaths): ConnectionPathsProtoMsg {
|
|
841
|
+
return {
|
|
842
|
+
typeUrl: "/ibc.core.connection.v1.ConnectionPaths",
|
|
843
|
+
value: ConnectionPaths.encode(message).finish()
|
|
844
|
+
};
|
|
657
845
|
}
|
|
658
|
-
|
|
659
846
|
};
|
|
660
|
-
|
|
661
847
|
function createBaseVersion(): Version {
|
|
662
848
|
return {
|
|
663
849
|
identifier: "",
|
|
664
850
|
features: []
|
|
665
851
|
};
|
|
666
852
|
}
|
|
667
|
-
|
|
668
853
|
export const Version = {
|
|
669
|
-
|
|
854
|
+
typeUrl: "/ibc.core.connection.v1.Version",
|
|
855
|
+
encode(message: Version, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
670
856
|
if (message.identifier !== "") {
|
|
671
857
|
writer.uint32(10).string(message.identifier);
|
|
672
858
|
}
|
|
673
|
-
|
|
674
859
|
for (const v of message.features) {
|
|
675
860
|
writer.uint32(18).string(v!);
|
|
676
861
|
}
|
|
677
|
-
|
|
678
862
|
return writer;
|
|
679
863
|
},
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
864
|
+
decode(input: BinaryReader | Uint8Array, length?: number): Version {
|
|
865
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
683
866
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
684
867
|
const message = createBaseVersion();
|
|
685
|
-
|
|
686
868
|
while (reader.pos < end) {
|
|
687
869
|
const tag = reader.uint32();
|
|
688
|
-
|
|
689
870
|
switch (tag >>> 3) {
|
|
690
871
|
case 1:
|
|
691
872
|
message.identifier = reader.string();
|
|
692
873
|
break;
|
|
693
|
-
|
|
694
874
|
case 2:
|
|
695
875
|
message.features.push(reader.string());
|
|
696
876
|
break;
|
|
697
|
-
|
|
698
877
|
default:
|
|
699
878
|
reader.skipType(tag & 7);
|
|
700
879
|
break;
|
|
701
880
|
}
|
|
702
881
|
}
|
|
703
|
-
|
|
704
882
|
return message;
|
|
705
883
|
},
|
|
706
|
-
|
|
707
|
-
fromPartial(object: DeepPartial<Version>): Version {
|
|
884
|
+
fromPartial(object: Partial<Version>): Version {
|
|
708
885
|
const message = createBaseVersion();
|
|
709
886
|
message.identifier = object.identifier ?? "";
|
|
710
887
|
message.features = object.features?.map(e => e) || [];
|
|
711
888
|
return message;
|
|
889
|
+
},
|
|
890
|
+
fromAmino(object: VersionAmino): Version {
|
|
891
|
+
const message = createBaseVersion();
|
|
892
|
+
if (object.identifier !== undefined && object.identifier !== null) {
|
|
893
|
+
message.identifier = object.identifier;
|
|
894
|
+
}
|
|
895
|
+
message.features = object.features?.map(e => e) || [];
|
|
896
|
+
return message;
|
|
897
|
+
},
|
|
898
|
+
toAmino(message: Version): VersionAmino {
|
|
899
|
+
const obj: any = {};
|
|
900
|
+
obj.identifier = message.identifier;
|
|
901
|
+
if (message.features) {
|
|
902
|
+
obj.features = message.features.map(e => e);
|
|
903
|
+
} else {
|
|
904
|
+
obj.features = [];
|
|
905
|
+
}
|
|
906
|
+
return obj;
|
|
907
|
+
},
|
|
908
|
+
fromAminoMsg(object: VersionAminoMsg): Version {
|
|
909
|
+
return Version.fromAmino(object.value);
|
|
910
|
+
},
|
|
911
|
+
toAminoMsg(message: Version): VersionAminoMsg {
|
|
912
|
+
return {
|
|
913
|
+
type: "cosmos-sdk/Version",
|
|
914
|
+
value: Version.toAmino(message)
|
|
915
|
+
};
|
|
916
|
+
},
|
|
917
|
+
fromProtoMsg(message: VersionProtoMsg): Version {
|
|
918
|
+
return Version.decode(message.value);
|
|
919
|
+
},
|
|
920
|
+
toProto(message: Version): Uint8Array {
|
|
921
|
+
return Version.encode(message).finish();
|
|
922
|
+
},
|
|
923
|
+
toProtoMsg(message: Version): VersionProtoMsg {
|
|
924
|
+
return {
|
|
925
|
+
typeUrl: "/ibc.core.connection.v1.Version",
|
|
926
|
+
value: Version.encode(message).finish()
|
|
927
|
+
};
|
|
712
928
|
}
|
|
713
|
-
|
|
714
929
|
};
|
|
715
|
-
|
|
716
930
|
function createBaseParams(): Params {
|
|
717
931
|
return {
|
|
718
|
-
maxExpectedTimePerBlock:
|
|
932
|
+
maxExpectedTimePerBlock: BigInt(0)
|
|
719
933
|
};
|
|
720
934
|
}
|
|
721
|
-
|
|
722
935
|
export const Params = {
|
|
723
|
-
|
|
724
|
-
|
|
936
|
+
typeUrl: "/ibc.core.connection.v1.Params",
|
|
937
|
+
encode(message: Params, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
938
|
+
if (message.maxExpectedTimePerBlock !== BigInt(0)) {
|
|
725
939
|
writer.uint32(8).uint64(message.maxExpectedTimePerBlock);
|
|
726
940
|
}
|
|
727
|
-
|
|
728
941
|
return writer;
|
|
729
942
|
},
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
const reader = input instanceof _m0.Reader ? input : new _m0.Reader(input);
|
|
943
|
+
decode(input: BinaryReader | Uint8Array, length?: number): Params {
|
|
944
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
733
945
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
734
946
|
const message = createBaseParams();
|
|
735
|
-
|
|
736
947
|
while (reader.pos < end) {
|
|
737
948
|
const tag = reader.uint32();
|
|
738
|
-
|
|
739
949
|
switch (tag >>> 3) {
|
|
740
950
|
case 1:
|
|
741
|
-
message.maxExpectedTimePerBlock =
|
|
951
|
+
message.maxExpectedTimePerBlock = reader.uint64();
|
|
742
952
|
break;
|
|
743
|
-
|
|
744
953
|
default:
|
|
745
954
|
reader.skipType(tag & 7);
|
|
746
955
|
break;
|
|
747
956
|
}
|
|
748
957
|
}
|
|
749
|
-
|
|
750
958
|
return message;
|
|
751
959
|
},
|
|
752
|
-
|
|
753
|
-
|
|
960
|
+
fromPartial(object: Partial<Params>): Params {
|
|
961
|
+
const message = createBaseParams();
|
|
962
|
+
message.maxExpectedTimePerBlock = object.maxExpectedTimePerBlock !== undefined && object.maxExpectedTimePerBlock !== null ? BigInt(object.maxExpectedTimePerBlock.toString()) : BigInt(0);
|
|
963
|
+
return message;
|
|
964
|
+
},
|
|
965
|
+
fromAmino(object: ParamsAmino): Params {
|
|
754
966
|
const message = createBaseParams();
|
|
755
|
-
|
|
967
|
+
if (object.max_expected_time_per_block !== undefined && object.max_expected_time_per_block !== null) {
|
|
968
|
+
message.maxExpectedTimePerBlock = BigInt(object.max_expected_time_per_block);
|
|
969
|
+
}
|
|
756
970
|
return message;
|
|
971
|
+
},
|
|
972
|
+
toAmino(message: Params): ParamsAmino {
|
|
973
|
+
const obj: any = {};
|
|
974
|
+
obj.max_expected_time_per_block = message.maxExpectedTimePerBlock ? message.maxExpectedTimePerBlock.toString() : undefined;
|
|
975
|
+
return obj;
|
|
976
|
+
},
|
|
977
|
+
fromAminoMsg(object: ParamsAminoMsg): Params {
|
|
978
|
+
return Params.fromAmino(object.value);
|
|
979
|
+
},
|
|
980
|
+
toAminoMsg(message: Params): ParamsAminoMsg {
|
|
981
|
+
return {
|
|
982
|
+
type: "cosmos-sdk/Params",
|
|
983
|
+
value: Params.toAmino(message)
|
|
984
|
+
};
|
|
985
|
+
},
|
|
986
|
+
fromProtoMsg(message: ParamsProtoMsg): Params {
|
|
987
|
+
return Params.decode(message.value);
|
|
988
|
+
},
|
|
989
|
+
toProto(message: Params): Uint8Array {
|
|
990
|
+
return Params.encode(message).finish();
|
|
991
|
+
},
|
|
992
|
+
toProtoMsg(message: Params): ParamsProtoMsg {
|
|
993
|
+
return {
|
|
994
|
+
typeUrl: "/ibc.core.connection.v1.Params",
|
|
995
|
+
value: Params.encode(message).finish()
|
|
996
|
+
};
|
|
757
997
|
}
|
|
758
|
-
|
|
759
998
|
};
|