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
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { buildQuery } from "../../../helper-func-types";
|
|
2
2
|
import { QueryBalanceRequest, QueryBalanceResponse, QueryAllBalancesRequest, QueryAllBalancesResponse, QuerySpendableBalancesRequest, QuerySpendableBalancesResponse, QuerySpendableBalanceByDenomRequest, QuerySpendableBalanceByDenomResponse, QueryTotalSupplyRequest, QueryTotalSupplyResponse, QuerySupplyOfRequest, QuerySupplyOfResponse, QueryParamsRequest, QueryParamsResponse, QueryDenomMetadataRequest, QueryDenomMetadataResponse, QueryDenomMetadataByQueryStringRequest, QueryDenomMetadataByQueryStringResponse, QueryDenomsMetadataRequest, QueryDenomsMetadataResponse, QueryDenomOwnersRequest, QueryDenomOwnersResponse, QueryDenomOwnersByQueryRequest, QueryDenomOwnersByQueryResponse, QuerySendEnabledRequest, QuerySendEnabledResponse } from "./query";
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* Balance queries the balance of a single coin for a single account.
|
|
5
|
+
* @name getBalance
|
|
6
|
+
* @package cosmos.bank.v1beta1
|
|
7
|
+
* @see proto service: cosmos.bank.v1beta1.Balance
|
|
8
|
+
*/
|
|
4
9
|
export const getBalance = buildQuery({
|
|
5
10
|
encode: QueryBalanceRequest.encode,
|
|
6
11
|
decode: QueryBalanceResponse.decode,
|
|
@@ -8,10 +13,15 @@ export const getBalance = buildQuery({
|
|
|
8
13
|
method: "Balance",
|
|
9
14
|
deps: [QueryBalanceRequest, QueryBalanceResponse]
|
|
10
15
|
});
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
16
|
+
/**
|
|
17
|
+
* AllBalances queries the balance of all coins for a single account.
|
|
18
|
+
*
|
|
19
|
+
* When called from another module, this query might consume a high amount of
|
|
20
|
+
* gas if the pagination field is incorrectly set.
|
|
21
|
+
* @name getAllBalances
|
|
22
|
+
* @package cosmos.bank.v1beta1
|
|
23
|
+
* @see proto service: cosmos.bank.v1beta1.AllBalances
|
|
24
|
+
*/
|
|
15
25
|
export const getAllBalances = buildQuery({
|
|
16
26
|
encode: QueryAllBalancesRequest.encode,
|
|
17
27
|
decode: QueryAllBalancesResponse.decode,
|
|
@@ -19,13 +29,18 @@ export const getAllBalances = buildQuery({
|
|
|
19
29
|
method: "AllBalances",
|
|
20
30
|
deps: [QueryAllBalancesRequest, QueryAllBalancesResponse]
|
|
21
31
|
});
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
32
|
+
/**
|
|
33
|
+
* SpendableBalances queries the spendable balance of all coins for a single
|
|
34
|
+
* account.
|
|
35
|
+
*
|
|
36
|
+
* When called from another module, this query might consume a high amount of
|
|
37
|
+
* gas if the pagination field is incorrectly set.
|
|
38
|
+
*
|
|
39
|
+
* Since: cosmos-sdk 0.46
|
|
40
|
+
* @name getSpendableBalances
|
|
41
|
+
* @package cosmos.bank.v1beta1
|
|
42
|
+
* @see proto service: cosmos.bank.v1beta1.SpendableBalances
|
|
43
|
+
*/
|
|
29
44
|
export const getSpendableBalances = buildQuery({
|
|
30
45
|
encode: QuerySpendableBalancesRequest.encode,
|
|
31
46
|
decode: QuerySpendableBalancesResponse.decode,
|
|
@@ -33,13 +48,18 @@ export const getSpendableBalances = buildQuery({
|
|
|
33
48
|
method: "SpendableBalances",
|
|
34
49
|
deps: [QuerySpendableBalancesRequest, QuerySpendableBalancesResponse]
|
|
35
50
|
});
|
|
36
|
-
|
|
37
|
-
a single
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
51
|
+
/**
|
|
52
|
+
* SpendableBalanceByDenom queries the spendable balance of a single denom for
|
|
53
|
+
* a single account.
|
|
54
|
+
*
|
|
55
|
+
* When called from another module, this query might consume a high amount of
|
|
56
|
+
* gas if the pagination field is incorrectly set.
|
|
57
|
+
*
|
|
58
|
+
* Since: cosmos-sdk 0.47
|
|
59
|
+
* @name getSpendableBalanceByDenom
|
|
60
|
+
* @package cosmos.bank.v1beta1
|
|
61
|
+
* @see proto service: cosmos.bank.v1beta1.SpendableBalanceByDenom
|
|
62
|
+
*/
|
|
43
63
|
export const getSpendableBalanceByDenom = buildQuery({
|
|
44
64
|
encode: QuerySpendableBalanceByDenomRequest.encode,
|
|
45
65
|
decode: QuerySpendableBalanceByDenomResponse.decode,
|
|
@@ -47,10 +67,15 @@ export const getSpendableBalanceByDenom = buildQuery({
|
|
|
47
67
|
method: "SpendableBalanceByDenom",
|
|
48
68
|
deps: [QuerySpendableBalanceByDenomRequest, QuerySpendableBalanceByDenomResponse]
|
|
49
69
|
});
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
70
|
+
/**
|
|
71
|
+
* TotalSupply queries the total supply of all coins.
|
|
72
|
+
*
|
|
73
|
+
* When called from another module, this query might consume a high amount of
|
|
74
|
+
* gas if the pagination field is incorrectly set.
|
|
75
|
+
* @name getTotalSupply
|
|
76
|
+
* @package cosmos.bank.v1beta1
|
|
77
|
+
* @see proto service: cosmos.bank.v1beta1.TotalSupply
|
|
78
|
+
*/
|
|
54
79
|
export const getTotalSupply = buildQuery({
|
|
55
80
|
encode: QueryTotalSupplyRequest.encode,
|
|
56
81
|
decode: QueryTotalSupplyResponse.decode,
|
|
@@ -58,10 +83,15 @@ export const getTotalSupply = buildQuery({
|
|
|
58
83
|
method: "TotalSupply",
|
|
59
84
|
deps: [QueryTotalSupplyRequest, QueryTotalSupplyResponse]
|
|
60
85
|
});
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
86
|
+
/**
|
|
87
|
+
* SupplyOf queries the supply of a single coin.
|
|
88
|
+
*
|
|
89
|
+
* When called from another module, this query might consume a high amount of
|
|
90
|
+
* gas if the pagination field is incorrectly set.
|
|
91
|
+
* @name getSupplyOf
|
|
92
|
+
* @package cosmos.bank.v1beta1
|
|
93
|
+
* @see proto service: cosmos.bank.v1beta1.SupplyOf
|
|
94
|
+
*/
|
|
65
95
|
export const getSupplyOf = buildQuery({
|
|
66
96
|
encode: QuerySupplyOfRequest.encode,
|
|
67
97
|
decode: QuerySupplyOfResponse.decode,
|
|
@@ -69,7 +99,12 @@ export const getSupplyOf = buildQuery({
|
|
|
69
99
|
method: "SupplyOf",
|
|
70
100
|
deps: [QuerySupplyOfRequest, QuerySupplyOfResponse]
|
|
71
101
|
});
|
|
72
|
-
|
|
102
|
+
/**
|
|
103
|
+
* Params queries the parameters of x/bank module.
|
|
104
|
+
* @name getParams
|
|
105
|
+
* @package cosmos.bank.v1beta1
|
|
106
|
+
* @see proto service: cosmos.bank.v1beta1.Params
|
|
107
|
+
*/
|
|
73
108
|
export const getParams = buildQuery({
|
|
74
109
|
encode: QueryParamsRequest.encode,
|
|
75
110
|
decode: QueryParamsResponse.decode,
|
|
@@ -77,7 +112,12 @@ export const getParams = buildQuery({
|
|
|
77
112
|
method: "Params",
|
|
78
113
|
deps: [QueryParamsRequest, QueryParamsResponse]
|
|
79
114
|
});
|
|
80
|
-
|
|
115
|
+
/**
|
|
116
|
+
* DenomMetadata queries the client metadata of a given coin denomination.
|
|
117
|
+
* @name getDenomMetadata
|
|
118
|
+
* @package cosmos.bank.v1beta1
|
|
119
|
+
* @see proto service: cosmos.bank.v1beta1.DenomMetadata
|
|
120
|
+
*/
|
|
81
121
|
export const getDenomMetadata = buildQuery({
|
|
82
122
|
encode: QueryDenomMetadataRequest.encode,
|
|
83
123
|
decode: QueryDenomMetadataResponse.decode,
|
|
@@ -85,7 +125,12 @@ export const getDenomMetadata = buildQuery({
|
|
|
85
125
|
method: "DenomMetadata",
|
|
86
126
|
deps: [QueryDenomMetadataRequest, QueryDenomMetadataResponse]
|
|
87
127
|
});
|
|
88
|
-
|
|
128
|
+
/**
|
|
129
|
+
* DenomMetadataByQueryString queries the client metadata of a given coin denomination.
|
|
130
|
+
* @name getDenomMetadataByQueryString
|
|
131
|
+
* @package cosmos.bank.v1beta1
|
|
132
|
+
* @see proto service: cosmos.bank.v1beta1.DenomMetadataByQueryString
|
|
133
|
+
*/
|
|
89
134
|
export const getDenomMetadataByQueryString = buildQuery({
|
|
90
135
|
encode: QueryDenomMetadataByQueryStringRequest.encode,
|
|
91
136
|
decode: QueryDenomMetadataByQueryStringResponse.decode,
|
|
@@ -93,8 +138,13 @@ export const getDenomMetadataByQueryString = buildQuery({
|
|
|
93
138
|
method: "DenomMetadataByQueryString",
|
|
94
139
|
deps: [QueryDenomMetadataByQueryStringRequest, QueryDenomMetadataByQueryStringResponse]
|
|
95
140
|
});
|
|
96
|
-
|
|
97
|
-
|
|
141
|
+
/**
|
|
142
|
+
* DenomsMetadata queries the client metadata for all registered coin
|
|
143
|
+
* denominations.
|
|
144
|
+
* @name getDenomsMetadata
|
|
145
|
+
* @package cosmos.bank.v1beta1
|
|
146
|
+
* @see proto service: cosmos.bank.v1beta1.DenomsMetadata
|
|
147
|
+
*/
|
|
98
148
|
export const getDenomsMetadata = buildQuery({
|
|
99
149
|
encode: QueryDenomsMetadataRequest.encode,
|
|
100
150
|
decode: QueryDenomsMetadataResponse.decode,
|
|
@@ -102,13 +152,18 @@ export const getDenomsMetadata = buildQuery({
|
|
|
102
152
|
method: "DenomsMetadata",
|
|
103
153
|
deps: [QueryDenomsMetadataRequest, QueryDenomsMetadataResponse]
|
|
104
154
|
});
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
155
|
+
/**
|
|
156
|
+
* DenomOwners queries for all account addresses that own a particular token
|
|
157
|
+
* denomination.
|
|
158
|
+
*
|
|
159
|
+
* When called from another module, this query might consume a high amount of
|
|
160
|
+
* gas if the pagination field is incorrectly set.
|
|
161
|
+
*
|
|
162
|
+
* Since: cosmos-sdk 0.46
|
|
163
|
+
* @name getDenomOwners
|
|
164
|
+
* @package cosmos.bank.v1beta1
|
|
165
|
+
* @see proto service: cosmos.bank.v1beta1.DenomOwners
|
|
166
|
+
*/
|
|
112
167
|
export const getDenomOwners = buildQuery({
|
|
113
168
|
encode: QueryDenomOwnersRequest.encode,
|
|
114
169
|
decode: QueryDenomOwnersResponse.decode,
|
|
@@ -116,10 +171,15 @@ export const getDenomOwners = buildQuery({
|
|
|
116
171
|
method: "DenomOwners",
|
|
117
172
|
deps: [QueryDenomOwnersRequest, QueryDenomOwnersResponse]
|
|
118
173
|
});
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
174
|
+
/**
|
|
175
|
+
* DenomOwnersByQuery queries for all account addresses that own a particular token
|
|
176
|
+
* denomination.
|
|
177
|
+
*
|
|
178
|
+
* Since: cosmos-sdk 0.50.3
|
|
179
|
+
* @name getDenomOwnersByQuery
|
|
180
|
+
* @package cosmos.bank.v1beta1
|
|
181
|
+
* @see proto service: cosmos.bank.v1beta1.DenomOwnersByQuery
|
|
182
|
+
*/
|
|
123
183
|
export const getDenomOwnersByQuery = buildQuery({
|
|
124
184
|
encode: QueryDenomOwnersByQueryRequest.encode,
|
|
125
185
|
decode: QueryDenomOwnersByQueryResponse.decode,
|
|
@@ -127,13 +187,18 @@ export const getDenomOwnersByQuery = buildQuery({
|
|
|
127
187
|
method: "DenomOwnersByQuery",
|
|
128
188
|
deps: [QueryDenomOwnersByQueryRequest, QueryDenomOwnersByQueryResponse]
|
|
129
189
|
});
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
190
|
+
/**
|
|
191
|
+
* SendEnabled queries for SendEnabled entries.
|
|
192
|
+
*
|
|
193
|
+
* This query only returns denominations that have specific SendEnabled settings.
|
|
194
|
+
* Any denomination that does not have a specific setting will use the default
|
|
195
|
+
* params.default_send_enabled, and will not be returned by this query.
|
|
196
|
+
*
|
|
197
|
+
* Since: cosmos-sdk 0.47
|
|
198
|
+
* @name getSendEnabled
|
|
199
|
+
* @package cosmos.bank.v1beta1
|
|
200
|
+
* @see proto service: cosmos.bank.v1beta1.SendEnabled
|
|
201
|
+
*/
|
|
137
202
|
export const getSendEnabled = buildQuery({
|
|
138
203
|
encode: QuerySendEnabledRequest.encode,
|
|
139
204
|
decode: QuerySendEnabledResponse.decode,
|
|
@@ -9,6 +9,12 @@ function createBaseMsgSend() {
|
|
|
9
9
|
amount: []
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* MsgSend represents a message to send coins from one account to another.
|
|
14
|
+
* @name MsgSend
|
|
15
|
+
* @package cosmos.bank.v1beta1
|
|
16
|
+
* @see proto type: cosmos.bank.v1beta1.MsgSend
|
|
17
|
+
*/
|
|
12
18
|
export const MsgSend = {
|
|
13
19
|
typeUrl: "/cosmos.bank.v1beta1.MsgSend",
|
|
14
20
|
aminoType: "cosmos-sdk/MsgSend",
|
|
@@ -114,6 +120,12 @@ export const MsgSend = {
|
|
|
114
120
|
function createBaseMsgSendResponse() {
|
|
115
121
|
return {};
|
|
116
122
|
}
|
|
123
|
+
/**
|
|
124
|
+
* MsgSendResponse defines the Msg/Send response type.
|
|
125
|
+
* @name MsgSendResponse
|
|
126
|
+
* @package cosmos.bank.v1beta1
|
|
127
|
+
* @see proto type: cosmos.bank.v1beta1.MsgSendResponse
|
|
128
|
+
*/
|
|
117
129
|
export const MsgSendResponse = {
|
|
118
130
|
typeUrl: "/cosmos.bank.v1beta1.MsgSendResponse",
|
|
119
131
|
aminoType: "cosmos-sdk/MsgSendResponse",
|
|
@@ -181,6 +193,12 @@ function createBaseMsgMultiSend() {
|
|
|
181
193
|
outputs: []
|
|
182
194
|
};
|
|
183
195
|
}
|
|
196
|
+
/**
|
|
197
|
+
* MsgMultiSend represents an arbitrary multi-in, multi-out send message.
|
|
198
|
+
* @name MsgMultiSend
|
|
199
|
+
* @package cosmos.bank.v1beta1
|
|
200
|
+
* @see proto type: cosmos.bank.v1beta1.MsgMultiSend
|
|
201
|
+
*/
|
|
184
202
|
export const MsgMultiSend = {
|
|
185
203
|
typeUrl: "/cosmos.bank.v1beta1.MsgMultiSend",
|
|
186
204
|
aminoType: "cosmos-sdk/MsgMultiSend",
|
|
@@ -279,6 +297,12 @@ export const MsgMultiSend = {
|
|
|
279
297
|
function createBaseMsgMultiSendResponse() {
|
|
280
298
|
return {};
|
|
281
299
|
}
|
|
300
|
+
/**
|
|
301
|
+
* MsgMultiSendResponse defines the Msg/MultiSend response type.
|
|
302
|
+
* @name MsgMultiSendResponse
|
|
303
|
+
* @package cosmos.bank.v1beta1
|
|
304
|
+
* @see proto type: cosmos.bank.v1beta1.MsgMultiSendResponse
|
|
305
|
+
*/
|
|
282
306
|
export const MsgMultiSendResponse = {
|
|
283
307
|
typeUrl: "/cosmos.bank.v1beta1.MsgMultiSendResponse",
|
|
284
308
|
aminoType: "cosmos-sdk/MsgMultiSendResponse",
|
|
@@ -346,6 +370,14 @@ function createBaseMsgUpdateParams() {
|
|
|
346
370
|
params: Params.fromPartial({})
|
|
347
371
|
};
|
|
348
372
|
}
|
|
373
|
+
/**
|
|
374
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
375
|
+
*
|
|
376
|
+
* Since: cosmos-sdk 0.47
|
|
377
|
+
* @name MsgUpdateParams
|
|
378
|
+
* @package cosmos.bank.v1beta1
|
|
379
|
+
* @see proto type: cosmos.bank.v1beta1.MsgUpdateParams
|
|
380
|
+
*/
|
|
349
381
|
export const MsgUpdateParams = {
|
|
350
382
|
typeUrl: "/cosmos.bank.v1beta1.MsgUpdateParams",
|
|
351
383
|
aminoType: "cosmos-sdk/x/bank/MsgUpdateParams",
|
|
@@ -437,6 +469,15 @@ export const MsgUpdateParams = {
|
|
|
437
469
|
function createBaseMsgUpdateParamsResponse() {
|
|
438
470
|
return {};
|
|
439
471
|
}
|
|
472
|
+
/**
|
|
473
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
474
|
+
* MsgUpdateParams message.
|
|
475
|
+
*
|
|
476
|
+
* Since: cosmos-sdk 0.47
|
|
477
|
+
* @name MsgUpdateParamsResponse
|
|
478
|
+
* @package cosmos.bank.v1beta1
|
|
479
|
+
* @see proto type: cosmos.bank.v1beta1.MsgUpdateParamsResponse
|
|
480
|
+
*/
|
|
440
481
|
export const MsgUpdateParamsResponse = {
|
|
441
482
|
typeUrl: "/cosmos.bank.v1beta1.MsgUpdateParamsResponse",
|
|
442
483
|
aminoType: "cosmos-sdk/MsgUpdateParamsResponse",
|
|
@@ -505,6 +546,18 @@ function createBaseMsgSetSendEnabled() {
|
|
|
505
546
|
useDefaultFor: []
|
|
506
547
|
};
|
|
507
548
|
}
|
|
549
|
+
/**
|
|
550
|
+
* MsgSetSendEnabled is the Msg/SetSendEnabled request type.
|
|
551
|
+
*
|
|
552
|
+
* Only entries to add/update/delete need to be included.
|
|
553
|
+
* Existing SendEnabled entries that are not included in this
|
|
554
|
+
* message are left unchanged.
|
|
555
|
+
*
|
|
556
|
+
* Since: cosmos-sdk 0.47
|
|
557
|
+
* @name MsgSetSendEnabled
|
|
558
|
+
* @package cosmos.bank.v1beta1
|
|
559
|
+
* @see proto type: cosmos.bank.v1beta1.MsgSetSendEnabled
|
|
560
|
+
*/
|
|
508
561
|
export const MsgSetSendEnabled = {
|
|
509
562
|
typeUrl: "/cosmos.bank.v1beta1.MsgSetSendEnabled",
|
|
510
563
|
aminoType: "cosmos-sdk/MsgSetSendEnabled",
|
|
@@ -613,6 +666,14 @@ export const MsgSetSendEnabled = {
|
|
|
613
666
|
function createBaseMsgSetSendEnabledResponse() {
|
|
614
667
|
return {};
|
|
615
668
|
}
|
|
669
|
+
/**
|
|
670
|
+
* MsgSetSendEnabledResponse defines the Msg/SetSendEnabled response type.
|
|
671
|
+
*
|
|
672
|
+
* Since: cosmos-sdk 0.47
|
|
673
|
+
* @name MsgSetSendEnabledResponse
|
|
674
|
+
* @package cosmos.bank.v1beta1
|
|
675
|
+
* @see proto type: cosmos.bank.v1beta1.MsgSetSendEnabledResponse
|
|
676
|
+
*/
|
|
616
677
|
export const MsgSetSendEnabledResponse = {
|
|
617
678
|
typeUrl: "/cosmos.bank.v1beta1.MsgSetSendEnabledResponse",
|
|
618
679
|
aminoType: "cosmos-sdk/MsgSetSendEnabledResponse",
|
|
@@ -1,26 +1,46 @@
|
|
|
1
1
|
import { buildTx } from "../../../helper-func-types";
|
|
2
2
|
import { MsgSend, MsgMultiSend, MsgUpdateParams, MsgSetSendEnabled } from "./tx";
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* Send defines a method for sending coins from one account to another account.
|
|
5
|
+
* @name send
|
|
6
|
+
* @package cosmos.bank.v1beta1
|
|
7
|
+
* @see proto service: cosmos.bank.v1beta1.Send
|
|
8
|
+
*/
|
|
4
9
|
export const send = buildTx({
|
|
5
10
|
msg: MsgSend
|
|
6
11
|
});
|
|
7
|
-
|
|
12
|
+
/**
|
|
13
|
+
* MultiSend defines a method for sending coins from some accounts to other accounts.
|
|
14
|
+
* @name multiSend
|
|
15
|
+
* @package cosmos.bank.v1beta1
|
|
16
|
+
* @see proto service: cosmos.bank.v1beta1.MultiSend
|
|
17
|
+
*/
|
|
8
18
|
export const multiSend = buildTx({
|
|
9
19
|
msg: MsgMultiSend
|
|
10
20
|
});
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
21
|
+
/**
|
|
22
|
+
* UpdateParams defines a governance operation for updating the x/bank module parameters.
|
|
23
|
+
* The authority is defined in the keeper.
|
|
24
|
+
*
|
|
25
|
+
* Since: cosmos-sdk 0.47
|
|
26
|
+
* @name updateParams
|
|
27
|
+
* @package cosmos.bank.v1beta1
|
|
28
|
+
* @see proto service: cosmos.bank.v1beta1.UpdateParams
|
|
29
|
+
*/
|
|
15
30
|
export const updateParams = buildTx({
|
|
16
31
|
msg: MsgUpdateParams
|
|
17
32
|
});
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
included in
|
|
22
|
-
|
|
23
|
-
|
|
33
|
+
/**
|
|
34
|
+
* SetSendEnabled is a governance operation for setting the SendEnabled flag
|
|
35
|
+
* on any number of Denoms. Only the entries to add or update should be
|
|
36
|
+
* included. Entries that already exist in the store, but that aren't
|
|
37
|
+
* included in this message, will be left unchanged.
|
|
38
|
+
*
|
|
39
|
+
* Since: cosmos-sdk 0.47
|
|
40
|
+
* @name setSendEnabled
|
|
41
|
+
* @package cosmos.bank.v1beta1
|
|
42
|
+
* @see proto service: cosmos.bank.v1beta1.SetSendEnabled
|
|
43
|
+
*/
|
|
24
44
|
export const setSendEnabled = buildTx({
|
|
25
45
|
msg: MsgSetSendEnabled
|
|
26
46
|
});
|
|
@@ -21,6 +21,13 @@ function createBaseTxResponse() {
|
|
|
21
21
|
events: []
|
|
22
22
|
};
|
|
23
23
|
}
|
|
24
|
+
/**
|
|
25
|
+
* TxResponse defines a structure containing relevant tx data and metadata. The
|
|
26
|
+
* tags are stringified and the log is JSON decoded.
|
|
27
|
+
* @name TxResponse
|
|
28
|
+
* @package cosmos.base.abci.v1beta1
|
|
29
|
+
* @see proto type: cosmos.base.abci.v1beta1.TxResponse
|
|
30
|
+
*/
|
|
24
31
|
export const TxResponse = {
|
|
25
32
|
typeUrl: "/cosmos.base.abci.v1beta1.TxResponse",
|
|
26
33
|
aminoType: "cosmos-sdk/TxResponse",
|
|
@@ -243,6 +250,12 @@ function createBaseABCIMessageLog() {
|
|
|
243
250
|
events: []
|
|
244
251
|
};
|
|
245
252
|
}
|
|
253
|
+
/**
|
|
254
|
+
* ABCIMessageLog defines a structure containing an indexed tx ABCI message log.
|
|
255
|
+
* @name ABCIMessageLog
|
|
256
|
+
* @package cosmos.base.abci.v1beta1
|
|
257
|
+
* @see proto type: cosmos.base.abci.v1beta1.ABCIMessageLog
|
|
258
|
+
*/
|
|
246
259
|
export const ABCIMessageLog = {
|
|
247
260
|
typeUrl: "/cosmos.base.abci.v1beta1.ABCIMessageLog",
|
|
248
261
|
aminoType: "cosmos-sdk/ABCIMessageLog",
|
|
@@ -351,6 +364,13 @@ function createBaseStringEvent() {
|
|
|
351
364
|
attributes: []
|
|
352
365
|
};
|
|
353
366
|
}
|
|
367
|
+
/**
|
|
368
|
+
* StringEvent defines en Event object wrapper where all the attributes
|
|
369
|
+
* contain key/value pairs that are strings instead of raw bytes.
|
|
370
|
+
* @name StringEvent
|
|
371
|
+
* @package cosmos.base.abci.v1beta1
|
|
372
|
+
* @see proto type: cosmos.base.abci.v1beta1.StringEvent
|
|
373
|
+
*/
|
|
354
374
|
export const StringEvent = {
|
|
355
375
|
typeUrl: "/cosmos.base.abci.v1beta1.StringEvent",
|
|
356
376
|
aminoType: "cosmos-sdk/StringEvent",
|
|
@@ -448,6 +468,13 @@ function createBaseAttribute() {
|
|
|
448
468
|
value: ""
|
|
449
469
|
};
|
|
450
470
|
}
|
|
471
|
+
/**
|
|
472
|
+
* Attribute defines an attribute wrapper where the key and value are
|
|
473
|
+
* strings instead of raw bytes.
|
|
474
|
+
* @name Attribute
|
|
475
|
+
* @package cosmos.base.abci.v1beta1
|
|
476
|
+
* @see proto type: cosmos.base.abci.v1beta1.Attribute
|
|
477
|
+
*/
|
|
451
478
|
export const Attribute = {
|
|
452
479
|
typeUrl: "/cosmos.base.abci.v1beta1.Attribute",
|
|
453
480
|
aminoType: "cosmos-sdk/Attribute",
|
|
@@ -537,6 +564,12 @@ function createBaseGasInfo() {
|
|
|
537
564
|
gasUsed: BigInt(0)
|
|
538
565
|
};
|
|
539
566
|
}
|
|
567
|
+
/**
|
|
568
|
+
* GasInfo defines tx execution gas context.
|
|
569
|
+
* @name GasInfo
|
|
570
|
+
* @package cosmos.base.abci.v1beta1
|
|
571
|
+
* @see proto type: cosmos.base.abci.v1beta1.GasInfo
|
|
572
|
+
*/
|
|
540
573
|
export const GasInfo = {
|
|
541
574
|
typeUrl: "/cosmos.base.abci.v1beta1.GasInfo",
|
|
542
575
|
aminoType: "cosmos-sdk/GasInfo",
|
|
@@ -628,6 +661,12 @@ function createBaseResult() {
|
|
|
628
661
|
msgResponses: []
|
|
629
662
|
};
|
|
630
663
|
}
|
|
664
|
+
/**
|
|
665
|
+
* Result is the union of ResponseFormat and ResponseCheckTx.
|
|
666
|
+
* @name Result
|
|
667
|
+
* @package cosmos.base.abci.v1beta1
|
|
668
|
+
* @see proto type: cosmos.base.abci.v1beta1.Result
|
|
669
|
+
*/
|
|
631
670
|
export const Result = {
|
|
632
671
|
typeUrl: "/cosmos.base.abci.v1beta1.Result",
|
|
633
672
|
aminoType: "cosmos-sdk/Result",
|
|
@@ -745,6 +784,13 @@ function createBaseSimulationResponse() {
|
|
|
745
784
|
result: undefined
|
|
746
785
|
};
|
|
747
786
|
}
|
|
787
|
+
/**
|
|
788
|
+
* SimulationResponse defines the response generated when a transaction is
|
|
789
|
+
* successfully simulated.
|
|
790
|
+
* @name SimulationResponse
|
|
791
|
+
* @package cosmos.base.abci.v1beta1
|
|
792
|
+
* @see proto type: cosmos.base.abci.v1beta1.SimulationResponse
|
|
793
|
+
*/
|
|
748
794
|
export const SimulationResponse = {
|
|
749
795
|
typeUrl: "/cosmos.base.abci.v1beta1.SimulationResponse",
|
|
750
796
|
aminoType: "cosmos-sdk/SimulationResponse",
|
|
@@ -840,6 +886,14 @@ function createBaseMsgData() {
|
|
|
840
886
|
data: new Uint8Array()
|
|
841
887
|
};
|
|
842
888
|
}
|
|
889
|
+
/**
|
|
890
|
+
* MsgData defines the data returned in a Result object during message
|
|
891
|
+
* execution.
|
|
892
|
+
* @name MsgData
|
|
893
|
+
* @package cosmos.base.abci.v1beta1
|
|
894
|
+
* @see proto type: cosmos.base.abci.v1beta1.MsgData
|
|
895
|
+
* @deprecated
|
|
896
|
+
*/
|
|
843
897
|
export const MsgData = {
|
|
844
898
|
typeUrl: "/cosmos.base.abci.v1beta1.MsgData",
|
|
845
899
|
aminoType: "cosmos-sdk/MsgData",
|
|
@@ -929,6 +983,13 @@ function createBaseTxMsgData() {
|
|
|
929
983
|
msgResponses: []
|
|
930
984
|
};
|
|
931
985
|
}
|
|
986
|
+
/**
|
|
987
|
+
* TxMsgData defines a list of MsgData. A transaction will have a MsgData object
|
|
988
|
+
* for each message.
|
|
989
|
+
* @name TxMsgData
|
|
990
|
+
* @package cosmos.base.abci.v1beta1
|
|
991
|
+
* @see proto type: cosmos.base.abci.v1beta1.TxMsgData
|
|
992
|
+
*/
|
|
932
993
|
export const TxMsgData = {
|
|
933
994
|
typeUrl: "/cosmos.base.abci.v1beta1.TxMsgData",
|
|
934
995
|
aminoType: "cosmos-sdk/TxMsgData",
|
|
@@ -1028,6 +1089,12 @@ function createBaseSearchTxsResult() {
|
|
|
1028
1089
|
txs: []
|
|
1029
1090
|
};
|
|
1030
1091
|
}
|
|
1092
|
+
/**
|
|
1093
|
+
* SearchTxsResult defines a structure for querying txs pageable
|
|
1094
|
+
* @name SearchTxsResult
|
|
1095
|
+
* @package cosmos.base.abci.v1beta1
|
|
1096
|
+
* @see proto type: cosmos.base.abci.v1beta1.SearchTxsResult
|
|
1097
|
+
*/
|
|
1031
1098
|
export const SearchTxsResult = {
|
|
1032
1099
|
typeUrl: "/cosmos.base.abci.v1beta1.SearchTxsResult",
|
|
1033
1100
|
aminoType: "cosmos-sdk/SearchTxsResult",
|
|
@@ -1173,6 +1240,12 @@ function createBaseSearchBlocksResult() {
|
|
|
1173
1240
|
blocks: []
|
|
1174
1241
|
};
|
|
1175
1242
|
}
|
|
1243
|
+
/**
|
|
1244
|
+
* SearchBlocksResult defines a structure for querying blocks pageable
|
|
1245
|
+
* @name SearchBlocksResult
|
|
1246
|
+
* @package cosmos.base.abci.v1beta1
|
|
1247
|
+
* @see proto type: cosmos.base.abci.v1beta1.SearchBlocksResult
|
|
1248
|
+
*/
|
|
1176
1249
|
export const SearchBlocksResult = {
|
|
1177
1250
|
typeUrl: "/cosmos.base.abci.v1beta1.SearchBlocksResult",
|
|
1178
1251
|
aminoType: "cosmos-sdk/SearchBlocksResult",
|
|
@@ -9,6 +9,18 @@ function createBasePageRequest() {
|
|
|
9
9
|
reverse: false
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* PageRequest is to be embedded in gRPC request messages for efficient
|
|
14
|
+
* pagination. Ex:
|
|
15
|
+
*
|
|
16
|
+
* message SomeRequest {
|
|
17
|
+
* Foo some_parameter = 1;
|
|
18
|
+
* PageRequest pagination = 2;
|
|
19
|
+
* }
|
|
20
|
+
* @name PageRequest
|
|
21
|
+
* @package cosmos.base.query.v1beta1
|
|
22
|
+
* @see proto type: cosmos.base.query.v1beta1.PageRequest
|
|
23
|
+
*/
|
|
12
24
|
export const PageRequest = {
|
|
13
25
|
typeUrl: "/cosmos.base.query.v1beta1.PageRequest",
|
|
14
26
|
aminoType: "cosmos-sdk/PageRequest",
|
|
@@ -131,6 +143,18 @@ function createBasePageResponse() {
|
|
|
131
143
|
total: BigInt(0)
|
|
132
144
|
};
|
|
133
145
|
}
|
|
146
|
+
/**
|
|
147
|
+
* PageResponse is to be embedded in gRPC response messages where the
|
|
148
|
+
* corresponding request message has used PageRequest.
|
|
149
|
+
*
|
|
150
|
+
* message SomeResponse {
|
|
151
|
+
* repeated Bar results = 1;
|
|
152
|
+
* PageResponse page = 2;
|
|
153
|
+
* }
|
|
154
|
+
* @name PageResponse
|
|
155
|
+
* @package cosmos.base.query.v1beta1
|
|
156
|
+
* @see proto type: cosmos.base.query.v1beta1.PageResponse
|
|
157
|
+
*/
|
|
134
158
|
export const PageResponse = {
|
|
135
159
|
typeUrl: "/cosmos.base.query.v1beta1.PageResponse",
|
|
136
160
|
aminoType: "cosmos-sdk/PageResponse",
|
|
@@ -6,6 +6,15 @@ function createBaseCoin() {
|
|
|
6
6
|
amount: ""
|
|
7
7
|
};
|
|
8
8
|
}
|
|
9
|
+
/**
|
|
10
|
+
* Coin defines a token with a denomination and an amount.
|
|
11
|
+
*
|
|
12
|
+
* NOTE: The amount field is an Int which implements the custom method
|
|
13
|
+
* signatures required by gogoproto.
|
|
14
|
+
* @name Coin
|
|
15
|
+
* @package cosmos.base.v1beta1
|
|
16
|
+
* @see proto type: cosmos.base.v1beta1.Coin
|
|
17
|
+
*/
|
|
9
18
|
export const Coin = {
|
|
10
19
|
typeUrl: "/cosmos.base.v1beta1.Coin",
|
|
11
20
|
aminoType: "cosmos-sdk/Coin",
|
|
@@ -95,6 +104,15 @@ function createBaseDecCoin() {
|
|
|
95
104
|
amount: ""
|
|
96
105
|
};
|
|
97
106
|
}
|
|
107
|
+
/**
|
|
108
|
+
* DecCoin defines a token with a denomination and a decimal amount.
|
|
109
|
+
*
|
|
110
|
+
* NOTE: The amount field is an Dec which implements the custom method
|
|
111
|
+
* signatures required by gogoproto.
|
|
112
|
+
* @name DecCoin
|
|
113
|
+
* @package cosmos.base.v1beta1
|
|
114
|
+
* @see proto type: cosmos.base.v1beta1.DecCoin
|
|
115
|
+
*/
|
|
98
116
|
export const DecCoin = {
|
|
99
117
|
typeUrl: "/cosmos.base.v1beta1.DecCoin",
|
|
100
118
|
aminoType: "cosmos-sdk/DecCoin",
|
|
@@ -183,6 +201,13 @@ function createBaseIntProto() {
|
|
|
183
201
|
int: ""
|
|
184
202
|
};
|
|
185
203
|
}
|
|
204
|
+
/**
|
|
205
|
+
* IntProto defines a Protobuf wrapper around an Int object.
|
|
206
|
+
* Deprecated: Prefer to use math.Int directly. It supports binary Marshal and Unmarshal.
|
|
207
|
+
* @name IntProto
|
|
208
|
+
* @package cosmos.base.v1beta1
|
|
209
|
+
* @see proto type: cosmos.base.v1beta1.IntProto
|
|
210
|
+
*/
|
|
186
211
|
export const IntProto = {
|
|
187
212
|
typeUrl: "/cosmos.base.v1beta1.IntProto",
|
|
188
213
|
aminoType: "cosmos-sdk/IntProto",
|
|
@@ -260,6 +285,13 @@ function createBaseDecProto() {
|
|
|
260
285
|
dec: ""
|
|
261
286
|
};
|
|
262
287
|
}
|
|
288
|
+
/**
|
|
289
|
+
* DecProto defines a Protobuf wrapper around a Dec object.
|
|
290
|
+
* Deprecated: Prefer to use math.LegacyDec directly. It supports binary Marshal and Unmarshal.
|
|
291
|
+
* @name DecProto
|
|
292
|
+
* @package cosmos.base.v1beta1
|
|
293
|
+
* @see proto type: cosmos.base.v1beta1.DecProto
|
|
294
|
+
*/
|
|
263
295
|
export const DecProto = {
|
|
264
296
|
typeUrl: "/cosmos.base.v1beta1.DecProto",
|
|
265
297
|
aminoType: "cosmos-sdk/DecProto",
|