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,40 +1,76 @@
|
|
|
1
1
|
import { Params, ParamsAmino, Bid, BidAmino, LastAuctionResult, LastAuctionResultAmino } from "./auction";
|
|
2
2
|
import { BinaryReader, BinaryWriter } from "../../../binary";
|
|
3
3
|
import { DeepPartial } from "../../../helpers";
|
|
4
|
-
/**
|
|
4
|
+
/**
|
|
5
|
+
* GenesisState defines the auction module's genesis state.
|
|
6
|
+
* @name GenesisState
|
|
7
|
+
* @package injective.auction.v1beta1
|
|
8
|
+
* @see proto type: injective.auction.v1beta1.GenesisState
|
|
9
|
+
*/
|
|
5
10
|
export interface GenesisState {
|
|
6
|
-
/**
|
|
11
|
+
/**
|
|
12
|
+
* params defines all the parameters of related to auction.
|
|
13
|
+
*/
|
|
7
14
|
params: Params;
|
|
8
|
-
/**
|
|
15
|
+
/**
|
|
16
|
+
* current auction round
|
|
17
|
+
*/
|
|
9
18
|
auctionRound: bigint;
|
|
10
|
-
/**
|
|
19
|
+
/**
|
|
20
|
+
* current highest bid
|
|
21
|
+
*/
|
|
11
22
|
highestBid?: Bid;
|
|
12
|
-
/**
|
|
23
|
+
/**
|
|
24
|
+
* auction ending timestamp
|
|
25
|
+
*/
|
|
13
26
|
auctionEndingTimestamp: bigint;
|
|
14
|
-
/**
|
|
27
|
+
/**
|
|
28
|
+
* last auction result
|
|
29
|
+
*/
|
|
15
30
|
lastAuctionResult?: LastAuctionResult;
|
|
16
31
|
}
|
|
17
32
|
export interface GenesisStateProtoMsg {
|
|
18
33
|
typeUrl: "/injective.auction.v1beta1.GenesisState";
|
|
19
34
|
value: Uint8Array;
|
|
20
35
|
}
|
|
21
|
-
/**
|
|
36
|
+
/**
|
|
37
|
+
* GenesisState defines the auction module's genesis state.
|
|
38
|
+
* @name GenesisStateAmino
|
|
39
|
+
* @package injective.auction.v1beta1
|
|
40
|
+
* @see proto type: injective.auction.v1beta1.GenesisState
|
|
41
|
+
*/
|
|
22
42
|
export interface GenesisStateAmino {
|
|
23
|
-
/**
|
|
43
|
+
/**
|
|
44
|
+
* params defines all the parameters of related to auction.
|
|
45
|
+
*/
|
|
24
46
|
params: ParamsAmino;
|
|
25
|
-
/**
|
|
47
|
+
/**
|
|
48
|
+
* current auction round
|
|
49
|
+
*/
|
|
26
50
|
auction_round: string;
|
|
27
|
-
/**
|
|
51
|
+
/**
|
|
52
|
+
* current highest bid
|
|
53
|
+
*/
|
|
28
54
|
highest_bid?: BidAmino;
|
|
29
|
-
/**
|
|
55
|
+
/**
|
|
56
|
+
* auction ending timestamp
|
|
57
|
+
*/
|
|
30
58
|
auction_ending_timestamp: string;
|
|
31
|
-
/**
|
|
59
|
+
/**
|
|
60
|
+
* last auction result
|
|
61
|
+
*/
|
|
32
62
|
last_auction_result?: LastAuctionResultAmino;
|
|
33
63
|
}
|
|
34
64
|
export interface GenesisStateAminoMsg {
|
|
35
65
|
type: "/injective.auction.v1beta1.GenesisState";
|
|
36
66
|
value: GenesisStateAmino;
|
|
37
67
|
}
|
|
68
|
+
/**
|
|
69
|
+
* GenesisState defines the auction module's genesis state.
|
|
70
|
+
* @name GenesisState
|
|
71
|
+
* @package injective.auction.v1beta1
|
|
72
|
+
* @see proto type: injective.auction.v1beta1.GenesisState
|
|
73
|
+
*/
|
|
38
74
|
export declare const GenesisState: {
|
|
39
75
|
typeUrl: string;
|
|
40
76
|
is(o: any): o is GenesisState;
|
|
@@ -13,6 +13,12 @@ function createBaseGenesisState() {
|
|
|
13
13
|
lastAuctionResult: undefined
|
|
14
14
|
};
|
|
15
15
|
}
|
|
16
|
+
/**
|
|
17
|
+
* GenesisState defines the auction module's genesis state.
|
|
18
|
+
* @name GenesisState
|
|
19
|
+
* @package injective.auction.v1beta1
|
|
20
|
+
* @see proto type: injective.auction.v1beta1.GenesisState
|
|
21
|
+
*/
|
|
16
22
|
exports.GenesisState = {
|
|
17
23
|
typeUrl: "/injective.auction.v1beta1.GenesisState",
|
|
18
24
|
is(o) {
|
|
@@ -6,6 +6,9 @@ import { DeepPartial } from "../../../helpers";
|
|
|
6
6
|
/**
|
|
7
7
|
* QueryAuctionParamsRequest is the request type for the Query/AuctionParams RPC
|
|
8
8
|
* method.
|
|
9
|
+
* @name QueryAuctionParamsRequest
|
|
10
|
+
* @package injective.auction.v1beta1
|
|
11
|
+
* @see proto type: injective.auction.v1beta1.QueryAuctionParamsRequest
|
|
9
12
|
*/
|
|
10
13
|
export interface QueryAuctionParamsRequest {
|
|
11
14
|
}
|
|
@@ -16,6 +19,9 @@ export interface QueryAuctionParamsRequestProtoMsg {
|
|
|
16
19
|
/**
|
|
17
20
|
* QueryAuctionParamsRequest is the request type for the Query/AuctionParams RPC
|
|
18
21
|
* method.
|
|
22
|
+
* @name QueryAuctionParamsRequestAmino
|
|
23
|
+
* @package injective.auction.v1beta1
|
|
24
|
+
* @see proto type: injective.auction.v1beta1.QueryAuctionParamsRequest
|
|
19
25
|
*/
|
|
20
26
|
export interface QueryAuctionParamsRequestAmino {
|
|
21
27
|
}
|
|
@@ -26,6 +32,9 @@ export interface QueryAuctionParamsRequestAminoMsg {
|
|
|
26
32
|
/**
|
|
27
33
|
* QueryAuctionParamsRequest is the response type for the Query/AuctionParams
|
|
28
34
|
* RPC method.
|
|
35
|
+
* @name QueryAuctionParamsResponse
|
|
36
|
+
* @package injective.auction.v1beta1
|
|
37
|
+
* @see proto type: injective.auction.v1beta1.QueryAuctionParamsResponse
|
|
29
38
|
*/
|
|
30
39
|
export interface QueryAuctionParamsResponse {
|
|
31
40
|
params: Params;
|
|
@@ -37,6 +46,9 @@ export interface QueryAuctionParamsResponseProtoMsg {
|
|
|
37
46
|
/**
|
|
38
47
|
* QueryAuctionParamsRequest is the response type for the Query/AuctionParams
|
|
39
48
|
* RPC method.
|
|
49
|
+
* @name QueryAuctionParamsResponseAmino
|
|
50
|
+
* @package injective.auction.v1beta1
|
|
51
|
+
* @see proto type: injective.auction.v1beta1.QueryAuctionParamsResponse
|
|
40
52
|
*/
|
|
41
53
|
export interface QueryAuctionParamsResponseAmino {
|
|
42
54
|
params: ParamsAmino;
|
|
@@ -48,6 +60,9 @@ export interface QueryAuctionParamsResponseAminoMsg {
|
|
|
48
60
|
/**
|
|
49
61
|
* QueryCurrentAuctionBasketRequest is the request type for the
|
|
50
62
|
* Query/CurrentAuctionBasket RPC method.
|
|
63
|
+
* @name QueryCurrentAuctionBasketRequest
|
|
64
|
+
* @package injective.auction.v1beta1
|
|
65
|
+
* @see proto type: injective.auction.v1beta1.QueryCurrentAuctionBasketRequest
|
|
51
66
|
*/
|
|
52
67
|
export interface QueryCurrentAuctionBasketRequest {
|
|
53
68
|
}
|
|
@@ -58,6 +73,9 @@ export interface QueryCurrentAuctionBasketRequestProtoMsg {
|
|
|
58
73
|
/**
|
|
59
74
|
* QueryCurrentAuctionBasketRequest is the request type for the
|
|
60
75
|
* Query/CurrentAuctionBasket RPC method.
|
|
76
|
+
* @name QueryCurrentAuctionBasketRequestAmino
|
|
77
|
+
* @package injective.auction.v1beta1
|
|
78
|
+
* @see proto type: injective.auction.v1beta1.QueryCurrentAuctionBasketRequest
|
|
61
79
|
*/
|
|
62
80
|
export interface QueryCurrentAuctionBasketRequestAmino {
|
|
63
81
|
}
|
|
@@ -68,17 +86,30 @@ export interface QueryCurrentAuctionBasketRequestAminoMsg {
|
|
|
68
86
|
/**
|
|
69
87
|
* QueryCurrentAuctionBasketResponse is the response type for the
|
|
70
88
|
* Query/CurrentAuctionBasket RPC method.
|
|
89
|
+
* @name QueryCurrentAuctionBasketResponse
|
|
90
|
+
* @package injective.auction.v1beta1
|
|
91
|
+
* @see proto type: injective.auction.v1beta1.QueryCurrentAuctionBasketResponse
|
|
71
92
|
*/
|
|
72
93
|
export interface QueryCurrentAuctionBasketResponse {
|
|
73
|
-
/**
|
|
94
|
+
/**
|
|
95
|
+
* amount describes the amount put on auction
|
|
96
|
+
*/
|
|
74
97
|
amount: Coin[];
|
|
75
|
-
/**
|
|
98
|
+
/**
|
|
99
|
+
* auctionRound describes current auction round
|
|
100
|
+
*/
|
|
76
101
|
auctionRound: bigint;
|
|
77
|
-
/**
|
|
102
|
+
/**
|
|
103
|
+
* auctionClosingTime describes auction close time for the round
|
|
104
|
+
*/
|
|
78
105
|
auctionClosingTime: bigint;
|
|
79
|
-
/**
|
|
106
|
+
/**
|
|
107
|
+
* highestBidder describes highest bidder on current round
|
|
108
|
+
*/
|
|
80
109
|
highestBidder: string;
|
|
81
|
-
/**
|
|
110
|
+
/**
|
|
111
|
+
* highestBidAmount describes highest bid amount on current round
|
|
112
|
+
*/
|
|
82
113
|
highestBidAmount: string;
|
|
83
114
|
}
|
|
84
115
|
export interface QueryCurrentAuctionBasketResponseProtoMsg {
|
|
@@ -88,17 +119,30 @@ export interface QueryCurrentAuctionBasketResponseProtoMsg {
|
|
|
88
119
|
/**
|
|
89
120
|
* QueryCurrentAuctionBasketResponse is the response type for the
|
|
90
121
|
* Query/CurrentAuctionBasket RPC method.
|
|
122
|
+
* @name QueryCurrentAuctionBasketResponseAmino
|
|
123
|
+
* @package injective.auction.v1beta1
|
|
124
|
+
* @see proto type: injective.auction.v1beta1.QueryCurrentAuctionBasketResponse
|
|
91
125
|
*/
|
|
92
126
|
export interface QueryCurrentAuctionBasketResponseAmino {
|
|
93
|
-
/**
|
|
127
|
+
/**
|
|
128
|
+
* amount describes the amount put on auction
|
|
129
|
+
*/
|
|
94
130
|
amount: CoinAmino[];
|
|
95
|
-
/**
|
|
131
|
+
/**
|
|
132
|
+
* auctionRound describes current auction round
|
|
133
|
+
*/
|
|
96
134
|
auctionRound: string;
|
|
97
|
-
/**
|
|
135
|
+
/**
|
|
136
|
+
* auctionClosingTime describes auction close time for the round
|
|
137
|
+
*/
|
|
98
138
|
auctionClosingTime: string;
|
|
99
|
-
/**
|
|
139
|
+
/**
|
|
140
|
+
* highestBidder describes highest bidder on current round
|
|
141
|
+
*/
|
|
100
142
|
highestBidder: string;
|
|
101
|
-
/**
|
|
143
|
+
/**
|
|
144
|
+
* highestBidAmount describes highest bid amount on current round
|
|
145
|
+
*/
|
|
102
146
|
highestBidAmount: string;
|
|
103
147
|
}
|
|
104
148
|
export interface QueryCurrentAuctionBasketResponseAminoMsg {
|
|
@@ -108,6 +152,9 @@ export interface QueryCurrentAuctionBasketResponseAminoMsg {
|
|
|
108
152
|
/**
|
|
109
153
|
* QueryModuleStateRequest is the request type for the Query/AuctionModuleState
|
|
110
154
|
* RPC method.
|
|
155
|
+
* @name QueryModuleStateRequest
|
|
156
|
+
* @package injective.auction.v1beta1
|
|
157
|
+
* @see proto type: injective.auction.v1beta1.QueryModuleStateRequest
|
|
111
158
|
*/
|
|
112
159
|
export interface QueryModuleStateRequest {
|
|
113
160
|
}
|
|
@@ -118,6 +165,9 @@ export interface QueryModuleStateRequestProtoMsg {
|
|
|
118
165
|
/**
|
|
119
166
|
* QueryModuleStateRequest is the request type for the Query/AuctionModuleState
|
|
120
167
|
* RPC method.
|
|
168
|
+
* @name QueryModuleStateRequestAmino
|
|
169
|
+
* @package injective.auction.v1beta1
|
|
170
|
+
* @see proto type: injective.auction.v1beta1.QueryModuleStateRequest
|
|
121
171
|
*/
|
|
122
172
|
export interface QueryModuleStateRequestAmino {
|
|
123
173
|
}
|
|
@@ -128,6 +178,9 @@ export interface QueryModuleStateRequestAminoMsg {
|
|
|
128
178
|
/**
|
|
129
179
|
* QueryModuleStateResponse is the response type for the
|
|
130
180
|
* Query/AuctionModuleState RPC method.
|
|
181
|
+
* @name QueryModuleStateResponse
|
|
182
|
+
* @package injective.auction.v1beta1
|
|
183
|
+
* @see proto type: injective.auction.v1beta1.QueryModuleStateResponse
|
|
131
184
|
*/
|
|
132
185
|
export interface QueryModuleStateResponse {
|
|
133
186
|
state?: GenesisState;
|
|
@@ -139,6 +192,9 @@ export interface QueryModuleStateResponseProtoMsg {
|
|
|
139
192
|
/**
|
|
140
193
|
* QueryModuleStateResponse is the response type for the
|
|
141
194
|
* Query/AuctionModuleState RPC method.
|
|
195
|
+
* @name QueryModuleStateResponseAmino
|
|
196
|
+
* @package injective.auction.v1beta1
|
|
197
|
+
* @see proto type: injective.auction.v1beta1.QueryModuleStateResponse
|
|
142
198
|
*/
|
|
143
199
|
export interface QueryModuleStateResponseAmino {
|
|
144
200
|
state?: GenesisStateAmino;
|
|
@@ -147,18 +203,33 @@ export interface QueryModuleStateResponseAminoMsg {
|
|
|
147
203
|
type: "/injective.auction.v1beta1.QueryModuleStateResponse";
|
|
148
204
|
value: QueryModuleStateResponseAmino;
|
|
149
205
|
}
|
|
206
|
+
/**
|
|
207
|
+
* @name QueryLastAuctionResultRequest
|
|
208
|
+
* @package injective.auction.v1beta1
|
|
209
|
+
* @see proto type: injective.auction.v1beta1.QueryLastAuctionResultRequest
|
|
210
|
+
*/
|
|
150
211
|
export interface QueryLastAuctionResultRequest {
|
|
151
212
|
}
|
|
152
213
|
export interface QueryLastAuctionResultRequestProtoMsg {
|
|
153
214
|
typeUrl: "/injective.auction.v1beta1.QueryLastAuctionResultRequest";
|
|
154
215
|
value: Uint8Array;
|
|
155
216
|
}
|
|
217
|
+
/**
|
|
218
|
+
* @name QueryLastAuctionResultRequestAmino
|
|
219
|
+
* @package injective.auction.v1beta1
|
|
220
|
+
* @see proto type: injective.auction.v1beta1.QueryLastAuctionResultRequest
|
|
221
|
+
*/
|
|
156
222
|
export interface QueryLastAuctionResultRequestAmino {
|
|
157
223
|
}
|
|
158
224
|
export interface QueryLastAuctionResultRequestAminoMsg {
|
|
159
225
|
type: "/injective.auction.v1beta1.QueryLastAuctionResultRequest";
|
|
160
226
|
value: QueryLastAuctionResultRequestAmino;
|
|
161
227
|
}
|
|
228
|
+
/**
|
|
229
|
+
* @name QueryLastAuctionResultResponse
|
|
230
|
+
* @package injective.auction.v1beta1
|
|
231
|
+
* @see proto type: injective.auction.v1beta1.QueryLastAuctionResultResponse
|
|
232
|
+
*/
|
|
162
233
|
export interface QueryLastAuctionResultResponse {
|
|
163
234
|
lastAuctionResult?: LastAuctionResult;
|
|
164
235
|
}
|
|
@@ -166,6 +237,11 @@ export interface QueryLastAuctionResultResponseProtoMsg {
|
|
|
166
237
|
typeUrl: "/injective.auction.v1beta1.QueryLastAuctionResultResponse";
|
|
167
238
|
value: Uint8Array;
|
|
168
239
|
}
|
|
240
|
+
/**
|
|
241
|
+
* @name QueryLastAuctionResultResponseAmino
|
|
242
|
+
* @package injective.auction.v1beta1
|
|
243
|
+
* @see proto type: injective.auction.v1beta1.QueryLastAuctionResultResponse
|
|
244
|
+
*/
|
|
169
245
|
export interface QueryLastAuctionResultResponseAmino {
|
|
170
246
|
last_auction_result?: LastAuctionResultAmino;
|
|
171
247
|
}
|
|
@@ -173,6 +249,13 @@ export interface QueryLastAuctionResultResponseAminoMsg {
|
|
|
173
249
|
type: "/injective.auction.v1beta1.QueryLastAuctionResultResponse";
|
|
174
250
|
value: QueryLastAuctionResultResponseAmino;
|
|
175
251
|
}
|
|
252
|
+
/**
|
|
253
|
+
* QueryAuctionParamsRequest is the request type for the Query/AuctionParams RPC
|
|
254
|
+
* method.
|
|
255
|
+
* @name QueryAuctionParamsRequest
|
|
256
|
+
* @package injective.auction.v1beta1
|
|
257
|
+
* @see proto type: injective.auction.v1beta1.QueryAuctionParamsRequest
|
|
258
|
+
*/
|
|
176
259
|
export declare const QueryAuctionParamsRequest: {
|
|
177
260
|
typeUrl: string;
|
|
178
261
|
is(o: any): o is QueryAuctionParamsRequest;
|
|
@@ -188,6 +271,13 @@ export declare const QueryAuctionParamsRequest: {
|
|
|
188
271
|
toProtoMsg(message: QueryAuctionParamsRequest): QueryAuctionParamsRequestProtoMsg;
|
|
189
272
|
registerTypeUrl(): void;
|
|
190
273
|
};
|
|
274
|
+
/**
|
|
275
|
+
* QueryAuctionParamsRequest is the response type for the Query/AuctionParams
|
|
276
|
+
* RPC method.
|
|
277
|
+
* @name QueryAuctionParamsResponse
|
|
278
|
+
* @package injective.auction.v1beta1
|
|
279
|
+
* @see proto type: injective.auction.v1beta1.QueryAuctionParamsResponse
|
|
280
|
+
*/
|
|
191
281
|
export declare const QueryAuctionParamsResponse: {
|
|
192
282
|
typeUrl: string;
|
|
193
283
|
is(o: any): o is QueryAuctionParamsResponse;
|
|
@@ -203,6 +293,13 @@ export declare const QueryAuctionParamsResponse: {
|
|
|
203
293
|
toProtoMsg(message: QueryAuctionParamsResponse): QueryAuctionParamsResponseProtoMsg;
|
|
204
294
|
registerTypeUrl(): void;
|
|
205
295
|
};
|
|
296
|
+
/**
|
|
297
|
+
* QueryCurrentAuctionBasketRequest is the request type for the
|
|
298
|
+
* Query/CurrentAuctionBasket RPC method.
|
|
299
|
+
* @name QueryCurrentAuctionBasketRequest
|
|
300
|
+
* @package injective.auction.v1beta1
|
|
301
|
+
* @see proto type: injective.auction.v1beta1.QueryCurrentAuctionBasketRequest
|
|
302
|
+
*/
|
|
206
303
|
export declare const QueryCurrentAuctionBasketRequest: {
|
|
207
304
|
typeUrl: string;
|
|
208
305
|
is(o: any): o is QueryCurrentAuctionBasketRequest;
|
|
@@ -218,6 +315,13 @@ export declare const QueryCurrentAuctionBasketRequest: {
|
|
|
218
315
|
toProtoMsg(message: QueryCurrentAuctionBasketRequest): QueryCurrentAuctionBasketRequestProtoMsg;
|
|
219
316
|
registerTypeUrl(): void;
|
|
220
317
|
};
|
|
318
|
+
/**
|
|
319
|
+
* QueryCurrentAuctionBasketResponse is the response type for the
|
|
320
|
+
* Query/CurrentAuctionBasket RPC method.
|
|
321
|
+
* @name QueryCurrentAuctionBasketResponse
|
|
322
|
+
* @package injective.auction.v1beta1
|
|
323
|
+
* @see proto type: injective.auction.v1beta1.QueryCurrentAuctionBasketResponse
|
|
324
|
+
*/
|
|
221
325
|
export declare const QueryCurrentAuctionBasketResponse: {
|
|
222
326
|
typeUrl: string;
|
|
223
327
|
is(o: any): o is QueryCurrentAuctionBasketResponse;
|
|
@@ -233,6 +337,13 @@ export declare const QueryCurrentAuctionBasketResponse: {
|
|
|
233
337
|
toProtoMsg(message: QueryCurrentAuctionBasketResponse): QueryCurrentAuctionBasketResponseProtoMsg;
|
|
234
338
|
registerTypeUrl(): void;
|
|
235
339
|
};
|
|
340
|
+
/**
|
|
341
|
+
* QueryModuleStateRequest is the request type for the Query/AuctionModuleState
|
|
342
|
+
* RPC method.
|
|
343
|
+
* @name QueryModuleStateRequest
|
|
344
|
+
* @package injective.auction.v1beta1
|
|
345
|
+
* @see proto type: injective.auction.v1beta1.QueryModuleStateRequest
|
|
346
|
+
*/
|
|
236
347
|
export declare const QueryModuleStateRequest: {
|
|
237
348
|
typeUrl: string;
|
|
238
349
|
is(o: any): o is QueryModuleStateRequest;
|
|
@@ -248,6 +359,13 @@ export declare const QueryModuleStateRequest: {
|
|
|
248
359
|
toProtoMsg(message: QueryModuleStateRequest): QueryModuleStateRequestProtoMsg;
|
|
249
360
|
registerTypeUrl(): void;
|
|
250
361
|
};
|
|
362
|
+
/**
|
|
363
|
+
* QueryModuleStateResponse is the response type for the
|
|
364
|
+
* Query/AuctionModuleState RPC method.
|
|
365
|
+
* @name QueryModuleStateResponse
|
|
366
|
+
* @package injective.auction.v1beta1
|
|
367
|
+
* @see proto type: injective.auction.v1beta1.QueryModuleStateResponse
|
|
368
|
+
*/
|
|
251
369
|
export declare const QueryModuleStateResponse: {
|
|
252
370
|
typeUrl: string;
|
|
253
371
|
is(o: any): o is QueryModuleStateResponse;
|
|
@@ -263,6 +381,11 @@ export declare const QueryModuleStateResponse: {
|
|
|
263
381
|
toProtoMsg(message: QueryModuleStateResponse): QueryModuleStateResponseProtoMsg;
|
|
264
382
|
registerTypeUrl(): void;
|
|
265
383
|
};
|
|
384
|
+
/**
|
|
385
|
+
* @name QueryLastAuctionResultRequest
|
|
386
|
+
* @package injective.auction.v1beta1
|
|
387
|
+
* @see proto type: injective.auction.v1beta1.QueryLastAuctionResultRequest
|
|
388
|
+
*/
|
|
266
389
|
export declare const QueryLastAuctionResultRequest: {
|
|
267
390
|
typeUrl: string;
|
|
268
391
|
is(o: any): o is QueryLastAuctionResultRequest;
|
|
@@ -278,6 +401,11 @@ export declare const QueryLastAuctionResultRequest: {
|
|
|
278
401
|
toProtoMsg(message: QueryLastAuctionResultRequest): QueryLastAuctionResultRequestProtoMsg;
|
|
279
402
|
registerTypeUrl(): void;
|
|
280
403
|
};
|
|
404
|
+
/**
|
|
405
|
+
* @name QueryLastAuctionResultResponse
|
|
406
|
+
* @package injective.auction.v1beta1
|
|
407
|
+
* @see proto type: injective.auction.v1beta1.QueryLastAuctionResultResponse
|
|
408
|
+
*/
|
|
281
409
|
export declare const QueryLastAuctionResultResponse: {
|
|
282
410
|
typeUrl: string;
|
|
283
411
|
is(o: any): o is QueryLastAuctionResultResponse;
|
|
@@ -9,6 +9,13 @@ const registry_1 = require("../../../registry");
|
|
|
9
9
|
function createBaseQueryAuctionParamsRequest() {
|
|
10
10
|
return {};
|
|
11
11
|
}
|
|
12
|
+
/**
|
|
13
|
+
* QueryAuctionParamsRequest is the request type for the Query/AuctionParams RPC
|
|
14
|
+
* method.
|
|
15
|
+
* @name QueryAuctionParamsRequest
|
|
16
|
+
* @package injective.auction.v1beta1
|
|
17
|
+
* @see proto type: injective.auction.v1beta1.QueryAuctionParamsRequest
|
|
18
|
+
*/
|
|
12
19
|
exports.QueryAuctionParamsRequest = {
|
|
13
20
|
typeUrl: "/injective.auction.v1beta1.QueryAuctionParamsRequest",
|
|
14
21
|
is(o) {
|
|
@@ -68,6 +75,13 @@ function createBaseQueryAuctionParamsResponse() {
|
|
|
68
75
|
params: auction_1.Params.fromPartial({})
|
|
69
76
|
};
|
|
70
77
|
}
|
|
78
|
+
/**
|
|
79
|
+
* QueryAuctionParamsRequest is the response type for the Query/AuctionParams
|
|
80
|
+
* RPC method.
|
|
81
|
+
* @name QueryAuctionParamsResponse
|
|
82
|
+
* @package injective.auction.v1beta1
|
|
83
|
+
* @see proto type: injective.auction.v1beta1.QueryAuctionParamsResponse
|
|
84
|
+
*/
|
|
71
85
|
exports.QueryAuctionParamsResponse = {
|
|
72
86
|
typeUrl: "/injective.auction.v1beta1.QueryAuctionParamsResponse",
|
|
73
87
|
is(o) {
|
|
@@ -141,6 +155,13 @@ exports.QueryAuctionParamsResponse = {
|
|
|
141
155
|
function createBaseQueryCurrentAuctionBasketRequest() {
|
|
142
156
|
return {};
|
|
143
157
|
}
|
|
158
|
+
/**
|
|
159
|
+
* QueryCurrentAuctionBasketRequest is the request type for the
|
|
160
|
+
* Query/CurrentAuctionBasket RPC method.
|
|
161
|
+
* @name QueryCurrentAuctionBasketRequest
|
|
162
|
+
* @package injective.auction.v1beta1
|
|
163
|
+
* @see proto type: injective.auction.v1beta1.QueryCurrentAuctionBasketRequest
|
|
164
|
+
*/
|
|
144
165
|
exports.QueryCurrentAuctionBasketRequest = {
|
|
145
166
|
typeUrl: "/injective.auction.v1beta1.QueryCurrentAuctionBasketRequest",
|
|
146
167
|
is(o) {
|
|
@@ -204,6 +225,13 @@ function createBaseQueryCurrentAuctionBasketResponse() {
|
|
|
204
225
|
highestBidAmount: ""
|
|
205
226
|
};
|
|
206
227
|
}
|
|
228
|
+
/**
|
|
229
|
+
* QueryCurrentAuctionBasketResponse is the response type for the
|
|
230
|
+
* Query/CurrentAuctionBasket RPC method.
|
|
231
|
+
* @name QueryCurrentAuctionBasketResponse
|
|
232
|
+
* @package injective.auction.v1beta1
|
|
233
|
+
* @see proto type: injective.auction.v1beta1.QueryCurrentAuctionBasketResponse
|
|
234
|
+
*/
|
|
207
235
|
exports.QueryCurrentAuctionBasketResponse = {
|
|
208
236
|
typeUrl: "/injective.auction.v1beta1.QueryCurrentAuctionBasketResponse",
|
|
209
237
|
is(o) {
|
|
@@ -324,6 +352,13 @@ exports.QueryCurrentAuctionBasketResponse = {
|
|
|
324
352
|
function createBaseQueryModuleStateRequest() {
|
|
325
353
|
return {};
|
|
326
354
|
}
|
|
355
|
+
/**
|
|
356
|
+
* QueryModuleStateRequest is the request type for the Query/AuctionModuleState
|
|
357
|
+
* RPC method.
|
|
358
|
+
* @name QueryModuleStateRequest
|
|
359
|
+
* @package injective.auction.v1beta1
|
|
360
|
+
* @see proto type: injective.auction.v1beta1.QueryModuleStateRequest
|
|
361
|
+
*/
|
|
327
362
|
exports.QueryModuleStateRequest = {
|
|
328
363
|
typeUrl: "/injective.auction.v1beta1.QueryModuleStateRequest",
|
|
329
364
|
is(o) {
|
|
@@ -383,6 +418,13 @@ function createBaseQueryModuleStateResponse() {
|
|
|
383
418
|
state: undefined
|
|
384
419
|
};
|
|
385
420
|
}
|
|
421
|
+
/**
|
|
422
|
+
* QueryModuleStateResponse is the response type for the
|
|
423
|
+
* Query/AuctionModuleState RPC method.
|
|
424
|
+
* @name QueryModuleStateResponse
|
|
425
|
+
* @package injective.auction.v1beta1
|
|
426
|
+
* @see proto type: injective.auction.v1beta1.QueryModuleStateResponse
|
|
427
|
+
*/
|
|
386
428
|
exports.QueryModuleStateResponse = {
|
|
387
429
|
typeUrl: "/injective.auction.v1beta1.QueryModuleStateResponse",
|
|
388
430
|
is(o) {
|
|
@@ -456,6 +498,11 @@ exports.QueryModuleStateResponse = {
|
|
|
456
498
|
function createBaseQueryLastAuctionResultRequest() {
|
|
457
499
|
return {};
|
|
458
500
|
}
|
|
501
|
+
/**
|
|
502
|
+
* @name QueryLastAuctionResultRequest
|
|
503
|
+
* @package injective.auction.v1beta1
|
|
504
|
+
* @see proto type: injective.auction.v1beta1.QueryLastAuctionResultRequest
|
|
505
|
+
*/
|
|
459
506
|
exports.QueryLastAuctionResultRequest = {
|
|
460
507
|
typeUrl: "/injective.auction.v1beta1.QueryLastAuctionResultRequest",
|
|
461
508
|
is(o) {
|
|
@@ -515,6 +562,11 @@ function createBaseQueryLastAuctionResultResponse() {
|
|
|
515
562
|
lastAuctionResult: undefined
|
|
516
563
|
};
|
|
517
564
|
}
|
|
565
|
+
/**
|
|
566
|
+
* @name QueryLastAuctionResultResponse
|
|
567
|
+
* @package injective.auction.v1beta1
|
|
568
|
+
* @see proto type: injective.auction.v1beta1.QueryLastAuctionResultResponse
|
|
569
|
+
*/
|
|
518
570
|
exports.QueryLastAuctionResultResponse = {
|
|
519
571
|
typeUrl: "/injective.auction.v1beta1.QueryLastAuctionResultResponse",
|
|
520
572
|
is(o) {
|
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
import { QueryAuctionParamsRequest, QueryAuctionParamsResponse, QueryCurrentAuctionBasketRequest, QueryCurrentAuctionBasketResponse, QueryModuleStateRequest, QueryModuleStateResponse, QueryLastAuctionResultRequest, QueryLastAuctionResultResponse } from "./query";
|
|
2
|
+
/**
|
|
3
|
+
* Retrieves auction params
|
|
4
|
+
* @name getAuctionParams
|
|
5
|
+
* @package injective.auction.v1beta1
|
|
6
|
+
* @see proto service: injective.auction.v1beta1.AuctionParams
|
|
7
|
+
*/
|
|
2
8
|
export declare const getAuctionParams: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryAuctionParamsRequest) => Promise<QueryAuctionParamsResponse>;
|
|
9
|
+
/**
|
|
10
|
+
* Retrieves current auction basket with current highest bid and bidder
|
|
11
|
+
* @name getCurrentAuctionBasket
|
|
12
|
+
* @package injective.auction.v1beta1
|
|
13
|
+
* @see proto service: injective.auction.v1beta1.CurrentAuctionBasket
|
|
14
|
+
*/
|
|
3
15
|
export declare const getCurrentAuctionBasket: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryCurrentAuctionBasketRequest) => Promise<QueryCurrentAuctionBasketResponse>;
|
|
16
|
+
/**
|
|
17
|
+
* Retrieves the entire auction module's state
|
|
18
|
+
* @name getAuctionModuleState
|
|
19
|
+
* @package injective.auction.v1beta1
|
|
20
|
+
* @see proto service: injective.auction.v1beta1.AuctionModuleState
|
|
21
|
+
*/
|
|
4
22
|
export declare const getAuctionModuleState: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryModuleStateRequest) => Promise<QueryModuleStateResponse>;
|
|
23
|
+
/**
|
|
24
|
+
* @name getLastAuctionResult
|
|
25
|
+
* @package injective.auction.v1beta1
|
|
26
|
+
* @see proto service: injective.auction.v1beta1.LastAuctionResult
|
|
27
|
+
*/
|
|
5
28
|
export declare const getLastAuctionResult: (client: import("../../../helper-func-types").EndpointOrRpc, request: QueryLastAuctionResultRequest) => Promise<QueryLastAuctionResultResponse>;
|
|
@@ -3,7 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getLastAuctionResult = exports.getAuctionModuleState = exports.getCurrentAuctionBasket = exports.getAuctionParams = void 0;
|
|
4
4
|
const helper_func_types_1 = require("../../../helper-func-types");
|
|
5
5
|
const query_1 = require("./query");
|
|
6
|
-
|
|
6
|
+
/**
|
|
7
|
+
* Retrieves auction params
|
|
8
|
+
* @name getAuctionParams
|
|
9
|
+
* @package injective.auction.v1beta1
|
|
10
|
+
* @see proto service: injective.auction.v1beta1.AuctionParams
|
|
11
|
+
*/
|
|
7
12
|
exports.getAuctionParams = (0, helper_func_types_1.buildQuery)({
|
|
8
13
|
encode: query_1.QueryAuctionParamsRequest.encode,
|
|
9
14
|
decode: query_1.QueryAuctionParamsResponse.decode,
|
|
@@ -11,7 +16,12 @@ exports.getAuctionParams = (0, helper_func_types_1.buildQuery)({
|
|
|
11
16
|
method: "AuctionParams",
|
|
12
17
|
deps: [query_1.QueryAuctionParamsRequest, query_1.QueryAuctionParamsResponse]
|
|
13
18
|
});
|
|
14
|
-
|
|
19
|
+
/**
|
|
20
|
+
* Retrieves current auction basket with current highest bid and bidder
|
|
21
|
+
* @name getCurrentAuctionBasket
|
|
22
|
+
* @package injective.auction.v1beta1
|
|
23
|
+
* @see proto service: injective.auction.v1beta1.CurrentAuctionBasket
|
|
24
|
+
*/
|
|
15
25
|
exports.getCurrentAuctionBasket = (0, helper_func_types_1.buildQuery)({
|
|
16
26
|
encode: query_1.QueryCurrentAuctionBasketRequest.encode,
|
|
17
27
|
decode: query_1.QueryCurrentAuctionBasketResponse.decode,
|
|
@@ -19,7 +29,12 @@ exports.getCurrentAuctionBasket = (0, helper_func_types_1.buildQuery)({
|
|
|
19
29
|
method: "CurrentAuctionBasket",
|
|
20
30
|
deps: [query_1.QueryCurrentAuctionBasketRequest, query_1.QueryCurrentAuctionBasketResponse]
|
|
21
31
|
});
|
|
22
|
-
|
|
32
|
+
/**
|
|
33
|
+
* Retrieves the entire auction module's state
|
|
34
|
+
* @name getAuctionModuleState
|
|
35
|
+
* @package injective.auction.v1beta1
|
|
36
|
+
* @see proto service: injective.auction.v1beta1.AuctionModuleState
|
|
37
|
+
*/
|
|
23
38
|
exports.getAuctionModuleState = (0, helper_func_types_1.buildQuery)({
|
|
24
39
|
encode: query_1.QueryModuleStateRequest.encode,
|
|
25
40
|
decode: query_1.QueryModuleStateResponse.decode,
|
|
@@ -27,6 +42,11 @@ exports.getAuctionModuleState = (0, helper_func_types_1.buildQuery)({
|
|
|
27
42
|
method: "AuctionModuleState",
|
|
28
43
|
deps: [query_1.QueryModuleStateRequest, query_1.QueryModuleStateResponse]
|
|
29
44
|
});
|
|
45
|
+
/**
|
|
46
|
+
* @name getLastAuctionResult
|
|
47
|
+
* @package injective.auction.v1beta1
|
|
48
|
+
* @see proto service: injective.auction.v1beta1.LastAuctionResult
|
|
49
|
+
*/
|
|
30
50
|
exports.getLastAuctionResult = (0, helper_func_types_1.buildQuery)({
|
|
31
51
|
encode: query_1.QueryLastAuctionResultRequest.encode,
|
|
32
52
|
decode: query_1.QueryLastAuctionResultResponse.decode,
|