injectivejs 1.11.13 → 1.11.15
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/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/auth/v1beta1/auth.d.ts +70 -6
- package/cosmos/auth/v1beta1/auth.js +28 -0
- package/cosmos/auth/v1beta1/query.d.ts +362 -32
- package/cosmos/auth/v1beta1/query.js +148 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +77 -0
- package/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +24 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/cosmos/bank/v1beta1/bank.d.ts +136 -18
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/query.d.ts +619 -86
- package/cosmos/bank/v1beta1/query.js +199 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +115 -0
- package/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/cosmos/bank/v1beta1/tx.d.ts +151 -14
- package/cosmos/bank/v1beta1/tx.js +61 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +32 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/bundle.d.ts +8 -8
- package/cosmos/bundle.js +15 -15
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
- package/cosmos/distribution/v1beta1/tx.js +109 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +57 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
- package/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +22 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/cosmos/gov/v1/gov.d.ts +343 -80
- package/cosmos/gov/v1/gov.js +61 -0
- package/cosmos/gov/v1/tx.d.ts +376 -65
- package/cosmos/gov/v1/tx.js +96 -0
- package/cosmos/gov/v1/tx.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/cosmos/gov/v1beta1/gov.d.ts +293 -61
- package/cosmos/gov/v1beta1/gov.js +59 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/cosmos/gov/v1beta1/tx.d.ts +213 -37
- package/cosmos/gov/v1beta1/tx.js +53 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +26 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/cosmos/group/v1/tx.d.ts +804 -155
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/tx.rpc.func.d.ts +84 -0
- package/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/cosmos/group/v1/types.d.ts +398 -83
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +109 -0
- package/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/cosmos/staking/v1beta1/staking.d.ts +631 -117
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +242 -22
- package/cosmos/staking/v1beta1/tx.js +96 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +50 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +375 -46
- package/cosmos/tx/v1beta1/service.js +145 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +64 -0
- package/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/cosmos/tx/v1beta1/tx.d.ts +303 -46
- package/cosmos/tx/v1beta1/tx.js +99 -0
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
- package/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +102 -6
- package/cosmos/vesting/v1beta1/tx.js +48 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +25 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/cosmos/vesting/v1beta1/vesting.d.ts +105 -8
- package/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/cosmwasm/bundle.d.ts +2 -2
- package/cosmwasm/bundle.js +3 -3
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
- package/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/cosmwasm/wasm/v1/query.d.ts +615 -82
- package/cosmwasm/wasm/v1/query.js +195 -0
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +85 -0
- package/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/cosmwasm/wasm/v1/tx.d.ts +956 -170
- package/cosmwasm/wasm/v1/tx.js +242 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +128 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/cosmwasm/wasm/v1/types.d.ts +217 -40
- package/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/auth/v1beta1/auth.js +28 -0
- package/esm/cosmos/auth/v1beta1/query.js +148 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/query.js +199 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/esm/cosmos/bank/v1beta1/tx.js +61 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/bundle.js +8 -8
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/tx.js +109 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/esm/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/esm/cosmos/gov/v1/gov.js +61 -0
- package/esm/cosmos/gov/v1/tx.js +96 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/esm/cosmos/gov/v1beta1/gov.js +59 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/esm/cosmos/gov/v1beta1/tx.js +53 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +96 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +145 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/esm/cosmos/tx/v1beta1/tx.js +99 -0
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +48 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/esm/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/cosmwasm/bundle.js +2 -2
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/esm/cosmwasm/wasm/v1/query.js +195 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/esm/cosmwasm/wasm/v1/tx.js +242 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/esm/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/extern.js +1 -1
- package/esm/google/api/http.js +283 -0
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +215 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helper-func-types.js +1 -1
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/transfer/v1/transfer.js +24 -0
- package/esm/ibc/applications/transfer/v1/tx.js +27 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/esm/ibc/bundle.js +1 -1
- package/esm/ibc/core/channel/v1/channel.js +70 -0
- package/esm/ibc/core/channel/v1/tx.js +242 -0
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/esm/ibc/core/channel/v1/upgrade.js +25 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/tx.js +90 -0
- package/esm/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/esm/index.js +1 -1
- package/esm/injective/auction/v1beta1/auction.js +30 -0
- package/esm/injective/auction/v1beta1/genesis.js +6 -0
- package/esm/injective/auction/v1beta1/query.js +52 -0
- package/esm/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/esm/injective/auction/v1beta1/tx.js +21 -0
- package/esm/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/esm/injective/bundle.js +14 -14
- package/esm/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/esm/injective/exchange/v1beta1/authz.js +58 -0
- package/esm/injective/exchange/v1beta1/events.js +180 -0
- package/esm/injective/exchange/v1beta1/exchange.js +263 -0
- package/esm/injective/exchange/v1beta1/genesis.js +89 -0
- package/esm/injective/exchange/v1beta1/proposal.js +113 -0
- package/esm/injective/exchange/v1beta1/query.js +864 -0
- package/esm/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/esm/injective/exchange/v1beta1/tx.js +487 -0
- package/esm/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/esm/injective/insurance/v1beta1/events.js +25 -0
- package/esm/injective/insurance/v1beta1/genesis.js +6 -0
- package/esm/injective/insurance/v1beta1/insurance.js +15 -0
- package/esm/injective/insurance/v1beta1/query.js +84 -0
- package/esm/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/esm/injective/insurance/v1beta1/tx.js +46 -0
- package/esm/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/esm/injective/ocr/v1beta1/genesis.js +41 -0
- package/esm/injective/ocr/v1beta1/ocr.js +108 -0
- package/esm/injective/ocr/v1beta1/query.js +70 -0
- package/esm/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/esm/injective/ocr/v1beta1/tx.js +90 -0
- package/esm/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/esm/injective/oracle/v1beta1/events.js +56 -0
- package/esm/injective/oracle/v1beta1/genesis.js +11 -0
- package/esm/injective/oracle/v1beta1/oracle.js +122 -0
- package/esm/injective/oracle/v1beta1/proposal.js +55 -0
- package/esm/injective/oracle/v1beta1/query.js +240 -0
- package/esm/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/esm/injective/oracle/v1beta1/tx.js +93 -0
- package/esm/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/esm/injective/peggy/v1/attestation.js +31 -0
- package/esm/injective/peggy/v1/batch.js +12 -0
- package/esm/injective/peggy/v1/events.js +85 -0
- package/esm/injective/peggy/v1/genesis.js +6 -0
- package/esm/injective/peggy/v1/msgs.js +223 -0
- package/esm/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/esm/injective/peggy/v1/params.js +5 -0
- package/esm/injective/peggy/v1/pool.js +11 -0
- package/esm/injective/peggy/v1/proposal.js +10 -0
- package/esm/injective/peggy/v1/query.js +214 -0
- package/esm/injective/peggy/v1/query.rpc.func.js +110 -5
- package/esm/injective/peggy/v1/types.js +37 -0
- package/esm/injective/permissions/v1beta1/events.js +5 -0
- package/esm/injective/permissions/v1beta1/genesis.js +6 -0
- package/esm/injective/permissions/v1beta1/params.js +6 -0
- package/esm/injective/permissions/v1beta1/permissions.js +33 -0
- package/esm/injective/permissions/v1beta1/query.js +74 -0
- package/esm/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/esm/injective/permissions/v1beta1/tx.js +90 -0
- package/esm/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/esm/injective/stream/v1beta1/query.js +110 -0
- package/esm/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/esm/injective/tokenfactory/v1beta1/events.js +25 -0
- package/esm/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/esm/injective/tokenfactory/v1beta1/params.js +6 -0
- package/esm/injective/tokenfactory/v1beta1/query.js +54 -0
- package/esm/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/esm/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/esm/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/esm/injective/types/v1beta1/account.js +7 -0
- package/esm/injective/types/v1beta1/tx_ext.js +5 -0
- package/esm/injective/types/v1beta1/tx_response.js +13 -0
- package/esm/injective/wasmx/v1/events.js +15 -0
- package/esm/injective/wasmx/v1/genesis.js +11 -0
- package/esm/injective/wasmx/v1/proposal.js +25 -0
- package/esm/injective/wasmx/v1/query.js +39 -0
- package/esm/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/esm/injective/wasmx/v1/tx.js +63 -0
- package/esm/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/esm/injective/wasmx/v1/wasmx.js +10 -0
- package/esm/registry.js +1 -1
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/extern.d.ts +1 -1
- package/extern.js +1 -1
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +715 -86
- package/google/protobuf/descriptor.js +215 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helper-func-types.d.ts +1 -1
- package/helper-func-types.js +1 -1
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/transfer/v1/transfer.d.ts +54 -4
- package/ibc/applications/transfer/v1/transfer.js +24 -0
- package/ibc/applications/transfer/v1/tx.d.ts +125 -26
- package/ibc/applications/transfer/v1/tx.js +27 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +12 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/ibc/bundle.d.ts +1 -1
- package/ibc/bundle.js +2 -2
- package/ibc/core/channel/v1/channel.d.ts +316 -64
- package/ibc/core/channel/v1/channel.js +70 -0
- package/ibc/core/channel/v1/tx.d.ts +676 -70
- package/ibc/core/channel/v1/tx.js +242 -0
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +115 -0
- package/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/ibc/core/channel/v1/upgrade.d.ts +55 -4
- package/ibc/core/channel/v1/upgrade.js +25 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/tx.d.ts +338 -56
- package/ibc/core/client/v1/tx.js +90 -0
- package/ibc/core/client/v1/tx.rpc.func.d.ts +42 -0
- package/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +32 -0
- package/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/injective/auction/v1beta1/auction.d.ts +168 -26
- package/injective/auction/v1beta1/auction.js +30 -0
- package/injective/auction/v1beta1/genesis.d.ts +48 -12
- package/injective/auction/v1beta1/genesis.js +6 -0
- package/injective/auction/v1beta1/query.d.ts +138 -10
- package/injective/auction/v1beta1/query.js +52 -0
- package/injective/auction/v1beta1/query.rpc.func.d.ts +23 -0
- package/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/injective/auction/v1beta1/tx.d.ts +81 -8
- package/injective/auction/v1beta1/tx.js +21 -0
- package/injective/auction/v1beta1/tx.rpc.func.d.ts +11 -0
- package/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/injective/bundle.d.ts +14 -14
- package/injective/bundle.js +18 -18
- package/injective/crypto/v1beta1/ethsecp256k1/keys.d.ts +27 -0
- package/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/injective/exchange/v1beta1/authz.d.ts +174 -6
- package/injective/exchange/v1beta1/authz.js +58 -0
- package/injective/exchange/v1beta1/events.d.ts +546 -2
- package/injective/exchange/v1beta1/events.js +180 -0
- package/injective/exchange/v1beta1/exchange.d.ts +1305 -188
- package/injective/exchange/v1beta1/exchange.js +263 -0
- package/injective/exchange/v1beta1/genesis.d.ts +357 -38
- package/injective/exchange/v1beta1/genesis.js +89 -0
- package/injective/exchange/v1beta1/proposal.d.ts +589 -94
- package/injective/exchange/v1beta1/proposal.js +113 -0
- package/injective/exchange/v1beta1/query.d.ts +2162 -136
- package/injective/exchange/v1beta1/query.js +864 -0
- package/injective/exchange/v1beta1/query.rpc.func.d.ts +364 -0
- package/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/injective/exchange/v1beta1/tx.d.ts +1503 -170
- package/injective/exchange/v1beta1/tx.js +487 -0
- package/injective/exchange/v1beta1/tx.rpc.func.d.ts +228 -0
- package/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/injective/insurance/v1beta1/events.d.ts +111 -12
- package/injective/insurance/v1beta1/events.js +25 -0
- package/injective/insurance/v1beta1/genesis.d.ts +30 -6
- package/injective/insurance/v1beta1/genesis.js +6 -0
- package/injective/insurance/v1beta1/insurance.d.ts +117 -24
- package/injective/insurance/v1beta1/insurance.js +15 -0
- package/injective/insurance/v1beta1/query.d.ts +162 -2
- package/injective/insurance/v1beta1/query.js +84 -0
- package/injective/insurance/v1beta1/query.rpc.func.d.ts +37 -0
- package/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/injective/insurance/v1beta1/tx.d.ts +186 -24
- package/injective/insurance/v1beta1/tx.js +46 -0
- package/injective/insurance/v1beta1/tx.rpc.func.d.ts +25 -0
- package/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/injective/ocr/v1beta1/genesis.d.ts +171 -18
- package/injective/ocr/v1beta1/genesis.js +41 -0
- package/injective/ocr/v1beta1/ocr.d.ts +514 -68
- package/injective/ocr/v1beta1/ocr.js +108 -0
- package/injective/ocr/v1beta1/query.d.ts +210 -0
- package/injective/ocr/v1beta1/query.js +70 -0
- package/injective/ocr/v1beta1/query.rpc.func.d.ts +42 -0
- package/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/injective/ocr/v1beta1/tx.d.ts +360 -30
- package/injective/ocr/v1beta1/tx.js +90 -0
- package/injective/ocr/v1beta1/tx.rpc.func.d.ts +57 -0
- package/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/injective/oracle/v1beta1/events.d.ts +174 -4
- package/injective/oracle/v1beta1/events.js +56 -0
- package/injective/oracle/v1beta1/genesis.d.ts +39 -4
- package/injective/oracle/v1beta1/genesis.js +11 -0
- package/injective/oracle/v1beta1/oracle.d.ts +514 -52
- package/injective/oracle/v1beta1/oracle.js +122 -0
- package/injective/oracle/v1beta1/proposal.d.ts +165 -0
- package/injective/oracle/v1beta1/proposal.js +55 -0
- package/injective/oracle/v1beta1/query.d.ts +502 -0
- package/injective/oracle/v1beta1/query.js +240 -0
- package/injective/oracle/v1beta1/query.rpc.func.d.ts +98 -0
- package/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/injective/oracle/v1beta1/tx.d.ts +251 -10
- package/injective/oracle/v1beta1/tx.js +93 -0
- package/injective/oracle/v1beta1/tx.rpc.func.d.ts +52 -0
- package/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/injective/peggy/v1/attestation.d.ts +43 -0
- package/injective/peggy/v1/attestation.js +31 -0
- package/injective/peggy/v1/batch.d.ts +36 -4
- package/injective/peggy/v1/batch.js +12 -0
- package/injective/peggy/v1/events.d.ts +255 -0
- package/injective/peggy/v1/events.js +85 -0
- package/injective/peggy/v1/genesis.d.ts +18 -2
- package/injective/peggy/v1/genesis.js +6 -0
- package/injective/peggy/v1/msgs.d.ts +473 -10
- package/injective/peggy/v1/msgs.js +223 -0
- package/injective/peggy/v1/msgs.rpc.func.d.ts +73 -0
- package/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/injective/peggy/v1/params.d.ts +15 -0
- package/injective/peggy/v1/params.js +5 -0
- package/injective/peggy/v1/pool.d.ts +33 -2
- package/injective/peggy/v1/pool.js +11 -0
- package/injective/peggy/v1/proposal.d.ts +30 -0
- package/injective/peggy/v1/proposal.js +10 -0
- package/injective/peggy/v1/query.d.ts +626 -0
- package/injective/peggy/v1/query.js +214 -0
- package/injective/peggy/v1/query.rpc.func.d.ts +110 -0
- package/injective/peggy/v1/query.rpc.func.js +110 -5
- package/injective/peggy/v1/types.d.ts +85 -6
- package/injective/peggy/v1/types.js +37 -0
- package/injective/permissions/v1beta1/events.d.ts +15 -0
- package/injective/permissions/v1beta1/events.js +5 -0
- package/injective/permissions/v1beta1/genesis.d.ts +24 -4
- package/injective/permissions/v1beta1/genesis.js +6 -0
- package/injective/permissions/v1beta1/params.d.ts +18 -2
- package/injective/permissions/v1beta1/params.js +6 -0
- package/injective/permissions/v1beta1/permissions.d.ts +117 -12
- package/injective/permissions/v1beta1/permissions.js +33 -0
- package/injective/permissions/v1beta1/query.d.ts +180 -6
- package/injective/permissions/v1beta1/query.js +74 -0
- package/injective/permissions/v1beta1/query.rpc.func.d.ts +43 -0
- package/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/injective/permissions/v1beta1/tx.d.ts +318 -16
- package/injective/permissions/v1beta1/tx.js +90 -0
- package/injective/permissions/v1beta1/tx.rpc.func.d.ts +35 -0
- package/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/injective/stream/v1beta1/query.d.ts +336 -2
- package/injective/stream/v1beta1/query.js +110 -0
- package/injective/tokenfactory/v1beta1/authorityMetadata.d.ts +20 -2
- package/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/injective/tokenfactory/v1beta1/events.d.ts +75 -0
- package/injective/tokenfactory/v1beta1/events.js +25 -0
- package/injective/tokenfactory/v1beta1/genesis.d.ts +38 -4
- package/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/injective/tokenfactory/v1beta1/params.d.ts +18 -2
- package/injective/tokenfactory/v1beta1/params.js +6 -0
- package/injective/tokenfactory/v1beta1/query.d.ts +120 -6
- package/injective/tokenfactory/v1beta1/query.js +54 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.d.ts +27 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/injective/tokenfactory/v1beta1/tx.d.ts +183 -4
- package/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.d.ts +30 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/injective/types/v1beta1/account.d.ts +13 -0
- package/injective/types/v1beta1/account.js +7 -0
- package/injective/types/v1beta1/tx_ext.d.ts +15 -0
- package/injective/types/v1beta1/tx_ext.js +5 -0
- package/injective/types/v1beta1/tx_response.d.ts +31 -2
- package/injective/types/v1beta1/tx_response.js +13 -0
- package/injective/wasmx/v1/events.d.ts +45 -0
- package/injective/wasmx/v1/events.js +15 -0
- package/injective/wasmx/v1/genesis.d.ts +39 -4
- package/injective/wasmx/v1/genesis.js +11 -0
- package/injective/wasmx/v1/proposal.d.ts +99 -8
- package/injective/wasmx/v1/proposal.js +25 -0
- package/injective/wasmx/v1/query.d.ts +85 -2
- package/injective/wasmx/v1/query.js +39 -0
- package/injective/wasmx/v1/query.rpc.func.d.ts +18 -0
- package/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/injective/wasmx/v1/tx.d.ts +253 -26
- package/injective/wasmx/v1/tx.js +63 -0
- package/injective/wasmx/v1/tx.rpc.func.d.ts +30 -0
- package/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/injective/wasmx/v1/wasmx.d.ts +60 -10
- package/injective/wasmx/v1/wasmx.js +10 -0
- package/package.json +9 -9
- package/registry.d.ts +1 -1
- package/registry.js +1 -1
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
|
@@ -18,6 +18,12 @@ function createBaseMsgCreateValidator() {
|
|
|
18
18
|
value: Coin.fromPartial({})
|
|
19
19
|
};
|
|
20
20
|
}
|
|
21
|
+
/**
|
|
22
|
+
* MsgCreateValidator defines a SDK message for creating a new validator.
|
|
23
|
+
* @name MsgCreateValidator
|
|
24
|
+
* @package cosmos.staking.v1beta1
|
|
25
|
+
* @see proto type: cosmos.staking.v1beta1.MsgCreateValidator
|
|
26
|
+
*/
|
|
21
27
|
export const MsgCreateValidator = {
|
|
22
28
|
typeUrl: "/cosmos.staking.v1beta1.MsgCreateValidator",
|
|
23
29
|
aminoType: "cosmos-sdk/MsgCreateValidator",
|
|
@@ -164,6 +170,12 @@ export const MsgCreateValidator = {
|
|
|
164
170
|
function createBaseMsgCreateValidatorResponse() {
|
|
165
171
|
return {};
|
|
166
172
|
}
|
|
173
|
+
/**
|
|
174
|
+
* MsgCreateValidatorResponse defines the Msg/CreateValidator response type.
|
|
175
|
+
* @name MsgCreateValidatorResponse
|
|
176
|
+
* @package cosmos.staking.v1beta1
|
|
177
|
+
* @see proto type: cosmos.staking.v1beta1.MsgCreateValidatorResponse
|
|
178
|
+
*/
|
|
167
179
|
export const MsgCreateValidatorResponse = {
|
|
168
180
|
typeUrl: "/cosmos.staking.v1beta1.MsgCreateValidatorResponse",
|
|
169
181
|
aminoType: "cosmos-sdk/MsgCreateValidatorResponse",
|
|
@@ -233,6 +245,12 @@ function createBaseMsgEditValidator() {
|
|
|
233
245
|
minSelfDelegation: ""
|
|
234
246
|
};
|
|
235
247
|
}
|
|
248
|
+
/**
|
|
249
|
+
* MsgEditValidator defines a SDK message for editing an existing validator.
|
|
250
|
+
* @name MsgEditValidator
|
|
251
|
+
* @package cosmos.staking.v1beta1
|
|
252
|
+
* @see proto type: cosmos.staking.v1beta1.MsgEditValidator
|
|
253
|
+
*/
|
|
236
254
|
export const MsgEditValidator = {
|
|
237
255
|
typeUrl: "/cosmos.staking.v1beta1.MsgEditValidator",
|
|
238
256
|
aminoType: "cosmos-sdk/MsgEditValidator",
|
|
@@ -346,6 +364,12 @@ export const MsgEditValidator = {
|
|
|
346
364
|
function createBaseMsgEditValidatorResponse() {
|
|
347
365
|
return {};
|
|
348
366
|
}
|
|
367
|
+
/**
|
|
368
|
+
* MsgEditValidatorResponse defines the Msg/EditValidator response type.
|
|
369
|
+
* @name MsgEditValidatorResponse
|
|
370
|
+
* @package cosmos.staking.v1beta1
|
|
371
|
+
* @see proto type: cosmos.staking.v1beta1.MsgEditValidatorResponse
|
|
372
|
+
*/
|
|
349
373
|
export const MsgEditValidatorResponse = {
|
|
350
374
|
typeUrl: "/cosmos.staking.v1beta1.MsgEditValidatorResponse",
|
|
351
375
|
aminoType: "cosmos-sdk/MsgEditValidatorResponse",
|
|
@@ -414,6 +438,13 @@ function createBaseMsgDelegate() {
|
|
|
414
438
|
amount: Coin.fromPartial({})
|
|
415
439
|
};
|
|
416
440
|
}
|
|
441
|
+
/**
|
|
442
|
+
* MsgDelegate defines a SDK message for performing a delegation of coins
|
|
443
|
+
* from a delegator to a validator.
|
|
444
|
+
* @name MsgDelegate
|
|
445
|
+
* @package cosmos.staking.v1beta1
|
|
446
|
+
* @see proto type: cosmos.staking.v1beta1.MsgDelegate
|
|
447
|
+
*/
|
|
417
448
|
export const MsgDelegate = {
|
|
418
449
|
typeUrl: "/cosmos.staking.v1beta1.MsgDelegate",
|
|
419
450
|
aminoType: "cosmos-sdk/MsgDelegate",
|
|
@@ -516,6 +547,12 @@ export const MsgDelegate = {
|
|
|
516
547
|
function createBaseMsgDelegateResponse() {
|
|
517
548
|
return {};
|
|
518
549
|
}
|
|
550
|
+
/**
|
|
551
|
+
* MsgDelegateResponse defines the Msg/Delegate response type.
|
|
552
|
+
* @name MsgDelegateResponse
|
|
553
|
+
* @package cosmos.staking.v1beta1
|
|
554
|
+
* @see proto type: cosmos.staking.v1beta1.MsgDelegateResponse
|
|
555
|
+
*/
|
|
519
556
|
export const MsgDelegateResponse = {
|
|
520
557
|
typeUrl: "/cosmos.staking.v1beta1.MsgDelegateResponse",
|
|
521
558
|
aminoType: "cosmos-sdk/MsgDelegateResponse",
|
|
@@ -585,6 +622,13 @@ function createBaseMsgBeginRedelegate() {
|
|
|
585
622
|
amount: Coin.fromPartial({})
|
|
586
623
|
};
|
|
587
624
|
}
|
|
625
|
+
/**
|
|
626
|
+
* MsgBeginRedelegate defines a SDK message for performing a redelegation
|
|
627
|
+
* of coins from a delegator and source validator to a destination validator.
|
|
628
|
+
* @name MsgBeginRedelegate
|
|
629
|
+
* @package cosmos.staking.v1beta1
|
|
630
|
+
* @see proto type: cosmos.staking.v1beta1.MsgBeginRedelegate
|
|
631
|
+
*/
|
|
588
632
|
export const MsgBeginRedelegate = {
|
|
589
633
|
typeUrl: "/cosmos.staking.v1beta1.MsgBeginRedelegate",
|
|
590
634
|
aminoType: "cosmos-sdk/MsgBeginRedelegate",
|
|
@@ -700,6 +744,12 @@ function createBaseMsgBeginRedelegateResponse() {
|
|
|
700
744
|
completionTime: new Date()
|
|
701
745
|
};
|
|
702
746
|
}
|
|
747
|
+
/**
|
|
748
|
+
* MsgBeginRedelegateResponse defines the Msg/BeginRedelegate response type.
|
|
749
|
+
* @name MsgBeginRedelegateResponse
|
|
750
|
+
* @package cosmos.staking.v1beta1
|
|
751
|
+
* @see proto type: cosmos.staking.v1beta1.MsgBeginRedelegateResponse
|
|
752
|
+
*/
|
|
703
753
|
export const MsgBeginRedelegateResponse = {
|
|
704
754
|
typeUrl: "/cosmos.staking.v1beta1.MsgBeginRedelegateResponse",
|
|
705
755
|
aminoType: "cosmos-sdk/MsgBeginRedelegateResponse",
|
|
@@ -779,6 +829,13 @@ function createBaseMsgUndelegate() {
|
|
|
779
829
|
amount: Coin.fromPartial({})
|
|
780
830
|
};
|
|
781
831
|
}
|
|
832
|
+
/**
|
|
833
|
+
* MsgUndelegate defines a SDK message for performing an undelegation from a
|
|
834
|
+
* delegate and a validator.
|
|
835
|
+
* @name MsgUndelegate
|
|
836
|
+
* @package cosmos.staking.v1beta1
|
|
837
|
+
* @see proto type: cosmos.staking.v1beta1.MsgUndelegate
|
|
838
|
+
*/
|
|
782
839
|
export const MsgUndelegate = {
|
|
783
840
|
typeUrl: "/cosmos.staking.v1beta1.MsgUndelegate",
|
|
784
841
|
aminoType: "cosmos-sdk/MsgUndelegate",
|
|
@@ -884,6 +941,12 @@ function createBaseMsgUndelegateResponse() {
|
|
|
884
941
|
amount: Coin.fromPartial({})
|
|
885
942
|
};
|
|
886
943
|
}
|
|
944
|
+
/**
|
|
945
|
+
* MsgUndelegateResponse defines the Msg/Undelegate response type.
|
|
946
|
+
* @name MsgUndelegateResponse
|
|
947
|
+
* @package cosmos.staking.v1beta1
|
|
948
|
+
* @see proto type: cosmos.staking.v1beta1.MsgUndelegateResponse
|
|
949
|
+
*/
|
|
887
950
|
export const MsgUndelegateResponse = {
|
|
888
951
|
typeUrl: "/cosmos.staking.v1beta1.MsgUndelegateResponse",
|
|
889
952
|
aminoType: "cosmos-sdk/MsgUndelegateResponse",
|
|
@@ -980,6 +1043,14 @@ function createBaseMsgCancelUnbondingDelegation() {
|
|
|
980
1043
|
creationHeight: BigInt(0)
|
|
981
1044
|
};
|
|
982
1045
|
}
|
|
1046
|
+
/**
|
|
1047
|
+
* MsgCancelUnbondingDelegation defines the SDK message for performing a cancel unbonding delegation for delegator
|
|
1048
|
+
*
|
|
1049
|
+
* Since: cosmos-sdk 0.46
|
|
1050
|
+
* @name MsgCancelUnbondingDelegation
|
|
1051
|
+
* @package cosmos.staking.v1beta1
|
|
1052
|
+
* @see proto type: cosmos.staking.v1beta1.MsgCancelUnbondingDelegation
|
|
1053
|
+
*/
|
|
983
1054
|
export const MsgCancelUnbondingDelegation = {
|
|
984
1055
|
typeUrl: "/cosmos.staking.v1beta1.MsgCancelUnbondingDelegation",
|
|
985
1056
|
aminoType: "cosmos-sdk/MsgCancelUnbondingDelegation",
|
|
@@ -1093,6 +1164,14 @@ export const MsgCancelUnbondingDelegation = {
|
|
|
1093
1164
|
function createBaseMsgCancelUnbondingDelegationResponse() {
|
|
1094
1165
|
return {};
|
|
1095
1166
|
}
|
|
1167
|
+
/**
|
|
1168
|
+
* MsgCancelUnbondingDelegationResponse
|
|
1169
|
+
*
|
|
1170
|
+
* Since: cosmos-sdk 0.46
|
|
1171
|
+
* @name MsgCancelUnbondingDelegationResponse
|
|
1172
|
+
* @package cosmos.staking.v1beta1
|
|
1173
|
+
* @see proto type: cosmos.staking.v1beta1.MsgCancelUnbondingDelegationResponse
|
|
1174
|
+
*/
|
|
1096
1175
|
export const MsgCancelUnbondingDelegationResponse = {
|
|
1097
1176
|
typeUrl: "/cosmos.staking.v1beta1.MsgCancelUnbondingDelegationResponse",
|
|
1098
1177
|
aminoType: "cosmos-sdk/MsgCancelUnbondingDelegationResponse",
|
|
@@ -1160,6 +1239,14 @@ function createBaseMsgUpdateParams() {
|
|
|
1160
1239
|
params: Params.fromPartial({})
|
|
1161
1240
|
};
|
|
1162
1241
|
}
|
|
1242
|
+
/**
|
|
1243
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
1244
|
+
*
|
|
1245
|
+
* Since: cosmos-sdk 0.47
|
|
1246
|
+
* @name MsgUpdateParams
|
|
1247
|
+
* @package cosmos.staking.v1beta1
|
|
1248
|
+
* @see proto type: cosmos.staking.v1beta1.MsgUpdateParams
|
|
1249
|
+
*/
|
|
1163
1250
|
export const MsgUpdateParams = {
|
|
1164
1251
|
typeUrl: "/cosmos.staking.v1beta1.MsgUpdateParams",
|
|
1165
1252
|
aminoType: "cosmos-sdk/x/staking/MsgUpdateParams",
|
|
@@ -1251,6 +1338,15 @@ export const MsgUpdateParams = {
|
|
|
1251
1338
|
function createBaseMsgUpdateParamsResponse() {
|
|
1252
1339
|
return {};
|
|
1253
1340
|
}
|
|
1341
|
+
/**
|
|
1342
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
1343
|
+
* MsgUpdateParams message.
|
|
1344
|
+
*
|
|
1345
|
+
* Since: cosmos-sdk 0.47
|
|
1346
|
+
* @name MsgUpdateParamsResponse
|
|
1347
|
+
* @package cosmos.staking.v1beta1
|
|
1348
|
+
* @see proto type: cosmos.staking.v1beta1.MsgUpdateParamsResponse
|
|
1349
|
+
*/
|
|
1254
1350
|
export const MsgUpdateParamsResponse = {
|
|
1255
1351
|
typeUrl: "/cosmos.staking.v1beta1.MsgUpdateParamsResponse",
|
|
1256
1352
|
aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
|
|
@@ -1,38 +1,73 @@
|
|
|
1
1
|
import { buildTx } from "../../../helper-func-types";
|
|
2
2
|
import { MsgCreateValidator, MsgEditValidator, MsgDelegate, MsgBeginRedelegate, MsgUndelegate, MsgCancelUnbondingDelegation, MsgUpdateParams } from "./tx";
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* CreateValidator defines a method for creating a new validator.
|
|
5
|
+
* @name createValidator
|
|
6
|
+
* @package cosmos.staking.v1beta1
|
|
7
|
+
* @see proto service: cosmos.staking.v1beta1.CreateValidator
|
|
8
|
+
*/
|
|
4
9
|
export const createValidator = buildTx({
|
|
5
10
|
msg: MsgCreateValidator
|
|
6
11
|
});
|
|
7
|
-
|
|
12
|
+
/**
|
|
13
|
+
* EditValidator defines a method for editing an existing validator.
|
|
14
|
+
* @name editValidator
|
|
15
|
+
* @package cosmos.staking.v1beta1
|
|
16
|
+
* @see proto service: cosmos.staking.v1beta1.EditValidator
|
|
17
|
+
*/
|
|
8
18
|
export const editValidator = buildTx({
|
|
9
19
|
msg: MsgEditValidator
|
|
10
20
|
});
|
|
11
|
-
|
|
12
|
-
|
|
21
|
+
/**
|
|
22
|
+
* Delegate defines a method for performing a delegation of coins
|
|
23
|
+
* from a delegator to a validator.
|
|
24
|
+
* @name delegate
|
|
25
|
+
* @package cosmos.staking.v1beta1
|
|
26
|
+
* @see proto service: cosmos.staking.v1beta1.Delegate
|
|
27
|
+
*/
|
|
13
28
|
export const delegate = buildTx({
|
|
14
29
|
msg: MsgDelegate
|
|
15
30
|
});
|
|
16
|
-
|
|
17
|
-
|
|
31
|
+
/**
|
|
32
|
+
* BeginRedelegate defines a method for performing a redelegation
|
|
33
|
+
* of coins from a delegator and source validator to a destination validator.
|
|
34
|
+
* @name beginRedelegate
|
|
35
|
+
* @package cosmos.staking.v1beta1
|
|
36
|
+
* @see proto service: cosmos.staking.v1beta1.BeginRedelegate
|
|
37
|
+
*/
|
|
18
38
|
export const beginRedelegate = buildTx({
|
|
19
39
|
msg: MsgBeginRedelegate
|
|
20
40
|
});
|
|
21
|
-
|
|
22
|
-
|
|
41
|
+
/**
|
|
42
|
+
* Undelegate defines a method for performing an undelegation from a
|
|
43
|
+
* delegate and a validator.
|
|
44
|
+
* @name undelegate
|
|
45
|
+
* @package cosmos.staking.v1beta1
|
|
46
|
+
* @see proto service: cosmos.staking.v1beta1.Undelegate
|
|
47
|
+
*/
|
|
23
48
|
export const undelegate = buildTx({
|
|
24
49
|
msg: MsgUndelegate
|
|
25
50
|
});
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
51
|
+
/**
|
|
52
|
+
* CancelUnbondingDelegation defines a method for performing canceling the unbonding delegation
|
|
53
|
+
* and delegate back to previous validator.
|
|
54
|
+
*
|
|
55
|
+
* Since: cosmos-sdk 0.46
|
|
56
|
+
* @name cancelUnbondingDelegation
|
|
57
|
+
* @package cosmos.staking.v1beta1
|
|
58
|
+
* @see proto service: cosmos.staking.v1beta1.CancelUnbondingDelegation
|
|
59
|
+
*/
|
|
30
60
|
export const cancelUnbondingDelegation = buildTx({
|
|
31
61
|
msg: MsgCancelUnbondingDelegation
|
|
32
62
|
});
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
63
|
+
/**
|
|
64
|
+
* UpdateParams defines an operation for updating the x/staking module
|
|
65
|
+
* parameters.
|
|
66
|
+
* Since: cosmos-sdk 0.47
|
|
67
|
+
* @name updateParams
|
|
68
|
+
* @package cosmos.staking.v1beta1
|
|
69
|
+
* @see proto service: cosmos.staking.v1beta1.UpdateParams
|
|
70
|
+
*/
|
|
36
71
|
export const updateParams = buildTx({
|
|
37
72
|
msg: MsgUpdateParams
|
|
38
73
|
});
|
|
@@ -112,6 +112,12 @@ function createBaseSignatureDescriptors() {
|
|
|
112
112
|
signatures: []
|
|
113
113
|
};
|
|
114
114
|
}
|
|
115
|
+
/**
|
|
116
|
+
* SignatureDescriptors wraps multiple SignatureDescriptor's.
|
|
117
|
+
* @name SignatureDescriptors
|
|
118
|
+
* @package cosmos.tx.signing.v1beta1
|
|
119
|
+
* @see proto type: cosmos.tx.signing.v1beta1.SignatureDescriptors
|
|
120
|
+
*/
|
|
115
121
|
export const SignatureDescriptors = {
|
|
116
122
|
typeUrl: "/cosmos.tx.signing.v1beta1.SignatureDescriptors",
|
|
117
123
|
aminoType: "cosmos-sdk/SignatureDescriptors",
|
|
@@ -199,6 +205,15 @@ function createBaseSignatureDescriptor() {
|
|
|
199
205
|
sequence: BigInt(0)
|
|
200
206
|
};
|
|
201
207
|
}
|
|
208
|
+
/**
|
|
209
|
+
* SignatureDescriptor is a convenience type which represents the full data for
|
|
210
|
+
* a signature including the public key of the signer, signing modes and the
|
|
211
|
+
* signature itself. It is primarily used for coordinating signatures between
|
|
212
|
+
* clients.
|
|
213
|
+
* @name SignatureDescriptor
|
|
214
|
+
* @package cosmos.tx.signing.v1beta1
|
|
215
|
+
* @see proto type: cosmos.tx.signing.v1beta1.SignatureDescriptor
|
|
216
|
+
*/
|
|
202
217
|
export const SignatureDescriptor = {
|
|
203
218
|
typeUrl: "/cosmos.tx.signing.v1beta1.SignatureDescriptor",
|
|
204
219
|
aminoType: "cosmos-sdk/SignatureDescriptor",
|
|
@@ -304,6 +319,12 @@ function createBaseSignatureDescriptor_Data() {
|
|
|
304
319
|
multi: undefined
|
|
305
320
|
};
|
|
306
321
|
}
|
|
322
|
+
/**
|
|
323
|
+
* Data represents signature data
|
|
324
|
+
* @name SignatureDescriptor_Data
|
|
325
|
+
* @package cosmos.tx.signing.v1beta1
|
|
326
|
+
* @see proto type: cosmos.tx.signing.v1beta1.Data
|
|
327
|
+
*/
|
|
307
328
|
export const SignatureDescriptor_Data = {
|
|
308
329
|
typeUrl: "/cosmos.tx.signing.v1beta1.Data",
|
|
309
330
|
aminoType: "cosmos-sdk/Data",
|
|
@@ -399,6 +420,12 @@ function createBaseSignatureDescriptor_Data_Single() {
|
|
|
399
420
|
signature: new Uint8Array()
|
|
400
421
|
};
|
|
401
422
|
}
|
|
423
|
+
/**
|
|
424
|
+
* Single is the signature data for a single signer
|
|
425
|
+
* @name SignatureDescriptor_Data_Single
|
|
426
|
+
* @package cosmos.tx.signing.v1beta1
|
|
427
|
+
* @see proto type: cosmos.tx.signing.v1beta1.Single
|
|
428
|
+
*/
|
|
402
429
|
export const SignatureDescriptor_Data_Single = {
|
|
403
430
|
typeUrl: "/cosmos.tx.signing.v1beta1.Single",
|
|
404
431
|
aminoType: "cosmos-sdk/Single",
|
|
@@ -488,6 +515,12 @@ function createBaseSignatureDescriptor_Data_Multi() {
|
|
|
488
515
|
signatures: []
|
|
489
516
|
};
|
|
490
517
|
}
|
|
518
|
+
/**
|
|
519
|
+
* Multi is the signature data for a multisig public key
|
|
520
|
+
* @name SignatureDescriptor_Data_Multi
|
|
521
|
+
* @package cosmos.tx.signing.v1beta1
|
|
522
|
+
* @see proto type: cosmos.tx.signing.v1beta1.Multi
|
|
523
|
+
*/
|
|
491
524
|
export const SignatureDescriptor_Data_Multi = {
|
|
492
525
|
typeUrl: "/cosmos.tx.signing.v1beta1.Multi",
|
|
493
526
|
aminoType: "cosmos-sdk/Multi",
|
|
@@ -122,6 +122,13 @@ function createBaseGetTxsEventRequest() {
|
|
|
122
122
|
query: ""
|
|
123
123
|
};
|
|
124
124
|
}
|
|
125
|
+
/**
|
|
126
|
+
* GetTxsEventRequest is the request type for the Service.TxsByEvents
|
|
127
|
+
* RPC method.
|
|
128
|
+
* @name GetTxsEventRequest
|
|
129
|
+
* @package cosmos.tx.v1beta1
|
|
130
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxsEventRequest
|
|
131
|
+
*/
|
|
125
132
|
export const GetTxsEventRequest = {
|
|
126
133
|
typeUrl: "/cosmos.tx.v1beta1.GetTxsEventRequest",
|
|
127
134
|
aminoType: "cosmos-sdk/GetTxsEventRequest",
|
|
@@ -265,6 +272,13 @@ function createBaseGetTxsEventResponse() {
|
|
|
265
272
|
total: BigInt(0)
|
|
266
273
|
};
|
|
267
274
|
}
|
|
275
|
+
/**
|
|
276
|
+
* GetTxsEventResponse is the response type for the Service.TxsByEvents
|
|
277
|
+
* RPC method.
|
|
278
|
+
* @name GetTxsEventResponse
|
|
279
|
+
* @package cosmos.tx.v1beta1
|
|
280
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxsEventResponse
|
|
281
|
+
*/
|
|
268
282
|
export const GetTxsEventResponse = {
|
|
269
283
|
typeUrl: "/cosmos.tx.v1beta1.GetTxsEventResponse",
|
|
270
284
|
aminoType: "cosmos-sdk/GetTxsEventResponse",
|
|
@@ -389,6 +403,13 @@ function createBaseBroadcastTxRequest() {
|
|
|
389
403
|
mode: 0
|
|
390
404
|
};
|
|
391
405
|
}
|
|
406
|
+
/**
|
|
407
|
+
* BroadcastTxRequest is the request type for the Service.BroadcastTxRequest
|
|
408
|
+
* RPC method.
|
|
409
|
+
* @name BroadcastTxRequest
|
|
410
|
+
* @package cosmos.tx.v1beta1
|
|
411
|
+
* @see proto type: cosmos.tx.v1beta1.BroadcastTxRequest
|
|
412
|
+
*/
|
|
392
413
|
export const BroadcastTxRequest = {
|
|
393
414
|
typeUrl: "/cosmos.tx.v1beta1.BroadcastTxRequest",
|
|
394
415
|
aminoType: "cosmos-sdk/BroadcastTxRequest",
|
|
@@ -477,6 +498,13 @@ function createBaseBroadcastTxResponse() {
|
|
|
477
498
|
txResponse: undefined
|
|
478
499
|
};
|
|
479
500
|
}
|
|
501
|
+
/**
|
|
502
|
+
* BroadcastTxResponse is the response type for the
|
|
503
|
+
* Service.BroadcastTx method.
|
|
504
|
+
* @name BroadcastTxResponse
|
|
505
|
+
* @package cosmos.tx.v1beta1
|
|
506
|
+
* @see proto type: cosmos.tx.v1beta1.BroadcastTxResponse
|
|
507
|
+
*/
|
|
480
508
|
export const BroadcastTxResponse = {
|
|
481
509
|
typeUrl: "/cosmos.tx.v1beta1.BroadcastTxResponse",
|
|
482
510
|
aminoType: "cosmos-sdk/BroadcastTxResponse",
|
|
@@ -560,6 +588,13 @@ function createBaseSimulateRequest() {
|
|
|
560
588
|
txBytes: new Uint8Array()
|
|
561
589
|
};
|
|
562
590
|
}
|
|
591
|
+
/**
|
|
592
|
+
* SimulateRequest is the request type for the Service.Simulate
|
|
593
|
+
* RPC method.
|
|
594
|
+
* @name SimulateRequest
|
|
595
|
+
* @package cosmos.tx.v1beta1
|
|
596
|
+
* @see proto type: cosmos.tx.v1beta1.SimulateRequest
|
|
597
|
+
*/
|
|
563
598
|
export const SimulateRequest = {
|
|
564
599
|
typeUrl: "/cosmos.tx.v1beta1.SimulateRequest",
|
|
565
600
|
aminoType: "cosmos-sdk/SimulateRequest",
|
|
@@ -654,6 +689,13 @@ function createBaseSimulateResponse() {
|
|
|
654
689
|
result: undefined
|
|
655
690
|
};
|
|
656
691
|
}
|
|
692
|
+
/**
|
|
693
|
+
* SimulateResponse is the response type for the
|
|
694
|
+
* Service.SimulateRPC method.
|
|
695
|
+
* @name SimulateResponse
|
|
696
|
+
* @package cosmos.tx.v1beta1
|
|
697
|
+
* @see proto type: cosmos.tx.v1beta1.SimulateResponse
|
|
698
|
+
*/
|
|
657
699
|
export const SimulateResponse = {
|
|
658
700
|
typeUrl: "/cosmos.tx.v1beta1.SimulateResponse",
|
|
659
701
|
aminoType: "cosmos-sdk/SimulateResponse",
|
|
@@ -748,6 +790,13 @@ function createBaseGetTxRequest() {
|
|
|
748
790
|
hash: ""
|
|
749
791
|
};
|
|
750
792
|
}
|
|
793
|
+
/**
|
|
794
|
+
* GetTxRequest is the request type for the Service.GetTx
|
|
795
|
+
* RPC method.
|
|
796
|
+
* @name GetTxRequest
|
|
797
|
+
* @package cosmos.tx.v1beta1
|
|
798
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxRequest
|
|
799
|
+
*/
|
|
751
800
|
export const GetTxRequest = {
|
|
752
801
|
typeUrl: "/cosmos.tx.v1beta1.GetTxRequest",
|
|
753
802
|
aminoType: "cosmos-sdk/GetTxRequest",
|
|
@@ -826,6 +875,12 @@ function createBaseGetTxResponse() {
|
|
|
826
875
|
txResponse: undefined
|
|
827
876
|
};
|
|
828
877
|
}
|
|
878
|
+
/**
|
|
879
|
+
* GetTxResponse is the response type for the Service.GetTx method.
|
|
880
|
+
* @name GetTxResponse
|
|
881
|
+
* @package cosmos.tx.v1beta1
|
|
882
|
+
* @see proto type: cosmos.tx.v1beta1.GetTxResponse
|
|
883
|
+
*/
|
|
829
884
|
export const GetTxResponse = {
|
|
830
885
|
typeUrl: "/cosmos.tx.v1beta1.GetTxResponse",
|
|
831
886
|
aminoType: "cosmos-sdk/GetTxResponse",
|
|
@@ -921,6 +976,15 @@ function createBaseGetBlockWithTxsRequest() {
|
|
|
921
976
|
pagination: undefined
|
|
922
977
|
};
|
|
923
978
|
}
|
|
979
|
+
/**
|
|
980
|
+
* GetBlockWithTxsRequest is the request type for the Service.GetBlockWithTxs
|
|
981
|
+
* RPC method.
|
|
982
|
+
*
|
|
983
|
+
* Since: cosmos-sdk 0.45.2
|
|
984
|
+
* @name GetBlockWithTxsRequest
|
|
985
|
+
* @package cosmos.tx.v1beta1
|
|
986
|
+
* @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsRequest
|
|
987
|
+
*/
|
|
924
988
|
export const GetBlockWithTxsRequest = {
|
|
925
989
|
typeUrl: "/cosmos.tx.v1beta1.GetBlockWithTxsRequest",
|
|
926
990
|
aminoType: "cosmos-sdk/GetBlockWithTxsRequest",
|
|
@@ -1017,6 +1081,15 @@ function createBaseGetBlockWithTxsResponse() {
|
|
|
1017
1081
|
pagination: undefined
|
|
1018
1082
|
};
|
|
1019
1083
|
}
|
|
1084
|
+
/**
|
|
1085
|
+
* GetBlockWithTxsResponse is the response type for the Service.GetBlockWithTxs
|
|
1086
|
+
* method.
|
|
1087
|
+
*
|
|
1088
|
+
* Since: cosmos-sdk 0.45.2
|
|
1089
|
+
* @name GetBlockWithTxsResponse
|
|
1090
|
+
* @package cosmos.tx.v1beta1
|
|
1091
|
+
* @see proto type: cosmos.tx.v1beta1.GetBlockWithTxsResponse
|
|
1092
|
+
*/
|
|
1020
1093
|
export const GetBlockWithTxsResponse = {
|
|
1021
1094
|
typeUrl: "/cosmos.tx.v1beta1.GetBlockWithTxsResponse",
|
|
1022
1095
|
aminoType: "cosmos-sdk/GetBlockWithTxsResponse",
|
|
@@ -1138,6 +1211,15 @@ function createBaseTxDecodeRequest() {
|
|
|
1138
1211
|
txBytes: new Uint8Array()
|
|
1139
1212
|
};
|
|
1140
1213
|
}
|
|
1214
|
+
/**
|
|
1215
|
+
* TxDecodeRequest is the request type for the Service.TxDecode
|
|
1216
|
+
* RPC method.
|
|
1217
|
+
*
|
|
1218
|
+
* Since: cosmos-sdk 0.47
|
|
1219
|
+
* @name TxDecodeRequest
|
|
1220
|
+
* @package cosmos.tx.v1beta1
|
|
1221
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeRequest
|
|
1222
|
+
*/
|
|
1141
1223
|
export const TxDecodeRequest = {
|
|
1142
1224
|
typeUrl: "/cosmos.tx.v1beta1.TxDecodeRequest",
|
|
1143
1225
|
aminoType: "cosmos-sdk/TxDecodeRequest",
|
|
@@ -1215,6 +1297,15 @@ function createBaseTxDecodeResponse() {
|
|
|
1215
1297
|
tx: undefined
|
|
1216
1298
|
};
|
|
1217
1299
|
}
|
|
1300
|
+
/**
|
|
1301
|
+
* TxDecodeResponse is the response type for the
|
|
1302
|
+
* Service.TxDecode method.
|
|
1303
|
+
*
|
|
1304
|
+
* Since: cosmos-sdk 0.47
|
|
1305
|
+
* @name TxDecodeResponse
|
|
1306
|
+
* @package cosmos.tx.v1beta1
|
|
1307
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeResponse
|
|
1308
|
+
*/
|
|
1218
1309
|
export const TxDecodeResponse = {
|
|
1219
1310
|
typeUrl: "/cosmos.tx.v1beta1.TxDecodeResponse",
|
|
1220
1311
|
aminoType: "cosmos-sdk/TxDecodeResponse",
|
|
@@ -1297,6 +1388,15 @@ function createBaseTxEncodeRequest() {
|
|
|
1297
1388
|
tx: undefined
|
|
1298
1389
|
};
|
|
1299
1390
|
}
|
|
1391
|
+
/**
|
|
1392
|
+
* TxEncodeRequest is the request type for the Service.TxEncode
|
|
1393
|
+
* RPC method.
|
|
1394
|
+
*
|
|
1395
|
+
* Since: cosmos-sdk 0.47
|
|
1396
|
+
* @name TxEncodeRequest
|
|
1397
|
+
* @package cosmos.tx.v1beta1
|
|
1398
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeRequest
|
|
1399
|
+
*/
|
|
1300
1400
|
export const TxEncodeRequest = {
|
|
1301
1401
|
typeUrl: "/cosmos.tx.v1beta1.TxEncodeRequest",
|
|
1302
1402
|
aminoType: "cosmos-sdk/TxEncodeRequest",
|
|
@@ -1379,6 +1479,15 @@ function createBaseTxEncodeResponse() {
|
|
|
1379
1479
|
txBytes: new Uint8Array()
|
|
1380
1480
|
};
|
|
1381
1481
|
}
|
|
1482
|
+
/**
|
|
1483
|
+
* TxEncodeResponse is the response type for the
|
|
1484
|
+
* Service.TxEncode method.
|
|
1485
|
+
*
|
|
1486
|
+
* Since: cosmos-sdk 0.47
|
|
1487
|
+
* @name TxEncodeResponse
|
|
1488
|
+
* @package cosmos.tx.v1beta1
|
|
1489
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeResponse
|
|
1490
|
+
*/
|
|
1382
1491
|
export const TxEncodeResponse = {
|
|
1383
1492
|
typeUrl: "/cosmos.tx.v1beta1.TxEncodeResponse",
|
|
1384
1493
|
aminoType: "cosmos-sdk/TxEncodeResponse",
|
|
@@ -1456,6 +1565,15 @@ function createBaseTxEncodeAminoRequest() {
|
|
|
1456
1565
|
aminoJson: ""
|
|
1457
1566
|
};
|
|
1458
1567
|
}
|
|
1568
|
+
/**
|
|
1569
|
+
* TxEncodeAminoRequest is the request type for the Service.TxEncodeAmino
|
|
1570
|
+
* RPC method.
|
|
1571
|
+
*
|
|
1572
|
+
* Since: cosmos-sdk 0.47
|
|
1573
|
+
* @name TxEncodeAminoRequest
|
|
1574
|
+
* @package cosmos.tx.v1beta1
|
|
1575
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeAminoRequest
|
|
1576
|
+
*/
|
|
1459
1577
|
export const TxEncodeAminoRequest = {
|
|
1460
1578
|
typeUrl: "/cosmos.tx.v1beta1.TxEncodeAminoRequest",
|
|
1461
1579
|
aminoType: "cosmos-sdk/TxEncodeAminoRequest",
|
|
@@ -1533,6 +1651,15 @@ function createBaseTxEncodeAminoResponse() {
|
|
|
1533
1651
|
aminoBinary: new Uint8Array()
|
|
1534
1652
|
};
|
|
1535
1653
|
}
|
|
1654
|
+
/**
|
|
1655
|
+
* TxEncodeAminoResponse is the response type for the Service.TxEncodeAmino
|
|
1656
|
+
* RPC method.
|
|
1657
|
+
*
|
|
1658
|
+
* Since: cosmos-sdk 0.47
|
|
1659
|
+
* @name TxEncodeAminoResponse
|
|
1660
|
+
* @package cosmos.tx.v1beta1
|
|
1661
|
+
* @see proto type: cosmos.tx.v1beta1.TxEncodeAminoResponse
|
|
1662
|
+
*/
|
|
1536
1663
|
export const TxEncodeAminoResponse = {
|
|
1537
1664
|
typeUrl: "/cosmos.tx.v1beta1.TxEncodeAminoResponse",
|
|
1538
1665
|
aminoType: "cosmos-sdk/TxEncodeAminoResponse",
|
|
@@ -1610,6 +1737,15 @@ function createBaseTxDecodeAminoRequest() {
|
|
|
1610
1737
|
aminoBinary: new Uint8Array()
|
|
1611
1738
|
};
|
|
1612
1739
|
}
|
|
1740
|
+
/**
|
|
1741
|
+
* TxDecodeAminoRequest is the request type for the Service.TxDecodeAmino
|
|
1742
|
+
* RPC method.
|
|
1743
|
+
*
|
|
1744
|
+
* Since: cosmos-sdk 0.47
|
|
1745
|
+
* @name TxDecodeAminoRequest
|
|
1746
|
+
* @package cosmos.tx.v1beta1
|
|
1747
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeAminoRequest
|
|
1748
|
+
*/
|
|
1613
1749
|
export const TxDecodeAminoRequest = {
|
|
1614
1750
|
typeUrl: "/cosmos.tx.v1beta1.TxDecodeAminoRequest",
|
|
1615
1751
|
aminoType: "cosmos-sdk/TxDecodeAminoRequest",
|
|
@@ -1687,6 +1823,15 @@ function createBaseTxDecodeAminoResponse() {
|
|
|
1687
1823
|
aminoJson: ""
|
|
1688
1824
|
};
|
|
1689
1825
|
}
|
|
1826
|
+
/**
|
|
1827
|
+
* TxDecodeAminoResponse is the response type for the Service.TxDecodeAmino
|
|
1828
|
+
* RPC method.
|
|
1829
|
+
*
|
|
1830
|
+
* Since: cosmos-sdk 0.47
|
|
1831
|
+
* @name TxDecodeAminoResponse
|
|
1832
|
+
* @package cosmos.tx.v1beta1
|
|
1833
|
+
* @see proto type: cosmos.tx.v1beta1.TxDecodeAminoResponse
|
|
1834
|
+
*/
|
|
1690
1835
|
export const TxDecodeAminoResponse = {
|
|
1691
1836
|
typeUrl: "/cosmos.tx.v1beta1.TxDecodeAminoResponse",
|
|
1692
1837
|
aminoType: "cosmos-sdk/TxDecodeAminoResponse",
|