@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,1002 @@
|
|
|
1
|
+
//@ts-nocheck
|
|
2
|
+
import { BinaryReader, BinaryWriter } from "../../binary";
|
|
3
|
+
import { bytesFromBase64, base64FromBytes } from "../../helpers";
|
|
4
|
+
/**
|
|
5
|
+
* Wrapper message for `double`.
|
|
6
|
+
*
|
|
7
|
+
* The JSON representation for `DoubleValue` is JSON number.
|
|
8
|
+
*
|
|
9
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
10
|
+
* has no plan to be removed.
|
|
11
|
+
*/
|
|
12
|
+
export interface DoubleValue {
|
|
13
|
+
/** The double value. */
|
|
14
|
+
value: number;
|
|
15
|
+
}
|
|
16
|
+
export interface DoubleValueProtoMsg {
|
|
17
|
+
typeUrl: "/google.protobuf.DoubleValue";
|
|
18
|
+
value: Uint8Array;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Wrapper message for `double`.
|
|
22
|
+
*
|
|
23
|
+
* The JSON representation for `DoubleValue` is JSON number.
|
|
24
|
+
*
|
|
25
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
26
|
+
* has no plan to be removed.
|
|
27
|
+
* @name DoubleValueAmino
|
|
28
|
+
* @package google.protobuf
|
|
29
|
+
* @see proto type: google.protobuf.DoubleValue
|
|
30
|
+
*/
|
|
31
|
+
export interface DoubleValueAmino {
|
|
32
|
+
/**
|
|
33
|
+
* The double value.
|
|
34
|
+
*/
|
|
35
|
+
value?: number;
|
|
36
|
+
}
|
|
37
|
+
export interface DoubleValueAminoMsg {
|
|
38
|
+
type: "/google.protobuf.DoubleValue";
|
|
39
|
+
value: DoubleValueAmino;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Wrapper message for `double`.
|
|
43
|
+
*
|
|
44
|
+
* The JSON representation for `DoubleValue` is JSON number.
|
|
45
|
+
*
|
|
46
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
47
|
+
* has no plan to be removed.
|
|
48
|
+
*/
|
|
49
|
+
export interface DoubleValueSDKType {
|
|
50
|
+
value: number;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* Wrapper message for `float`.
|
|
54
|
+
*
|
|
55
|
+
* The JSON representation for `FloatValue` is JSON number.
|
|
56
|
+
*
|
|
57
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
58
|
+
* has no plan to be removed.
|
|
59
|
+
*/
|
|
60
|
+
export interface FloatValue {
|
|
61
|
+
/** The float value. */
|
|
62
|
+
value: number;
|
|
63
|
+
}
|
|
64
|
+
export interface FloatValueProtoMsg {
|
|
65
|
+
typeUrl: "/google.protobuf.FloatValue";
|
|
66
|
+
value: Uint8Array;
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* Wrapper message for `float`.
|
|
70
|
+
*
|
|
71
|
+
* The JSON representation for `FloatValue` is JSON number.
|
|
72
|
+
*
|
|
73
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
74
|
+
* has no plan to be removed.
|
|
75
|
+
* @name FloatValueAmino
|
|
76
|
+
* @package google.protobuf
|
|
77
|
+
* @see proto type: google.protobuf.FloatValue
|
|
78
|
+
*/
|
|
79
|
+
export interface FloatValueAmino {
|
|
80
|
+
/**
|
|
81
|
+
* The float value.
|
|
82
|
+
*/
|
|
83
|
+
value?: number;
|
|
84
|
+
}
|
|
85
|
+
export interface FloatValueAminoMsg {
|
|
86
|
+
type: "/google.protobuf.FloatValue";
|
|
87
|
+
value: FloatValueAmino;
|
|
88
|
+
}
|
|
89
|
+
/**
|
|
90
|
+
* Wrapper message for `float`.
|
|
91
|
+
*
|
|
92
|
+
* The JSON representation for `FloatValue` is JSON number.
|
|
93
|
+
*
|
|
94
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
95
|
+
* has no plan to be removed.
|
|
96
|
+
*/
|
|
97
|
+
export interface FloatValueSDKType {
|
|
98
|
+
value: number;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Wrapper message for `int64`.
|
|
102
|
+
*
|
|
103
|
+
* The JSON representation for `Int64Value` is JSON string.
|
|
104
|
+
*
|
|
105
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
106
|
+
* has no plan to be removed.
|
|
107
|
+
*/
|
|
108
|
+
export interface Int64Value {
|
|
109
|
+
/** The int64 value. */
|
|
110
|
+
value: bigint;
|
|
111
|
+
}
|
|
112
|
+
export interface Int64ValueProtoMsg {
|
|
113
|
+
typeUrl: "/google.protobuf.Int64Value";
|
|
114
|
+
value: Uint8Array;
|
|
115
|
+
}
|
|
116
|
+
/**
|
|
117
|
+
* Wrapper message for `int64`.
|
|
118
|
+
*
|
|
119
|
+
* The JSON representation for `Int64Value` is JSON string.
|
|
120
|
+
*
|
|
121
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
122
|
+
* has no plan to be removed.
|
|
123
|
+
* @name Int64ValueAmino
|
|
124
|
+
* @package google.protobuf
|
|
125
|
+
* @see proto type: google.protobuf.Int64Value
|
|
126
|
+
*/
|
|
127
|
+
export interface Int64ValueAmino {
|
|
128
|
+
/**
|
|
129
|
+
* The int64 value.
|
|
130
|
+
*/
|
|
131
|
+
value?: string;
|
|
132
|
+
}
|
|
133
|
+
export interface Int64ValueAminoMsg {
|
|
134
|
+
type: "/google.protobuf.Int64Value";
|
|
135
|
+
value: Int64ValueAmino;
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* Wrapper message for `int64`.
|
|
139
|
+
*
|
|
140
|
+
* The JSON representation for `Int64Value` is JSON string.
|
|
141
|
+
*
|
|
142
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
143
|
+
* has no plan to be removed.
|
|
144
|
+
*/
|
|
145
|
+
export interface Int64ValueSDKType {
|
|
146
|
+
value: bigint;
|
|
147
|
+
}
|
|
148
|
+
/**
|
|
149
|
+
* Wrapper message for `uint64`.
|
|
150
|
+
*
|
|
151
|
+
* The JSON representation for `UInt64Value` is JSON string.
|
|
152
|
+
*
|
|
153
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
154
|
+
* has no plan to be removed.
|
|
155
|
+
*/
|
|
156
|
+
export interface UInt64Value {
|
|
157
|
+
/** The uint64 value. */
|
|
158
|
+
value: bigint;
|
|
159
|
+
}
|
|
160
|
+
export interface UInt64ValueProtoMsg {
|
|
161
|
+
typeUrl: "/google.protobuf.UInt64Value";
|
|
162
|
+
value: Uint8Array;
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* Wrapper message for `uint64`.
|
|
166
|
+
*
|
|
167
|
+
* The JSON representation for `UInt64Value` is JSON string.
|
|
168
|
+
*
|
|
169
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
170
|
+
* has no plan to be removed.
|
|
171
|
+
* @name UInt64ValueAmino
|
|
172
|
+
* @package google.protobuf
|
|
173
|
+
* @see proto type: google.protobuf.UInt64Value
|
|
174
|
+
*/
|
|
175
|
+
export interface UInt64ValueAmino {
|
|
176
|
+
/**
|
|
177
|
+
* The uint64 value.
|
|
178
|
+
*/
|
|
179
|
+
value?: string;
|
|
180
|
+
}
|
|
181
|
+
export interface UInt64ValueAminoMsg {
|
|
182
|
+
type: "/google.protobuf.UInt64Value";
|
|
183
|
+
value: UInt64ValueAmino;
|
|
184
|
+
}
|
|
185
|
+
/**
|
|
186
|
+
* Wrapper message for `uint64`.
|
|
187
|
+
*
|
|
188
|
+
* The JSON representation for `UInt64Value` is JSON string.
|
|
189
|
+
*
|
|
190
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
191
|
+
* has no plan to be removed.
|
|
192
|
+
*/
|
|
193
|
+
export interface UInt64ValueSDKType {
|
|
194
|
+
value: bigint;
|
|
195
|
+
}
|
|
196
|
+
/**
|
|
197
|
+
* Wrapper message for `int32`.
|
|
198
|
+
*
|
|
199
|
+
* The JSON representation for `Int32Value` is JSON number.
|
|
200
|
+
*
|
|
201
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
202
|
+
* has no plan to be removed.
|
|
203
|
+
*/
|
|
204
|
+
export interface Int32Value {
|
|
205
|
+
/** The int32 value. */
|
|
206
|
+
value: number;
|
|
207
|
+
}
|
|
208
|
+
export interface Int32ValueProtoMsg {
|
|
209
|
+
typeUrl: "/google.protobuf.Int32Value";
|
|
210
|
+
value: Uint8Array;
|
|
211
|
+
}
|
|
212
|
+
/**
|
|
213
|
+
* Wrapper message for `int32`.
|
|
214
|
+
*
|
|
215
|
+
* The JSON representation for `Int32Value` is JSON number.
|
|
216
|
+
*
|
|
217
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
218
|
+
* has no plan to be removed.
|
|
219
|
+
* @name Int32ValueAmino
|
|
220
|
+
* @package google.protobuf
|
|
221
|
+
* @see proto type: google.protobuf.Int32Value
|
|
222
|
+
*/
|
|
223
|
+
export interface Int32ValueAmino {
|
|
224
|
+
/**
|
|
225
|
+
* The int32 value.
|
|
226
|
+
*/
|
|
227
|
+
value?: number;
|
|
228
|
+
}
|
|
229
|
+
export interface Int32ValueAminoMsg {
|
|
230
|
+
type: "/google.protobuf.Int32Value";
|
|
231
|
+
value: Int32ValueAmino;
|
|
232
|
+
}
|
|
233
|
+
/**
|
|
234
|
+
* Wrapper message for `int32`.
|
|
235
|
+
*
|
|
236
|
+
* The JSON representation for `Int32Value` is JSON number.
|
|
237
|
+
*
|
|
238
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
239
|
+
* has no plan to be removed.
|
|
240
|
+
*/
|
|
241
|
+
export interface Int32ValueSDKType {
|
|
242
|
+
value: number;
|
|
243
|
+
}
|
|
244
|
+
/**
|
|
245
|
+
* Wrapper message for `uint32`.
|
|
246
|
+
*
|
|
247
|
+
* The JSON representation for `UInt32Value` is JSON number.
|
|
248
|
+
*
|
|
249
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
250
|
+
* has no plan to be removed.
|
|
251
|
+
*/
|
|
252
|
+
export interface UInt32Value {
|
|
253
|
+
/** The uint32 value. */
|
|
254
|
+
value: number;
|
|
255
|
+
}
|
|
256
|
+
export interface UInt32ValueProtoMsg {
|
|
257
|
+
typeUrl: "/google.protobuf.UInt32Value";
|
|
258
|
+
value: Uint8Array;
|
|
259
|
+
}
|
|
260
|
+
/**
|
|
261
|
+
* Wrapper message for `uint32`.
|
|
262
|
+
*
|
|
263
|
+
* The JSON representation for `UInt32Value` is JSON number.
|
|
264
|
+
*
|
|
265
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
266
|
+
* has no plan to be removed.
|
|
267
|
+
* @name UInt32ValueAmino
|
|
268
|
+
* @package google.protobuf
|
|
269
|
+
* @see proto type: google.protobuf.UInt32Value
|
|
270
|
+
*/
|
|
271
|
+
export interface UInt32ValueAmino {
|
|
272
|
+
/**
|
|
273
|
+
* The uint32 value.
|
|
274
|
+
*/
|
|
275
|
+
value?: number;
|
|
276
|
+
}
|
|
277
|
+
export interface UInt32ValueAminoMsg {
|
|
278
|
+
type: "/google.protobuf.UInt32Value";
|
|
279
|
+
value: UInt32ValueAmino;
|
|
280
|
+
}
|
|
281
|
+
/**
|
|
282
|
+
* Wrapper message for `uint32`.
|
|
283
|
+
*
|
|
284
|
+
* The JSON representation for `UInt32Value` is JSON number.
|
|
285
|
+
*
|
|
286
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
287
|
+
* has no plan to be removed.
|
|
288
|
+
*/
|
|
289
|
+
export interface UInt32ValueSDKType {
|
|
290
|
+
value: number;
|
|
291
|
+
}
|
|
292
|
+
/**
|
|
293
|
+
* Wrapper message for `bool`.
|
|
294
|
+
*
|
|
295
|
+
* The JSON representation for `BoolValue` is JSON `true` and `false`.
|
|
296
|
+
*
|
|
297
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
298
|
+
* has no plan to be removed.
|
|
299
|
+
*/
|
|
300
|
+
export interface BoolValue {
|
|
301
|
+
/** The bool value. */
|
|
302
|
+
value: boolean;
|
|
303
|
+
}
|
|
304
|
+
export interface BoolValueProtoMsg {
|
|
305
|
+
typeUrl: "/google.protobuf.BoolValue";
|
|
306
|
+
value: Uint8Array;
|
|
307
|
+
}
|
|
308
|
+
/**
|
|
309
|
+
* Wrapper message for `bool`.
|
|
310
|
+
*
|
|
311
|
+
* The JSON representation for `BoolValue` is JSON `true` and `false`.
|
|
312
|
+
*
|
|
313
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
314
|
+
* has no plan to be removed.
|
|
315
|
+
* @name BoolValueAmino
|
|
316
|
+
* @package google.protobuf
|
|
317
|
+
* @see proto type: google.protobuf.BoolValue
|
|
318
|
+
*/
|
|
319
|
+
export interface BoolValueAmino {
|
|
320
|
+
/**
|
|
321
|
+
* The bool value.
|
|
322
|
+
*/
|
|
323
|
+
value?: boolean;
|
|
324
|
+
}
|
|
325
|
+
export interface BoolValueAminoMsg {
|
|
326
|
+
type: "/google.protobuf.BoolValue";
|
|
327
|
+
value: BoolValueAmino;
|
|
328
|
+
}
|
|
329
|
+
/**
|
|
330
|
+
* Wrapper message for `bool`.
|
|
331
|
+
*
|
|
332
|
+
* The JSON representation for `BoolValue` is JSON `true` and `false`.
|
|
333
|
+
*
|
|
334
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
335
|
+
* has no plan to be removed.
|
|
336
|
+
*/
|
|
337
|
+
export interface BoolValueSDKType {
|
|
338
|
+
value: boolean;
|
|
339
|
+
}
|
|
340
|
+
/**
|
|
341
|
+
* Wrapper message for `string`.
|
|
342
|
+
*
|
|
343
|
+
* The JSON representation for `StringValue` is JSON string.
|
|
344
|
+
*
|
|
345
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
346
|
+
* has no plan to be removed.
|
|
347
|
+
*/
|
|
348
|
+
export interface StringValue {
|
|
349
|
+
/** The string value. */
|
|
350
|
+
value: string;
|
|
351
|
+
}
|
|
352
|
+
export interface StringValueProtoMsg {
|
|
353
|
+
typeUrl: "/google.protobuf.StringValue";
|
|
354
|
+
value: Uint8Array;
|
|
355
|
+
}
|
|
356
|
+
/**
|
|
357
|
+
* Wrapper message for `string`.
|
|
358
|
+
*
|
|
359
|
+
* The JSON representation for `StringValue` is JSON string.
|
|
360
|
+
*
|
|
361
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
362
|
+
* has no plan to be removed.
|
|
363
|
+
* @name StringValueAmino
|
|
364
|
+
* @package google.protobuf
|
|
365
|
+
* @see proto type: google.protobuf.StringValue
|
|
366
|
+
*/
|
|
367
|
+
export interface StringValueAmino {
|
|
368
|
+
/**
|
|
369
|
+
* The string value.
|
|
370
|
+
*/
|
|
371
|
+
value?: string;
|
|
372
|
+
}
|
|
373
|
+
export interface StringValueAminoMsg {
|
|
374
|
+
type: "/google.protobuf.StringValue";
|
|
375
|
+
value: StringValueAmino;
|
|
376
|
+
}
|
|
377
|
+
/**
|
|
378
|
+
* Wrapper message for `string`.
|
|
379
|
+
*
|
|
380
|
+
* The JSON representation for `StringValue` is JSON string.
|
|
381
|
+
*
|
|
382
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
383
|
+
* has no plan to be removed.
|
|
384
|
+
*/
|
|
385
|
+
export interface StringValueSDKType {
|
|
386
|
+
value: string;
|
|
387
|
+
}
|
|
388
|
+
/**
|
|
389
|
+
* Wrapper message for `bytes`.
|
|
390
|
+
*
|
|
391
|
+
* The JSON representation for `BytesValue` is JSON string.
|
|
392
|
+
*
|
|
393
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
394
|
+
* has no plan to be removed.
|
|
395
|
+
*/
|
|
396
|
+
export interface BytesValue {
|
|
397
|
+
/** The bytes value. */
|
|
398
|
+
value: Uint8Array;
|
|
399
|
+
}
|
|
400
|
+
export interface BytesValueProtoMsg {
|
|
401
|
+
typeUrl: "/google.protobuf.BytesValue";
|
|
402
|
+
value: Uint8Array;
|
|
403
|
+
}
|
|
404
|
+
/**
|
|
405
|
+
* Wrapper message for `bytes`.
|
|
406
|
+
*
|
|
407
|
+
* The JSON representation for `BytesValue` is JSON string.
|
|
408
|
+
*
|
|
409
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
410
|
+
* has no plan to be removed.
|
|
411
|
+
* @name BytesValueAmino
|
|
412
|
+
* @package google.protobuf
|
|
413
|
+
* @see proto type: google.protobuf.BytesValue
|
|
414
|
+
*/
|
|
415
|
+
export interface BytesValueAmino {
|
|
416
|
+
/**
|
|
417
|
+
* The bytes value.
|
|
418
|
+
*/
|
|
419
|
+
value?: string;
|
|
420
|
+
}
|
|
421
|
+
export interface BytesValueAminoMsg {
|
|
422
|
+
type: "/google.protobuf.BytesValue";
|
|
423
|
+
value: BytesValueAmino;
|
|
424
|
+
}
|
|
425
|
+
/**
|
|
426
|
+
* Wrapper message for `bytes`.
|
|
427
|
+
*
|
|
428
|
+
* The JSON representation for `BytesValue` is JSON string.
|
|
429
|
+
*
|
|
430
|
+
* Not recommended for use in new APIs, but still useful for legacy APIs and
|
|
431
|
+
* has no plan to be removed.
|
|
432
|
+
*/
|
|
433
|
+
export interface BytesValueSDKType {
|
|
434
|
+
value: Uint8Array;
|
|
435
|
+
}
|
|
436
|
+
function createBaseDoubleValue(): DoubleValue {
|
|
437
|
+
return {
|
|
438
|
+
value: 0
|
|
439
|
+
};
|
|
440
|
+
}
|
|
441
|
+
export const DoubleValue = {
|
|
442
|
+
typeUrl: "/google.protobuf.DoubleValue",
|
|
443
|
+
encode(message: DoubleValue, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
444
|
+
if (message.value !== 0) {
|
|
445
|
+
writer.uint32(9).double(message.value);
|
|
446
|
+
}
|
|
447
|
+
return writer;
|
|
448
|
+
},
|
|
449
|
+
decode(input: BinaryReader | Uint8Array, length?: number): DoubleValue {
|
|
450
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
451
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
452
|
+
const message = createBaseDoubleValue();
|
|
453
|
+
while (reader.pos < end) {
|
|
454
|
+
const tag = reader.uint32();
|
|
455
|
+
switch (tag >>> 3) {
|
|
456
|
+
case 1:
|
|
457
|
+
message.value = reader.double();
|
|
458
|
+
break;
|
|
459
|
+
default:
|
|
460
|
+
reader.skipType(tag & 7);
|
|
461
|
+
break;
|
|
462
|
+
}
|
|
463
|
+
}
|
|
464
|
+
return message;
|
|
465
|
+
},
|
|
466
|
+
fromPartial(object: Partial<DoubleValue>): DoubleValue {
|
|
467
|
+
const message = createBaseDoubleValue();
|
|
468
|
+
message.value = object.value ?? 0;
|
|
469
|
+
return message;
|
|
470
|
+
},
|
|
471
|
+
fromAmino(object: DoubleValueAmino): DoubleValue {
|
|
472
|
+
const message = createBaseDoubleValue();
|
|
473
|
+
if (object.value !== undefined && object.value !== null) {
|
|
474
|
+
message.value = object.value;
|
|
475
|
+
}
|
|
476
|
+
return message;
|
|
477
|
+
},
|
|
478
|
+
toAmino(message: DoubleValue): DoubleValueAmino {
|
|
479
|
+
const obj: any = {};
|
|
480
|
+
obj.value = message.value === 0 ? undefined : message.value;
|
|
481
|
+
return obj;
|
|
482
|
+
},
|
|
483
|
+
fromAminoMsg(object: DoubleValueAminoMsg): DoubleValue {
|
|
484
|
+
return DoubleValue.fromAmino(object.value);
|
|
485
|
+
},
|
|
486
|
+
fromProtoMsg(message: DoubleValueProtoMsg): DoubleValue {
|
|
487
|
+
return DoubleValue.decode(message.value);
|
|
488
|
+
},
|
|
489
|
+
toProto(message: DoubleValue): Uint8Array {
|
|
490
|
+
return DoubleValue.encode(message).finish();
|
|
491
|
+
},
|
|
492
|
+
toProtoMsg(message: DoubleValue): DoubleValueProtoMsg {
|
|
493
|
+
return {
|
|
494
|
+
typeUrl: "/google.protobuf.DoubleValue",
|
|
495
|
+
value: DoubleValue.encode(message).finish()
|
|
496
|
+
};
|
|
497
|
+
}
|
|
498
|
+
};
|
|
499
|
+
function createBaseFloatValue(): FloatValue {
|
|
500
|
+
return {
|
|
501
|
+
value: 0
|
|
502
|
+
};
|
|
503
|
+
}
|
|
504
|
+
export const FloatValue = {
|
|
505
|
+
typeUrl: "/google.protobuf.FloatValue",
|
|
506
|
+
encode(message: FloatValue, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
507
|
+
if (message.value !== 0) {
|
|
508
|
+
writer.uint32(13).float(message.value);
|
|
509
|
+
}
|
|
510
|
+
return writer;
|
|
511
|
+
},
|
|
512
|
+
decode(input: BinaryReader | Uint8Array, length?: number): FloatValue {
|
|
513
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
514
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
515
|
+
const message = createBaseFloatValue();
|
|
516
|
+
while (reader.pos < end) {
|
|
517
|
+
const tag = reader.uint32();
|
|
518
|
+
switch (tag >>> 3) {
|
|
519
|
+
case 1:
|
|
520
|
+
message.value = reader.float();
|
|
521
|
+
break;
|
|
522
|
+
default:
|
|
523
|
+
reader.skipType(tag & 7);
|
|
524
|
+
break;
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
return message;
|
|
528
|
+
},
|
|
529
|
+
fromPartial(object: Partial<FloatValue>): FloatValue {
|
|
530
|
+
const message = createBaseFloatValue();
|
|
531
|
+
message.value = object.value ?? 0;
|
|
532
|
+
return message;
|
|
533
|
+
},
|
|
534
|
+
fromAmino(object: FloatValueAmino): FloatValue {
|
|
535
|
+
const message = createBaseFloatValue();
|
|
536
|
+
if (object.value !== undefined && object.value !== null) {
|
|
537
|
+
message.value = object.value;
|
|
538
|
+
}
|
|
539
|
+
return message;
|
|
540
|
+
},
|
|
541
|
+
toAmino(message: FloatValue): FloatValueAmino {
|
|
542
|
+
const obj: any = {};
|
|
543
|
+
obj.value = message.value === 0 ? undefined : message.value;
|
|
544
|
+
return obj;
|
|
545
|
+
},
|
|
546
|
+
fromAminoMsg(object: FloatValueAminoMsg): FloatValue {
|
|
547
|
+
return FloatValue.fromAmino(object.value);
|
|
548
|
+
},
|
|
549
|
+
fromProtoMsg(message: FloatValueProtoMsg): FloatValue {
|
|
550
|
+
return FloatValue.decode(message.value);
|
|
551
|
+
},
|
|
552
|
+
toProto(message: FloatValue): Uint8Array {
|
|
553
|
+
return FloatValue.encode(message).finish();
|
|
554
|
+
},
|
|
555
|
+
toProtoMsg(message: FloatValue): FloatValueProtoMsg {
|
|
556
|
+
return {
|
|
557
|
+
typeUrl: "/google.protobuf.FloatValue",
|
|
558
|
+
value: FloatValue.encode(message).finish()
|
|
559
|
+
};
|
|
560
|
+
}
|
|
561
|
+
};
|
|
562
|
+
function createBaseInt64Value(): Int64Value {
|
|
563
|
+
return {
|
|
564
|
+
value: BigInt(0)
|
|
565
|
+
};
|
|
566
|
+
}
|
|
567
|
+
export const Int64Value = {
|
|
568
|
+
typeUrl: "/google.protobuf.Int64Value",
|
|
569
|
+
encode(message: Int64Value, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
570
|
+
if (message.value !== BigInt(0)) {
|
|
571
|
+
writer.uint32(8).int64(message.value);
|
|
572
|
+
}
|
|
573
|
+
return writer;
|
|
574
|
+
},
|
|
575
|
+
decode(input: BinaryReader | Uint8Array, length?: number): Int64Value {
|
|
576
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
577
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
578
|
+
const message = createBaseInt64Value();
|
|
579
|
+
while (reader.pos < end) {
|
|
580
|
+
const tag = reader.uint32();
|
|
581
|
+
switch (tag >>> 3) {
|
|
582
|
+
case 1:
|
|
583
|
+
message.value = reader.int64();
|
|
584
|
+
break;
|
|
585
|
+
default:
|
|
586
|
+
reader.skipType(tag & 7);
|
|
587
|
+
break;
|
|
588
|
+
}
|
|
589
|
+
}
|
|
590
|
+
return message;
|
|
591
|
+
},
|
|
592
|
+
fromPartial(object: Partial<Int64Value>): Int64Value {
|
|
593
|
+
const message = createBaseInt64Value();
|
|
594
|
+
message.value = object.value !== undefined && object.value !== null ? BigInt(object.value.toString()) : BigInt(0);
|
|
595
|
+
return message;
|
|
596
|
+
},
|
|
597
|
+
fromAmino(object: Int64ValueAmino): Int64Value {
|
|
598
|
+
const message = createBaseInt64Value();
|
|
599
|
+
if (object.value !== undefined && object.value !== null) {
|
|
600
|
+
message.value = BigInt(object.value);
|
|
601
|
+
}
|
|
602
|
+
return message;
|
|
603
|
+
},
|
|
604
|
+
toAmino(message: Int64Value): Int64ValueAmino {
|
|
605
|
+
const obj: any = {};
|
|
606
|
+
obj.value = message.value !== BigInt(0) ? message.value?.toString() : undefined;
|
|
607
|
+
return obj;
|
|
608
|
+
},
|
|
609
|
+
fromAminoMsg(object: Int64ValueAminoMsg): Int64Value {
|
|
610
|
+
return Int64Value.fromAmino(object.value);
|
|
611
|
+
},
|
|
612
|
+
fromProtoMsg(message: Int64ValueProtoMsg): Int64Value {
|
|
613
|
+
return Int64Value.decode(message.value);
|
|
614
|
+
},
|
|
615
|
+
toProto(message: Int64Value): Uint8Array {
|
|
616
|
+
return Int64Value.encode(message).finish();
|
|
617
|
+
},
|
|
618
|
+
toProtoMsg(message: Int64Value): Int64ValueProtoMsg {
|
|
619
|
+
return {
|
|
620
|
+
typeUrl: "/google.protobuf.Int64Value",
|
|
621
|
+
value: Int64Value.encode(message).finish()
|
|
622
|
+
};
|
|
623
|
+
}
|
|
624
|
+
};
|
|
625
|
+
function createBaseUInt64Value(): UInt64Value {
|
|
626
|
+
return {
|
|
627
|
+
value: BigInt(0)
|
|
628
|
+
};
|
|
629
|
+
}
|
|
630
|
+
export const UInt64Value = {
|
|
631
|
+
typeUrl: "/google.protobuf.UInt64Value",
|
|
632
|
+
encode(message: UInt64Value, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
633
|
+
if (message.value !== BigInt(0)) {
|
|
634
|
+
writer.uint32(8).uint64(message.value);
|
|
635
|
+
}
|
|
636
|
+
return writer;
|
|
637
|
+
},
|
|
638
|
+
decode(input: BinaryReader | Uint8Array, length?: number): UInt64Value {
|
|
639
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
640
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
641
|
+
const message = createBaseUInt64Value();
|
|
642
|
+
while (reader.pos < end) {
|
|
643
|
+
const tag = reader.uint32();
|
|
644
|
+
switch (tag >>> 3) {
|
|
645
|
+
case 1:
|
|
646
|
+
message.value = reader.uint64();
|
|
647
|
+
break;
|
|
648
|
+
default:
|
|
649
|
+
reader.skipType(tag & 7);
|
|
650
|
+
break;
|
|
651
|
+
}
|
|
652
|
+
}
|
|
653
|
+
return message;
|
|
654
|
+
},
|
|
655
|
+
fromPartial(object: Partial<UInt64Value>): UInt64Value {
|
|
656
|
+
const message = createBaseUInt64Value();
|
|
657
|
+
message.value = object.value !== undefined && object.value !== null ? BigInt(object.value.toString()) : BigInt(0);
|
|
658
|
+
return message;
|
|
659
|
+
},
|
|
660
|
+
fromAmino(object: UInt64ValueAmino): UInt64Value {
|
|
661
|
+
const message = createBaseUInt64Value();
|
|
662
|
+
if (object.value !== undefined && object.value !== null) {
|
|
663
|
+
message.value = BigInt(object.value);
|
|
664
|
+
}
|
|
665
|
+
return message;
|
|
666
|
+
},
|
|
667
|
+
toAmino(message: UInt64Value): UInt64ValueAmino {
|
|
668
|
+
const obj: any = {};
|
|
669
|
+
obj.value = message.value !== BigInt(0) ? message.value?.toString() : undefined;
|
|
670
|
+
return obj;
|
|
671
|
+
},
|
|
672
|
+
fromAminoMsg(object: UInt64ValueAminoMsg): UInt64Value {
|
|
673
|
+
return UInt64Value.fromAmino(object.value);
|
|
674
|
+
},
|
|
675
|
+
fromProtoMsg(message: UInt64ValueProtoMsg): UInt64Value {
|
|
676
|
+
return UInt64Value.decode(message.value);
|
|
677
|
+
},
|
|
678
|
+
toProto(message: UInt64Value): Uint8Array {
|
|
679
|
+
return UInt64Value.encode(message).finish();
|
|
680
|
+
},
|
|
681
|
+
toProtoMsg(message: UInt64Value): UInt64ValueProtoMsg {
|
|
682
|
+
return {
|
|
683
|
+
typeUrl: "/google.protobuf.UInt64Value",
|
|
684
|
+
value: UInt64Value.encode(message).finish()
|
|
685
|
+
};
|
|
686
|
+
}
|
|
687
|
+
};
|
|
688
|
+
function createBaseInt32Value(): Int32Value {
|
|
689
|
+
return {
|
|
690
|
+
value: 0
|
|
691
|
+
};
|
|
692
|
+
}
|
|
693
|
+
export const Int32Value = {
|
|
694
|
+
typeUrl: "/google.protobuf.Int32Value",
|
|
695
|
+
encode(message: Int32Value, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
696
|
+
if (message.value !== 0) {
|
|
697
|
+
writer.uint32(8).int32(message.value);
|
|
698
|
+
}
|
|
699
|
+
return writer;
|
|
700
|
+
},
|
|
701
|
+
decode(input: BinaryReader | Uint8Array, length?: number): Int32Value {
|
|
702
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
703
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
704
|
+
const message = createBaseInt32Value();
|
|
705
|
+
while (reader.pos < end) {
|
|
706
|
+
const tag = reader.uint32();
|
|
707
|
+
switch (tag >>> 3) {
|
|
708
|
+
case 1:
|
|
709
|
+
message.value = reader.int32();
|
|
710
|
+
break;
|
|
711
|
+
default:
|
|
712
|
+
reader.skipType(tag & 7);
|
|
713
|
+
break;
|
|
714
|
+
}
|
|
715
|
+
}
|
|
716
|
+
return message;
|
|
717
|
+
},
|
|
718
|
+
fromPartial(object: Partial<Int32Value>): Int32Value {
|
|
719
|
+
const message = createBaseInt32Value();
|
|
720
|
+
message.value = object.value ?? 0;
|
|
721
|
+
return message;
|
|
722
|
+
},
|
|
723
|
+
fromAmino(object: Int32ValueAmino): Int32Value {
|
|
724
|
+
const message = createBaseInt32Value();
|
|
725
|
+
if (object.value !== undefined && object.value !== null) {
|
|
726
|
+
message.value = object.value;
|
|
727
|
+
}
|
|
728
|
+
return message;
|
|
729
|
+
},
|
|
730
|
+
toAmino(message: Int32Value): Int32ValueAmino {
|
|
731
|
+
const obj: any = {};
|
|
732
|
+
obj.value = message.value === 0 ? undefined : message.value;
|
|
733
|
+
return obj;
|
|
734
|
+
},
|
|
735
|
+
fromAminoMsg(object: Int32ValueAminoMsg): Int32Value {
|
|
736
|
+
return Int32Value.fromAmino(object.value);
|
|
737
|
+
},
|
|
738
|
+
fromProtoMsg(message: Int32ValueProtoMsg): Int32Value {
|
|
739
|
+
return Int32Value.decode(message.value);
|
|
740
|
+
},
|
|
741
|
+
toProto(message: Int32Value): Uint8Array {
|
|
742
|
+
return Int32Value.encode(message).finish();
|
|
743
|
+
},
|
|
744
|
+
toProtoMsg(message: Int32Value): Int32ValueProtoMsg {
|
|
745
|
+
return {
|
|
746
|
+
typeUrl: "/google.protobuf.Int32Value",
|
|
747
|
+
value: Int32Value.encode(message).finish()
|
|
748
|
+
};
|
|
749
|
+
}
|
|
750
|
+
};
|
|
751
|
+
function createBaseUInt32Value(): UInt32Value {
|
|
752
|
+
return {
|
|
753
|
+
value: 0
|
|
754
|
+
};
|
|
755
|
+
}
|
|
756
|
+
export const UInt32Value = {
|
|
757
|
+
typeUrl: "/google.protobuf.UInt32Value",
|
|
758
|
+
encode(message: UInt32Value, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
759
|
+
if (message.value !== 0) {
|
|
760
|
+
writer.uint32(8).uint32(message.value);
|
|
761
|
+
}
|
|
762
|
+
return writer;
|
|
763
|
+
},
|
|
764
|
+
decode(input: BinaryReader | Uint8Array, length?: number): UInt32Value {
|
|
765
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
766
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
767
|
+
const message = createBaseUInt32Value();
|
|
768
|
+
while (reader.pos < end) {
|
|
769
|
+
const tag = reader.uint32();
|
|
770
|
+
switch (tag >>> 3) {
|
|
771
|
+
case 1:
|
|
772
|
+
message.value = reader.uint32();
|
|
773
|
+
break;
|
|
774
|
+
default:
|
|
775
|
+
reader.skipType(tag & 7);
|
|
776
|
+
break;
|
|
777
|
+
}
|
|
778
|
+
}
|
|
779
|
+
return message;
|
|
780
|
+
},
|
|
781
|
+
fromPartial(object: Partial<UInt32Value>): UInt32Value {
|
|
782
|
+
const message = createBaseUInt32Value();
|
|
783
|
+
message.value = object.value ?? 0;
|
|
784
|
+
return message;
|
|
785
|
+
},
|
|
786
|
+
fromAmino(object: UInt32ValueAmino): UInt32Value {
|
|
787
|
+
const message = createBaseUInt32Value();
|
|
788
|
+
if (object.value !== undefined && object.value !== null) {
|
|
789
|
+
message.value = object.value;
|
|
790
|
+
}
|
|
791
|
+
return message;
|
|
792
|
+
},
|
|
793
|
+
toAmino(message: UInt32Value): UInt32ValueAmino {
|
|
794
|
+
const obj: any = {};
|
|
795
|
+
obj.value = message.value === 0 ? undefined : message.value;
|
|
796
|
+
return obj;
|
|
797
|
+
},
|
|
798
|
+
fromAminoMsg(object: UInt32ValueAminoMsg): UInt32Value {
|
|
799
|
+
return UInt32Value.fromAmino(object.value);
|
|
800
|
+
},
|
|
801
|
+
fromProtoMsg(message: UInt32ValueProtoMsg): UInt32Value {
|
|
802
|
+
return UInt32Value.decode(message.value);
|
|
803
|
+
},
|
|
804
|
+
toProto(message: UInt32Value): Uint8Array {
|
|
805
|
+
return UInt32Value.encode(message).finish();
|
|
806
|
+
},
|
|
807
|
+
toProtoMsg(message: UInt32Value): UInt32ValueProtoMsg {
|
|
808
|
+
return {
|
|
809
|
+
typeUrl: "/google.protobuf.UInt32Value",
|
|
810
|
+
value: UInt32Value.encode(message).finish()
|
|
811
|
+
};
|
|
812
|
+
}
|
|
813
|
+
};
|
|
814
|
+
function createBaseBoolValue(): BoolValue {
|
|
815
|
+
return {
|
|
816
|
+
value: false
|
|
817
|
+
};
|
|
818
|
+
}
|
|
819
|
+
export const BoolValue = {
|
|
820
|
+
typeUrl: "/google.protobuf.BoolValue",
|
|
821
|
+
encode(message: BoolValue, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
822
|
+
if (message.value === true) {
|
|
823
|
+
writer.uint32(8).bool(message.value);
|
|
824
|
+
}
|
|
825
|
+
return writer;
|
|
826
|
+
},
|
|
827
|
+
decode(input: BinaryReader | Uint8Array, length?: number): BoolValue {
|
|
828
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
829
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
830
|
+
const message = createBaseBoolValue();
|
|
831
|
+
while (reader.pos < end) {
|
|
832
|
+
const tag = reader.uint32();
|
|
833
|
+
switch (tag >>> 3) {
|
|
834
|
+
case 1:
|
|
835
|
+
message.value = reader.bool();
|
|
836
|
+
break;
|
|
837
|
+
default:
|
|
838
|
+
reader.skipType(tag & 7);
|
|
839
|
+
break;
|
|
840
|
+
}
|
|
841
|
+
}
|
|
842
|
+
return message;
|
|
843
|
+
},
|
|
844
|
+
fromPartial(object: Partial<BoolValue>): BoolValue {
|
|
845
|
+
const message = createBaseBoolValue();
|
|
846
|
+
message.value = object.value ?? false;
|
|
847
|
+
return message;
|
|
848
|
+
},
|
|
849
|
+
fromAmino(object: BoolValueAmino): BoolValue {
|
|
850
|
+
const message = createBaseBoolValue();
|
|
851
|
+
if (object.value !== undefined && object.value !== null) {
|
|
852
|
+
message.value = object.value;
|
|
853
|
+
}
|
|
854
|
+
return message;
|
|
855
|
+
},
|
|
856
|
+
toAmino(message: BoolValue): BoolValueAmino {
|
|
857
|
+
const obj: any = {};
|
|
858
|
+
obj.value = message.value === false ? undefined : message.value;
|
|
859
|
+
return obj;
|
|
860
|
+
},
|
|
861
|
+
fromAminoMsg(object: BoolValueAminoMsg): BoolValue {
|
|
862
|
+
return BoolValue.fromAmino(object.value);
|
|
863
|
+
},
|
|
864
|
+
fromProtoMsg(message: BoolValueProtoMsg): BoolValue {
|
|
865
|
+
return BoolValue.decode(message.value);
|
|
866
|
+
},
|
|
867
|
+
toProto(message: BoolValue): Uint8Array {
|
|
868
|
+
return BoolValue.encode(message).finish();
|
|
869
|
+
},
|
|
870
|
+
toProtoMsg(message: BoolValue): BoolValueProtoMsg {
|
|
871
|
+
return {
|
|
872
|
+
typeUrl: "/google.protobuf.BoolValue",
|
|
873
|
+
value: BoolValue.encode(message).finish()
|
|
874
|
+
};
|
|
875
|
+
}
|
|
876
|
+
};
|
|
877
|
+
function createBaseStringValue(): StringValue {
|
|
878
|
+
return {
|
|
879
|
+
value: ""
|
|
880
|
+
};
|
|
881
|
+
}
|
|
882
|
+
export const StringValue = {
|
|
883
|
+
typeUrl: "/google.protobuf.StringValue",
|
|
884
|
+
encode(message: StringValue, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
885
|
+
if (message.value !== "") {
|
|
886
|
+
writer.uint32(10).string(message.value);
|
|
887
|
+
}
|
|
888
|
+
return writer;
|
|
889
|
+
},
|
|
890
|
+
decode(input: BinaryReader | Uint8Array, length?: number): StringValue {
|
|
891
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
892
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
893
|
+
const message = createBaseStringValue();
|
|
894
|
+
while (reader.pos < end) {
|
|
895
|
+
const tag = reader.uint32();
|
|
896
|
+
switch (tag >>> 3) {
|
|
897
|
+
case 1:
|
|
898
|
+
message.value = reader.string();
|
|
899
|
+
break;
|
|
900
|
+
default:
|
|
901
|
+
reader.skipType(tag & 7);
|
|
902
|
+
break;
|
|
903
|
+
}
|
|
904
|
+
}
|
|
905
|
+
return message;
|
|
906
|
+
},
|
|
907
|
+
fromPartial(object: Partial<StringValue>): StringValue {
|
|
908
|
+
const message = createBaseStringValue();
|
|
909
|
+
message.value = object.value ?? "";
|
|
910
|
+
return message;
|
|
911
|
+
},
|
|
912
|
+
fromAmino(object: StringValueAmino): StringValue {
|
|
913
|
+
const message = createBaseStringValue();
|
|
914
|
+
if (object.value !== undefined && object.value !== null) {
|
|
915
|
+
message.value = object.value;
|
|
916
|
+
}
|
|
917
|
+
return message;
|
|
918
|
+
},
|
|
919
|
+
toAmino(message: StringValue): StringValueAmino {
|
|
920
|
+
const obj: any = {};
|
|
921
|
+
obj.value = message.value === "" ? undefined : message.value;
|
|
922
|
+
return obj;
|
|
923
|
+
},
|
|
924
|
+
fromAminoMsg(object: StringValueAminoMsg): StringValue {
|
|
925
|
+
return StringValue.fromAmino(object.value);
|
|
926
|
+
},
|
|
927
|
+
fromProtoMsg(message: StringValueProtoMsg): StringValue {
|
|
928
|
+
return StringValue.decode(message.value);
|
|
929
|
+
},
|
|
930
|
+
toProto(message: StringValue): Uint8Array {
|
|
931
|
+
return StringValue.encode(message).finish();
|
|
932
|
+
},
|
|
933
|
+
toProtoMsg(message: StringValue): StringValueProtoMsg {
|
|
934
|
+
return {
|
|
935
|
+
typeUrl: "/google.protobuf.StringValue",
|
|
936
|
+
value: StringValue.encode(message).finish()
|
|
937
|
+
};
|
|
938
|
+
}
|
|
939
|
+
};
|
|
940
|
+
function createBaseBytesValue(): BytesValue {
|
|
941
|
+
return {
|
|
942
|
+
value: new Uint8Array()
|
|
943
|
+
};
|
|
944
|
+
}
|
|
945
|
+
export const BytesValue = {
|
|
946
|
+
typeUrl: "/google.protobuf.BytesValue",
|
|
947
|
+
encode(message: BytesValue, writer: BinaryWriter = BinaryWriter.create()): BinaryWriter {
|
|
948
|
+
if (message.value.length !== 0) {
|
|
949
|
+
writer.uint32(10).bytes(message.value);
|
|
950
|
+
}
|
|
951
|
+
return writer;
|
|
952
|
+
},
|
|
953
|
+
decode(input: BinaryReader | Uint8Array, length?: number): BytesValue {
|
|
954
|
+
const reader = input instanceof BinaryReader ? input : new BinaryReader(input);
|
|
955
|
+
let end = length === undefined ? reader.len : reader.pos + length;
|
|
956
|
+
const message = createBaseBytesValue();
|
|
957
|
+
while (reader.pos < end) {
|
|
958
|
+
const tag = reader.uint32();
|
|
959
|
+
switch (tag >>> 3) {
|
|
960
|
+
case 1:
|
|
961
|
+
message.value = reader.bytes();
|
|
962
|
+
break;
|
|
963
|
+
default:
|
|
964
|
+
reader.skipType(tag & 7);
|
|
965
|
+
break;
|
|
966
|
+
}
|
|
967
|
+
}
|
|
968
|
+
return message;
|
|
969
|
+
},
|
|
970
|
+
fromPartial(object: Partial<BytesValue>): BytesValue {
|
|
971
|
+
const message = createBaseBytesValue();
|
|
972
|
+
message.value = object.value ?? new Uint8Array();
|
|
973
|
+
return message;
|
|
974
|
+
},
|
|
975
|
+
fromAmino(object: BytesValueAmino): BytesValue {
|
|
976
|
+
const message = createBaseBytesValue();
|
|
977
|
+
if (object.value !== undefined && object.value !== null) {
|
|
978
|
+
message.value = bytesFromBase64(object.value);
|
|
979
|
+
}
|
|
980
|
+
return message;
|
|
981
|
+
},
|
|
982
|
+
toAmino(message: BytesValue): BytesValueAmino {
|
|
983
|
+
const obj: any = {};
|
|
984
|
+
obj.value = message.value ? base64FromBytes(message.value) : undefined;
|
|
985
|
+
return obj;
|
|
986
|
+
},
|
|
987
|
+
fromAminoMsg(object: BytesValueAminoMsg): BytesValue {
|
|
988
|
+
return BytesValue.fromAmino(object.value);
|
|
989
|
+
},
|
|
990
|
+
fromProtoMsg(message: BytesValueProtoMsg): BytesValue {
|
|
991
|
+
return BytesValue.decode(message.value);
|
|
992
|
+
},
|
|
993
|
+
toProto(message: BytesValue): Uint8Array {
|
|
994
|
+
return BytesValue.encode(message).finish();
|
|
995
|
+
},
|
|
996
|
+
toProtoMsg(message: BytesValue): BytesValueProtoMsg {
|
|
997
|
+
return {
|
|
998
|
+
typeUrl: "/google.protobuf.BytesValue",
|
|
999
|
+
value: BytesValue.encode(message).finish()
|
|
1000
|
+
};
|
|
1001
|
+
}
|
|
1002
|
+
};
|