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,19 +1,13 @@
|
|
|
1
1
|
import { Any } from "../../../../google/protobuf/any";
|
|
2
2
|
import { ConnectionEnd } from "../../../core/connection/v1/connection";
|
|
3
3
|
import { Channel } from "../../../core/channel/v1/channel";
|
|
4
|
-
import
|
|
5
|
-
import {
|
|
4
|
+
import { BinaryReader, BinaryWriter } from "../../../../binary";
|
|
5
|
+
import { bytesFromBase64, base64FromBytes } from "../../../../helpers";
|
|
6
6
|
/**
|
|
7
7
|
* DataType defines the type of solo machine proof being created. This is done
|
|
8
8
|
* to preserve uniqueness of different data sign byte encodings.
|
|
9
9
|
*/
|
|
10
|
-
|
|
11
|
-
export let DataType;
|
|
12
|
-
/**
|
|
13
|
-
* DataType defines the type of solo machine proof being created. This is done
|
|
14
|
-
* to preserve uniqueness of different data sign byte encodings.
|
|
15
|
-
*/
|
|
16
|
-
(function (DataType) {
|
|
10
|
+
export let DataType = /*#__PURE__*/function (DataType) {
|
|
17
11
|
DataType[DataType["DATA_TYPE_UNINITIALIZED_UNSPECIFIED"] = 0] = "DATA_TYPE_UNINITIALIZED_UNSPECIFIED";
|
|
18
12
|
DataType[DataType["DATA_TYPE_CLIENT_STATE"] = 1] = "DATA_TYPE_CLIENT_STATE";
|
|
19
13
|
DataType[DataType["DATA_TYPE_CONSENSUS_STATE"] = 2] = "DATA_TYPE_CONSENSUS_STATE";
|
|
@@ -25,21 +19,10 @@ export let DataType;
|
|
|
25
19
|
DataType[DataType["DATA_TYPE_NEXT_SEQUENCE_RECV"] = 8] = "DATA_TYPE_NEXT_SEQUENCE_RECV";
|
|
26
20
|
DataType[DataType["DATA_TYPE_HEADER"] = 9] = "DATA_TYPE_HEADER";
|
|
27
21
|
DataType[DataType["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
DataTypeSDKType[DataTypeSDKType["DATA_TYPE_CLIENT_STATE"] = 1] = "DATA_TYPE_CLIENT_STATE";
|
|
33
|
-
DataTypeSDKType[DataTypeSDKType["DATA_TYPE_CONSENSUS_STATE"] = 2] = "DATA_TYPE_CONSENSUS_STATE";
|
|
34
|
-
DataTypeSDKType[DataTypeSDKType["DATA_TYPE_CONNECTION_STATE"] = 3] = "DATA_TYPE_CONNECTION_STATE";
|
|
35
|
-
DataTypeSDKType[DataTypeSDKType["DATA_TYPE_CHANNEL_STATE"] = 4] = "DATA_TYPE_CHANNEL_STATE";
|
|
36
|
-
DataTypeSDKType[DataTypeSDKType["DATA_TYPE_PACKET_COMMITMENT"] = 5] = "DATA_TYPE_PACKET_COMMITMENT";
|
|
37
|
-
DataTypeSDKType[DataTypeSDKType["DATA_TYPE_PACKET_ACKNOWLEDGEMENT"] = 6] = "DATA_TYPE_PACKET_ACKNOWLEDGEMENT";
|
|
38
|
-
DataTypeSDKType[DataTypeSDKType["DATA_TYPE_PACKET_RECEIPT_ABSENCE"] = 7] = "DATA_TYPE_PACKET_RECEIPT_ABSENCE";
|
|
39
|
-
DataTypeSDKType[DataTypeSDKType["DATA_TYPE_NEXT_SEQUENCE_RECV"] = 8] = "DATA_TYPE_NEXT_SEQUENCE_RECV";
|
|
40
|
-
DataTypeSDKType[DataTypeSDKType["DATA_TYPE_HEADER"] = 9] = "DATA_TYPE_HEADER";
|
|
41
|
-
DataTypeSDKType[DataTypeSDKType["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
|
42
|
-
})(DataTypeSDKType || (DataTypeSDKType = {}));
|
|
22
|
+
return DataType;
|
|
23
|
+
}({});
|
|
24
|
+
export const DataTypeSDKType = DataType;
|
|
25
|
+
export const DataTypeAmino = DataType;
|
|
43
26
|
export function dataTypeFromJSON(object) {
|
|
44
27
|
switch (object) {
|
|
45
28
|
case 0:
|
|
@@ -110,17 +93,220 @@ export function dataTypeToJSON(object) {
|
|
|
110
93
|
* state and if the client is frozen.
|
|
111
94
|
*/
|
|
112
95
|
|
|
96
|
+
/**
|
|
97
|
+
* ClientState defines a solo machine client that tracks the current consensus
|
|
98
|
+
* state and if the client is frozen.
|
|
99
|
+
*/
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* ClientState defines a solo machine client that tracks the current consensus
|
|
103
|
+
* state and if the client is frozen.
|
|
104
|
+
*/
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* ConsensusState defines a solo machine consensus state. The sequence of a
|
|
108
|
+
* consensus state is contained in the "height" key used in storing the
|
|
109
|
+
* consensus state.
|
|
110
|
+
*/
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* ConsensusState defines a solo machine consensus state. The sequence of a
|
|
114
|
+
* consensus state is contained in the "height" key used in storing the
|
|
115
|
+
* consensus state.
|
|
116
|
+
*/
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* ConsensusState defines a solo machine consensus state. The sequence of a
|
|
120
|
+
* consensus state is contained in the "height" key used in storing the
|
|
121
|
+
* consensus state.
|
|
122
|
+
*/
|
|
123
|
+
|
|
124
|
+
/** Header defines a solo machine consensus header */
|
|
125
|
+
|
|
126
|
+
/** Header defines a solo machine consensus header */
|
|
127
|
+
|
|
128
|
+
/** Header defines a solo machine consensus header */
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Misbehaviour defines misbehaviour for a solo machine which consists
|
|
132
|
+
* of a sequence and two signatures over different messages at that sequence.
|
|
133
|
+
*/
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* Misbehaviour defines misbehaviour for a solo machine which consists
|
|
137
|
+
* of a sequence and two signatures over different messages at that sequence.
|
|
138
|
+
*/
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* Misbehaviour defines misbehaviour for a solo machine which consists
|
|
142
|
+
* of a sequence and two signatures over different messages at that sequence.
|
|
143
|
+
*/
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* SignatureAndData contains a signature and the data signed over to create that
|
|
147
|
+
* signature.
|
|
148
|
+
*/
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* SignatureAndData contains a signature and the data signed over to create that
|
|
152
|
+
* signature.
|
|
153
|
+
*/
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* SignatureAndData contains a signature and the data signed over to create that
|
|
157
|
+
* signature.
|
|
158
|
+
*/
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* TimestampedSignatureData contains the signature data and the timestamp of the
|
|
162
|
+
* signature.
|
|
163
|
+
*/
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* TimestampedSignatureData contains the signature data and the timestamp of the
|
|
167
|
+
* signature.
|
|
168
|
+
*/
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* TimestampedSignatureData contains the signature data and the timestamp of the
|
|
172
|
+
* signature.
|
|
173
|
+
*/
|
|
174
|
+
|
|
175
|
+
/** SignBytes defines the signed bytes used for signature verification. */
|
|
176
|
+
|
|
177
|
+
/** SignBytes defines the signed bytes used for signature verification. */
|
|
178
|
+
|
|
179
|
+
/** SignBytes defines the signed bytes used for signature verification. */
|
|
180
|
+
|
|
181
|
+
/** HeaderData returns the SignBytes data for update verification. */
|
|
182
|
+
|
|
183
|
+
/** HeaderData returns the SignBytes data for update verification. */
|
|
184
|
+
|
|
185
|
+
/** HeaderData returns the SignBytes data for update verification. */
|
|
186
|
+
|
|
187
|
+
/** ClientStateData returns the SignBytes data for client state verification. */
|
|
188
|
+
|
|
189
|
+
/** ClientStateData returns the SignBytes data for client state verification. */
|
|
190
|
+
|
|
191
|
+
/** ClientStateData returns the SignBytes data for client state verification. */
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* ConsensusStateData returns the SignBytes data for consensus state
|
|
195
|
+
* verification.
|
|
196
|
+
*/
|
|
197
|
+
|
|
198
|
+
/**
|
|
199
|
+
* ConsensusStateData returns the SignBytes data for consensus state
|
|
200
|
+
* verification.
|
|
201
|
+
*/
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* ConsensusStateData returns the SignBytes data for consensus state
|
|
205
|
+
* verification.
|
|
206
|
+
*/
|
|
207
|
+
|
|
208
|
+
/**
|
|
209
|
+
* ConnectionStateData returns the SignBytes data for connection state
|
|
210
|
+
* verification.
|
|
211
|
+
*/
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* ConnectionStateData returns the SignBytes data for connection state
|
|
215
|
+
* verification.
|
|
216
|
+
*/
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* ConnectionStateData returns the SignBytes data for connection state
|
|
220
|
+
* verification.
|
|
221
|
+
*/
|
|
222
|
+
|
|
223
|
+
/**
|
|
224
|
+
* ChannelStateData returns the SignBytes data for channel state
|
|
225
|
+
* verification.
|
|
226
|
+
*/
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* ChannelStateData returns the SignBytes data for channel state
|
|
230
|
+
* verification.
|
|
231
|
+
*/
|
|
232
|
+
|
|
233
|
+
/**
|
|
234
|
+
* ChannelStateData returns the SignBytes data for channel state
|
|
235
|
+
* verification.
|
|
236
|
+
*/
|
|
237
|
+
|
|
238
|
+
/**
|
|
239
|
+
* PacketCommitmentData returns the SignBytes data for packet commitment
|
|
240
|
+
* verification.
|
|
241
|
+
*/
|
|
242
|
+
|
|
243
|
+
/**
|
|
244
|
+
* PacketCommitmentData returns the SignBytes data for packet commitment
|
|
245
|
+
* verification.
|
|
246
|
+
*/
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* PacketCommitmentData returns the SignBytes data for packet commitment
|
|
250
|
+
* verification.
|
|
251
|
+
*/
|
|
252
|
+
|
|
253
|
+
/**
|
|
254
|
+
* PacketAcknowledgementData returns the SignBytes data for acknowledgement
|
|
255
|
+
* verification.
|
|
256
|
+
*/
|
|
257
|
+
|
|
258
|
+
/**
|
|
259
|
+
* PacketAcknowledgementData returns the SignBytes data for acknowledgement
|
|
260
|
+
* verification.
|
|
261
|
+
*/
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* PacketAcknowledgementData returns the SignBytes data for acknowledgement
|
|
265
|
+
* verification.
|
|
266
|
+
*/
|
|
267
|
+
|
|
268
|
+
/**
|
|
269
|
+
* PacketReceiptAbsenceData returns the SignBytes data for
|
|
270
|
+
* packet receipt absence verification.
|
|
271
|
+
*/
|
|
272
|
+
|
|
273
|
+
/**
|
|
274
|
+
* PacketReceiptAbsenceData returns the SignBytes data for
|
|
275
|
+
* packet receipt absence verification.
|
|
276
|
+
*/
|
|
277
|
+
|
|
278
|
+
/**
|
|
279
|
+
* PacketReceiptAbsenceData returns the SignBytes data for
|
|
280
|
+
* packet receipt absence verification.
|
|
281
|
+
*/
|
|
282
|
+
|
|
283
|
+
/**
|
|
284
|
+
* NextSequenceRecvData returns the SignBytes data for verification of the next
|
|
285
|
+
* sequence to be received.
|
|
286
|
+
*/
|
|
287
|
+
|
|
288
|
+
/**
|
|
289
|
+
* NextSequenceRecvData returns the SignBytes data for verification of the next
|
|
290
|
+
* sequence to be received.
|
|
291
|
+
*/
|
|
292
|
+
|
|
293
|
+
/**
|
|
294
|
+
* NextSequenceRecvData returns the SignBytes data for verification of the next
|
|
295
|
+
* sequence to be received.
|
|
296
|
+
*/
|
|
297
|
+
|
|
113
298
|
function createBaseClientState() {
|
|
114
299
|
return {
|
|
115
|
-
sequence:
|
|
300
|
+
sequence: BigInt(0),
|
|
116
301
|
isFrozen: false,
|
|
117
302
|
consensusState: undefined,
|
|
118
303
|
allowUpdateAfterProposal: false
|
|
119
304
|
};
|
|
120
305
|
}
|
|
121
306
|
export const ClientState = {
|
|
122
|
-
|
|
123
|
-
|
|
307
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.ClientState",
|
|
308
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
309
|
+
if (message.sequence !== BigInt(0)) {
|
|
124
310
|
writer.uint32(8).uint64(message.sequence);
|
|
125
311
|
}
|
|
126
312
|
if (message.isFrozen === true) {
|
|
@@ -135,7 +321,7 @@ export const ClientState = {
|
|
|
135
321
|
return writer;
|
|
136
322
|
},
|
|
137
323
|
decode(input, length) {
|
|
138
|
-
const reader = input instanceof
|
|
324
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
139
325
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
140
326
|
const message = createBaseClientState();
|
|
141
327
|
while (reader.pos < end) {
|
|
@@ -163,35 +349,81 @@ export const ClientState = {
|
|
|
163
349
|
fromPartial(object) {
|
|
164
350
|
var _object$isFrozen, _object$allowUpdateAf;
|
|
165
351
|
const message = createBaseClientState();
|
|
166
|
-
message.sequence = object.sequence !== undefined && object.sequence !== null ?
|
|
352
|
+
message.sequence = object.sequence !== undefined && object.sequence !== null ? BigInt(object.sequence.toString()) : BigInt(0);
|
|
167
353
|
message.isFrozen = (_object$isFrozen = object.isFrozen) !== null && _object$isFrozen !== void 0 ? _object$isFrozen : false;
|
|
168
354
|
message.consensusState = object.consensusState !== undefined && object.consensusState !== null ? ConsensusState.fromPartial(object.consensusState) : undefined;
|
|
169
355
|
message.allowUpdateAfterProposal = (_object$allowUpdateAf = object.allowUpdateAfterProposal) !== null && _object$allowUpdateAf !== void 0 ? _object$allowUpdateAf : false;
|
|
170
356
|
return message;
|
|
357
|
+
},
|
|
358
|
+
fromAmino(object) {
|
|
359
|
+
const message = createBaseClientState();
|
|
360
|
+
if (object.sequence !== undefined && object.sequence !== null) {
|
|
361
|
+
message.sequence = BigInt(object.sequence);
|
|
362
|
+
}
|
|
363
|
+
if (object.is_frozen !== undefined && object.is_frozen !== null) {
|
|
364
|
+
message.isFrozen = object.is_frozen;
|
|
365
|
+
}
|
|
366
|
+
if (object.consensus_state !== undefined && object.consensus_state !== null) {
|
|
367
|
+
message.consensusState = ConsensusState.fromAmino(object.consensus_state);
|
|
368
|
+
}
|
|
369
|
+
if (object.allow_update_after_proposal !== undefined && object.allow_update_after_proposal !== null) {
|
|
370
|
+
message.allowUpdateAfterProposal = object.allow_update_after_proposal;
|
|
371
|
+
}
|
|
372
|
+
return message;
|
|
373
|
+
},
|
|
374
|
+
toAmino(message) {
|
|
375
|
+
const obj = {};
|
|
376
|
+
obj.sequence = message.sequence ? message.sequence.toString() : undefined;
|
|
377
|
+
obj.is_frozen = message.isFrozen;
|
|
378
|
+
obj.consensus_state = message.consensusState ? ConsensusState.toAmino(message.consensusState) : undefined;
|
|
379
|
+
obj.allow_update_after_proposal = message.allowUpdateAfterProposal;
|
|
380
|
+
return obj;
|
|
381
|
+
},
|
|
382
|
+
fromAminoMsg(object) {
|
|
383
|
+
return ClientState.fromAmino(object.value);
|
|
384
|
+
},
|
|
385
|
+
toAminoMsg(message) {
|
|
386
|
+
return {
|
|
387
|
+
type: "cosmos-sdk/ClientState",
|
|
388
|
+
value: ClientState.toAmino(message)
|
|
389
|
+
};
|
|
390
|
+
},
|
|
391
|
+
fromProtoMsg(message) {
|
|
392
|
+
return ClientState.decode(message.value);
|
|
393
|
+
},
|
|
394
|
+
toProto(message) {
|
|
395
|
+
return ClientState.encode(message).finish();
|
|
396
|
+
},
|
|
397
|
+
toProtoMsg(message) {
|
|
398
|
+
return {
|
|
399
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.ClientState",
|
|
400
|
+
value: ClientState.encode(message).finish()
|
|
401
|
+
};
|
|
171
402
|
}
|
|
172
403
|
};
|
|
173
404
|
function createBaseConsensusState() {
|
|
174
405
|
return {
|
|
175
406
|
publicKey: undefined,
|
|
176
407
|
diversifier: "",
|
|
177
|
-
timestamp:
|
|
408
|
+
timestamp: BigInt(0)
|
|
178
409
|
};
|
|
179
410
|
}
|
|
180
411
|
export const ConsensusState = {
|
|
181
|
-
|
|
412
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.ConsensusState",
|
|
413
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
182
414
|
if (message.publicKey !== undefined) {
|
|
183
415
|
Any.encode(message.publicKey, writer.uint32(10).fork()).ldelim();
|
|
184
416
|
}
|
|
185
417
|
if (message.diversifier !== "") {
|
|
186
418
|
writer.uint32(18).string(message.diversifier);
|
|
187
419
|
}
|
|
188
|
-
if (
|
|
420
|
+
if (message.timestamp !== BigInt(0)) {
|
|
189
421
|
writer.uint32(24).uint64(message.timestamp);
|
|
190
422
|
}
|
|
191
423
|
return writer;
|
|
192
424
|
},
|
|
193
425
|
decode(input, length) {
|
|
194
|
-
const reader = input instanceof
|
|
426
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
195
427
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
196
428
|
const message = createBaseConsensusState();
|
|
197
429
|
while (reader.pos < end) {
|
|
@@ -218,25 +450,67 @@ export const ConsensusState = {
|
|
|
218
450
|
const message = createBaseConsensusState();
|
|
219
451
|
message.publicKey = object.publicKey !== undefined && object.publicKey !== null ? Any.fromPartial(object.publicKey) : undefined;
|
|
220
452
|
message.diversifier = (_object$diversifier = object.diversifier) !== null && _object$diversifier !== void 0 ? _object$diversifier : "";
|
|
221
|
-
message.timestamp = object.timestamp !== undefined && object.timestamp !== null ?
|
|
453
|
+
message.timestamp = object.timestamp !== undefined && object.timestamp !== null ? BigInt(object.timestamp.toString()) : BigInt(0);
|
|
454
|
+
return message;
|
|
455
|
+
},
|
|
456
|
+
fromAmino(object) {
|
|
457
|
+
const message = createBaseConsensusState();
|
|
458
|
+
if (object.public_key !== undefined && object.public_key !== null) {
|
|
459
|
+
message.publicKey = Any.fromAmino(object.public_key);
|
|
460
|
+
}
|
|
461
|
+
if (object.diversifier !== undefined && object.diversifier !== null) {
|
|
462
|
+
message.diversifier = object.diversifier;
|
|
463
|
+
}
|
|
464
|
+
if (object.timestamp !== undefined && object.timestamp !== null) {
|
|
465
|
+
message.timestamp = BigInt(object.timestamp);
|
|
466
|
+
}
|
|
222
467
|
return message;
|
|
468
|
+
},
|
|
469
|
+
toAmino(message) {
|
|
470
|
+
const obj = {};
|
|
471
|
+
obj.public_key = message.publicKey ? Any.toAmino(message.publicKey) : undefined;
|
|
472
|
+
obj.diversifier = message.diversifier;
|
|
473
|
+
obj.timestamp = message.timestamp ? message.timestamp.toString() : undefined;
|
|
474
|
+
return obj;
|
|
475
|
+
},
|
|
476
|
+
fromAminoMsg(object) {
|
|
477
|
+
return ConsensusState.fromAmino(object.value);
|
|
478
|
+
},
|
|
479
|
+
toAminoMsg(message) {
|
|
480
|
+
return {
|
|
481
|
+
type: "cosmos-sdk/ConsensusState",
|
|
482
|
+
value: ConsensusState.toAmino(message)
|
|
483
|
+
};
|
|
484
|
+
},
|
|
485
|
+
fromProtoMsg(message) {
|
|
486
|
+
return ConsensusState.decode(message.value);
|
|
487
|
+
},
|
|
488
|
+
toProto(message) {
|
|
489
|
+
return ConsensusState.encode(message).finish();
|
|
490
|
+
},
|
|
491
|
+
toProtoMsg(message) {
|
|
492
|
+
return {
|
|
493
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.ConsensusState",
|
|
494
|
+
value: ConsensusState.encode(message).finish()
|
|
495
|
+
};
|
|
223
496
|
}
|
|
224
497
|
};
|
|
225
498
|
function createBaseHeader() {
|
|
226
499
|
return {
|
|
227
|
-
sequence:
|
|
228
|
-
timestamp:
|
|
500
|
+
sequence: BigInt(0),
|
|
501
|
+
timestamp: BigInt(0),
|
|
229
502
|
signature: new Uint8Array(),
|
|
230
503
|
newPublicKey: undefined,
|
|
231
504
|
newDiversifier: ""
|
|
232
505
|
};
|
|
233
506
|
}
|
|
234
507
|
export const Header = {
|
|
235
|
-
|
|
236
|
-
|
|
508
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.Header",
|
|
509
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
510
|
+
if (message.sequence !== BigInt(0)) {
|
|
237
511
|
writer.uint32(8).uint64(message.sequence);
|
|
238
512
|
}
|
|
239
|
-
if (
|
|
513
|
+
if (message.timestamp !== BigInt(0)) {
|
|
240
514
|
writer.uint32(16).uint64(message.timestamp);
|
|
241
515
|
}
|
|
242
516
|
if (message.signature.length !== 0) {
|
|
@@ -251,7 +525,7 @@ export const Header = {
|
|
|
251
525
|
return writer;
|
|
252
526
|
},
|
|
253
527
|
decode(input, length) {
|
|
254
|
-
const reader = input instanceof
|
|
528
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
255
529
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
256
530
|
const message = createBaseHeader();
|
|
257
531
|
while (reader.pos < end) {
|
|
@@ -282,28 +556,78 @@ export const Header = {
|
|
|
282
556
|
fromPartial(object) {
|
|
283
557
|
var _object$signature, _object$newDiversifie;
|
|
284
558
|
const message = createBaseHeader();
|
|
285
|
-
message.sequence = object.sequence !== undefined && object.sequence !== null ?
|
|
286
|
-
message.timestamp = object.timestamp !== undefined && object.timestamp !== null ?
|
|
559
|
+
message.sequence = object.sequence !== undefined && object.sequence !== null ? BigInt(object.sequence.toString()) : BigInt(0);
|
|
560
|
+
message.timestamp = object.timestamp !== undefined && object.timestamp !== null ? BigInt(object.timestamp.toString()) : BigInt(0);
|
|
287
561
|
message.signature = (_object$signature = object.signature) !== null && _object$signature !== void 0 ? _object$signature : new Uint8Array();
|
|
288
562
|
message.newPublicKey = object.newPublicKey !== undefined && object.newPublicKey !== null ? Any.fromPartial(object.newPublicKey) : undefined;
|
|
289
563
|
message.newDiversifier = (_object$newDiversifie = object.newDiversifier) !== null && _object$newDiversifie !== void 0 ? _object$newDiversifie : "";
|
|
290
564
|
return message;
|
|
565
|
+
},
|
|
566
|
+
fromAmino(object) {
|
|
567
|
+
const message = createBaseHeader();
|
|
568
|
+
if (object.sequence !== undefined && object.sequence !== null) {
|
|
569
|
+
message.sequence = BigInt(object.sequence);
|
|
570
|
+
}
|
|
571
|
+
if (object.timestamp !== undefined && object.timestamp !== null) {
|
|
572
|
+
message.timestamp = BigInt(object.timestamp);
|
|
573
|
+
}
|
|
574
|
+
if (object.signature !== undefined && object.signature !== null) {
|
|
575
|
+
message.signature = bytesFromBase64(object.signature);
|
|
576
|
+
}
|
|
577
|
+
if (object.new_public_key !== undefined && object.new_public_key !== null) {
|
|
578
|
+
message.newPublicKey = Any.fromAmino(object.new_public_key);
|
|
579
|
+
}
|
|
580
|
+
if (object.new_diversifier !== undefined && object.new_diversifier !== null) {
|
|
581
|
+
message.newDiversifier = object.new_diversifier;
|
|
582
|
+
}
|
|
583
|
+
return message;
|
|
584
|
+
},
|
|
585
|
+
toAmino(message) {
|
|
586
|
+
const obj = {};
|
|
587
|
+
obj.sequence = message.sequence ? message.sequence.toString() : undefined;
|
|
588
|
+
obj.timestamp = message.timestamp ? message.timestamp.toString() : undefined;
|
|
589
|
+
obj.signature = message.signature ? base64FromBytes(message.signature) : undefined;
|
|
590
|
+
obj.new_public_key = message.newPublicKey ? Any.toAmino(message.newPublicKey) : undefined;
|
|
591
|
+
obj.new_diversifier = message.newDiversifier;
|
|
592
|
+
return obj;
|
|
593
|
+
},
|
|
594
|
+
fromAminoMsg(object) {
|
|
595
|
+
return Header.fromAmino(object.value);
|
|
596
|
+
},
|
|
597
|
+
toAminoMsg(message) {
|
|
598
|
+
return {
|
|
599
|
+
type: "cosmos-sdk/Header",
|
|
600
|
+
value: Header.toAmino(message)
|
|
601
|
+
};
|
|
602
|
+
},
|
|
603
|
+
fromProtoMsg(message) {
|
|
604
|
+
return Header.decode(message.value);
|
|
605
|
+
},
|
|
606
|
+
toProto(message) {
|
|
607
|
+
return Header.encode(message).finish();
|
|
608
|
+
},
|
|
609
|
+
toProtoMsg(message) {
|
|
610
|
+
return {
|
|
611
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.Header",
|
|
612
|
+
value: Header.encode(message).finish()
|
|
613
|
+
};
|
|
291
614
|
}
|
|
292
615
|
};
|
|
293
616
|
function createBaseMisbehaviour() {
|
|
294
617
|
return {
|
|
295
618
|
clientId: "",
|
|
296
|
-
sequence:
|
|
619
|
+
sequence: BigInt(0),
|
|
297
620
|
signatureOne: undefined,
|
|
298
621
|
signatureTwo: undefined
|
|
299
622
|
};
|
|
300
623
|
}
|
|
301
624
|
export const Misbehaviour = {
|
|
302
|
-
|
|
625
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.Misbehaviour",
|
|
626
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
303
627
|
if (message.clientId !== "") {
|
|
304
628
|
writer.uint32(10).string(message.clientId);
|
|
305
629
|
}
|
|
306
|
-
if (
|
|
630
|
+
if (message.sequence !== BigInt(0)) {
|
|
307
631
|
writer.uint32(16).uint64(message.sequence);
|
|
308
632
|
}
|
|
309
633
|
if (message.signatureOne !== undefined) {
|
|
@@ -315,7 +639,7 @@ export const Misbehaviour = {
|
|
|
315
639
|
return writer;
|
|
316
640
|
},
|
|
317
641
|
decode(input, length) {
|
|
318
|
-
const reader = input instanceof
|
|
642
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
319
643
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
320
644
|
const message = createBaseMisbehaviour();
|
|
321
645
|
while (reader.pos < end) {
|
|
@@ -344,10 +668,55 @@ export const Misbehaviour = {
|
|
|
344
668
|
var _object$clientId;
|
|
345
669
|
const message = createBaseMisbehaviour();
|
|
346
670
|
message.clientId = (_object$clientId = object.clientId) !== null && _object$clientId !== void 0 ? _object$clientId : "";
|
|
347
|
-
message.sequence = object.sequence !== undefined && object.sequence !== null ?
|
|
671
|
+
message.sequence = object.sequence !== undefined && object.sequence !== null ? BigInt(object.sequence.toString()) : BigInt(0);
|
|
348
672
|
message.signatureOne = object.signatureOne !== undefined && object.signatureOne !== null ? SignatureAndData.fromPartial(object.signatureOne) : undefined;
|
|
349
673
|
message.signatureTwo = object.signatureTwo !== undefined && object.signatureTwo !== null ? SignatureAndData.fromPartial(object.signatureTwo) : undefined;
|
|
350
674
|
return message;
|
|
675
|
+
},
|
|
676
|
+
fromAmino(object) {
|
|
677
|
+
const message = createBaseMisbehaviour();
|
|
678
|
+
if (object.client_id !== undefined && object.client_id !== null) {
|
|
679
|
+
message.clientId = object.client_id;
|
|
680
|
+
}
|
|
681
|
+
if (object.sequence !== undefined && object.sequence !== null) {
|
|
682
|
+
message.sequence = BigInt(object.sequence);
|
|
683
|
+
}
|
|
684
|
+
if (object.signature_one !== undefined && object.signature_one !== null) {
|
|
685
|
+
message.signatureOne = SignatureAndData.fromAmino(object.signature_one);
|
|
686
|
+
}
|
|
687
|
+
if (object.signature_two !== undefined && object.signature_two !== null) {
|
|
688
|
+
message.signatureTwo = SignatureAndData.fromAmino(object.signature_two);
|
|
689
|
+
}
|
|
690
|
+
return message;
|
|
691
|
+
},
|
|
692
|
+
toAmino(message) {
|
|
693
|
+
const obj = {};
|
|
694
|
+
obj.client_id = message.clientId;
|
|
695
|
+
obj.sequence = message.sequence ? message.sequence.toString() : undefined;
|
|
696
|
+
obj.signature_one = message.signatureOne ? SignatureAndData.toAmino(message.signatureOne) : undefined;
|
|
697
|
+
obj.signature_two = message.signatureTwo ? SignatureAndData.toAmino(message.signatureTwo) : undefined;
|
|
698
|
+
return obj;
|
|
699
|
+
},
|
|
700
|
+
fromAminoMsg(object) {
|
|
701
|
+
return Misbehaviour.fromAmino(object.value);
|
|
702
|
+
},
|
|
703
|
+
toAminoMsg(message) {
|
|
704
|
+
return {
|
|
705
|
+
type: "cosmos-sdk/Misbehaviour",
|
|
706
|
+
value: Misbehaviour.toAmino(message)
|
|
707
|
+
};
|
|
708
|
+
},
|
|
709
|
+
fromProtoMsg(message) {
|
|
710
|
+
return Misbehaviour.decode(message.value);
|
|
711
|
+
},
|
|
712
|
+
toProto(message) {
|
|
713
|
+
return Misbehaviour.encode(message).finish();
|
|
714
|
+
},
|
|
715
|
+
toProtoMsg(message) {
|
|
716
|
+
return {
|
|
717
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.Misbehaviour",
|
|
718
|
+
value: Misbehaviour.encode(message).finish()
|
|
719
|
+
};
|
|
351
720
|
}
|
|
352
721
|
};
|
|
353
722
|
function createBaseSignatureAndData() {
|
|
@@ -355,11 +724,12 @@ function createBaseSignatureAndData() {
|
|
|
355
724
|
signature: new Uint8Array(),
|
|
356
725
|
dataType: 0,
|
|
357
726
|
data: new Uint8Array(),
|
|
358
|
-
timestamp:
|
|
727
|
+
timestamp: BigInt(0)
|
|
359
728
|
};
|
|
360
729
|
}
|
|
361
730
|
export const SignatureAndData = {
|
|
362
|
-
|
|
731
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.SignatureAndData",
|
|
732
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
363
733
|
if (message.signature.length !== 0) {
|
|
364
734
|
writer.uint32(10).bytes(message.signature);
|
|
365
735
|
}
|
|
@@ -369,13 +739,13 @@ export const SignatureAndData = {
|
|
|
369
739
|
if (message.data.length !== 0) {
|
|
370
740
|
writer.uint32(26).bytes(message.data);
|
|
371
741
|
}
|
|
372
|
-
if (
|
|
742
|
+
if (message.timestamp !== BigInt(0)) {
|
|
373
743
|
writer.uint32(32).uint64(message.timestamp);
|
|
374
744
|
}
|
|
375
745
|
return writer;
|
|
376
746
|
},
|
|
377
747
|
decode(input, length) {
|
|
378
|
-
const reader = input instanceof
|
|
748
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
379
749
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
380
750
|
const message = createBaseSignatureAndData();
|
|
381
751
|
while (reader.pos < end) {
|
|
@@ -406,28 +776,74 @@ export const SignatureAndData = {
|
|
|
406
776
|
message.signature = (_object$signature2 = object.signature) !== null && _object$signature2 !== void 0 ? _object$signature2 : new Uint8Array();
|
|
407
777
|
message.dataType = (_object$dataType = object.dataType) !== null && _object$dataType !== void 0 ? _object$dataType : 0;
|
|
408
778
|
message.data = (_object$data = object.data) !== null && _object$data !== void 0 ? _object$data : new Uint8Array();
|
|
409
|
-
message.timestamp = object.timestamp !== undefined && object.timestamp !== null ?
|
|
779
|
+
message.timestamp = object.timestamp !== undefined && object.timestamp !== null ? BigInt(object.timestamp.toString()) : BigInt(0);
|
|
780
|
+
return message;
|
|
781
|
+
},
|
|
782
|
+
fromAmino(object) {
|
|
783
|
+
const message = createBaseSignatureAndData();
|
|
784
|
+
if (object.signature !== undefined && object.signature !== null) {
|
|
785
|
+
message.signature = bytesFromBase64(object.signature);
|
|
786
|
+
}
|
|
787
|
+
if (object.data_type !== undefined && object.data_type !== null) {
|
|
788
|
+
message.dataType = dataTypeFromJSON(object.data_type);
|
|
789
|
+
}
|
|
790
|
+
if (object.data !== undefined && object.data !== null) {
|
|
791
|
+
message.data = bytesFromBase64(object.data);
|
|
792
|
+
}
|
|
793
|
+
if (object.timestamp !== undefined && object.timestamp !== null) {
|
|
794
|
+
message.timestamp = BigInt(object.timestamp);
|
|
795
|
+
}
|
|
410
796
|
return message;
|
|
797
|
+
},
|
|
798
|
+
toAmino(message) {
|
|
799
|
+
const obj = {};
|
|
800
|
+
obj.signature = message.signature ? base64FromBytes(message.signature) : undefined;
|
|
801
|
+
obj.data_type = dataTypeToJSON(message.dataType);
|
|
802
|
+
obj.data = message.data ? base64FromBytes(message.data) : undefined;
|
|
803
|
+
obj.timestamp = message.timestamp ? message.timestamp.toString() : undefined;
|
|
804
|
+
return obj;
|
|
805
|
+
},
|
|
806
|
+
fromAminoMsg(object) {
|
|
807
|
+
return SignatureAndData.fromAmino(object.value);
|
|
808
|
+
},
|
|
809
|
+
toAminoMsg(message) {
|
|
810
|
+
return {
|
|
811
|
+
type: "cosmos-sdk/SignatureAndData",
|
|
812
|
+
value: SignatureAndData.toAmino(message)
|
|
813
|
+
};
|
|
814
|
+
},
|
|
815
|
+
fromProtoMsg(message) {
|
|
816
|
+
return SignatureAndData.decode(message.value);
|
|
817
|
+
},
|
|
818
|
+
toProto(message) {
|
|
819
|
+
return SignatureAndData.encode(message).finish();
|
|
820
|
+
},
|
|
821
|
+
toProtoMsg(message) {
|
|
822
|
+
return {
|
|
823
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.SignatureAndData",
|
|
824
|
+
value: SignatureAndData.encode(message).finish()
|
|
825
|
+
};
|
|
411
826
|
}
|
|
412
827
|
};
|
|
413
828
|
function createBaseTimestampedSignatureData() {
|
|
414
829
|
return {
|
|
415
830
|
signatureData: new Uint8Array(),
|
|
416
|
-
timestamp:
|
|
831
|
+
timestamp: BigInt(0)
|
|
417
832
|
};
|
|
418
833
|
}
|
|
419
834
|
export const TimestampedSignatureData = {
|
|
420
|
-
|
|
835
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.TimestampedSignatureData",
|
|
836
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
421
837
|
if (message.signatureData.length !== 0) {
|
|
422
838
|
writer.uint32(10).bytes(message.signatureData);
|
|
423
839
|
}
|
|
424
|
-
if (
|
|
840
|
+
if (message.timestamp !== BigInt(0)) {
|
|
425
841
|
writer.uint32(16).uint64(message.timestamp);
|
|
426
842
|
}
|
|
427
843
|
return writer;
|
|
428
844
|
},
|
|
429
845
|
decode(input, length) {
|
|
430
|
-
const reader = input instanceof
|
|
846
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
431
847
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
432
848
|
const message = createBaseTimestampedSignatureData();
|
|
433
849
|
while (reader.pos < end) {
|
|
@@ -450,25 +866,63 @@ export const TimestampedSignatureData = {
|
|
|
450
866
|
var _object$signatureData;
|
|
451
867
|
const message = createBaseTimestampedSignatureData();
|
|
452
868
|
message.signatureData = (_object$signatureData = object.signatureData) !== null && _object$signatureData !== void 0 ? _object$signatureData : new Uint8Array();
|
|
453
|
-
message.timestamp = object.timestamp !== undefined && object.timestamp !== null ?
|
|
869
|
+
message.timestamp = object.timestamp !== undefined && object.timestamp !== null ? BigInt(object.timestamp.toString()) : BigInt(0);
|
|
870
|
+
return message;
|
|
871
|
+
},
|
|
872
|
+
fromAmino(object) {
|
|
873
|
+
const message = createBaseTimestampedSignatureData();
|
|
874
|
+
if (object.signature_data !== undefined && object.signature_data !== null) {
|
|
875
|
+
message.signatureData = bytesFromBase64(object.signature_data);
|
|
876
|
+
}
|
|
877
|
+
if (object.timestamp !== undefined && object.timestamp !== null) {
|
|
878
|
+
message.timestamp = BigInt(object.timestamp);
|
|
879
|
+
}
|
|
454
880
|
return message;
|
|
881
|
+
},
|
|
882
|
+
toAmino(message) {
|
|
883
|
+
const obj = {};
|
|
884
|
+
obj.signature_data = message.signatureData ? base64FromBytes(message.signatureData) : undefined;
|
|
885
|
+
obj.timestamp = message.timestamp ? message.timestamp.toString() : undefined;
|
|
886
|
+
return obj;
|
|
887
|
+
},
|
|
888
|
+
fromAminoMsg(object) {
|
|
889
|
+
return TimestampedSignatureData.fromAmino(object.value);
|
|
890
|
+
},
|
|
891
|
+
toAminoMsg(message) {
|
|
892
|
+
return {
|
|
893
|
+
type: "cosmos-sdk/TimestampedSignatureData",
|
|
894
|
+
value: TimestampedSignatureData.toAmino(message)
|
|
895
|
+
};
|
|
896
|
+
},
|
|
897
|
+
fromProtoMsg(message) {
|
|
898
|
+
return TimestampedSignatureData.decode(message.value);
|
|
899
|
+
},
|
|
900
|
+
toProto(message) {
|
|
901
|
+
return TimestampedSignatureData.encode(message).finish();
|
|
902
|
+
},
|
|
903
|
+
toProtoMsg(message) {
|
|
904
|
+
return {
|
|
905
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.TimestampedSignatureData",
|
|
906
|
+
value: TimestampedSignatureData.encode(message).finish()
|
|
907
|
+
};
|
|
455
908
|
}
|
|
456
909
|
};
|
|
457
910
|
function createBaseSignBytes() {
|
|
458
911
|
return {
|
|
459
|
-
sequence:
|
|
460
|
-
timestamp:
|
|
912
|
+
sequence: BigInt(0),
|
|
913
|
+
timestamp: BigInt(0),
|
|
461
914
|
diversifier: "",
|
|
462
915
|
dataType: 0,
|
|
463
916
|
data: new Uint8Array()
|
|
464
917
|
};
|
|
465
918
|
}
|
|
466
919
|
export const SignBytes = {
|
|
467
|
-
|
|
468
|
-
|
|
920
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.SignBytes",
|
|
921
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
922
|
+
if (message.sequence !== BigInt(0)) {
|
|
469
923
|
writer.uint32(8).uint64(message.sequence);
|
|
470
924
|
}
|
|
471
|
-
if (
|
|
925
|
+
if (message.timestamp !== BigInt(0)) {
|
|
472
926
|
writer.uint32(16).uint64(message.timestamp);
|
|
473
927
|
}
|
|
474
928
|
if (message.diversifier !== "") {
|
|
@@ -483,7 +937,7 @@ export const SignBytes = {
|
|
|
483
937
|
return writer;
|
|
484
938
|
},
|
|
485
939
|
decode(input, length) {
|
|
486
|
-
const reader = input instanceof
|
|
940
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
487
941
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
488
942
|
const message = createBaseSignBytes();
|
|
489
943
|
while (reader.pos < end) {
|
|
@@ -514,12 +968,61 @@ export const SignBytes = {
|
|
|
514
968
|
fromPartial(object) {
|
|
515
969
|
var _object$diversifier2, _object$dataType2, _object$data2;
|
|
516
970
|
const message = createBaseSignBytes();
|
|
517
|
-
message.sequence = object.sequence !== undefined && object.sequence !== null ?
|
|
518
|
-
message.timestamp = object.timestamp !== undefined && object.timestamp !== null ?
|
|
971
|
+
message.sequence = object.sequence !== undefined && object.sequence !== null ? BigInt(object.sequence.toString()) : BigInt(0);
|
|
972
|
+
message.timestamp = object.timestamp !== undefined && object.timestamp !== null ? BigInt(object.timestamp.toString()) : BigInt(0);
|
|
519
973
|
message.diversifier = (_object$diversifier2 = object.diversifier) !== null && _object$diversifier2 !== void 0 ? _object$diversifier2 : "";
|
|
520
974
|
message.dataType = (_object$dataType2 = object.dataType) !== null && _object$dataType2 !== void 0 ? _object$dataType2 : 0;
|
|
521
975
|
message.data = (_object$data2 = object.data) !== null && _object$data2 !== void 0 ? _object$data2 : new Uint8Array();
|
|
522
976
|
return message;
|
|
977
|
+
},
|
|
978
|
+
fromAmino(object) {
|
|
979
|
+
const message = createBaseSignBytes();
|
|
980
|
+
if (object.sequence !== undefined && object.sequence !== null) {
|
|
981
|
+
message.sequence = BigInt(object.sequence);
|
|
982
|
+
}
|
|
983
|
+
if (object.timestamp !== undefined && object.timestamp !== null) {
|
|
984
|
+
message.timestamp = BigInt(object.timestamp);
|
|
985
|
+
}
|
|
986
|
+
if (object.diversifier !== undefined && object.diversifier !== null) {
|
|
987
|
+
message.diversifier = object.diversifier;
|
|
988
|
+
}
|
|
989
|
+
if (object.data_type !== undefined && object.data_type !== null) {
|
|
990
|
+
message.dataType = dataTypeFromJSON(object.data_type);
|
|
991
|
+
}
|
|
992
|
+
if (object.data !== undefined && object.data !== null) {
|
|
993
|
+
message.data = bytesFromBase64(object.data);
|
|
994
|
+
}
|
|
995
|
+
return message;
|
|
996
|
+
},
|
|
997
|
+
toAmino(message) {
|
|
998
|
+
const obj = {};
|
|
999
|
+
obj.sequence = message.sequence ? message.sequence.toString() : undefined;
|
|
1000
|
+
obj.timestamp = message.timestamp ? message.timestamp.toString() : undefined;
|
|
1001
|
+
obj.diversifier = message.diversifier;
|
|
1002
|
+
obj.data_type = dataTypeToJSON(message.dataType);
|
|
1003
|
+
obj.data = message.data ? base64FromBytes(message.data) : undefined;
|
|
1004
|
+
return obj;
|
|
1005
|
+
},
|
|
1006
|
+
fromAminoMsg(object) {
|
|
1007
|
+
return SignBytes.fromAmino(object.value);
|
|
1008
|
+
},
|
|
1009
|
+
toAminoMsg(message) {
|
|
1010
|
+
return {
|
|
1011
|
+
type: "cosmos-sdk/SignBytes",
|
|
1012
|
+
value: SignBytes.toAmino(message)
|
|
1013
|
+
};
|
|
1014
|
+
},
|
|
1015
|
+
fromProtoMsg(message) {
|
|
1016
|
+
return SignBytes.decode(message.value);
|
|
1017
|
+
},
|
|
1018
|
+
toProto(message) {
|
|
1019
|
+
return SignBytes.encode(message).finish();
|
|
1020
|
+
},
|
|
1021
|
+
toProtoMsg(message) {
|
|
1022
|
+
return {
|
|
1023
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.SignBytes",
|
|
1024
|
+
value: SignBytes.encode(message).finish()
|
|
1025
|
+
};
|
|
523
1026
|
}
|
|
524
1027
|
};
|
|
525
1028
|
function createBaseHeaderData() {
|
|
@@ -529,7 +1032,8 @@ function createBaseHeaderData() {
|
|
|
529
1032
|
};
|
|
530
1033
|
}
|
|
531
1034
|
export const HeaderData = {
|
|
532
|
-
|
|
1035
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.HeaderData",
|
|
1036
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
533
1037
|
if (message.newPubKey !== undefined) {
|
|
534
1038
|
Any.encode(message.newPubKey, writer.uint32(10).fork()).ldelim();
|
|
535
1039
|
}
|
|
@@ -539,7 +1043,7 @@ export const HeaderData = {
|
|
|
539
1043
|
return writer;
|
|
540
1044
|
},
|
|
541
1045
|
decode(input, length) {
|
|
542
|
-
const reader = input instanceof
|
|
1046
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
543
1047
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
544
1048
|
const message = createBaseHeaderData();
|
|
545
1049
|
while (reader.pos < end) {
|
|
@@ -564,6 +1068,43 @@ export const HeaderData = {
|
|
|
564
1068
|
message.newPubKey = object.newPubKey !== undefined && object.newPubKey !== null ? Any.fromPartial(object.newPubKey) : undefined;
|
|
565
1069
|
message.newDiversifier = (_object$newDiversifie2 = object.newDiversifier) !== null && _object$newDiversifie2 !== void 0 ? _object$newDiversifie2 : "";
|
|
566
1070
|
return message;
|
|
1071
|
+
},
|
|
1072
|
+
fromAmino(object) {
|
|
1073
|
+
const message = createBaseHeaderData();
|
|
1074
|
+
if (object.new_pub_key !== undefined && object.new_pub_key !== null) {
|
|
1075
|
+
message.newPubKey = Any.fromAmino(object.new_pub_key);
|
|
1076
|
+
}
|
|
1077
|
+
if (object.new_diversifier !== undefined && object.new_diversifier !== null) {
|
|
1078
|
+
message.newDiversifier = object.new_diversifier;
|
|
1079
|
+
}
|
|
1080
|
+
return message;
|
|
1081
|
+
},
|
|
1082
|
+
toAmino(message) {
|
|
1083
|
+
const obj = {};
|
|
1084
|
+
obj.new_pub_key = message.newPubKey ? Any.toAmino(message.newPubKey) : undefined;
|
|
1085
|
+
obj.new_diversifier = message.newDiversifier;
|
|
1086
|
+
return obj;
|
|
1087
|
+
},
|
|
1088
|
+
fromAminoMsg(object) {
|
|
1089
|
+
return HeaderData.fromAmino(object.value);
|
|
1090
|
+
},
|
|
1091
|
+
toAminoMsg(message) {
|
|
1092
|
+
return {
|
|
1093
|
+
type: "cosmos-sdk/HeaderData",
|
|
1094
|
+
value: HeaderData.toAmino(message)
|
|
1095
|
+
};
|
|
1096
|
+
},
|
|
1097
|
+
fromProtoMsg(message) {
|
|
1098
|
+
return HeaderData.decode(message.value);
|
|
1099
|
+
},
|
|
1100
|
+
toProto(message) {
|
|
1101
|
+
return HeaderData.encode(message).finish();
|
|
1102
|
+
},
|
|
1103
|
+
toProtoMsg(message) {
|
|
1104
|
+
return {
|
|
1105
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.HeaderData",
|
|
1106
|
+
value: HeaderData.encode(message).finish()
|
|
1107
|
+
};
|
|
567
1108
|
}
|
|
568
1109
|
};
|
|
569
1110
|
function createBaseClientStateData() {
|
|
@@ -573,7 +1114,8 @@ function createBaseClientStateData() {
|
|
|
573
1114
|
};
|
|
574
1115
|
}
|
|
575
1116
|
export const ClientStateData = {
|
|
576
|
-
|
|
1117
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.ClientStateData",
|
|
1118
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
577
1119
|
if (message.path.length !== 0) {
|
|
578
1120
|
writer.uint32(10).bytes(message.path);
|
|
579
1121
|
}
|
|
@@ -583,7 +1125,7 @@ export const ClientStateData = {
|
|
|
583
1125
|
return writer;
|
|
584
1126
|
},
|
|
585
1127
|
decode(input, length) {
|
|
586
|
-
const reader = input instanceof
|
|
1128
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
587
1129
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
588
1130
|
const message = createBaseClientStateData();
|
|
589
1131
|
while (reader.pos < end) {
|
|
@@ -608,6 +1150,43 @@ export const ClientStateData = {
|
|
|
608
1150
|
message.path = (_object$path = object.path) !== null && _object$path !== void 0 ? _object$path : new Uint8Array();
|
|
609
1151
|
message.clientState = object.clientState !== undefined && object.clientState !== null ? Any.fromPartial(object.clientState) : undefined;
|
|
610
1152
|
return message;
|
|
1153
|
+
},
|
|
1154
|
+
fromAmino(object) {
|
|
1155
|
+
const message = createBaseClientStateData();
|
|
1156
|
+
if (object.path !== undefined && object.path !== null) {
|
|
1157
|
+
message.path = bytesFromBase64(object.path);
|
|
1158
|
+
}
|
|
1159
|
+
if (object.client_state !== undefined && object.client_state !== null) {
|
|
1160
|
+
message.clientState = Any.fromAmino(object.client_state);
|
|
1161
|
+
}
|
|
1162
|
+
return message;
|
|
1163
|
+
},
|
|
1164
|
+
toAmino(message) {
|
|
1165
|
+
const obj = {};
|
|
1166
|
+
obj.path = message.path ? base64FromBytes(message.path) : undefined;
|
|
1167
|
+
obj.client_state = message.clientState ? Any.toAmino(message.clientState) : undefined;
|
|
1168
|
+
return obj;
|
|
1169
|
+
},
|
|
1170
|
+
fromAminoMsg(object) {
|
|
1171
|
+
return ClientStateData.fromAmino(object.value);
|
|
1172
|
+
},
|
|
1173
|
+
toAminoMsg(message) {
|
|
1174
|
+
return {
|
|
1175
|
+
type: "cosmos-sdk/ClientStateData",
|
|
1176
|
+
value: ClientStateData.toAmino(message)
|
|
1177
|
+
};
|
|
1178
|
+
},
|
|
1179
|
+
fromProtoMsg(message) {
|
|
1180
|
+
return ClientStateData.decode(message.value);
|
|
1181
|
+
},
|
|
1182
|
+
toProto(message) {
|
|
1183
|
+
return ClientStateData.encode(message).finish();
|
|
1184
|
+
},
|
|
1185
|
+
toProtoMsg(message) {
|
|
1186
|
+
return {
|
|
1187
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.ClientStateData",
|
|
1188
|
+
value: ClientStateData.encode(message).finish()
|
|
1189
|
+
};
|
|
611
1190
|
}
|
|
612
1191
|
};
|
|
613
1192
|
function createBaseConsensusStateData() {
|
|
@@ -617,7 +1196,8 @@ function createBaseConsensusStateData() {
|
|
|
617
1196
|
};
|
|
618
1197
|
}
|
|
619
1198
|
export const ConsensusStateData = {
|
|
620
|
-
|
|
1199
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.ConsensusStateData",
|
|
1200
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
621
1201
|
if (message.path.length !== 0) {
|
|
622
1202
|
writer.uint32(10).bytes(message.path);
|
|
623
1203
|
}
|
|
@@ -627,7 +1207,7 @@ export const ConsensusStateData = {
|
|
|
627
1207
|
return writer;
|
|
628
1208
|
},
|
|
629
1209
|
decode(input, length) {
|
|
630
|
-
const reader = input instanceof
|
|
1210
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
631
1211
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
632
1212
|
const message = createBaseConsensusStateData();
|
|
633
1213
|
while (reader.pos < end) {
|
|
@@ -652,6 +1232,43 @@ export const ConsensusStateData = {
|
|
|
652
1232
|
message.path = (_object$path2 = object.path) !== null && _object$path2 !== void 0 ? _object$path2 : new Uint8Array();
|
|
653
1233
|
message.consensusState = object.consensusState !== undefined && object.consensusState !== null ? Any.fromPartial(object.consensusState) : undefined;
|
|
654
1234
|
return message;
|
|
1235
|
+
},
|
|
1236
|
+
fromAmino(object) {
|
|
1237
|
+
const message = createBaseConsensusStateData();
|
|
1238
|
+
if (object.path !== undefined && object.path !== null) {
|
|
1239
|
+
message.path = bytesFromBase64(object.path);
|
|
1240
|
+
}
|
|
1241
|
+
if (object.consensus_state !== undefined && object.consensus_state !== null) {
|
|
1242
|
+
message.consensusState = Any.fromAmino(object.consensus_state);
|
|
1243
|
+
}
|
|
1244
|
+
return message;
|
|
1245
|
+
},
|
|
1246
|
+
toAmino(message) {
|
|
1247
|
+
const obj = {};
|
|
1248
|
+
obj.path = message.path ? base64FromBytes(message.path) : undefined;
|
|
1249
|
+
obj.consensus_state = message.consensusState ? Any.toAmino(message.consensusState) : undefined;
|
|
1250
|
+
return obj;
|
|
1251
|
+
},
|
|
1252
|
+
fromAminoMsg(object) {
|
|
1253
|
+
return ConsensusStateData.fromAmino(object.value);
|
|
1254
|
+
},
|
|
1255
|
+
toAminoMsg(message) {
|
|
1256
|
+
return {
|
|
1257
|
+
type: "cosmos-sdk/ConsensusStateData",
|
|
1258
|
+
value: ConsensusStateData.toAmino(message)
|
|
1259
|
+
};
|
|
1260
|
+
},
|
|
1261
|
+
fromProtoMsg(message) {
|
|
1262
|
+
return ConsensusStateData.decode(message.value);
|
|
1263
|
+
},
|
|
1264
|
+
toProto(message) {
|
|
1265
|
+
return ConsensusStateData.encode(message).finish();
|
|
1266
|
+
},
|
|
1267
|
+
toProtoMsg(message) {
|
|
1268
|
+
return {
|
|
1269
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.ConsensusStateData",
|
|
1270
|
+
value: ConsensusStateData.encode(message).finish()
|
|
1271
|
+
};
|
|
655
1272
|
}
|
|
656
1273
|
};
|
|
657
1274
|
function createBaseConnectionStateData() {
|
|
@@ -661,7 +1278,8 @@ function createBaseConnectionStateData() {
|
|
|
661
1278
|
};
|
|
662
1279
|
}
|
|
663
1280
|
export const ConnectionStateData = {
|
|
664
|
-
|
|
1281
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.ConnectionStateData",
|
|
1282
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
665
1283
|
if (message.path.length !== 0) {
|
|
666
1284
|
writer.uint32(10).bytes(message.path);
|
|
667
1285
|
}
|
|
@@ -671,7 +1289,7 @@ export const ConnectionStateData = {
|
|
|
671
1289
|
return writer;
|
|
672
1290
|
},
|
|
673
1291
|
decode(input, length) {
|
|
674
|
-
const reader = input instanceof
|
|
1292
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
675
1293
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
676
1294
|
const message = createBaseConnectionStateData();
|
|
677
1295
|
while (reader.pos < end) {
|
|
@@ -696,6 +1314,43 @@ export const ConnectionStateData = {
|
|
|
696
1314
|
message.path = (_object$path3 = object.path) !== null && _object$path3 !== void 0 ? _object$path3 : new Uint8Array();
|
|
697
1315
|
message.connection = object.connection !== undefined && object.connection !== null ? ConnectionEnd.fromPartial(object.connection) : undefined;
|
|
698
1316
|
return message;
|
|
1317
|
+
},
|
|
1318
|
+
fromAmino(object) {
|
|
1319
|
+
const message = createBaseConnectionStateData();
|
|
1320
|
+
if (object.path !== undefined && object.path !== null) {
|
|
1321
|
+
message.path = bytesFromBase64(object.path);
|
|
1322
|
+
}
|
|
1323
|
+
if (object.connection !== undefined && object.connection !== null) {
|
|
1324
|
+
message.connection = ConnectionEnd.fromAmino(object.connection);
|
|
1325
|
+
}
|
|
1326
|
+
return message;
|
|
1327
|
+
},
|
|
1328
|
+
toAmino(message) {
|
|
1329
|
+
const obj = {};
|
|
1330
|
+
obj.path = message.path ? base64FromBytes(message.path) : undefined;
|
|
1331
|
+
obj.connection = message.connection ? ConnectionEnd.toAmino(message.connection) : undefined;
|
|
1332
|
+
return obj;
|
|
1333
|
+
},
|
|
1334
|
+
fromAminoMsg(object) {
|
|
1335
|
+
return ConnectionStateData.fromAmino(object.value);
|
|
1336
|
+
},
|
|
1337
|
+
toAminoMsg(message) {
|
|
1338
|
+
return {
|
|
1339
|
+
type: "cosmos-sdk/ConnectionStateData",
|
|
1340
|
+
value: ConnectionStateData.toAmino(message)
|
|
1341
|
+
};
|
|
1342
|
+
},
|
|
1343
|
+
fromProtoMsg(message) {
|
|
1344
|
+
return ConnectionStateData.decode(message.value);
|
|
1345
|
+
},
|
|
1346
|
+
toProto(message) {
|
|
1347
|
+
return ConnectionStateData.encode(message).finish();
|
|
1348
|
+
},
|
|
1349
|
+
toProtoMsg(message) {
|
|
1350
|
+
return {
|
|
1351
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.ConnectionStateData",
|
|
1352
|
+
value: ConnectionStateData.encode(message).finish()
|
|
1353
|
+
};
|
|
699
1354
|
}
|
|
700
1355
|
};
|
|
701
1356
|
function createBaseChannelStateData() {
|
|
@@ -705,7 +1360,8 @@ function createBaseChannelStateData() {
|
|
|
705
1360
|
};
|
|
706
1361
|
}
|
|
707
1362
|
export const ChannelStateData = {
|
|
708
|
-
|
|
1363
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.ChannelStateData",
|
|
1364
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
709
1365
|
if (message.path.length !== 0) {
|
|
710
1366
|
writer.uint32(10).bytes(message.path);
|
|
711
1367
|
}
|
|
@@ -715,7 +1371,7 @@ export const ChannelStateData = {
|
|
|
715
1371
|
return writer;
|
|
716
1372
|
},
|
|
717
1373
|
decode(input, length) {
|
|
718
|
-
const reader = input instanceof
|
|
1374
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
719
1375
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
720
1376
|
const message = createBaseChannelStateData();
|
|
721
1377
|
while (reader.pos < end) {
|
|
@@ -740,6 +1396,43 @@ export const ChannelStateData = {
|
|
|
740
1396
|
message.path = (_object$path4 = object.path) !== null && _object$path4 !== void 0 ? _object$path4 : new Uint8Array();
|
|
741
1397
|
message.channel = object.channel !== undefined && object.channel !== null ? Channel.fromPartial(object.channel) : undefined;
|
|
742
1398
|
return message;
|
|
1399
|
+
},
|
|
1400
|
+
fromAmino(object) {
|
|
1401
|
+
const message = createBaseChannelStateData();
|
|
1402
|
+
if (object.path !== undefined && object.path !== null) {
|
|
1403
|
+
message.path = bytesFromBase64(object.path);
|
|
1404
|
+
}
|
|
1405
|
+
if (object.channel !== undefined && object.channel !== null) {
|
|
1406
|
+
message.channel = Channel.fromAmino(object.channel);
|
|
1407
|
+
}
|
|
1408
|
+
return message;
|
|
1409
|
+
},
|
|
1410
|
+
toAmino(message) {
|
|
1411
|
+
const obj = {};
|
|
1412
|
+
obj.path = message.path ? base64FromBytes(message.path) : undefined;
|
|
1413
|
+
obj.channel = message.channel ? Channel.toAmino(message.channel) : undefined;
|
|
1414
|
+
return obj;
|
|
1415
|
+
},
|
|
1416
|
+
fromAminoMsg(object) {
|
|
1417
|
+
return ChannelStateData.fromAmino(object.value);
|
|
1418
|
+
},
|
|
1419
|
+
toAminoMsg(message) {
|
|
1420
|
+
return {
|
|
1421
|
+
type: "cosmos-sdk/ChannelStateData",
|
|
1422
|
+
value: ChannelStateData.toAmino(message)
|
|
1423
|
+
};
|
|
1424
|
+
},
|
|
1425
|
+
fromProtoMsg(message) {
|
|
1426
|
+
return ChannelStateData.decode(message.value);
|
|
1427
|
+
},
|
|
1428
|
+
toProto(message) {
|
|
1429
|
+
return ChannelStateData.encode(message).finish();
|
|
1430
|
+
},
|
|
1431
|
+
toProtoMsg(message) {
|
|
1432
|
+
return {
|
|
1433
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.ChannelStateData",
|
|
1434
|
+
value: ChannelStateData.encode(message).finish()
|
|
1435
|
+
};
|
|
743
1436
|
}
|
|
744
1437
|
};
|
|
745
1438
|
function createBasePacketCommitmentData() {
|
|
@@ -749,7 +1442,8 @@ function createBasePacketCommitmentData() {
|
|
|
749
1442
|
};
|
|
750
1443
|
}
|
|
751
1444
|
export const PacketCommitmentData = {
|
|
752
|
-
|
|
1445
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.PacketCommitmentData",
|
|
1446
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
753
1447
|
if (message.path.length !== 0) {
|
|
754
1448
|
writer.uint32(10).bytes(message.path);
|
|
755
1449
|
}
|
|
@@ -759,7 +1453,7 @@ export const PacketCommitmentData = {
|
|
|
759
1453
|
return writer;
|
|
760
1454
|
},
|
|
761
1455
|
decode(input, length) {
|
|
762
|
-
const reader = input instanceof
|
|
1456
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
763
1457
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
764
1458
|
const message = createBasePacketCommitmentData();
|
|
765
1459
|
while (reader.pos < end) {
|
|
@@ -784,6 +1478,43 @@ export const PacketCommitmentData = {
|
|
|
784
1478
|
message.path = (_object$path5 = object.path) !== null && _object$path5 !== void 0 ? _object$path5 : new Uint8Array();
|
|
785
1479
|
message.commitment = (_object$commitment = object.commitment) !== null && _object$commitment !== void 0 ? _object$commitment : new Uint8Array();
|
|
786
1480
|
return message;
|
|
1481
|
+
},
|
|
1482
|
+
fromAmino(object) {
|
|
1483
|
+
const message = createBasePacketCommitmentData();
|
|
1484
|
+
if (object.path !== undefined && object.path !== null) {
|
|
1485
|
+
message.path = bytesFromBase64(object.path);
|
|
1486
|
+
}
|
|
1487
|
+
if (object.commitment !== undefined && object.commitment !== null) {
|
|
1488
|
+
message.commitment = bytesFromBase64(object.commitment);
|
|
1489
|
+
}
|
|
1490
|
+
return message;
|
|
1491
|
+
},
|
|
1492
|
+
toAmino(message) {
|
|
1493
|
+
const obj = {};
|
|
1494
|
+
obj.path = message.path ? base64FromBytes(message.path) : undefined;
|
|
1495
|
+
obj.commitment = message.commitment ? base64FromBytes(message.commitment) : undefined;
|
|
1496
|
+
return obj;
|
|
1497
|
+
},
|
|
1498
|
+
fromAminoMsg(object) {
|
|
1499
|
+
return PacketCommitmentData.fromAmino(object.value);
|
|
1500
|
+
},
|
|
1501
|
+
toAminoMsg(message) {
|
|
1502
|
+
return {
|
|
1503
|
+
type: "cosmos-sdk/PacketCommitmentData",
|
|
1504
|
+
value: PacketCommitmentData.toAmino(message)
|
|
1505
|
+
};
|
|
1506
|
+
},
|
|
1507
|
+
fromProtoMsg(message) {
|
|
1508
|
+
return PacketCommitmentData.decode(message.value);
|
|
1509
|
+
},
|
|
1510
|
+
toProto(message) {
|
|
1511
|
+
return PacketCommitmentData.encode(message).finish();
|
|
1512
|
+
},
|
|
1513
|
+
toProtoMsg(message) {
|
|
1514
|
+
return {
|
|
1515
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.PacketCommitmentData",
|
|
1516
|
+
value: PacketCommitmentData.encode(message).finish()
|
|
1517
|
+
};
|
|
787
1518
|
}
|
|
788
1519
|
};
|
|
789
1520
|
function createBasePacketAcknowledgementData() {
|
|
@@ -793,7 +1524,8 @@ function createBasePacketAcknowledgementData() {
|
|
|
793
1524
|
};
|
|
794
1525
|
}
|
|
795
1526
|
export const PacketAcknowledgementData = {
|
|
796
|
-
|
|
1527
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.PacketAcknowledgementData",
|
|
1528
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
797
1529
|
if (message.path.length !== 0) {
|
|
798
1530
|
writer.uint32(10).bytes(message.path);
|
|
799
1531
|
}
|
|
@@ -803,7 +1535,7 @@ export const PacketAcknowledgementData = {
|
|
|
803
1535
|
return writer;
|
|
804
1536
|
},
|
|
805
1537
|
decode(input, length) {
|
|
806
|
-
const reader = input instanceof
|
|
1538
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
807
1539
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
808
1540
|
const message = createBasePacketAcknowledgementData();
|
|
809
1541
|
while (reader.pos < end) {
|
|
@@ -828,6 +1560,43 @@ export const PacketAcknowledgementData = {
|
|
|
828
1560
|
message.path = (_object$path6 = object.path) !== null && _object$path6 !== void 0 ? _object$path6 : new Uint8Array();
|
|
829
1561
|
message.acknowledgement = (_object$acknowledgeme = object.acknowledgement) !== null && _object$acknowledgeme !== void 0 ? _object$acknowledgeme : new Uint8Array();
|
|
830
1562
|
return message;
|
|
1563
|
+
},
|
|
1564
|
+
fromAmino(object) {
|
|
1565
|
+
const message = createBasePacketAcknowledgementData();
|
|
1566
|
+
if (object.path !== undefined && object.path !== null) {
|
|
1567
|
+
message.path = bytesFromBase64(object.path);
|
|
1568
|
+
}
|
|
1569
|
+
if (object.acknowledgement !== undefined && object.acknowledgement !== null) {
|
|
1570
|
+
message.acknowledgement = bytesFromBase64(object.acknowledgement);
|
|
1571
|
+
}
|
|
1572
|
+
return message;
|
|
1573
|
+
},
|
|
1574
|
+
toAmino(message) {
|
|
1575
|
+
const obj = {};
|
|
1576
|
+
obj.path = message.path ? base64FromBytes(message.path) : undefined;
|
|
1577
|
+
obj.acknowledgement = message.acknowledgement ? base64FromBytes(message.acknowledgement) : undefined;
|
|
1578
|
+
return obj;
|
|
1579
|
+
},
|
|
1580
|
+
fromAminoMsg(object) {
|
|
1581
|
+
return PacketAcknowledgementData.fromAmino(object.value);
|
|
1582
|
+
},
|
|
1583
|
+
toAminoMsg(message) {
|
|
1584
|
+
return {
|
|
1585
|
+
type: "cosmos-sdk/PacketAcknowledgementData",
|
|
1586
|
+
value: PacketAcknowledgementData.toAmino(message)
|
|
1587
|
+
};
|
|
1588
|
+
},
|
|
1589
|
+
fromProtoMsg(message) {
|
|
1590
|
+
return PacketAcknowledgementData.decode(message.value);
|
|
1591
|
+
},
|
|
1592
|
+
toProto(message) {
|
|
1593
|
+
return PacketAcknowledgementData.encode(message).finish();
|
|
1594
|
+
},
|
|
1595
|
+
toProtoMsg(message) {
|
|
1596
|
+
return {
|
|
1597
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.PacketAcknowledgementData",
|
|
1598
|
+
value: PacketAcknowledgementData.encode(message).finish()
|
|
1599
|
+
};
|
|
831
1600
|
}
|
|
832
1601
|
};
|
|
833
1602
|
function createBasePacketReceiptAbsenceData() {
|
|
@@ -836,14 +1605,15 @@ function createBasePacketReceiptAbsenceData() {
|
|
|
836
1605
|
};
|
|
837
1606
|
}
|
|
838
1607
|
export const PacketReceiptAbsenceData = {
|
|
839
|
-
|
|
1608
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.PacketReceiptAbsenceData",
|
|
1609
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
840
1610
|
if (message.path.length !== 0) {
|
|
841
1611
|
writer.uint32(10).bytes(message.path);
|
|
842
1612
|
}
|
|
843
1613
|
return writer;
|
|
844
1614
|
},
|
|
845
1615
|
decode(input, length) {
|
|
846
|
-
const reader = input instanceof
|
|
1616
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
847
1617
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
848
1618
|
const message = createBasePacketReceiptAbsenceData();
|
|
849
1619
|
while (reader.pos < end) {
|
|
@@ -864,26 +1634,60 @@ export const PacketReceiptAbsenceData = {
|
|
|
864
1634
|
const message = createBasePacketReceiptAbsenceData();
|
|
865
1635
|
message.path = (_object$path7 = object.path) !== null && _object$path7 !== void 0 ? _object$path7 : new Uint8Array();
|
|
866
1636
|
return message;
|
|
1637
|
+
},
|
|
1638
|
+
fromAmino(object) {
|
|
1639
|
+
const message = createBasePacketReceiptAbsenceData();
|
|
1640
|
+
if (object.path !== undefined && object.path !== null) {
|
|
1641
|
+
message.path = bytesFromBase64(object.path);
|
|
1642
|
+
}
|
|
1643
|
+
return message;
|
|
1644
|
+
},
|
|
1645
|
+
toAmino(message) {
|
|
1646
|
+
const obj = {};
|
|
1647
|
+
obj.path = message.path ? base64FromBytes(message.path) : undefined;
|
|
1648
|
+
return obj;
|
|
1649
|
+
},
|
|
1650
|
+
fromAminoMsg(object) {
|
|
1651
|
+
return PacketReceiptAbsenceData.fromAmino(object.value);
|
|
1652
|
+
},
|
|
1653
|
+
toAminoMsg(message) {
|
|
1654
|
+
return {
|
|
1655
|
+
type: "cosmos-sdk/PacketReceiptAbsenceData",
|
|
1656
|
+
value: PacketReceiptAbsenceData.toAmino(message)
|
|
1657
|
+
};
|
|
1658
|
+
},
|
|
1659
|
+
fromProtoMsg(message) {
|
|
1660
|
+
return PacketReceiptAbsenceData.decode(message.value);
|
|
1661
|
+
},
|
|
1662
|
+
toProto(message) {
|
|
1663
|
+
return PacketReceiptAbsenceData.encode(message).finish();
|
|
1664
|
+
},
|
|
1665
|
+
toProtoMsg(message) {
|
|
1666
|
+
return {
|
|
1667
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.PacketReceiptAbsenceData",
|
|
1668
|
+
value: PacketReceiptAbsenceData.encode(message).finish()
|
|
1669
|
+
};
|
|
867
1670
|
}
|
|
868
1671
|
};
|
|
869
1672
|
function createBaseNextSequenceRecvData() {
|
|
870
1673
|
return {
|
|
871
1674
|
path: new Uint8Array(),
|
|
872
|
-
nextSeqRecv:
|
|
1675
|
+
nextSeqRecv: BigInt(0)
|
|
873
1676
|
};
|
|
874
1677
|
}
|
|
875
1678
|
export const NextSequenceRecvData = {
|
|
876
|
-
|
|
1679
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.NextSequenceRecvData",
|
|
1680
|
+
encode(message, writer = BinaryWriter.create()) {
|
|
877
1681
|
if (message.path.length !== 0) {
|
|
878
1682
|
writer.uint32(10).bytes(message.path);
|
|
879
1683
|
}
|
|
880
|
-
if (
|
|
1684
|
+
if (message.nextSeqRecv !== BigInt(0)) {
|
|
881
1685
|
writer.uint32(16).uint64(message.nextSeqRecv);
|
|
882
1686
|
}
|
|
883
1687
|
return writer;
|
|
884
1688
|
},
|
|
885
1689
|
decode(input, length) {
|
|
886
|
-
const reader = input instanceof
|
|
1690
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
887
1691
|
let end = length === undefined ? reader.len : reader.pos + length;
|
|
888
1692
|
const message = createBaseNextSequenceRecvData();
|
|
889
1693
|
while (reader.pos < end) {
|
|
@@ -906,7 +1710,44 @@ export const NextSequenceRecvData = {
|
|
|
906
1710
|
var _object$path8;
|
|
907
1711
|
const message = createBaseNextSequenceRecvData();
|
|
908
1712
|
message.path = (_object$path8 = object.path) !== null && _object$path8 !== void 0 ? _object$path8 : new Uint8Array();
|
|
909
|
-
message.nextSeqRecv = object.nextSeqRecv !== undefined && object.nextSeqRecv !== null ?
|
|
1713
|
+
message.nextSeqRecv = object.nextSeqRecv !== undefined && object.nextSeqRecv !== null ? BigInt(object.nextSeqRecv.toString()) : BigInt(0);
|
|
910
1714
|
return message;
|
|
1715
|
+
},
|
|
1716
|
+
fromAmino(object) {
|
|
1717
|
+
const message = createBaseNextSequenceRecvData();
|
|
1718
|
+
if (object.path !== undefined && object.path !== null) {
|
|
1719
|
+
message.path = bytesFromBase64(object.path);
|
|
1720
|
+
}
|
|
1721
|
+
if (object.next_seq_recv !== undefined && object.next_seq_recv !== null) {
|
|
1722
|
+
message.nextSeqRecv = BigInt(object.next_seq_recv);
|
|
1723
|
+
}
|
|
1724
|
+
return message;
|
|
1725
|
+
},
|
|
1726
|
+
toAmino(message) {
|
|
1727
|
+
const obj = {};
|
|
1728
|
+
obj.path = message.path ? base64FromBytes(message.path) : undefined;
|
|
1729
|
+
obj.next_seq_recv = message.nextSeqRecv ? message.nextSeqRecv.toString() : undefined;
|
|
1730
|
+
return obj;
|
|
1731
|
+
},
|
|
1732
|
+
fromAminoMsg(object) {
|
|
1733
|
+
return NextSequenceRecvData.fromAmino(object.value);
|
|
1734
|
+
},
|
|
1735
|
+
toAminoMsg(message) {
|
|
1736
|
+
return {
|
|
1737
|
+
type: "cosmos-sdk/NextSequenceRecvData",
|
|
1738
|
+
value: NextSequenceRecvData.toAmino(message)
|
|
1739
|
+
};
|
|
1740
|
+
},
|
|
1741
|
+
fromProtoMsg(message) {
|
|
1742
|
+
return NextSequenceRecvData.decode(message.value);
|
|
1743
|
+
},
|
|
1744
|
+
toProto(message) {
|
|
1745
|
+
return NextSequenceRecvData.encode(message).finish();
|
|
1746
|
+
},
|
|
1747
|
+
toProtoMsg(message) {
|
|
1748
|
+
return {
|
|
1749
|
+
typeUrl: "/ibc.lightclients.solomachine.v2.NextSequenceRecvData",
|
|
1750
|
+
value: NextSequenceRecvData.encode(message).finish()
|
|
1751
|
+
};
|
|
911
1752
|
}
|
|
912
1753
|
};
|