injectivejs 1.11.13 → 1.11.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binary.d.ts +1 -1
- package/binary.js +1 -1
- package/cosmos/auth/v1beta1/auth.d.ts +70 -6
- package/cosmos/auth/v1beta1/auth.js +28 -0
- package/cosmos/auth/v1beta1/query.d.ts +362 -32
- package/cosmos/auth/v1beta1/query.js +148 -0
- package/cosmos/auth/v1beta1/query.rpc.func.d.ts +77 -0
- package/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/cosmos/authz/v1beta1/authz.d.ts +69 -6
- package/cosmos/authz/v1beta1/authz.js +27 -0
- package/cosmos/authz/v1beta1/tx.d.ts +94 -6
- package/cosmos/authz/v1beta1/tx.js +40 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.d.ts +24 -0
- package/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/cosmos/bank/v1beta1/bank.d.ts +136 -18
- package/cosmos/bank/v1beta1/bank.js +48 -0
- package/cosmos/bank/v1beta1/query.d.ts +619 -86
- package/cosmos/bank/v1beta1/query.js +199 -0
- package/cosmos/bank/v1beta1/query.rpc.func.d.ts +115 -0
- package/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/cosmos/bank/v1beta1/tx.d.ts +151 -14
- package/cosmos/bank/v1beta1/tx.js +61 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.d.ts +32 -0
- package/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/cosmos/base/abci/v1beta1/abci.d.ts +331 -68
- package/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/cosmos/base/query/v1beta1/pagination.d.ts +36 -0
- package/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/cosmos/base/v1beta1/coin.d.ts +56 -0
- package/cosmos/base/v1beta1/coin.js +32 -0
- package/cosmos/bundle.d.ts +8 -8
- package/cosmos/bundle.js +15 -15
- package/cosmos/crypto/ed25519/keys.d.ts +29 -0
- package/cosmos/crypto/ed25519/keys.js +17 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.d.ts +29 -0
- package/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/cosmos/crypto/secp256k1/keys.d.ts +34 -2
- package/cosmos/crypto/secp256k1/keys.js +16 -0
- package/cosmos/crypto/secp256r1/keys.d.ts +42 -6
- package/cosmos/crypto/secp256r1/keys.js +12 -0
- package/cosmos/distribution/v1beta1/distribution.d.ts +201 -12
- package/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/cosmos/distribution/v1beta1/tx.d.ts +223 -10
- package/cosmos/distribution/v1beta1/tx.js +109 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.d.ts +57 -0
- package/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/cosmos/feegrant/v1beta1/tx.d.ts +135 -19
- package/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.d.ts +22 -0
- package/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/cosmos/gov/v1/gov.d.ts +343 -80
- package/cosmos/gov/v1/gov.js +61 -0
- package/cosmos/gov/v1/tx.d.ts +376 -65
- package/cosmos/gov/v1/tx.js +96 -0
- package/cosmos/gov/v1/tx.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/cosmos/gov/v1beta1/gov.d.ts +293 -61
- package/cosmos/gov/v1beta1/gov.js +59 -0
- package/cosmos/gov/v1beta1/query.d.ts +439 -82
- package/cosmos/gov/v1beta1/query.js +97 -0
- package/cosmos/gov/v1beta1/query.rpc.func.d.ts +48 -0
- package/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/cosmos/gov/v1beta1/tx.d.ts +213 -37
- package/cosmos/gov/v1beta1/tx.js +53 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.d.ts +26 -0
- package/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/cosmos/group/v1/tx.d.ts +804 -155
- package/cosmos/group/v1/tx.js +168 -0
- package/cosmos/group/v1/tx.rpc.func.d.ts +84 -0
- package/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/cosmos/group/v1/types.d.ts +398 -83
- package/cosmos/group/v1/types.js +82 -0
- package/cosmos/ics23/v1/proofs.d.ts +294 -22
- package/cosmos/ics23/v1/proofs.js +138 -0
- package/cosmos/staking/v1beta1/query.d.ts +660 -102
- package/cosmos/staking/v1beta1/query.js +186 -0
- package/cosmos/staking/v1beta1/query.rpc.func.d.ts +109 -0
- package/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/cosmos/staking/v1beta1/staking.d.ts +631 -117
- package/cosmos/staking/v1beta1/staking.js +153 -0
- package/cosmos/staking/v1beta1/tx.d.ts +242 -22
- package/cosmos/staking/v1beta1/tx.js +96 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.d.ts +50 -0
- package/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/cosmos/tx/signing/v1beta1/signing.d.ts +135 -24
- package/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/cosmos/tx/v1beta1/service.d.ts +375 -46
- package/cosmos/tx/v1beta1/service.js +145 -0
- package/cosmos/tx/v1beta1/service.rpc.func.d.ts +64 -0
- package/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/cosmos/tx/v1beta1/tx.d.ts +303 -46
- package/cosmos/tx/v1beta1/tx.js +99 -0
- package/cosmos/upgrade/v1beta1/upgrade.d.ts +120 -26
- package/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/cosmos/vesting/v1beta1/tx.d.ts +102 -6
- package/cosmos/vesting/v1beta1/tx.js +48 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.d.ts +25 -0
- package/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/cosmos/vesting/v1beta1/vesting.d.ts +105 -8
- package/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/cosmos_proto/cosmos.d.ts +31 -0
- package/cosmos_proto/cosmos.js +19 -0
- package/cosmwasm/bundle.d.ts +2 -2
- package/cosmwasm/bundle.js +3 -3
- package/cosmwasm/wasm/v1/proposal_legacy.d.ts +631 -158
- package/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/cosmwasm/wasm/v1/query.d.ts +615 -82
- package/cosmwasm/wasm/v1/query.js +195 -0
- package/cosmwasm/wasm/v1/query.rpc.func.d.ts +85 -0
- package/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/cosmwasm/wasm/v1/tx.d.ts +956 -170
- package/cosmwasm/wasm/v1/tx.js +242 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.d.ts +128 -0
- package/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/cosmwasm/wasm/v1/types.d.ts +217 -40
- package/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/binary.js +1 -1
- package/esm/cosmos/auth/v1beta1/auth.js +28 -0
- package/esm/cosmos/auth/v1beta1/query.js +148 -0
- package/esm/cosmos/auth/v1beta1/query.rpc.func.js +77 -27
- package/esm/cosmos/authz/v1beta1/authz.js +27 -0
- package/esm/cosmos/authz/v1beta1/tx.js +40 -0
- package/esm/cosmos/authz/v1beta1/tx.rpc.func.js +24 -9
- package/esm/cosmos/bank/v1beta1/bank.js +48 -0
- package/esm/cosmos/bank/v1beta1/query.js +199 -0
- package/esm/cosmos/bank/v1beta1/query.rpc.func.js +115 -50
- package/esm/cosmos/bank/v1beta1/tx.js +61 -0
- package/esm/cosmos/bank/v1beta1/tx.rpc.func.js +32 -12
- package/esm/cosmos/base/abci/v1beta1/abci.js +73 -0
- package/esm/cosmos/base/query/v1beta1/pagination.js +24 -0
- package/esm/cosmos/base/v1beta1/coin.js +32 -0
- package/esm/cosmos/bundle.js +8 -8
- package/esm/cosmos/crypto/ed25519/keys.js +17 -0
- package/esm/cosmos/crypto/multisig/v1beta1/multisig.js +17 -0
- package/esm/cosmos/crypto/secp256k1/keys.js +16 -0
- package/esm/cosmos/crypto/secp256r1/keys.js +12 -0
- package/esm/cosmos/distribution/v1beta1/distribution.js +105 -0
- package/esm/cosmos/distribution/v1beta1/tx.js +109 -0
- package/esm/cosmos/distribution/v1beta1/tx.rpc.func.js +57 -22
- package/esm/cosmos/feegrant/v1beta1/tx.js +41 -0
- package/esm/cosmos/feegrant/v1beta1/tx.rpc.func.js +22 -7
- package/esm/cosmos/gov/v1/gov.js +61 -0
- package/esm/cosmos/gov/v1/tx.js +96 -0
- package/esm/cosmos/gov/v1/tx.rpc.func.js +48 -13
- package/esm/cosmos/gov/v1beta1/gov.js +59 -0
- package/esm/cosmos/gov/v1beta1/query.js +97 -0
- package/esm/cosmos/gov/v1beta1/query.rpc.func.js +48 -8
- package/esm/cosmos/gov/v1beta1/tx.js +53 -0
- package/esm/cosmos/gov/v1beta1/tx.rpc.func.js +26 -6
- package/esm/cosmos/group/v1/tx.js +168 -0
- package/esm/cosmos/group/v1/tx.rpc.func.js +84 -14
- package/esm/cosmos/group/v1/types.js +82 -0
- package/esm/cosmos/ics23/v1/proofs.js +138 -0
- package/esm/cosmos/staking/v1beta1/query.js +186 -0
- package/esm/cosmos/staking/v1beta1/query.rpc.func.js +109 -39
- package/esm/cosmos/staking/v1beta1/staking.js +153 -0
- package/esm/cosmos/staking/v1beta1/tx.js +96 -0
- package/esm/cosmos/staking/v1beta1/tx.rpc.func.js +50 -15
- package/esm/cosmos/tx/signing/v1beta1/signing.js +33 -0
- package/esm/cosmos/tx/v1beta1/service.js +145 -0
- package/esm/cosmos/tx/v1beta1/service.rpc.func.js +64 -19
- package/esm/cosmos/tx/v1beta1/tx.js +99 -0
- package/esm/cosmos/upgrade/v1beta1/upgrade.js +34 -0
- package/esm/cosmos/vesting/v1beta1/tx.js +48 -0
- package/esm/cosmos/vesting/v1beta1/tx.rpc.func.js +25 -10
- package/esm/cosmos/vesting/v1beta1/vesting.js +45 -0
- package/esm/cosmos_proto/cosmos.js +19 -0
- package/esm/cosmwasm/bundle.js +2 -2
- package/esm/cosmwasm/wasm/v1/proposal_legacy.js +127 -0
- package/esm/cosmwasm/wasm/v1/query.js +195 -0
- package/esm/cosmwasm/wasm/v1/query.rpc.func.js +85 -15
- package/esm/cosmwasm/wasm/v1/tx.js +242 -0
- package/esm/cosmwasm/wasm/v1/tx.rpc.func.js +128 -43
- package/esm/cosmwasm/wasm/v1/types.js +49 -0
- package/esm/extern.js +1 -1
- package/esm/google/api/http.js +283 -0
- package/esm/google/protobuf/any.js +90 -0
- package/esm/google/protobuf/descriptor.js +215 -0
- package/esm/google/protobuf/duration.js +63 -0
- package/esm/google/protobuf/timestamp.js +94 -0
- package/esm/helper-func-types.js +1 -1
- package/esm/helpers.js +1 -1
- package/esm/ibc/applications/transfer/v1/transfer.js +24 -0
- package/esm/ibc/applications/transfer/v1/tx.js +27 -0
- package/esm/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/esm/ibc/bundle.js +1 -1
- package/esm/ibc/core/channel/v1/channel.js +70 -0
- package/esm/ibc/core/channel/v1/tx.js +242 -0
- package/esm/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/esm/ibc/core/channel/v1/upgrade.js +25 -0
- package/esm/ibc/core/client/v1/client.js +45 -0
- package/esm/ibc/core/client/v1/tx.js +90 -0
- package/esm/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/esm/ibc/core/commitment/v1/commitment.js +25 -0
- package/esm/ibc/core/connection/v1/connection.js +47 -0
- package/esm/ibc/core/connection/v1/tx.js +66 -0
- package/esm/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/esm/index.js +1 -1
- package/esm/injective/auction/v1beta1/auction.js +30 -0
- package/esm/injective/auction/v1beta1/genesis.js +6 -0
- package/esm/injective/auction/v1beta1/query.js +52 -0
- package/esm/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/esm/injective/auction/v1beta1/tx.js +21 -0
- package/esm/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/esm/injective/bundle.js +14 -14
- package/esm/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/esm/injective/exchange/v1beta1/authz.js +58 -0
- package/esm/injective/exchange/v1beta1/events.js +180 -0
- package/esm/injective/exchange/v1beta1/exchange.js +263 -0
- package/esm/injective/exchange/v1beta1/genesis.js +89 -0
- package/esm/injective/exchange/v1beta1/proposal.js +113 -0
- package/esm/injective/exchange/v1beta1/query.js +864 -0
- package/esm/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/esm/injective/exchange/v1beta1/tx.js +487 -0
- package/esm/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/esm/injective/insurance/v1beta1/events.js +25 -0
- package/esm/injective/insurance/v1beta1/genesis.js +6 -0
- package/esm/injective/insurance/v1beta1/insurance.js +15 -0
- package/esm/injective/insurance/v1beta1/query.js +84 -0
- package/esm/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/esm/injective/insurance/v1beta1/tx.js +46 -0
- package/esm/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/esm/injective/ocr/v1beta1/genesis.js +41 -0
- package/esm/injective/ocr/v1beta1/ocr.js +108 -0
- package/esm/injective/ocr/v1beta1/query.js +70 -0
- package/esm/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/esm/injective/ocr/v1beta1/tx.js +90 -0
- package/esm/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/esm/injective/oracle/v1beta1/events.js +56 -0
- package/esm/injective/oracle/v1beta1/genesis.js +11 -0
- package/esm/injective/oracle/v1beta1/oracle.js +122 -0
- package/esm/injective/oracle/v1beta1/proposal.js +55 -0
- package/esm/injective/oracle/v1beta1/query.js +240 -0
- package/esm/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/esm/injective/oracle/v1beta1/tx.js +93 -0
- package/esm/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/esm/injective/peggy/v1/attestation.js +31 -0
- package/esm/injective/peggy/v1/batch.js +12 -0
- package/esm/injective/peggy/v1/events.js +85 -0
- package/esm/injective/peggy/v1/genesis.js +6 -0
- package/esm/injective/peggy/v1/msgs.js +223 -0
- package/esm/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/esm/injective/peggy/v1/params.js +5 -0
- package/esm/injective/peggy/v1/pool.js +11 -0
- package/esm/injective/peggy/v1/proposal.js +10 -0
- package/esm/injective/peggy/v1/query.js +214 -0
- package/esm/injective/peggy/v1/query.rpc.func.js +110 -5
- package/esm/injective/peggy/v1/types.js +37 -0
- package/esm/injective/permissions/v1beta1/events.js +5 -0
- package/esm/injective/permissions/v1beta1/genesis.js +6 -0
- package/esm/injective/permissions/v1beta1/params.js +6 -0
- package/esm/injective/permissions/v1beta1/permissions.js +33 -0
- package/esm/injective/permissions/v1beta1/query.js +74 -0
- package/esm/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/esm/injective/permissions/v1beta1/tx.js +90 -0
- package/esm/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/esm/injective/stream/v1beta1/query.js +110 -0
- package/esm/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/esm/injective/tokenfactory/v1beta1/events.js +25 -0
- package/esm/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/esm/injective/tokenfactory/v1beta1/params.js +6 -0
- package/esm/injective/tokenfactory/v1beta1/query.js +54 -0
- package/esm/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/esm/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/esm/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/esm/injective/types/v1beta1/account.js +7 -0
- package/esm/injective/types/v1beta1/tx_ext.js +5 -0
- package/esm/injective/types/v1beta1/tx_response.js +13 -0
- package/esm/injective/wasmx/v1/events.js +15 -0
- package/esm/injective/wasmx/v1/genesis.js +11 -0
- package/esm/injective/wasmx/v1/proposal.js +25 -0
- package/esm/injective/wasmx/v1/query.js +39 -0
- package/esm/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/esm/injective/wasmx/v1/tx.js +63 -0
- package/esm/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/esm/injective/wasmx/v1/wasmx.js +10 -0
- package/esm/registry.js +1 -1
- package/esm/tendermint/abci/types.js +255 -0
- package/esm/tendermint/crypto/keys.js +6 -0
- package/esm/tendermint/crypto/proof.js +29 -0
- package/esm/tendermint/types/block.js +5 -0
- package/esm/tendermint/types/evidence.js +22 -0
- package/esm/tendermint/types/params.js +46 -0
- package/esm/tendermint/types/types.js +87 -0
- package/esm/tendermint/types/validator.js +15 -0
- package/esm/tendermint/version/types.js +16 -0
- package/esm/types.js +1 -1
- package/esm/utf8.js +1 -1
- package/esm/varint.js +1 -1
- package/extern.d.ts +1 -1
- package/extern.js +1 -1
- package/google/api/http.d.ts +343 -14
- package/google/api/http.js +283 -0
- package/google/protobuf/any.d.ts +102 -2
- package/google/protobuf/any.js +90 -0
- package/google/protobuf/descriptor.d.ts +715 -86
- package/google/protobuf/descriptor.js +215 -0
- package/google/protobuf/duration.d.ts +69 -0
- package/google/protobuf/duration.js +63 -0
- package/google/protobuf/timestamp.d.ts +100 -0
- package/google/protobuf/timestamp.js +94 -0
- package/helper-func-types.d.ts +1 -1
- package/helper-func-types.js +1 -1
- package/helpers.d.ts +1 -1
- package/helpers.js +1 -1
- package/ibc/applications/transfer/v1/transfer.d.ts +54 -4
- package/ibc/applications/transfer/v1/transfer.js +24 -0
- package/ibc/applications/transfer/v1/tx.d.ts +125 -26
- package/ibc/applications/transfer/v1/tx.js +27 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.d.ts +12 -0
- package/ibc/applications/transfer/v1/tx.rpc.func.js +12 -2
- package/ibc/bundle.d.ts +1 -1
- package/ibc/bundle.js +2 -2
- package/ibc/core/channel/v1/channel.d.ts +316 -64
- package/ibc/core/channel/v1/channel.js +70 -0
- package/ibc/core/channel/v1/tx.d.ts +676 -70
- package/ibc/core/channel/v1/tx.js +242 -0
- package/ibc/core/channel/v1/tx.rpc.func.d.ts +115 -0
- package/ibc/core/channel/v1/tx.rpc.func.js +115 -20
- package/ibc/core/channel/v1/upgrade.d.ts +55 -4
- package/ibc/core/channel/v1/upgrade.js +25 -0
- package/ibc/core/client/v1/client.d.ts +129 -18
- package/ibc/core/client/v1/client.js +45 -0
- package/ibc/core/client/v1/tx.d.ts +338 -56
- package/ibc/core/client/v1/tx.js +90 -0
- package/ibc/core/client/v1/tx.rpc.func.d.ts +42 -0
- package/ibc/core/client/v1/tx.rpc.func.js +42 -7
- package/ibc/core/commitment/v1/commitment.d.ts +43 -0
- package/ibc/core/commitment/v1/commitment.js +25 -0
- package/ibc/core/connection/v1/connection.d.ts +197 -36
- package/ibc/core/connection/v1/connection.js +47 -0
- package/ibc/core/connection/v1/tx.d.ts +250 -56
- package/ibc/core/connection/v1/tx.js +66 -0
- package/ibc/core/connection/v1/tx.rpc.func.d.ts +32 -0
- package/ibc/core/connection/v1/tx.rpc.func.js +32 -7
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/injective/auction/v1beta1/auction.d.ts +168 -26
- package/injective/auction/v1beta1/auction.js +30 -0
- package/injective/auction/v1beta1/genesis.d.ts +48 -12
- package/injective/auction/v1beta1/genesis.js +6 -0
- package/injective/auction/v1beta1/query.d.ts +138 -10
- package/injective/auction/v1beta1/query.js +52 -0
- package/injective/auction/v1beta1/query.rpc.func.d.ts +23 -0
- package/injective/auction/v1beta1/query.rpc.func.js +23 -3
- package/injective/auction/v1beta1/tx.d.ts +81 -8
- package/injective/auction/v1beta1/tx.js +21 -0
- package/injective/auction/v1beta1/tx.rpc.func.d.ts +11 -0
- package/injective/auction/v1beta1/tx.rpc.func.js +11 -1
- package/injective/bundle.d.ts +14 -14
- package/injective/bundle.js +18 -18
- package/injective/crypto/v1beta1/ethsecp256k1/keys.d.ts +27 -0
- package/injective/crypto/v1beta1/ethsecp256k1/keys.js +15 -0
- package/injective/exchange/v1beta1/authz.d.ts +174 -6
- package/injective/exchange/v1beta1/authz.js +58 -0
- package/injective/exchange/v1beta1/events.d.ts +546 -2
- package/injective/exchange/v1beta1/events.js +180 -0
- package/injective/exchange/v1beta1/exchange.d.ts +1305 -188
- package/injective/exchange/v1beta1/exchange.js +263 -0
- package/injective/exchange/v1beta1/genesis.d.ts +357 -38
- package/injective/exchange/v1beta1/genesis.js +89 -0
- package/injective/exchange/v1beta1/proposal.d.ts +589 -94
- package/injective/exchange/v1beta1/proposal.js +113 -0
- package/injective/exchange/v1beta1/query.d.ts +2162 -136
- package/injective/exchange/v1beta1/query.js +864 -0
- package/injective/exchange/v1beta1/query.rpc.func.d.ts +364 -0
- package/injective/exchange/v1beta1/query.rpc.func.js +364 -64
- package/injective/exchange/v1beta1/tx.d.ts +1503 -170
- package/injective/exchange/v1beta1/tx.js +487 -0
- package/injective/exchange/v1beta1/tx.rpc.func.d.ts +228 -0
- package/injective/exchange/v1beta1/tx.rpc.func.js +228 -53
- package/injective/insurance/v1beta1/events.d.ts +111 -12
- package/injective/insurance/v1beta1/events.js +25 -0
- package/injective/insurance/v1beta1/genesis.d.ts +30 -6
- package/injective/insurance/v1beta1/genesis.js +6 -0
- package/injective/insurance/v1beta1/insurance.d.ts +117 -24
- package/injective/insurance/v1beta1/insurance.js +15 -0
- package/injective/insurance/v1beta1/query.d.ts +162 -2
- package/injective/insurance/v1beta1/query.js +84 -0
- package/injective/insurance/v1beta1/query.rpc.func.d.ts +37 -0
- package/injective/insurance/v1beta1/query.rpc.func.js +37 -7
- package/injective/insurance/v1beta1/tx.d.ts +186 -24
- package/injective/insurance/v1beta1/tx.js +46 -0
- package/injective/insurance/v1beta1/tx.rpc.func.d.ts +25 -0
- package/injective/insurance/v1beta1/tx.rpc.func.js +25 -5
- package/injective/ocr/v1beta1/genesis.d.ts +171 -18
- package/injective/ocr/v1beta1/genesis.js +41 -0
- package/injective/ocr/v1beta1/ocr.d.ts +514 -68
- package/injective/ocr/v1beta1/ocr.js +108 -0
- package/injective/ocr/v1beta1/query.d.ts +210 -0
- package/injective/ocr/v1beta1/query.js +70 -0
- package/injective/ocr/v1beta1/query.rpc.func.d.ts +42 -0
- package/injective/ocr/v1beta1/query.rpc.func.js +42 -7
- package/injective/ocr/v1beta1/tx.d.ts +360 -30
- package/injective/ocr/v1beta1/tx.js +90 -0
- package/injective/ocr/v1beta1/tx.rpc.func.d.ts +57 -0
- package/injective/ocr/v1beta1/tx.rpc.func.js +57 -12
- package/injective/oracle/v1beta1/events.d.ts +174 -4
- package/injective/oracle/v1beta1/events.js +56 -0
- package/injective/oracle/v1beta1/genesis.d.ts +39 -4
- package/injective/oracle/v1beta1/genesis.js +11 -0
- package/injective/oracle/v1beta1/oracle.d.ts +514 -52
- package/injective/oracle/v1beta1/oracle.js +122 -0
- package/injective/oracle/v1beta1/proposal.d.ts +165 -0
- package/injective/oracle/v1beta1/proposal.js +55 -0
- package/injective/oracle/v1beta1/query.d.ts +502 -0
- package/injective/oracle/v1beta1/query.js +240 -0
- package/injective/oracle/v1beta1/query.rpc.func.d.ts +98 -0
- package/injective/oracle/v1beta1/query.rpc.func.js +98 -13
- package/injective/oracle/v1beta1/tx.d.ts +251 -10
- package/injective/oracle/v1beta1/tx.js +93 -0
- package/injective/oracle/v1beta1/tx.rpc.func.d.ts +52 -0
- package/injective/oracle/v1beta1/tx.rpc.func.js +52 -12
- package/injective/peggy/v1/attestation.d.ts +43 -0
- package/injective/peggy/v1/attestation.js +31 -0
- package/injective/peggy/v1/batch.d.ts +36 -4
- package/injective/peggy/v1/batch.js +12 -0
- package/injective/peggy/v1/events.d.ts +255 -0
- package/injective/peggy/v1/events.js +85 -0
- package/injective/peggy/v1/genesis.d.ts +18 -2
- package/injective/peggy/v1/genesis.js +6 -0
- package/injective/peggy/v1/msgs.d.ts +473 -10
- package/injective/peggy/v1/msgs.js +223 -0
- package/injective/peggy/v1/msgs.rpc.func.d.ts +73 -0
- package/injective/peggy/v1/msgs.rpc.func.js +73 -3
- package/injective/peggy/v1/params.d.ts +15 -0
- package/injective/peggy/v1/params.js +5 -0
- package/injective/peggy/v1/pool.d.ts +33 -2
- package/injective/peggy/v1/pool.js +11 -0
- package/injective/peggy/v1/proposal.d.ts +30 -0
- package/injective/peggy/v1/proposal.js +10 -0
- package/injective/peggy/v1/query.d.ts +626 -0
- package/injective/peggy/v1/query.js +214 -0
- package/injective/peggy/v1/query.rpc.func.d.ts +110 -0
- package/injective/peggy/v1/query.rpc.func.js +110 -5
- package/injective/peggy/v1/types.d.ts +85 -6
- package/injective/peggy/v1/types.js +37 -0
- package/injective/permissions/v1beta1/events.d.ts +15 -0
- package/injective/permissions/v1beta1/events.js +5 -0
- package/injective/permissions/v1beta1/genesis.d.ts +24 -4
- package/injective/permissions/v1beta1/genesis.js +6 -0
- package/injective/permissions/v1beta1/params.d.ts +18 -2
- package/injective/permissions/v1beta1/params.js +6 -0
- package/injective/permissions/v1beta1/permissions.d.ts +117 -12
- package/injective/permissions/v1beta1/permissions.js +33 -0
- package/injective/permissions/v1beta1/query.d.ts +180 -6
- package/injective/permissions/v1beta1/query.js +74 -0
- package/injective/permissions/v1beta1/query.rpc.func.d.ts +43 -0
- package/injective/permissions/v1beta1/query.rpc.func.js +43 -13
- package/injective/permissions/v1beta1/tx.d.ts +318 -16
- package/injective/permissions/v1beta1/tx.js +90 -0
- package/injective/permissions/v1beta1/tx.rpc.func.d.ts +35 -0
- package/injective/permissions/v1beta1/tx.rpc.func.js +35 -0
- package/injective/stream/v1beta1/query.d.ts +336 -2
- package/injective/stream/v1beta1/query.js +110 -0
- package/injective/tokenfactory/v1beta1/authorityMetadata.d.ts +20 -2
- package/injective/tokenfactory/v1beta1/authorityMetadata.js +8 -0
- package/injective/tokenfactory/v1beta1/events.d.ts +75 -0
- package/injective/tokenfactory/v1beta1/events.js +25 -0
- package/injective/tokenfactory/v1beta1/genesis.d.ts +38 -4
- package/injective/tokenfactory/v1beta1/genesis.js +14 -0
- package/injective/tokenfactory/v1beta1/params.d.ts +18 -2
- package/injective/tokenfactory/v1beta1/params.js +6 -0
- package/injective/tokenfactory/v1beta1/query.d.ts +120 -6
- package/injective/tokenfactory/v1beta1/query.js +54 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.d.ts +27 -0
- package/injective/tokenfactory/v1beta1/query.rpc.func.js +27 -7
- package/injective/tokenfactory/v1beta1/tx.d.ts +183 -4
- package/injective/tokenfactory/v1beta1/tx.js +83 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.d.ts +30 -0
- package/injective/tokenfactory/v1beta1/tx.rpc.func.js +30 -0
- package/injective/types/v1beta1/account.d.ts +13 -0
- package/injective/types/v1beta1/account.js +7 -0
- package/injective/types/v1beta1/tx_ext.d.ts +15 -0
- package/injective/types/v1beta1/tx_ext.js +5 -0
- package/injective/types/v1beta1/tx_response.d.ts +31 -2
- package/injective/types/v1beta1/tx_response.js +13 -0
- package/injective/wasmx/v1/events.d.ts +45 -0
- package/injective/wasmx/v1/events.js +15 -0
- package/injective/wasmx/v1/genesis.d.ts +39 -4
- package/injective/wasmx/v1/genesis.js +11 -0
- package/injective/wasmx/v1/proposal.d.ts +99 -8
- package/injective/wasmx/v1/proposal.js +25 -0
- package/injective/wasmx/v1/query.d.ts +85 -2
- package/injective/wasmx/v1/query.js +39 -0
- package/injective/wasmx/v1/query.rpc.func.d.ts +18 -0
- package/injective/wasmx/v1/query.rpc.func.js +18 -3
- package/injective/wasmx/v1/tx.d.ts +253 -26
- package/injective/wasmx/v1/tx.js +63 -0
- package/injective/wasmx/v1/tx.rpc.func.d.ts +30 -0
- package/injective/wasmx/v1/tx.rpc.func.js +30 -0
- package/injective/wasmx/v1/wasmx.d.ts +60 -10
- package/injective/wasmx/v1/wasmx.js +10 -0
- package/package.json +9 -9
- package/registry.d.ts +1 -1
- package/registry.js +1 -1
- package/tendermint/abci/types.d.ts +971 -98
- package/tendermint/abci/types.js +255 -0
- package/tendermint/crypto/keys.d.ts +18 -2
- package/tendermint/crypto/keys.js +6 -0
- package/tendermint/crypto/proof.d.ts +89 -6
- package/tendermint/crypto/proof.js +29 -0
- package/tendermint/types/block.d.ts +15 -0
- package/tendermint/types/block.js +5 -0
- package/tendermint/types/evidence.d.ts +66 -4
- package/tendermint/types/evidence.js +22 -0
- package/tendermint/types/params.d.ts +112 -8
- package/tendermint/types/params.js +46 -0
- package/tendermint/types/types.d.ts +327 -42
- package/tendermint/types/types.js +87 -0
- package/tendermint/types/validator.d.ts +45 -0
- package/tendermint/types/validator.js +15 -0
- package/tendermint/version/types.d.ts +28 -0
- package/tendermint/version/types.js +16 -0
- package/types.d.ts +1 -1
- package/types.js +1 -1
- package/utf8.d.ts +1 -1
- package/utf8.js +1 -1
- package/varint.d.ts +1 -1
- package/varint.js +1 -1
|
@@ -3,161 +3,336 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.activateStakeGrant = exports.authorizeStakeGrants = exports.updateDerivativeMarket = exports.updateSpotMarket = exports.updateParams = exports.adminUpdateBinaryOptionsMarket = exports.rewardsOptOut = exports.decreasePositionMargin = exports.increasePositionMargin = exports.emergencySettleMarket = exports.liquidatePosition = exports.externalTransfer = exports.subaccountTransfer = exports.batchCancelBinaryOptionsOrders = exports.cancelBinaryOptionsOrder = exports.createBinaryOptionsMarketOrder = exports.createBinaryOptionsLimitOrder = exports.instantBinaryOptionsMarketLaunch = exports.batchCancelDerivativeOrders = exports.cancelDerivativeOrder = exports.createDerivativeMarketOrder = exports.batchCreateDerivativeLimitOrders = exports.createDerivativeLimitOrder = exports.privilegedExecuteContract = exports.batchUpdateOrders = exports.batchCancelSpotOrders = exports.cancelSpotOrder = exports.createSpotMarketOrder = exports.batchCreateSpotLimitOrders = exports.createSpotLimitOrder = exports.instantExpiryFuturesMarketLaunch = exports.instantPerpetualMarketLaunch = exports.instantSpotMarketLaunch = exports.withdraw = exports.deposit = void 0;
|
|
4
4
|
const helper_func_types_1 = require("../../../helper-func-types");
|
|
5
5
|
const tx_1 = require("./tx");
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
/**
|
|
7
|
+
* Deposit defines a method for transferring coins from the sender's bank
|
|
8
|
+
* balance into the subaccount's exchange deposits
|
|
9
|
+
* @name deposit
|
|
10
|
+
* @package injective.exchange.v1beta1
|
|
11
|
+
* @see proto service: injective.exchange.v1beta1.Deposit
|
|
12
|
+
*/
|
|
8
13
|
exports.deposit = (0, helper_func_types_1.buildTx)({
|
|
9
14
|
msg: tx_1.MsgDeposit
|
|
10
15
|
});
|
|
11
|
-
|
|
12
|
-
|
|
16
|
+
/**
|
|
17
|
+
* Withdraw defines a method for withdrawing coins from a subaccount's
|
|
18
|
+
* deposits to the user's bank balance
|
|
19
|
+
* @name withdraw
|
|
20
|
+
* @package injective.exchange.v1beta1
|
|
21
|
+
* @see proto service: injective.exchange.v1beta1.Withdraw
|
|
22
|
+
*/
|
|
13
23
|
exports.withdraw = (0, helper_func_types_1.buildTx)({
|
|
14
24
|
msg: tx_1.MsgWithdraw
|
|
15
25
|
});
|
|
16
|
-
|
|
17
|
-
|
|
26
|
+
/**
|
|
27
|
+
* InstantSpotMarketLaunch defines method for creating a spot market by paying
|
|
28
|
+
* listing fee without governance
|
|
29
|
+
* @name instantSpotMarketLaunch
|
|
30
|
+
* @package injective.exchange.v1beta1
|
|
31
|
+
* @see proto service: injective.exchange.v1beta1.InstantSpotMarketLaunch
|
|
32
|
+
*/
|
|
18
33
|
exports.instantSpotMarketLaunch = (0, helper_func_types_1.buildTx)({
|
|
19
34
|
msg: tx_1.MsgInstantSpotMarketLaunch
|
|
20
35
|
});
|
|
21
|
-
|
|
22
|
-
|
|
36
|
+
/**
|
|
37
|
+
* InstantPerpetualMarketLaunch defines a method for creating a new perpetual
|
|
38
|
+
* futures market by paying listing fee without governance
|
|
39
|
+
* @name instantPerpetualMarketLaunch
|
|
40
|
+
* @package injective.exchange.v1beta1
|
|
41
|
+
* @see proto service: injective.exchange.v1beta1.InstantPerpetualMarketLaunch
|
|
42
|
+
*/
|
|
23
43
|
exports.instantPerpetualMarketLaunch = (0, helper_func_types_1.buildTx)({
|
|
24
44
|
msg: tx_1.MsgInstantPerpetualMarketLaunch
|
|
25
45
|
});
|
|
26
|
-
|
|
27
|
-
|
|
46
|
+
/**
|
|
47
|
+
* InstantExpiryFuturesMarketLaunch defines a method for creating a new expiry
|
|
48
|
+
* futures market by paying listing fee without governance
|
|
49
|
+
* @name instantExpiryFuturesMarketLaunch
|
|
50
|
+
* @package injective.exchange.v1beta1
|
|
51
|
+
* @see proto service: injective.exchange.v1beta1.InstantExpiryFuturesMarketLaunch
|
|
52
|
+
*/
|
|
28
53
|
exports.instantExpiryFuturesMarketLaunch = (0, helper_func_types_1.buildTx)({
|
|
29
54
|
msg: tx_1.MsgInstantExpiryFuturesMarketLaunch
|
|
30
55
|
});
|
|
31
|
-
|
|
56
|
+
/**
|
|
57
|
+
* CreateSpotLimitOrder defines a method for creating a new spot limit order.
|
|
58
|
+
* @name createSpotLimitOrder
|
|
59
|
+
* @package injective.exchange.v1beta1
|
|
60
|
+
* @see proto service: injective.exchange.v1beta1.CreateSpotLimitOrder
|
|
61
|
+
*/
|
|
32
62
|
exports.createSpotLimitOrder = (0, helper_func_types_1.buildTx)({
|
|
33
63
|
msg: tx_1.MsgCreateSpotLimitOrder
|
|
34
64
|
});
|
|
35
|
-
|
|
36
|
-
|
|
65
|
+
/**
|
|
66
|
+
* BatchCreateSpotLimitOrder defines a method for creating a new batch of spot
|
|
67
|
+
* limit orders.
|
|
68
|
+
* @name batchCreateSpotLimitOrders
|
|
69
|
+
* @package injective.exchange.v1beta1
|
|
70
|
+
* @see proto service: injective.exchange.v1beta1.BatchCreateSpotLimitOrders
|
|
71
|
+
*/
|
|
37
72
|
exports.batchCreateSpotLimitOrders = (0, helper_func_types_1.buildTx)({
|
|
38
73
|
msg: tx_1.MsgBatchCreateSpotLimitOrders
|
|
39
74
|
});
|
|
40
|
-
|
|
41
|
-
|
|
75
|
+
/**
|
|
76
|
+
* CreateSpotMarketOrder defines a method for creating a new spot market
|
|
77
|
+
* order.
|
|
78
|
+
* @name createSpotMarketOrder
|
|
79
|
+
* @package injective.exchange.v1beta1
|
|
80
|
+
* @see proto service: injective.exchange.v1beta1.CreateSpotMarketOrder
|
|
81
|
+
*/
|
|
42
82
|
exports.createSpotMarketOrder = (0, helper_func_types_1.buildTx)({
|
|
43
83
|
msg: tx_1.MsgCreateSpotMarketOrder
|
|
44
84
|
});
|
|
45
|
-
|
|
85
|
+
/**
|
|
86
|
+
* MsgCancelSpotOrder defines a method for cancelling a spot order.
|
|
87
|
+
* @name cancelSpotOrder
|
|
88
|
+
* @package injective.exchange.v1beta1
|
|
89
|
+
* @see proto service: injective.exchange.v1beta1.CancelSpotOrder
|
|
90
|
+
*/
|
|
46
91
|
exports.cancelSpotOrder = (0, helper_func_types_1.buildTx)({
|
|
47
92
|
msg: tx_1.MsgCancelSpotOrder
|
|
48
93
|
});
|
|
49
|
-
|
|
50
|
-
|
|
94
|
+
/**
|
|
95
|
+
* BatchCancelSpotOrders defines a method for cancelling a batch of spot
|
|
96
|
+
* orders in a given market.
|
|
97
|
+
* @name batchCancelSpotOrders
|
|
98
|
+
* @package injective.exchange.v1beta1
|
|
99
|
+
* @see proto service: injective.exchange.v1beta1.BatchCancelSpotOrders
|
|
100
|
+
*/
|
|
51
101
|
exports.batchCancelSpotOrders = (0, helper_func_types_1.buildTx)({
|
|
52
102
|
msg: tx_1.MsgBatchCancelSpotOrders
|
|
53
103
|
});
|
|
54
|
-
|
|
104
|
+
/**
|
|
105
|
+
* BatchUpdateOrders defines a method for updating a batch of orders.
|
|
106
|
+
* @name batchUpdateOrders
|
|
107
|
+
* @package injective.exchange.v1beta1
|
|
108
|
+
* @see proto service: injective.exchange.v1beta1.BatchUpdateOrders
|
|
109
|
+
*/
|
|
55
110
|
exports.batchUpdateOrders = (0, helper_func_types_1.buildTx)({
|
|
56
111
|
msg: tx_1.MsgBatchUpdateOrders
|
|
57
112
|
});
|
|
58
|
-
|
|
59
|
-
|
|
113
|
+
/**
|
|
114
|
+
* PrivilegedExecuteContract defines a method for executing a Cosmwasm
|
|
115
|
+
* contract from the exchange module with privileged capabilities.
|
|
116
|
+
* @name privilegedExecuteContract
|
|
117
|
+
* @package injective.exchange.v1beta1
|
|
118
|
+
* @see proto service: injective.exchange.v1beta1.PrivilegedExecuteContract
|
|
119
|
+
*/
|
|
60
120
|
exports.privilegedExecuteContract = (0, helper_func_types_1.buildTx)({
|
|
61
121
|
msg: tx_1.MsgPrivilegedExecuteContract
|
|
62
122
|
});
|
|
63
|
-
|
|
64
|
-
|
|
123
|
+
/**
|
|
124
|
+
* CreateDerivativeLimitOrder defines a method for creating a new derivative
|
|
125
|
+
* limit order.
|
|
126
|
+
* @name createDerivativeLimitOrder
|
|
127
|
+
* @package injective.exchange.v1beta1
|
|
128
|
+
* @see proto service: injective.exchange.v1beta1.CreateDerivativeLimitOrder
|
|
129
|
+
*/
|
|
65
130
|
exports.createDerivativeLimitOrder = (0, helper_func_types_1.buildTx)({
|
|
66
131
|
msg: tx_1.MsgCreateDerivativeLimitOrder
|
|
67
132
|
});
|
|
68
|
-
|
|
69
|
-
|
|
133
|
+
/**
|
|
134
|
+
* BatchCreateDerivativeLimitOrders defines a method for creating a new batch
|
|
135
|
+
* of derivative limit orders.
|
|
136
|
+
* @name batchCreateDerivativeLimitOrders
|
|
137
|
+
* @package injective.exchange.v1beta1
|
|
138
|
+
* @see proto service: injective.exchange.v1beta1.BatchCreateDerivativeLimitOrders
|
|
139
|
+
*/
|
|
70
140
|
exports.batchCreateDerivativeLimitOrders = (0, helper_func_types_1.buildTx)({
|
|
71
141
|
msg: tx_1.MsgBatchCreateDerivativeLimitOrders
|
|
72
142
|
});
|
|
73
|
-
|
|
74
|
-
|
|
143
|
+
/**
|
|
144
|
+
* MsgCreateDerivativeLimitOrder defines a method for creating a new
|
|
145
|
+
* derivative market order.
|
|
146
|
+
* @name createDerivativeMarketOrder
|
|
147
|
+
* @package injective.exchange.v1beta1
|
|
148
|
+
* @see proto service: injective.exchange.v1beta1.CreateDerivativeMarketOrder
|
|
149
|
+
*/
|
|
75
150
|
exports.createDerivativeMarketOrder = (0, helper_func_types_1.buildTx)({
|
|
76
151
|
msg: tx_1.MsgCreateDerivativeMarketOrder
|
|
77
152
|
});
|
|
78
|
-
|
|
79
|
-
|
|
153
|
+
/**
|
|
154
|
+
* MsgCancelDerivativeOrder defines a method for cancelling a derivative
|
|
155
|
+
* order.
|
|
156
|
+
* @name cancelDerivativeOrder
|
|
157
|
+
* @package injective.exchange.v1beta1
|
|
158
|
+
* @see proto service: injective.exchange.v1beta1.CancelDerivativeOrder
|
|
159
|
+
*/
|
|
80
160
|
exports.cancelDerivativeOrder = (0, helper_func_types_1.buildTx)({
|
|
81
161
|
msg: tx_1.MsgCancelDerivativeOrder
|
|
82
162
|
});
|
|
83
|
-
|
|
84
|
-
|
|
163
|
+
/**
|
|
164
|
+
* MsgBatchCancelDerivativeOrders defines a method for cancelling a batch of
|
|
165
|
+
* derivative limit orders.
|
|
166
|
+
* @name batchCancelDerivativeOrders
|
|
167
|
+
* @package injective.exchange.v1beta1
|
|
168
|
+
* @see proto service: injective.exchange.v1beta1.BatchCancelDerivativeOrders
|
|
169
|
+
*/
|
|
85
170
|
exports.batchCancelDerivativeOrders = (0, helper_func_types_1.buildTx)({
|
|
86
171
|
msg: tx_1.MsgBatchCancelDerivativeOrders
|
|
87
172
|
});
|
|
88
|
-
|
|
89
|
-
|
|
173
|
+
/**
|
|
174
|
+
* InstantBinaryOptionsMarketLaunch defines method for creating a binary
|
|
175
|
+
* options market by paying listing fee without governance
|
|
176
|
+
* @name instantBinaryOptionsMarketLaunch
|
|
177
|
+
* @package injective.exchange.v1beta1
|
|
178
|
+
* @see proto service: injective.exchange.v1beta1.InstantBinaryOptionsMarketLaunch
|
|
179
|
+
*/
|
|
90
180
|
exports.instantBinaryOptionsMarketLaunch = (0, helper_func_types_1.buildTx)({
|
|
91
181
|
msg: tx_1.MsgInstantBinaryOptionsMarketLaunch
|
|
92
182
|
});
|
|
93
|
-
|
|
94
|
-
|
|
183
|
+
/**
|
|
184
|
+
* CreateBinaryOptionsLimitOrder defines a method for creating a new binary
|
|
185
|
+
* options limit order.
|
|
186
|
+
* @name createBinaryOptionsLimitOrder
|
|
187
|
+
* @package injective.exchange.v1beta1
|
|
188
|
+
* @see proto service: injective.exchange.v1beta1.CreateBinaryOptionsLimitOrder
|
|
189
|
+
*/
|
|
95
190
|
exports.createBinaryOptionsLimitOrder = (0, helper_func_types_1.buildTx)({
|
|
96
191
|
msg: tx_1.MsgCreateBinaryOptionsLimitOrder
|
|
97
192
|
});
|
|
98
|
-
|
|
99
|
-
|
|
193
|
+
/**
|
|
194
|
+
* CreateBinaryOptionsMarketOrder defines a method for creating a new binary
|
|
195
|
+
* options market order.
|
|
196
|
+
* @name createBinaryOptionsMarketOrder
|
|
197
|
+
* @package injective.exchange.v1beta1
|
|
198
|
+
* @see proto service: injective.exchange.v1beta1.CreateBinaryOptionsMarketOrder
|
|
199
|
+
*/
|
|
100
200
|
exports.createBinaryOptionsMarketOrder = (0, helper_func_types_1.buildTx)({
|
|
101
201
|
msg: tx_1.MsgCreateBinaryOptionsMarketOrder
|
|
102
202
|
});
|
|
103
|
-
|
|
104
|
-
|
|
203
|
+
/**
|
|
204
|
+
* MsgCancelBinaryOptionsOrder defines a method for cancelling a binary
|
|
205
|
+
* options order.
|
|
206
|
+
* @name cancelBinaryOptionsOrder
|
|
207
|
+
* @package injective.exchange.v1beta1
|
|
208
|
+
* @see proto service: injective.exchange.v1beta1.CancelBinaryOptionsOrder
|
|
209
|
+
*/
|
|
105
210
|
exports.cancelBinaryOptionsOrder = (0, helper_func_types_1.buildTx)({
|
|
106
211
|
msg: tx_1.MsgCancelBinaryOptionsOrder
|
|
107
212
|
});
|
|
108
|
-
|
|
109
|
-
|
|
213
|
+
/**
|
|
214
|
+
* BatchCancelBinaryOptionsOrders defines a method for cancelling a batch of
|
|
215
|
+
* binary options limit orders.
|
|
216
|
+
* @name batchCancelBinaryOptionsOrders
|
|
217
|
+
* @package injective.exchange.v1beta1
|
|
218
|
+
* @see proto service: injective.exchange.v1beta1.BatchCancelBinaryOptionsOrders
|
|
219
|
+
*/
|
|
110
220
|
exports.batchCancelBinaryOptionsOrders = (0, helper_func_types_1.buildTx)({
|
|
111
221
|
msg: tx_1.MsgBatchCancelBinaryOptionsOrders
|
|
112
222
|
});
|
|
113
|
-
|
|
223
|
+
/**
|
|
224
|
+
* SubaccountTransfer defines a method for transfer between subaccounts
|
|
225
|
+
* @name subaccountTransfer
|
|
226
|
+
* @package injective.exchange.v1beta1
|
|
227
|
+
* @see proto service: injective.exchange.v1beta1.SubaccountTransfer
|
|
228
|
+
*/
|
|
114
229
|
exports.subaccountTransfer = (0, helper_func_types_1.buildTx)({
|
|
115
230
|
msg: tx_1.MsgSubaccountTransfer
|
|
116
231
|
});
|
|
117
|
-
|
|
232
|
+
/**
|
|
233
|
+
* ExternalTransfer defines a method for transfer between external accounts
|
|
234
|
+
* @name externalTransfer
|
|
235
|
+
* @package injective.exchange.v1beta1
|
|
236
|
+
* @see proto service: injective.exchange.v1beta1.ExternalTransfer
|
|
237
|
+
*/
|
|
118
238
|
exports.externalTransfer = (0, helper_func_types_1.buildTx)({
|
|
119
239
|
msg: tx_1.MsgExternalTransfer
|
|
120
240
|
});
|
|
121
|
-
|
|
241
|
+
/**
|
|
242
|
+
* LiquidatePosition defines a method for liquidating a position
|
|
243
|
+
* @name liquidatePosition
|
|
244
|
+
* @package injective.exchange.v1beta1
|
|
245
|
+
* @see proto service: injective.exchange.v1beta1.LiquidatePosition
|
|
246
|
+
*/
|
|
122
247
|
exports.liquidatePosition = (0, helper_func_types_1.buildTx)({
|
|
123
248
|
msg: tx_1.MsgLiquidatePosition
|
|
124
249
|
});
|
|
125
|
-
|
|
250
|
+
/**
|
|
251
|
+
* EmergencySettleMarket defines a method for emergency settling a market
|
|
252
|
+
* @name emergencySettleMarket
|
|
253
|
+
* @package injective.exchange.v1beta1
|
|
254
|
+
* @see proto service: injective.exchange.v1beta1.EmergencySettleMarket
|
|
255
|
+
*/
|
|
126
256
|
exports.emergencySettleMarket = (0, helper_func_types_1.buildTx)({
|
|
127
257
|
msg: tx_1.MsgEmergencySettleMarket
|
|
128
258
|
});
|
|
129
|
-
|
|
259
|
+
/**
|
|
260
|
+
* IncreasePositionMargin defines a method for increasing margin of a position
|
|
261
|
+
* @name increasePositionMargin
|
|
262
|
+
* @package injective.exchange.v1beta1
|
|
263
|
+
* @see proto service: injective.exchange.v1beta1.IncreasePositionMargin
|
|
264
|
+
*/
|
|
130
265
|
exports.increasePositionMargin = (0, helper_func_types_1.buildTx)({
|
|
131
266
|
msg: tx_1.MsgIncreasePositionMargin
|
|
132
267
|
});
|
|
133
|
-
|
|
268
|
+
/**
|
|
269
|
+
* DecreasePositionMargin defines a method for decreasing margin of a position
|
|
270
|
+
* @name decreasePositionMargin
|
|
271
|
+
* @package injective.exchange.v1beta1
|
|
272
|
+
* @see proto service: injective.exchange.v1beta1.DecreasePositionMargin
|
|
273
|
+
*/
|
|
134
274
|
exports.decreasePositionMargin = (0, helper_func_types_1.buildTx)({
|
|
135
275
|
msg: tx_1.MsgDecreasePositionMargin
|
|
136
276
|
});
|
|
137
|
-
|
|
277
|
+
/**
|
|
278
|
+
* RewardsOptOut defines a method for opting out of rewards
|
|
279
|
+
* @name rewardsOptOut
|
|
280
|
+
* @package injective.exchange.v1beta1
|
|
281
|
+
* @see proto service: injective.exchange.v1beta1.RewardsOptOut
|
|
282
|
+
*/
|
|
138
283
|
exports.rewardsOptOut = (0, helper_func_types_1.buildTx)({
|
|
139
284
|
msg: tx_1.MsgRewardsOptOut
|
|
140
285
|
});
|
|
141
|
-
|
|
142
|
-
|
|
286
|
+
/**
|
|
287
|
+
* AdminUpdateBinaryOptionsMarket defines method for updating a binary options
|
|
288
|
+
* market by admin
|
|
289
|
+
* @name adminUpdateBinaryOptionsMarket
|
|
290
|
+
* @package injective.exchange.v1beta1
|
|
291
|
+
* @see proto service: injective.exchange.v1beta1.AdminUpdateBinaryOptionsMarket
|
|
292
|
+
*/
|
|
143
293
|
exports.adminUpdateBinaryOptionsMarket = (0, helper_func_types_1.buildTx)({
|
|
144
294
|
msg: tx_1.MsgAdminUpdateBinaryOptionsMarket
|
|
145
295
|
});
|
|
296
|
+
/**
|
|
297
|
+
* @name updateParams
|
|
298
|
+
* @package injective.exchange.v1beta1
|
|
299
|
+
* @see proto service: injective.exchange.v1beta1.UpdateParams
|
|
300
|
+
*/
|
|
146
301
|
exports.updateParams = (0, helper_func_types_1.buildTx)({
|
|
147
302
|
msg: tx_1.MsgUpdateParams
|
|
148
303
|
});
|
|
149
|
-
|
|
304
|
+
/**
|
|
305
|
+
* UpdateSpotMarket modifies certain spot market fields (admin only)
|
|
306
|
+
* @name updateSpotMarket
|
|
307
|
+
* @package injective.exchange.v1beta1
|
|
308
|
+
* @see proto service: injective.exchange.v1beta1.UpdateSpotMarket
|
|
309
|
+
*/
|
|
150
310
|
exports.updateSpotMarket = (0, helper_func_types_1.buildTx)({
|
|
151
311
|
msg: tx_1.MsgUpdateSpotMarket
|
|
152
312
|
});
|
|
153
|
-
|
|
154
|
-
|
|
313
|
+
/**
|
|
314
|
+
* UpdateDerivativeMarket modifies certain derivative market fields (admin
|
|
315
|
+
* only)
|
|
316
|
+
* @name updateDerivativeMarket
|
|
317
|
+
* @package injective.exchange.v1beta1
|
|
318
|
+
* @see proto service: injective.exchange.v1beta1.UpdateDerivativeMarket
|
|
319
|
+
*/
|
|
155
320
|
exports.updateDerivativeMarket = (0, helper_func_types_1.buildTx)({
|
|
156
321
|
msg: tx_1.MsgUpdateDerivativeMarket
|
|
157
322
|
});
|
|
323
|
+
/**
|
|
324
|
+
* @name authorizeStakeGrants
|
|
325
|
+
* @package injective.exchange.v1beta1
|
|
326
|
+
* @see proto service: injective.exchange.v1beta1.AuthorizeStakeGrants
|
|
327
|
+
*/
|
|
158
328
|
exports.authorizeStakeGrants = (0, helper_func_types_1.buildTx)({
|
|
159
329
|
msg: tx_1.MsgAuthorizeStakeGrants
|
|
160
330
|
});
|
|
331
|
+
/**
|
|
332
|
+
* @name activateStakeGrant
|
|
333
|
+
* @package injective.exchange.v1beta1
|
|
334
|
+
* @see proto service: injective.exchange.v1beta1.ActivateStakeGrant
|
|
335
|
+
*/
|
|
161
336
|
exports.activateStakeGrant = (0, helper_func_types_1.buildTx)({
|
|
162
337
|
msg: tx_1.MsgActivateStakeGrant
|
|
163
338
|
});
|
|
@@ -2,6 +2,11 @@ import { InsuranceFund, InsuranceFundAmino, RedemptionSchedule, RedemptionSchedu
|
|
|
2
2
|
import { Coin, CoinAmino } from "../../../cosmos/base/v1beta1/coin";
|
|
3
3
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
4
4
|
import { DeepPartial } from "../../../helpers";
|
|
5
|
+
/**
|
|
6
|
+
* @name EventInsuranceFundUpdate
|
|
7
|
+
* @package injective.insurance.v1beta1
|
|
8
|
+
* @see proto type: injective.insurance.v1beta1.EventInsuranceFundUpdate
|
|
9
|
+
*/
|
|
5
10
|
export interface EventInsuranceFundUpdate {
|
|
6
11
|
fund?: InsuranceFund;
|
|
7
12
|
}
|
|
@@ -9,6 +14,11 @@ export interface EventInsuranceFundUpdateProtoMsg {
|
|
|
9
14
|
typeUrl: "/injective.insurance.v1beta1.EventInsuranceFundUpdate";
|
|
10
15
|
value: Uint8Array;
|
|
11
16
|
}
|
|
17
|
+
/**
|
|
18
|
+
* @name EventInsuranceFundUpdateAmino
|
|
19
|
+
* @package injective.insurance.v1beta1
|
|
20
|
+
* @see proto type: injective.insurance.v1beta1.EventInsuranceFundUpdate
|
|
21
|
+
*/
|
|
12
22
|
export interface EventInsuranceFundUpdateAmino {
|
|
13
23
|
fund?: InsuranceFundAmino;
|
|
14
24
|
}
|
|
@@ -16,6 +26,11 @@ export interface EventInsuranceFundUpdateAminoMsg {
|
|
|
16
26
|
type: "/injective.insurance.v1beta1.EventInsuranceFundUpdate";
|
|
17
27
|
value: EventInsuranceFundUpdateAmino;
|
|
18
28
|
}
|
|
29
|
+
/**
|
|
30
|
+
* @name EventRequestRedemption
|
|
31
|
+
* @package injective.insurance.v1beta1
|
|
32
|
+
* @see proto type: injective.insurance.v1beta1.EventRequestRedemption
|
|
33
|
+
*/
|
|
19
34
|
export interface EventRequestRedemption {
|
|
20
35
|
schedule?: RedemptionSchedule;
|
|
21
36
|
}
|
|
@@ -23,6 +38,11 @@ export interface EventRequestRedemptionProtoMsg {
|
|
|
23
38
|
typeUrl: "/injective.insurance.v1beta1.EventRequestRedemption";
|
|
24
39
|
value: Uint8Array;
|
|
25
40
|
}
|
|
41
|
+
/**
|
|
42
|
+
* @name EventRequestRedemptionAmino
|
|
43
|
+
* @package injective.insurance.v1beta1
|
|
44
|
+
* @see proto type: injective.insurance.v1beta1.EventRequestRedemption
|
|
45
|
+
*/
|
|
26
46
|
export interface EventRequestRedemptionAmino {
|
|
27
47
|
schedule?: RedemptionScheduleAmino;
|
|
28
48
|
}
|
|
@@ -30,54 +50,103 @@ export interface EventRequestRedemptionAminoMsg {
|
|
|
30
50
|
type: "/injective.insurance.v1beta1.EventRequestRedemption";
|
|
31
51
|
value: EventRequestRedemptionAmino;
|
|
32
52
|
}
|
|
53
|
+
/**
|
|
54
|
+
* @name EventWithdrawRedemption
|
|
55
|
+
* @package injective.insurance.v1beta1
|
|
56
|
+
* @see proto type: injective.insurance.v1beta1.EventWithdrawRedemption
|
|
57
|
+
*/
|
|
33
58
|
export interface EventWithdrawRedemption {
|
|
34
|
-
/**
|
|
59
|
+
/**
|
|
60
|
+
* redemption schedule triggered withdraw
|
|
61
|
+
*/
|
|
35
62
|
schedule?: RedemptionSchedule;
|
|
36
|
-
/**
|
|
63
|
+
/**
|
|
64
|
+
* redeem coin amount in base_currency
|
|
65
|
+
*/
|
|
37
66
|
redeemCoin: Coin;
|
|
38
67
|
}
|
|
39
68
|
export interface EventWithdrawRedemptionProtoMsg {
|
|
40
69
|
typeUrl: "/injective.insurance.v1beta1.EventWithdrawRedemption";
|
|
41
70
|
value: Uint8Array;
|
|
42
71
|
}
|
|
72
|
+
/**
|
|
73
|
+
* @name EventWithdrawRedemptionAmino
|
|
74
|
+
* @package injective.insurance.v1beta1
|
|
75
|
+
* @see proto type: injective.insurance.v1beta1.EventWithdrawRedemption
|
|
76
|
+
*/
|
|
43
77
|
export interface EventWithdrawRedemptionAmino {
|
|
44
|
-
/**
|
|
78
|
+
/**
|
|
79
|
+
* redemption schedule triggered withdraw
|
|
80
|
+
*/
|
|
45
81
|
schedule?: RedemptionScheduleAmino;
|
|
46
|
-
/**
|
|
82
|
+
/**
|
|
83
|
+
* redeem coin amount in base_currency
|
|
84
|
+
*/
|
|
47
85
|
redeem_coin: CoinAmino;
|
|
48
86
|
}
|
|
49
87
|
export interface EventWithdrawRedemptionAminoMsg {
|
|
50
88
|
type: "/injective.insurance.v1beta1.EventWithdrawRedemption";
|
|
51
89
|
value: EventWithdrawRedemptionAmino;
|
|
52
90
|
}
|
|
91
|
+
/**
|
|
92
|
+
* @name EventUnderwrite
|
|
93
|
+
* @package injective.insurance.v1beta1
|
|
94
|
+
* @see proto type: injective.insurance.v1beta1.EventUnderwrite
|
|
95
|
+
*/
|
|
53
96
|
export interface EventUnderwrite {
|
|
54
|
-
/**
|
|
97
|
+
/**
|
|
98
|
+
* address of the underwriter
|
|
99
|
+
*/
|
|
55
100
|
underwriter: string;
|
|
56
|
-
/**
|
|
101
|
+
/**
|
|
102
|
+
* marketId of insurance fund for the redemption
|
|
103
|
+
*/
|
|
57
104
|
marketId: string;
|
|
58
|
-
/**
|
|
105
|
+
/**
|
|
106
|
+
* deposit coin amount
|
|
107
|
+
*/
|
|
59
108
|
deposit: Coin;
|
|
60
|
-
/**
|
|
109
|
+
/**
|
|
110
|
+
* share coin amount
|
|
111
|
+
*/
|
|
61
112
|
shares: Coin;
|
|
62
113
|
}
|
|
63
114
|
export interface EventUnderwriteProtoMsg {
|
|
64
115
|
typeUrl: "/injective.insurance.v1beta1.EventUnderwrite";
|
|
65
116
|
value: Uint8Array;
|
|
66
117
|
}
|
|
118
|
+
/**
|
|
119
|
+
* @name EventUnderwriteAmino
|
|
120
|
+
* @package injective.insurance.v1beta1
|
|
121
|
+
* @see proto type: injective.insurance.v1beta1.EventUnderwrite
|
|
122
|
+
*/
|
|
67
123
|
export interface EventUnderwriteAmino {
|
|
68
|
-
/**
|
|
124
|
+
/**
|
|
125
|
+
* address of the underwriter
|
|
126
|
+
*/
|
|
69
127
|
underwriter: string;
|
|
70
|
-
/**
|
|
128
|
+
/**
|
|
129
|
+
* marketId of insurance fund for the redemption
|
|
130
|
+
*/
|
|
71
131
|
marketId: string;
|
|
72
|
-
/**
|
|
132
|
+
/**
|
|
133
|
+
* deposit coin amount
|
|
134
|
+
*/
|
|
73
135
|
deposit: CoinAmino;
|
|
74
|
-
/**
|
|
136
|
+
/**
|
|
137
|
+
* share coin amount
|
|
138
|
+
*/
|
|
75
139
|
shares: CoinAmino;
|
|
76
140
|
}
|
|
77
141
|
export interface EventUnderwriteAminoMsg {
|
|
78
142
|
type: "/injective.insurance.v1beta1.EventUnderwrite";
|
|
79
143
|
value: EventUnderwriteAmino;
|
|
80
144
|
}
|
|
145
|
+
/**
|
|
146
|
+
* @name EventInsuranceWithdraw
|
|
147
|
+
* @package injective.insurance.v1beta1
|
|
148
|
+
* @see proto type: injective.insurance.v1beta1.EventInsuranceWithdraw
|
|
149
|
+
*/
|
|
81
150
|
export interface EventInsuranceWithdraw {
|
|
82
151
|
marketId: string;
|
|
83
152
|
marketTicker: string;
|
|
@@ -87,6 +156,11 @@ export interface EventInsuranceWithdrawProtoMsg {
|
|
|
87
156
|
typeUrl: "/injective.insurance.v1beta1.EventInsuranceWithdraw";
|
|
88
157
|
value: Uint8Array;
|
|
89
158
|
}
|
|
159
|
+
/**
|
|
160
|
+
* @name EventInsuranceWithdrawAmino
|
|
161
|
+
* @package injective.insurance.v1beta1
|
|
162
|
+
* @see proto type: injective.insurance.v1beta1.EventInsuranceWithdraw
|
|
163
|
+
*/
|
|
90
164
|
export interface EventInsuranceWithdrawAmino {
|
|
91
165
|
market_id: string;
|
|
92
166
|
market_ticker: string;
|
|
@@ -96,6 +170,11 @@ export interface EventInsuranceWithdrawAminoMsg {
|
|
|
96
170
|
type: "/injective.insurance.v1beta1.EventInsuranceWithdraw";
|
|
97
171
|
value: EventInsuranceWithdrawAmino;
|
|
98
172
|
}
|
|
173
|
+
/**
|
|
174
|
+
* @name EventInsuranceFundUpdate
|
|
175
|
+
* @package injective.insurance.v1beta1
|
|
176
|
+
* @see proto type: injective.insurance.v1beta1.EventInsuranceFundUpdate
|
|
177
|
+
*/
|
|
99
178
|
export declare const EventInsuranceFundUpdate: {
|
|
100
179
|
typeUrl: string;
|
|
101
180
|
is(o: any): o is EventInsuranceFundUpdate;
|
|
@@ -111,6 +190,11 @@ export declare const EventInsuranceFundUpdate: {
|
|
|
111
190
|
toProtoMsg(message: EventInsuranceFundUpdate): EventInsuranceFundUpdateProtoMsg;
|
|
112
191
|
registerTypeUrl(): void;
|
|
113
192
|
};
|
|
193
|
+
/**
|
|
194
|
+
* @name EventRequestRedemption
|
|
195
|
+
* @package injective.insurance.v1beta1
|
|
196
|
+
* @see proto type: injective.insurance.v1beta1.EventRequestRedemption
|
|
197
|
+
*/
|
|
114
198
|
export declare const EventRequestRedemption: {
|
|
115
199
|
typeUrl: string;
|
|
116
200
|
is(o: any): o is EventRequestRedemption;
|
|
@@ -126,6 +210,11 @@ export declare const EventRequestRedemption: {
|
|
|
126
210
|
toProtoMsg(message: EventRequestRedemption): EventRequestRedemptionProtoMsg;
|
|
127
211
|
registerTypeUrl(): void;
|
|
128
212
|
};
|
|
213
|
+
/**
|
|
214
|
+
* @name EventWithdrawRedemption
|
|
215
|
+
* @package injective.insurance.v1beta1
|
|
216
|
+
* @see proto type: injective.insurance.v1beta1.EventWithdrawRedemption
|
|
217
|
+
*/
|
|
129
218
|
export declare const EventWithdrawRedemption: {
|
|
130
219
|
typeUrl: string;
|
|
131
220
|
is(o: any): o is EventWithdrawRedemption;
|
|
@@ -141,6 +230,11 @@ export declare const EventWithdrawRedemption: {
|
|
|
141
230
|
toProtoMsg(message: EventWithdrawRedemption): EventWithdrawRedemptionProtoMsg;
|
|
142
231
|
registerTypeUrl(): void;
|
|
143
232
|
};
|
|
233
|
+
/**
|
|
234
|
+
* @name EventUnderwrite
|
|
235
|
+
* @package injective.insurance.v1beta1
|
|
236
|
+
* @see proto type: injective.insurance.v1beta1.EventUnderwrite
|
|
237
|
+
*/
|
|
144
238
|
export declare const EventUnderwrite: {
|
|
145
239
|
typeUrl: string;
|
|
146
240
|
is(o: any): o is EventUnderwrite;
|
|
@@ -156,6 +250,11 @@ export declare const EventUnderwrite: {
|
|
|
156
250
|
toProtoMsg(message: EventUnderwrite): EventUnderwriteProtoMsg;
|
|
157
251
|
registerTypeUrl(): void;
|
|
158
252
|
};
|
|
253
|
+
/**
|
|
254
|
+
* @name EventInsuranceWithdraw
|
|
255
|
+
* @package injective.insurance.v1beta1
|
|
256
|
+
* @see proto type: injective.insurance.v1beta1.EventInsuranceWithdraw
|
|
257
|
+
*/
|
|
159
258
|
export declare const EventInsuranceWithdraw: {
|
|
160
259
|
typeUrl: string;
|
|
161
260
|
is(o: any): o is EventInsuranceWithdraw;
|
|
@@ -10,6 +10,11 @@ function createBaseEventInsuranceFundUpdate() {
|
|
|
10
10
|
fund: undefined
|
|
11
11
|
};
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* @name EventInsuranceFundUpdate
|
|
15
|
+
* @package injective.insurance.v1beta1
|
|
16
|
+
* @see proto type: injective.insurance.v1beta1.EventInsuranceFundUpdate
|
|
17
|
+
*/
|
|
13
18
|
exports.EventInsuranceFundUpdate = {
|
|
14
19
|
typeUrl: "/injective.insurance.v1beta1.EventInsuranceFundUpdate",
|
|
15
20
|
is(o) {
|
|
@@ -85,6 +90,11 @@ function createBaseEventRequestRedemption() {
|
|
|
85
90
|
schedule: undefined
|
|
86
91
|
};
|
|
87
92
|
}
|
|
93
|
+
/**
|
|
94
|
+
* @name EventRequestRedemption
|
|
95
|
+
* @package injective.insurance.v1beta1
|
|
96
|
+
* @see proto type: injective.insurance.v1beta1.EventRequestRedemption
|
|
97
|
+
*/
|
|
88
98
|
exports.EventRequestRedemption = {
|
|
89
99
|
typeUrl: "/injective.insurance.v1beta1.EventRequestRedemption",
|
|
90
100
|
is(o) {
|
|
@@ -161,6 +171,11 @@ function createBaseEventWithdrawRedemption() {
|
|
|
161
171
|
redeemCoin: coin_1.Coin.fromPartial({})
|
|
162
172
|
};
|
|
163
173
|
}
|
|
174
|
+
/**
|
|
175
|
+
* @name EventWithdrawRedemption
|
|
176
|
+
* @package injective.insurance.v1beta1
|
|
177
|
+
* @see proto type: injective.insurance.v1beta1.EventWithdrawRedemption
|
|
178
|
+
*/
|
|
164
179
|
exports.EventWithdrawRedemption = {
|
|
165
180
|
typeUrl: "/injective.insurance.v1beta1.EventWithdrawRedemption",
|
|
166
181
|
is(o) {
|
|
@@ -251,6 +266,11 @@ function createBaseEventUnderwrite() {
|
|
|
251
266
|
shares: coin_1.Coin.fromPartial({})
|
|
252
267
|
};
|
|
253
268
|
}
|
|
269
|
+
/**
|
|
270
|
+
* @name EventUnderwrite
|
|
271
|
+
* @package injective.insurance.v1beta1
|
|
272
|
+
* @see proto type: injective.insurance.v1beta1.EventUnderwrite
|
|
273
|
+
*/
|
|
254
274
|
exports.EventUnderwrite = {
|
|
255
275
|
typeUrl: "/injective.insurance.v1beta1.EventUnderwrite",
|
|
256
276
|
is(o) {
|
|
@@ -361,6 +381,11 @@ function createBaseEventInsuranceWithdraw() {
|
|
|
361
381
|
withdrawal: coin_1.Coin.fromPartial({})
|
|
362
382
|
};
|
|
363
383
|
}
|
|
384
|
+
/**
|
|
385
|
+
* @name EventInsuranceWithdraw
|
|
386
|
+
* @package injective.insurance.v1beta1
|
|
387
|
+
* @see proto type: injective.insurance.v1beta1.EventInsuranceWithdraw
|
|
388
|
+
*/
|
|
364
389
|
exports.EventInsuranceWithdraw = {
|
|
365
390
|
typeUrl: "/injective.insurance.v1beta1.EventInsuranceWithdraw",
|
|
366
391
|
is(o) {
|