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,24 +1,49 @@
|
|
|
1
1
|
import { buildTx } from "../../../../helper-func-types";
|
|
2
2
|
import { MsgConnectionOpenInit, MsgConnectionOpenTry, MsgConnectionOpenAck, MsgConnectionOpenConfirm, MsgUpdateParams } from "./tx";
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* ConnectionOpenInit defines a rpc handler method for MsgConnectionOpenInit.
|
|
5
|
+
* @name connectionOpenInit
|
|
6
|
+
* @package ibc.core.connection.v1
|
|
7
|
+
* @see proto service: ibc.core.connection.v1.ConnectionOpenInit
|
|
8
|
+
*/
|
|
4
9
|
export const connectionOpenInit = buildTx({
|
|
5
10
|
msg: MsgConnectionOpenInit
|
|
6
11
|
});
|
|
7
|
-
|
|
12
|
+
/**
|
|
13
|
+
* ConnectionOpenTry defines a rpc handler method for MsgConnectionOpenTry.
|
|
14
|
+
* @name connectionOpenTry
|
|
15
|
+
* @package ibc.core.connection.v1
|
|
16
|
+
* @see proto service: ibc.core.connection.v1.ConnectionOpenTry
|
|
17
|
+
*/
|
|
8
18
|
export const connectionOpenTry = buildTx({
|
|
9
19
|
msg: MsgConnectionOpenTry
|
|
10
20
|
});
|
|
11
|
-
|
|
21
|
+
/**
|
|
22
|
+
* ConnectionOpenAck defines a rpc handler method for MsgConnectionOpenAck.
|
|
23
|
+
* @name connectionOpenAck
|
|
24
|
+
* @package ibc.core.connection.v1
|
|
25
|
+
* @see proto service: ibc.core.connection.v1.ConnectionOpenAck
|
|
26
|
+
*/
|
|
12
27
|
export const connectionOpenAck = buildTx({
|
|
13
28
|
msg: MsgConnectionOpenAck
|
|
14
29
|
});
|
|
15
|
-
|
|
16
|
-
|
|
30
|
+
/**
|
|
31
|
+
* ConnectionOpenConfirm defines a rpc handler method for
|
|
32
|
+
* MsgConnectionOpenConfirm.
|
|
33
|
+
* @name connectionOpenConfirm
|
|
34
|
+
* @package ibc.core.connection.v1
|
|
35
|
+
* @see proto service: ibc.core.connection.v1.ConnectionOpenConfirm
|
|
36
|
+
*/
|
|
17
37
|
export const connectionOpenConfirm = buildTx({
|
|
18
38
|
msg: MsgConnectionOpenConfirm
|
|
19
39
|
});
|
|
20
|
-
|
|
21
|
-
|
|
40
|
+
/**
|
|
41
|
+
* UpdateConnectionParams defines a rpc handler method for
|
|
42
|
+
* MsgUpdateParams.
|
|
43
|
+
* @name updateConnectionParams
|
|
44
|
+
* @package ibc.core.connection.v1
|
|
45
|
+
* @see proto service: ibc.core.connection.v1.UpdateConnectionParams
|
|
46
|
+
*/
|
|
22
47
|
export const updateConnectionParams = buildTx({
|
|
23
48
|
msg: MsgUpdateParams
|
|
24
49
|
});
|
package/esm/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.
|
|
2
|
+
* This file and any referenced files were automatically generated by @cosmology/telescope@1.12.19
|
|
3
3
|
* DO NOT MODIFY BY HAND. Instead, download the latest proto files for your chain
|
|
4
4
|
* and run the transpile command or npm scripts command that is used to regenerate this bundle.
|
|
5
5
|
*/
|
|
@@ -8,6 +8,11 @@ function createBaseParams() {
|
|
|
8
8
|
minNextBidIncrementRate: ""
|
|
9
9
|
};
|
|
10
10
|
}
|
|
11
|
+
/**
|
|
12
|
+
* @name Params
|
|
13
|
+
* @package injective.auction.v1beta1
|
|
14
|
+
* @see proto type: injective.auction.v1beta1.Params
|
|
15
|
+
*/
|
|
11
16
|
export const Params = {
|
|
12
17
|
typeUrl: "/injective.auction.v1beta1.Params",
|
|
13
18
|
aminoType: "auction/Params",
|
|
@@ -97,6 +102,11 @@ function createBaseBid() {
|
|
|
97
102
|
amount: ""
|
|
98
103
|
};
|
|
99
104
|
}
|
|
105
|
+
/**
|
|
106
|
+
* @name Bid
|
|
107
|
+
* @package injective.auction.v1beta1
|
|
108
|
+
* @see proto type: injective.auction.v1beta1.Bid
|
|
109
|
+
*/
|
|
100
110
|
export const Bid = {
|
|
101
111
|
typeUrl: "/injective.auction.v1beta1.Bid",
|
|
102
112
|
is(o) {
|
|
@@ -180,6 +190,11 @@ function createBaseLastAuctionResult() {
|
|
|
180
190
|
round: BigInt(0)
|
|
181
191
|
};
|
|
182
192
|
}
|
|
193
|
+
/**
|
|
194
|
+
* @name LastAuctionResult
|
|
195
|
+
* @package injective.auction.v1beta1
|
|
196
|
+
* @see proto type: injective.auction.v1beta1.LastAuctionResult
|
|
197
|
+
*/
|
|
183
198
|
export const LastAuctionResult = {
|
|
184
199
|
typeUrl: "/injective.auction.v1beta1.LastAuctionResult",
|
|
185
200
|
is(o) {
|
|
@@ -274,6 +289,11 @@ function createBaseEventBid() {
|
|
|
274
289
|
round: BigInt(0)
|
|
275
290
|
};
|
|
276
291
|
}
|
|
292
|
+
/**
|
|
293
|
+
* @name EventBid
|
|
294
|
+
* @package injective.auction.v1beta1
|
|
295
|
+
* @see proto type: injective.auction.v1beta1.EventBid
|
|
296
|
+
*/
|
|
277
297
|
export const EventBid = {
|
|
278
298
|
typeUrl: "/injective.auction.v1beta1.EventBid",
|
|
279
299
|
is(o) {
|
|
@@ -368,6 +388,11 @@ function createBaseEventAuctionResult() {
|
|
|
368
388
|
round: BigInt(0)
|
|
369
389
|
};
|
|
370
390
|
}
|
|
391
|
+
/**
|
|
392
|
+
* @name EventAuctionResult
|
|
393
|
+
* @package injective.auction.v1beta1
|
|
394
|
+
* @see proto type: injective.auction.v1beta1.EventAuctionResult
|
|
395
|
+
*/
|
|
371
396
|
export const EventAuctionResult = {
|
|
372
397
|
typeUrl: "/injective.auction.v1beta1.EventAuctionResult",
|
|
373
398
|
is(o) {
|
|
@@ -462,6 +487,11 @@ function createBaseEventAuctionStart() {
|
|
|
462
487
|
newBasket: []
|
|
463
488
|
};
|
|
464
489
|
}
|
|
490
|
+
/**
|
|
491
|
+
* @name EventAuctionStart
|
|
492
|
+
* @package injective.auction.v1beta1
|
|
493
|
+
* @see proto type: injective.auction.v1beta1.EventAuctionStart
|
|
494
|
+
*/
|
|
465
495
|
export const EventAuctionStart = {
|
|
466
496
|
typeUrl: "/injective.auction.v1beta1.EventAuctionStart",
|
|
467
497
|
is(o) {
|
|
@@ -10,6 +10,12 @@ function createBaseGenesisState() {
|
|
|
10
10
|
lastAuctionResult: undefined
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* GenesisState defines the auction module's genesis state.
|
|
15
|
+
* @name GenesisState
|
|
16
|
+
* @package injective.auction.v1beta1
|
|
17
|
+
* @see proto type: injective.auction.v1beta1.GenesisState
|
|
18
|
+
*/
|
|
13
19
|
export const GenesisState = {
|
|
14
20
|
typeUrl: "/injective.auction.v1beta1.GenesisState",
|
|
15
21
|
is(o) {
|
|
@@ -6,6 +6,13 @@ import { GlobalDecoderRegistry } from "../../../registry";
|
|
|
6
6
|
function createBaseQueryAuctionParamsRequest() {
|
|
7
7
|
return {};
|
|
8
8
|
}
|
|
9
|
+
/**
|
|
10
|
+
* QueryAuctionParamsRequest is the request type for the Query/AuctionParams RPC
|
|
11
|
+
* method.
|
|
12
|
+
* @name QueryAuctionParamsRequest
|
|
13
|
+
* @package injective.auction.v1beta1
|
|
14
|
+
* @see proto type: injective.auction.v1beta1.QueryAuctionParamsRequest
|
|
15
|
+
*/
|
|
9
16
|
export const QueryAuctionParamsRequest = {
|
|
10
17
|
typeUrl: "/injective.auction.v1beta1.QueryAuctionParamsRequest",
|
|
11
18
|
is(o) {
|
|
@@ -65,6 +72,13 @@ function createBaseQueryAuctionParamsResponse() {
|
|
|
65
72
|
params: Params.fromPartial({})
|
|
66
73
|
};
|
|
67
74
|
}
|
|
75
|
+
/**
|
|
76
|
+
* QueryAuctionParamsRequest is the response type for the Query/AuctionParams
|
|
77
|
+
* RPC method.
|
|
78
|
+
* @name QueryAuctionParamsResponse
|
|
79
|
+
* @package injective.auction.v1beta1
|
|
80
|
+
* @see proto type: injective.auction.v1beta1.QueryAuctionParamsResponse
|
|
81
|
+
*/
|
|
68
82
|
export const QueryAuctionParamsResponse = {
|
|
69
83
|
typeUrl: "/injective.auction.v1beta1.QueryAuctionParamsResponse",
|
|
70
84
|
is(o) {
|
|
@@ -138,6 +152,13 @@ export const QueryAuctionParamsResponse = {
|
|
|
138
152
|
function createBaseQueryCurrentAuctionBasketRequest() {
|
|
139
153
|
return {};
|
|
140
154
|
}
|
|
155
|
+
/**
|
|
156
|
+
* QueryCurrentAuctionBasketRequest is the request type for the
|
|
157
|
+
* Query/CurrentAuctionBasket RPC method.
|
|
158
|
+
* @name QueryCurrentAuctionBasketRequest
|
|
159
|
+
* @package injective.auction.v1beta1
|
|
160
|
+
* @see proto type: injective.auction.v1beta1.QueryCurrentAuctionBasketRequest
|
|
161
|
+
*/
|
|
141
162
|
export const QueryCurrentAuctionBasketRequest = {
|
|
142
163
|
typeUrl: "/injective.auction.v1beta1.QueryCurrentAuctionBasketRequest",
|
|
143
164
|
is(o) {
|
|
@@ -201,6 +222,13 @@ function createBaseQueryCurrentAuctionBasketResponse() {
|
|
|
201
222
|
highestBidAmount: ""
|
|
202
223
|
};
|
|
203
224
|
}
|
|
225
|
+
/**
|
|
226
|
+
* QueryCurrentAuctionBasketResponse is the response type for the
|
|
227
|
+
* Query/CurrentAuctionBasket RPC method.
|
|
228
|
+
* @name QueryCurrentAuctionBasketResponse
|
|
229
|
+
* @package injective.auction.v1beta1
|
|
230
|
+
* @see proto type: injective.auction.v1beta1.QueryCurrentAuctionBasketResponse
|
|
231
|
+
*/
|
|
204
232
|
export const QueryCurrentAuctionBasketResponse = {
|
|
205
233
|
typeUrl: "/injective.auction.v1beta1.QueryCurrentAuctionBasketResponse",
|
|
206
234
|
is(o) {
|
|
@@ -321,6 +349,13 @@ export const QueryCurrentAuctionBasketResponse = {
|
|
|
321
349
|
function createBaseQueryModuleStateRequest() {
|
|
322
350
|
return {};
|
|
323
351
|
}
|
|
352
|
+
/**
|
|
353
|
+
* QueryModuleStateRequest is the request type for the Query/AuctionModuleState
|
|
354
|
+
* RPC method.
|
|
355
|
+
* @name QueryModuleStateRequest
|
|
356
|
+
* @package injective.auction.v1beta1
|
|
357
|
+
* @see proto type: injective.auction.v1beta1.QueryModuleStateRequest
|
|
358
|
+
*/
|
|
324
359
|
export const QueryModuleStateRequest = {
|
|
325
360
|
typeUrl: "/injective.auction.v1beta1.QueryModuleStateRequest",
|
|
326
361
|
is(o) {
|
|
@@ -380,6 +415,13 @@ function createBaseQueryModuleStateResponse() {
|
|
|
380
415
|
state: undefined
|
|
381
416
|
};
|
|
382
417
|
}
|
|
418
|
+
/**
|
|
419
|
+
* QueryModuleStateResponse is the response type for the
|
|
420
|
+
* Query/AuctionModuleState RPC method.
|
|
421
|
+
* @name QueryModuleStateResponse
|
|
422
|
+
* @package injective.auction.v1beta1
|
|
423
|
+
* @see proto type: injective.auction.v1beta1.QueryModuleStateResponse
|
|
424
|
+
*/
|
|
383
425
|
export const QueryModuleStateResponse = {
|
|
384
426
|
typeUrl: "/injective.auction.v1beta1.QueryModuleStateResponse",
|
|
385
427
|
is(o) {
|
|
@@ -453,6 +495,11 @@ export const QueryModuleStateResponse = {
|
|
|
453
495
|
function createBaseQueryLastAuctionResultRequest() {
|
|
454
496
|
return {};
|
|
455
497
|
}
|
|
498
|
+
/**
|
|
499
|
+
* @name QueryLastAuctionResultRequest
|
|
500
|
+
* @package injective.auction.v1beta1
|
|
501
|
+
* @see proto type: injective.auction.v1beta1.QueryLastAuctionResultRequest
|
|
502
|
+
*/
|
|
456
503
|
export const QueryLastAuctionResultRequest = {
|
|
457
504
|
typeUrl: "/injective.auction.v1beta1.QueryLastAuctionResultRequest",
|
|
458
505
|
is(o) {
|
|
@@ -512,6 +559,11 @@ function createBaseQueryLastAuctionResultResponse() {
|
|
|
512
559
|
lastAuctionResult: undefined
|
|
513
560
|
};
|
|
514
561
|
}
|
|
562
|
+
/**
|
|
563
|
+
* @name QueryLastAuctionResultResponse
|
|
564
|
+
* @package injective.auction.v1beta1
|
|
565
|
+
* @see proto type: injective.auction.v1beta1.QueryLastAuctionResultResponse
|
|
566
|
+
*/
|
|
515
567
|
export const QueryLastAuctionResultResponse = {
|
|
516
568
|
typeUrl: "/injective.auction.v1beta1.QueryLastAuctionResultResponse",
|
|
517
569
|
is(o) {
|
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
import { buildQuery } from "../../../helper-func-types";
|
|
2
2
|
import { QueryAuctionParamsRequest, QueryAuctionParamsResponse, QueryCurrentAuctionBasketRequest, QueryCurrentAuctionBasketResponse, QueryModuleStateRequest, QueryModuleStateResponse, QueryLastAuctionResultRequest, QueryLastAuctionResultResponse } from "./query";
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* Retrieves auction params
|
|
5
|
+
* @name getAuctionParams
|
|
6
|
+
* @package injective.auction.v1beta1
|
|
7
|
+
* @see proto service: injective.auction.v1beta1.AuctionParams
|
|
8
|
+
*/
|
|
4
9
|
export const getAuctionParams = buildQuery({
|
|
5
10
|
encode: QueryAuctionParamsRequest.encode,
|
|
6
11
|
decode: QueryAuctionParamsResponse.decode,
|
|
@@ -8,7 +13,12 @@ export const getAuctionParams = buildQuery({
|
|
|
8
13
|
method: "AuctionParams",
|
|
9
14
|
deps: [QueryAuctionParamsRequest, QueryAuctionParamsResponse]
|
|
10
15
|
});
|
|
11
|
-
|
|
16
|
+
/**
|
|
17
|
+
* Retrieves current auction basket with current highest bid and bidder
|
|
18
|
+
* @name getCurrentAuctionBasket
|
|
19
|
+
* @package injective.auction.v1beta1
|
|
20
|
+
* @see proto service: injective.auction.v1beta1.CurrentAuctionBasket
|
|
21
|
+
*/
|
|
12
22
|
export const getCurrentAuctionBasket = buildQuery({
|
|
13
23
|
encode: QueryCurrentAuctionBasketRequest.encode,
|
|
14
24
|
decode: QueryCurrentAuctionBasketResponse.decode,
|
|
@@ -16,7 +26,12 @@ export const getCurrentAuctionBasket = buildQuery({
|
|
|
16
26
|
method: "CurrentAuctionBasket",
|
|
17
27
|
deps: [QueryCurrentAuctionBasketRequest, QueryCurrentAuctionBasketResponse]
|
|
18
28
|
});
|
|
19
|
-
|
|
29
|
+
/**
|
|
30
|
+
* Retrieves the entire auction module's state
|
|
31
|
+
* @name getAuctionModuleState
|
|
32
|
+
* @package injective.auction.v1beta1
|
|
33
|
+
* @see proto service: injective.auction.v1beta1.AuctionModuleState
|
|
34
|
+
*/
|
|
20
35
|
export const getAuctionModuleState = buildQuery({
|
|
21
36
|
encode: QueryModuleStateRequest.encode,
|
|
22
37
|
decode: QueryModuleStateResponse.decode,
|
|
@@ -24,6 +39,11 @@ export const getAuctionModuleState = buildQuery({
|
|
|
24
39
|
method: "AuctionModuleState",
|
|
25
40
|
deps: [QueryModuleStateRequest, QueryModuleStateResponse]
|
|
26
41
|
});
|
|
42
|
+
/**
|
|
43
|
+
* @name getLastAuctionResult
|
|
44
|
+
* @package injective.auction.v1beta1
|
|
45
|
+
* @see proto service: injective.auction.v1beta1.LastAuctionResult
|
|
46
|
+
*/
|
|
27
47
|
export const getLastAuctionResult = buildQuery({
|
|
28
48
|
encode: QueryLastAuctionResultRequest.encode,
|
|
29
49
|
decode: QueryLastAuctionResultResponse.decode,
|
|
@@ -9,6 +9,12 @@ function createBaseMsgBid() {
|
|
|
9
9
|
round: BigInt(0)
|
|
10
10
|
};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* Bid defines a SDK message for placing a bid for an auction
|
|
14
|
+
* @name MsgBid
|
|
15
|
+
* @package injective.auction.v1beta1
|
|
16
|
+
* @see proto type: injective.auction.v1beta1.MsgBid
|
|
17
|
+
*/
|
|
12
18
|
export const MsgBid = {
|
|
13
19
|
typeUrl: "/injective.auction.v1beta1.MsgBid",
|
|
14
20
|
aminoType: "auction/MsgBid",
|
|
@@ -111,6 +117,11 @@ export const MsgBid = {
|
|
|
111
117
|
function createBaseMsgBidResponse() {
|
|
112
118
|
return {};
|
|
113
119
|
}
|
|
120
|
+
/**
|
|
121
|
+
* @name MsgBidResponse
|
|
122
|
+
* @package injective.auction.v1beta1
|
|
123
|
+
* @see proto type: injective.auction.v1beta1.MsgBidResponse
|
|
124
|
+
*/
|
|
114
125
|
export const MsgBidResponse = {
|
|
115
126
|
typeUrl: "/injective.auction.v1beta1.MsgBidResponse",
|
|
116
127
|
is(o) {
|
|
@@ -171,6 +182,11 @@ function createBaseMsgUpdateParams() {
|
|
|
171
182
|
params: Params.fromPartial({})
|
|
172
183
|
};
|
|
173
184
|
}
|
|
185
|
+
/**
|
|
186
|
+
* @name MsgUpdateParams
|
|
187
|
+
* @package injective.auction.v1beta1
|
|
188
|
+
* @see proto type: injective.auction.v1beta1.MsgUpdateParams
|
|
189
|
+
*/
|
|
174
190
|
export const MsgUpdateParams = {
|
|
175
191
|
typeUrl: "/injective.auction.v1beta1.MsgUpdateParams",
|
|
176
192
|
aminoType: "auction/MsgUpdateParams",
|
|
@@ -262,6 +278,11 @@ export const MsgUpdateParams = {
|
|
|
262
278
|
function createBaseMsgUpdateParamsResponse() {
|
|
263
279
|
return {};
|
|
264
280
|
}
|
|
281
|
+
/**
|
|
282
|
+
* @name MsgUpdateParamsResponse
|
|
283
|
+
* @package injective.auction.v1beta1
|
|
284
|
+
* @see proto type: injective.auction.v1beta1.MsgUpdateParamsResponse
|
|
285
|
+
*/
|
|
265
286
|
export const MsgUpdateParamsResponse = {
|
|
266
287
|
typeUrl: "/injective.auction.v1beta1.MsgUpdateParamsResponse",
|
|
267
288
|
is(o) {
|
|
@@ -1,9 +1,19 @@
|
|
|
1
1
|
import { buildTx } from "../../../helper-func-types";
|
|
2
2
|
import { MsgBid, MsgUpdateParams } from "./tx";
|
|
3
|
-
|
|
3
|
+
/**
|
|
4
|
+
* Bid defines a method for placing a bid for an auction
|
|
5
|
+
* @name bid
|
|
6
|
+
* @package injective.auction.v1beta1
|
|
7
|
+
* @see proto service: injective.auction.v1beta1.Bid
|
|
8
|
+
*/
|
|
4
9
|
export const bid = buildTx({
|
|
5
10
|
msg: MsgBid
|
|
6
11
|
});
|
|
12
|
+
/**
|
|
13
|
+
* @name updateParams
|
|
14
|
+
* @package injective.auction.v1beta1
|
|
15
|
+
* @see proto service: injective.auction.v1beta1.UpdateParams
|
|
16
|
+
*/
|
|
7
17
|
export const updateParams = buildTx({
|
|
8
18
|
msg: MsgUpdateParams
|
|
9
19
|
});
|
package/esm/injective/bundle.js
CHANGED
|
@@ -70,18 +70,18 @@ export { registry as InjectiveWasmxV1Registry, MessageComposer as InjectiveWasmx
|
|
|
70
70
|
export * from "./auction/v1beta1/query.rpc.func";
|
|
71
71
|
export * from "./exchange/v1beta1/query.rpc.func";
|
|
72
72
|
export * from "./insurance/v1beta1/query.rpc.func";
|
|
73
|
-
export { getParams as
|
|
74
|
-
export { getParams as
|
|
75
|
-
export { getParams as
|
|
76
|
-
export { getParams as
|
|
77
|
-
export { getParams as
|
|
73
|
+
export { getParams as getParamsInjectiveOcrV1beta1, getFeedConfig, getFeedConfigInfo, getLatestRound, getLatestTransmissionDetails, getOwedAmount, getOcrModuleState } from "./ocr/v1beta1/query.rpc.func";
|
|
74
|
+
export { getParams as getParamsInjectiveOracleV1beta1, getBandRelayers, getBandPriceStates, getBandIBCPriceStates, getPriceFeedPriceStates, getCoinbasePriceStates, getPythPriceStates, getStorkPriceStates, getStorkPublishers, getProviderPriceState, getOracleModuleState, getHistoricalPriceRecords, getOracleVolatility, getOracleProvidersInfo, getOracleProviderPrices, getOraclePrice, getPythPrice } from "./oracle/v1beta1/query.rpc.func";
|
|
75
|
+
export { getParams as getParamsInjectivePeggyV1, getCurrentValset, getValsetRequest, getValsetConfirm, getValsetConfirmsByNonce, getLastValsetRequests, getLastPendingValsetRequestByAddr, getLastEventByAddr, getGetPendingSendToEth, getBatchFees, getOutgoingTxBatches, getLastPendingBatchRequestByAddr, getBatchRequestByNonce, getBatchConfirms, getERC20ToDenom, getDenomToERC20, getGetDelegateKeyByValidator, getGetDelegateKeyByEth, getGetDelegateKeyByOrchestrator, getPeggyModuleState, getMissingPeggoNonces } from "./peggy/v1/query.rpc.func";
|
|
76
|
+
export { getParams as getParamsInjectivePermissionsV1beta1, getAllNamespaces, getNamespaceByDenom, getAddressRoles, getAddressesByRole, getVouchersForAddress } from "./permissions/v1beta1/query.rpc.func";
|
|
77
|
+
export { getParams as getParamsInjectiveTokenfactoryV1beta1, getDenomAuthorityMetadata, getDenomsFromCreator, getTokenfactoryModuleState } from "./tokenfactory/v1beta1/query.rpc.func";
|
|
78
78
|
export * from "./wasmx/v1/query.rpc.func";
|
|
79
|
-
export { bid, updateParams as
|
|
80
|
-
export { deposit as
|
|
81
|
-
export { createInsuranceFund, underwrite, requestRedemption, updateParams as
|
|
82
|
-
export { createFeed, updateFeed, transmit, fundFeedRewardPool, withdrawFeedRewardPool, setPayees, transferPayeeship, acceptPayeeship, updateParams as
|
|
83
|
-
export { relayProviderPrices, relayPriceFeedPrice, relayBandRates, requestBandIBCRates, relayCoinbaseMessages, relayStorkMessage, relayPythPrices, updateParams as
|
|
84
|
-
export { valsetConfirm, sendToEth, requestBatch, confirmBatch, depositClaim, withdrawClaim, valsetUpdateClaim, eRC20DeployedClaim, setOrchestratorAddresses, cancelSendToEth, submitBadSignatureEvidence, updateParams as
|
|
85
|
-
export { updateParams as
|
|
86
|
-
export { createDenom, mint, burn, changeAdmin, setDenomMetadata, updateParams as
|
|
87
|
-
export { updateRegistryContractParams, activateRegistryContract, deactivateRegistryContract, executeContractCompat, updateParams as
|
|
79
|
+
export { bid, updateParams as updateParamsInjectiveAuctionV1beta1 } from "./auction/v1beta1/tx.rpc.func";
|
|
80
|
+
export { deposit as depositInjectiveExchangeV1beta1, withdraw, instantSpotMarketLaunch, instantPerpetualMarketLaunch, instantExpiryFuturesMarketLaunch, createSpotLimitOrder, batchCreateSpotLimitOrders, createSpotMarketOrder, cancelSpotOrder, batchCancelSpotOrders, batchUpdateOrders, privilegedExecuteContract, createDerivativeLimitOrder, batchCreateDerivativeLimitOrders, createDerivativeMarketOrder, cancelDerivativeOrder, batchCancelDerivativeOrders, instantBinaryOptionsMarketLaunch, createBinaryOptionsLimitOrder, createBinaryOptionsMarketOrder, cancelBinaryOptionsOrder, batchCancelBinaryOptionsOrders, subaccountTransfer, externalTransfer, liquidatePosition, emergencySettleMarket, increasePositionMargin, decreasePositionMargin, rewardsOptOut, adminUpdateBinaryOptionsMarket, updateParams as updateParamsInjectiveExchangeV1beta1, updateSpotMarket, updateDerivativeMarket, authorizeStakeGrants, activateStakeGrant } from "./exchange/v1beta1/tx.rpc.func";
|
|
81
|
+
export { createInsuranceFund, underwrite, requestRedemption, updateParams as updateParamsInjectiveInsuranceV1beta1 } from "./insurance/v1beta1/tx.rpc.func";
|
|
82
|
+
export { createFeed, updateFeed, transmit, fundFeedRewardPool, withdrawFeedRewardPool, setPayees, transferPayeeship, acceptPayeeship, updateParams as updateParamsInjectiveOcrV1beta1 } from "./ocr/v1beta1/tx.rpc.func";
|
|
83
|
+
export { relayProviderPrices, relayPriceFeedPrice, relayBandRates, requestBandIBCRates, relayCoinbaseMessages, relayStorkMessage, relayPythPrices, updateParams as updateParamsInjectiveOracleV1beta1 } from "./oracle/v1beta1/tx.rpc.func";
|
|
84
|
+
export { valsetConfirm, sendToEth, requestBatch, confirmBatch, depositClaim, withdrawClaim, valsetUpdateClaim, eRC20DeployedClaim, setOrchestratorAddresses, cancelSendToEth, submitBadSignatureEvidence, updateParams as updateParamsInjectivePeggyV1, blacklistEthereumAddresses, revokeEthereumBlacklist } from "./peggy/v1/msgs.rpc.func";
|
|
85
|
+
export { updateParams as updateParamsInjectivePermissionsV1beta1, createNamespace, deleteNamespace, updateNamespace, updateNamespaceRoles, revokeNamespaceRoles, claimVoucher } from "./permissions/v1beta1/tx.rpc.func";
|
|
86
|
+
export { createDenom, mint, burn, changeAdmin, setDenomMetadata, updateParams as updateParamsInjectiveTokenfactoryV1beta1 } from "./tokenfactory/v1beta1/tx.rpc.func";
|
|
87
|
+
export { updateRegistryContractParams, activateRegistryContract, deactivateRegistryContract, executeContractCompat, updateParams as updateParamsInjectiveWasmxV1, registerContract } from "./wasmx/v1/tx.rpc.func";
|
|
@@ -5,6 +5,14 @@ function createBasePubKey() {
|
|
|
5
5
|
key: new Uint8Array()
|
|
6
6
|
};
|
|
7
7
|
}
|
|
8
|
+
/**
|
|
9
|
+
* PubKey defines a type alias for an ecdsa.PublicKey that implements
|
|
10
|
+
* Tendermint's PubKey interface. It represents the 33-byte compressed public
|
|
11
|
+
* key format.
|
|
12
|
+
* @name PubKey
|
|
13
|
+
* @package injective.crypto.v1beta1.ethsecp256k1
|
|
14
|
+
* @see proto type: injective.crypto.v1beta1.ethsecp256k1.PubKey
|
|
15
|
+
*/
|
|
8
16
|
export const PubKey = {
|
|
9
17
|
typeUrl: "/injective.crypto.v1beta1.ethsecp256k1.PubKey",
|
|
10
18
|
aminoType: "injective/PubKeyEthSecp256k1",
|
|
@@ -82,6 +90,13 @@ function createBasePrivKey() {
|
|
|
82
90
|
key: new Uint8Array()
|
|
83
91
|
};
|
|
84
92
|
}
|
|
93
|
+
/**
|
|
94
|
+
* PrivKey defines a type alias for an ecdsa.PrivateKey that implements
|
|
95
|
+
* Tendermint's PrivateKey interface.
|
|
96
|
+
* @name PrivKey
|
|
97
|
+
* @package injective.crypto.v1beta1.ethsecp256k1
|
|
98
|
+
* @see proto type: injective.crypto.v1beta1.ethsecp256k1.PrivKey
|
|
99
|
+
*/
|
|
85
100
|
export const PrivKey = {
|
|
86
101
|
typeUrl: "/injective.crypto.v1beta1.ethsecp256k1.PrivKey",
|
|
87
102
|
aminoType: "injective/PrivKeyEthSecp256k1",
|
|
@@ -6,6 +6,12 @@ function createBaseCreateSpotLimitOrderAuthz() {
|
|
|
6
6
|
marketIds: []
|
|
7
7
|
};
|
|
8
8
|
}
|
|
9
|
+
/**
|
|
10
|
+
* spot authz messages
|
|
11
|
+
* @name CreateSpotLimitOrderAuthz
|
|
12
|
+
* @package injective.exchange.v1beta1
|
|
13
|
+
* @see proto type: injective.exchange.v1beta1.CreateSpotLimitOrderAuthz
|
|
14
|
+
*/
|
|
9
15
|
export const CreateSpotLimitOrderAuthz = {
|
|
10
16
|
typeUrl: "/injective.exchange.v1beta1.CreateSpotLimitOrderAuthz",
|
|
11
17
|
aminoType: "exchange/CreateSpotLimitOrderAuthz",
|
|
@@ -104,6 +110,11 @@ function createBaseCreateSpotMarketOrderAuthz() {
|
|
|
104
110
|
marketIds: []
|
|
105
111
|
};
|
|
106
112
|
}
|
|
113
|
+
/**
|
|
114
|
+
* @name CreateSpotMarketOrderAuthz
|
|
115
|
+
* @package injective.exchange.v1beta1
|
|
116
|
+
* @see proto type: injective.exchange.v1beta1.CreateSpotMarketOrderAuthz
|
|
117
|
+
*/
|
|
107
118
|
export const CreateSpotMarketOrderAuthz = {
|
|
108
119
|
typeUrl: "/injective.exchange.v1beta1.CreateSpotMarketOrderAuthz",
|
|
109
120
|
aminoType: "exchange/CreateSpotMarketOrderAuthz",
|
|
@@ -202,6 +213,11 @@ function createBaseBatchCreateSpotLimitOrdersAuthz() {
|
|
|
202
213
|
marketIds: []
|
|
203
214
|
};
|
|
204
215
|
}
|
|
216
|
+
/**
|
|
217
|
+
* @name BatchCreateSpotLimitOrdersAuthz
|
|
218
|
+
* @package injective.exchange.v1beta1
|
|
219
|
+
* @see proto type: injective.exchange.v1beta1.BatchCreateSpotLimitOrdersAuthz
|
|
220
|
+
*/
|
|
205
221
|
export const BatchCreateSpotLimitOrdersAuthz = {
|
|
206
222
|
typeUrl: "/injective.exchange.v1beta1.BatchCreateSpotLimitOrdersAuthz",
|
|
207
223
|
aminoType: "exchange/BatchCreateSpotLimitOrdersAuthz",
|
|
@@ -300,6 +316,11 @@ function createBaseCancelSpotOrderAuthz() {
|
|
|
300
316
|
marketIds: []
|
|
301
317
|
};
|
|
302
318
|
}
|
|
319
|
+
/**
|
|
320
|
+
* @name CancelSpotOrderAuthz
|
|
321
|
+
* @package injective.exchange.v1beta1
|
|
322
|
+
* @see proto type: injective.exchange.v1beta1.CancelSpotOrderAuthz
|
|
323
|
+
*/
|
|
303
324
|
export const CancelSpotOrderAuthz = {
|
|
304
325
|
typeUrl: "/injective.exchange.v1beta1.CancelSpotOrderAuthz",
|
|
305
326
|
aminoType: "exchange/CancelSpotOrderAuthz",
|
|
@@ -398,6 +419,11 @@ function createBaseBatchCancelSpotOrdersAuthz() {
|
|
|
398
419
|
marketIds: []
|
|
399
420
|
};
|
|
400
421
|
}
|
|
422
|
+
/**
|
|
423
|
+
* @name BatchCancelSpotOrdersAuthz
|
|
424
|
+
* @package injective.exchange.v1beta1
|
|
425
|
+
* @see proto type: injective.exchange.v1beta1.BatchCancelSpotOrdersAuthz
|
|
426
|
+
*/
|
|
401
427
|
export const BatchCancelSpotOrdersAuthz = {
|
|
402
428
|
typeUrl: "/injective.exchange.v1beta1.BatchCancelSpotOrdersAuthz",
|
|
403
429
|
aminoType: "exchange/BatchCancelSpotOrdersAuthz",
|
|
@@ -496,6 +522,12 @@ function createBaseCreateDerivativeLimitOrderAuthz() {
|
|
|
496
522
|
marketIds: []
|
|
497
523
|
};
|
|
498
524
|
}
|
|
525
|
+
/**
|
|
526
|
+
* derivative authz messages
|
|
527
|
+
* @name CreateDerivativeLimitOrderAuthz
|
|
528
|
+
* @package injective.exchange.v1beta1
|
|
529
|
+
* @see proto type: injective.exchange.v1beta1.CreateDerivativeLimitOrderAuthz
|
|
530
|
+
*/
|
|
499
531
|
export const CreateDerivativeLimitOrderAuthz = {
|
|
500
532
|
typeUrl: "/injective.exchange.v1beta1.CreateDerivativeLimitOrderAuthz",
|
|
501
533
|
aminoType: "exchange/CreateDerivativeLimitOrderAuthz",
|
|
@@ -594,6 +626,11 @@ function createBaseCreateDerivativeMarketOrderAuthz() {
|
|
|
594
626
|
marketIds: []
|
|
595
627
|
};
|
|
596
628
|
}
|
|
629
|
+
/**
|
|
630
|
+
* @name CreateDerivativeMarketOrderAuthz
|
|
631
|
+
* @package injective.exchange.v1beta1
|
|
632
|
+
* @see proto type: injective.exchange.v1beta1.CreateDerivativeMarketOrderAuthz
|
|
633
|
+
*/
|
|
597
634
|
export const CreateDerivativeMarketOrderAuthz = {
|
|
598
635
|
typeUrl: "/injective.exchange.v1beta1.CreateDerivativeMarketOrderAuthz",
|
|
599
636
|
aminoType: "exchange/CreateDerivativeMarketOrderAuthz",
|
|
@@ -692,6 +729,11 @@ function createBaseBatchCreateDerivativeLimitOrdersAuthz() {
|
|
|
692
729
|
marketIds: []
|
|
693
730
|
};
|
|
694
731
|
}
|
|
732
|
+
/**
|
|
733
|
+
* @name BatchCreateDerivativeLimitOrdersAuthz
|
|
734
|
+
* @package injective.exchange.v1beta1
|
|
735
|
+
* @see proto type: injective.exchange.v1beta1.BatchCreateDerivativeLimitOrdersAuthz
|
|
736
|
+
*/
|
|
695
737
|
export const BatchCreateDerivativeLimitOrdersAuthz = {
|
|
696
738
|
typeUrl: "/injective.exchange.v1beta1.BatchCreateDerivativeLimitOrdersAuthz",
|
|
697
739
|
aminoType: "exchange/BatchCreateDerivativeLimitOrdersAuthz",
|
|
@@ -790,6 +832,11 @@ function createBaseCancelDerivativeOrderAuthz() {
|
|
|
790
832
|
marketIds: []
|
|
791
833
|
};
|
|
792
834
|
}
|
|
835
|
+
/**
|
|
836
|
+
* @name CancelDerivativeOrderAuthz
|
|
837
|
+
* @package injective.exchange.v1beta1
|
|
838
|
+
* @see proto type: injective.exchange.v1beta1.CancelDerivativeOrderAuthz
|
|
839
|
+
*/
|
|
793
840
|
export const CancelDerivativeOrderAuthz = {
|
|
794
841
|
typeUrl: "/injective.exchange.v1beta1.CancelDerivativeOrderAuthz",
|
|
795
842
|
aminoType: "exchange/CancelDerivativeOrderAuthz",
|
|
@@ -888,6 +935,11 @@ function createBaseBatchCancelDerivativeOrdersAuthz() {
|
|
|
888
935
|
marketIds: []
|
|
889
936
|
};
|
|
890
937
|
}
|
|
938
|
+
/**
|
|
939
|
+
* @name BatchCancelDerivativeOrdersAuthz
|
|
940
|
+
* @package injective.exchange.v1beta1
|
|
941
|
+
* @see proto type: injective.exchange.v1beta1.BatchCancelDerivativeOrdersAuthz
|
|
942
|
+
*/
|
|
891
943
|
export const BatchCancelDerivativeOrdersAuthz = {
|
|
892
944
|
typeUrl: "/injective.exchange.v1beta1.BatchCancelDerivativeOrdersAuthz",
|
|
893
945
|
aminoType: "exchange/BatchCancelDerivativeOrdersAuthz",
|
|
@@ -987,6 +1039,12 @@ function createBaseBatchUpdateOrdersAuthz() {
|
|
|
987
1039
|
derivativeMarkets: []
|
|
988
1040
|
};
|
|
989
1041
|
}
|
|
1042
|
+
/**
|
|
1043
|
+
* common authz message used in both spot & derivative markets
|
|
1044
|
+
* @name BatchUpdateOrdersAuthz
|
|
1045
|
+
* @package injective.exchange.v1beta1
|
|
1046
|
+
* @see proto type: injective.exchange.v1beta1.BatchUpdateOrdersAuthz
|
|
1047
|
+
*/
|
|
990
1048
|
export const BatchUpdateOrdersAuthz = {
|
|
991
1049
|
typeUrl: "/injective.exchange.v1beta1.BatchUpdateOrdersAuthz",
|
|
992
1050
|
aminoType: "exchange/BatchUpdateOrdersAuthz",
|