@burnt-labs/xion-types 0.0.1-test.1762962136
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/jest.config.js +18 -0
- package/package.json +56 -0
- package/scripts/aminos.ts +29 -0
- package/scripts/codegen.ts +94 -0
- package/scripts/download-protos.ts +248 -0
- package/telescope.config.json +84 -0
- package/tsconfig.esm.json +9 -0
- package/tsconfig.json +18 -0
- package/types/abstractaccount/bundle.ts +35 -0
- package/types/abstractaccount/client.ts +48 -0
- package/types/abstractaccount/lcd.ts +130 -0
- package/types/abstractaccount/rpc.query.ts +93 -0
- package/types/abstractaccount/rpc.tx.ts +74 -0
- package/types/abstractaccount/v1/account.ts +250 -0
- package/types/abstractaccount/v1/events.ts +135 -0
- package/types/abstractaccount/v1/genesis.ts +106 -0
- package/types/abstractaccount/v1/params.ts +192 -0
- package/types/abstractaccount/v1/query.lcd.ts +19 -0
- package/types/abstractaccount/v1/query.rpc.Query.ts +31 -0
- package/types/abstractaccount/v1/query.ts +160 -0
- package/types/abstractaccount/v1/tx.amino.ts +14 -0
- package/types/abstractaccount/v1/tx.registry.ts +53 -0
- package/types/abstractaccount/v1/tx.rpc.msg.ts +29 -0
- package/types/abstractaccount/v1/tx.ts +454 -0
- package/types/amino/amino.ts +1 -0
- package/types/amino/bundle.ts +5 -0
- package/types/binary.ts +535 -0
- package/types/cosmos/app/runtime/v1alpha1/module.ts +492 -0
- package/types/cosmos/app/v1alpha1/config.ts +437 -0
- package/types/cosmos/app/v1alpha1/module.ts +466 -0
- package/types/cosmos/app/v1alpha1/query.rpc.Query.ts +31 -0
- package/types/cosmos/app/v1alpha1/query.ts +176 -0
- package/types/cosmos/auth/module/v1/module.ts +288 -0
- package/types/cosmos/auth/v1beta1/auth.ts +562 -0
- package/types/cosmos/auth/v1beta1/genesis.ts +123 -0
- package/types/cosmos/auth/v1beta1/query.lcd.ts +91 -0
- package/types/cosmos/auth/v1beta1/query.rpc.Query.ts +137 -0
- package/types/cosmos/auth/v1beta1/query.ts +2005 -0
- package/types/cosmos/auth/v1beta1/tx.amino.ts +9 -0
- package/types/cosmos/auth/v1beta1/tx.registry.ts +35 -0
- package/types/cosmos/auth/v1beta1/tx.rpc.msg.ts +24 -0
- package/types/cosmos/auth/v1beta1/tx.ts +208 -0
- package/types/cosmos/authz/module/v1/module.ts +77 -0
- package/types/cosmos/authz/v1beta1/authz.ts +599 -0
- package/types/cosmos/authz/v1beta1/event.ts +274 -0
- package/types/cosmos/authz/v1beta1/genesis.ts +99 -0
- package/types/cosmos/authz/v1beta1/query.lcd.ts +59 -0
- package/types/cosmos/authz/v1beta1/query.rpc.Query.ts +53 -0
- package/types/cosmos/authz/v1beta1/query.ts +734 -0
- package/types/cosmos/authz/v1beta1/tx.amino.ts +19 -0
- package/types/cosmos/authz/v1beta1/tx.registry.ts +71 -0
- package/types/cosmos/authz/v1beta1/tx.rpc.msg.ts +49 -0
- package/types/cosmos/authz/v1beta1/tx.ts +666 -0
- package/types/cosmos/autocli/v1/options.ts +1317 -0
- package/types/cosmos/autocli/v1/query.rpc.Query.ts +32 -0
- package/types/cosmos/autocli/v1/query.ts +298 -0
- package/types/cosmos/bank/module/v1/module.ts +156 -0
- package/types/cosmos/bank/v1beta1/authz.ts +134 -0
- package/types/cosmos/bank/v1beta1/bank.ts +984 -0
- package/types/cosmos/bank/v1beta1/genesis.ts +316 -0
- package/types/cosmos/bank/v1beta1/query.lcd.ts +207 -0
- package/types/cosmos/bank/v1beta1/query.rpc.Query.ts +212 -0
- package/types/cosmos/bank/v1beta1/query.ts +3051 -0
- package/types/cosmos/bank/v1beta1/tx.amino.ts +24 -0
- package/types/cosmos/bank/v1beta1/tx.registry.ts +89 -0
- package/types/cosmos/bank/v1beta1/tx.rpc.msg.ts +53 -0
- package/types/cosmos/bank/v1beta1/tx.ts +845 -0
- package/types/cosmos/base/abci/v1beta1/abci.ts +1776 -0
- package/types/cosmos/base/node/v1beta1/query.lcd.ts +25 -0
- package/types/cosmos/base/node/v1beta1/query.rpc.Service.ts +42 -0
- package/types/cosmos/base/node/v1beta1/query.ts +467 -0
- package/types/cosmos/base/query/v1beta1/pagination.ts +372 -0
- package/types/cosmos/base/reflection/v1beta1/reflection.ts +385 -0
- package/types/cosmos/base/reflection/v2alpha1/reflection.ts +2790 -0
- package/types/cosmos/base/tendermint/v1beta1/query.lcd.ts +87 -0
- package/types/cosmos/base/tendermint/v1beta1/query.rpc.Service.ts +103 -0
- package/types/cosmos/base/tendermint/v1beta1/query.ts +2358 -0
- package/types/cosmos/base/tendermint/v1beta1/types.ts +492 -0
- package/types/cosmos/base/v1beta1/coin.ts +449 -0
- package/types/cosmos/benchmark/module/v1/module.ts +384 -0
- package/types/cosmos/benchmark/v1/benchmark.ts +186 -0
- package/types/cosmos/benchmark/v1/tx.amino.ts +9 -0
- package/types/cosmos/benchmark/v1/tx.registry.ts +35 -0
- package/types/cosmos/benchmark/v1/tx.rpc.msg.ts +21 -0
- package/types/cosmos/benchmark/v1/tx.ts +224 -0
- package/types/cosmos/bundle.ts +807 -0
- package/types/cosmos/circuit/module/v1/module.ts +100 -0
- package/types/cosmos/circuit/v1/query.lcd.ts +40 -0
- package/types/cosmos/circuit/v1/query.rpc.Query.ts +55 -0
- package/types/cosmos/circuit/v1/query.ts +576 -0
- package/types/cosmos/circuit/v1/tx.amino.ts +19 -0
- package/types/cosmos/circuit/v1/tx.registry.ts +71 -0
- package/types/cosmos/circuit/v1/tx.rpc.msg.ts +43 -0
- package/types/cosmos/circuit/v1/tx.ts +685 -0
- package/types/cosmos/circuit/v1/types.ts +419 -0
- package/types/cosmos/client.ts +100 -0
- package/types/cosmos/consensus/module/v1/module.ts +100 -0
- package/types/cosmos/consensus/v1/query.lcd.ts +19 -0
- package/types/cosmos/consensus/v1/query.rpc.Query.ts +31 -0
- package/types/cosmos/consensus/v1/query.ts +182 -0
- package/types/cosmos/consensus/v1/tx.amino.ts +9 -0
- package/types/cosmos/consensus/v1/tx.registry.ts +35 -0
- package/types/cosmos/consensus/v1/tx.rpc.msg.ts +24 -0
- package/types/cosmos/consensus/v1/tx.ts +257 -0
- package/types/cosmos/counter/module/v1/module.ts +100 -0
- package/types/cosmos/counter/v1/query.rpc.Query.ts +31 -0
- package/types/cosmos/counter/v1/query.ts +171 -0
- package/types/cosmos/counter/v1/tx.amino.ts +9 -0
- package/types/cosmos/counter/v1/tx.registry.ts +35 -0
- package/types/cosmos/counter/v1/tx.rpc.msg.ts +21 -0
- package/types/cosmos/counter/v1/tx.ts +217 -0
- package/types/cosmos/crisis/module/v1/module.ts +119 -0
- package/types/cosmos/crisis/v1beta1/genesis.ts +105 -0
- package/types/cosmos/crisis/v1beta1/tx.amino.ts +14 -0
- package/types/cosmos/crisis/v1beta1/tx.registry.ts +53 -0
- package/types/cosmos/crisis/v1beta1/tx.rpc.msg.ts +32 -0
- package/types/cosmos/crisis/v1beta1/tx.ts +413 -0
- package/types/cosmos/crypto/bls12_381/keys.ts +207 -0
- package/types/cosmos/crypto/ed25519/keys.ts +214 -0
- package/types/cosmos/crypto/hd/v1/hd.ts +180 -0
- package/types/cosmos/crypto/keyring/v1/record.ts +542 -0
- package/types/cosmos/crypto/multisig/keys.ts +124 -0
- package/types/cosmos/crypto/multisig/v1beta1/multisig.ts +231 -0
- package/types/cosmos/crypto/secp256k1/keys.ts +207 -0
- package/types/cosmos/crypto/secp256r1/keys.ts +203 -0
- package/types/cosmos/distribution/module/v1/module.ts +115 -0
- package/types/cosmos/distribution/v1beta1/distribution.ts +1551 -0
- package/types/cosmos/distribution/v1beta1/genesis.ts +1208 -0
- package/types/cosmos/distribution/v1beta1/query.lcd.ts +89 -0
- package/types/cosmos/distribution/v1beta1/query.rpc.Query.ts +137 -0
- package/types/cosmos/distribution/v1beta1/query.ts +2195 -0
- package/types/cosmos/distribution/v1beta1/tx.amino.ts +39 -0
- package/types/cosmos/distribution/v1beta1/tx.registry.ts +143 -0
- package/types/cosmos/distribution/v1beta1/tx.rpc.msg.ts +96 -0
- package/types/cosmos/distribution/v1beta1/tx.ts +1460 -0
- package/types/cosmos/epochs/module/v1/module.ts +77 -0
- package/types/cosmos/epochs/v1beta1/events.ts +205 -0
- package/types/cosmos/epochs/v1beta1/genesis.ts +384 -0
- package/types/cosmos/epochs/v1beta1/query.lcd.ts +31 -0
- package/types/cosmos/epochs/v1beta1/query.rpc.Query.ts +42 -0
- package/types/cosmos/epochs/v1beta1/query.ts +390 -0
- package/types/cosmos/evidence/module/v1/module.ts +77 -0
- package/types/cosmos/evidence/v1beta1/evidence.ts +166 -0
- package/types/cosmos/evidence/v1beta1/genesis.ts +103 -0
- package/types/cosmos/evidence/v1beta1/query.lcd.ts +40 -0
- package/types/cosmos/evidence/v1beta1/query.rpc.Query.ts +44 -0
- package/types/cosmos/evidence/v1beta1/query.ts +458 -0
- package/types/cosmos/evidence/v1beta1/tx.amino.ts +9 -0
- package/types/cosmos/evidence/v1beta1/tx.registry.ts +35 -0
- package/types/cosmos/evidence/v1beta1/tx.rpc.msg.ts +24 -0
- package/types/cosmos/evidence/v1beta1/tx.ts +243 -0
- package/types/cosmos/feegrant/module/v1/module.ts +77 -0
- package/types/cosmos/feegrant/v1beta1/feegrant.ts +701 -0
- package/types/cosmos/feegrant/v1beta1/genesis.ts +99 -0
- package/types/cosmos/feegrant/v1beta1/query.lcd.ts +44 -0
- package/types/cosmos/feegrant/v1beta1/query.rpc.Query.ts +53 -0
- package/types/cosmos/feegrant/v1beta1/query.ts +683 -0
- package/types/cosmos/feegrant/v1beta1/tx.amino.ts +19 -0
- package/types/cosmos/feegrant/v1beta1/tx.registry.ts +71 -0
- package/types/cosmos/feegrant/v1beta1/tx.rpc.msg.ts +43 -0
- package/types/cosmos/feegrant/v1beta1/tx.ts +683 -0
- package/types/cosmos/genutil/module/v1/module.ts +77 -0
- package/types/cosmos/genutil/v1beta1/genesis.ts +103 -0
- package/types/cosmos/gov/module/v1/module.ts +123 -0
- package/types/cosmos/gov/v1/genesis.ts +288 -0
- package/types/cosmos/gov/v1/gov.ts +1889 -0
- package/types/cosmos/gov/v1/query.lcd.ts +95 -0
- package/types/cosmos/gov/v1/query.rpc.Query.ts +119 -0
- package/types/cosmos/gov/v1/query.ts +2026 -0
- package/types/cosmos/gov/v1/tx.amino.ts +39 -0
- package/types/cosmos/gov/v1/tx.registry.ts +143 -0
- package/types/cosmos/gov/v1/tx.rpc.msg.ts +75 -0
- package/types/cosmos/gov/v1/tx.ts +1911 -0
- package/types/cosmos/gov/v1beta1/genesis.ts +221 -0
- package/types/cosmos/gov/v1beta1/gov.ts +1725 -0
- package/types/cosmos/gov/v1beta1/query.lcd.ts +89 -0
- package/types/cosmos/gov/v1beta1/query.rpc.Query.ts +108 -0
- package/types/cosmos/gov/v1beta1/query.ts +1813 -0
- package/types/cosmos/gov/v1beta1/tx.amino.ts +24 -0
- package/types/cosmos/gov/v1beta1/tx.registry.ts +89 -0
- package/types/cosmos/gov/v1beta1/tx.rpc.msg.ts +45 -0
- package/types/cosmos/gov/v1beta1/tx.ts +1128 -0
- package/types/cosmos/group/module/v1/module.ts +128 -0
- package/types/cosmos/group/v1/events.ts +1195 -0
- package/types/cosmos/group/v1/genesis.ts +256 -0
- package/types/cosmos/group/v1/query.lcd.ts +158 -0
- package/types/cosmos/group/v1/query.rpc.Query.ts +182 -0
- package/types/cosmos/group/v1/query.ts +3108 -0
- package/types/cosmos/group/v1/tx.amino.ts +74 -0
- package/types/cosmos/group/v1/tx.registry.ts +269 -0
- package/types/cosmos/group/v1/tx.rpc.msg.ts +125 -0
- package/types/cosmos/group/v1/tx.ts +3353 -0
- package/types/cosmos/group/v1/types.ts +2248 -0
- package/types/cosmos/ics23/v1/proofs.ts +2167 -0
- package/types/cosmos/lcd.ts +125 -0
- package/types/cosmos/mint/module/v1/module.ts +115 -0
- package/types/cosmos/mint/v1beta1/genesis.ts +120 -0
- package/types/cosmos/mint/v1beta1/mint.ts +313 -0
- package/types/cosmos/mint/v1beta1/query.lcd.ts +31 -0
- package/types/cosmos/mint/v1beta1/query.rpc.Query.ts +53 -0
- package/types/cosmos/mint/v1beta1/query.ts +544 -0
- package/types/cosmos/mint/v1beta1/tx.amino.ts +9 -0
- package/types/cosmos/mint/v1beta1/tx.registry.ts +35 -0
- package/types/cosmos/mint/v1beta1/tx.rpc.msg.ts +24 -0
- package/types/cosmos/mint/v1beta1/tx.ts +208 -0
- package/types/cosmos/msg/textual/v1/textual.ts +1 -0
- package/types/cosmos/msg/v1/msg.ts +1 -0
- package/types/cosmos/nft/module/v1/module.ts +77 -0
- package/types/cosmos/nft/v1beta1/event.ts +429 -0
- package/types/cosmos/nft/v1beta1/genesis.ts +243 -0
- package/types/cosmos/nft/v1beta1/nft.ts +389 -0
- package/types/cosmos/nft/v1beta1/query.lcd.ts +77 -0
- package/types/cosmos/nft/v1beta1/query.rpc.Query.ts +102 -0
- package/types/cosmos/nft/v1beta1/query.ts +1513 -0
- package/types/cosmos/nft/v1beta1/tx.amino.ts +9 -0
- package/types/cosmos/nft/v1beta1/tx.registry.ts +35 -0
- package/types/cosmos/nft/v1beta1/tx.rpc.msg.ts +21 -0
- package/types/cosmos/nft/v1beta1/tx.ts +232 -0
- package/types/cosmos/params/module/v1/module.ts +77 -0
- package/types/cosmos/params/v1beta1/params.ts +262 -0
- package/types/cosmos/params/v1beta1/query.lcd.ts +35 -0
- package/types/cosmos/params/v1beta1/query.rpc.Query.ts +45 -0
- package/types/cosmos/params/v1beta1/query.ts +521 -0
- package/types/cosmos/protocolpool/module/v1/module.ts +100 -0
- package/types/cosmos/protocolpool/v1/genesis.ts +126 -0
- package/types/cosmos/protocolpool/v1/query.lcd.ts +37 -0
- package/types/cosmos/protocolpool/v1/query.rpc.Query.ts +64 -0
- package/types/cosmos/protocolpool/v1/query.ts +761 -0
- package/types/cosmos/protocolpool/v1/tx.amino.ts +29 -0
- package/types/cosmos/protocolpool/v1/tx.registry.ts +107 -0
- package/types/cosmos/protocolpool/v1/tx.rpc.msg.ts +69 -0
- package/types/cosmos/protocolpool/v1/tx.ts +1124 -0
- package/types/cosmos/protocolpool/v1/types.ts +268 -0
- package/types/cosmos/query/v1/query.ts +1 -0
- package/types/cosmos/reflection/v1/reflection.ts +178 -0
- package/types/cosmos/rpc.query.ts +90 -0
- package/types/cosmos/rpc.tx.ts +71 -0
- package/types/cosmos/slashing/module/v1/module.ts +100 -0
- package/types/cosmos/slashing/v1beta1/genesis.ts +511 -0
- package/types/cosmos/slashing/v1beta1/query.lcd.ts +40 -0
- package/types/cosmos/slashing/v1beta1/query.rpc.Query.ts +55 -0
- package/types/cosmos/slashing/v1beta1/query.ts +606 -0
- package/types/cosmos/slashing/v1beta1/slashing.ts +371 -0
- package/types/cosmos/slashing/v1beta1/tx.amino.ts +14 -0
- package/types/cosmos/slashing/v1beta1/tx.registry.ts +53 -0
- package/types/cosmos/slashing/v1beta1/tx.rpc.msg.ts +36 -0
- package/types/cosmos/slashing/v1beta1/tx.ts +377 -0
- package/types/cosmos/staking/module/v1/module.ts +165 -0
- package/types/cosmos/staking/v1beta1/authz.ts +321 -0
- package/types/cosmos/staking/v1beta1/genesis.ts +370 -0
- package/types/cosmos/staking/v1beta1/query.lcd.ts +174 -0
- package/types/cosmos/staking/v1beta1/query.rpc.Query.ts +217 -0
- package/types/cosmos/staking/v1beta1/query.ts +3187 -0
- package/types/cosmos/staking/v1beta1/staking.ts +3193 -0
- package/types/cosmos/staking/v1beta1/tx.amino.ts +39 -0
- package/types/cosmos/staking/v1beta1/tx.registry.ts +143 -0
- package/types/cosmos/staking/v1beta1/tx.rpc.msg.ts +84 -0
- package/types/cosmos/staking/v1beta1/tx.ts +1642 -0
- package/types/cosmos/store/internal/kv/v1beta1/kv.ts +208 -0
- package/types/cosmos/store/snapshots/v1/snapshot.ts +840 -0
- package/types/cosmos/store/streaming/abci/grpc.ts +393 -0
- package/types/cosmos/store/v1beta1/commit_info.ts +369 -0
- package/types/cosmos/store/v1beta1/listening.ts +296 -0
- package/types/cosmos/tx/config/v1/config.ts +127 -0
- package/types/cosmos/tx/signing/v1beta1/signing.ts +713 -0
- package/types/cosmos/tx/v1beta1/service.lcd.ts +59 -0
- package/types/cosmos/tx/v1beta1/service.rpc.Service.ts +119 -0
- package/types/cosmos/tx/v1beta1/service.ts +2319 -0
- package/types/cosmos/tx/v1beta1/tx.ts +2168 -0
- package/types/cosmos/upgrade/module/v1/module.ts +100 -0
- package/types/cosmos/upgrade/v1beta1/query.lcd.ts +54 -0
- package/types/cosmos/upgrade/v1beta1/query.rpc.Query.ts +82 -0
- package/types/cosmos/upgrade/v1beta1/query.ts +1004 -0
- package/types/cosmos/upgrade/v1beta1/tx.amino.ts +14 -0
- package/types/cosmos/upgrade/v1beta1/tx.registry.ts +53 -0
- package/types/cosmos/upgrade/v1beta1/tx.rpc.msg.ts +32 -0
- package/types/cosmos/upgrade/v1beta1/tx.ts +368 -0
- package/types/cosmos/upgrade/v1beta1/upgrade.ts +623 -0
- package/types/cosmos/vesting/module/v1/module.ts +77 -0
- package/types/cosmos/vesting/v1beta1/tx.amino.ts +19 -0
- package/types/cosmos/vesting/v1beta1/tx.registry.ts +71 -0
- package/types/cosmos/vesting/v1beta1/tx.rpc.msg.ts +46 -0
- package/types/cosmos/vesting/v1beta1/tx.ts +688 -0
- package/types/cosmos/vesting/v1beta1/vesting.ts +751 -0
- package/types/cosmos_proto/bundle.ts +5 -0
- package/types/cosmos_proto/cosmos.ts +355 -0
- package/types/cosmwasm/bundle.ts +39 -0
- package/types/cosmwasm/client.ts +48 -0
- package/types/cosmwasm/lcd.ts +132 -0
- package/types/cosmwasm/rpc.query.ts +95 -0
- package/types/cosmwasm/rpc.tx.ts +76 -0
- package/types/cosmwasm/wasm/v1/authz.ts +1409 -0
- package/types/cosmwasm/wasm/v1/genesis.ts +544 -0
- package/types/cosmwasm/wasm/v1/ibc.ts +437 -0
- package/types/cosmwasm/wasm/v1/proposal_legacy.ts +2711 -0
- package/types/cosmwasm/wasm/v1/query.lcd.ts +154 -0
- package/types/cosmwasm/wasm/v1/query.rpc.Query.ts +181 -0
- package/types/cosmwasm/wasm/v1/query.ts +3339 -0
- package/types/cosmwasm/wasm/v1/tx.amino.ts +89 -0
- package/types/cosmwasm/wasm/v1/tx.registry.ts +323 -0
- package/types/cosmwasm/wasm/v1/tx.rpc.msg.ts +197 -0
- package/types/cosmwasm/wasm/v1/tx.ts +4403 -0
- package/types/cosmwasm/wasm/v1/types.ts +1193 -0
- package/types/gogoproto/bundle.ts +5 -0
- package/types/gogoproto/gogo.ts +1 -0
- package/types/google/api/annotations.ts +1 -0
- package/types/google/api/apikeys/v2/apikeys.ts +1245 -0
- package/types/google/api/apikeys/v2/resources.ts +1268 -0
- package/types/google/api/auth.ts +1175 -0
- package/types/google/api/backend.ts +691 -0
- package/types/google/api/billing.ts +333 -0
- package/types/google/api/client.ts +3100 -0
- package/types/google/api/cloudquotas/v1/cloudquotas.ts +1196 -0
- package/types/google/api/cloudquotas/v1/resources.ts +2065 -0
- package/types/google/api/cloudquotas/v1beta/cloudquotas.ts +1196 -0
- package/types/google/api/cloudquotas/v1beta/quota_adjuster_settings.ts +509 -0
- package/types/google/api/cloudquotas/v1beta/resources.ts +2069 -0
- package/types/google/api/config_change.ts +385 -0
- package/types/google/api/consumer.ts +362 -0
- package/types/google/api/context.ts +418 -0
- package/types/google/api/control.ts +141 -0
- package/types/google/api/distribution.ts +1253 -0
- package/types/google/api/documentation.ts +738 -0
- package/types/google/api/endpoint.ts +245 -0
- package/types/google/api/error_reason.ts +816 -0
- package/types/google/api/expr/conformance/v1alpha1/conformance_service.ts +1293 -0
- package/types/google/api/expr/v1alpha1/checked.ts +2259 -0
- package/types/google/api/expr/v1alpha1/eval.ts +675 -0
- package/types/google/api/expr/v1alpha1/explain.ts +257 -0
- package/types/google/api/expr/v1alpha1/syntax.ts +2983 -0
- package/types/google/api/expr/v1alpha1/value.ts +771 -0
- package/types/google/api/expr/v1beta1/decl.ts +563 -0
- package/types/google/api/expr/v1beta1/eval.ts +758 -0
- package/types/google/api/expr/v1beta1/expr.ts +1750 -0
- package/types/google/api/expr/v1beta1/source.ts +446 -0
- package/types/google/api/expr/v1beta1/value.ts +771 -0
- package/types/google/api/field_behavior.ts +136 -0
- package/types/google/api/field_info.ts +319 -0
- package/types/google/api/http.ts +1362 -0
- package/types/google/api/httpbody.ts +270 -0
- package/types/google/api/label.ts +174 -0
- package/types/google/api/launch_stage.ts +112 -0
- package/types/google/api/log.ts +201 -0
- package/types/google/api/logging.ts +355 -0
- package/types/google/api/metric.ts +1174 -0
- package/types/google/api/monitored_resource.ts +841 -0
- package/types/google/api/monitoring.ts +430 -0
- package/types/google/api/policy.ts +314 -0
- package/types/google/api/quota.ts +1040 -0
- package/types/google/api/resource.ts +769 -0
- package/types/google/api/routing.ts +1405 -0
- package/types/google/api/service.ts +790 -0
- package/types/google/api/servicecontrol/v1/check_error.ts +366 -0
- package/types/google/api/servicecontrol/v1/distribution.ts +773 -0
- package/types/google/api/servicecontrol/v1/http_request.ts +427 -0
- package/types/google/api/servicecontrol/v1/log_entry.ts +804 -0
- package/types/google/api/servicecontrol/v1/metric_value.ts +499 -0
- package/types/google/api/servicecontrol/v1/operation.ts +544 -0
- package/types/google/api/servicecontrol/v1/quota_controller.ts +1041 -0
- package/types/google/api/servicecontrol/v1/service_controller.ts +1164 -0
- package/types/google/api/servicecontrol/v2/service_controller.ts +949 -0
- package/types/google/api/servicemanagement/v1/resources.ts +1888 -0
- package/types/google/api/servicemanagement/v1/servicemanager.ts +2444 -0
- package/types/google/api/serviceusage/v1/resources.ts +629 -0
- package/types/google/api/serviceusage/v1/serviceusage.ts +1530 -0
- package/types/google/api/serviceusage/v1beta1/resources.ts +2972 -0
- package/types/google/api/serviceusage/v1beta1/serviceusage.ts +4567 -0
- package/types/google/api/source_info.ts +97 -0
- package/types/google/api/system_parameter.ts +461 -0
- package/types/google/api/usage.ts +404 -0
- package/types/google/api/visibility.ts +328 -0
- package/types/google/bundle.ts +115 -0
- package/types/google/logging/type/log_severity.ts +104 -0
- package/types/google/longrunning/operations.ts +1153 -0
- package/types/google/protobuf/any.ts +424 -0
- package/types/google/protobuf/api.ts +942 -0
- package/types/google/protobuf/descriptor.ts +7801 -0
- package/types/google/protobuf/duration.ts +284 -0
- package/types/google/protobuf/empty.ts +93 -0
- package/types/google/protobuf/field_mask.ts +694 -0
- package/types/google/protobuf/source_context.ts +105 -0
- package/types/google/protobuf/struct.ts +584 -0
- package/types/google/protobuf/timestamp.ts +373 -0
- package/types/google/protobuf/type.ts +1279 -0
- package/types/google/protobuf/wrappers.ts +1002 -0
- package/types/google/rpc/code.ts +286 -0
- package/types/google/rpc/context/attribute_context.ts +2517 -0
- package/types/google/rpc/context/audit_context.ts +188 -0
- package/types/google/rpc/error_details.ts +2467 -0
- package/types/google/rpc/http.ts +424 -0
- package/types/google/rpc/status.ts +173 -0
- package/types/helpers.ts +259 -0
- package/types/ibc/applications/interchain_accounts/controller/v1/controller.ts +107 -0
- package/types/ibc/applications/interchain_accounts/controller/v1/query.lcd.ts +25 -0
- package/types/ibc/applications/interchain_accounts/controller/v1/query.rpc.Query.ts +42 -0
- package/types/ibc/applications/interchain_accounts/controller/v1/query.ts +379 -0
- package/types/ibc/applications/interchain_accounts/controller/v1/tx.amino.ts +19 -0
- package/types/ibc/applications/interchain_accounts/controller/v1/tx.registry.ts +71 -0
- package/types/ibc/applications/interchain_accounts/controller/v1/tx.rpc.msg.ts +37 -0
- package/types/ibc/applications/interchain_accounts/controller/v1/tx.ts +692 -0
- package/types/ibc/applications/interchain_accounts/genesis/v1/genesis.ts +675 -0
- package/types/ibc/applications/interchain_accounts/host/v1/host.ts +261 -0
- package/types/ibc/applications/interchain_accounts/host/v1/query.lcd.ts +19 -0
- package/types/ibc/applications/interchain_accounts/host/v1/query.rpc.Query.ts +31 -0
- package/types/ibc/applications/interchain_accounts/host/v1/query.ts +176 -0
- package/types/ibc/applications/interchain_accounts/host/v1/tx.amino.ts +14 -0
- package/types/ibc/applications/interchain_accounts/host/v1/tx.registry.ts +53 -0
- package/types/ibc/applications/interchain_accounts/host/v1/tx.rpc.msg.ts +29 -0
- package/types/ibc/applications/interchain_accounts/host/v1/tx.ts +440 -0
- package/types/ibc/applications/interchain_accounts/v1/account.ts +115 -0
- package/types/ibc/applications/interchain_accounts/v1/metadata.ts +206 -0
- package/types/ibc/applications/interchain_accounts/v1/packet.ts +262 -0
- package/types/ibc/applications/transfer/v1/authz.ts +297 -0
- package/types/ibc/applications/transfer/v1/denomtrace.ts +133 -0
- package/types/ibc/applications/transfer/v1/genesis.ts +156 -0
- package/types/ibc/applications/transfer/v1/packet.ts +186 -0
- package/types/ibc/applications/transfer/v1/query.lcd.ts +76 -0
- package/types/ibc/applications/transfer/v1/query.rpc.Query.ts +88 -0
- package/types/ibc/applications/transfer/v1/query.ts +1233 -0
- package/types/ibc/applications/transfer/v1/token.ts +347 -0
- package/types/ibc/applications/transfer/v1/transfer.ts +140 -0
- package/types/ibc/applications/transfer/v1/tx.amino.ts +14 -0
- package/types/ibc/applications/transfer/v1/tx.registry.ts +53 -0
- package/types/ibc/applications/transfer/v1/tx.rpc.msg.ts +29 -0
- package/types/ibc/applications/transfer/v1/tx.ts +579 -0
- package/types/ibc/bundle.ts +265 -0
- package/types/ibc/client.ts +72 -0
- package/types/ibc/core/channel/v1/channel.ts +1455 -0
- package/types/ibc/core/channel/v1/genesis.ts +351 -0
- package/types/ibc/core/channel/v1/query.lcd.ts +135 -0
- package/types/ibc/core/channel/v1/query.rpc.Query.ts +200 -0
- package/types/ibc/core/channel/v1/query.ts +3943 -0
- package/types/ibc/core/channel/v1/tx.amino.ts +54 -0
- package/types/ibc/core/channel/v1/tx.registry.ts +197 -0
- package/types/ibc/core/channel/v1/tx.rpc.msg.ts +96 -0
- package/types/ibc/core/channel/v1/tx.ts +2558 -0
- package/types/ibc/core/channel/v2/genesis.ts +433 -0
- package/types/ibc/core/channel/v2/packet.ts +640 -0
- package/types/ibc/core/channel/v2/query.lcd.ts +77 -0
- package/types/ibc/core/channel/v2/query.rpc.Query.ts +108 -0
- package/types/ibc/core/channel/v2/query.ts +2075 -0
- package/types/ibc/core/channel/v2/tx.amino.ts +24 -0
- package/types/ibc/core/channel/v2/tx.registry.ts +89 -0
- package/types/ibc/core/channel/v2/tx.rpc.msg.ts +45 -0
- package/types/ibc/core/channel/v2/tx.ts +1003 -0
- package/types/ibc/core/client/v1/client.ts +636 -0
- package/types/ibc/core/client/v1/genesis.ts +448 -0
- package/types/ibc/core/client/v1/query.lcd.ts +102 -0
- package/types/ibc/core/client/v1/query.rpc.Query.ts +149 -0
- package/types/ibc/core/client/v1/query.ts +2588 -0
- package/types/ibc/core/client/v1/tx.amino.ts +44 -0
- package/types/ibc/core/client/v1/tx.registry.ts +161 -0
- package/types/ibc/core/client/v1/tx.rpc.msg.ts +77 -0
- package/types/ibc/core/client/v1/tx.ts +1796 -0
- package/types/ibc/core/client/v2/config.ts +115 -0
- package/types/ibc/core/client/v2/counterparty.ts +122 -0
- package/types/ibc/core/client/v2/genesis.ts +220 -0
- package/types/ibc/core/client/v2/query.lcd.ts +25 -0
- package/types/ibc/core/client/v2/query.rpc.Query.ts +42 -0
- package/types/ibc/core/client/v2/query.ts +402 -0
- package/types/ibc/core/client/v2/tx.amino.ts +14 -0
- package/types/ibc/core/client/v2/tx.registry.ts +53 -0
- package/types/ibc/core/client/v2/tx.rpc.msg.ts +29 -0
- package/types/ibc/core/client/v2/tx.ts +453 -0
- package/types/ibc/core/commitment/v1/commitment.ts +321 -0
- package/types/ibc/core/commitment/v2/commitment.ts +193 -0
- package/types/ibc/core/connection/v1/connection.ts +1056 -0
- package/types/ibc/core/connection/v1/genesis.ts +150 -0
- package/types/ibc/core/connection/v1/query.lcd.ts +61 -0
- package/types/ibc/core/connection/v1/query.rpc.Query.ts +97 -0
- package/types/ibc/core/connection/v1/query.ts +1472 -0
- package/types/ibc/core/connection/v1/tx.amino.ts +29 -0
- package/types/ibc/core/connection/v1/tx.registry.ts +107 -0
- package/types/ibc/core/connection/v1/tx.rpc.msg.ts +59 -0
- package/types/ibc/core/connection/v1/tx.ts +1456 -0
- package/types/ibc/core/types/v1/genesis.ts +191 -0
- package/types/ibc/lcd.ts +176 -0
- package/types/ibc/lightclients/solomachine/v2/solomachine.ts +2161 -0
- package/types/ibc/lightclients/solomachine/v3/solomachine.ts +1114 -0
- package/types/ibc/lightclients/tendermint/v1/tendermint.ts +891 -0
- package/types/ibc/lightclients/wasm/v1/genesis.ts +201 -0
- package/types/ibc/lightclients/wasm/v1/query.lcd.ts +34 -0
- package/types/ibc/lightclients/wasm/v1/query.rpc.Query.ts +44 -0
- package/types/ibc/lightclients/wasm/v1/query.ts +413 -0
- package/types/ibc/lightclients/wasm/v1/tx.amino.ts +19 -0
- package/types/ibc/lightclients/wasm/v1/tx.registry.ts +71 -0
- package/types/ibc/lightclients/wasm/v1/tx.rpc.msg.ts +37 -0
- package/types/ibc/lightclients/wasm/v1/tx.ts +640 -0
- package/types/ibc/lightclients/wasm/v1/wasm.ts +444 -0
- package/types/ibc/rpc.query.ts +123 -0
- package/types/ibc/rpc.tx.ts +104 -0
- package/types/index.ts +25 -0
- package/types/tendermint/abci/types.ts +6565 -0
- package/types/tendermint/bundle.ts +33 -0
- package/types/tendermint/crypto/keys.ts +106 -0
- package/types/tendermint/crypto/proof.ts +576 -0
- package/types/tendermint/p2p/types.ts +523 -0
- package/types/tendermint/types/block.ts +134 -0
- package/types/tendermint/types/evidence.ts +491 -0
- package/types/tendermint/types/params.ts +839 -0
- package/types/tendermint/types/types.ts +2266 -0
- package/types/tendermint/types/validator.ts +399 -0
- package/types/tendermint/version/types.ts +228 -0
- package/types/utf8.ts +149 -0
- package/types/varint.ts +489 -0
- package/types/xion/bundle.ts +117 -0
- package/types/xion/client.ts +57 -0
- package/types/xion/feeabs/v1beta1/epoch.ts +386 -0
- package/types/xion/feeabs/v1beta1/genesis.ts +136 -0
- package/types/xion/feeabs/v1beta1/osmosisibc.ts +868 -0
- package/types/xion/feeabs/v1beta1/params.ts +189 -0
- package/types/xion/feeabs/v1beta1/proposal.ts +593 -0
- package/types/xion/feeabs/v1beta1/query.lcd.ts +37 -0
- package/types/xion/feeabs/v1beta1/query.rpc.Query.ts +64 -0
- package/types/xion/feeabs/v1beta1/query.ts +732 -0
- package/types/xion/feeabs/v1beta1/tx.amino.ts +39 -0
- package/types/xion/feeabs/v1beta1/tx.registry.ts +143 -0
- package/types/xion/feeabs/v1beta1/tx.rpc.msg.ts +72 -0
- package/types/xion/feeabs/v1beta1/tx.ts +1261 -0
- package/types/xion/globalfee/v1/genesis.ts +249 -0
- package/types/xion/globalfee/v1/query.lcd.ts +19 -0
- package/types/xion/globalfee/v1/query.rpc.Query.ts +31 -0
- package/types/xion/globalfee/v1/query.ts +178 -0
- package/types/xion/jwk/v1/audience.ts +224 -0
- package/types/xion/jwk/v1/genesis.ts +117 -0
- package/types/xion/jwk/v1/params.ts +113 -0
- package/types/xion/jwk/v1/query.lcd.ts +52 -0
- package/types/xion/jwk/v1/query.rpc.Query.ts +77 -0
- package/types/xion/jwk/v1/query.ts +1697 -0
- package/types/xion/jwk/v1/tx.amino.ts +29 -0
- package/types/xion/jwk/v1/tx.registry.ts +107 -0
- package/types/xion/jwk/v1/tx.rpc.msg.ts +53 -0
- package/types/xion/jwk/v1/tx.ts +1040 -0
- package/types/xion/lcd.ts +147 -0
- package/types/xion/mint/v1/event.ts +216 -0
- package/types/xion/mint/v1/genesis.ts +114 -0
- package/types/xion/mint/v1/mint.ts +307 -0
- package/types/xion/mint/v1/query.lcd.ts +31 -0
- package/types/xion/mint/v1/query.rpc.Query.ts +53 -0
- package/types/xion/mint/v1/query.ts +508 -0
- package/types/xion/mint/v1/tx.amino.ts +9 -0
- package/types/xion/mint/v1/tx.registry.ts +35 -0
- package/types/xion/mint/v1/tx.rpc.msg.ts +26 -0
- package/types/xion/mint/v1/tx.ts +222 -0
- package/types/xion/rpc.query.ts +105 -0
- package/types/xion/rpc.tx.ts +83 -0
- package/types/xion/v1/feegrant.ts +457 -0
- package/types/xion/v1/genesis.ts +116 -0
- package/types/xion/v1/query.rpc.Query.ts +64 -0
- package/types/xion/v1/query.ts +862 -0
- package/types/xion/v1/tx.amino.ts +24 -0
- package/types/xion/v1/tx.registry.ts +89 -0
- package/types/xion/v1/tx.rpc.msg.ts +57 -0
- package/types/xion/v1/tx.ts +793 -0
|
@@ -0,0 +1,761 @@
|
|
|
1
|
+
//@ts-nocheck
|
|
2
|
+
import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin";
|
|
3
|
+
import { ContinuousFund, ContinuousFundAmino, ContinuousFundSDKType, Params, ParamsAmino, ParamsSDKType } from "./types";
|
|
4
|
+
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
5
|
+
/**
|
|
6
|
+
* QueryCommunityPoolRequest is the request type for the Query/CommunityPool RPC
|
|
7
|
+
* method.
|
|
8
|
+
*/
|
|
9
|
+
export interface QueryCommunityPoolRequest {}
|
|
10
|
+
export interface QueryCommunityPoolRequestProtoMsg {
|
|
11
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryCommunityPoolRequest";
|
|
12
|
+
value: Uint8Array;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* QueryCommunityPoolRequest is the request type for the Query/CommunityPool RPC
|
|
16
|
+
* method.
|
|
17
|
+
* @name QueryCommunityPoolRequestAmino
|
|
18
|
+
* @package cosmos.protocolpool.v1
|
|
19
|
+
* @see proto type: cosmos.protocolpool.v1.QueryCommunityPoolRequest
|
|
20
|
+
*/
|
|
21
|
+
export interface QueryCommunityPoolRequestAmino {}
|
|
22
|
+
export interface QueryCommunityPoolRequestAminoMsg {
|
|
23
|
+
type: "cosmos-sdk/QueryCommunityPoolRequest";
|
|
24
|
+
value: QueryCommunityPoolRequestAmino;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* QueryCommunityPoolRequest is the request type for the Query/CommunityPool RPC
|
|
28
|
+
* method.
|
|
29
|
+
*/
|
|
30
|
+
export interface QueryCommunityPoolRequestSDKType {}
|
|
31
|
+
/**
|
|
32
|
+
* QueryCommunityPoolResponse is the response type for the Query/CommunityPool
|
|
33
|
+
* RPC method.
|
|
34
|
+
*/
|
|
35
|
+
export interface QueryCommunityPoolResponse {
|
|
36
|
+
/** pool defines community pool's coins. */
|
|
37
|
+
pool: Coin[];
|
|
38
|
+
}
|
|
39
|
+
export interface QueryCommunityPoolResponseProtoMsg {
|
|
40
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryCommunityPoolResponse";
|
|
41
|
+
value: Uint8Array;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* QueryCommunityPoolResponse is the response type for the Query/CommunityPool
|
|
45
|
+
* RPC method.
|
|
46
|
+
* @name QueryCommunityPoolResponseAmino
|
|
47
|
+
* @package cosmos.protocolpool.v1
|
|
48
|
+
* @see proto type: cosmos.protocolpool.v1.QueryCommunityPoolResponse
|
|
49
|
+
*/
|
|
50
|
+
export interface QueryCommunityPoolResponseAmino {
|
|
51
|
+
/**
|
|
52
|
+
* pool defines community pool's coins.
|
|
53
|
+
*/
|
|
54
|
+
pool?: CoinAmino[];
|
|
55
|
+
}
|
|
56
|
+
export interface QueryCommunityPoolResponseAminoMsg {
|
|
57
|
+
type: "cosmos-sdk/QueryCommunityPoolResponse";
|
|
58
|
+
value: QueryCommunityPoolResponseAmino;
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* QueryCommunityPoolResponse is the response type for the Query/CommunityPool
|
|
62
|
+
* RPC method.
|
|
63
|
+
*/
|
|
64
|
+
export interface QueryCommunityPoolResponseSDKType {
|
|
65
|
+
pool: CoinSDKType[];
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* QueryContinuousFundRequest is the request type for the Query/ContinuousFund
|
|
69
|
+
* RPC method.
|
|
70
|
+
*/
|
|
71
|
+
export interface QueryContinuousFundRequest {
|
|
72
|
+
/** recipient is the recipient address to query unclaimed budget amount for. */
|
|
73
|
+
recipient: string;
|
|
74
|
+
}
|
|
75
|
+
export interface QueryContinuousFundRequestProtoMsg {
|
|
76
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryContinuousFundRequest";
|
|
77
|
+
value: Uint8Array;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* QueryContinuousFundRequest is the request type for the Query/ContinuousFund
|
|
81
|
+
* RPC method.
|
|
82
|
+
* @name QueryContinuousFundRequestAmino
|
|
83
|
+
* @package cosmos.protocolpool.v1
|
|
84
|
+
* @see proto type: cosmos.protocolpool.v1.QueryContinuousFundRequest
|
|
85
|
+
*/
|
|
86
|
+
export interface QueryContinuousFundRequestAmino {
|
|
87
|
+
/**
|
|
88
|
+
* recipient is the recipient address to query unclaimed budget amount for.
|
|
89
|
+
*/
|
|
90
|
+
recipient?: string;
|
|
91
|
+
}
|
|
92
|
+
export interface QueryContinuousFundRequestAminoMsg {
|
|
93
|
+
type: "cosmos-sdk/QueryContinuousFundRequest";
|
|
94
|
+
value: QueryContinuousFundRequestAmino;
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* QueryContinuousFundRequest is the request type for the Query/ContinuousFund
|
|
98
|
+
* RPC method.
|
|
99
|
+
*/
|
|
100
|
+
export interface QueryContinuousFundRequestSDKType {
|
|
101
|
+
recipient: string;
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* QueryUnclaimedBudgetResponse is the response type for the Query/ContinuousFund
|
|
105
|
+
* RPC method.
|
|
106
|
+
*/
|
|
107
|
+
export interface QueryContinuousFundResponse {
|
|
108
|
+
/** ContinuousFunds is the given continuous fund returned in the query. */
|
|
109
|
+
continuousFund: ContinuousFund;
|
|
110
|
+
}
|
|
111
|
+
export interface QueryContinuousFundResponseProtoMsg {
|
|
112
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryContinuousFundResponse";
|
|
113
|
+
value: Uint8Array;
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
* QueryUnclaimedBudgetResponse is the response type for the Query/ContinuousFund
|
|
117
|
+
* RPC method.
|
|
118
|
+
* @name QueryContinuousFundResponseAmino
|
|
119
|
+
* @package cosmos.protocolpool.v1
|
|
120
|
+
* @see proto type: cosmos.protocolpool.v1.QueryContinuousFundResponse
|
|
121
|
+
*/
|
|
122
|
+
export interface QueryContinuousFundResponseAmino {
|
|
123
|
+
/**
|
|
124
|
+
* ContinuousFunds is the given continuous fund returned in the query.
|
|
125
|
+
*/
|
|
126
|
+
continuous_fund?: ContinuousFundAmino;
|
|
127
|
+
}
|
|
128
|
+
export interface QueryContinuousFundResponseAminoMsg {
|
|
129
|
+
type: "cosmos-sdk/QueryContinuousFundResponse";
|
|
130
|
+
value: QueryContinuousFundResponseAmino;
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* QueryUnclaimedBudgetResponse is the response type for the Query/ContinuousFund
|
|
134
|
+
* RPC method.
|
|
135
|
+
*/
|
|
136
|
+
export interface QueryContinuousFundResponseSDKType {
|
|
137
|
+
continuous_fund: ContinuousFundSDKType;
|
|
138
|
+
}
|
|
139
|
+
/**
|
|
140
|
+
* QueryContinuousFundRequest is the request type for the Query/ContinuousFunds
|
|
141
|
+
* RPC method.
|
|
142
|
+
*/
|
|
143
|
+
export interface QueryContinuousFundsRequest {}
|
|
144
|
+
export interface QueryContinuousFundsRequestProtoMsg {
|
|
145
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryContinuousFundsRequest";
|
|
146
|
+
value: Uint8Array;
|
|
147
|
+
}
|
|
148
|
+
/**
|
|
149
|
+
* QueryContinuousFundRequest is the request type for the Query/ContinuousFunds
|
|
150
|
+
* RPC method.
|
|
151
|
+
* @name QueryContinuousFundsRequestAmino
|
|
152
|
+
* @package cosmos.protocolpool.v1
|
|
153
|
+
* @see proto type: cosmos.protocolpool.v1.QueryContinuousFundsRequest
|
|
154
|
+
*/
|
|
155
|
+
export interface QueryContinuousFundsRequestAmino {}
|
|
156
|
+
export interface QueryContinuousFundsRequestAminoMsg {
|
|
157
|
+
type: "cosmos-sdk/QueryContinuousFundsRequest";
|
|
158
|
+
value: QueryContinuousFundsRequestAmino;
|
|
159
|
+
}
|
|
160
|
+
/**
|
|
161
|
+
* QueryContinuousFundRequest is the request type for the Query/ContinuousFunds
|
|
162
|
+
* RPC method.
|
|
163
|
+
*/
|
|
164
|
+
export interface QueryContinuousFundsRequestSDKType {}
|
|
165
|
+
/**
|
|
166
|
+
* QueryUnclaimedBudgetResponse is the response type for the Query/ContinuousFunds
|
|
167
|
+
* RPC method.
|
|
168
|
+
*/
|
|
169
|
+
export interface QueryContinuousFundsResponse {
|
|
170
|
+
/** ContinuousFunds defines all continuous funds in state. */
|
|
171
|
+
continuousFunds: ContinuousFund[];
|
|
172
|
+
}
|
|
173
|
+
export interface QueryContinuousFundsResponseProtoMsg {
|
|
174
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryContinuousFundsResponse";
|
|
175
|
+
value: Uint8Array;
|
|
176
|
+
}
|
|
177
|
+
/**
|
|
178
|
+
* QueryUnclaimedBudgetResponse is the response type for the Query/ContinuousFunds
|
|
179
|
+
* RPC method.
|
|
180
|
+
* @name QueryContinuousFundsResponseAmino
|
|
181
|
+
* @package cosmos.protocolpool.v1
|
|
182
|
+
* @see proto type: cosmos.protocolpool.v1.QueryContinuousFundsResponse
|
|
183
|
+
*/
|
|
184
|
+
export interface QueryContinuousFundsResponseAmino {
|
|
185
|
+
/**
|
|
186
|
+
* ContinuousFunds defines all continuous funds in state.
|
|
187
|
+
*/
|
|
188
|
+
continuous_funds?: ContinuousFundAmino[];
|
|
189
|
+
}
|
|
190
|
+
export interface QueryContinuousFundsResponseAminoMsg {
|
|
191
|
+
type: "cosmos-sdk/QueryContinuousFundsResponse";
|
|
192
|
+
value: QueryContinuousFundsResponseAmino;
|
|
193
|
+
}
|
|
194
|
+
/**
|
|
195
|
+
* QueryUnclaimedBudgetResponse is the response type for the Query/ContinuousFunds
|
|
196
|
+
* RPC method.
|
|
197
|
+
*/
|
|
198
|
+
export interface QueryContinuousFundsResponseSDKType {
|
|
199
|
+
continuous_funds: ContinuousFundSDKType[];
|
|
200
|
+
}
|
|
201
|
+
/** QueryParamsRequest is the response type for the Query/Params RPC method. */
|
|
202
|
+
export interface QueryParamsRequest {}
|
|
203
|
+
export interface QueryParamsRequestProtoMsg {
|
|
204
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryParamsRequest";
|
|
205
|
+
value: Uint8Array;
|
|
206
|
+
}
|
|
207
|
+
/**
|
|
208
|
+
* QueryParamsRequest is the response type for the Query/Params RPC method.
|
|
209
|
+
* @name QueryParamsRequestAmino
|
|
210
|
+
* @package cosmos.protocolpool.v1
|
|
211
|
+
* @see proto type: cosmos.protocolpool.v1.QueryParamsRequest
|
|
212
|
+
*/
|
|
213
|
+
export interface QueryParamsRequestAmino {}
|
|
214
|
+
export interface QueryParamsRequestAminoMsg {
|
|
215
|
+
type: "cosmos-sdk/QueryParamsRequest";
|
|
216
|
+
value: QueryParamsRequestAmino;
|
|
217
|
+
}
|
|
218
|
+
/** QueryParamsRequest is the response type for the Query/Params RPC method. */
|
|
219
|
+
export interface QueryParamsRequestSDKType {}
|
|
220
|
+
/** QueryParamsResponse is the response type for the Query/Params RPC method. */
|
|
221
|
+
export interface QueryParamsResponse {
|
|
222
|
+
params: Params;
|
|
223
|
+
}
|
|
224
|
+
export interface QueryParamsResponseProtoMsg {
|
|
225
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryParamsResponse";
|
|
226
|
+
value: Uint8Array;
|
|
227
|
+
}
|
|
228
|
+
/**
|
|
229
|
+
* QueryParamsResponse is the response type for the Query/Params RPC method.
|
|
230
|
+
* @name QueryParamsResponseAmino
|
|
231
|
+
* @package cosmos.protocolpool.v1
|
|
232
|
+
* @see proto type: cosmos.protocolpool.v1.QueryParamsResponse
|
|
233
|
+
*/
|
|
234
|
+
export interface QueryParamsResponseAmino {
|
|
235
|
+
params?: ParamsAmino;
|
|
236
|
+
}
|
|
237
|
+
export interface QueryParamsResponseAminoMsg {
|
|
238
|
+
type: "cosmos-sdk/QueryParamsResponse";
|
|
239
|
+
value: QueryParamsResponseAmino;
|
|
240
|
+
}
|
|
241
|
+
/** QueryParamsResponse is the response type for the Query/Params RPC method. */
|
|
242
|
+
export interface QueryParamsResponseSDKType {
|
|
243
|
+
params: ParamsSDKType;
|
|
244
|
+
}
|
|
245
|
+
function createBaseQueryCommunityPoolRequest(): QueryCommunityPoolRequest {
|
|
246
|
+
return {};
|
|
247
|
+
}
|
|
248
|
+
export const QueryCommunityPoolRequest = {
|
|
249
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryCommunityPoolRequest",
|
|
250
|
+
encode(_: QueryCommunityPoolRequest, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
251
|
+
return writer;
|
|
252
|
+
},
|
|
253
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryCommunityPoolRequest {
|
|
254
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
255
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
256
|
+
const message = createBaseQueryCommunityPoolRequest();
|
|
257
|
+
while (reader.pos < end) {
|
|
258
|
+
const tag = reader.uint32();
|
|
259
|
+
switch (tag >>> 3) {
|
|
260
|
+
default:
|
|
261
|
+
reader.skipType(tag & 7);
|
|
262
|
+
break;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
return message;
|
|
266
|
+
},
|
|
267
|
+
fromPartial(_: Partial<QueryCommunityPoolRequest>): QueryCommunityPoolRequest {
|
|
268
|
+
const message = createBaseQueryCommunityPoolRequest();
|
|
269
|
+
return message;
|
|
270
|
+
},
|
|
271
|
+
fromAmino(_: QueryCommunityPoolRequestAmino): QueryCommunityPoolRequest {
|
|
272
|
+
const message = createBaseQueryCommunityPoolRequest();
|
|
273
|
+
return message;
|
|
274
|
+
},
|
|
275
|
+
toAmino(_: QueryCommunityPoolRequest): QueryCommunityPoolRequestAmino {
|
|
276
|
+
const obj: any = {};
|
|
277
|
+
return obj;
|
|
278
|
+
},
|
|
279
|
+
fromAminoMsg(object: QueryCommunityPoolRequestAminoMsg): QueryCommunityPoolRequest {
|
|
280
|
+
return QueryCommunityPoolRequest.fromAmino(object.value);
|
|
281
|
+
},
|
|
282
|
+
toAminoMsg(message: QueryCommunityPoolRequest): QueryCommunityPoolRequestAminoMsg {
|
|
283
|
+
return {
|
|
284
|
+
type: "cosmos-sdk/QueryCommunityPoolRequest",
|
|
285
|
+
value: QueryCommunityPoolRequest.toAmino(message)
|
|
286
|
+
};
|
|
287
|
+
},
|
|
288
|
+
fromProtoMsg(message: QueryCommunityPoolRequestProtoMsg): QueryCommunityPoolRequest {
|
|
289
|
+
return QueryCommunityPoolRequest.decode(message.value);
|
|
290
|
+
},
|
|
291
|
+
toProto(message: QueryCommunityPoolRequest): Uint8Array {
|
|
292
|
+
return QueryCommunityPoolRequest.encode(message).finish();
|
|
293
|
+
},
|
|
294
|
+
toProtoMsg(message: QueryCommunityPoolRequest): QueryCommunityPoolRequestProtoMsg {
|
|
295
|
+
return {
|
|
296
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryCommunityPoolRequest",
|
|
297
|
+
value: QueryCommunityPoolRequest.encode(message).finish()
|
|
298
|
+
};
|
|
299
|
+
}
|
|
300
|
+
};
|
|
301
|
+
function createBaseQueryCommunityPoolResponse(): QueryCommunityPoolResponse {
|
|
302
|
+
return {
|
|
303
|
+
pool: []
|
|
304
|
+
};
|
|
305
|
+
}
|
|
306
|
+
export const QueryCommunityPoolResponse = {
|
|
307
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryCommunityPoolResponse",
|
|
308
|
+
encode(message: QueryCommunityPoolResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
309
|
+
for (const v of message.pool) {
|
|
310
|
+
Coin.encode(v!, writer.uint32(10).fork()).ldelim();
|
|
311
|
+
}
|
|
312
|
+
return writer;
|
|
313
|
+
},
|
|
314
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryCommunityPoolResponse {
|
|
315
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
316
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
317
|
+
const message = createBaseQueryCommunityPoolResponse();
|
|
318
|
+
while (reader.pos < end) {
|
|
319
|
+
const tag = reader.uint32();
|
|
320
|
+
switch (tag >>> 3) {
|
|
321
|
+
case 1:
|
|
322
|
+
message.pool.push(Coin.decode(reader, reader.uint32()));
|
|
323
|
+
break;
|
|
324
|
+
default:
|
|
325
|
+
reader.skipType(tag & 7);
|
|
326
|
+
break;
|
|
327
|
+
}
|
|
328
|
+
}
|
|
329
|
+
return message;
|
|
330
|
+
},
|
|
331
|
+
fromPartial(object: Partial<QueryCommunityPoolResponse>): QueryCommunityPoolResponse {
|
|
332
|
+
const message = createBaseQueryCommunityPoolResponse();
|
|
333
|
+
message.pool = object.pool?.map(e => Coin.fromPartial(e)) || [];
|
|
334
|
+
return message;
|
|
335
|
+
},
|
|
336
|
+
fromAmino(object: QueryCommunityPoolResponseAmino): QueryCommunityPoolResponse {
|
|
337
|
+
const message = createBaseQueryCommunityPoolResponse();
|
|
338
|
+
message.pool = object.pool?.map(e => Coin.fromAmino(e)) || [];
|
|
339
|
+
return message;
|
|
340
|
+
},
|
|
341
|
+
toAmino(message: QueryCommunityPoolResponse): QueryCommunityPoolResponseAmino {
|
|
342
|
+
const obj: any = {};
|
|
343
|
+
if (message.pool) {
|
|
344
|
+
obj.pool = message.pool.map(e => e ? Coin.toAmino(e) : undefined);
|
|
345
|
+
} else {
|
|
346
|
+
obj.pool = message.pool;
|
|
347
|
+
}
|
|
348
|
+
return obj;
|
|
349
|
+
},
|
|
350
|
+
fromAminoMsg(object: QueryCommunityPoolResponseAminoMsg): QueryCommunityPoolResponse {
|
|
351
|
+
return QueryCommunityPoolResponse.fromAmino(object.value);
|
|
352
|
+
},
|
|
353
|
+
toAminoMsg(message: QueryCommunityPoolResponse): QueryCommunityPoolResponseAminoMsg {
|
|
354
|
+
return {
|
|
355
|
+
type: "cosmos-sdk/QueryCommunityPoolResponse",
|
|
356
|
+
value: QueryCommunityPoolResponse.toAmino(message)
|
|
357
|
+
};
|
|
358
|
+
},
|
|
359
|
+
fromProtoMsg(message: QueryCommunityPoolResponseProtoMsg): QueryCommunityPoolResponse {
|
|
360
|
+
return QueryCommunityPoolResponse.decode(message.value);
|
|
361
|
+
},
|
|
362
|
+
toProto(message: QueryCommunityPoolResponse): Uint8Array {
|
|
363
|
+
return QueryCommunityPoolResponse.encode(message).finish();
|
|
364
|
+
},
|
|
365
|
+
toProtoMsg(message: QueryCommunityPoolResponse): QueryCommunityPoolResponseProtoMsg {
|
|
366
|
+
return {
|
|
367
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryCommunityPoolResponse",
|
|
368
|
+
value: QueryCommunityPoolResponse.encode(message).finish()
|
|
369
|
+
};
|
|
370
|
+
}
|
|
371
|
+
};
|
|
372
|
+
function createBaseQueryContinuousFundRequest(): QueryContinuousFundRequest {
|
|
373
|
+
return {
|
|
374
|
+
recipient: ""
|
|
375
|
+
};
|
|
376
|
+
}
|
|
377
|
+
export const QueryContinuousFundRequest = {
|
|
378
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryContinuousFundRequest",
|
|
379
|
+
encode(message: QueryContinuousFundRequest, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
380
|
+
if (message.recipient !== "") {
|
|
381
|
+
writer.uint32(10).string(message.recipient);
|
|
382
|
+
}
|
|
383
|
+
return writer;
|
|
384
|
+
},
|
|
385
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryContinuousFundRequest {
|
|
386
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
387
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
388
|
+
const message = createBaseQueryContinuousFundRequest();
|
|
389
|
+
while (reader.pos < end) {
|
|
390
|
+
const tag = reader.uint32();
|
|
391
|
+
switch (tag >>> 3) {
|
|
392
|
+
case 1:
|
|
393
|
+
message.recipient = reader.string();
|
|
394
|
+
break;
|
|
395
|
+
default:
|
|
396
|
+
reader.skipType(tag & 7);
|
|
397
|
+
break;
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
return message;
|
|
401
|
+
},
|
|
402
|
+
fromPartial(object: Partial<QueryContinuousFundRequest>): QueryContinuousFundRequest {
|
|
403
|
+
const message = createBaseQueryContinuousFundRequest();
|
|
404
|
+
message.recipient = object.recipient ?? "";
|
|
405
|
+
return message;
|
|
406
|
+
},
|
|
407
|
+
fromAmino(object: QueryContinuousFundRequestAmino): QueryContinuousFundRequest {
|
|
408
|
+
const message = createBaseQueryContinuousFundRequest();
|
|
409
|
+
if (object.recipient !== undefined && object.recipient !== null) {
|
|
410
|
+
message.recipient = object.recipient;
|
|
411
|
+
}
|
|
412
|
+
return message;
|
|
413
|
+
},
|
|
414
|
+
toAmino(message: QueryContinuousFundRequest): QueryContinuousFundRequestAmino {
|
|
415
|
+
const obj: any = {};
|
|
416
|
+
obj.recipient = message.recipient === "" ? undefined : message.recipient;
|
|
417
|
+
return obj;
|
|
418
|
+
},
|
|
419
|
+
fromAminoMsg(object: QueryContinuousFundRequestAminoMsg): QueryContinuousFundRequest {
|
|
420
|
+
return QueryContinuousFundRequest.fromAmino(object.value);
|
|
421
|
+
},
|
|
422
|
+
toAminoMsg(message: QueryContinuousFundRequest): QueryContinuousFundRequestAminoMsg {
|
|
423
|
+
return {
|
|
424
|
+
type: "cosmos-sdk/QueryContinuousFundRequest",
|
|
425
|
+
value: QueryContinuousFundRequest.toAmino(message)
|
|
426
|
+
};
|
|
427
|
+
},
|
|
428
|
+
fromProtoMsg(message: QueryContinuousFundRequestProtoMsg): QueryContinuousFundRequest {
|
|
429
|
+
return QueryContinuousFundRequest.decode(message.value);
|
|
430
|
+
},
|
|
431
|
+
toProto(message: QueryContinuousFundRequest): Uint8Array {
|
|
432
|
+
return QueryContinuousFundRequest.encode(message).finish();
|
|
433
|
+
},
|
|
434
|
+
toProtoMsg(message: QueryContinuousFundRequest): QueryContinuousFundRequestProtoMsg {
|
|
435
|
+
return {
|
|
436
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryContinuousFundRequest",
|
|
437
|
+
value: QueryContinuousFundRequest.encode(message).finish()
|
|
438
|
+
};
|
|
439
|
+
}
|
|
440
|
+
};
|
|
441
|
+
function createBaseQueryContinuousFundResponse(): QueryContinuousFundResponse {
|
|
442
|
+
return {
|
|
443
|
+
continuousFund: ContinuousFund.fromPartial({})
|
|
444
|
+
};
|
|
445
|
+
}
|
|
446
|
+
export const QueryContinuousFundResponse = {
|
|
447
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryContinuousFundResponse",
|
|
448
|
+
encode(message: QueryContinuousFundResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
449
|
+
if (message.continuousFund !== undefined) {
|
|
450
|
+
ContinuousFund.encode(message.continuousFund, writer.uint32(10).fork()).ldelim();
|
|
451
|
+
}
|
|
452
|
+
return writer;
|
|
453
|
+
},
|
|
454
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryContinuousFundResponse {
|
|
455
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
456
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
457
|
+
const message = createBaseQueryContinuousFundResponse();
|
|
458
|
+
while (reader.pos < end) {
|
|
459
|
+
const tag = reader.uint32();
|
|
460
|
+
switch (tag >>> 3) {
|
|
461
|
+
case 1:
|
|
462
|
+
message.continuousFund = ContinuousFund.decode(reader, reader.uint32());
|
|
463
|
+
break;
|
|
464
|
+
default:
|
|
465
|
+
reader.skipType(tag & 7);
|
|
466
|
+
break;
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
return message;
|
|
470
|
+
},
|
|
471
|
+
fromPartial(object: Partial<QueryContinuousFundResponse>): QueryContinuousFundResponse {
|
|
472
|
+
const message = createBaseQueryContinuousFundResponse();
|
|
473
|
+
message.continuousFund = object.continuousFund !== undefined && object.continuousFund !== null ? ContinuousFund.fromPartial(object.continuousFund) : undefined;
|
|
474
|
+
return message;
|
|
475
|
+
},
|
|
476
|
+
fromAmino(object: QueryContinuousFundResponseAmino): QueryContinuousFundResponse {
|
|
477
|
+
const message = createBaseQueryContinuousFundResponse();
|
|
478
|
+
if (object.continuous_fund !== undefined && object.continuous_fund !== null) {
|
|
479
|
+
message.continuousFund = ContinuousFund.fromAmino(object.continuous_fund);
|
|
480
|
+
}
|
|
481
|
+
return message;
|
|
482
|
+
},
|
|
483
|
+
toAmino(message: QueryContinuousFundResponse): QueryContinuousFundResponseAmino {
|
|
484
|
+
const obj: any = {};
|
|
485
|
+
obj.continuous_fund = message.continuousFund ? ContinuousFund.toAmino(message.continuousFund) : undefined;
|
|
486
|
+
return obj;
|
|
487
|
+
},
|
|
488
|
+
fromAminoMsg(object: QueryContinuousFundResponseAminoMsg): QueryContinuousFundResponse {
|
|
489
|
+
return QueryContinuousFundResponse.fromAmino(object.value);
|
|
490
|
+
},
|
|
491
|
+
toAminoMsg(message: QueryContinuousFundResponse): QueryContinuousFundResponseAminoMsg {
|
|
492
|
+
return {
|
|
493
|
+
type: "cosmos-sdk/QueryContinuousFundResponse",
|
|
494
|
+
value: QueryContinuousFundResponse.toAmino(message)
|
|
495
|
+
};
|
|
496
|
+
},
|
|
497
|
+
fromProtoMsg(message: QueryContinuousFundResponseProtoMsg): QueryContinuousFundResponse {
|
|
498
|
+
return QueryContinuousFundResponse.decode(message.value);
|
|
499
|
+
},
|
|
500
|
+
toProto(message: QueryContinuousFundResponse): Uint8Array {
|
|
501
|
+
return QueryContinuousFundResponse.encode(message).finish();
|
|
502
|
+
},
|
|
503
|
+
toProtoMsg(message: QueryContinuousFundResponse): QueryContinuousFundResponseProtoMsg {
|
|
504
|
+
return {
|
|
505
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryContinuousFundResponse",
|
|
506
|
+
value: QueryContinuousFundResponse.encode(message).finish()
|
|
507
|
+
};
|
|
508
|
+
}
|
|
509
|
+
};
|
|
510
|
+
function createBaseQueryContinuousFundsRequest(): QueryContinuousFundsRequest {
|
|
511
|
+
return {};
|
|
512
|
+
}
|
|
513
|
+
export const QueryContinuousFundsRequest = {
|
|
514
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryContinuousFundsRequest",
|
|
515
|
+
encode(_: QueryContinuousFundsRequest, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
516
|
+
return writer;
|
|
517
|
+
},
|
|
518
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryContinuousFundsRequest {
|
|
519
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
520
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
521
|
+
const message = createBaseQueryContinuousFundsRequest();
|
|
522
|
+
while (reader.pos < end) {
|
|
523
|
+
const tag = reader.uint32();
|
|
524
|
+
switch (tag >>> 3) {
|
|
525
|
+
default:
|
|
526
|
+
reader.skipType(tag & 7);
|
|
527
|
+
break;
|
|
528
|
+
}
|
|
529
|
+
}
|
|
530
|
+
return message;
|
|
531
|
+
},
|
|
532
|
+
fromPartial(_: Partial<QueryContinuousFundsRequest>): QueryContinuousFundsRequest {
|
|
533
|
+
const message = createBaseQueryContinuousFundsRequest();
|
|
534
|
+
return message;
|
|
535
|
+
},
|
|
536
|
+
fromAmino(_: QueryContinuousFundsRequestAmino): QueryContinuousFundsRequest {
|
|
537
|
+
const message = createBaseQueryContinuousFundsRequest();
|
|
538
|
+
return message;
|
|
539
|
+
},
|
|
540
|
+
toAmino(_: QueryContinuousFundsRequest): QueryContinuousFundsRequestAmino {
|
|
541
|
+
const obj: any = {};
|
|
542
|
+
return obj;
|
|
543
|
+
},
|
|
544
|
+
fromAminoMsg(object: QueryContinuousFundsRequestAminoMsg): QueryContinuousFundsRequest {
|
|
545
|
+
return QueryContinuousFundsRequest.fromAmino(object.value);
|
|
546
|
+
},
|
|
547
|
+
toAminoMsg(message: QueryContinuousFundsRequest): QueryContinuousFundsRequestAminoMsg {
|
|
548
|
+
return {
|
|
549
|
+
type: "cosmos-sdk/QueryContinuousFundsRequest",
|
|
550
|
+
value: QueryContinuousFundsRequest.toAmino(message)
|
|
551
|
+
};
|
|
552
|
+
},
|
|
553
|
+
fromProtoMsg(message: QueryContinuousFundsRequestProtoMsg): QueryContinuousFundsRequest {
|
|
554
|
+
return QueryContinuousFundsRequest.decode(message.value);
|
|
555
|
+
},
|
|
556
|
+
toProto(message: QueryContinuousFundsRequest): Uint8Array {
|
|
557
|
+
return QueryContinuousFundsRequest.encode(message).finish();
|
|
558
|
+
},
|
|
559
|
+
toProtoMsg(message: QueryContinuousFundsRequest): QueryContinuousFundsRequestProtoMsg {
|
|
560
|
+
return {
|
|
561
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryContinuousFundsRequest",
|
|
562
|
+
value: QueryContinuousFundsRequest.encode(message).finish()
|
|
563
|
+
};
|
|
564
|
+
}
|
|
565
|
+
};
|
|
566
|
+
function createBaseQueryContinuousFundsResponse(): QueryContinuousFundsResponse {
|
|
567
|
+
return {
|
|
568
|
+
continuousFunds: []
|
|
569
|
+
};
|
|
570
|
+
}
|
|
571
|
+
export const QueryContinuousFundsResponse = {
|
|
572
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryContinuousFundsResponse",
|
|
573
|
+
encode(message: QueryContinuousFundsResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
574
|
+
for (const v of message.continuousFunds) {
|
|
575
|
+
ContinuousFund.encode(v!, writer.uint32(10).fork()).ldelim();
|
|
576
|
+
}
|
|
577
|
+
return writer;
|
|
578
|
+
},
|
|
579
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryContinuousFundsResponse {
|
|
580
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
581
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
582
|
+
const message = createBaseQueryContinuousFundsResponse();
|
|
583
|
+
while (reader.pos < end) {
|
|
584
|
+
const tag = reader.uint32();
|
|
585
|
+
switch (tag >>> 3) {
|
|
586
|
+
case 1:
|
|
587
|
+
message.continuousFunds.push(ContinuousFund.decode(reader, reader.uint32()));
|
|
588
|
+
break;
|
|
589
|
+
default:
|
|
590
|
+
reader.skipType(tag & 7);
|
|
591
|
+
break;
|
|
592
|
+
}
|
|
593
|
+
}
|
|
594
|
+
return message;
|
|
595
|
+
},
|
|
596
|
+
fromPartial(object: Partial<QueryContinuousFundsResponse>): QueryContinuousFundsResponse {
|
|
597
|
+
const message = createBaseQueryContinuousFundsResponse();
|
|
598
|
+
message.continuousFunds = object.continuousFunds?.map(e => ContinuousFund.fromPartial(e)) || [];
|
|
599
|
+
return message;
|
|
600
|
+
},
|
|
601
|
+
fromAmino(object: QueryContinuousFundsResponseAmino): QueryContinuousFundsResponse {
|
|
602
|
+
const message = createBaseQueryContinuousFundsResponse();
|
|
603
|
+
message.continuousFunds = object.continuous_funds?.map(e => ContinuousFund.fromAmino(e)) || [];
|
|
604
|
+
return message;
|
|
605
|
+
},
|
|
606
|
+
toAmino(message: QueryContinuousFundsResponse): QueryContinuousFundsResponseAmino {
|
|
607
|
+
const obj: any = {};
|
|
608
|
+
if (message.continuousFunds) {
|
|
609
|
+
obj.continuous_funds = message.continuousFunds.map(e => e ? ContinuousFund.toAmino(e) : undefined);
|
|
610
|
+
} else {
|
|
611
|
+
obj.continuous_funds = message.continuousFunds;
|
|
612
|
+
}
|
|
613
|
+
return obj;
|
|
614
|
+
},
|
|
615
|
+
fromAminoMsg(object: QueryContinuousFundsResponseAminoMsg): QueryContinuousFundsResponse {
|
|
616
|
+
return QueryContinuousFundsResponse.fromAmino(object.value);
|
|
617
|
+
},
|
|
618
|
+
toAminoMsg(message: QueryContinuousFundsResponse): QueryContinuousFundsResponseAminoMsg {
|
|
619
|
+
return {
|
|
620
|
+
type: "cosmos-sdk/QueryContinuousFundsResponse",
|
|
621
|
+
value: QueryContinuousFundsResponse.toAmino(message)
|
|
622
|
+
};
|
|
623
|
+
},
|
|
624
|
+
fromProtoMsg(message: QueryContinuousFundsResponseProtoMsg): QueryContinuousFundsResponse {
|
|
625
|
+
return QueryContinuousFundsResponse.decode(message.value);
|
|
626
|
+
},
|
|
627
|
+
toProto(message: QueryContinuousFundsResponse): Uint8Array {
|
|
628
|
+
return QueryContinuousFundsResponse.encode(message).finish();
|
|
629
|
+
},
|
|
630
|
+
toProtoMsg(message: QueryContinuousFundsResponse): QueryContinuousFundsResponseProtoMsg {
|
|
631
|
+
return {
|
|
632
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryContinuousFundsResponse",
|
|
633
|
+
value: QueryContinuousFundsResponse.encode(message).finish()
|
|
634
|
+
};
|
|
635
|
+
}
|
|
636
|
+
};
|
|
637
|
+
function createBaseQueryParamsRequest(): QueryParamsRequest {
|
|
638
|
+
return {};
|
|
639
|
+
}
|
|
640
|
+
export const QueryParamsRequest = {
|
|
641
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryParamsRequest",
|
|
642
|
+
encode(_: QueryParamsRequest, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
643
|
+
return writer;
|
|
644
|
+
},
|
|
645
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest {
|
|
646
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
647
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
648
|
+
const message = createBaseQueryParamsRequest();
|
|
649
|
+
while (reader.pos < end) {
|
|
650
|
+
const tag = reader.uint32();
|
|
651
|
+
switch (tag >>> 3) {
|
|
652
|
+
default:
|
|
653
|
+
reader.skipType(tag & 7);
|
|
654
|
+
break;
|
|
655
|
+
}
|
|
656
|
+
}
|
|
657
|
+
return message;
|
|
658
|
+
},
|
|
659
|
+
fromPartial(_: Partial<QueryParamsRequest>): QueryParamsRequest {
|
|
660
|
+
const message = createBaseQueryParamsRequest();
|
|
661
|
+
return message;
|
|
662
|
+
},
|
|
663
|
+
fromAmino(_: QueryParamsRequestAmino): QueryParamsRequest {
|
|
664
|
+
const message = createBaseQueryParamsRequest();
|
|
665
|
+
return message;
|
|
666
|
+
},
|
|
667
|
+
toAmino(_: QueryParamsRequest): QueryParamsRequestAmino {
|
|
668
|
+
const obj: any = {};
|
|
669
|
+
return obj;
|
|
670
|
+
},
|
|
671
|
+
fromAminoMsg(object: QueryParamsRequestAminoMsg): QueryParamsRequest {
|
|
672
|
+
return QueryParamsRequest.fromAmino(object.value);
|
|
673
|
+
},
|
|
674
|
+
toAminoMsg(message: QueryParamsRequest): QueryParamsRequestAminoMsg {
|
|
675
|
+
return {
|
|
676
|
+
type: "cosmos-sdk/QueryParamsRequest",
|
|
677
|
+
value: QueryParamsRequest.toAmino(message)
|
|
678
|
+
};
|
|
679
|
+
},
|
|
680
|
+
fromProtoMsg(message: QueryParamsRequestProtoMsg): QueryParamsRequest {
|
|
681
|
+
return QueryParamsRequest.decode(message.value);
|
|
682
|
+
},
|
|
683
|
+
toProto(message: QueryParamsRequest): Uint8Array {
|
|
684
|
+
return QueryParamsRequest.encode(message).finish();
|
|
685
|
+
},
|
|
686
|
+
toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg {
|
|
687
|
+
return {
|
|
688
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryParamsRequest",
|
|
689
|
+
value: QueryParamsRequest.encode(message).finish()
|
|
690
|
+
};
|
|
691
|
+
}
|
|
692
|
+
};
|
|
693
|
+
function createBaseQueryParamsResponse(): QueryParamsResponse {
|
|
694
|
+
return {
|
|
695
|
+
params: Params.fromPartial({})
|
|
696
|
+
};
|
|
697
|
+
}
|
|
698
|
+
export const QueryParamsResponse = {
|
|
699
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryParamsResponse",
|
|
700
|
+
encode(message: QueryParamsResponse, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
701
|
+
if (message.params !== undefined) {
|
|
702
|
+
Params.encode(message.params, writer.uint32(10).fork()).ldelim();
|
|
703
|
+
}
|
|
704
|
+
return writer;
|
|
705
|
+
},
|
|
706
|
+
decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse {
|
|
707
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
708
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
709
|
+
const message = createBaseQueryParamsResponse();
|
|
710
|
+
while (reader.pos < end) {
|
|
711
|
+
const tag = reader.uint32();
|
|
712
|
+
switch (tag >>> 3) {
|
|
713
|
+
case 1:
|
|
714
|
+
message.params = Params.decode(reader, reader.uint32());
|
|
715
|
+
break;
|
|
716
|
+
default:
|
|
717
|
+
reader.skipType(tag & 7);
|
|
718
|
+
break;
|
|
719
|
+
}
|
|
720
|
+
}
|
|
721
|
+
return message;
|
|
722
|
+
},
|
|
723
|
+
fromPartial(object: Partial<QueryParamsResponse>): QueryParamsResponse {
|
|
724
|
+
const message = createBaseQueryParamsResponse();
|
|
725
|
+
message.params = object.params !== undefined && object.params !== null ? Params.fromPartial(object.params) : undefined;
|
|
726
|
+
return message;
|
|
727
|
+
},
|
|
728
|
+
fromAmino(object: QueryParamsResponseAmino): QueryParamsResponse {
|
|
729
|
+
const message = createBaseQueryParamsResponse();
|
|
730
|
+
if (object.params !== undefined && object.params !== null) {
|
|
731
|
+
message.params = Params.fromAmino(object.params);
|
|
732
|
+
}
|
|
733
|
+
return message;
|
|
734
|
+
},
|
|
735
|
+
toAmino(message: QueryParamsResponse): QueryParamsResponseAmino {
|
|
736
|
+
const obj: any = {};
|
|
737
|
+
obj.params = message.params ? Params.toAmino(message.params) : undefined;
|
|
738
|
+
return obj;
|
|
739
|
+
},
|
|
740
|
+
fromAminoMsg(object: QueryParamsResponseAminoMsg): QueryParamsResponse {
|
|
741
|
+
return QueryParamsResponse.fromAmino(object.value);
|
|
742
|
+
},
|
|
743
|
+
toAminoMsg(message: QueryParamsResponse): QueryParamsResponseAminoMsg {
|
|
744
|
+
return {
|
|
745
|
+
type: "cosmos-sdk/QueryParamsResponse",
|
|
746
|
+
value: QueryParamsResponse.toAmino(message)
|
|
747
|
+
};
|
|
748
|
+
},
|
|
749
|
+
fromProtoMsg(message: QueryParamsResponseProtoMsg): QueryParamsResponse {
|
|
750
|
+
return QueryParamsResponse.decode(message.value);
|
|
751
|
+
},
|
|
752
|
+
toProto(message: QueryParamsResponse): Uint8Array {
|
|
753
|
+
return QueryParamsResponse.encode(message).finish();
|
|
754
|
+
},
|
|
755
|
+
toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg {
|
|
756
|
+
return {
|
|
757
|
+
typeUrl: "/cosmos.protocolpool.v1.QueryParamsResponse",
|
|
758
|
+
value: QueryParamsResponse.encode(message).finish()
|
|
759
|
+
};
|
|
760
|
+
}
|
|
761
|
+
};
|