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
|
@@ -3,7 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getSendEnabled = exports.getDenomOwnersByQuery = exports.getDenomOwners = exports.getDenomsMetadata = exports.getDenomMetadataByQueryString = exports.getDenomMetadata = exports.getParams = exports.getSupplyOf = exports.getTotalSupply = exports.getSpendableBalanceByDenom = exports.getSpendableBalances = exports.getAllBalances = exports.getBalance = void 0;
|
|
4
4
|
const helper_func_types_1 = require("../../../helper-func-types");
|
|
5
5
|
const query_1 = require("./query");
|
|
6
|
-
|
|
6
|
+
/**
|
|
7
|
+
* Balance queries the balance of a single coin for a single account.
|
|
8
|
+
* @name getBalance
|
|
9
|
+
* @package cosmos.bank.v1beta1
|
|
10
|
+
* @see proto service: cosmos.bank.v1beta1.Balance
|
|
11
|
+
*/
|
|
7
12
|
exports.getBalance = (0, helper_func_types_1.buildQuery)({
|
|
8
13
|
encode: query_1.QueryBalanceRequest.encode,
|
|
9
14
|
decode: query_1.QueryBalanceResponse.decode,
|
|
@@ -11,10 +16,15 @@ exports.getBalance = (0, helper_func_types_1.buildQuery)({
|
|
|
11
16
|
method: "Balance",
|
|
12
17
|
deps: [query_1.QueryBalanceRequest, query_1.QueryBalanceResponse]
|
|
13
18
|
});
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
19
|
+
/**
|
|
20
|
+
* AllBalances queries the balance of all coins for a single account.
|
|
21
|
+
*
|
|
22
|
+
* When called from another module, this query might consume a high amount of
|
|
23
|
+
* gas if the pagination field is incorrectly set.
|
|
24
|
+
* @name getAllBalances
|
|
25
|
+
* @package cosmos.bank.v1beta1
|
|
26
|
+
* @see proto service: cosmos.bank.v1beta1.AllBalances
|
|
27
|
+
*/
|
|
18
28
|
exports.getAllBalances = (0, helper_func_types_1.buildQuery)({
|
|
19
29
|
encode: query_1.QueryAllBalancesRequest.encode,
|
|
20
30
|
decode: query_1.QueryAllBalancesResponse.decode,
|
|
@@ -22,13 +32,18 @@ exports.getAllBalances = (0, helper_func_types_1.buildQuery)({
|
|
|
22
32
|
method: "AllBalances",
|
|
23
33
|
deps: [query_1.QueryAllBalancesRequest, query_1.QueryAllBalancesResponse]
|
|
24
34
|
});
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
35
|
+
/**
|
|
36
|
+
* SpendableBalances queries the spendable balance of all coins for a single
|
|
37
|
+
* account.
|
|
38
|
+
*
|
|
39
|
+
* When called from another module, this query might consume a high amount of
|
|
40
|
+
* gas if the pagination field is incorrectly set.
|
|
41
|
+
*
|
|
42
|
+
* Since: cosmos-sdk 0.46
|
|
43
|
+
* @name getSpendableBalances
|
|
44
|
+
* @package cosmos.bank.v1beta1
|
|
45
|
+
* @see proto service: cosmos.bank.v1beta1.SpendableBalances
|
|
46
|
+
*/
|
|
32
47
|
exports.getSpendableBalances = (0, helper_func_types_1.buildQuery)({
|
|
33
48
|
encode: query_1.QuerySpendableBalancesRequest.encode,
|
|
34
49
|
decode: query_1.QuerySpendableBalancesResponse.decode,
|
|
@@ -36,13 +51,18 @@ exports.getSpendableBalances = (0, helper_func_types_1.buildQuery)({
|
|
|
36
51
|
method: "SpendableBalances",
|
|
37
52
|
deps: [query_1.QuerySpendableBalancesRequest, query_1.QuerySpendableBalancesResponse]
|
|
38
53
|
});
|
|
39
|
-
|
|
40
|
-
a single
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
54
|
+
/**
|
|
55
|
+
* SpendableBalanceByDenom queries the spendable balance of a single denom for
|
|
56
|
+
* a single account.
|
|
57
|
+
*
|
|
58
|
+
* When called from another module, this query might consume a high amount of
|
|
59
|
+
* gas if the pagination field is incorrectly set.
|
|
60
|
+
*
|
|
61
|
+
* Since: cosmos-sdk 0.47
|
|
62
|
+
* @name getSpendableBalanceByDenom
|
|
63
|
+
* @package cosmos.bank.v1beta1
|
|
64
|
+
* @see proto service: cosmos.bank.v1beta1.SpendableBalanceByDenom
|
|
65
|
+
*/
|
|
46
66
|
exports.getSpendableBalanceByDenom = (0, helper_func_types_1.buildQuery)({
|
|
47
67
|
encode: query_1.QuerySpendableBalanceByDenomRequest.encode,
|
|
48
68
|
decode: query_1.QuerySpendableBalanceByDenomResponse.decode,
|
|
@@ -50,10 +70,15 @@ exports.getSpendableBalanceByDenom = (0, helper_func_types_1.buildQuery)({
|
|
|
50
70
|
method: "SpendableBalanceByDenom",
|
|
51
71
|
deps: [query_1.QuerySpendableBalanceByDenomRequest, query_1.QuerySpendableBalanceByDenomResponse]
|
|
52
72
|
});
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
73
|
+
/**
|
|
74
|
+
* TotalSupply queries the total supply of all coins.
|
|
75
|
+
*
|
|
76
|
+
* When called from another module, this query might consume a high amount of
|
|
77
|
+
* gas if the pagination field is incorrectly set.
|
|
78
|
+
* @name getTotalSupply
|
|
79
|
+
* @package cosmos.bank.v1beta1
|
|
80
|
+
* @see proto service: cosmos.bank.v1beta1.TotalSupply
|
|
81
|
+
*/
|
|
57
82
|
exports.getTotalSupply = (0, helper_func_types_1.buildQuery)({
|
|
58
83
|
encode: query_1.QueryTotalSupplyRequest.encode,
|
|
59
84
|
decode: query_1.QueryTotalSupplyResponse.decode,
|
|
@@ -61,10 +86,15 @@ exports.getTotalSupply = (0, helper_func_types_1.buildQuery)({
|
|
|
61
86
|
method: "TotalSupply",
|
|
62
87
|
deps: [query_1.QueryTotalSupplyRequest, query_1.QueryTotalSupplyResponse]
|
|
63
88
|
});
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
89
|
+
/**
|
|
90
|
+
* SupplyOf queries the supply of a single coin.
|
|
91
|
+
*
|
|
92
|
+
* When called from another module, this query might consume a high amount of
|
|
93
|
+
* gas if the pagination field is incorrectly set.
|
|
94
|
+
* @name getSupplyOf
|
|
95
|
+
* @package cosmos.bank.v1beta1
|
|
96
|
+
* @see proto service: cosmos.bank.v1beta1.SupplyOf
|
|
97
|
+
*/
|
|
68
98
|
exports.getSupplyOf = (0, helper_func_types_1.buildQuery)({
|
|
69
99
|
encode: query_1.QuerySupplyOfRequest.encode,
|
|
70
100
|
decode: query_1.QuerySupplyOfResponse.decode,
|
|
@@ -72,7 +102,12 @@ exports.getSupplyOf = (0, helper_func_types_1.buildQuery)({
|
|
|
72
102
|
method: "SupplyOf",
|
|
73
103
|
deps: [query_1.QuerySupplyOfRequest, query_1.QuerySupplyOfResponse]
|
|
74
104
|
});
|
|
75
|
-
|
|
105
|
+
/**
|
|
106
|
+
* Params queries the parameters of x/bank module.
|
|
107
|
+
* @name getParams
|
|
108
|
+
* @package cosmos.bank.v1beta1
|
|
109
|
+
* @see proto service: cosmos.bank.v1beta1.Params
|
|
110
|
+
*/
|
|
76
111
|
exports.getParams = (0, helper_func_types_1.buildQuery)({
|
|
77
112
|
encode: query_1.QueryParamsRequest.encode,
|
|
78
113
|
decode: query_1.QueryParamsResponse.decode,
|
|
@@ -80,7 +115,12 @@ exports.getParams = (0, helper_func_types_1.buildQuery)({
|
|
|
80
115
|
method: "Params",
|
|
81
116
|
deps: [query_1.QueryParamsRequest, query_1.QueryParamsResponse]
|
|
82
117
|
});
|
|
83
|
-
|
|
118
|
+
/**
|
|
119
|
+
* DenomMetadata queries the client metadata of a given coin denomination.
|
|
120
|
+
* @name getDenomMetadata
|
|
121
|
+
* @package cosmos.bank.v1beta1
|
|
122
|
+
* @see proto service: cosmos.bank.v1beta1.DenomMetadata
|
|
123
|
+
*/
|
|
84
124
|
exports.getDenomMetadata = (0, helper_func_types_1.buildQuery)({
|
|
85
125
|
encode: query_1.QueryDenomMetadataRequest.encode,
|
|
86
126
|
decode: query_1.QueryDenomMetadataResponse.decode,
|
|
@@ -88,7 +128,12 @@ exports.getDenomMetadata = (0, helper_func_types_1.buildQuery)({
|
|
|
88
128
|
method: "DenomMetadata",
|
|
89
129
|
deps: [query_1.QueryDenomMetadataRequest, query_1.QueryDenomMetadataResponse]
|
|
90
130
|
});
|
|
91
|
-
|
|
131
|
+
/**
|
|
132
|
+
* DenomMetadataByQueryString queries the client metadata of a given coin denomination.
|
|
133
|
+
* @name getDenomMetadataByQueryString
|
|
134
|
+
* @package cosmos.bank.v1beta1
|
|
135
|
+
* @see proto service: cosmos.bank.v1beta1.DenomMetadataByQueryString
|
|
136
|
+
*/
|
|
92
137
|
exports.getDenomMetadataByQueryString = (0, helper_func_types_1.buildQuery)({
|
|
93
138
|
encode: query_1.QueryDenomMetadataByQueryStringRequest.encode,
|
|
94
139
|
decode: query_1.QueryDenomMetadataByQueryStringResponse.decode,
|
|
@@ -96,8 +141,13 @@ exports.getDenomMetadataByQueryString = (0, helper_func_types_1.buildQuery)({
|
|
|
96
141
|
method: "DenomMetadataByQueryString",
|
|
97
142
|
deps: [query_1.QueryDenomMetadataByQueryStringRequest, query_1.QueryDenomMetadataByQueryStringResponse]
|
|
98
143
|
});
|
|
99
|
-
|
|
100
|
-
|
|
144
|
+
/**
|
|
145
|
+
* DenomsMetadata queries the client metadata for all registered coin
|
|
146
|
+
* denominations.
|
|
147
|
+
* @name getDenomsMetadata
|
|
148
|
+
* @package cosmos.bank.v1beta1
|
|
149
|
+
* @see proto service: cosmos.bank.v1beta1.DenomsMetadata
|
|
150
|
+
*/
|
|
101
151
|
exports.getDenomsMetadata = (0, helper_func_types_1.buildQuery)({
|
|
102
152
|
encode: query_1.QueryDenomsMetadataRequest.encode,
|
|
103
153
|
decode: query_1.QueryDenomsMetadataResponse.decode,
|
|
@@ -105,13 +155,18 @@ exports.getDenomsMetadata = (0, helper_func_types_1.buildQuery)({
|
|
|
105
155
|
method: "DenomsMetadata",
|
|
106
156
|
deps: [query_1.QueryDenomsMetadataRequest, query_1.QueryDenomsMetadataResponse]
|
|
107
157
|
});
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
158
|
+
/**
|
|
159
|
+
* DenomOwners queries for all account addresses that own a particular token
|
|
160
|
+
* denomination.
|
|
161
|
+
*
|
|
162
|
+
* When called from another module, this query might consume a high amount of
|
|
163
|
+
* gas if the pagination field is incorrectly set.
|
|
164
|
+
*
|
|
165
|
+
* Since: cosmos-sdk 0.46
|
|
166
|
+
* @name getDenomOwners
|
|
167
|
+
* @package cosmos.bank.v1beta1
|
|
168
|
+
* @see proto service: cosmos.bank.v1beta1.DenomOwners
|
|
169
|
+
*/
|
|
115
170
|
exports.getDenomOwners = (0, helper_func_types_1.buildQuery)({
|
|
116
171
|
encode: query_1.QueryDenomOwnersRequest.encode,
|
|
117
172
|
decode: query_1.QueryDenomOwnersResponse.decode,
|
|
@@ -119,10 +174,15 @@ exports.getDenomOwners = (0, helper_func_types_1.buildQuery)({
|
|
|
119
174
|
method: "DenomOwners",
|
|
120
175
|
deps: [query_1.QueryDenomOwnersRequest, query_1.QueryDenomOwnersResponse]
|
|
121
176
|
});
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
177
|
+
/**
|
|
178
|
+
* DenomOwnersByQuery queries for all account addresses that own a particular token
|
|
179
|
+
* denomination.
|
|
180
|
+
*
|
|
181
|
+
* Since: cosmos-sdk 0.50.3
|
|
182
|
+
* @name getDenomOwnersByQuery
|
|
183
|
+
* @package cosmos.bank.v1beta1
|
|
184
|
+
* @see proto service: cosmos.bank.v1beta1.DenomOwnersByQuery
|
|
185
|
+
*/
|
|
126
186
|
exports.getDenomOwnersByQuery = (0, helper_func_types_1.buildQuery)({
|
|
127
187
|
encode: query_1.QueryDenomOwnersByQueryRequest.encode,
|
|
128
188
|
decode: query_1.QueryDenomOwnersByQueryResponse.decode,
|
|
@@ -130,13 +190,18 @@ exports.getDenomOwnersByQuery = (0, helper_func_types_1.buildQuery)({
|
|
|
130
190
|
method: "DenomOwnersByQuery",
|
|
131
191
|
deps: [query_1.QueryDenomOwnersByQueryRequest, query_1.QueryDenomOwnersByQueryResponse]
|
|
132
192
|
});
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
193
|
+
/**
|
|
194
|
+
* SendEnabled queries for SendEnabled entries.
|
|
195
|
+
*
|
|
196
|
+
* This query only returns denominations that have specific SendEnabled settings.
|
|
197
|
+
* Any denomination that does not have a specific setting will use the default
|
|
198
|
+
* params.default_send_enabled, and will not be returned by this query.
|
|
199
|
+
*
|
|
200
|
+
* Since: cosmos-sdk 0.47
|
|
201
|
+
* @name getSendEnabled
|
|
202
|
+
* @package cosmos.bank.v1beta1
|
|
203
|
+
* @see proto service: cosmos.bank.v1beta1.SendEnabled
|
|
204
|
+
*/
|
|
140
205
|
exports.getSendEnabled = (0, helper_func_types_1.buildQuery)({
|
|
141
206
|
encode: query_1.QuerySendEnabledRequest.encode,
|
|
142
207
|
decode: query_1.QuerySendEnabledResponse.decode,
|
|
@@ -2,7 +2,12 @@ import { Coin, CoinAmino } from "../../base/v1beta1/coin";
|
|
|
2
2
|
import { Input, InputAmino, Output, OutputAmino, Params, ParamsAmino, SendEnabled, SendEnabledAmino } from "./bank";
|
|
3
3
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
4
4
|
import { DeepPartial } from "../../../helpers";
|
|
5
|
-
/**
|
|
5
|
+
/**
|
|
6
|
+
* MsgSend represents a message to send coins from one account to another.
|
|
7
|
+
* @name MsgSend
|
|
8
|
+
* @package cosmos.bank.v1beta1
|
|
9
|
+
* @see proto type: cosmos.bank.v1beta1.MsgSend
|
|
10
|
+
*/
|
|
6
11
|
export interface MsgSend {
|
|
7
12
|
fromAddress: string;
|
|
8
13
|
toAddress: string;
|
|
@@ -12,7 +17,12 @@ export interface MsgSendProtoMsg {
|
|
|
12
17
|
typeUrl: "/cosmos.bank.v1beta1.MsgSend";
|
|
13
18
|
value: Uint8Array;
|
|
14
19
|
}
|
|
15
|
-
/**
|
|
20
|
+
/**
|
|
21
|
+
* MsgSend represents a message to send coins from one account to another.
|
|
22
|
+
* @name MsgSendAmino
|
|
23
|
+
* @package cosmos.bank.v1beta1
|
|
24
|
+
* @see proto type: cosmos.bank.v1beta1.MsgSend
|
|
25
|
+
*/
|
|
16
26
|
export interface MsgSendAmino {
|
|
17
27
|
from_address: string;
|
|
18
28
|
to_address: string;
|
|
@@ -22,21 +32,36 @@ export interface MsgSendAminoMsg {
|
|
|
22
32
|
type: "cosmos-sdk/MsgSend";
|
|
23
33
|
value: MsgSendAmino;
|
|
24
34
|
}
|
|
25
|
-
/**
|
|
35
|
+
/**
|
|
36
|
+
* MsgSendResponse defines the Msg/Send response type.
|
|
37
|
+
* @name MsgSendResponse
|
|
38
|
+
* @package cosmos.bank.v1beta1
|
|
39
|
+
* @see proto type: cosmos.bank.v1beta1.MsgSendResponse
|
|
40
|
+
*/
|
|
26
41
|
export interface MsgSendResponse {
|
|
27
42
|
}
|
|
28
43
|
export interface MsgSendResponseProtoMsg {
|
|
29
44
|
typeUrl: "/cosmos.bank.v1beta1.MsgSendResponse";
|
|
30
45
|
value: Uint8Array;
|
|
31
46
|
}
|
|
32
|
-
/**
|
|
47
|
+
/**
|
|
48
|
+
* MsgSendResponse defines the Msg/Send response type.
|
|
49
|
+
* @name MsgSendResponseAmino
|
|
50
|
+
* @package cosmos.bank.v1beta1
|
|
51
|
+
* @see proto type: cosmos.bank.v1beta1.MsgSendResponse
|
|
52
|
+
*/
|
|
33
53
|
export interface MsgSendResponseAmino {
|
|
34
54
|
}
|
|
35
55
|
export interface MsgSendResponseAminoMsg {
|
|
36
56
|
type: "cosmos-sdk/MsgSendResponse";
|
|
37
57
|
value: MsgSendResponseAmino;
|
|
38
58
|
}
|
|
39
|
-
/**
|
|
59
|
+
/**
|
|
60
|
+
* MsgMultiSend represents an arbitrary multi-in, multi-out send message.
|
|
61
|
+
* @name MsgMultiSend
|
|
62
|
+
* @package cosmos.bank.v1beta1
|
|
63
|
+
* @see proto type: cosmos.bank.v1beta1.MsgMultiSend
|
|
64
|
+
*/
|
|
40
65
|
export interface MsgMultiSend {
|
|
41
66
|
/**
|
|
42
67
|
* Inputs, despite being `repeated`, only allows one sender input. This is
|
|
@@ -49,7 +74,12 @@ export interface MsgMultiSendProtoMsg {
|
|
|
49
74
|
typeUrl: "/cosmos.bank.v1beta1.MsgMultiSend";
|
|
50
75
|
value: Uint8Array;
|
|
51
76
|
}
|
|
52
|
-
/**
|
|
77
|
+
/**
|
|
78
|
+
* MsgMultiSend represents an arbitrary multi-in, multi-out send message.
|
|
79
|
+
* @name MsgMultiSendAmino
|
|
80
|
+
* @package cosmos.bank.v1beta1
|
|
81
|
+
* @see proto type: cosmos.bank.v1beta1.MsgMultiSend
|
|
82
|
+
*/
|
|
53
83
|
export interface MsgMultiSendAmino {
|
|
54
84
|
/**
|
|
55
85
|
* Inputs, despite being `repeated`, only allows one sender input. This is
|
|
@@ -62,14 +92,24 @@ export interface MsgMultiSendAminoMsg {
|
|
|
62
92
|
type: "cosmos-sdk/MsgMultiSend";
|
|
63
93
|
value: MsgMultiSendAmino;
|
|
64
94
|
}
|
|
65
|
-
/**
|
|
95
|
+
/**
|
|
96
|
+
* MsgMultiSendResponse defines the Msg/MultiSend response type.
|
|
97
|
+
* @name MsgMultiSendResponse
|
|
98
|
+
* @package cosmos.bank.v1beta1
|
|
99
|
+
* @see proto type: cosmos.bank.v1beta1.MsgMultiSendResponse
|
|
100
|
+
*/
|
|
66
101
|
export interface MsgMultiSendResponse {
|
|
67
102
|
}
|
|
68
103
|
export interface MsgMultiSendResponseProtoMsg {
|
|
69
104
|
typeUrl: "/cosmos.bank.v1beta1.MsgMultiSendResponse";
|
|
70
105
|
value: Uint8Array;
|
|
71
106
|
}
|
|
72
|
-
/**
|
|
107
|
+
/**
|
|
108
|
+
* MsgMultiSendResponse defines the Msg/MultiSend response type.
|
|
109
|
+
* @name MsgMultiSendResponseAmino
|
|
110
|
+
* @package cosmos.bank.v1beta1
|
|
111
|
+
* @see proto type: cosmos.bank.v1beta1.MsgMultiSendResponse
|
|
112
|
+
*/
|
|
73
113
|
export interface MsgMultiSendResponseAmino {
|
|
74
114
|
}
|
|
75
115
|
export interface MsgMultiSendResponseAminoMsg {
|
|
@@ -80,9 +120,14 @@ export interface MsgMultiSendResponseAminoMsg {
|
|
|
80
120
|
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
81
121
|
*
|
|
82
122
|
* Since: cosmos-sdk 0.47
|
|
123
|
+
* @name MsgUpdateParams
|
|
124
|
+
* @package cosmos.bank.v1beta1
|
|
125
|
+
* @see proto type: cosmos.bank.v1beta1.MsgUpdateParams
|
|
83
126
|
*/
|
|
84
127
|
export interface MsgUpdateParams {
|
|
85
|
-
/**
|
|
128
|
+
/**
|
|
129
|
+
* authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
130
|
+
*/
|
|
86
131
|
authority: string;
|
|
87
132
|
/**
|
|
88
133
|
* params defines the x/bank parameters to update.
|
|
@@ -99,9 +144,14 @@ export interface MsgUpdateParamsProtoMsg {
|
|
|
99
144
|
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
100
145
|
*
|
|
101
146
|
* Since: cosmos-sdk 0.47
|
|
147
|
+
* @name MsgUpdateParamsAmino
|
|
148
|
+
* @package cosmos.bank.v1beta1
|
|
149
|
+
* @see proto type: cosmos.bank.v1beta1.MsgUpdateParams
|
|
102
150
|
*/
|
|
103
151
|
export interface MsgUpdateParamsAmino {
|
|
104
|
-
/**
|
|
152
|
+
/**
|
|
153
|
+
* authority is the address that controls the module (defaults to x/gov unless overwritten).
|
|
154
|
+
*/
|
|
105
155
|
authority: string;
|
|
106
156
|
/**
|
|
107
157
|
* params defines the x/bank parameters to update.
|
|
@@ -119,6 +169,9 @@ export interface MsgUpdateParamsAminoMsg {
|
|
|
119
169
|
* MsgUpdateParams message.
|
|
120
170
|
*
|
|
121
171
|
* Since: cosmos-sdk 0.47
|
|
172
|
+
* @name MsgUpdateParamsResponse
|
|
173
|
+
* @package cosmos.bank.v1beta1
|
|
174
|
+
* @see proto type: cosmos.bank.v1beta1.MsgUpdateParamsResponse
|
|
122
175
|
*/
|
|
123
176
|
export interface MsgUpdateParamsResponse {
|
|
124
177
|
}
|
|
@@ -131,6 +184,9 @@ export interface MsgUpdateParamsResponseProtoMsg {
|
|
|
131
184
|
* MsgUpdateParams message.
|
|
132
185
|
*
|
|
133
186
|
* Since: cosmos-sdk 0.47
|
|
187
|
+
* @name MsgUpdateParamsResponseAmino
|
|
188
|
+
* @package cosmos.bank.v1beta1
|
|
189
|
+
* @see proto type: cosmos.bank.v1beta1.MsgUpdateParamsResponse
|
|
134
190
|
*/
|
|
135
191
|
export interface MsgUpdateParamsResponseAmino {
|
|
136
192
|
}
|
|
@@ -146,11 +202,18 @@ export interface MsgUpdateParamsResponseAminoMsg {
|
|
|
146
202
|
* message are left unchanged.
|
|
147
203
|
*
|
|
148
204
|
* Since: cosmos-sdk 0.47
|
|
205
|
+
* @name MsgSetSendEnabled
|
|
206
|
+
* @package cosmos.bank.v1beta1
|
|
207
|
+
* @see proto type: cosmos.bank.v1beta1.MsgSetSendEnabled
|
|
149
208
|
*/
|
|
150
209
|
export interface MsgSetSendEnabled {
|
|
151
|
-
/**
|
|
210
|
+
/**
|
|
211
|
+
* authority is the address that controls the module.
|
|
212
|
+
*/
|
|
152
213
|
authority: string;
|
|
153
|
-
/**
|
|
214
|
+
/**
|
|
215
|
+
* send_enabled is the list of entries to add or update.
|
|
216
|
+
*/
|
|
154
217
|
sendEnabled: SendEnabled[];
|
|
155
218
|
/**
|
|
156
219
|
* use_default_for is a list of denoms that should use the params.default_send_enabled value.
|
|
@@ -172,11 +235,18 @@ export interface MsgSetSendEnabledProtoMsg {
|
|
|
172
235
|
* message are left unchanged.
|
|
173
236
|
*
|
|
174
237
|
* Since: cosmos-sdk 0.47
|
|
238
|
+
* @name MsgSetSendEnabledAmino
|
|
239
|
+
* @package cosmos.bank.v1beta1
|
|
240
|
+
* @see proto type: cosmos.bank.v1beta1.MsgSetSendEnabled
|
|
175
241
|
*/
|
|
176
242
|
export interface MsgSetSendEnabledAmino {
|
|
177
|
-
/**
|
|
243
|
+
/**
|
|
244
|
+
* authority is the address that controls the module.
|
|
245
|
+
*/
|
|
178
246
|
authority: string;
|
|
179
|
-
/**
|
|
247
|
+
/**
|
|
248
|
+
* send_enabled is the list of entries to add or update.
|
|
249
|
+
*/
|
|
180
250
|
send_enabled: SendEnabledAmino[];
|
|
181
251
|
/**
|
|
182
252
|
* use_default_for is a list of denoms that should use the params.default_send_enabled value.
|
|
@@ -194,6 +264,9 @@ export interface MsgSetSendEnabledAminoMsg {
|
|
|
194
264
|
* MsgSetSendEnabledResponse defines the Msg/SetSendEnabled response type.
|
|
195
265
|
*
|
|
196
266
|
* Since: cosmos-sdk 0.47
|
|
267
|
+
* @name MsgSetSendEnabledResponse
|
|
268
|
+
* @package cosmos.bank.v1beta1
|
|
269
|
+
* @see proto type: cosmos.bank.v1beta1.MsgSetSendEnabledResponse
|
|
197
270
|
*/
|
|
198
271
|
export interface MsgSetSendEnabledResponse {
|
|
199
272
|
}
|
|
@@ -205,6 +278,9 @@ export interface MsgSetSendEnabledResponseProtoMsg {
|
|
|
205
278
|
* MsgSetSendEnabledResponse defines the Msg/SetSendEnabled response type.
|
|
206
279
|
*
|
|
207
280
|
* Since: cosmos-sdk 0.47
|
|
281
|
+
* @name MsgSetSendEnabledResponseAmino
|
|
282
|
+
* @package cosmos.bank.v1beta1
|
|
283
|
+
* @see proto type: cosmos.bank.v1beta1.MsgSetSendEnabledResponse
|
|
208
284
|
*/
|
|
209
285
|
export interface MsgSetSendEnabledResponseAmino {
|
|
210
286
|
}
|
|
@@ -212,6 +288,12 @@ export interface MsgSetSendEnabledResponseAminoMsg {
|
|
|
212
288
|
type: "cosmos-sdk/MsgSetSendEnabledResponse";
|
|
213
289
|
value: MsgSetSendEnabledResponseAmino;
|
|
214
290
|
}
|
|
291
|
+
/**
|
|
292
|
+
* MsgSend represents a message to send coins from one account to another.
|
|
293
|
+
* @name MsgSend
|
|
294
|
+
* @package cosmos.bank.v1beta1
|
|
295
|
+
* @see proto type: cosmos.bank.v1beta1.MsgSend
|
|
296
|
+
*/
|
|
215
297
|
export declare const MsgSend: {
|
|
216
298
|
typeUrl: string;
|
|
217
299
|
aminoType: string;
|
|
@@ -229,6 +311,12 @@ export declare const MsgSend: {
|
|
|
229
311
|
toProtoMsg(message: MsgSend): MsgSendProtoMsg;
|
|
230
312
|
registerTypeUrl(): void;
|
|
231
313
|
};
|
|
314
|
+
/**
|
|
315
|
+
* MsgSendResponse defines the Msg/Send response type.
|
|
316
|
+
* @name MsgSendResponse
|
|
317
|
+
* @package cosmos.bank.v1beta1
|
|
318
|
+
* @see proto type: cosmos.bank.v1beta1.MsgSendResponse
|
|
319
|
+
*/
|
|
232
320
|
export declare const MsgSendResponse: {
|
|
233
321
|
typeUrl: string;
|
|
234
322
|
aminoType: string;
|
|
@@ -246,6 +334,12 @@ export declare const MsgSendResponse: {
|
|
|
246
334
|
toProtoMsg(message: MsgSendResponse): MsgSendResponseProtoMsg;
|
|
247
335
|
registerTypeUrl(): void;
|
|
248
336
|
};
|
|
337
|
+
/**
|
|
338
|
+
* MsgMultiSend represents an arbitrary multi-in, multi-out send message.
|
|
339
|
+
* @name MsgMultiSend
|
|
340
|
+
* @package cosmos.bank.v1beta1
|
|
341
|
+
* @see proto type: cosmos.bank.v1beta1.MsgMultiSend
|
|
342
|
+
*/
|
|
249
343
|
export declare const MsgMultiSend: {
|
|
250
344
|
typeUrl: string;
|
|
251
345
|
aminoType: string;
|
|
@@ -263,6 +357,12 @@ export declare const MsgMultiSend: {
|
|
|
263
357
|
toProtoMsg(message: MsgMultiSend): MsgMultiSendProtoMsg;
|
|
264
358
|
registerTypeUrl(): void;
|
|
265
359
|
};
|
|
360
|
+
/**
|
|
361
|
+
* MsgMultiSendResponse defines the Msg/MultiSend response type.
|
|
362
|
+
* @name MsgMultiSendResponse
|
|
363
|
+
* @package cosmos.bank.v1beta1
|
|
364
|
+
* @see proto type: cosmos.bank.v1beta1.MsgMultiSendResponse
|
|
365
|
+
*/
|
|
266
366
|
export declare const MsgMultiSendResponse: {
|
|
267
367
|
typeUrl: string;
|
|
268
368
|
aminoType: string;
|
|
@@ -280,6 +380,14 @@ export declare const MsgMultiSendResponse: {
|
|
|
280
380
|
toProtoMsg(message: MsgMultiSendResponse): MsgMultiSendResponseProtoMsg;
|
|
281
381
|
registerTypeUrl(): void;
|
|
282
382
|
};
|
|
383
|
+
/**
|
|
384
|
+
* MsgUpdateParams is the Msg/UpdateParams request type.
|
|
385
|
+
*
|
|
386
|
+
* Since: cosmos-sdk 0.47
|
|
387
|
+
* @name MsgUpdateParams
|
|
388
|
+
* @package cosmos.bank.v1beta1
|
|
389
|
+
* @see proto type: cosmos.bank.v1beta1.MsgUpdateParams
|
|
390
|
+
*/
|
|
283
391
|
export declare const MsgUpdateParams: {
|
|
284
392
|
typeUrl: string;
|
|
285
393
|
aminoType: string;
|
|
@@ -297,6 +405,15 @@ export declare const MsgUpdateParams: {
|
|
|
297
405
|
toProtoMsg(message: MsgUpdateParams): MsgUpdateParamsProtoMsg;
|
|
298
406
|
registerTypeUrl(): void;
|
|
299
407
|
};
|
|
408
|
+
/**
|
|
409
|
+
* MsgUpdateParamsResponse defines the response structure for executing a
|
|
410
|
+
* MsgUpdateParams message.
|
|
411
|
+
*
|
|
412
|
+
* Since: cosmos-sdk 0.47
|
|
413
|
+
* @name MsgUpdateParamsResponse
|
|
414
|
+
* @package cosmos.bank.v1beta1
|
|
415
|
+
* @see proto type: cosmos.bank.v1beta1.MsgUpdateParamsResponse
|
|
416
|
+
*/
|
|
300
417
|
export declare const MsgUpdateParamsResponse: {
|
|
301
418
|
typeUrl: string;
|
|
302
419
|
aminoType: string;
|
|
@@ -314,6 +431,18 @@ export declare const MsgUpdateParamsResponse: {
|
|
|
314
431
|
toProtoMsg(message: MsgUpdateParamsResponse): MsgUpdateParamsResponseProtoMsg;
|
|
315
432
|
registerTypeUrl(): void;
|
|
316
433
|
};
|
|
434
|
+
/**
|
|
435
|
+
* MsgSetSendEnabled is the Msg/SetSendEnabled request type.
|
|
436
|
+
*
|
|
437
|
+
* Only entries to add/update/delete need to be included.
|
|
438
|
+
* Existing SendEnabled entries that are not included in this
|
|
439
|
+
* message are left unchanged.
|
|
440
|
+
*
|
|
441
|
+
* Since: cosmos-sdk 0.47
|
|
442
|
+
* @name MsgSetSendEnabled
|
|
443
|
+
* @package cosmos.bank.v1beta1
|
|
444
|
+
* @see proto type: cosmos.bank.v1beta1.MsgSetSendEnabled
|
|
445
|
+
*/
|
|
317
446
|
export declare const MsgSetSendEnabled: {
|
|
318
447
|
typeUrl: string;
|
|
319
448
|
aminoType: string;
|
|
@@ -331,6 +460,14 @@ export declare const MsgSetSendEnabled: {
|
|
|
331
460
|
toProtoMsg(message: MsgSetSendEnabled): MsgSetSendEnabledProtoMsg;
|
|
332
461
|
registerTypeUrl(): void;
|
|
333
462
|
};
|
|
463
|
+
/**
|
|
464
|
+
* MsgSetSendEnabledResponse defines the Msg/SetSendEnabled response type.
|
|
465
|
+
*
|
|
466
|
+
* Since: cosmos-sdk 0.47
|
|
467
|
+
* @name MsgSetSendEnabledResponse
|
|
468
|
+
* @package cosmos.bank.v1beta1
|
|
469
|
+
* @see proto type: cosmos.bank.v1beta1.MsgSetSendEnabledResponse
|
|
470
|
+
*/
|
|
334
471
|
export declare const MsgSetSendEnabledResponse: {
|
|
335
472
|
typeUrl: string;
|
|
336
473
|
aminoType: string;
|