@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,513 @@
|
|
|
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 { CreateWithdrawalRequest } from '../models';
|
|
16
|
+
import { CreateWithdrawalRequestV2 } from '../models';
|
|
17
|
+
import { CreateWithdrawalResponse } from '../models';
|
|
18
|
+
import { GetSignableWithdrawalRequest } from '../models';
|
|
19
|
+
import { GetSignableWithdrawalResponse } from '../models';
|
|
20
|
+
import { GetSignableWithdrawalResponseV2 } from '../models';
|
|
21
|
+
import { ListWithdrawalsResponse } from '../models';
|
|
22
|
+
import { Withdrawal } from '../models';
|
|
23
|
+
/**
|
|
24
|
+
* WithdrawalsApi - axios parameter creator
|
|
25
|
+
* @export
|
|
26
|
+
*/
|
|
27
|
+
export declare const WithdrawalsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
28
|
+
/**
|
|
29
|
+
* Creates a withdrawal. Use https://docs.x.immutable.com/reference/#/operations/getSignableWithdrawal to get request body params. This endpoint will be deprecated once StarkEx contract gets upgraded to v4, check https://docs.immutable.com/x/reference/#/operations/createWithdrawalV2.
|
|
30
|
+
* @summary Creates a withdrawal
|
|
31
|
+
* @param {string} xImxEthAddress eth address
|
|
32
|
+
* @param {string} xImxEthSignature eth signature
|
|
33
|
+
* @param {CreateWithdrawalRequest} createWithdrawalRequest create a withdrawal
|
|
34
|
+
* @param {*} [options] Override http request option.
|
|
35
|
+
* @throws {RequiredError}
|
|
36
|
+
*/
|
|
37
|
+
createWithdrawal: (xImxEthAddress: string, xImxEthSignature: string, createWithdrawalRequest: CreateWithdrawalRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
38
|
+
/**
|
|
39
|
+
* Creates a withdrawal. Use https://docs.immutable.com/x/reference/#/operations/getSignableWithdrawalV2 to get request body params.
|
|
40
|
+
* @summary Creates a withdrawal of a token for when StarkEx contract that is higher than v3
|
|
41
|
+
* @param {string} xImxEthAddress eth address
|
|
42
|
+
* @param {string} xImxEthSignature eth signature
|
|
43
|
+
* @param {CreateWithdrawalRequestV2} createWithdrawalRequestV2 create a withdrawal
|
|
44
|
+
* @param {*} [options] Override http request option.
|
|
45
|
+
* @throws {RequiredError}
|
|
46
|
+
*/
|
|
47
|
+
createWithdrawalV2: (xImxEthAddress: string, xImxEthSignature: string, createWithdrawalRequestV2: CreateWithdrawalRequestV2, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
48
|
+
/**
|
|
49
|
+
* Gets details of a signable withdrawal. This endpoint will be deprecated once StarkEx contract gets upgraded to v4, check https://docs.immutable.com/x/reference/#/operations/getSignableWithdrawalV2.
|
|
50
|
+
* @summary Gets details of a signable withdrawal
|
|
51
|
+
* @param {GetSignableWithdrawalRequest} getSignableWithdrawalRequest get details of signable withdrawal
|
|
52
|
+
* @param {*} [options] Override http request option.
|
|
53
|
+
* @throws {RequiredError}
|
|
54
|
+
*/
|
|
55
|
+
getSignableWithdrawal: (getSignableWithdrawalRequest: GetSignableWithdrawalRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
56
|
+
/**
|
|
57
|
+
* Gets details of a signable withdrawal
|
|
58
|
+
* @summary Gets details of a signable withdrawal for starkex contracts that are higher than v3
|
|
59
|
+
* @param {GetSignableWithdrawalRequest} getSignableWithdrawalRequest get details of signable withdrawal
|
|
60
|
+
* @param {*} [options] Override http request option.
|
|
61
|
+
* @throws {RequiredError}
|
|
62
|
+
*/
|
|
63
|
+
getSignableWithdrawalV2: (getSignableWithdrawalRequest: GetSignableWithdrawalRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
64
|
+
/**
|
|
65
|
+
* Gets details of withdrawal with the given ID
|
|
66
|
+
* @summary Gets details of withdrawal with the given ID
|
|
67
|
+
* @param {string} id Withdrawal ID
|
|
68
|
+
* @param {*} [options] Override http request option.
|
|
69
|
+
* @throws {RequiredError}
|
|
70
|
+
*/
|
|
71
|
+
getWithdrawal: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
72
|
+
/**
|
|
73
|
+
* Get a list of withdrawals
|
|
74
|
+
* @summary Get a list of withdrawals
|
|
75
|
+
* @param {boolean} [withdrawnToWallet] Withdrawal has been transferred to user\'s Layer 1 wallet
|
|
76
|
+
* @param {string} [rollupStatus] Status of the on-chain batch confirmation for this withdrawal
|
|
77
|
+
* @param {number} [pageSize] Page size of the result
|
|
78
|
+
* @param {string} [cursor] Cursor
|
|
79
|
+
* @param {string} [orderBy] Property to sort by
|
|
80
|
+
* @param {string} [direction] Direction to sort (asc/desc)
|
|
81
|
+
* @param {string} [user] Ethereum address of the user who submitted this withdrawal
|
|
82
|
+
* @param {string} [status] Status of this withdrawal
|
|
83
|
+
* @param {string} [minTimestamp] Minimum timestamp for this deposit, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
84
|
+
* @param {string} [maxTimestamp] Maximum timestamp for this deposit, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
85
|
+
* @param {string} [tokenType] Token type of the withdrawn asset
|
|
86
|
+
* @param {string} [tokenId] ERC721 Token ID of the minted asset
|
|
87
|
+
* @param {string} [assetId] Internal IMX ID of the minted asset
|
|
88
|
+
* @param {string} [tokenAddress] Token address of the withdrawn asset
|
|
89
|
+
* @param {string} [tokenName] Token name of the withdrawn asset
|
|
90
|
+
* @param {string} [minQuantity] Min quantity for the withdrawn asset
|
|
91
|
+
* @param {string} [maxQuantity] Max quantity for the withdrawn asset
|
|
92
|
+
* @param {string} [metadata] JSON-encoded metadata filters for the withdrawn asset
|
|
93
|
+
* @param {*} [options] Override http request option.
|
|
94
|
+
* @throws {RequiredError}
|
|
95
|
+
*/
|
|
96
|
+
listWithdrawals: (withdrawnToWallet?: boolean, rollupStatus?: string, pageSize?: number, cursor?: string, orderBy?: string, direction?: string, user?: string, status?: string, minTimestamp?: string, maxTimestamp?: string, tokenType?: string, tokenId?: string, assetId?: string, tokenAddress?: string, tokenName?: string, minQuantity?: string, maxQuantity?: string, metadata?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
97
|
+
};
|
|
98
|
+
/**
|
|
99
|
+
* WithdrawalsApi - functional programming interface
|
|
100
|
+
* @export
|
|
101
|
+
*/
|
|
102
|
+
export declare const WithdrawalsApiFp: (configuration?: Configuration) => {
|
|
103
|
+
/**
|
|
104
|
+
* Creates a withdrawal. Use https://docs.x.immutable.com/reference/#/operations/getSignableWithdrawal to get request body params. This endpoint will be deprecated once StarkEx contract gets upgraded to v4, check https://docs.immutable.com/x/reference/#/operations/createWithdrawalV2.
|
|
105
|
+
* @summary Creates a withdrawal
|
|
106
|
+
* @param {string} xImxEthAddress eth address
|
|
107
|
+
* @param {string} xImxEthSignature eth signature
|
|
108
|
+
* @param {CreateWithdrawalRequest} createWithdrawalRequest create a withdrawal
|
|
109
|
+
* @param {*} [options] Override http request option.
|
|
110
|
+
* @throws {RequiredError}
|
|
111
|
+
*/
|
|
112
|
+
createWithdrawal(xImxEthAddress: string, xImxEthSignature: string, createWithdrawalRequest: CreateWithdrawalRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateWithdrawalResponse>>;
|
|
113
|
+
/**
|
|
114
|
+
* Creates a withdrawal. Use https://docs.immutable.com/x/reference/#/operations/getSignableWithdrawalV2 to get request body params.
|
|
115
|
+
* @summary Creates a withdrawal of a token for when StarkEx contract that is higher than v3
|
|
116
|
+
* @param {string} xImxEthAddress eth address
|
|
117
|
+
* @param {string} xImxEthSignature eth signature
|
|
118
|
+
* @param {CreateWithdrawalRequestV2} createWithdrawalRequestV2 create a withdrawal
|
|
119
|
+
* @param {*} [options] Override http request option.
|
|
120
|
+
* @throws {RequiredError}
|
|
121
|
+
*/
|
|
122
|
+
createWithdrawalV2(xImxEthAddress: string, xImxEthSignature: string, createWithdrawalRequestV2: CreateWithdrawalRequestV2, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateWithdrawalResponse>>;
|
|
123
|
+
/**
|
|
124
|
+
* Gets details of a signable withdrawal. This endpoint will be deprecated once StarkEx contract gets upgraded to v4, check https://docs.immutable.com/x/reference/#/operations/getSignableWithdrawalV2.
|
|
125
|
+
* @summary Gets details of a signable withdrawal
|
|
126
|
+
* @param {GetSignableWithdrawalRequest} getSignableWithdrawalRequest get details of signable withdrawal
|
|
127
|
+
* @param {*} [options] Override http request option.
|
|
128
|
+
* @throws {RequiredError}
|
|
129
|
+
*/
|
|
130
|
+
getSignableWithdrawal(getSignableWithdrawalRequest: GetSignableWithdrawalRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSignableWithdrawalResponse>>;
|
|
131
|
+
/**
|
|
132
|
+
* Gets details of a signable withdrawal
|
|
133
|
+
* @summary Gets details of a signable withdrawal for starkex contracts that are higher than v3
|
|
134
|
+
* @param {GetSignableWithdrawalRequest} getSignableWithdrawalRequest get details of signable withdrawal
|
|
135
|
+
* @param {*} [options] Override http request option.
|
|
136
|
+
* @throws {RequiredError}
|
|
137
|
+
*/
|
|
138
|
+
getSignableWithdrawalV2(getSignableWithdrawalRequest: GetSignableWithdrawalRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSignableWithdrawalResponseV2>>;
|
|
139
|
+
/**
|
|
140
|
+
* Gets details of withdrawal with the given ID
|
|
141
|
+
* @summary Gets details of withdrawal with the given ID
|
|
142
|
+
* @param {string} id Withdrawal ID
|
|
143
|
+
* @param {*} [options] Override http request option.
|
|
144
|
+
* @throws {RequiredError}
|
|
145
|
+
*/
|
|
146
|
+
getWithdrawal(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Withdrawal>>;
|
|
147
|
+
/**
|
|
148
|
+
* Get a list of withdrawals
|
|
149
|
+
* @summary Get a list of withdrawals
|
|
150
|
+
* @param {boolean} [withdrawnToWallet] Withdrawal has been transferred to user\'s Layer 1 wallet
|
|
151
|
+
* @param {string} [rollupStatus] Status of the on-chain batch confirmation for this withdrawal
|
|
152
|
+
* @param {number} [pageSize] Page size of the result
|
|
153
|
+
* @param {string} [cursor] Cursor
|
|
154
|
+
* @param {string} [orderBy] Property to sort by
|
|
155
|
+
* @param {string} [direction] Direction to sort (asc/desc)
|
|
156
|
+
* @param {string} [user] Ethereum address of the user who submitted this withdrawal
|
|
157
|
+
* @param {string} [status] Status of this withdrawal
|
|
158
|
+
* @param {string} [minTimestamp] Minimum timestamp for this deposit, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
159
|
+
* @param {string} [maxTimestamp] Maximum timestamp for this deposit, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
160
|
+
* @param {string} [tokenType] Token type of the withdrawn asset
|
|
161
|
+
* @param {string} [tokenId] ERC721 Token ID of the minted asset
|
|
162
|
+
* @param {string} [assetId] Internal IMX ID of the minted asset
|
|
163
|
+
* @param {string} [tokenAddress] Token address of the withdrawn asset
|
|
164
|
+
* @param {string} [tokenName] Token name of the withdrawn asset
|
|
165
|
+
* @param {string} [minQuantity] Min quantity for the withdrawn asset
|
|
166
|
+
* @param {string} [maxQuantity] Max quantity for the withdrawn asset
|
|
167
|
+
* @param {string} [metadata] JSON-encoded metadata filters for the withdrawn asset
|
|
168
|
+
* @param {*} [options] Override http request option.
|
|
169
|
+
* @throws {RequiredError}
|
|
170
|
+
*/
|
|
171
|
+
listWithdrawals(withdrawnToWallet?: boolean, rollupStatus?: string, pageSize?: number, cursor?: string, orderBy?: string, direction?: string, user?: string, status?: string, minTimestamp?: string, maxTimestamp?: string, tokenType?: string, tokenId?: string, assetId?: string, tokenAddress?: string, tokenName?: string, minQuantity?: string, maxQuantity?: string, metadata?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListWithdrawalsResponse>>;
|
|
172
|
+
};
|
|
173
|
+
/**
|
|
174
|
+
* WithdrawalsApi - factory interface
|
|
175
|
+
* @export
|
|
176
|
+
*/
|
|
177
|
+
export declare const WithdrawalsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
178
|
+
/**
|
|
179
|
+
* Creates a withdrawal. Use https://docs.x.immutable.com/reference/#/operations/getSignableWithdrawal to get request body params. This endpoint will be deprecated once StarkEx contract gets upgraded to v4, check https://docs.immutable.com/x/reference/#/operations/createWithdrawalV2.
|
|
180
|
+
* @summary Creates a withdrawal
|
|
181
|
+
* @param {string} xImxEthAddress eth address
|
|
182
|
+
* @param {string} xImxEthSignature eth signature
|
|
183
|
+
* @param {CreateWithdrawalRequest} createWithdrawalRequest create a withdrawal
|
|
184
|
+
* @param {*} [options] Override http request option.
|
|
185
|
+
* @throws {RequiredError}
|
|
186
|
+
*/
|
|
187
|
+
createWithdrawal(xImxEthAddress: string, xImxEthSignature: string, createWithdrawalRequest: CreateWithdrawalRequest, options?: any): AxiosPromise<CreateWithdrawalResponse>;
|
|
188
|
+
/**
|
|
189
|
+
* Creates a withdrawal. Use https://docs.immutable.com/x/reference/#/operations/getSignableWithdrawalV2 to get request body params.
|
|
190
|
+
* @summary Creates a withdrawal of a token for when StarkEx contract that is higher than v3
|
|
191
|
+
* @param {string} xImxEthAddress eth address
|
|
192
|
+
* @param {string} xImxEthSignature eth signature
|
|
193
|
+
* @param {CreateWithdrawalRequestV2} createWithdrawalRequestV2 create a withdrawal
|
|
194
|
+
* @param {*} [options] Override http request option.
|
|
195
|
+
* @throws {RequiredError}
|
|
196
|
+
*/
|
|
197
|
+
createWithdrawalV2(xImxEthAddress: string, xImxEthSignature: string, createWithdrawalRequestV2: CreateWithdrawalRequestV2, options?: any): AxiosPromise<CreateWithdrawalResponse>;
|
|
198
|
+
/**
|
|
199
|
+
* Gets details of a signable withdrawal. This endpoint will be deprecated once StarkEx contract gets upgraded to v4, check https://docs.immutable.com/x/reference/#/operations/getSignableWithdrawalV2.
|
|
200
|
+
* @summary Gets details of a signable withdrawal
|
|
201
|
+
* @param {GetSignableWithdrawalRequest} getSignableWithdrawalRequest get details of signable withdrawal
|
|
202
|
+
* @param {*} [options] Override http request option.
|
|
203
|
+
* @throws {RequiredError}
|
|
204
|
+
*/
|
|
205
|
+
getSignableWithdrawal(getSignableWithdrawalRequest: GetSignableWithdrawalRequest, options?: any): AxiosPromise<GetSignableWithdrawalResponse>;
|
|
206
|
+
/**
|
|
207
|
+
* Gets details of a signable withdrawal
|
|
208
|
+
* @summary Gets details of a signable withdrawal for starkex contracts that are higher than v3
|
|
209
|
+
* @param {GetSignableWithdrawalRequest} getSignableWithdrawalRequest get details of signable withdrawal
|
|
210
|
+
* @param {*} [options] Override http request option.
|
|
211
|
+
* @throws {RequiredError}
|
|
212
|
+
*/
|
|
213
|
+
getSignableWithdrawalV2(getSignableWithdrawalRequest: GetSignableWithdrawalRequest, options?: any): AxiosPromise<GetSignableWithdrawalResponseV2>;
|
|
214
|
+
/**
|
|
215
|
+
* Gets details of withdrawal with the given ID
|
|
216
|
+
* @summary Gets details of withdrawal with the given ID
|
|
217
|
+
* @param {string} id Withdrawal ID
|
|
218
|
+
* @param {*} [options] Override http request option.
|
|
219
|
+
* @throws {RequiredError}
|
|
220
|
+
*/
|
|
221
|
+
getWithdrawal(id: string, options?: any): AxiosPromise<Withdrawal>;
|
|
222
|
+
/**
|
|
223
|
+
* Get a list of withdrawals
|
|
224
|
+
* @summary Get a list of withdrawals
|
|
225
|
+
* @param {boolean} [withdrawnToWallet] Withdrawal has been transferred to user\'s Layer 1 wallet
|
|
226
|
+
* @param {string} [rollupStatus] Status of the on-chain batch confirmation for this withdrawal
|
|
227
|
+
* @param {number} [pageSize] Page size of the result
|
|
228
|
+
* @param {string} [cursor] Cursor
|
|
229
|
+
* @param {string} [orderBy] Property to sort by
|
|
230
|
+
* @param {string} [direction] Direction to sort (asc/desc)
|
|
231
|
+
* @param {string} [user] Ethereum address of the user who submitted this withdrawal
|
|
232
|
+
* @param {string} [status] Status of this withdrawal
|
|
233
|
+
* @param {string} [minTimestamp] Minimum timestamp for this deposit, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
234
|
+
* @param {string} [maxTimestamp] Maximum timestamp for this deposit, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
235
|
+
* @param {string} [tokenType] Token type of the withdrawn asset
|
|
236
|
+
* @param {string} [tokenId] ERC721 Token ID of the minted asset
|
|
237
|
+
* @param {string} [assetId] Internal IMX ID of the minted asset
|
|
238
|
+
* @param {string} [tokenAddress] Token address of the withdrawn asset
|
|
239
|
+
* @param {string} [tokenName] Token name of the withdrawn asset
|
|
240
|
+
* @param {string} [minQuantity] Min quantity for the withdrawn asset
|
|
241
|
+
* @param {string} [maxQuantity] Max quantity for the withdrawn asset
|
|
242
|
+
* @param {string} [metadata] JSON-encoded metadata filters for the withdrawn asset
|
|
243
|
+
* @param {*} [options] Override http request option.
|
|
244
|
+
* @throws {RequiredError}
|
|
245
|
+
*/
|
|
246
|
+
listWithdrawals(withdrawnToWallet?: boolean, rollupStatus?: string, pageSize?: number, cursor?: string, orderBy?: string, direction?: string, user?: string, status?: string, minTimestamp?: string, maxTimestamp?: string, tokenType?: string, tokenId?: string, assetId?: string, tokenAddress?: string, tokenName?: string, minQuantity?: string, maxQuantity?: string, metadata?: string, options?: any): AxiosPromise<ListWithdrawalsResponse>;
|
|
247
|
+
};
|
|
248
|
+
/**
|
|
249
|
+
* Request parameters for createWithdrawal operation in WithdrawalsApi.
|
|
250
|
+
* @export
|
|
251
|
+
* @interface WithdrawalsApiCreateWithdrawalRequest
|
|
252
|
+
*/
|
|
253
|
+
export interface WithdrawalsApiCreateWithdrawalRequest {
|
|
254
|
+
/**
|
|
255
|
+
* eth address
|
|
256
|
+
* @type {string}
|
|
257
|
+
* @memberof WithdrawalsApiCreateWithdrawal
|
|
258
|
+
*/
|
|
259
|
+
readonly xImxEthAddress: string;
|
|
260
|
+
/**
|
|
261
|
+
* eth signature
|
|
262
|
+
* @type {string}
|
|
263
|
+
* @memberof WithdrawalsApiCreateWithdrawal
|
|
264
|
+
*/
|
|
265
|
+
readonly xImxEthSignature: string;
|
|
266
|
+
/**
|
|
267
|
+
* create a withdrawal
|
|
268
|
+
* @type {CreateWithdrawalRequest}
|
|
269
|
+
* @memberof WithdrawalsApiCreateWithdrawal
|
|
270
|
+
*/
|
|
271
|
+
readonly createWithdrawalRequest: CreateWithdrawalRequest;
|
|
272
|
+
}
|
|
273
|
+
/**
|
|
274
|
+
* Request parameters for createWithdrawalV2 operation in WithdrawalsApi.
|
|
275
|
+
* @export
|
|
276
|
+
* @interface WithdrawalsApiCreateWithdrawalV2Request
|
|
277
|
+
*/
|
|
278
|
+
export interface WithdrawalsApiCreateWithdrawalV2Request {
|
|
279
|
+
/**
|
|
280
|
+
* eth address
|
|
281
|
+
* @type {string}
|
|
282
|
+
* @memberof WithdrawalsApiCreateWithdrawalV2
|
|
283
|
+
*/
|
|
284
|
+
readonly xImxEthAddress: string;
|
|
285
|
+
/**
|
|
286
|
+
* eth signature
|
|
287
|
+
* @type {string}
|
|
288
|
+
* @memberof WithdrawalsApiCreateWithdrawalV2
|
|
289
|
+
*/
|
|
290
|
+
readonly xImxEthSignature: string;
|
|
291
|
+
/**
|
|
292
|
+
* create a withdrawal
|
|
293
|
+
* @type {CreateWithdrawalRequestV2}
|
|
294
|
+
* @memberof WithdrawalsApiCreateWithdrawalV2
|
|
295
|
+
*/
|
|
296
|
+
readonly createWithdrawalRequestV2: CreateWithdrawalRequestV2;
|
|
297
|
+
}
|
|
298
|
+
/**
|
|
299
|
+
* Request parameters for getSignableWithdrawal operation in WithdrawalsApi.
|
|
300
|
+
* @export
|
|
301
|
+
* @interface WithdrawalsApiGetSignableWithdrawalRequest
|
|
302
|
+
*/
|
|
303
|
+
export interface WithdrawalsApiGetSignableWithdrawalRequest {
|
|
304
|
+
/**
|
|
305
|
+
* get details of signable withdrawal
|
|
306
|
+
* @type {GetSignableWithdrawalRequest}
|
|
307
|
+
* @memberof WithdrawalsApiGetSignableWithdrawal
|
|
308
|
+
*/
|
|
309
|
+
readonly getSignableWithdrawalRequest: GetSignableWithdrawalRequest;
|
|
310
|
+
}
|
|
311
|
+
/**
|
|
312
|
+
* Request parameters for getSignableWithdrawalV2 operation in WithdrawalsApi.
|
|
313
|
+
* @export
|
|
314
|
+
* @interface WithdrawalsApiGetSignableWithdrawalV2Request
|
|
315
|
+
*/
|
|
316
|
+
export interface WithdrawalsApiGetSignableWithdrawalV2Request {
|
|
317
|
+
/**
|
|
318
|
+
* get details of signable withdrawal
|
|
319
|
+
* @type {GetSignableWithdrawalRequest}
|
|
320
|
+
* @memberof WithdrawalsApiGetSignableWithdrawalV2
|
|
321
|
+
*/
|
|
322
|
+
readonly getSignableWithdrawalRequest: GetSignableWithdrawalRequest;
|
|
323
|
+
}
|
|
324
|
+
/**
|
|
325
|
+
* Request parameters for getWithdrawal operation in WithdrawalsApi.
|
|
326
|
+
* @export
|
|
327
|
+
* @interface WithdrawalsApiGetWithdrawalRequest
|
|
328
|
+
*/
|
|
329
|
+
export interface WithdrawalsApiGetWithdrawalRequest {
|
|
330
|
+
/**
|
|
331
|
+
* Withdrawal ID
|
|
332
|
+
* @type {string}
|
|
333
|
+
* @memberof WithdrawalsApiGetWithdrawal
|
|
334
|
+
*/
|
|
335
|
+
readonly id: string;
|
|
336
|
+
}
|
|
337
|
+
/**
|
|
338
|
+
* Request parameters for listWithdrawals operation in WithdrawalsApi.
|
|
339
|
+
* @export
|
|
340
|
+
* @interface WithdrawalsApiListWithdrawalsRequest
|
|
341
|
+
*/
|
|
342
|
+
export interface WithdrawalsApiListWithdrawalsRequest {
|
|
343
|
+
/**
|
|
344
|
+
* Withdrawal has been transferred to user\'s Layer 1 wallet
|
|
345
|
+
* @type {boolean}
|
|
346
|
+
* @memberof WithdrawalsApiListWithdrawals
|
|
347
|
+
*/
|
|
348
|
+
readonly withdrawnToWallet?: boolean;
|
|
349
|
+
/**
|
|
350
|
+
* Status of the on-chain batch confirmation for this withdrawal
|
|
351
|
+
* @type {string}
|
|
352
|
+
* @memberof WithdrawalsApiListWithdrawals
|
|
353
|
+
*/
|
|
354
|
+
readonly rollupStatus?: string;
|
|
355
|
+
/**
|
|
356
|
+
* Page size of the result
|
|
357
|
+
* @type {number}
|
|
358
|
+
* @memberof WithdrawalsApiListWithdrawals
|
|
359
|
+
*/
|
|
360
|
+
readonly pageSize?: number;
|
|
361
|
+
/**
|
|
362
|
+
* Cursor
|
|
363
|
+
* @type {string}
|
|
364
|
+
* @memberof WithdrawalsApiListWithdrawals
|
|
365
|
+
*/
|
|
366
|
+
readonly cursor?: string;
|
|
367
|
+
/**
|
|
368
|
+
* Property to sort by
|
|
369
|
+
* @type {string}
|
|
370
|
+
* @memberof WithdrawalsApiListWithdrawals
|
|
371
|
+
*/
|
|
372
|
+
readonly orderBy?: string;
|
|
373
|
+
/**
|
|
374
|
+
* Direction to sort (asc/desc)
|
|
375
|
+
* @type {string}
|
|
376
|
+
* @memberof WithdrawalsApiListWithdrawals
|
|
377
|
+
*/
|
|
378
|
+
readonly direction?: string;
|
|
379
|
+
/**
|
|
380
|
+
* Ethereum address of the user who submitted this withdrawal
|
|
381
|
+
* @type {string}
|
|
382
|
+
* @memberof WithdrawalsApiListWithdrawals
|
|
383
|
+
*/
|
|
384
|
+
readonly user?: string;
|
|
385
|
+
/**
|
|
386
|
+
* Status of this withdrawal
|
|
387
|
+
* @type {string}
|
|
388
|
+
* @memberof WithdrawalsApiListWithdrawals
|
|
389
|
+
*/
|
|
390
|
+
readonly status?: string;
|
|
391
|
+
/**
|
|
392
|
+
* Minimum timestamp for this deposit, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
393
|
+
* @type {string}
|
|
394
|
+
* @memberof WithdrawalsApiListWithdrawals
|
|
395
|
+
*/
|
|
396
|
+
readonly minTimestamp?: string;
|
|
397
|
+
/**
|
|
398
|
+
* Maximum timestamp for this deposit, in ISO 8601 UTC format. Example: \'2022-05-27T00:10:22Z\'
|
|
399
|
+
* @type {string}
|
|
400
|
+
* @memberof WithdrawalsApiListWithdrawals
|
|
401
|
+
*/
|
|
402
|
+
readonly maxTimestamp?: string;
|
|
403
|
+
/**
|
|
404
|
+
* Token type of the withdrawn asset
|
|
405
|
+
* @type {string}
|
|
406
|
+
* @memberof WithdrawalsApiListWithdrawals
|
|
407
|
+
*/
|
|
408
|
+
readonly tokenType?: string;
|
|
409
|
+
/**
|
|
410
|
+
* ERC721 Token ID of the minted asset
|
|
411
|
+
* @type {string}
|
|
412
|
+
* @memberof WithdrawalsApiListWithdrawals
|
|
413
|
+
*/
|
|
414
|
+
readonly tokenId?: string;
|
|
415
|
+
/**
|
|
416
|
+
* Internal IMX ID of the minted asset
|
|
417
|
+
* @type {string}
|
|
418
|
+
* @memberof WithdrawalsApiListWithdrawals
|
|
419
|
+
*/
|
|
420
|
+
readonly assetId?: string;
|
|
421
|
+
/**
|
|
422
|
+
* Token address of the withdrawn asset
|
|
423
|
+
* @type {string}
|
|
424
|
+
* @memberof WithdrawalsApiListWithdrawals
|
|
425
|
+
*/
|
|
426
|
+
readonly tokenAddress?: string;
|
|
427
|
+
/**
|
|
428
|
+
* Token name of the withdrawn asset
|
|
429
|
+
* @type {string}
|
|
430
|
+
* @memberof WithdrawalsApiListWithdrawals
|
|
431
|
+
*/
|
|
432
|
+
readonly tokenName?: string;
|
|
433
|
+
/**
|
|
434
|
+
* Min quantity for the withdrawn asset
|
|
435
|
+
* @type {string}
|
|
436
|
+
* @memberof WithdrawalsApiListWithdrawals
|
|
437
|
+
*/
|
|
438
|
+
readonly minQuantity?: string;
|
|
439
|
+
/**
|
|
440
|
+
* Max quantity for the withdrawn asset
|
|
441
|
+
* @type {string}
|
|
442
|
+
* @memberof WithdrawalsApiListWithdrawals
|
|
443
|
+
*/
|
|
444
|
+
readonly maxQuantity?: string;
|
|
445
|
+
/**
|
|
446
|
+
* JSON-encoded metadata filters for the withdrawn asset
|
|
447
|
+
* @type {string}
|
|
448
|
+
* @memberof WithdrawalsApiListWithdrawals
|
|
449
|
+
*/
|
|
450
|
+
readonly metadata?: string;
|
|
451
|
+
}
|
|
452
|
+
/**
|
|
453
|
+
* WithdrawalsApi - object-oriented interface
|
|
454
|
+
* @export
|
|
455
|
+
* @class WithdrawalsApi
|
|
456
|
+
* @extends {BaseAPI}
|
|
457
|
+
*/
|
|
458
|
+
export declare class WithdrawalsApi extends BaseAPI {
|
|
459
|
+
/**
|
|
460
|
+
* Creates a withdrawal. Use https://docs.x.immutable.com/reference/#/operations/getSignableWithdrawal to get request body params. This endpoint will be deprecated once StarkEx contract gets upgraded to v4, check https://docs.immutable.com/x/reference/#/operations/createWithdrawalV2.
|
|
461
|
+
* @summary Creates a withdrawal
|
|
462
|
+
* @param {WithdrawalsApiCreateWithdrawalRequest} requestParameters Request parameters.
|
|
463
|
+
* @param {*} [options] Override http request option.
|
|
464
|
+
* @throws {RequiredError}
|
|
465
|
+
* @memberof WithdrawalsApi
|
|
466
|
+
*/
|
|
467
|
+
createWithdrawal(requestParameters: WithdrawalsApiCreateWithdrawalRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWithdrawalResponse, any>>;
|
|
468
|
+
/**
|
|
469
|
+
* Creates a withdrawal. Use https://docs.immutable.com/x/reference/#/operations/getSignableWithdrawalV2 to get request body params.
|
|
470
|
+
* @summary Creates a withdrawal of a token for when StarkEx contract that is higher than v3
|
|
471
|
+
* @param {WithdrawalsApiCreateWithdrawalV2Request} requestParameters Request parameters.
|
|
472
|
+
* @param {*} [options] Override http request option.
|
|
473
|
+
* @throws {RequiredError}
|
|
474
|
+
* @memberof WithdrawalsApi
|
|
475
|
+
*/
|
|
476
|
+
createWithdrawalV2(requestParameters: WithdrawalsApiCreateWithdrawalV2Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateWithdrawalResponse, any>>;
|
|
477
|
+
/**
|
|
478
|
+
* Gets details of a signable withdrawal. This endpoint will be deprecated once StarkEx contract gets upgraded to v4, check https://docs.immutable.com/x/reference/#/operations/getSignableWithdrawalV2.
|
|
479
|
+
* @summary Gets details of a signable withdrawal
|
|
480
|
+
* @param {WithdrawalsApiGetSignableWithdrawalRequest} requestParameters Request parameters.
|
|
481
|
+
* @param {*} [options] Override http request option.
|
|
482
|
+
* @throws {RequiredError}
|
|
483
|
+
* @memberof WithdrawalsApi
|
|
484
|
+
*/
|
|
485
|
+
getSignableWithdrawal(requestParameters: WithdrawalsApiGetSignableWithdrawalRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetSignableWithdrawalResponse, any>>;
|
|
486
|
+
/**
|
|
487
|
+
* Gets details of a signable withdrawal
|
|
488
|
+
* @summary Gets details of a signable withdrawal for starkex contracts that are higher than v3
|
|
489
|
+
* @param {WithdrawalsApiGetSignableWithdrawalV2Request} requestParameters Request parameters.
|
|
490
|
+
* @param {*} [options] Override http request option.
|
|
491
|
+
* @throws {RequiredError}
|
|
492
|
+
* @memberof WithdrawalsApi
|
|
493
|
+
*/
|
|
494
|
+
getSignableWithdrawalV2(requestParameters: WithdrawalsApiGetSignableWithdrawalV2Request, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GetSignableWithdrawalResponseV2, any>>;
|
|
495
|
+
/**
|
|
496
|
+
* Gets details of withdrawal with the given ID
|
|
497
|
+
* @summary Gets details of withdrawal with the given ID
|
|
498
|
+
* @param {WithdrawalsApiGetWithdrawalRequest} requestParameters Request parameters.
|
|
499
|
+
* @param {*} [options] Override http request option.
|
|
500
|
+
* @throws {RequiredError}
|
|
501
|
+
* @memberof WithdrawalsApi
|
|
502
|
+
*/
|
|
503
|
+
getWithdrawal(requestParameters: WithdrawalsApiGetWithdrawalRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Withdrawal, any>>;
|
|
504
|
+
/**
|
|
505
|
+
* Get a list of withdrawals
|
|
506
|
+
* @summary Get a list of withdrawals
|
|
507
|
+
* @param {WithdrawalsApiListWithdrawalsRequest} requestParameters Request parameters.
|
|
508
|
+
* @param {*} [options] Override http request option.
|
|
509
|
+
* @throws {RequiredError}
|
|
510
|
+
* @memberof WithdrawalsApi
|
|
511
|
+
*/
|
|
512
|
+
listWithdrawals(requestParameters?: WithdrawalsApiListWithdrawalsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListWithdrawalsResponse, any>>;
|
|
513
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
export * from "./api";
|
|
13
|
+
export * from "./configuration";
|
|
14
|
+
export * from "./models";
|
|
@@ -0,0 +1,31 @@
|
|
|
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 { MetadataSchemaRequest } from './metadata-schema-request';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface AddMetadataSchemaToCollectionRequest
|
|
17
|
+
*/
|
|
18
|
+
export interface AddMetadataSchemaToCollectionRequest {
|
|
19
|
+
/**
|
|
20
|
+
* Not required from API user
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof AddMetadataSchemaToCollectionRequest
|
|
23
|
+
*/
|
|
24
|
+
'contract_address'?: string;
|
|
25
|
+
/**
|
|
26
|
+
* The metadata container
|
|
27
|
+
* @type {Array<MetadataSchemaRequest>}
|
|
28
|
+
* @memberof AddMetadataSchemaToCollectionRequest
|
|
29
|
+
*/
|
|
30
|
+
'metadata': Array<MetadataSchemaRequest>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface AggregateLimit
|
|
16
|
+
*/
|
|
17
|
+
export interface AggregateLimit {
|
|
18
|
+
/**
|
|
19
|
+
* Max transaction amount
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof AggregateLimit
|
|
22
|
+
*/
|
|
23
|
+
'max_amount'?: number;
|
|
24
|
+
/**
|
|
25
|
+
* Min transaction amount
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof AggregateLimit
|
|
28
|
+
*/
|
|
29
|
+
'min_amount'?: number;
|
|
30
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
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 { Token } from './token';
|
|
13
|
+
/**
|
|
14
|
+
* @type ApiOrderV3Buy
|
|
15
|
+
* Details of the asset being bought
|
|
16
|
+
* @export
|
|
17
|
+
*/
|
|
18
|
+
export type ApiOrderV3Buy = Token;
|
|
@@ -0,0 +1,18 @@
|
|
|
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 { StoreMakerTakerFee } from './store-maker-taker-fee';
|
|
13
|
+
/**
|
|
14
|
+
* @type ApiOrderV3MakerFees
|
|
15
|
+
* MakerFees is the information about the fees that needs to be paid by the maker (liquidity)
|
|
16
|
+
* @export
|
|
17
|
+
*/
|
|
18
|
+
export type ApiOrderV3MakerFees = StoreMakerTakerFee;
|
|
@@ -0,0 +1,18 @@
|
|
|
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 { Token } from './token';
|
|
13
|
+
/**
|
|
14
|
+
* @type ApiOrderV3Sell
|
|
15
|
+
* Details of the asset being sold
|
|
16
|
+
* @export
|
|
17
|
+
*/
|
|
18
|
+
export type ApiOrderV3Sell = Token;
|
|
@@ -0,0 +1,18 @@
|
|
|
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 { StoreMakerTakerFee } from './store-maker-taker-fee';
|
|
13
|
+
/**
|
|
14
|
+
* @type ApiOrderV3TakerFees
|
|
15
|
+
* TakerFees is the information about the fees that needs to be paid by the taker (liquidity)
|
|
16
|
+
* @export
|
|
17
|
+
*/
|
|
18
|
+
export type ApiOrderV3TakerFees = StoreMakerTakerFee;
|