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
|
@@ -12,6 +12,12 @@ function createBaseQueryBalanceRequest() {
|
|
|
12
12
|
denom: ""
|
|
13
13
|
};
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* QueryBalanceRequest is the request type for the Query/Balance RPC method.
|
|
17
|
+
* @name QueryBalanceRequest
|
|
18
|
+
* @package cosmos.bank.v1beta1
|
|
19
|
+
* @see proto type: cosmos.bank.v1beta1.QueryBalanceRequest
|
|
20
|
+
*/
|
|
15
21
|
exports.QueryBalanceRequest = {
|
|
16
22
|
typeUrl: "/cosmos.bank.v1beta1.QueryBalanceRequest",
|
|
17
23
|
aminoType: "cosmos-sdk/QueryBalanceRequest",
|
|
@@ -100,6 +106,12 @@ function createBaseQueryBalanceResponse() {
|
|
|
100
106
|
balance: undefined
|
|
101
107
|
};
|
|
102
108
|
}
|
|
109
|
+
/**
|
|
110
|
+
* QueryBalanceResponse is the response type for the Query/Balance RPC method.
|
|
111
|
+
* @name QueryBalanceResponse
|
|
112
|
+
* @package cosmos.bank.v1beta1
|
|
113
|
+
* @see proto type: cosmos.bank.v1beta1.QueryBalanceResponse
|
|
114
|
+
*/
|
|
103
115
|
exports.QueryBalanceResponse = {
|
|
104
116
|
typeUrl: "/cosmos.bank.v1beta1.QueryBalanceResponse",
|
|
105
117
|
aminoType: "cosmos-sdk/QueryBalanceResponse",
|
|
@@ -184,6 +196,12 @@ function createBaseQueryAllBalancesRequest() {
|
|
|
184
196
|
resolveDenom: false
|
|
185
197
|
};
|
|
186
198
|
}
|
|
199
|
+
/**
|
|
200
|
+
* QueryBalanceRequest is the request type for the Query/AllBalances RPC method.
|
|
201
|
+
* @name QueryAllBalancesRequest
|
|
202
|
+
* @package cosmos.bank.v1beta1
|
|
203
|
+
* @see proto type: cosmos.bank.v1beta1.QueryAllBalancesRequest
|
|
204
|
+
*/
|
|
187
205
|
exports.QueryAllBalancesRequest = {
|
|
188
206
|
typeUrl: "/cosmos.bank.v1beta1.QueryAllBalancesRequest",
|
|
189
207
|
aminoType: "cosmos-sdk/QueryAllBalancesRequest",
|
|
@@ -289,6 +307,13 @@ function createBaseQueryAllBalancesResponse() {
|
|
|
289
307
|
pagination: undefined
|
|
290
308
|
};
|
|
291
309
|
}
|
|
310
|
+
/**
|
|
311
|
+
* QueryAllBalancesResponse is the response type for the Query/AllBalances RPC
|
|
312
|
+
* method.
|
|
313
|
+
* @name QueryAllBalancesResponse
|
|
314
|
+
* @package cosmos.bank.v1beta1
|
|
315
|
+
* @see proto type: cosmos.bank.v1beta1.QueryAllBalancesResponse
|
|
316
|
+
*/
|
|
292
317
|
exports.QueryAllBalancesResponse = {
|
|
293
318
|
typeUrl: "/cosmos.bank.v1beta1.QueryAllBalancesResponse",
|
|
294
319
|
aminoType: "cosmos-sdk/QueryAllBalancesResponse",
|
|
@@ -387,6 +412,15 @@ function createBaseQuerySpendableBalancesRequest() {
|
|
|
387
412
|
pagination: undefined
|
|
388
413
|
};
|
|
389
414
|
}
|
|
415
|
+
/**
|
|
416
|
+
* QuerySpendableBalancesRequest defines the gRPC request structure for querying
|
|
417
|
+
* an account's spendable balances.
|
|
418
|
+
*
|
|
419
|
+
* Since: cosmos-sdk 0.46
|
|
420
|
+
* @name QuerySpendableBalancesRequest
|
|
421
|
+
* @package cosmos.bank.v1beta1
|
|
422
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalancesRequest
|
|
423
|
+
*/
|
|
390
424
|
exports.QuerySpendableBalancesRequest = {
|
|
391
425
|
typeUrl: "/cosmos.bank.v1beta1.QuerySpendableBalancesRequest",
|
|
392
426
|
aminoType: "cosmos-sdk/QuerySpendableBalancesRequest",
|
|
@@ -481,6 +515,15 @@ function createBaseQuerySpendableBalancesResponse() {
|
|
|
481
515
|
pagination: undefined
|
|
482
516
|
};
|
|
483
517
|
}
|
|
518
|
+
/**
|
|
519
|
+
* QuerySpendableBalancesResponse defines the gRPC response structure for querying
|
|
520
|
+
* an account's spendable balances.
|
|
521
|
+
*
|
|
522
|
+
* Since: cosmos-sdk 0.46
|
|
523
|
+
* @name QuerySpendableBalancesResponse
|
|
524
|
+
* @package cosmos.bank.v1beta1
|
|
525
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalancesResponse
|
|
526
|
+
*/
|
|
484
527
|
exports.QuerySpendableBalancesResponse = {
|
|
485
528
|
typeUrl: "/cosmos.bank.v1beta1.QuerySpendableBalancesResponse",
|
|
486
529
|
aminoType: "cosmos-sdk/QuerySpendableBalancesResponse",
|
|
@@ -579,6 +622,15 @@ function createBaseQuerySpendableBalanceByDenomRequest() {
|
|
|
579
622
|
denom: ""
|
|
580
623
|
};
|
|
581
624
|
}
|
|
625
|
+
/**
|
|
626
|
+
* QuerySpendableBalanceByDenomRequest defines the gRPC request structure for
|
|
627
|
+
* querying an account's spendable balance for a specific denom.
|
|
628
|
+
*
|
|
629
|
+
* Since: cosmos-sdk 0.47
|
|
630
|
+
* @name QuerySpendableBalanceByDenomRequest
|
|
631
|
+
* @package cosmos.bank.v1beta1
|
|
632
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalanceByDenomRequest
|
|
633
|
+
*/
|
|
582
634
|
exports.QuerySpendableBalanceByDenomRequest = {
|
|
583
635
|
typeUrl: "/cosmos.bank.v1beta1.QuerySpendableBalanceByDenomRequest",
|
|
584
636
|
aminoType: "cosmos-sdk/QuerySpendableBalanceByDenomRequest",
|
|
@@ -667,6 +719,15 @@ function createBaseQuerySpendableBalanceByDenomResponse() {
|
|
|
667
719
|
balance: undefined
|
|
668
720
|
};
|
|
669
721
|
}
|
|
722
|
+
/**
|
|
723
|
+
* QuerySpendableBalanceByDenomResponse defines the gRPC response structure for
|
|
724
|
+
* querying an account's spendable balance for a specific denom.
|
|
725
|
+
*
|
|
726
|
+
* Since: cosmos-sdk 0.47
|
|
727
|
+
* @name QuerySpendableBalanceByDenomResponse
|
|
728
|
+
* @package cosmos.bank.v1beta1
|
|
729
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySpendableBalanceByDenomResponse
|
|
730
|
+
*/
|
|
670
731
|
exports.QuerySpendableBalanceByDenomResponse = {
|
|
671
732
|
typeUrl: "/cosmos.bank.v1beta1.QuerySpendableBalanceByDenomResponse",
|
|
672
733
|
aminoType: "cosmos-sdk/QuerySpendableBalanceByDenomResponse",
|
|
@@ -749,6 +810,13 @@ function createBaseQueryTotalSupplyRequest() {
|
|
|
749
810
|
pagination: undefined
|
|
750
811
|
};
|
|
751
812
|
}
|
|
813
|
+
/**
|
|
814
|
+
* QueryTotalSupplyRequest is the request type for the Query/TotalSupply RPC
|
|
815
|
+
* method.
|
|
816
|
+
* @name QueryTotalSupplyRequest
|
|
817
|
+
* @package cosmos.bank.v1beta1
|
|
818
|
+
* @see proto type: cosmos.bank.v1beta1.QueryTotalSupplyRequest
|
|
819
|
+
*/
|
|
752
820
|
exports.QueryTotalSupplyRequest = {
|
|
753
821
|
typeUrl: "/cosmos.bank.v1beta1.QueryTotalSupplyRequest",
|
|
754
822
|
aminoType: "cosmos-sdk/QueryTotalSupplyRequest",
|
|
@@ -832,6 +900,13 @@ function createBaseQueryTotalSupplyResponse() {
|
|
|
832
900
|
pagination: undefined
|
|
833
901
|
};
|
|
834
902
|
}
|
|
903
|
+
/**
|
|
904
|
+
* QueryTotalSupplyResponse is the response type for the Query/TotalSupply RPC
|
|
905
|
+
* method
|
|
906
|
+
* @name QueryTotalSupplyResponse
|
|
907
|
+
* @package cosmos.bank.v1beta1
|
|
908
|
+
* @see proto type: cosmos.bank.v1beta1.QueryTotalSupplyResponse
|
|
909
|
+
*/
|
|
835
910
|
exports.QueryTotalSupplyResponse = {
|
|
836
911
|
typeUrl: "/cosmos.bank.v1beta1.QueryTotalSupplyResponse",
|
|
837
912
|
aminoType: "cosmos-sdk/QueryTotalSupplyResponse",
|
|
@@ -929,6 +1004,12 @@ function createBaseQuerySupplyOfRequest() {
|
|
|
929
1004
|
denom: ""
|
|
930
1005
|
};
|
|
931
1006
|
}
|
|
1007
|
+
/**
|
|
1008
|
+
* QuerySupplyOfRequest is the request type for the Query/SupplyOf RPC method.
|
|
1009
|
+
* @name QuerySupplyOfRequest
|
|
1010
|
+
* @package cosmos.bank.v1beta1
|
|
1011
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySupplyOfRequest
|
|
1012
|
+
*/
|
|
932
1013
|
exports.QuerySupplyOfRequest = {
|
|
933
1014
|
typeUrl: "/cosmos.bank.v1beta1.QuerySupplyOfRequest",
|
|
934
1015
|
aminoType: "cosmos-sdk/QuerySupplyOfRequest",
|
|
@@ -1006,6 +1087,12 @@ function createBaseQuerySupplyOfResponse() {
|
|
|
1006
1087
|
amount: coin_1.Coin.fromPartial({})
|
|
1007
1088
|
};
|
|
1008
1089
|
}
|
|
1090
|
+
/**
|
|
1091
|
+
* QuerySupplyOfResponse is the response type for the Query/SupplyOf RPC method.
|
|
1092
|
+
* @name QuerySupplyOfResponse
|
|
1093
|
+
* @package cosmos.bank.v1beta1
|
|
1094
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySupplyOfResponse
|
|
1095
|
+
*/
|
|
1009
1096
|
exports.QuerySupplyOfResponse = {
|
|
1010
1097
|
typeUrl: "/cosmos.bank.v1beta1.QuerySupplyOfResponse",
|
|
1011
1098
|
aminoType: "cosmos-sdk/QuerySupplyOfResponse",
|
|
@@ -1086,6 +1173,12 @@ exports.QuerySupplyOfResponse = {
|
|
|
1086
1173
|
function createBaseQueryParamsRequest() {
|
|
1087
1174
|
return {};
|
|
1088
1175
|
}
|
|
1176
|
+
/**
|
|
1177
|
+
* QueryParamsRequest defines the request type for querying x/bank parameters.
|
|
1178
|
+
* @name QueryParamsRequest
|
|
1179
|
+
* @package cosmos.bank.v1beta1
|
|
1180
|
+
* @see proto type: cosmos.bank.v1beta1.QueryParamsRequest
|
|
1181
|
+
*/
|
|
1089
1182
|
exports.QueryParamsRequest = {
|
|
1090
1183
|
typeUrl: "/cosmos.bank.v1beta1.QueryParamsRequest",
|
|
1091
1184
|
aminoType: "cosmos-sdk/QueryParamsRequest",
|
|
@@ -1152,6 +1245,12 @@ function createBaseQueryParamsResponse() {
|
|
|
1152
1245
|
params: bank_1.Params.fromPartial({})
|
|
1153
1246
|
};
|
|
1154
1247
|
}
|
|
1248
|
+
/**
|
|
1249
|
+
* QueryParamsResponse defines the response type for querying x/bank parameters.
|
|
1250
|
+
* @name QueryParamsResponse
|
|
1251
|
+
* @package cosmos.bank.v1beta1
|
|
1252
|
+
* @see proto type: cosmos.bank.v1beta1.QueryParamsResponse
|
|
1253
|
+
*/
|
|
1155
1254
|
exports.QueryParamsResponse = {
|
|
1156
1255
|
typeUrl: "/cosmos.bank.v1beta1.QueryParamsResponse",
|
|
1157
1256
|
aminoType: "cosmos-sdk/QueryParamsResponse",
|
|
@@ -1234,6 +1333,12 @@ function createBaseQueryDenomsMetadataRequest() {
|
|
|
1234
1333
|
pagination: undefined
|
|
1235
1334
|
};
|
|
1236
1335
|
}
|
|
1336
|
+
/**
|
|
1337
|
+
* QueryDenomsMetadataRequest is the request type for the Query/DenomsMetadata RPC method.
|
|
1338
|
+
* @name QueryDenomsMetadataRequest
|
|
1339
|
+
* @package cosmos.bank.v1beta1
|
|
1340
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomsMetadataRequest
|
|
1341
|
+
*/
|
|
1237
1342
|
exports.QueryDenomsMetadataRequest = {
|
|
1238
1343
|
typeUrl: "/cosmos.bank.v1beta1.QueryDenomsMetadataRequest",
|
|
1239
1344
|
aminoType: "cosmos-sdk/QueryDenomsMetadataRequest",
|
|
@@ -1317,6 +1422,13 @@ function createBaseQueryDenomsMetadataResponse() {
|
|
|
1317
1422
|
pagination: undefined
|
|
1318
1423
|
};
|
|
1319
1424
|
}
|
|
1425
|
+
/**
|
|
1426
|
+
* QueryDenomsMetadataResponse is the response type for the Query/DenomsMetadata RPC
|
|
1427
|
+
* method.
|
|
1428
|
+
* @name QueryDenomsMetadataResponse
|
|
1429
|
+
* @package cosmos.bank.v1beta1
|
|
1430
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomsMetadataResponse
|
|
1431
|
+
*/
|
|
1320
1432
|
exports.QueryDenomsMetadataResponse = {
|
|
1321
1433
|
typeUrl: "/cosmos.bank.v1beta1.QueryDenomsMetadataResponse",
|
|
1322
1434
|
aminoType: "cosmos-sdk/QueryDenomsMetadataResponse",
|
|
@@ -1414,6 +1526,12 @@ function createBaseQueryDenomMetadataRequest() {
|
|
|
1414
1526
|
denom: ""
|
|
1415
1527
|
};
|
|
1416
1528
|
}
|
|
1529
|
+
/**
|
|
1530
|
+
* QueryDenomMetadataRequest is the request type for the Query/DenomMetadata RPC method.
|
|
1531
|
+
* @name QueryDenomMetadataRequest
|
|
1532
|
+
* @package cosmos.bank.v1beta1
|
|
1533
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataRequest
|
|
1534
|
+
*/
|
|
1417
1535
|
exports.QueryDenomMetadataRequest = {
|
|
1418
1536
|
typeUrl: "/cosmos.bank.v1beta1.QueryDenomMetadataRequest",
|
|
1419
1537
|
aminoType: "cosmos-sdk/QueryDenomMetadataRequest",
|
|
@@ -1491,6 +1609,13 @@ function createBaseQueryDenomMetadataResponse() {
|
|
|
1491
1609
|
metadata: bank_1.Metadata.fromPartial({})
|
|
1492
1610
|
};
|
|
1493
1611
|
}
|
|
1612
|
+
/**
|
|
1613
|
+
* QueryDenomMetadataResponse is the response type for the Query/DenomMetadata RPC
|
|
1614
|
+
* method.
|
|
1615
|
+
* @name QueryDenomMetadataResponse
|
|
1616
|
+
* @package cosmos.bank.v1beta1
|
|
1617
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataResponse
|
|
1618
|
+
*/
|
|
1494
1619
|
exports.QueryDenomMetadataResponse = {
|
|
1495
1620
|
typeUrl: "/cosmos.bank.v1beta1.QueryDenomMetadataResponse",
|
|
1496
1621
|
aminoType: "cosmos-sdk/QueryDenomMetadataResponse",
|
|
@@ -1573,6 +1698,13 @@ function createBaseQueryDenomMetadataByQueryStringRequest() {
|
|
|
1573
1698
|
denom: ""
|
|
1574
1699
|
};
|
|
1575
1700
|
}
|
|
1701
|
+
/**
|
|
1702
|
+
* QueryDenomMetadataByQueryStringRequest is the request type for the Query/DenomMetadata RPC method.
|
|
1703
|
+
* Identical with QueryDenomMetadataRequest but receives denom as query string.
|
|
1704
|
+
* @name QueryDenomMetadataByQueryStringRequest
|
|
1705
|
+
* @package cosmos.bank.v1beta1
|
|
1706
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringRequest
|
|
1707
|
+
*/
|
|
1576
1708
|
exports.QueryDenomMetadataByQueryStringRequest = {
|
|
1577
1709
|
typeUrl: "/cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringRequest",
|
|
1578
1710
|
aminoType: "cosmos-sdk/QueryDenomMetadataByQueryStringRequest",
|
|
@@ -1650,6 +1782,13 @@ function createBaseQueryDenomMetadataByQueryStringResponse() {
|
|
|
1650
1782
|
metadata: bank_1.Metadata.fromPartial({})
|
|
1651
1783
|
};
|
|
1652
1784
|
}
|
|
1785
|
+
/**
|
|
1786
|
+
* QueryDenomMetadataByQueryStringResponse is the response type for the Query/DenomMetadata RPC
|
|
1787
|
+
* method. Identical with QueryDenomMetadataResponse but receives denom as query string in request.
|
|
1788
|
+
* @name QueryDenomMetadataByQueryStringResponse
|
|
1789
|
+
* @package cosmos.bank.v1beta1
|
|
1790
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringResponse
|
|
1791
|
+
*/
|
|
1653
1792
|
exports.QueryDenomMetadataByQueryStringResponse = {
|
|
1654
1793
|
typeUrl: "/cosmos.bank.v1beta1.QueryDenomMetadataByQueryStringResponse",
|
|
1655
1794
|
aminoType: "cosmos-sdk/QueryDenomMetadataByQueryStringResponse",
|
|
@@ -1733,6 +1872,14 @@ function createBaseQueryDenomOwnersRequest() {
|
|
|
1733
1872
|
pagination: undefined
|
|
1734
1873
|
};
|
|
1735
1874
|
}
|
|
1875
|
+
/**
|
|
1876
|
+
* QueryDenomOwnersRequest defines the request type for the DenomOwners RPC query,
|
|
1877
|
+
* which queries for a paginated set of all account holders of a particular
|
|
1878
|
+
* denomination.
|
|
1879
|
+
* @name QueryDenomOwnersRequest
|
|
1880
|
+
* @package cosmos.bank.v1beta1
|
|
1881
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersRequest
|
|
1882
|
+
*/
|
|
1736
1883
|
exports.QueryDenomOwnersRequest = {
|
|
1737
1884
|
typeUrl: "/cosmos.bank.v1beta1.QueryDenomOwnersRequest",
|
|
1738
1885
|
aminoType: "cosmos-sdk/QueryDenomOwnersRequest",
|
|
@@ -1827,6 +1974,16 @@ function createBaseDenomOwner() {
|
|
|
1827
1974
|
balance: coin_1.Coin.fromPartial({})
|
|
1828
1975
|
};
|
|
1829
1976
|
}
|
|
1977
|
+
/**
|
|
1978
|
+
* DenomOwner defines structure representing an account that owns or holds a
|
|
1979
|
+
* particular denominated token. It contains the account address and account
|
|
1980
|
+
* balance of the denominated token.
|
|
1981
|
+
*
|
|
1982
|
+
* Since: cosmos-sdk 0.46
|
|
1983
|
+
* @name DenomOwner
|
|
1984
|
+
* @package cosmos.bank.v1beta1
|
|
1985
|
+
* @see proto type: cosmos.bank.v1beta1.DenomOwner
|
|
1986
|
+
*/
|
|
1830
1987
|
exports.DenomOwner = {
|
|
1831
1988
|
typeUrl: "/cosmos.bank.v1beta1.DenomOwner",
|
|
1832
1989
|
aminoType: "cosmos-sdk/DenomOwner",
|
|
@@ -1921,6 +2078,14 @@ function createBaseQueryDenomOwnersResponse() {
|
|
|
1921
2078
|
pagination: undefined
|
|
1922
2079
|
};
|
|
1923
2080
|
}
|
|
2081
|
+
/**
|
|
2082
|
+
* QueryDenomOwnersResponse defines the RPC response of a DenomOwners RPC query.
|
|
2083
|
+
*
|
|
2084
|
+
* Since: cosmos-sdk 0.46
|
|
2085
|
+
* @name QueryDenomOwnersResponse
|
|
2086
|
+
* @package cosmos.bank.v1beta1
|
|
2087
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersResponse
|
|
2088
|
+
*/
|
|
1924
2089
|
exports.QueryDenomOwnersResponse = {
|
|
1925
2090
|
typeUrl: "/cosmos.bank.v1beta1.QueryDenomOwnersResponse",
|
|
1926
2091
|
aminoType: "cosmos-sdk/QueryDenomOwnersResponse",
|
|
@@ -2019,6 +2184,16 @@ function createBaseQueryDenomOwnersByQueryRequest() {
|
|
|
2019
2184
|
pagination: undefined
|
|
2020
2185
|
};
|
|
2021
2186
|
}
|
|
2187
|
+
/**
|
|
2188
|
+
* QueryDenomOwnersByQueryRequest defines the request type for the DenomOwnersByQuery RPC query,
|
|
2189
|
+
* which queries for a paginated set of all account holders of a particular
|
|
2190
|
+
* denomination.
|
|
2191
|
+
*
|
|
2192
|
+
* Since: cosmos-sdk 0.50.3
|
|
2193
|
+
* @name QueryDenomOwnersByQueryRequest
|
|
2194
|
+
* @package cosmos.bank.v1beta1
|
|
2195
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersByQueryRequest
|
|
2196
|
+
*/
|
|
2022
2197
|
exports.QueryDenomOwnersByQueryRequest = {
|
|
2023
2198
|
typeUrl: "/cosmos.bank.v1beta1.QueryDenomOwnersByQueryRequest",
|
|
2024
2199
|
aminoType: "cosmos-sdk/QueryDenomOwnersByQueryRequest",
|
|
@@ -2113,6 +2288,14 @@ function createBaseQueryDenomOwnersByQueryResponse() {
|
|
|
2113
2288
|
pagination: undefined
|
|
2114
2289
|
};
|
|
2115
2290
|
}
|
|
2291
|
+
/**
|
|
2292
|
+
* QueryDenomOwnersByQueryResponse defines the RPC response of a DenomOwnersByQuery RPC query.
|
|
2293
|
+
*
|
|
2294
|
+
* Since: cosmos-sdk 0.50.3
|
|
2295
|
+
* @name QueryDenomOwnersByQueryResponse
|
|
2296
|
+
* @package cosmos.bank.v1beta1
|
|
2297
|
+
* @see proto type: cosmos.bank.v1beta1.QueryDenomOwnersByQueryResponse
|
|
2298
|
+
*/
|
|
2116
2299
|
exports.QueryDenomOwnersByQueryResponse = {
|
|
2117
2300
|
typeUrl: "/cosmos.bank.v1beta1.QueryDenomOwnersByQueryResponse",
|
|
2118
2301
|
aminoType: "cosmos-sdk/QueryDenomOwnersByQueryResponse",
|
|
@@ -2211,6 +2394,14 @@ function createBaseQuerySendEnabledRequest() {
|
|
|
2211
2394
|
pagination: undefined
|
|
2212
2395
|
};
|
|
2213
2396
|
}
|
|
2397
|
+
/**
|
|
2398
|
+
* QuerySendEnabledRequest defines the RPC request for looking up SendEnabled entries.
|
|
2399
|
+
*
|
|
2400
|
+
* Since: cosmos-sdk 0.47
|
|
2401
|
+
* @name QuerySendEnabledRequest
|
|
2402
|
+
* @package cosmos.bank.v1beta1
|
|
2403
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySendEnabledRequest
|
|
2404
|
+
*/
|
|
2214
2405
|
exports.QuerySendEnabledRequest = {
|
|
2215
2406
|
typeUrl: "/cosmos.bank.v1beta1.QuerySendEnabledRequest",
|
|
2216
2407
|
aminoType: "cosmos-sdk/QuerySendEnabledRequest",
|
|
@@ -2308,6 +2499,14 @@ function createBaseQuerySendEnabledResponse() {
|
|
|
2308
2499
|
pagination: undefined
|
|
2309
2500
|
};
|
|
2310
2501
|
}
|
|
2502
|
+
/**
|
|
2503
|
+
* QuerySendEnabledResponse defines the RPC response of a SendEnable query.
|
|
2504
|
+
*
|
|
2505
|
+
* Since: cosmos-sdk 0.47
|
|
2506
|
+
* @name QuerySendEnabledResponse
|
|
2507
|
+
* @package cosmos.bank.v1beta1
|
|
2508
|
+
* @see proto type: cosmos.bank.v1beta1.QuerySendEnabledResponse
|
|
2509
|
+
*/
|
|
2311
2510
|
exports.QuerySendEnabledResponse = {
|
|
2312
2511
|
typeUrl: "/cosmos.bank.v1beta1.QuerySendEnabledResponse",
|
|
2313
2512
|
aminoType: "cosmos-sdk/QuerySendEnabledResponse",
|
|
@@ -1,14 +1,129 @@
|
|
|
1
1
|
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";
|
|
2
|
+
/**
|
|
3
|
+
* Balance queries the balance of a single coin for a single account.
|
|
4
|
+
* @name getBalance
|
|
5
|
+
* @package cosmos.bank.v1beta1
|
|
6
|
+
* @see proto service: cosmos.bank.v1beta1.Balance
|
|
7
|
+
*/
|
|
2
8
|
export declare const getBalance: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryBalanceRequest) => Promise<QueryBalanceResponse>;
|
|
9
|
+
/**
|
|
10
|
+
* AllBalances queries the balance of all coins for a single account.
|
|
11
|
+
*
|
|
12
|
+
* When called from another module, this query might consume a high amount of
|
|
13
|
+
* gas if the pagination field is incorrectly set.
|
|
14
|
+
* @name getAllBalances
|
|
15
|
+
* @package cosmos.bank.v1beta1
|
|
16
|
+
* @see proto service: cosmos.bank.v1beta1.AllBalances
|
|
17
|
+
*/
|
|
3
18
|
export declare const getAllBalances: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryAllBalancesRequest) => Promise<QueryAllBalancesResponse>;
|
|
19
|
+
/**
|
|
20
|
+
* SpendableBalances queries the spendable balance of all coins for a single
|
|
21
|
+
* account.
|
|
22
|
+
*
|
|
23
|
+
* When called from another module, this query might consume a high amount of
|
|
24
|
+
* gas if the pagination field is incorrectly set.
|
|
25
|
+
*
|
|
26
|
+
* Since: cosmos-sdk 0.46
|
|
27
|
+
* @name getSpendableBalances
|
|
28
|
+
* @package cosmos.bank.v1beta1
|
|
29
|
+
* @see proto service: cosmos.bank.v1beta1.SpendableBalances
|
|
30
|
+
*/
|
|
4
31
|
export declare const getSpendableBalances: (client: import("../../../helper-func-types").EndpointOrRpc, request: QuerySpendableBalancesRequest) => Promise<QuerySpendableBalancesResponse>;
|
|
32
|
+
/**
|
|
33
|
+
* SpendableBalanceByDenom queries the spendable balance of a single denom for
|
|
34
|
+
* a single 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.47
|
|
40
|
+
* @name getSpendableBalanceByDenom
|
|
41
|
+
* @package cosmos.bank.v1beta1
|
|
42
|
+
* @see proto service: cosmos.bank.v1beta1.SpendableBalanceByDenom
|
|
43
|
+
*/
|
|
5
44
|
export declare const getSpendableBalanceByDenom: (client: import("../../../helper-func-types").EndpointOrRpc, request: QuerySpendableBalanceByDenomRequest) => Promise<QuerySpendableBalanceByDenomResponse>;
|
|
45
|
+
/**
|
|
46
|
+
* TotalSupply queries the total supply of all coins.
|
|
47
|
+
*
|
|
48
|
+
* When called from another module, this query might consume a high amount of
|
|
49
|
+
* gas if the pagination field is incorrectly set.
|
|
50
|
+
* @name getTotalSupply
|
|
51
|
+
* @package cosmos.bank.v1beta1
|
|
52
|
+
* @see proto service: cosmos.bank.v1beta1.TotalSupply
|
|
53
|
+
*/
|
|
6
54
|
export declare const getTotalSupply: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryTotalSupplyRequest) => Promise<QueryTotalSupplyResponse>;
|
|
55
|
+
/**
|
|
56
|
+
* SupplyOf queries the supply of a single coin.
|
|
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
|
+
* @name getSupplyOf
|
|
61
|
+
* @package cosmos.bank.v1beta1
|
|
62
|
+
* @see proto service: cosmos.bank.v1beta1.SupplyOf
|
|
63
|
+
*/
|
|
7
64
|
export declare const getSupplyOf: (client: import("../../../helper-func-types").EndpointOrRpc, request: QuerySupplyOfRequest) => Promise<QuerySupplyOfResponse>;
|
|
65
|
+
/**
|
|
66
|
+
* Params queries the parameters of x/bank module.
|
|
67
|
+
* @name getParams
|
|
68
|
+
* @package cosmos.bank.v1beta1
|
|
69
|
+
* @see proto service: cosmos.bank.v1beta1.Params
|
|
70
|
+
*/
|
|
8
71
|
export declare const getParams: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryParamsRequest) => Promise<QueryParamsResponse>;
|
|
72
|
+
/**
|
|
73
|
+
* DenomMetadata queries the client metadata of a given coin denomination.
|
|
74
|
+
* @name getDenomMetadata
|
|
75
|
+
* @package cosmos.bank.v1beta1
|
|
76
|
+
* @see proto service: cosmos.bank.v1beta1.DenomMetadata
|
|
77
|
+
*/
|
|
9
78
|
export declare const getDenomMetadata: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryDenomMetadataRequest) => Promise<QueryDenomMetadataResponse>;
|
|
79
|
+
/**
|
|
80
|
+
* DenomMetadataByQueryString queries the client metadata of a given coin denomination.
|
|
81
|
+
* @name getDenomMetadataByQueryString
|
|
82
|
+
* @package cosmos.bank.v1beta1
|
|
83
|
+
* @see proto service: cosmos.bank.v1beta1.DenomMetadataByQueryString
|
|
84
|
+
*/
|
|
10
85
|
export declare const getDenomMetadataByQueryString: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryDenomMetadataByQueryStringRequest) => Promise<QueryDenomMetadataByQueryStringResponse>;
|
|
86
|
+
/**
|
|
87
|
+
* DenomsMetadata queries the client metadata for all registered coin
|
|
88
|
+
* denominations.
|
|
89
|
+
* @name getDenomsMetadata
|
|
90
|
+
* @package cosmos.bank.v1beta1
|
|
91
|
+
* @see proto service: cosmos.bank.v1beta1.DenomsMetadata
|
|
92
|
+
*/
|
|
11
93
|
export declare const getDenomsMetadata: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryDenomsMetadataRequest) => Promise<QueryDenomsMetadataResponse>;
|
|
94
|
+
/**
|
|
95
|
+
* DenomOwners queries for all account addresses that own a particular token
|
|
96
|
+
* denomination.
|
|
97
|
+
*
|
|
98
|
+
* When called from another module, this query might consume a high amount of
|
|
99
|
+
* gas if the pagination field is incorrectly set.
|
|
100
|
+
*
|
|
101
|
+
* Since: cosmos-sdk 0.46
|
|
102
|
+
* @name getDenomOwners
|
|
103
|
+
* @package cosmos.bank.v1beta1
|
|
104
|
+
* @see proto service: cosmos.bank.v1beta1.DenomOwners
|
|
105
|
+
*/
|
|
12
106
|
export declare const getDenomOwners: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryDenomOwnersRequest) => Promise<QueryDenomOwnersResponse>;
|
|
107
|
+
/**
|
|
108
|
+
* DenomOwnersByQuery queries for all account addresses that own a particular token
|
|
109
|
+
* denomination.
|
|
110
|
+
*
|
|
111
|
+
* Since: cosmos-sdk 0.50.3
|
|
112
|
+
* @name getDenomOwnersByQuery
|
|
113
|
+
* @package cosmos.bank.v1beta1
|
|
114
|
+
* @see proto service: cosmos.bank.v1beta1.DenomOwnersByQuery
|
|
115
|
+
*/
|
|
13
116
|
export declare const getDenomOwnersByQuery: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryDenomOwnersByQueryRequest) => Promise<QueryDenomOwnersByQueryResponse>;
|
|
117
|
+
/**
|
|
118
|
+
* SendEnabled queries for SendEnabled entries.
|
|
119
|
+
*
|
|
120
|
+
* This query only returns denominations that have specific SendEnabled settings.
|
|
121
|
+
* Any denomination that does not have a specific setting will use the default
|
|
122
|
+
* params.default_send_enabled, and will not be returned by this query.
|
|
123
|
+
*
|
|
124
|
+
* Since: cosmos-sdk 0.47
|
|
125
|
+
* @name getSendEnabled
|
|
126
|
+
* @package cosmos.bank.v1beta1
|
|
127
|
+
* @see proto service: cosmos.bank.v1beta1.SendEnabled
|
|
128
|
+
*/
|
|
14
129
|
export declare const getSendEnabled: (client: import("../../../helper-func-types").EndpointOrRpc, request: QuerySendEnabledRequest) => Promise<QuerySendEnabledResponse>;
|