@imtbl/generated-clients 2.0.0-alpha.0
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/LICENSE.md +176 -0
- package/README.md +3 -0
- package/dist/browser/index.js +2 -0
- package/dist/node/index.cjs +2 -0
- package/dist/node/index.js +2 -0
- package/dist/types/blockchain-data/api.d.ts +21 -0
- package/dist/types/blockchain-data/base.d.ts +54 -0
- package/dist/types/blockchain-data/common.d.ts +65 -0
- package/dist/types/blockchain-data/configuration.d.ts +83 -0
- package/dist/types/blockchain-data/domain/activities-api.d.ts +141 -0
- package/dist/types/blockchain-data/domain/chains-api.d.ts +34 -0
- package/dist/types/blockchain-data/domain/collections-api.d.ts +141 -0
- package/dist/types/blockchain-data/domain/crafting-api.d.ts +38 -0
- package/dist/types/blockchain-data/domain/metadata-api.d.ts +187 -0
- package/dist/types/blockchain-data/domain/metadata-search-api.d.ts +162 -0
- package/dist/types/blockchain-data/domain/nft-owners-api.d.ts +127 -0
- package/dist/types/blockchain-data/domain/nfts-api.d.ts +262 -0
- package/dist/types/blockchain-data/domain/pricing-api.d.ts +81 -0
- package/dist/types/blockchain-data/domain/tokens-api.d.ts +80 -0
- package/dist/types/blockchain-data/index.d.ts +13 -0
- package/dist/types/blockchain-data/models/activity-asset.d.ts +19 -0
- package/dist/types/blockchain-data/models/activity-details.d.ts +23 -0
- package/dist/types/blockchain-data/models/activity-native-token.d.ts +24 -0
- package/dist/types/blockchain-data/models/activity-nft.d.ts +44 -0
- package/dist/types/blockchain-data/models/activity-token.d.ts +31 -0
- package/dist/types/blockchain-data/models/activity-type.d.ts +24 -0
- package/dist/types/blockchain-data/models/activity.d.ts +64 -0
- package/dist/types/blockchain-data/models/apierror400-all-of.d.ts +37 -0
- package/dist/types/blockchain-data/models/apierror400.d.ts +18 -0
- package/dist/types/blockchain-data/models/apierror401-all-of.d.ts +37 -0
- package/dist/types/blockchain-data/models/apierror401.d.ts +18 -0
- package/dist/types/blockchain-data/models/apierror403-all-of.d.ts +37 -0
- package/dist/types/blockchain-data/models/apierror403.d.ts +18 -0
- package/dist/types/blockchain-data/models/apierror404-all-of.d.ts +37 -0
- package/dist/types/blockchain-data/models/apierror404.d.ts +18 -0
- package/dist/types/blockchain-data/models/apierror409-all-of.d.ts +39 -0
- package/dist/types/blockchain-data/models/apierror409.d.ts +18 -0
- package/dist/types/blockchain-data/models/apierror429-all-of.d.ts +37 -0
- package/dist/types/blockchain-data/models/apierror429.d.ts +18 -0
- package/dist/types/blockchain-data/models/apierror500-all-of.d.ts +37 -0
- package/dist/types/blockchain-data/models/apierror500.d.ts +18 -0
- package/dist/types/blockchain-data/models/asset-verification-status.d.ts +22 -0
- package/dist/types/blockchain-data/models/basic-apierror.d.ts +36 -0
- package/dist/types/blockchain-data/models/bid.d.ts +55 -0
- package/dist/types/blockchain-data/models/blockchain-metadata.d.ts +42 -0
- package/dist/types/blockchain-data/models/burn.d.ts +37 -0
- package/dist/types/blockchain-data/models/call.d.ts +36 -0
- package/dist/types/blockchain-data/models/chain-with-details-all-of.d.ts +36 -0
- package/dist/types/blockchain-data/models/chain-with-details.d.ts +18 -0
- package/dist/types/blockchain-data/models/chain.d.ts +30 -0
- package/dist/types/blockchain-data/models/collection-contract-type.d.ts +20 -0
- package/dist/types/blockchain-data/models/collection-metadata.d.ts +60 -0
- package/dist/types/blockchain-data/models/collection.d.ts +105 -0
- package/dist/types/blockchain-data/models/create-mint-request-request.d.ts +25 -0
- package/dist/types/blockchain-data/models/create-mint-request-result.d.ts +42 -0
- package/dist/types/blockchain-data/models/deposit.d.ts +37 -0
- package/dist/types/blockchain-data/models/filter-result.d.ts +38 -0
- package/dist/types/blockchain-data/models/filter-value.d.ts +30 -0
- package/dist/types/blockchain-data/models/filter.d.ts +37 -0
- package/dist/types/blockchain-data/models/get-activity-result.d.ts +25 -0
- package/dist/types/blockchain-data/models/get-collection-result.d.ts +25 -0
- package/dist/types/blockchain-data/models/get-metadata-result.d.ts +25 -0
- package/dist/types/blockchain-data/models/get-mint-request-result.d.ts +93 -0
- package/dist/types/blockchain-data/models/get-nftresult.d.ts +25 -0
- package/dist/types/blockchain-data/models/get-token-result.d.ts +25 -0
- package/dist/types/blockchain-data/models/index.d.ts +113 -0
- package/dist/types/blockchain-data/models/last-trade.d.ts +55 -0
- package/dist/types/blockchain-data/models/list-activities-result.d.ts +32 -0
- package/dist/types/blockchain-data/models/list-chains-result.d.ts +32 -0
- package/dist/types/blockchain-data/models/list-collection-owners-result.d.ts +32 -0
- package/dist/types/blockchain-data/models/list-collections-result.d.ts +32 -0
- package/dist/types/blockchain-data/models/list-filters-result.d.ts +32 -0
- package/dist/types/blockchain-data/models/list-metadata-result.d.ts +32 -0
- package/dist/types/blockchain-data/models/list-mint-requests-result.d.ts +32 -0
- package/dist/types/blockchain-data/models/list-nftowners-result.d.ts +32 -0
- package/dist/types/blockchain-data/models/list-nfts-by-owner-result.d.ts +32 -0
- package/dist/types/blockchain-data/models/list-nfts-result.d.ts +32 -0
- package/dist/types/blockchain-data/models/list-tokens-result.d.ts +32 -0
- package/dist/types/blockchain-data/models/listing.d.ts +55 -0
- package/dist/types/blockchain-data/models/market-floor-listing.d.ts +18 -0
- package/dist/types/blockchain-data/models/market-nft.d.ts +25 -0
- package/dist/types/blockchain-data/models/market-price-details-token.d.ts +23 -0
- package/dist/types/blockchain-data/models/market-price-details.d.ts +52 -0
- package/dist/types/blockchain-data/models/market-price-erc20-token.d.ts +49 -0
- package/dist/types/blockchain-data/models/market-price-fees.d.ts +46 -0
- package/dist/types/blockchain-data/models/market-price-native-token.d.ts +37 -0
- package/dist/types/blockchain-data/models/market-top-bid.d.ts +18 -0
- package/dist/types/blockchain-data/models/market.d.ts +39 -0
- package/dist/types/blockchain-data/models/marketplace-contract-type.d.ts +20 -0
- package/dist/types/blockchain-data/models/metadata-refresh-rate-limit-result.d.ts +42 -0
- package/dist/types/blockchain-data/models/metadata.d.ts +92 -0
- package/dist/types/blockchain-data/models/mint-asset.d.ts +49 -0
- package/dist/types/blockchain-data/models/mint-request-error-message.d.ts +24 -0
- package/dist/types/blockchain-data/models/mint-request-status.d.ts +21 -0
- package/dist/types/blockchain-data/models/mint.d.ts +37 -0
- package/dist/types/blockchain-data/models/nft.d.ts +124 -0
- package/dist/types/blockchain-data/models/nftbundle.d.ts +46 -0
- package/dist/types/blockchain-data/models/nftcontract-type.d.ts +20 -0
- package/dist/types/blockchain-data/models/nftmetadata-attribute-value.d.ts +17 -0
- package/dist/types/blockchain-data/models/nftmetadata-attribute.d.ts +47 -0
- package/dist/types/blockchain-data/models/nftmetadata-request.d.ts +61 -0
- package/dist/types/blockchain-data/models/nftowner.d.ts +55 -0
- package/dist/types/blockchain-data/models/nftquote-result.d.ts +51 -0
- package/dist/types/blockchain-data/models/nftsale.d.ts +50 -0
- package/dist/types/blockchain-data/models/nftwith-balance.d.ts +117 -0
- package/dist/types/blockchain-data/models/nftwith-owner.d.ts +55 -0
- package/dist/types/blockchain-data/models/nftwith-stack.d.ts +111 -0
- package/dist/types/blockchain-data/models/page.d.ts +30 -0
- package/dist/types/blockchain-data/models/quotes-for-nfts-result.d.ts +32 -0
- package/dist/types/blockchain-data/models/quotes-for-stacks-result.d.ts +32 -0
- package/dist/types/blockchain-data/models/refresh-collection-metadata-request.d.ts +25 -0
- package/dist/types/blockchain-data/models/refresh-collection-metadata-result.d.ts +38 -0
- package/dist/types/blockchain-data/models/refresh-metadata-by-id.d.ts +18 -0
- package/dist/types/blockchain-data/models/refresh-metadata-by-idall-of.d.ts +24 -0
- package/dist/types/blockchain-data/models/refresh-metadata-by-idrequest.d.ts +25 -0
- package/dist/types/blockchain-data/models/refresh-metadata-by-token-id.d.ts +18 -0
- package/dist/types/blockchain-data/models/refresh-metadata-by-token-idall-of.d.ts +24 -0
- package/dist/types/blockchain-data/models/refresh-nftmetadata-by-token-idrequest.d.ts +25 -0
- package/dist/types/blockchain-data/models/refreshable-nftattributes.d.ts +17 -0
- package/dist/types/blockchain-data/models/sale-fee.d.ts +43 -0
- package/dist/types/blockchain-data/models/sale-payment-token.d.ts +19 -0
- package/dist/types/blockchain-data/models/sale-payment.d.ts +44 -0
- package/dist/types/blockchain-data/models/search-nfts-result.d.ts +32 -0
- package/dist/types/blockchain-data/models/search-stacks-result.d.ts +32 -0
- package/dist/types/blockchain-data/models/sign-crafting-request-multi-caller.d.ts +36 -0
- package/dist/types/blockchain-data/models/sign-crafting-request.d.ts +44 -0
- package/dist/types/blockchain-data/models/sign-crafting-result.d.ts +30 -0
- package/dist/types/blockchain-data/models/stack-bundle.d.ts +52 -0
- package/dist/types/blockchain-data/models/stack-quote-result.d.ts +44 -0
- package/dist/types/blockchain-data/models/stack.d.ts +99 -0
- package/dist/types/blockchain-data/models/token-contract-type.d.ts +19 -0
- package/dist/types/blockchain-data/models/token.d.ts +92 -0
- package/dist/types/blockchain-data/models/transfer.d.ts +43 -0
- package/dist/types/blockchain-data/models/withdrawal.d.ts +37 -0
- package/dist/types/config/config.d.ts +32 -0
- package/dist/types/config/config.test.d.ts +1 -0
- package/dist/types/config/index.d.ts +1 -0
- package/dist/types/imx/api.d.ts +28 -0
- package/dist/types/imx/base.d.ts +55 -0
- package/dist/types/imx/common.d.ts +65 -0
- package/dist/types/imx/configuration.d.ts +83 -0
- package/dist/types/imx/domain/assets-api.d.ts +287 -0
- package/dist/types/imx/domain/balances-api.d.ts +179 -0
- package/dist/types/imx/domain/collections-api.d.ts +448 -0
- package/dist/types/imx/domain/deposits-api.d.ts +317 -0
- package/dist/types/imx/domain/encoding-api.d.ts +97 -0
- package/dist/types/imx/domain/exchanges-api.d.ts +395 -0
- package/dist/types/imx/domain/metadata-api.d.ts +245 -0
- package/dist/types/imx/domain/metadata-refreshes-api.d.ts +357 -0
- package/dist/types/imx/domain/mints-api.d.ts +364 -0
- package/dist/types/imx/domain/nft-checkout-primary-api.d.ts +376 -0
- package/dist/types/imx/domain/orders-api.d.ts +668 -0
- package/dist/types/imx/domain/projects-api.d.ts +105 -0
- package/dist/types/imx/domain/tokens-api.d.ts +179 -0
- package/dist/types/imx/domain/trades-api.d.ts +347 -0
- package/dist/types/imx/domain/transfers-api.d.ts +524 -0
- package/dist/types/imx/domain/users-api.d.ts +342 -0
- package/dist/types/imx/domain/withdrawals-api.d.ts +513 -0
- package/dist/types/imx/index.d.ts +14 -0
- package/dist/types/imx/models/add-metadata-schema-to-collection-request.d.ts +31 -0
- package/dist/types/imx/models/aggregate-limit.d.ts +30 -0
- package/dist/types/imx/models/api-order-v3-buy.d.ts +18 -0
- package/dist/types/imx/models/api-order-v3-maker-fees.d.ts +18 -0
- package/dist/types/imx/models/api-order-v3-sell.d.ts +18 -0
- package/dist/types/imx/models/api-order-v3-taker-fees.d.ts +18 -0
- package/dist/types/imx/models/api-order-v3.d.ts +101 -0
- package/dist/types/imx/models/api-register-passport-user-request.d.ts +42 -0
- package/dist/types/imx/models/api-sdkversion-check-response.d.ts +36 -0
- package/dist/types/imx/models/api-summarize-collections-response.d.ts +37 -0
- package/dist/types/imx/models/api-summarized-collection.d.ts +31 -0
- package/dist/types/imx/models/apierror.d.ts +36 -0
- package/dist/types/imx/models/asset-collection.d.ts +18 -0
- package/dist/types/imx/models/asset-orders.d.ts +18 -0
- package/dist/types/imx/models/asset-properties-collection.d.ts +18 -0
- package/dist/types/imx/models/asset-properties.d.ts +37 -0
- package/dist/types/imx/models/asset-with-orders-collection.d.ts +18 -0
- package/dist/types/imx/models/asset-with-orders-orders.d.ts +18 -0
- package/dist/types/imx/models/asset-with-orders.d.ts +111 -0
- package/dist/types/imx/models/asset.d.ts +111 -0
- package/dist/types/imx/models/balance.d.ts +48 -0
- package/dist/types/imx/models/cancel-order-request.d.ts +30 -0
- package/dist/types/imx/models/cancel-order-response.d.ts +30 -0
- package/dist/types/imx/models/collection-collection.d.ts +84 -0
- package/dist/types/imx/models/collection-details.d.ts +30 -0
- package/dist/types/imx/models/collection-filter-range.d.ts +18 -0
- package/dist/types/imx/models/collection-filter.d.ts +43 -0
- package/dist/types/imx/models/collection.d.ts +78 -0
- package/dist/types/imx/models/contract-create-apirequest.d.ts +36 -0
- package/dist/types/imx/models/contract-create-response.d.ts +24 -0
- package/dist/types/imx/models/create-collection-request.d.ts +66 -0
- package/dist/types/imx/models/create-exchange-and-urlapirequest.d.ts +53 -0
- package/dist/types/imx/models/create-metadata-refresh-request.d.ts +30 -0
- package/dist/types/imx/models/create-metadata-refresh-response.d.ts +24 -0
- package/dist/types/imx/models/create-order-request-v3.d.ts +91 -0
- package/dist/types/imx/models/create-order-request.d.ts +91 -0
- package/dist/types/imx/models/create-order-response.d.ts +42 -0
- package/dist/types/imx/models/create-project-apikey-response.d.ts +24 -0
- package/dist/types/imx/models/create-project-group-request.d.ts +35 -0
- package/dist/types/imx/models/create-project-request.d.ts +36 -0
- package/dist/types/imx/models/create-project-response.d.ts +30 -0
- package/dist/types/imx/models/create-trade-request-v1-fee-info.d.ts +18 -0
- package/dist/types/imx/models/create-trade-request-v1.d.ts +104 -0
- package/dist/types/imx/models/create-trade-response.d.ts +36 -0
- package/dist/types/imx/models/create-transfer-request-v1.d.ts +72 -0
- package/dist/types/imx/models/create-transfer-request.d.ts +31 -0
- package/dist/types/imx/models/create-transfer-response-v1.d.ts +42 -0
- package/dist/types/imx/models/create-transfer-response-v2.d.ts +24 -0
- package/dist/types/imx/models/create-transfer-response.d.ts +24 -0
- package/dist/types/imx/models/create-withdrawal-request-v2.d.ts +72 -0
- package/dist/types/imx/models/create-withdrawal-request.d.ts +54 -0
- package/dist/types/imx/models/create-withdrawal-response.d.ts +36 -0
- package/dist/types/imx/models/currency-with-limits.d.ts +43 -0
- package/dist/types/imx/models/deposit-token.d.ts +18 -0
- package/dist/types/imx/models/deposit.d.ts +49 -0
- package/dist/types/imx/models/encode-asset-request-token-data.d.ts +18 -0
- package/dist/types/imx/models/encode-asset-request-token.d.ts +37 -0
- package/dist/types/imx/models/encode-asset-request.d.ts +25 -0
- package/dist/types/imx/models/encode-asset-response.d.ts +30 -0
- package/dist/types/imx/models/encode-asset-token-data.d.ts +42 -0
- package/dist/types/imx/models/exchange-create-exchange-and-urlresponse.d.ts +48 -0
- package/dist/types/imx/models/exchange.d.ts +67 -0
- package/dist/types/imx/models/fee-data.d.ts +30 -0
- package/dist/types/imx/models/fee-entry.d.ts +30 -0
- package/dist/types/imx/models/fee-info.d.ts +36 -0
- package/dist/types/imx/models/fee-token-data.d.ts +18 -0
- package/dist/types/imx/models/fee-token.d.ts +36 -0
- package/dist/types/imx/models/fee.d.ts +36 -0
- package/dist/types/imx/models/get-metadata-refresh-errors-response.d.ts +37 -0
- package/dist/types/imx/models/get-metadata-refresh-response.d.ts +61 -0
- package/dist/types/imx/models/get-metadata-refreshes.d.ts +37 -0
- package/dist/types/imx/models/get-projects-response.d.ts +37 -0
- package/dist/types/imx/models/get-signable-cancel-order-request.d.ts +24 -0
- package/dist/types/imx/models/get-signable-cancel-order-response.d.ts +48 -0
- package/dist/types/imx/models/get-signable-deposit-request-token.d.ts +18 -0
- package/dist/types/imx/models/get-signable-deposit-request.d.ts +37 -0
- package/dist/types/imx/models/get-signable-deposit-response.d.ts +48 -0
- package/dist/types/imx/models/get-signable-order-request-token-buy.d.ts +18 -0
- package/dist/types/imx/models/get-signable-order-request-token-sell.d.ts +18 -0
- package/dist/types/imx/models/get-signable-order-request-v3-token-buy.d.ts +18 -0
- package/dist/types/imx/models/get-signable-order-request-v3-token-sell.d.ts +18 -0
- package/dist/types/imx/models/get-signable-order-request-v3.d.ts +69 -0
- package/dist/types/imx/models/get-signable-order-request.d.ts +69 -0
- package/dist/types/imx/models/get-signable-order-response-fee-info.d.ts +18 -0
- package/dist/types/imx/models/get-signable-order-response.d.ts +103 -0
- package/dist/types/imx/models/get-signable-registration-offchain-response.d.ts +42 -0
- package/dist/types/imx/models/get-signable-registration-request.d.ts +30 -0
- package/dist/types/imx/models/get-signable-registration-response.d.ts +42 -0
- package/dist/types/imx/models/get-signable-trade-request.d.ts +43 -0
- package/dist/types/imx/models/get-signable-trade-response-fee-info.d.ts +18 -0
- package/dist/types/imx/models/get-signable-trade-response-result.d.ts +18 -0
- package/dist/types/imx/models/get-signable-trade-response.d.ts +103 -0
- package/dist/types/imx/models/get-signable-trade-result-fee-info.d.ts +18 -0
- package/dist/types/imx/models/get-signable-trade-result.d.ts +103 -0
- package/dist/types/imx/models/get-signable-transfer-request-token.d.ts +18 -0
- package/dist/types/imx/models/get-signable-transfer-request-v1.d.ts +43 -0
- package/dist/types/imx/models/get-signable-transfer-request-v2.d.ts +31 -0
- package/dist/types/imx/models/get-signable-transfer-request.d.ts +43 -0
- package/dist/types/imx/models/get-signable-transfer-response-v1.d.ts +90 -0
- package/dist/types/imx/models/get-signable-transfer-response-v2.d.ts +37 -0
- package/dist/types/imx/models/get-signable-transfer-response.d.ts +37 -0
- package/dist/types/imx/models/get-signable-withdrawal-request-token.d.ts +18 -0
- package/dist/types/imx/models/get-signable-withdrawal-request.d.ts +37 -0
- package/dist/types/imx/models/get-signable-withdrawal-response-v2.d.ts +96 -0
- package/dist/types/imx/models/get-signable-withdrawal-response.d.ts +72 -0
- package/dist/types/imx/models/get-transactions-response.d.ts +37 -0
- package/dist/types/imx/models/get-users-api-response.d.ts +24 -0
- package/dist/types/imx/models/index.d.ts +190 -0
- package/dist/types/imx/models/lambdas-apierror.d.ts +42 -0
- package/dist/types/imx/models/list-assets-response.d.ts +37 -0
- package/dist/types/imx/models/list-balances-response.d.ts +37 -0
- package/dist/types/imx/models/list-collections-response.d.ts +37 -0
- package/dist/types/imx/models/list-deposits-response.d.ts +37 -0
- package/dist/types/imx/models/list-mints-response.d.ts +37 -0
- package/dist/types/imx/models/list-orders-response-v3.d.ts +37 -0
- package/dist/types/imx/models/list-orders-response.d.ts +37 -0
- package/dist/types/imx/models/list-tokens-response.d.ts +31 -0
- package/dist/types/imx/models/list-trades-response.d.ts +37 -0
- package/dist/types/imx/models/list-transfers-response.d.ts +37 -0
- package/dist/types/imx/models/list-withdrawals-response.d.ts +37 -0
- package/dist/types/imx/models/metadata-refresh-errors.d.ts +60 -0
- package/dist/types/imx/models/metadata-refresh-excluding-summary.d.ts +54 -0
- package/dist/types/imx/models/metadata-refresh-summary.d.ts +36 -0
- package/dist/types/imx/models/metadata-schema-property.d.ts +36 -0
- package/dist/types/imx/models/metadata-schema-request.d.ts +44 -0
- package/dist/types/imx/models/mint-fee.d.ts +30 -0
- package/dist/types/imx/models/mint-request.d.ts +44 -0
- package/dist/types/imx/models/mint-result-details.d.ts +36 -0
- package/dist/types/imx/models/mint-token-data-oaigen.d.ts +18 -0
- package/dist/types/imx/models/mint-token-data-v2.d.ts +37 -0
- package/dist/types/imx/models/mint-token-data.d.ts +60 -0
- package/dist/types/imx/models/mint-token-oaigen.d.ts +18 -0
- package/dist/types/imx/models/mint-token.d.ts +18 -0
- package/dist/types/imx/models/mint-tokens-response.d.ts +25 -0
- package/dist/types/imx/models/mint-user.d.ts +31 -0
- package/dist/types/imx/models/mint.d.ts +56 -0
- package/dist/types/imx/models/mintable-token-details.d.ts +36 -0
- package/dist/types/imx/models/nftprimarytransaction-create-apirequest.d.ts +49 -0
- package/dist/types/imx/models/nftprimarytransaction-create-response.d.ts +66 -0
- package/dist/types/imx/models/nftprimarytransaction-get-response.d.ts +66 -0
- package/dist/types/imx/models/nftprimarytransaction-list-transactions-response.d.ts +37 -0
- package/dist/types/imx/models/nftprimarytransaction-transaction-data.d.ts +126 -0
- package/dist/types/imx/models/nftprimarytransaction-widget-params.d.ts +24 -0
- package/dist/types/imx/models/optional-exchange-data.d.ts +66 -0
- package/dist/types/imx/models/order-buy.d.ts +18 -0
- package/dist/types/imx/models/order-details.d.ts +30 -0
- package/dist/types/imx/models/order-fee-info-token.d.ts +18 -0
- package/dist/types/imx/models/order-fee-info.d.ts +43 -0
- package/dist/types/imx/models/order-sell.d.ts +18 -0
- package/dist/types/imx/models/order-v3-buy.d.ts +18 -0
- package/dist/types/imx/models/order-v3-maker-fees.d.ts +18 -0
- package/dist/types/imx/models/order-v3-sell.d.ts +18 -0
- package/dist/types/imx/models/order-v3-taker-fees.d.ts +18 -0
- package/dist/types/imx/models/order-v3.d.ts +101 -0
- package/dist/types/imx/models/order.d.ts +81 -0
- package/dist/types/imx/models/orders-maker-taker-fee.d.ts +55 -0
- package/dist/types/imx/models/project.d.ts +126 -0
- package/dist/types/imx/models/range.d.ts +30 -0
- package/dist/types/imx/models/register-passport-user-request.d.ts +48 -0
- package/dist/types/imx/models/register-passport-user-result.d.ts +36 -0
- package/dist/types/imx/models/register-user-request.d.ts +48 -0
- package/dist/types/imx/models/register-user-response.d.ts +24 -0
- package/dist/types/imx/models/signable-token.d.ts +30 -0
- package/dist/types/imx/models/signable-transfer-details-token.d.ts +18 -0
- package/dist/types/imx/models/signable-transfer-details-v2-token.d.ts +18 -0
- package/dist/types/imx/models/signable-transfer-details-v2.d.ts +37 -0
- package/dist/types/imx/models/signable-transfer-details.d.ts +37 -0
- package/dist/types/imx/models/signable-transfer-response-details-token.d.ts +18 -0
- package/dist/types/imx/models/signable-transfer-response-details.d.ts +85 -0
- package/dist/types/imx/models/store-maker-taker-fee.d.ts +31 -0
- package/dist/types/imx/models/success-response.d.ts +24 -0
- package/dist/types/imx/models/summarized-collection-collection.d.ts +18 -0
- package/dist/types/imx/models/summarized-collection.d.ts +37 -0
- package/dist/types/imx/models/token-data-oaigen.d.ts +18 -0
- package/dist/types/imx/models/token-data-properties.d.ts +18 -0
- package/dist/types/imx/models/token-data.d.ts +67 -0
- package/dist/types/imx/models/token-details.d.ts +54 -0
- package/dist/types/imx/models/token.d.ts +31 -0
- package/dist/types/imx/models/trade-a.d.ts +18 -0
- package/dist/types/imx/models/trade-b.d.ts +18 -0
- package/dist/types/imx/models/trade-side.d.ts +48 -0
- package/dist/types/imx/models/trade.d.ts +50 -0
- package/dist/types/imx/models/trades-create-trade-request-fee-info.d.ts +18 -0
- package/dist/types/imx/models/trades-create-trade-request.d.ts +104 -0
- package/dist/types/imx/models/transfer-request.d.ts +66 -0
- package/dist/types/imx/models/transfer-token.d.ts +18 -0
- package/dist/types/imx/models/transfer.d.ts +55 -0
- package/dist/types/imx/models/update-collection-request.d.ts +48 -0
- package/dist/types/imx/models/widget-params.d.ts +36 -0
- package/dist/types/imx/models/withdrawal-token.d.ts +18 -0
- package/dist/types/imx/models/withdrawal.d.ts +61 -0
- package/dist/types/imx-api-clents.test.d.ts +1 -0
- package/dist/types/imx-api-clients.d.ts +23 -0
- package/dist/types/index.d.ts +7 -0
- package/dist/types/mr-api-clents.test.d.ts +1 -0
- package/dist/types/mr-api-clients.d.ts +15 -0
- package/dist/types/multi-rollup/api.d.ts +25 -0
- package/dist/types/multi-rollup/base.d.ts +54 -0
- package/dist/types/multi-rollup/common.d.ts +65 -0
- package/dist/types/multi-rollup/configuration.d.ts +83 -0
- package/dist/types/multi-rollup/domain/activities-api.d.ts +293 -0
- package/dist/types/multi-rollup/domain/chains-api.d.ts +95 -0
- package/dist/types/multi-rollup/domain/collections-api.d.ts +317 -0
- package/dist/types/multi-rollup/domain/crafting-api.d.ts +96 -0
- package/dist/types/multi-rollup/domain/guardian-api.d.ts +519 -0
- package/dist/types/multi-rollup/domain/metadata-api.d.ts +434 -0
- package/dist/types/multi-rollup/domain/metadata-search-api.d.ts +316 -0
- package/dist/types/multi-rollup/domain/nft-owners-api.d.ts +276 -0
- package/dist/types/multi-rollup/domain/nfts-api.d.ts +561 -0
- package/dist/types/multi-rollup/domain/orders-api.d.ts +1112 -0
- package/dist/types/multi-rollup/domain/passport-api.d.ts +318 -0
- package/dist/types/multi-rollup/domain/passport-profile-api.d.ts +118 -0
- package/dist/types/multi-rollup/domain/pricing-api.d.ts +182 -0
- package/dist/types/multi-rollup/domain/tokens-api.d.ts +183 -0
- package/dist/types/multi-rollup/index.d.ts +14 -0
- package/dist/types/multi-rollup/models/active-order-status.d.ts +28 -0
- package/dist/types/multi-rollup/models/activity-asset.d.ts +19 -0
- package/dist/types/multi-rollup/models/activity-details.d.ts +23 -0
- package/dist/types/multi-rollup/models/activity-native-token.d.ts +24 -0
- package/dist/types/multi-rollup/models/activity-nft.d.ts +44 -0
- package/dist/types/multi-rollup/models/activity-token.d.ts +31 -0
- package/dist/types/multi-rollup/models/activity-type.d.ts +25 -0
- package/dist/types/multi-rollup/models/activity.d.ts +64 -0
- package/dist/types/multi-rollup/models/analysis.d.ts +37 -0
- package/dist/types/multi-rollup/models/apierror400-all-of.d.ts +34 -0
- package/dist/types/multi-rollup/models/apierror400.d.ts +18 -0
- package/dist/types/multi-rollup/models/apierror401-all-of.d.ts +34 -0
- package/dist/types/multi-rollup/models/apierror401.d.ts +18 -0
- package/dist/types/multi-rollup/models/apierror403-all-of.d.ts +34 -0
- package/dist/types/multi-rollup/models/apierror403.d.ts +18 -0
- package/dist/types/multi-rollup/models/apierror404-all-of.d.ts +34 -0
- package/dist/types/multi-rollup/models/apierror404.d.ts +18 -0
- package/dist/types/multi-rollup/models/apierror409-all-of.d.ts +36 -0
- package/dist/types/multi-rollup/models/apierror409.d.ts +18 -0
- package/dist/types/multi-rollup/models/apierror429-all-of.d.ts +34 -0
- package/dist/types/multi-rollup/models/apierror429.d.ts +18 -0
- package/dist/types/multi-rollup/models/apierror500-all-of.d.ts +34 -0
- package/dist/types/multi-rollup/models/apierror500.d.ts +18 -0
- package/dist/types/multi-rollup/models/apierror501-all-of.d.ts +34 -0
- package/dist/types/multi-rollup/models/apierror501.d.ts +18 -0
- package/dist/types/multi-rollup/models/asset-collection-item.d.ts +22 -0
- package/dist/types/multi-rollup/models/asset-verification-status.d.ts +23 -0
- package/dist/types/multi-rollup/models/basic-apierror.d.ts +36 -0
- package/dist/types/multi-rollup/models/bid-result.d.ts +25 -0
- package/dist/types/multi-rollup/models/bid.d.ts +55 -0
- package/dist/types/multi-rollup/models/blockchain-metadata.d.ts +42 -0
- package/dist/types/multi-rollup/models/burn.d.ts +37 -0
- package/dist/types/multi-rollup/models/call.d.ts +36 -0
- package/dist/types/multi-rollup/models/cancel-orders-request-body.d.ts +36 -0
- package/dist/types/multi-rollup/models/cancel-orders-result-data.d.ts +37 -0
- package/dist/types/multi-rollup/models/cancel-orders-result.d.ts +25 -0
- package/dist/types/multi-rollup/models/cancelled-order-status.d.ts +46 -0
- package/dist/types/multi-rollup/models/chain-with-details-all-of.d.ts +36 -0
- package/dist/types/multi-rollup/models/chain-with-details.d.ts +18 -0
- package/dist/types/multi-rollup/models/chain.d.ts +30 -0
- package/dist/types/multi-rollup/models/collection-bid-result.d.ts +25 -0
- package/dist/types/multi-rollup/models/collection-contract-type.d.ts +21 -0
- package/dist/types/multi-rollup/models/collection-metadata.d.ts +60 -0
- package/dist/types/multi-rollup/models/collection.d.ts +105 -0
- package/dist/types/multi-rollup/models/create-bid-request-body.d.ts +82 -0
- package/dist/types/multi-rollup/models/create-collection-bid-request-body.d.ts +82 -0
- package/dist/types/multi-rollup/models/create-counterfactual-address-request.d.ts +30 -0
- package/dist/types/multi-rollup/models/create-counterfactual-address-res.d.ts +24 -0
- package/dist/types/multi-rollup/models/create-listing-request-body.d.ts +81 -0
- package/dist/types/multi-rollup/models/create-mint-request-request.d.ts +25 -0
- package/dist/types/multi-rollup/models/create-mint-request-result.d.ts +42 -0
- package/dist/types/multi-rollup/models/deposit.d.ts +37 -0
- package/dist/types/multi-rollup/models/eip712-message-domain.d.ts +48 -0
- package/dist/types/multi-rollup/models/eip712-message-types-eip712-domain-inner.d.ts +30 -0
- package/dist/types/multi-rollup/models/eip712-message-types.d.ts +26 -0
- package/dist/types/multi-rollup/models/eip712-message.d.ts +44 -0
- package/dist/types/multi-rollup/models/erc1155-collection-item.d.ts +40 -0
- package/dist/types/multi-rollup/models/erc1155-item.d.ts +46 -0
- package/dist/types/multi-rollup/models/erc191-message-evaluation-request.d.ts +30 -0
- package/dist/types/multi-rollup/models/erc191-message-response.d.ts +48 -0
- package/dist/types/multi-rollup/models/erc20-approve-metadata.d.ts +77 -0
- package/dist/types/multi-rollup/models/erc20-item.d.ts +40 -0
- package/dist/types/multi-rollup/models/erc20-transfer-from-metadata.d.ts +71 -0
- package/dist/types/multi-rollup/models/erc20-transfer-metadata.d.ts +65 -0
- package/dist/types/multi-rollup/models/erc721-approve-metadata.d.ts +83 -0
- package/dist/types/multi-rollup/models/erc721-collection-item.d.ts +41 -0
- package/dist/types/multi-rollup/models/erc721-item.d.ts +40 -0
- package/dist/types/multi-rollup/models/erc721-safe-transfer-from-batch-item.d.ts +42 -0
- package/dist/types/multi-rollup/models/erc721-safe-transfer-from-batch-metadata.d.ts +54 -0
- package/dist/types/multi-rollup/models/erc721-transfer-from-metadata.d.ts +71 -0
- package/dist/types/multi-rollup/models/evmmessage.d.ts +56 -0
- package/dist/types/multi-rollup/models/expired-order-status.d.ts +28 -0
- package/dist/types/multi-rollup/models/failed-order-cancellation.d.ts +34 -0
- package/dist/types/multi-rollup/models/fee.d.ts +43 -0
- package/dist/types/multi-rollup/models/fill-status.d.ts +30 -0
- package/dist/types/multi-rollup/models/filled-order-status.d.ts +28 -0
- package/dist/types/multi-rollup/models/filter-result.d.ts +38 -0
- package/dist/types/multi-rollup/models/filter-value.d.ts +30 -0
- package/dist/types/multi-rollup/models/filter.d.ts +37 -0
- package/dist/types/multi-rollup/models/fulfillable-order.d.ts +37 -0
- package/dist/types/multi-rollup/models/fulfillment-data-request.d.ts +43 -0
- package/dist/types/multi-rollup/models/fulfillment-data200-response-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/fulfillment-data200-response.d.ts +25 -0
- package/dist/types/multi-rollup/models/get-activity-result.d.ts +25 -0
- package/dist/types/multi-rollup/models/get-collection-result.d.ts +25 -0
- package/dist/types/multi-rollup/models/get-linked-addresses-res-deprecated.d.ts +24 -0
- package/dist/types/multi-rollup/models/get-linked-addresses-res.d.ts +24 -0
- package/dist/types/multi-rollup/models/get-metadata-result.d.ts +25 -0
- package/dist/types/multi-rollup/models/get-mint-request-result.d.ts +93 -0
- package/dist/types/multi-rollup/models/get-nftresult.d.ts +25 -0
- package/dist/types/multi-rollup/models/get-token-result.d.ts +25 -0
- package/dist/types/multi-rollup/models/get-transaction-metadata-request.d.ts +42 -0
- package/dist/types/multi-rollup/models/get-transaction-metadata-res.d.ts +25 -0
- package/dist/types/multi-rollup/models/get-typed-data-metadata-request.d.ts +25 -0
- package/dist/types/multi-rollup/models/get-typed-data-metadata-res.d.ts +18 -0
- package/dist/types/multi-rollup/models/highest-severity.d.ts +31 -0
- package/dist/types/multi-rollup/models/immutable-verification-status-enum.d.ts +23 -0
- package/dist/types/multi-rollup/models/inactive-order-status.d.ts +40 -0
- package/dist/types/multi-rollup/models/index.d.ts +232 -0
- package/dist/types/multi-rollup/models/item.d.ts +34 -0
- package/dist/types/multi-rollup/models/last-trade.d.ts +55 -0
- package/dist/types/multi-rollup/models/link-wallet-v2-request.d.ts +42 -0
- package/dist/types/multi-rollup/models/list-activities-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/list-bids-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/list-chains-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/list-collection-bids-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/list-collection-owners-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/list-collections-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/list-filters-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/list-listings-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/list-metadata-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/list-mint-requests-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/list-nftowners-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/list-nfts-by-owner-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/list-nfts-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/list-tokens-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/list-trade-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/listing-result.d.ts +25 -0
- package/dist/types/multi-rollup/models/listing.d.ts +55 -0
- package/dist/types/multi-rollup/models/market-floor-listing.d.ts +18 -0
- package/dist/types/multi-rollup/models/market-nft.d.ts +25 -0
- package/dist/types/multi-rollup/models/market-price-details-token.d.ts +23 -0
- package/dist/types/multi-rollup/models/market-price-details.d.ts +52 -0
- package/dist/types/multi-rollup/models/market-price-erc20-token.d.ts +46 -0
- package/dist/types/multi-rollup/models/market-price-fees.d.ts +43 -0
- package/dist/types/multi-rollup/models/market-price-native-token.d.ts +34 -0
- package/dist/types/multi-rollup/models/market-top-bid.d.ts +18 -0
- package/dist/types/multi-rollup/models/market.d.ts +39 -0
- package/dist/types/multi-rollup/models/marketplace-contract-type.d.ts +21 -0
- package/dist/types/multi-rollup/models/message-evaluation-request.d.ts +31 -0
- package/dist/types/multi-rollup/models/message-evaluation-response.d.ts +41 -0
- package/dist/types/multi-rollup/models/meta-transaction-data.d.ts +16 -0
- package/dist/types/multi-rollup/models/meta-transaction.d.ts +55 -0
- package/dist/types/multi-rollup/models/metadata-refresh-rate-limit-result.d.ts +42 -0
- package/dist/types/multi-rollup/models/metadata.d.ts +92 -0
- package/dist/types/multi-rollup/models/mint-asset.d.ts +49 -0
- package/dist/types/multi-rollup/models/mint-request-error-message.d.ts +24 -0
- package/dist/types/multi-rollup/models/mint-request-status.d.ts +22 -0
- package/dist/types/multi-rollup/models/mint.d.ts +37 -0
- package/dist/types/multi-rollup/models/native-item.d.ts +39 -0
- package/dist/types/multi-rollup/models/nft.d.ts +124 -0
- package/dist/types/multi-rollup/models/nftbundle.d.ts +46 -0
- package/dist/types/multi-rollup/models/nftcontract-type.d.ts +21 -0
- package/dist/types/multi-rollup/models/nftmetadata-attribute-value.d.ts +17 -0
- package/dist/types/multi-rollup/models/nftmetadata-attribute.d.ts +44 -0
- package/dist/types/multi-rollup/models/nftmetadata-request.d.ts +61 -0
- package/dist/types/multi-rollup/models/nftowner.d.ts +55 -0
- package/dist/types/multi-rollup/models/nftquote-result.d.ts +51 -0
- package/dist/types/multi-rollup/models/nftsale.d.ts +50 -0
- package/dist/types/multi-rollup/models/nftset-approval-for-all-metadata.d.ts +66 -0
- package/dist/types/multi-rollup/models/nftwith-balance.d.ts +117 -0
- package/dist/types/multi-rollup/models/nftwith-owner.d.ts +55 -0
- package/dist/types/multi-rollup/models/nftwith-stack.d.ts +111 -0
- package/dist/types/multi-rollup/models/operator-allowlist-contract-status-internal-all-of.d.ts +31 -0
- package/dist/types/multi-rollup/models/operator-allowlist-contract-status-internal.d.ts +18 -0
- package/dist/types/multi-rollup/models/operator-allowlist-contract-status.d.ts +57 -0
- package/dist/types/multi-rollup/models/operator-allowlist-status-details.d.ts +19 -0
- package/dist/types/multi-rollup/models/operator-allowlist-status-requested.d.ts +30 -0
- package/dist/types/multi-rollup/models/operator-allowlist-status-updated.d.ts +24 -0
- package/dist/types/multi-rollup/models/operator-allowlist-status.d.ts +24 -0
- package/dist/types/multi-rollup/models/order-status-name.d.ts +25 -0
- package/dist/types/multi-rollup/models/order-status.d.ts +35 -0
- package/dist/types/multi-rollup/models/order.d.ts +132 -0
- package/dist/types/multi-rollup/models/organisation-tier.d.ts +24 -0
- package/dist/types/multi-rollup/models/page.d.ts +30 -0
- package/dist/types/multi-rollup/models/pending-order-status.d.ts +40 -0
- package/dist/types/multi-rollup/models/protocol-data.d.ts +53 -0
- package/dist/types/multi-rollup/models/quotes-for-nfts-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/quotes-for-stacks-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/refresh-collection-metadata-request.d.ts +25 -0
- package/dist/types/multi-rollup/models/refresh-collection-metadata-result.d.ts +38 -0
- package/dist/types/multi-rollup/models/refresh-metadata-by-id.d.ts +18 -0
- package/dist/types/multi-rollup/models/refresh-metadata-by-idall-of.d.ts +24 -0
- package/dist/types/multi-rollup/models/refresh-metadata-by-idrequest.d.ts +25 -0
- package/dist/types/multi-rollup/models/refresh-metadata-by-token-id.d.ts +18 -0
- package/dist/types/multi-rollup/models/refresh-metadata-by-token-idall-of.d.ts +24 -0
- package/dist/types/multi-rollup/models/refresh-nftmetadata-by-token-idrequest.d.ts +25 -0
- package/dist/types/multi-rollup/models/refreshable-nftattributes.d.ts +17 -0
- package/dist/types/multi-rollup/models/sale-fee.d.ts +40 -0
- package/dist/types/multi-rollup/models/sale-payment-token.d.ts +19 -0
- package/dist/types/multi-rollup/models/sale-payment.d.ts +44 -0
- package/dist/types/multi-rollup/models/seaport-advanced-order-buy.d.ts +22 -0
- package/dist/types/multi-rollup/models/seaport-advanced-order-sell.d.ts +20 -0
- package/dist/types/multi-rollup/models/seaport-advanced-order.d.ts +39 -0
- package/dist/types/multi-rollup/models/seaport-create-listing-metadata-buy.d.ts +22 -0
- package/dist/types/multi-rollup/models/seaport-create-listing-metadata-sell.d.ts +20 -0
- package/dist/types/multi-rollup/models/seaport-create-listing-metadata.d.ts +49 -0
- package/dist/types/multi-rollup/models/seaport-erc1155-collection-item.d.ts +59 -0
- package/dist/types/multi-rollup/models/seaport-erc1155-item.d.ts +71 -0
- package/dist/types/multi-rollup/models/seaport-erc20-item.d.ts +65 -0
- package/dist/types/multi-rollup/models/seaport-erc721-collection-item.d.ts +59 -0
- package/dist/types/multi-rollup/models/seaport-erc721-item.d.ts +65 -0
- package/dist/types/multi-rollup/models/seaport-fee.d.ts +59 -0
- package/dist/types/multi-rollup/models/seaport-fulfill-available-advanced-orders-metadata.d.ts +53 -0
- package/dist/types/multi-rollup/models/seaport-native-item.d.ts +40 -0
- package/dist/types/multi-rollup/models/search-nfts-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/search-stacks-result.d.ts +32 -0
- package/dist/types/multi-rollup/models/severity.d.ts +24 -0
- package/dist/types/multi-rollup/models/sign-crafting-request-multi-caller.d.ts +36 -0
- package/dist/types/multi-rollup/models/sign-crafting-request.d.ts +44 -0
- package/dist/types/multi-rollup/models/sign-crafting-result.d.ts +30 -0
- package/dist/types/multi-rollup/models/stack-bundle.d.ts +52 -0
- package/dist/types/multi-rollup/models/stack-quote-result.d.ts +44 -0
- package/dist/types/multi-rollup/models/stack.d.ts +99 -0
- package/dist/types/multi-rollup/models/stark-ex-transaction-evaluation-request.d.ts +34 -0
- package/dist/types/multi-rollup/models/token-contract-type.d.ts +20 -0
- package/dist/types/multi-rollup/models/token.d.ts +92 -0
- package/dist/types/multi-rollup/models/trade-blockchain-metadata.d.ts +42 -0
- package/dist/types/multi-rollup/models/trade-result.d.ts +25 -0
- package/dist/types/multi-rollup/models/trade.d.ts +100 -0
- package/dist/types/multi-rollup/models/transaction-approval-request.d.ts +41 -0
- package/dist/types/multi-rollup/models/transaction-evaluation-request.d.ts +18 -0
- package/dist/types/multi-rollup/models/transaction-evaluation-response.d.ts +41 -0
- package/dist/types/multi-rollup/models/transaction.d.ts +69 -0
- package/dist/types/multi-rollup/models/transfer.d.ts +43 -0
- package/dist/types/multi-rollup/models/unfulfillable-order.d.ts +36 -0
- package/dist/types/multi-rollup/models/unknown-metadata.d.ts +46 -0
- package/dist/types/multi-rollup/models/unknown-typed-data-metadata.d.ts +28 -0
- package/dist/types/multi-rollup/models/user-info.d.ts +42 -0
- package/dist/types/multi-rollup/models/validation-error-results.d.ts +31 -0
- package/dist/types/multi-rollup/models/validation-result.d.ts +25 -0
- package/dist/types/multi-rollup/models/validation-simulation-failed-results.d.ts +31 -0
- package/dist/types/multi-rollup/models/validation-status.d.ts +22 -0
- package/dist/types/multi-rollup/models/validation-success-results.d.ts +39 -0
- package/dist/types/multi-rollup/models/verification-request-contract-type.d.ts +22 -0
- package/dist/types/multi-rollup/models/verification-request-internal-all-of.d.ts +25 -0
- package/dist/types/multi-rollup/models/verification-request-internal.d.ts +19 -0
- package/dist/types/multi-rollup/models/verification-request-status.d.ts +21 -0
- package/dist/types/multi-rollup/models/verification-request.d.ts +87 -0
- package/dist/types/multi-rollup/models/wallet.d.ts +54 -0
- package/dist/types/multi-rollup/models/withdrawal.d.ts +37 -0
- package/dist/types/multi-rollup/models/zk-evm-transaction-data.d.ts +37 -0
- package/dist/types/multi-rollup/models/zk-evm-transaction-evaluation-request.d.ts +41 -0
- package/package.json +60 -0
|
@@ -0,0 +1,668 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Immutable X API
|
|
3
|
+
* Immutable X API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 3.0.0
|
|
6
|
+
* Contact: support@immutable.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
13
|
+
import { Configuration } from '../configuration';
|
|
14
|
+
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { CancelOrderRequest } from '../models';
|
|
16
|
+
import { CancelOrderResponse } from '../models';
|
|
17
|
+
import { CreateOrderRequestV3 } from '../models';
|
|
18
|
+
import { CreateOrderResponse } from '../models';
|
|
19
|
+
import { GetSignableCancelOrderRequest } from '../models';
|
|
20
|
+
import { GetSignableCancelOrderResponse } from '../models';
|
|
21
|
+
import { GetSignableOrderRequestV3 } from '../models';
|
|
22
|
+
import { GetSignableOrderResponse } from '../models';
|
|
23
|
+
import { ListOrdersResponseV3 } from '../models';
|
|
24
|
+
import { OrderV3 } from '../models';
|
|
25
|
+
/**
|
|
26
|
+
* OrdersApi - axios parameter creator
|
|
27
|
+
* @export
|
|
28
|
+
*/
|
|
29
|
+
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
30
|
+
/**
|
|
31
|
+
* Cancel an order (V3)
|
|
32
|
+
* @summary Cancel an order (V3)
|
|
33
|
+
* @param {string} id Order ID to cancel
|
|
34
|
+
* @param {CancelOrderRequest} cancelOrderRequest cancel an order
|
|
35
|
+
* @param {string} [xImxEthAddress] eth address
|
|
36
|
+
* @param {string} [xImxEthSignature] eth signature
|
|
37
|
+
* @param {string} [authorization] Authorization header
|
|
38
|
+
* @param {*} [options] Override http request option.
|
|
39
|
+
* @throws {RequiredError}
|
|
40
|
+
*/
|
|
41
|
+
cancelOrderV3: (id: string, cancelOrderRequest: CancelOrderRequest, xImxEthAddress?: string, xImxEthSignature?: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
42
|
+
/**
|
|
43
|
+
* Create an order using the v3 orderbook.
|
|
44
|
+
* @summary Create an order (V3)
|
|
45
|
+
* @param {CreateOrderRequestV3} createOrderRequest create an order
|
|
46
|
+
* @param {string} [xImxEthAddress] eth address
|
|
47
|
+
* @param {string} [xImxEthSignature] eth signature
|
|
48
|
+
* @param {string} [authorization] Authorization header
|
|
49
|
+
* @param {*} [options] Override http request option.
|
|
50
|
+
* @throws {RequiredError}
|
|
51
|
+
*/
|
|
52
|
+
createOrderV3: (createOrderRequest: CreateOrderRequestV3, xImxEthAddress?: string, xImxEthSignature?: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
53
|
+
/**
|
|
54
|
+
* Get an order (V3)
|
|
55
|
+
* @summary Get an order (V3)
|
|
56
|
+
* @param {string} id Order ID
|
|
57
|
+
* @param {boolean} [includeFees] Set flag to true to include fee body for the order
|
|
58
|
+
* @param {string} [auxiliaryFeePercentages] Comma separated string of fee percentages that are to be paired with auxiliary_fee_recipients
|
|
59
|
+
* @param {string} [auxiliaryFeeRecipients] Comma separated string of fee recipients that are to be paired with auxiliary_fee_percentages
|
|
60
|
+
* @param {*} [options] Override http request option.
|
|
61
|
+
* @throws {RequiredError}
|
|
62
|
+
*/
|
|
63
|
+
getOrderV3: (id: string, includeFees?: boolean, auxiliaryFeePercentages?: string, auxiliaryFeeRecipients?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
64
|
+
/**
|
|
65
|
+
* Generate a signable cancel order message (V3)
|
|
66
|
+
* @summary Generate a signable cancel order message (V3)
|
|
67
|
+
* @param {GetSignableCancelOrderRequest} getSignableCancelOrderRequest get a signable cancel order
|
|
68
|
+
* @param {*} [options] Override http request option.
|
|
69
|
+
* @throws {RequiredError}
|
|
70
|
+
*/
|
|
71
|
+
getSignableCancelOrderV3: (getSignableCancelOrderRequest: GetSignableCancelOrderRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
72
|
+
/**
|
|
73
|
+
* Generate a signable order request (V3)
|
|
74
|
+
* @summary Generate a signable order request (V3)
|
|
75
|
+
* @param {GetSignableOrderRequestV3} getSignableOrderRequestV3 get a signable order v3
|
|
76
|
+
* @param {*} [options] Override http request option.
|
|
77
|
+
* @throws {RequiredError}
|
|
78
|
+
*/
|
|
79
|
+
getSignableOrder: (getSignableOrderRequestV3: GetSignableOrderRequestV3, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
80
|
+
/**
|
|
81
|
+
* Get a list of orders (V3)
|
|
82
|
+
* @summary Get a list of orders (V3)
|
|
83
|
+
* @param {number} [pageSize] Page size of the result
|
|
84
|
+
* @param {string} [cursor] Cursor
|
|
85
|
+
* @param {'created_at' | 'expired_at' | 'sell_quantity' | 'buy_quantity' | 'buy_quantity_with_fees' | 'updated_at'} [orderBy] Property to sort by
|
|
86
|
+
* @param {string} [direction] Direction to sort (asc/desc)
|
|
87
|
+
* @param {string} [user] Ethereum address of the user who submitted this order
|
|
88
|
+
* @param {'active' | 'filled' | 'cancelled' | 'expired' | 'inactive'} [status] Status of this order
|
|
89
|
+
* @param {string} [minTimestamp] Filter orders to include those with created_at timestamps after this time, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
90
|
+
* @param {string} [maxTimestamp] Filter orders to include those with created_at timestamps before this time, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
91
|
+
* @param {string} [updatedMinTimestamp] Filter orders to include those with updated_at timestamps after this time, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
92
|
+
* @param {string} [updatedMaxTimestamp] Filter orders to include those with updated_at timestamps before this time, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
93
|
+
* @param {string} [buyTokenType] Token type of the asset this order buys
|
|
94
|
+
* @param {string} [buyTokenId] ERC721 Token ID of the asset this order buys
|
|
95
|
+
* @param {string} [buyAssetId] Internal IMX ID of the asset this order buys
|
|
96
|
+
* @param {string} [buyTokenAddress] Token address of the asset this order buys
|
|
97
|
+
* @param {string} [buyTokenName] Token name of the asset this order buys
|
|
98
|
+
* @param {string} [buyMinQuantity] Min quantity for the asset this order buys
|
|
99
|
+
* @param {string} [buyMaxQuantity] Max quantity for the asset this order buys
|
|
100
|
+
* @param {string} [buyMetadata] JSON-encoded metadata filters for the asset this order buys
|
|
101
|
+
* @param {string} [sellTokenType] Token type of the asset this order sells
|
|
102
|
+
* @param {string} [sellTokenId] ERC721 Token ID of the asset this order sells
|
|
103
|
+
* @param {string} [sellAssetId] Internal IMX ID of the asset this order sells
|
|
104
|
+
* @param {string} [sellTokenAddress] Token address of the asset this order sells
|
|
105
|
+
* @param {string} [sellTokenName] Token name of the asset this order sells
|
|
106
|
+
* @param {string} [sellMinQuantity] Min quantity for the asset this order sells
|
|
107
|
+
* @param {string} [sellMaxQuantity] Max quantity for the asset this order sells
|
|
108
|
+
* @param {string} [sellMetadata] JSON-encoded metadata filters for the asset this order sells
|
|
109
|
+
* @param {string} [auxiliaryFeePercentages] Comma separated string of fee percentages that are to be paired with auxiliary_fee_recipients
|
|
110
|
+
* @param {string} [auxiliaryFeeRecipients] Comma separated string of fee recipients that are to be paired with auxiliary_fee_percentages
|
|
111
|
+
* @param {boolean} [includeFees] Set flag to true to include fee object for orders
|
|
112
|
+
* @param {*} [options] Override http request option.
|
|
113
|
+
* @throws {RequiredError}
|
|
114
|
+
*/
|
|
115
|
+
listOrdersV3: (pageSize?: number, cursor?: string, orderBy?: "created_at" | "expired_at" | "sell_quantity" | "buy_quantity" | "buy_quantity_with_fees" | "updated_at", direction?: string, user?: string, status?: "active" | "filled" | "cancelled" | "expired" | "inactive", minTimestamp?: string, maxTimestamp?: string, updatedMinTimestamp?: string, updatedMaxTimestamp?: string, buyTokenType?: string, buyTokenId?: string, buyAssetId?: string, buyTokenAddress?: string, buyTokenName?: string, buyMinQuantity?: string, buyMaxQuantity?: string, buyMetadata?: string, sellTokenType?: string, sellTokenId?: string, sellAssetId?: string, sellTokenAddress?: string, sellTokenName?: string, sellMinQuantity?: string, sellMaxQuantity?: string, sellMetadata?: string, auxiliaryFeePercentages?: string, auxiliaryFeeRecipients?: string, includeFees?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
116
|
+
};
|
|
117
|
+
/**
|
|
118
|
+
* OrdersApi - functional programming interface
|
|
119
|
+
* @export
|
|
120
|
+
*/
|
|
121
|
+
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
122
|
+
/**
|
|
123
|
+
* Cancel an order (V3)
|
|
124
|
+
* @summary Cancel an order (V3)
|
|
125
|
+
* @param {string} id Order ID to cancel
|
|
126
|
+
* @param {CancelOrderRequest} cancelOrderRequest cancel an order
|
|
127
|
+
* @param {string} [xImxEthAddress] eth address
|
|
128
|
+
* @param {string} [xImxEthSignature] eth signature
|
|
129
|
+
* @param {string} [authorization] Authorization header
|
|
130
|
+
* @param {*} [options] Override http request option.
|
|
131
|
+
* @throws {RequiredError}
|
|
132
|
+
*/
|
|
133
|
+
cancelOrderV3(id: string, cancelOrderRequest: CancelOrderRequest, xImxEthAddress?: string, xImxEthSignature?: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CancelOrderResponse>>;
|
|
134
|
+
/**
|
|
135
|
+
* Create an order using the v3 orderbook.
|
|
136
|
+
* @summary Create an order (V3)
|
|
137
|
+
* @param {CreateOrderRequestV3} createOrderRequest create an order
|
|
138
|
+
* @param {string} [xImxEthAddress] eth address
|
|
139
|
+
* @param {string} [xImxEthSignature] eth signature
|
|
140
|
+
* @param {string} [authorization] Authorization header
|
|
141
|
+
* @param {*} [options] Override http request option.
|
|
142
|
+
* @throws {RequiredError}
|
|
143
|
+
*/
|
|
144
|
+
createOrderV3(createOrderRequest: CreateOrderRequestV3, xImxEthAddress?: string, xImxEthSignature?: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateOrderResponse>>;
|
|
145
|
+
/**
|
|
146
|
+
* Get an order (V3)
|
|
147
|
+
* @summary Get an order (V3)
|
|
148
|
+
* @param {string} id Order ID
|
|
149
|
+
* @param {boolean} [includeFees] Set flag to true to include fee body for the order
|
|
150
|
+
* @param {string} [auxiliaryFeePercentages] Comma separated string of fee percentages that are to be paired with auxiliary_fee_recipients
|
|
151
|
+
* @param {string} [auxiliaryFeeRecipients] Comma separated string of fee recipients that are to be paired with auxiliary_fee_percentages
|
|
152
|
+
* @param {*} [options] Override http request option.
|
|
153
|
+
* @throws {RequiredError}
|
|
154
|
+
*/
|
|
155
|
+
getOrderV3(id: string, includeFees?: boolean, auxiliaryFeePercentages?: string, auxiliaryFeeRecipients?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderV3>>;
|
|
156
|
+
/**
|
|
157
|
+
* Generate a signable cancel order message (V3)
|
|
158
|
+
* @summary Generate a signable cancel order message (V3)
|
|
159
|
+
* @param {GetSignableCancelOrderRequest} getSignableCancelOrderRequest get a signable cancel order
|
|
160
|
+
* @param {*} [options] Override http request option.
|
|
161
|
+
* @throws {RequiredError}
|
|
162
|
+
*/
|
|
163
|
+
getSignableCancelOrderV3(getSignableCancelOrderRequest: GetSignableCancelOrderRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSignableCancelOrderResponse>>;
|
|
164
|
+
/**
|
|
165
|
+
* Generate a signable order request (V3)
|
|
166
|
+
* @summary Generate a signable order request (V3)
|
|
167
|
+
* @param {GetSignableOrderRequestV3} getSignableOrderRequestV3 get a signable order v3
|
|
168
|
+
* @param {*} [options] Override http request option.
|
|
169
|
+
* @throws {RequiredError}
|
|
170
|
+
*/
|
|
171
|
+
getSignableOrder(getSignableOrderRequestV3: GetSignableOrderRequestV3, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSignableOrderResponse>>;
|
|
172
|
+
/**
|
|
173
|
+
* Get a list of orders (V3)
|
|
174
|
+
* @summary Get a list of orders (V3)
|
|
175
|
+
* @param {number} [pageSize] Page size of the result
|
|
176
|
+
* @param {string} [cursor] Cursor
|
|
177
|
+
* @param {'created_at' | 'expired_at' | 'sell_quantity' | 'buy_quantity' | 'buy_quantity_with_fees' | 'updated_at'} [orderBy] Property to sort by
|
|
178
|
+
* @param {string} [direction] Direction to sort (asc/desc)
|
|
179
|
+
* @param {string} [user] Ethereum address of the user who submitted this order
|
|
180
|
+
* @param {'active' | 'filled' | 'cancelled' | 'expired' | 'inactive'} [status] Status of this order
|
|
181
|
+
* @param {string} [minTimestamp] Filter orders to include those with created_at timestamps after this time, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
182
|
+
* @param {string} [maxTimestamp] Filter orders to include those with created_at timestamps before this time, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
183
|
+
* @param {string} [updatedMinTimestamp] Filter orders to include those with updated_at timestamps after this time, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
184
|
+
* @param {string} [updatedMaxTimestamp] Filter orders to include those with updated_at timestamps before this time, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
185
|
+
* @param {string} [buyTokenType] Token type of the asset this order buys
|
|
186
|
+
* @param {string} [buyTokenId] ERC721 Token ID of the asset this order buys
|
|
187
|
+
* @param {string} [buyAssetId] Internal IMX ID of the asset this order buys
|
|
188
|
+
* @param {string} [buyTokenAddress] Token address of the asset this order buys
|
|
189
|
+
* @param {string} [buyTokenName] Token name of the asset this order buys
|
|
190
|
+
* @param {string} [buyMinQuantity] Min quantity for the asset this order buys
|
|
191
|
+
* @param {string} [buyMaxQuantity] Max quantity for the asset this order buys
|
|
192
|
+
* @param {string} [buyMetadata] JSON-encoded metadata filters for the asset this order buys
|
|
193
|
+
* @param {string} [sellTokenType] Token type of the asset this order sells
|
|
194
|
+
* @param {string} [sellTokenId] ERC721 Token ID of the asset this order sells
|
|
195
|
+
* @param {string} [sellAssetId] Internal IMX ID of the asset this order sells
|
|
196
|
+
* @param {string} [sellTokenAddress] Token address of the asset this order sells
|
|
197
|
+
* @param {string} [sellTokenName] Token name of the asset this order sells
|
|
198
|
+
* @param {string} [sellMinQuantity] Min quantity for the asset this order sells
|
|
199
|
+
* @param {string} [sellMaxQuantity] Max quantity for the asset this order sells
|
|
200
|
+
* @param {string} [sellMetadata] JSON-encoded metadata filters for the asset this order sells
|
|
201
|
+
* @param {string} [auxiliaryFeePercentages] Comma separated string of fee percentages that are to be paired with auxiliary_fee_recipients
|
|
202
|
+
* @param {string} [auxiliaryFeeRecipients] Comma separated string of fee recipients that are to be paired with auxiliary_fee_percentages
|
|
203
|
+
* @param {boolean} [includeFees] Set flag to true to include fee object for orders
|
|
204
|
+
* @param {*} [options] Override http request option.
|
|
205
|
+
* @throws {RequiredError}
|
|
206
|
+
*/
|
|
207
|
+
listOrdersV3(pageSize?: number, cursor?: string, orderBy?: "created_at" | "expired_at" | "sell_quantity" | "buy_quantity" | "buy_quantity_with_fees" | "updated_at", direction?: string, user?: string, status?: "active" | "filled" | "cancelled" | "expired" | "inactive", minTimestamp?: string, maxTimestamp?: string, updatedMinTimestamp?: string, updatedMaxTimestamp?: string, buyTokenType?: string, buyTokenId?: string, buyAssetId?: string, buyTokenAddress?: string, buyTokenName?: string, buyMinQuantity?: string, buyMaxQuantity?: string, buyMetadata?: string, sellTokenType?: string, sellTokenId?: string, sellAssetId?: string, sellTokenAddress?: string, sellTokenName?: string, sellMinQuantity?: string, sellMaxQuantity?: string, sellMetadata?: string, auxiliaryFeePercentages?: string, auxiliaryFeeRecipients?: string, includeFees?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListOrdersResponseV3>>;
|
|
208
|
+
};
|
|
209
|
+
/**
|
|
210
|
+
* OrdersApi - factory interface
|
|
211
|
+
* @export
|
|
212
|
+
*/
|
|
213
|
+
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
214
|
+
/**
|
|
215
|
+
* Cancel an order (V3)
|
|
216
|
+
* @summary Cancel an order (V3)
|
|
217
|
+
* @param {string} id Order ID to cancel
|
|
218
|
+
* @param {CancelOrderRequest} cancelOrderRequest cancel an order
|
|
219
|
+
* @param {string} [xImxEthAddress] eth address
|
|
220
|
+
* @param {string} [xImxEthSignature] eth signature
|
|
221
|
+
* @param {string} [authorization] Authorization header
|
|
222
|
+
* @param {*} [options] Override http request option.
|
|
223
|
+
* @throws {RequiredError}
|
|
224
|
+
*/
|
|
225
|
+
cancelOrderV3(id: string, cancelOrderRequest: CancelOrderRequest, xImxEthAddress?: string, xImxEthSignature?: string, authorization?: string, options?: any): AxiosPromise<CancelOrderResponse>;
|
|
226
|
+
/**
|
|
227
|
+
* Create an order using the v3 orderbook.
|
|
228
|
+
* @summary Create an order (V3)
|
|
229
|
+
* @param {CreateOrderRequestV3} createOrderRequest create an order
|
|
230
|
+
* @param {string} [xImxEthAddress] eth address
|
|
231
|
+
* @param {string} [xImxEthSignature] eth signature
|
|
232
|
+
* @param {string} [authorization] Authorization header
|
|
233
|
+
* @param {*} [options] Override http request option.
|
|
234
|
+
* @throws {RequiredError}
|
|
235
|
+
*/
|
|
236
|
+
createOrderV3(createOrderRequest: CreateOrderRequestV3, xImxEthAddress?: string, xImxEthSignature?: string, authorization?: string, options?: any): AxiosPromise<CreateOrderResponse>;
|
|
237
|
+
/**
|
|
238
|
+
* Get an order (V3)
|
|
239
|
+
* @summary Get an order (V3)
|
|
240
|
+
* @param {string} id Order ID
|
|
241
|
+
* @param {boolean} [includeFees] Set flag to true to include fee body for the order
|
|
242
|
+
* @param {string} [auxiliaryFeePercentages] Comma separated string of fee percentages that are to be paired with auxiliary_fee_recipients
|
|
243
|
+
* @param {string} [auxiliaryFeeRecipients] Comma separated string of fee recipients that are to be paired with auxiliary_fee_percentages
|
|
244
|
+
* @param {*} [options] Override http request option.
|
|
245
|
+
* @throws {RequiredError}
|
|
246
|
+
*/
|
|
247
|
+
getOrderV3(id: string, includeFees?: boolean, auxiliaryFeePercentages?: string, auxiliaryFeeRecipients?: string, options?: any): AxiosPromise<OrderV3>;
|
|
248
|
+
/**
|
|
249
|
+
* Generate a signable cancel order message (V3)
|
|
250
|
+
* @summary Generate a signable cancel order message (V3)
|
|
251
|
+
* @param {GetSignableCancelOrderRequest} getSignableCancelOrderRequest get a signable cancel order
|
|
252
|
+
* @param {*} [options] Override http request option.
|
|
253
|
+
* @throws {RequiredError}
|
|
254
|
+
*/
|
|
255
|
+
getSignableCancelOrderV3(getSignableCancelOrderRequest: GetSignableCancelOrderRequest, options?: any): AxiosPromise<GetSignableCancelOrderResponse>;
|
|
256
|
+
/**
|
|
257
|
+
* Generate a signable order request (V3)
|
|
258
|
+
* @summary Generate a signable order request (V3)
|
|
259
|
+
* @param {GetSignableOrderRequestV3} getSignableOrderRequestV3 get a signable order v3
|
|
260
|
+
* @param {*} [options] Override http request option.
|
|
261
|
+
* @throws {RequiredError}
|
|
262
|
+
*/
|
|
263
|
+
getSignableOrder(getSignableOrderRequestV3: GetSignableOrderRequestV3, options?: any): AxiosPromise<GetSignableOrderResponse>;
|
|
264
|
+
/**
|
|
265
|
+
* Get a list of orders (V3)
|
|
266
|
+
* @summary Get a list of orders (V3)
|
|
267
|
+
* @param {number} [pageSize] Page size of the result
|
|
268
|
+
* @param {string} [cursor] Cursor
|
|
269
|
+
* @param {'created_at' | 'expired_at' | 'sell_quantity' | 'buy_quantity' | 'buy_quantity_with_fees' | 'updated_at'} [orderBy] Property to sort by
|
|
270
|
+
* @param {string} [direction] Direction to sort (asc/desc)
|
|
271
|
+
* @param {string} [user] Ethereum address of the user who submitted this order
|
|
272
|
+
* @param {'active' | 'filled' | 'cancelled' | 'expired' | 'inactive'} [status] Status of this order
|
|
273
|
+
* @param {string} [minTimestamp] Filter orders to include those with created_at timestamps after this time, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
274
|
+
* @param {string} [maxTimestamp] Filter orders to include those with created_at timestamps before this time, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
275
|
+
* @param {string} [updatedMinTimestamp] Filter orders to include those with updated_at timestamps after this time, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
276
|
+
* @param {string} [updatedMaxTimestamp] Filter orders to include those with updated_at timestamps before this time, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
277
|
+
* @param {string} [buyTokenType] Token type of the asset this order buys
|
|
278
|
+
* @param {string} [buyTokenId] ERC721 Token ID of the asset this order buys
|
|
279
|
+
* @param {string} [buyAssetId] Internal IMX ID of the asset this order buys
|
|
280
|
+
* @param {string} [buyTokenAddress] Token address of the asset this order buys
|
|
281
|
+
* @param {string} [buyTokenName] Token name of the asset this order buys
|
|
282
|
+
* @param {string} [buyMinQuantity] Min quantity for the asset this order buys
|
|
283
|
+
* @param {string} [buyMaxQuantity] Max quantity for the asset this order buys
|
|
284
|
+
* @param {string} [buyMetadata] JSON-encoded metadata filters for the asset this order buys
|
|
285
|
+
* @param {string} [sellTokenType] Token type of the asset this order sells
|
|
286
|
+
* @param {string} [sellTokenId] ERC721 Token ID of the asset this order sells
|
|
287
|
+
* @param {string} [sellAssetId] Internal IMX ID of the asset this order sells
|
|
288
|
+
* @param {string} [sellTokenAddress] Token address of the asset this order sells
|
|
289
|
+
* @param {string} [sellTokenName] Token name of the asset this order sells
|
|
290
|
+
* @param {string} [sellMinQuantity] Min quantity for the asset this order sells
|
|
291
|
+
* @param {string} [sellMaxQuantity] Max quantity for the asset this order sells
|
|
292
|
+
* @param {string} [sellMetadata] JSON-encoded metadata filters for the asset this order sells
|
|
293
|
+
* @param {string} [auxiliaryFeePercentages] Comma separated string of fee percentages that are to be paired with auxiliary_fee_recipients
|
|
294
|
+
* @param {string} [auxiliaryFeeRecipients] Comma separated string of fee recipients that are to be paired with auxiliary_fee_percentages
|
|
295
|
+
* @param {boolean} [includeFees] Set flag to true to include fee object for orders
|
|
296
|
+
* @param {*} [options] Override http request option.
|
|
297
|
+
* @throws {RequiredError}
|
|
298
|
+
*/
|
|
299
|
+
listOrdersV3(pageSize?: number, cursor?: string, orderBy?: "created_at" | "expired_at" | "sell_quantity" | "buy_quantity" | "buy_quantity_with_fees" | "updated_at", direction?: string, user?: string, status?: "active" | "filled" | "cancelled" | "expired" | "inactive", minTimestamp?: string, maxTimestamp?: string, updatedMinTimestamp?: string, updatedMaxTimestamp?: string, buyTokenType?: string, buyTokenId?: string, buyAssetId?: string, buyTokenAddress?: string, buyTokenName?: string, buyMinQuantity?: string, buyMaxQuantity?: string, buyMetadata?: string, sellTokenType?: string, sellTokenId?: string, sellAssetId?: string, sellTokenAddress?: string, sellTokenName?: string, sellMinQuantity?: string, sellMaxQuantity?: string, sellMetadata?: string, auxiliaryFeePercentages?: string, auxiliaryFeeRecipients?: string, includeFees?: boolean, options?: any): AxiosPromise<ListOrdersResponseV3>;
|
|
300
|
+
};
|
|
301
|
+
/**
|
|
302
|
+
* Request parameters for cancelOrderV3 operation in OrdersApi.
|
|
303
|
+
* @export
|
|
304
|
+
* @interface OrdersApiCancelOrderV3Request
|
|
305
|
+
*/
|
|
306
|
+
export interface OrdersApiCancelOrderV3Request {
|
|
307
|
+
/**
|
|
308
|
+
* Order ID to cancel
|
|
309
|
+
* @type {string}
|
|
310
|
+
* @memberof OrdersApiCancelOrderV3
|
|
311
|
+
*/
|
|
312
|
+
readonly id: string;
|
|
313
|
+
/**
|
|
314
|
+
* cancel an order
|
|
315
|
+
* @type {CancelOrderRequest}
|
|
316
|
+
* @memberof OrdersApiCancelOrderV3
|
|
317
|
+
*/
|
|
318
|
+
readonly cancelOrderRequest: CancelOrderRequest;
|
|
319
|
+
/**
|
|
320
|
+
* eth address
|
|
321
|
+
* @type {string}
|
|
322
|
+
* @memberof OrdersApiCancelOrderV3
|
|
323
|
+
*/
|
|
324
|
+
readonly xImxEthAddress?: string;
|
|
325
|
+
/**
|
|
326
|
+
* eth signature
|
|
327
|
+
* @type {string}
|
|
328
|
+
* @memberof OrdersApiCancelOrderV3
|
|
329
|
+
*/
|
|
330
|
+
readonly xImxEthSignature?: string;
|
|
331
|
+
/**
|
|
332
|
+
* Authorization header
|
|
333
|
+
* @type {string}
|
|
334
|
+
* @memberof OrdersApiCancelOrderV3
|
|
335
|
+
*/
|
|
336
|
+
readonly authorization?: string;
|
|
337
|
+
}
|
|
338
|
+
/**
|
|
339
|
+
* Request parameters for createOrderV3 operation in OrdersApi.
|
|
340
|
+
* @export
|
|
341
|
+
* @interface OrdersApiCreateOrderV3Request
|
|
342
|
+
*/
|
|
343
|
+
export interface OrdersApiCreateOrderV3Request {
|
|
344
|
+
/**
|
|
345
|
+
* create an order
|
|
346
|
+
* @type {CreateOrderRequestV3}
|
|
347
|
+
* @memberof OrdersApiCreateOrderV3
|
|
348
|
+
*/
|
|
349
|
+
readonly createOrderRequest: CreateOrderRequestV3;
|
|
350
|
+
/**
|
|
351
|
+
* eth address
|
|
352
|
+
* @type {string}
|
|
353
|
+
* @memberof OrdersApiCreateOrderV3
|
|
354
|
+
*/
|
|
355
|
+
readonly xImxEthAddress?: string;
|
|
356
|
+
/**
|
|
357
|
+
* eth signature
|
|
358
|
+
* @type {string}
|
|
359
|
+
* @memberof OrdersApiCreateOrderV3
|
|
360
|
+
*/
|
|
361
|
+
readonly xImxEthSignature?: string;
|
|
362
|
+
/**
|
|
363
|
+
* Authorization header
|
|
364
|
+
* @type {string}
|
|
365
|
+
* @memberof OrdersApiCreateOrderV3
|
|
366
|
+
*/
|
|
367
|
+
readonly authorization?: string;
|
|
368
|
+
}
|
|
369
|
+
/**
|
|
370
|
+
* Request parameters for getOrderV3 operation in OrdersApi.
|
|
371
|
+
* @export
|
|
372
|
+
* @interface OrdersApiGetOrderV3Request
|
|
373
|
+
*/
|
|
374
|
+
export interface OrdersApiGetOrderV3Request {
|
|
375
|
+
/**
|
|
376
|
+
* Order ID
|
|
377
|
+
* @type {string}
|
|
378
|
+
* @memberof OrdersApiGetOrderV3
|
|
379
|
+
*/
|
|
380
|
+
readonly id: string;
|
|
381
|
+
/**
|
|
382
|
+
* Set flag to true to include fee body for the order
|
|
383
|
+
* @type {boolean}
|
|
384
|
+
* @memberof OrdersApiGetOrderV3
|
|
385
|
+
*/
|
|
386
|
+
readonly includeFees?: boolean;
|
|
387
|
+
/**
|
|
388
|
+
* Comma separated string of fee percentages that are to be paired with auxiliary_fee_recipients
|
|
389
|
+
* @type {string}
|
|
390
|
+
* @memberof OrdersApiGetOrderV3
|
|
391
|
+
*/
|
|
392
|
+
readonly auxiliaryFeePercentages?: string;
|
|
393
|
+
/**
|
|
394
|
+
* Comma separated string of fee recipients that are to be paired with auxiliary_fee_percentages
|
|
395
|
+
* @type {string}
|
|
396
|
+
* @memberof OrdersApiGetOrderV3
|
|
397
|
+
*/
|
|
398
|
+
readonly auxiliaryFeeRecipients?: string;
|
|
399
|
+
}
|
|
400
|
+
/**
|
|
401
|
+
* Request parameters for getSignableCancelOrderV3 operation in OrdersApi.
|
|
402
|
+
* @export
|
|
403
|
+
* @interface OrdersApiGetSignableCancelOrderV3Request
|
|
404
|
+
*/
|
|
405
|
+
export interface OrdersApiGetSignableCancelOrderV3Request {
|
|
406
|
+
/**
|
|
407
|
+
* get a signable cancel order
|
|
408
|
+
* @type {GetSignableCancelOrderRequest}
|
|
409
|
+
* @memberof OrdersApiGetSignableCancelOrderV3
|
|
410
|
+
*/
|
|
411
|
+
readonly getSignableCancelOrderRequest: GetSignableCancelOrderRequest;
|
|
412
|
+
}
|
|
413
|
+
/**
|
|
414
|
+
* Request parameters for getSignableOrder operation in OrdersApi.
|
|
415
|
+
* @export
|
|
416
|
+
* @interface OrdersApiGetSignableOrderRequest
|
|
417
|
+
*/
|
|
418
|
+
export interface OrdersApiGetSignableOrderRequest {
|
|
419
|
+
/**
|
|
420
|
+
* get a signable order v3
|
|
421
|
+
* @type {GetSignableOrderRequestV3}
|
|
422
|
+
* @memberof OrdersApiGetSignableOrder
|
|
423
|
+
*/
|
|
424
|
+
readonly getSignableOrderRequestV3: GetSignableOrderRequestV3;
|
|
425
|
+
}
|
|
426
|
+
/**
|
|
427
|
+
* Request parameters for listOrdersV3 operation in OrdersApi.
|
|
428
|
+
* @export
|
|
429
|
+
* @interface OrdersApiListOrdersV3Request
|
|
430
|
+
*/
|
|
431
|
+
export interface OrdersApiListOrdersV3Request {
|
|
432
|
+
/**
|
|
433
|
+
* Page size of the result
|
|
434
|
+
* @type {number}
|
|
435
|
+
* @memberof OrdersApiListOrdersV3
|
|
436
|
+
*/
|
|
437
|
+
readonly pageSize?: number;
|
|
438
|
+
/**
|
|
439
|
+
* Cursor
|
|
440
|
+
* @type {string}
|
|
441
|
+
* @memberof OrdersApiListOrdersV3
|
|
442
|
+
*/
|
|
443
|
+
readonly cursor?: string;
|
|
444
|
+
/**
|
|
445
|
+
* Property to sort by
|
|
446
|
+
* @type {'created_at' | 'expired_at' | 'sell_quantity' | 'buy_quantity' | 'buy_quantity_with_fees' | 'updated_at'}
|
|
447
|
+
* @memberof OrdersApiListOrdersV3
|
|
448
|
+
*/
|
|
449
|
+
readonly orderBy?: 'created_at' | 'expired_at' | 'sell_quantity' | 'buy_quantity' | 'buy_quantity_with_fees' | 'updated_at';
|
|
450
|
+
/**
|
|
451
|
+
* Direction to sort (asc/desc)
|
|
452
|
+
* @type {string}
|
|
453
|
+
* @memberof OrdersApiListOrdersV3
|
|
454
|
+
*/
|
|
455
|
+
readonly direction?: string;
|
|
456
|
+
/**
|
|
457
|
+
* Ethereum address of the user who submitted this order
|
|
458
|
+
* @type {string}
|
|
459
|
+
* @memberof OrdersApiListOrdersV3
|
|
460
|
+
*/
|
|
461
|
+
readonly user?: string;
|
|
462
|
+
/**
|
|
463
|
+
* Status of this order
|
|
464
|
+
* @type {'active' | 'filled' | 'cancelled' | 'expired' | 'inactive'}
|
|
465
|
+
* @memberof OrdersApiListOrdersV3
|
|
466
|
+
*/
|
|
467
|
+
readonly status?: 'active' | 'filled' | 'cancelled' | 'expired' | 'inactive';
|
|
468
|
+
/**
|
|
469
|
+
* Filter orders to include those with created_at timestamps after this time, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
470
|
+
* @type {string}
|
|
471
|
+
* @memberof OrdersApiListOrdersV3
|
|
472
|
+
*/
|
|
473
|
+
readonly minTimestamp?: string;
|
|
474
|
+
/**
|
|
475
|
+
* Filter orders to include those with created_at timestamps before this time, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
476
|
+
* @type {string}
|
|
477
|
+
* @memberof OrdersApiListOrdersV3
|
|
478
|
+
*/
|
|
479
|
+
readonly maxTimestamp?: string;
|
|
480
|
+
/**
|
|
481
|
+
* Filter orders to include those with updated_at timestamps after this time, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
482
|
+
* @type {string}
|
|
483
|
+
* @memberof OrdersApiListOrdersV3
|
|
484
|
+
*/
|
|
485
|
+
readonly updatedMinTimestamp?: string;
|
|
486
|
+
/**
|
|
487
|
+
* Filter orders to include those with updated_at timestamps before this time, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
488
|
+
* @type {string}
|
|
489
|
+
* @memberof OrdersApiListOrdersV3
|
|
490
|
+
*/
|
|
491
|
+
readonly updatedMaxTimestamp?: string;
|
|
492
|
+
/**
|
|
493
|
+
* Token type of the asset this order buys
|
|
494
|
+
* @type {string}
|
|
495
|
+
* @memberof OrdersApiListOrdersV3
|
|
496
|
+
*/
|
|
497
|
+
readonly buyTokenType?: string;
|
|
498
|
+
/**
|
|
499
|
+
* ERC721 Token ID of the asset this order buys
|
|
500
|
+
* @type {string}
|
|
501
|
+
* @memberof OrdersApiListOrdersV3
|
|
502
|
+
*/
|
|
503
|
+
readonly buyTokenId?: string;
|
|
504
|
+
/**
|
|
505
|
+
* Internal IMX ID of the asset this order buys
|
|
506
|
+
* @type {string}
|
|
507
|
+
* @memberof OrdersApiListOrdersV3
|
|
508
|
+
*/
|
|
509
|
+
readonly buyAssetId?: string;
|
|
510
|
+
/**
|
|
511
|
+
* Token address of the asset this order buys
|
|
512
|
+
* @type {string}
|
|
513
|
+
* @memberof OrdersApiListOrdersV3
|
|
514
|
+
*/
|
|
515
|
+
readonly buyTokenAddress?: string;
|
|
516
|
+
/**
|
|
517
|
+
* Token name of the asset this order buys
|
|
518
|
+
* @type {string}
|
|
519
|
+
* @memberof OrdersApiListOrdersV3
|
|
520
|
+
*/
|
|
521
|
+
readonly buyTokenName?: string;
|
|
522
|
+
/**
|
|
523
|
+
* Min quantity for the asset this order buys
|
|
524
|
+
* @type {string}
|
|
525
|
+
* @memberof OrdersApiListOrdersV3
|
|
526
|
+
*/
|
|
527
|
+
readonly buyMinQuantity?: string;
|
|
528
|
+
/**
|
|
529
|
+
* Max quantity for the asset this order buys
|
|
530
|
+
* @type {string}
|
|
531
|
+
* @memberof OrdersApiListOrdersV3
|
|
532
|
+
*/
|
|
533
|
+
readonly buyMaxQuantity?: string;
|
|
534
|
+
/**
|
|
535
|
+
* JSON-encoded metadata filters for the asset this order buys
|
|
536
|
+
* @type {string}
|
|
537
|
+
* @memberof OrdersApiListOrdersV3
|
|
538
|
+
*/
|
|
539
|
+
readonly buyMetadata?: string;
|
|
540
|
+
/**
|
|
541
|
+
* Token type of the asset this order sells
|
|
542
|
+
* @type {string}
|
|
543
|
+
* @memberof OrdersApiListOrdersV3
|
|
544
|
+
*/
|
|
545
|
+
readonly sellTokenType?: string;
|
|
546
|
+
/**
|
|
547
|
+
* ERC721 Token ID of the asset this order sells
|
|
548
|
+
* @type {string}
|
|
549
|
+
* @memberof OrdersApiListOrdersV3
|
|
550
|
+
*/
|
|
551
|
+
readonly sellTokenId?: string;
|
|
552
|
+
/**
|
|
553
|
+
* Internal IMX ID of the asset this order sells
|
|
554
|
+
* @type {string}
|
|
555
|
+
* @memberof OrdersApiListOrdersV3
|
|
556
|
+
*/
|
|
557
|
+
readonly sellAssetId?: string;
|
|
558
|
+
/**
|
|
559
|
+
* Token address of the asset this order sells
|
|
560
|
+
* @type {string}
|
|
561
|
+
* @memberof OrdersApiListOrdersV3
|
|
562
|
+
*/
|
|
563
|
+
readonly sellTokenAddress?: string;
|
|
564
|
+
/**
|
|
565
|
+
* Token name of the asset this order sells
|
|
566
|
+
* @type {string}
|
|
567
|
+
* @memberof OrdersApiListOrdersV3
|
|
568
|
+
*/
|
|
569
|
+
readonly sellTokenName?: string;
|
|
570
|
+
/**
|
|
571
|
+
* Min quantity for the asset this order sells
|
|
572
|
+
* @type {string}
|
|
573
|
+
* @memberof OrdersApiListOrdersV3
|
|
574
|
+
*/
|
|
575
|
+
readonly sellMinQuantity?: string;
|
|
576
|
+
/**
|
|
577
|
+
* Max quantity for the asset this order sells
|
|
578
|
+
* @type {string}
|
|
579
|
+
* @memberof OrdersApiListOrdersV3
|
|
580
|
+
*/
|
|
581
|
+
readonly sellMaxQuantity?: string;
|
|
582
|
+
/**
|
|
583
|
+
* JSON-encoded metadata filters for the asset this order sells
|
|
584
|
+
* @type {string}
|
|
585
|
+
* @memberof OrdersApiListOrdersV3
|
|
586
|
+
*/
|
|
587
|
+
readonly sellMetadata?: string;
|
|
588
|
+
/**
|
|
589
|
+
* Comma separated string of fee percentages that are to be paired with auxiliary_fee_recipients
|
|
590
|
+
* @type {string}
|
|
591
|
+
* @memberof OrdersApiListOrdersV3
|
|
592
|
+
*/
|
|
593
|
+
readonly auxiliaryFeePercentages?: string;
|
|
594
|
+
/**
|
|
595
|
+
* Comma separated string of fee recipients that are to be paired with auxiliary_fee_percentages
|
|
596
|
+
* @type {string}
|
|
597
|
+
* @memberof OrdersApiListOrdersV3
|
|
598
|
+
*/
|
|
599
|
+
readonly auxiliaryFeeRecipients?: string;
|
|
600
|
+
/**
|
|
601
|
+
* Set flag to true to include fee object for orders
|
|
602
|
+
* @type {boolean}
|
|
603
|
+
* @memberof OrdersApiListOrdersV3
|
|
604
|
+
*/
|
|
605
|
+
readonly includeFees?: boolean;
|
|
606
|
+
}
|
|
607
|
+
/**
|
|
608
|
+
* OrdersApi - object-oriented interface
|
|
609
|
+
* @export
|
|
610
|
+
* @class OrdersApi
|
|
611
|
+
* @extends {BaseAPI}
|
|
612
|
+
*/
|
|
613
|
+
export declare class OrdersApi extends BaseAPI {
|
|
614
|
+
/**
|
|
615
|
+
* Cancel an order (V3)
|
|
616
|
+
* @summary Cancel an order (V3)
|
|
617
|
+
* @param {OrdersApiCancelOrderV3Request} requestParameters Request parameters.
|
|
618
|
+
* @param {*} [options] Override http request option.
|
|
619
|
+
* @throws {RequiredError}
|
|
620
|
+
* @memberof OrdersApi
|
|
621
|
+
*/
|
|
622
|
+
cancelOrderV3(requestParameters: OrdersApiCancelOrderV3Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CancelOrderResponse, any>>;
|
|
623
|
+
/**
|
|
624
|
+
* Create an order using the v3 orderbook.
|
|
625
|
+
* @summary Create an order (V3)
|
|
626
|
+
* @param {OrdersApiCreateOrderV3Request} requestParameters Request parameters.
|
|
627
|
+
* @param {*} [options] Override http request option.
|
|
628
|
+
* @throws {RequiredError}
|
|
629
|
+
* @memberof OrdersApi
|
|
630
|
+
*/
|
|
631
|
+
createOrderV3(requestParameters: OrdersApiCreateOrderV3Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateOrderResponse, any>>;
|
|
632
|
+
/**
|
|
633
|
+
* Get an order (V3)
|
|
634
|
+
* @summary Get an order (V3)
|
|
635
|
+
* @param {OrdersApiGetOrderV3Request} requestParameters Request parameters.
|
|
636
|
+
* @param {*} [options] Override http request option.
|
|
637
|
+
* @throws {RequiredError}
|
|
638
|
+
* @memberof OrdersApi
|
|
639
|
+
*/
|
|
640
|
+
getOrderV3(requestParameters: OrdersApiGetOrderV3Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderV3, any>>;
|
|
641
|
+
/**
|
|
642
|
+
* Generate a signable cancel order message (V3)
|
|
643
|
+
* @summary Generate a signable cancel order message (V3)
|
|
644
|
+
* @param {OrdersApiGetSignableCancelOrderV3Request} requestParameters Request parameters.
|
|
645
|
+
* @param {*} [options] Override http request option.
|
|
646
|
+
* @throws {RequiredError}
|
|
647
|
+
* @memberof OrdersApi
|
|
648
|
+
*/
|
|
649
|
+
getSignableCancelOrderV3(requestParameters: OrdersApiGetSignableCancelOrderV3Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetSignableCancelOrderResponse, any>>;
|
|
650
|
+
/**
|
|
651
|
+
* Generate a signable order request (V3)
|
|
652
|
+
* @summary Generate a signable order request (V3)
|
|
653
|
+
* @param {OrdersApiGetSignableOrderRequest} requestParameters Request parameters.
|
|
654
|
+
* @param {*} [options] Override http request option.
|
|
655
|
+
* @throws {RequiredError}
|
|
656
|
+
* @memberof OrdersApi
|
|
657
|
+
*/
|
|
658
|
+
getSignableOrder(requestParameters: OrdersApiGetSignableOrderRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetSignableOrderResponse, any>>;
|
|
659
|
+
/**
|
|
660
|
+
* Get a list of orders (V3)
|
|
661
|
+
* @summary Get a list of orders (V3)
|
|
662
|
+
* @param {OrdersApiListOrdersV3Request} requestParameters Request parameters.
|
|
663
|
+
* @param {*} [options] Override http request option.
|
|
664
|
+
* @throws {RequiredError}
|
|
665
|
+
* @memberof OrdersApi
|
|
666
|
+
*/
|
|
667
|
+
listOrdersV3(requestParameters?: OrdersApiListOrdersV3Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListOrdersResponseV3, any>>;
|
|
668
|
+
}
|