injectivejs 1.11.13 → 1.11.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/auth/v1beta1/auth.d.ts +70 -6
- package/cosmos/auth/v1beta1/auth.js +28 -0
- package/cosmos/auth/v1beta1/query.d.ts +362 -32
- package/cosmos/auth/v1beta1/query.js +148 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +77 -0
- package/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +24 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/cosmos/bank/v1beta1/bank.d.ts +136 -18
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/query.d.ts +619 -86
- package/cosmos/bank/v1beta1/query.js +199 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +115 -0
- package/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/cosmos/bank/v1beta1/tx.d.ts +151 -14
- package/cosmos/bank/v1beta1/tx.js +61 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +32 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/bundle.d.ts +8 -8
- package/cosmos/bundle.js +15 -15
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
- package/cosmos/distribution/v1beta1/tx.js +109 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +57 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
- package/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +22 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/cosmos/gov/v1/gov.d.ts +343 -80
- package/cosmos/gov/v1/gov.js +61 -0
- package/cosmos/gov/v1/tx.d.ts +376 -65
- package/cosmos/gov/v1/tx.js +96 -0
- package/cosmos/gov/v1/tx.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/cosmos/gov/v1beta1/gov.d.ts +293 -61
- package/cosmos/gov/v1beta1/gov.js +59 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/cosmos/gov/v1beta1/tx.d.ts +213 -37
- package/cosmos/gov/v1beta1/tx.js +53 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +26 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/cosmos/group/v1/tx.d.ts +804 -155
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/tx.rpc.func.d.ts +84 -0
- package/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/cosmos/group/v1/types.d.ts +398 -83
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +109 -0
- package/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/cosmos/staking/v1beta1/staking.d.ts +631 -117
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +242 -22
- package/cosmos/staking/v1beta1/tx.js +96 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +50 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +375 -46
- package/cosmos/tx/v1beta1/service.js +145 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +64 -0
- package/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/cosmos/tx/v1beta1/tx.d.ts +303 -46
- package/cosmos/tx/v1beta1/tx.js +99 -0
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
- package/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +102 -6
- package/cosmos/vesting/v1beta1/tx.js +48 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +25 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/cosmos/vesting/v1beta1/vesting.d.ts +105 -8
- package/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/cosmwasm/bundle.d.ts +2 -2
- package/cosmwasm/bundle.js +3 -3
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
- package/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/cosmwasm/wasm/v1/query.d.ts +615 -82
- package/cosmwasm/wasm/v1/query.js +195 -0
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +85 -0
- package/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/cosmwasm/wasm/v1/tx.d.ts +956 -170
- package/cosmwasm/wasm/v1/tx.js +242 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +128 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/cosmwasm/wasm/v1/types.d.ts +217 -40
- package/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/auth/v1beta1/auth.js +28 -0
- package/esm/cosmos/auth/v1beta1/query.js +148 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/query.js +199 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/esm/cosmos/bank/v1beta1/tx.js +61 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/bundle.js +8 -8
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/tx.js +109 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/esm/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/esm/cosmos/gov/v1/gov.js +61 -0
- package/esm/cosmos/gov/v1/tx.js +96 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/esm/cosmos/gov/v1beta1/gov.js +59 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/esm/cosmos/gov/v1beta1/tx.js +53 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +96 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +145 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/esm/cosmos/tx/v1beta1/tx.js +99 -0
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +48 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/esm/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/cosmwasm/bundle.js +2 -2
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/esm/cosmwasm/wasm/v1/query.js +195 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/esm/cosmwasm/wasm/v1/tx.js +242 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/esm/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/extern.js +1 -1
- package/esm/google/api/http.js +283 -0
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +215 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helper-func-types.js +1 -1
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/transfer/v1/transfer.js +24 -0
- package/esm/ibc/applications/transfer/v1/tx.js +27 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/esm/ibc/bundle.js +1 -1
- package/esm/ibc/core/channel/v1/channel.js +70 -0
- package/esm/ibc/core/channel/v1/tx.js +242 -0
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/esm/ibc/core/channel/v1/upgrade.js +25 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/tx.js +90 -0
- package/esm/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/esm/index.js +1 -1
- package/esm/injective/auction/v1beta1/auction.js +30 -0
- package/esm/injective/auction/v1beta1/genesis.js +6 -0
- package/esm/injective/auction/v1beta1/query.js +52 -0
- package/esm/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/esm/injective/auction/v1beta1/tx.js +21 -0
- package/esm/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/esm/injective/bundle.js +14 -14
- package/esm/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/esm/injective/exchange/v1beta1/authz.js +58 -0
- package/esm/injective/exchange/v1beta1/events.js +180 -0
- package/esm/injective/exchange/v1beta1/exchange.js +263 -0
- package/esm/injective/exchange/v1beta1/genesis.js +89 -0
- package/esm/injective/exchange/v1beta1/proposal.js +113 -0
- package/esm/injective/exchange/v1beta1/query.js +864 -0
- package/esm/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/esm/injective/exchange/v1beta1/tx.js +487 -0
- package/esm/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/esm/injective/insurance/v1beta1/events.js +25 -0
- package/esm/injective/insurance/v1beta1/genesis.js +6 -0
- package/esm/injective/insurance/v1beta1/insurance.js +15 -0
- package/esm/injective/insurance/v1beta1/query.js +84 -0
- package/esm/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/esm/injective/insurance/v1beta1/tx.js +46 -0
- package/esm/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/esm/injective/ocr/v1beta1/genesis.js +41 -0
- package/esm/injective/ocr/v1beta1/ocr.js +108 -0
- package/esm/injective/ocr/v1beta1/query.js +70 -0
- package/esm/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/esm/injective/ocr/v1beta1/tx.js +90 -0
- package/esm/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/esm/injective/oracle/v1beta1/events.js +56 -0
- package/esm/injective/oracle/v1beta1/genesis.js +11 -0
- package/esm/injective/oracle/v1beta1/oracle.js +122 -0
- package/esm/injective/oracle/v1beta1/proposal.js +55 -0
- package/esm/injective/oracle/v1beta1/query.js +240 -0
- package/esm/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/esm/injective/oracle/v1beta1/tx.js +93 -0
- package/esm/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/esm/injective/peggy/v1/attestation.js +31 -0
- package/esm/injective/peggy/v1/batch.js +12 -0
- package/esm/injective/peggy/v1/events.js +85 -0
- package/esm/injective/peggy/v1/genesis.js +6 -0
- package/esm/injective/peggy/v1/msgs.js +223 -0
- package/esm/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/esm/injective/peggy/v1/params.js +5 -0
- package/esm/injective/peggy/v1/pool.js +11 -0
- package/esm/injective/peggy/v1/proposal.js +10 -0
- package/esm/injective/peggy/v1/query.js +214 -0
- package/esm/injective/peggy/v1/query.rpc.func.js +110 -5
- package/esm/injective/peggy/v1/types.js +37 -0
- package/esm/injective/permissions/v1beta1/events.js +5 -0
- package/esm/injective/permissions/v1beta1/genesis.js +6 -0
- package/esm/injective/permissions/v1beta1/params.js +6 -0
- package/esm/injective/permissions/v1beta1/permissions.js +33 -0
- package/esm/injective/permissions/v1beta1/query.js +74 -0
- package/esm/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/esm/injective/permissions/v1beta1/tx.js +90 -0
- package/esm/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/esm/injective/stream/v1beta1/query.js +110 -0
- package/esm/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/esm/injective/tokenfactory/v1beta1/events.js +25 -0
- package/esm/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/esm/injective/tokenfactory/v1beta1/params.js +6 -0
- package/esm/injective/tokenfactory/v1beta1/query.js +54 -0
- package/esm/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/esm/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/esm/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/esm/injective/types/v1beta1/account.js +7 -0
- package/esm/injective/types/v1beta1/tx_ext.js +5 -0
- package/esm/injective/types/v1beta1/tx_response.js +13 -0
- package/esm/injective/wasmx/v1/events.js +15 -0
- package/esm/injective/wasmx/v1/genesis.js +11 -0
- package/esm/injective/wasmx/v1/proposal.js +25 -0
- package/esm/injective/wasmx/v1/query.js +39 -0
- package/esm/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/esm/injective/wasmx/v1/tx.js +63 -0
- package/esm/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/esm/injective/wasmx/v1/wasmx.js +10 -0
- package/esm/registry.js +1 -1
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/extern.d.ts +1 -1
- package/extern.js +1 -1
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +715 -86
- package/google/protobuf/descriptor.js +215 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helper-func-types.d.ts +1 -1
- package/helper-func-types.js +1 -1
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/transfer/v1/transfer.d.ts +54 -4
- package/ibc/applications/transfer/v1/transfer.js +24 -0
- package/ibc/applications/transfer/v1/tx.d.ts +125 -26
- package/ibc/applications/transfer/v1/tx.js +27 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +12 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/ibc/bundle.d.ts +1 -1
- package/ibc/bundle.js +2 -2
- package/ibc/core/channel/v1/channel.d.ts +316 -64
- package/ibc/core/channel/v1/channel.js +70 -0
- package/ibc/core/channel/v1/tx.d.ts +676 -70
- package/ibc/core/channel/v1/tx.js +242 -0
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +115 -0
- package/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/ibc/core/channel/v1/upgrade.d.ts +55 -4
- package/ibc/core/channel/v1/upgrade.js +25 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/tx.d.ts +338 -56
- package/ibc/core/client/v1/tx.js +90 -0
- package/ibc/core/client/v1/tx.rpc.func.d.ts +42 -0
- package/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +32 -0
- package/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/injective/auction/v1beta1/auction.d.ts +168 -26
- package/injective/auction/v1beta1/auction.js +30 -0
- package/injective/auction/v1beta1/genesis.d.ts +48 -12
- package/injective/auction/v1beta1/genesis.js +6 -0
- package/injective/auction/v1beta1/query.d.ts +138 -10
- package/injective/auction/v1beta1/query.js +52 -0
- package/injective/auction/v1beta1/query.rpc.func.d.ts +23 -0
- package/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/injective/auction/v1beta1/tx.d.ts +81 -8
- package/injective/auction/v1beta1/tx.js +21 -0
- package/injective/auction/v1beta1/tx.rpc.func.d.ts +11 -0
- package/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/injective/bundle.d.ts +14 -14
- package/injective/bundle.js +18 -18
- package/injective/crypto/v1beta1/ethsecp256k1/keys.d.ts +27 -0
- package/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/injective/exchange/v1beta1/authz.d.ts +174 -6
- package/injective/exchange/v1beta1/authz.js +58 -0
- package/injective/exchange/v1beta1/events.d.ts +546 -2
- package/injective/exchange/v1beta1/events.js +180 -0
- package/injective/exchange/v1beta1/exchange.d.ts +1305 -188
- package/injective/exchange/v1beta1/exchange.js +263 -0
- package/injective/exchange/v1beta1/genesis.d.ts +357 -38
- package/injective/exchange/v1beta1/genesis.js +89 -0
- package/injective/exchange/v1beta1/proposal.d.ts +589 -94
- package/injective/exchange/v1beta1/proposal.js +113 -0
- package/injective/exchange/v1beta1/query.d.ts +2162 -136
- package/injective/exchange/v1beta1/query.js +864 -0
- package/injective/exchange/v1beta1/query.rpc.func.d.ts +364 -0
- package/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/injective/exchange/v1beta1/tx.d.ts +1503 -170
- package/injective/exchange/v1beta1/tx.js +487 -0
- package/injective/exchange/v1beta1/tx.rpc.func.d.ts +228 -0
- package/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/injective/insurance/v1beta1/events.d.ts +111 -12
- package/injective/insurance/v1beta1/events.js +25 -0
- package/injective/insurance/v1beta1/genesis.d.ts +30 -6
- package/injective/insurance/v1beta1/genesis.js +6 -0
- package/injective/insurance/v1beta1/insurance.d.ts +117 -24
- package/injective/insurance/v1beta1/insurance.js +15 -0
- package/injective/insurance/v1beta1/query.d.ts +162 -2
- package/injective/insurance/v1beta1/query.js +84 -0
- package/injective/insurance/v1beta1/query.rpc.func.d.ts +37 -0
- package/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/injective/insurance/v1beta1/tx.d.ts +186 -24
- package/injective/insurance/v1beta1/tx.js +46 -0
- package/injective/insurance/v1beta1/tx.rpc.func.d.ts +25 -0
- package/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/injective/ocr/v1beta1/genesis.d.ts +171 -18
- package/injective/ocr/v1beta1/genesis.js +41 -0
- package/injective/ocr/v1beta1/ocr.d.ts +514 -68
- package/injective/ocr/v1beta1/ocr.js +108 -0
- package/injective/ocr/v1beta1/query.d.ts +210 -0
- package/injective/ocr/v1beta1/query.js +70 -0
- package/injective/ocr/v1beta1/query.rpc.func.d.ts +42 -0
- package/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/injective/ocr/v1beta1/tx.d.ts +360 -30
- package/injective/ocr/v1beta1/tx.js +90 -0
- package/injective/ocr/v1beta1/tx.rpc.func.d.ts +57 -0
- package/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/injective/oracle/v1beta1/events.d.ts +174 -4
- package/injective/oracle/v1beta1/events.js +56 -0
- package/injective/oracle/v1beta1/genesis.d.ts +39 -4
- package/injective/oracle/v1beta1/genesis.js +11 -0
- package/injective/oracle/v1beta1/oracle.d.ts +514 -52
- package/injective/oracle/v1beta1/oracle.js +122 -0
- package/injective/oracle/v1beta1/proposal.d.ts +165 -0
- package/injective/oracle/v1beta1/proposal.js +55 -0
- package/injective/oracle/v1beta1/query.d.ts +502 -0
- package/injective/oracle/v1beta1/query.js +240 -0
- package/injective/oracle/v1beta1/query.rpc.func.d.ts +98 -0
- package/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/injective/oracle/v1beta1/tx.d.ts +251 -10
- package/injective/oracle/v1beta1/tx.js +93 -0
- package/injective/oracle/v1beta1/tx.rpc.func.d.ts +52 -0
- package/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/injective/peggy/v1/attestation.d.ts +43 -0
- package/injective/peggy/v1/attestation.js +31 -0
- package/injective/peggy/v1/batch.d.ts +36 -4
- package/injective/peggy/v1/batch.js +12 -0
- package/injective/peggy/v1/events.d.ts +255 -0
- package/injective/peggy/v1/events.js +85 -0
- package/injective/peggy/v1/genesis.d.ts +18 -2
- package/injective/peggy/v1/genesis.js +6 -0
- package/injective/peggy/v1/msgs.d.ts +473 -10
- package/injective/peggy/v1/msgs.js +223 -0
- package/injective/peggy/v1/msgs.rpc.func.d.ts +73 -0
- package/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/injective/peggy/v1/params.d.ts +15 -0
- package/injective/peggy/v1/params.js +5 -0
- package/injective/peggy/v1/pool.d.ts +33 -2
- package/injective/peggy/v1/pool.js +11 -0
- package/injective/peggy/v1/proposal.d.ts +30 -0
- package/injective/peggy/v1/proposal.js +10 -0
- package/injective/peggy/v1/query.d.ts +626 -0
- package/injective/peggy/v1/query.js +214 -0
- package/injective/peggy/v1/query.rpc.func.d.ts +110 -0
- package/injective/peggy/v1/query.rpc.func.js +110 -5
- package/injective/peggy/v1/types.d.ts +85 -6
- package/injective/peggy/v1/types.js +37 -0
- package/injective/permissions/v1beta1/events.d.ts +15 -0
- package/injective/permissions/v1beta1/events.js +5 -0
- package/injective/permissions/v1beta1/genesis.d.ts +24 -4
- package/injective/permissions/v1beta1/genesis.js +6 -0
- package/injective/permissions/v1beta1/params.d.ts +18 -2
- package/injective/permissions/v1beta1/params.js +6 -0
- package/injective/permissions/v1beta1/permissions.d.ts +117 -12
- package/injective/permissions/v1beta1/permissions.js +33 -0
- package/injective/permissions/v1beta1/query.d.ts +180 -6
- package/injective/permissions/v1beta1/query.js +74 -0
- package/injective/permissions/v1beta1/query.rpc.func.d.ts +43 -0
- package/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/injective/permissions/v1beta1/tx.d.ts +318 -16
- package/injective/permissions/v1beta1/tx.js +90 -0
- package/injective/permissions/v1beta1/tx.rpc.func.d.ts +35 -0
- package/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/injective/stream/v1beta1/query.d.ts +336 -2
- package/injective/stream/v1beta1/query.js +110 -0
- package/injective/tokenfactory/v1beta1/authorityMetadata.d.ts +20 -2
- package/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/injective/tokenfactory/v1beta1/events.d.ts +75 -0
- package/injective/tokenfactory/v1beta1/events.js +25 -0
- package/injective/tokenfactory/v1beta1/genesis.d.ts +38 -4
- package/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/injective/tokenfactory/v1beta1/params.d.ts +18 -2
- package/injective/tokenfactory/v1beta1/params.js +6 -0
- package/injective/tokenfactory/v1beta1/query.d.ts +120 -6
- package/injective/tokenfactory/v1beta1/query.js +54 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.d.ts +27 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/injective/tokenfactory/v1beta1/tx.d.ts +183 -4
- package/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.d.ts +30 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/injective/types/v1beta1/account.d.ts +13 -0
- package/injective/types/v1beta1/account.js +7 -0
- package/injective/types/v1beta1/tx_ext.d.ts +15 -0
- package/injective/types/v1beta1/tx_ext.js +5 -0
- package/injective/types/v1beta1/tx_response.d.ts +31 -2
- package/injective/types/v1beta1/tx_response.js +13 -0
- package/injective/wasmx/v1/events.d.ts +45 -0
- package/injective/wasmx/v1/events.js +15 -0
- package/injective/wasmx/v1/genesis.d.ts +39 -4
- package/injective/wasmx/v1/genesis.js +11 -0
- package/injective/wasmx/v1/proposal.d.ts +99 -8
- package/injective/wasmx/v1/proposal.js +25 -0
- package/injective/wasmx/v1/query.d.ts +85 -2
- package/injective/wasmx/v1/query.js +39 -0
- package/injective/wasmx/v1/query.rpc.func.d.ts +18 -0
- package/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/injective/wasmx/v1/tx.d.ts +253 -26
- package/injective/wasmx/v1/tx.js +63 -0
- package/injective/wasmx/v1/tx.rpc.func.d.ts +30 -0
- package/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/injective/wasmx/v1/wasmx.d.ts +60 -10
- package/injective/wasmx/v1/wasmx.js +10 -0
- package/package.json +9 -9
- package/registry.d.ts +1 -1
- package/registry.js +1 -1
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
|
@@ -1,36 +1,264 @@
|
|
|
1
1
|
import { MsgDeposit, MsgWithdraw, MsgInstantSpotMarketLaunch, MsgInstantPerpetualMarketLaunch, MsgInstantExpiryFuturesMarketLaunch, MsgCreateSpotLimitOrder, MsgBatchCreateSpotLimitOrders, MsgCreateSpotMarketOrder, MsgCancelSpotOrder, MsgBatchCancelSpotOrders, MsgBatchUpdateOrders, MsgPrivilegedExecuteContract, MsgCreateDerivativeLimitOrder, MsgBatchCreateDerivativeLimitOrders, MsgCreateDerivativeMarketOrder, MsgCancelDerivativeOrder, MsgBatchCancelDerivativeOrders, MsgInstantBinaryOptionsMarketLaunch, MsgCreateBinaryOptionsLimitOrder, MsgCreateBinaryOptionsMarketOrder, MsgCancelBinaryOptionsOrder, MsgBatchCancelBinaryOptionsOrders, MsgSubaccountTransfer, MsgExternalTransfer, MsgLiquidatePosition, MsgEmergencySettleMarket, MsgIncreasePositionMargin, MsgDecreasePositionMargin, MsgRewardsOptOut, MsgAdminUpdateBinaryOptionsMarket, MsgUpdateParams, MsgUpdateSpotMarket, MsgUpdateDerivativeMarket, MsgAuthorizeStakeGrants, MsgActivateStakeGrant } from "./tx";
|
|
2
|
+
/**
|
|
3
|
+
* Deposit defines a method for transferring coins from the sender's bank
|
|
4
|
+
* balance into the subaccount's exchange deposits
|
|
5
|
+
* @name deposit
|
|
6
|
+
* @package injective.exchange.v1beta1
|
|
7
|
+
* @see proto service: injective.exchange.v1beta1.Deposit
|
|
8
|
+
*/
|
|
2
9
|
export declare const deposit: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgDeposit | MsgDeposit[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
10
|
+
/**
|
|
11
|
+
* Withdraw defines a method for withdrawing coins from a subaccount's
|
|
12
|
+
* deposits to the user's bank balance
|
|
13
|
+
* @name withdraw
|
|
14
|
+
* @package injective.exchange.v1beta1
|
|
15
|
+
* @see proto service: injective.exchange.v1beta1.Withdraw
|
|
16
|
+
*/
|
|
3
17
|
export declare const withdraw: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgWithdraw | MsgWithdraw[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
18
|
+
/**
|
|
19
|
+
* InstantSpotMarketLaunch defines method for creating a spot market by paying
|
|
20
|
+
* listing fee without governance
|
|
21
|
+
* @name instantSpotMarketLaunch
|
|
22
|
+
* @package injective.exchange.v1beta1
|
|
23
|
+
* @see proto service: injective.exchange.v1beta1.InstantSpotMarketLaunch
|
|
24
|
+
*/
|
|
4
25
|
export declare const instantSpotMarketLaunch: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgInstantSpotMarketLaunch | MsgInstantSpotMarketLaunch[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
26
|
+
/**
|
|
27
|
+
* InstantPerpetualMarketLaunch defines a method for creating a new perpetual
|
|
28
|
+
* futures market by paying listing fee without governance
|
|
29
|
+
* @name instantPerpetualMarketLaunch
|
|
30
|
+
* @package injective.exchange.v1beta1
|
|
31
|
+
* @see proto service: injective.exchange.v1beta1.InstantPerpetualMarketLaunch
|
|
32
|
+
*/
|
|
5
33
|
export declare const instantPerpetualMarketLaunch: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgInstantPerpetualMarketLaunch | MsgInstantPerpetualMarketLaunch[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
34
|
+
/**
|
|
35
|
+
* InstantExpiryFuturesMarketLaunch defines a method for creating a new expiry
|
|
36
|
+
* futures market by paying listing fee without governance
|
|
37
|
+
* @name instantExpiryFuturesMarketLaunch
|
|
38
|
+
* @package injective.exchange.v1beta1
|
|
39
|
+
* @see proto service: injective.exchange.v1beta1.InstantExpiryFuturesMarketLaunch
|
|
40
|
+
*/
|
|
6
41
|
export declare const instantExpiryFuturesMarketLaunch: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgInstantExpiryFuturesMarketLaunch | MsgInstantExpiryFuturesMarketLaunch[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
42
|
+
/**
|
|
43
|
+
* CreateSpotLimitOrder defines a method for creating a new spot limit order.
|
|
44
|
+
* @name createSpotLimitOrder
|
|
45
|
+
* @package injective.exchange.v1beta1
|
|
46
|
+
* @see proto service: injective.exchange.v1beta1.CreateSpotLimitOrder
|
|
47
|
+
*/
|
|
7
48
|
export declare const createSpotLimitOrder: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreateSpotLimitOrder | MsgCreateSpotLimitOrder[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
49
|
+
/**
|
|
50
|
+
* BatchCreateSpotLimitOrder defines a method for creating a new batch of spot
|
|
51
|
+
* limit orders.
|
|
52
|
+
* @name batchCreateSpotLimitOrders
|
|
53
|
+
* @package injective.exchange.v1beta1
|
|
54
|
+
* @see proto service: injective.exchange.v1beta1.BatchCreateSpotLimitOrders
|
|
55
|
+
*/
|
|
8
56
|
export declare const batchCreateSpotLimitOrders: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgBatchCreateSpotLimitOrders | MsgBatchCreateSpotLimitOrders[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
57
|
+
/**
|
|
58
|
+
* CreateSpotMarketOrder defines a method for creating a new spot market
|
|
59
|
+
* order.
|
|
60
|
+
* @name createSpotMarketOrder
|
|
61
|
+
* @package injective.exchange.v1beta1
|
|
62
|
+
* @see proto service: injective.exchange.v1beta1.CreateSpotMarketOrder
|
|
63
|
+
*/
|
|
9
64
|
export declare const createSpotMarketOrder: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreateSpotMarketOrder | MsgCreateSpotMarketOrder[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
65
|
+
/**
|
|
66
|
+
* MsgCancelSpotOrder defines a method for cancelling a spot order.
|
|
67
|
+
* @name cancelSpotOrder
|
|
68
|
+
* @package injective.exchange.v1beta1
|
|
69
|
+
* @see proto service: injective.exchange.v1beta1.CancelSpotOrder
|
|
70
|
+
*/
|
|
10
71
|
export declare const cancelSpotOrder: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCancelSpotOrder | MsgCancelSpotOrder[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
72
|
+
/**
|
|
73
|
+
* BatchCancelSpotOrders defines a method for cancelling a batch of spot
|
|
74
|
+
* orders in a given market.
|
|
75
|
+
* @name batchCancelSpotOrders
|
|
76
|
+
* @package injective.exchange.v1beta1
|
|
77
|
+
* @see proto service: injective.exchange.v1beta1.BatchCancelSpotOrders
|
|
78
|
+
*/
|
|
11
79
|
export declare const batchCancelSpotOrders: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgBatchCancelSpotOrders | MsgBatchCancelSpotOrders[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
80
|
+
/**
|
|
81
|
+
* BatchUpdateOrders defines a method for updating a batch of orders.
|
|
82
|
+
* @name batchUpdateOrders
|
|
83
|
+
* @package injective.exchange.v1beta1
|
|
84
|
+
* @see proto service: injective.exchange.v1beta1.BatchUpdateOrders
|
|
85
|
+
*/
|
|
12
86
|
export declare const batchUpdateOrders: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgBatchUpdateOrders | MsgBatchUpdateOrders[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
87
|
+
/**
|
|
88
|
+
* PrivilegedExecuteContract defines a method for executing a Cosmwasm
|
|
89
|
+
* contract from the exchange module with privileged capabilities.
|
|
90
|
+
* @name privilegedExecuteContract
|
|
91
|
+
* @package injective.exchange.v1beta1
|
|
92
|
+
* @see proto service: injective.exchange.v1beta1.PrivilegedExecuteContract
|
|
93
|
+
*/
|
|
13
94
|
export declare const privilegedExecuteContract: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgPrivilegedExecuteContract | MsgPrivilegedExecuteContract[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
95
|
+
/**
|
|
96
|
+
* CreateDerivativeLimitOrder defines a method for creating a new derivative
|
|
97
|
+
* limit order.
|
|
98
|
+
* @name createDerivativeLimitOrder
|
|
99
|
+
* @package injective.exchange.v1beta1
|
|
100
|
+
* @see proto service: injective.exchange.v1beta1.CreateDerivativeLimitOrder
|
|
101
|
+
*/
|
|
14
102
|
export declare const createDerivativeLimitOrder: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreateDerivativeLimitOrder | MsgCreateDerivativeLimitOrder[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
103
|
+
/**
|
|
104
|
+
* BatchCreateDerivativeLimitOrders defines a method for creating a new batch
|
|
105
|
+
* of derivative limit orders.
|
|
106
|
+
* @name batchCreateDerivativeLimitOrders
|
|
107
|
+
* @package injective.exchange.v1beta1
|
|
108
|
+
* @see proto service: injective.exchange.v1beta1.BatchCreateDerivativeLimitOrders
|
|
109
|
+
*/
|
|
15
110
|
export declare const batchCreateDerivativeLimitOrders: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgBatchCreateDerivativeLimitOrders | MsgBatchCreateDerivativeLimitOrders[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
111
|
+
/**
|
|
112
|
+
* MsgCreateDerivativeLimitOrder defines a method for creating a new
|
|
113
|
+
* derivative market order.
|
|
114
|
+
* @name createDerivativeMarketOrder
|
|
115
|
+
* @package injective.exchange.v1beta1
|
|
116
|
+
* @see proto service: injective.exchange.v1beta1.CreateDerivativeMarketOrder
|
|
117
|
+
*/
|
|
16
118
|
export declare const createDerivativeMarketOrder: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreateDerivativeMarketOrder | MsgCreateDerivativeMarketOrder[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
119
|
+
/**
|
|
120
|
+
* MsgCancelDerivativeOrder defines a method for cancelling a derivative
|
|
121
|
+
* order.
|
|
122
|
+
* @name cancelDerivativeOrder
|
|
123
|
+
* @package injective.exchange.v1beta1
|
|
124
|
+
* @see proto service: injective.exchange.v1beta1.CancelDerivativeOrder
|
|
125
|
+
*/
|
|
17
126
|
export declare const cancelDerivativeOrder: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCancelDerivativeOrder | MsgCancelDerivativeOrder[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
127
|
+
/**
|
|
128
|
+
* MsgBatchCancelDerivativeOrders defines a method for cancelling a batch of
|
|
129
|
+
* derivative limit orders.
|
|
130
|
+
* @name batchCancelDerivativeOrders
|
|
131
|
+
* @package injective.exchange.v1beta1
|
|
132
|
+
* @see proto service: injective.exchange.v1beta1.BatchCancelDerivativeOrders
|
|
133
|
+
*/
|
|
18
134
|
export declare const batchCancelDerivativeOrders: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgBatchCancelDerivativeOrders | MsgBatchCancelDerivativeOrders[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
135
|
+
/**
|
|
136
|
+
* InstantBinaryOptionsMarketLaunch defines method for creating a binary
|
|
137
|
+
* options market by paying listing fee without governance
|
|
138
|
+
* @name instantBinaryOptionsMarketLaunch
|
|
139
|
+
* @package injective.exchange.v1beta1
|
|
140
|
+
* @see proto service: injective.exchange.v1beta1.InstantBinaryOptionsMarketLaunch
|
|
141
|
+
*/
|
|
19
142
|
export declare const instantBinaryOptionsMarketLaunch: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgInstantBinaryOptionsMarketLaunch | MsgInstantBinaryOptionsMarketLaunch[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
143
|
+
/**
|
|
144
|
+
* CreateBinaryOptionsLimitOrder defines a method for creating a new binary
|
|
145
|
+
* options limit order.
|
|
146
|
+
* @name createBinaryOptionsLimitOrder
|
|
147
|
+
* @package injective.exchange.v1beta1
|
|
148
|
+
* @see proto service: injective.exchange.v1beta1.CreateBinaryOptionsLimitOrder
|
|
149
|
+
*/
|
|
20
150
|
export declare const createBinaryOptionsLimitOrder: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreateBinaryOptionsLimitOrder | MsgCreateBinaryOptionsLimitOrder[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
151
|
+
/**
|
|
152
|
+
* CreateBinaryOptionsMarketOrder defines a method for creating a new binary
|
|
153
|
+
* options market order.
|
|
154
|
+
* @name createBinaryOptionsMarketOrder
|
|
155
|
+
* @package injective.exchange.v1beta1
|
|
156
|
+
* @see proto service: injective.exchange.v1beta1.CreateBinaryOptionsMarketOrder
|
|
157
|
+
*/
|
|
21
158
|
export declare const createBinaryOptionsMarketOrder: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCreateBinaryOptionsMarketOrder | MsgCreateBinaryOptionsMarketOrder[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
159
|
+
/**
|
|
160
|
+
* MsgCancelBinaryOptionsOrder defines a method for cancelling a binary
|
|
161
|
+
* options order.
|
|
162
|
+
* @name cancelBinaryOptionsOrder
|
|
163
|
+
* @package injective.exchange.v1beta1
|
|
164
|
+
* @see proto service: injective.exchange.v1beta1.CancelBinaryOptionsOrder
|
|
165
|
+
*/
|
|
22
166
|
export declare const cancelBinaryOptionsOrder: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgCancelBinaryOptionsOrder | MsgCancelBinaryOptionsOrder[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
167
|
+
/**
|
|
168
|
+
* BatchCancelBinaryOptionsOrders defines a method for cancelling a batch of
|
|
169
|
+
* binary options limit orders.
|
|
170
|
+
* @name batchCancelBinaryOptionsOrders
|
|
171
|
+
* @package injective.exchange.v1beta1
|
|
172
|
+
* @see proto service: injective.exchange.v1beta1.BatchCancelBinaryOptionsOrders
|
|
173
|
+
*/
|
|
23
174
|
export declare const batchCancelBinaryOptionsOrders: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgBatchCancelBinaryOptionsOrders | MsgBatchCancelBinaryOptionsOrders[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
175
|
+
/**
|
|
176
|
+
* SubaccountTransfer defines a method for transfer between subaccounts
|
|
177
|
+
* @name subaccountTransfer
|
|
178
|
+
* @package injective.exchange.v1beta1
|
|
179
|
+
* @see proto service: injective.exchange.v1beta1.SubaccountTransfer
|
|
180
|
+
*/
|
|
24
181
|
export declare const subaccountTransfer: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgSubaccountTransfer | MsgSubaccountTransfer[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
182
|
+
/**
|
|
183
|
+
* ExternalTransfer defines a method for transfer between external accounts
|
|
184
|
+
* @name externalTransfer
|
|
185
|
+
* @package injective.exchange.v1beta1
|
|
186
|
+
* @see proto service: injective.exchange.v1beta1.ExternalTransfer
|
|
187
|
+
*/
|
|
25
188
|
export declare const externalTransfer: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgExternalTransfer | MsgExternalTransfer[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
189
|
+
/**
|
|
190
|
+
* LiquidatePosition defines a method for liquidating a position
|
|
191
|
+
* @name liquidatePosition
|
|
192
|
+
* @package injective.exchange.v1beta1
|
|
193
|
+
* @see proto service: injective.exchange.v1beta1.LiquidatePosition
|
|
194
|
+
*/
|
|
26
195
|
export declare const liquidatePosition: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgLiquidatePosition | MsgLiquidatePosition[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
196
|
+
/**
|
|
197
|
+
* EmergencySettleMarket defines a method for emergency settling a market
|
|
198
|
+
* @name emergencySettleMarket
|
|
199
|
+
* @package injective.exchange.v1beta1
|
|
200
|
+
* @see proto service: injective.exchange.v1beta1.EmergencySettleMarket
|
|
201
|
+
*/
|
|
27
202
|
export declare const emergencySettleMarket: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgEmergencySettleMarket | MsgEmergencySettleMarket[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
203
|
+
/**
|
|
204
|
+
* IncreasePositionMargin defines a method for increasing margin of a position
|
|
205
|
+
* @name increasePositionMargin
|
|
206
|
+
* @package injective.exchange.v1beta1
|
|
207
|
+
* @see proto service: injective.exchange.v1beta1.IncreasePositionMargin
|
|
208
|
+
*/
|
|
28
209
|
export declare const increasePositionMargin: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgIncreasePositionMargin | MsgIncreasePositionMargin[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
210
|
+
/**
|
|
211
|
+
* DecreasePositionMargin defines a method for decreasing margin of a position
|
|
212
|
+
* @name decreasePositionMargin
|
|
213
|
+
* @package injective.exchange.v1beta1
|
|
214
|
+
* @see proto service: injective.exchange.v1beta1.DecreasePositionMargin
|
|
215
|
+
*/
|
|
29
216
|
export declare const decreasePositionMargin: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgDecreasePositionMargin | MsgDecreasePositionMargin[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
217
|
+
/**
|
|
218
|
+
* RewardsOptOut defines a method for opting out of rewards
|
|
219
|
+
* @name rewardsOptOut
|
|
220
|
+
* @package injective.exchange.v1beta1
|
|
221
|
+
* @see proto service: injective.exchange.v1beta1.RewardsOptOut
|
|
222
|
+
*/
|
|
30
223
|
export declare const rewardsOptOut: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgRewardsOptOut | MsgRewardsOptOut[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
224
|
+
/**
|
|
225
|
+
* AdminUpdateBinaryOptionsMarket defines method for updating a binary options
|
|
226
|
+
* market by admin
|
|
227
|
+
* @name adminUpdateBinaryOptionsMarket
|
|
228
|
+
* @package injective.exchange.v1beta1
|
|
229
|
+
* @see proto service: injective.exchange.v1beta1.AdminUpdateBinaryOptionsMarket
|
|
230
|
+
*/
|
|
31
231
|
export declare const adminUpdateBinaryOptionsMarket: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgAdminUpdateBinaryOptionsMarket | MsgAdminUpdateBinaryOptionsMarket[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
232
|
+
/**
|
|
233
|
+
* @name updateParams
|
|
234
|
+
* @package injective.exchange.v1beta1
|
|
235
|
+
* @see proto service: injective.exchange.v1beta1.UpdateParams
|
|
236
|
+
*/
|
|
32
237
|
export declare const updateParams: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateParams | MsgUpdateParams[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
238
|
+
/**
|
|
239
|
+
* UpdateSpotMarket modifies certain spot market fields (admin only)
|
|
240
|
+
* @name updateSpotMarket
|
|
241
|
+
* @package injective.exchange.v1beta1
|
|
242
|
+
* @see proto service: injective.exchange.v1beta1.UpdateSpotMarket
|
|
243
|
+
*/
|
|
33
244
|
export declare const updateSpotMarket: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateSpotMarket | MsgUpdateSpotMarket[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
245
|
+
/**
|
|
246
|
+
* UpdateDerivativeMarket modifies certain derivative market fields (admin
|
|
247
|
+
* only)
|
|
248
|
+
* @name updateDerivativeMarket
|
|
249
|
+
* @package injective.exchange.v1beta1
|
|
250
|
+
* @see proto service: injective.exchange.v1beta1.UpdateDerivativeMarket
|
|
251
|
+
*/
|
|
34
252
|
export declare const updateDerivativeMarket: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgUpdateDerivativeMarket | MsgUpdateDerivativeMarket[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
253
|
+
/**
|
|
254
|
+
* @name authorizeStakeGrants
|
|
255
|
+
* @package injective.exchange.v1beta1
|
|
256
|
+
* @see proto service: injective.exchange.v1beta1.AuthorizeStakeGrants
|
|
257
|
+
*/
|
|
35
258
|
export declare const authorizeStakeGrants: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgAuthorizeStakeGrants | MsgAuthorizeStakeGrants[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|
|
259
|
+
/**
|
|
260
|
+
* @name activateStakeGrant
|
|
261
|
+
* @package injective.exchange.v1beta1
|
|
262
|
+
* @see proto service: injective.exchange.v1beta1.ActivateStakeGrant
|
|
263
|
+
*/
|
|
36
264
|
export declare const activateStakeGrant: (client: import("@interchainjs/cosmos/types").ISigningClient, signerAddress: string, message: MsgActivateStakeGrant | MsgActivateStakeGrant[], fee: import("../../..").StdFee | "auto", memo: string) => Promise<import("@interchainjs/types").DeliverTxResponse>;
|