@imtbl/core-sdk
Advanced tools
Comparing version 0.3.0 to 0.3.1
@@ -30,3 +30,3 @@ /** | ||
*/ | ||
export declare const setApiKeyToObject: (object: any, keyParamName: string, configuration?: Configuration | undefined) => Promise<void>; | ||
export declare const setApiKeyToObject: (object: any, keyParamName: string, configuration?: Configuration) => Promise<void>; | ||
/** | ||
@@ -36,3 +36,3 @@ * | ||
*/ | ||
export declare const setBasicAuthToObject: (object: any, configuration?: Configuration | undefined) => void; | ||
export declare const setBasicAuthToObject: (object: any, configuration?: Configuration) => void; | ||
/** | ||
@@ -42,3 +42,3 @@ * | ||
*/ | ||
export declare const setBearerAuthToObject: (object: any, configuration?: Configuration | undefined) => Promise<void>; | ||
export declare const setBearerAuthToObject: (object: any, configuration?: Configuration) => Promise<void>; | ||
/** | ||
@@ -48,3 +48,3 @@ * | ||
*/ | ||
export declare const setOAuthToObject: (object: any, name: string, scopes: string[], configuration?: Configuration | undefined) => Promise<void>; | ||
export declare const setOAuthToObject: (object: any, name: string, scopes: string[], configuration?: Configuration) => Promise<void>; | ||
/** | ||
@@ -59,3 +59,3 @@ * | ||
*/ | ||
export declare const serializeDataIfNeeded: (value: any, requestOptions: any, configuration?: Configuration | undefined) => any; | ||
export declare const serializeDataIfNeeded: (value: any, requestOptions: any, configuration?: Configuration) => any; | ||
/** | ||
@@ -70,2 +70,2 @@ * | ||
*/ | ||
export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration | undefined) => <T = unknown, R = AxiosResponse<T, any>>(axios?: AxiosInstance, basePath?: string) => Promise<R>; | ||
export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T, any>>(axios?: AxiosInstance, basePath?: string) => Promise<R>; |
@@ -21,3 +21,3 @@ /** | ||
*/ | ||
export declare const AssetsApiAxiosParamCreator: (configuration?: Configuration | undefined) => { | ||
export declare const AssetsApiAxiosParamCreator: (configuration?: Configuration) => { | ||
/** | ||
@@ -32,3 +32,3 @@ * Get details of an asset | ||
*/ | ||
getAsset: (tokenAddress: string, tokenId: string, includeFees?: boolean | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
getAsset: (tokenAddress: string, tokenId: string, includeFees?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
/** | ||
@@ -56,3 +56,3 @@ * Get a list of assets | ||
*/ | ||
listAssets: (pageSize?: number | undefined, cursor?: string | undefined, orderBy?: "updated_at" | "name" | undefined, direction?: string | undefined, user?: string | undefined, status?: string | undefined, name?: string | undefined, metadata?: string | undefined, sellOrders?: boolean | undefined, buyOrders?: boolean | undefined, includeFees?: boolean | undefined, collection?: string | undefined, updatedMinTimestamp?: string | undefined, updatedMaxTimestamp?: string | undefined, auxiliaryFeePercentages?: string | undefined, auxiliaryFeeRecipients?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
listAssets: (pageSize?: number, cursor?: string, orderBy?: 'updated_at' | 'name', direction?: string, user?: string, status?: string, name?: string, metadata?: string, sellOrders?: boolean, buyOrders?: boolean, includeFees?: boolean, collection?: string, updatedMinTimestamp?: string, updatedMaxTimestamp?: string, auxiliaryFeePercentages?: string, auxiliaryFeeRecipients?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
}; | ||
@@ -63,3 +63,3 @@ /** | ||
*/ | ||
export declare const AssetsApiFp: (configuration?: Configuration | undefined) => { | ||
export declare const AssetsApiFp: (configuration?: Configuration) => { | ||
/** | ||
@@ -74,3 +74,3 @@ * Get details of an asset | ||
*/ | ||
getAsset(tokenAddress: string, tokenId: string, includeFees?: boolean | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Asset>>; | ||
getAsset(tokenAddress: string, tokenId: string, includeFees?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Asset>>; | ||
/** | ||
@@ -98,3 +98,3 @@ * Get a list of assets | ||
*/ | ||
listAssets(pageSize?: number | undefined, cursor?: string | undefined, orderBy?: "updated_at" | "name" | undefined, direction?: string | undefined, user?: string | undefined, status?: string | undefined, name?: string | undefined, metadata?: string | undefined, sellOrders?: boolean | undefined, buyOrders?: boolean | undefined, includeFees?: boolean | undefined, collection?: string | undefined, updatedMinTimestamp?: string | undefined, updatedMaxTimestamp?: string | undefined, auxiliaryFeePercentages?: string | undefined, auxiliaryFeeRecipients?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ListAssetsResponse>>; | ||
listAssets(pageSize?: number, cursor?: string, orderBy?: 'updated_at' | 'name', direction?: string, user?: string, status?: string, name?: string, metadata?: string, sellOrders?: boolean, buyOrders?: boolean, includeFees?: boolean, collection?: string, updatedMinTimestamp?: string, updatedMaxTimestamp?: string, auxiliaryFeePercentages?: string, auxiliaryFeeRecipients?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListAssetsResponse>>; | ||
}; | ||
@@ -105,3 +105,3 @@ /** | ||
*/ | ||
export declare const AssetsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => { | ||
export declare const AssetsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { | ||
/** | ||
@@ -116,3 +116,3 @@ * Get details of an asset | ||
*/ | ||
getAsset(tokenAddress: string, tokenId: string, includeFees?: boolean | undefined, options?: any): AxiosPromise<Asset>; | ||
getAsset(tokenAddress: string, tokenId: string, includeFees?: boolean, options?: any): AxiosPromise<Asset>; | ||
/** | ||
@@ -140,3 +140,3 @@ * Get a list of assets | ||
*/ | ||
listAssets(pageSize?: number | undefined, cursor?: string | undefined, orderBy?: "updated_at" | "name" | undefined, direction?: string | undefined, user?: string | undefined, status?: string | undefined, name?: string | undefined, metadata?: string | undefined, sellOrders?: boolean | undefined, buyOrders?: boolean | undefined, includeFees?: boolean | undefined, collection?: string | undefined, updatedMinTimestamp?: string | undefined, updatedMaxTimestamp?: string | undefined, auxiliaryFeePercentages?: string | undefined, auxiliaryFeeRecipients?: string | undefined, options?: any): AxiosPromise<ListAssetsResponse>; | ||
listAssets(pageSize?: number, cursor?: string, orderBy?: 'updated_at' | 'name', direction?: string, user?: string, status?: string, name?: string, metadata?: string, sellOrders?: boolean, buyOrders?: boolean, includeFees?: boolean, collection?: string, updatedMinTimestamp?: string, updatedMaxTimestamp?: string, auxiliaryFeePercentages?: string, auxiliaryFeeRecipients?: string, options?: any): AxiosPromise<ListAssetsResponse>; | ||
}; | ||
@@ -143,0 +143,0 @@ /** |
@@ -21,3 +21,3 @@ /** | ||
*/ | ||
export declare const BalancesApiAxiosParamCreator: (configuration?: Configuration | undefined) => { | ||
export declare const BalancesApiAxiosParamCreator: (configuration?: Configuration) => { | ||
/** | ||
@@ -45,3 +45,3 @@ * Fetches the token balances of the user | ||
*/ | ||
export declare const BalancesApiFp: (configuration?: Configuration | undefined) => { | ||
export declare const BalancesApiFp: (configuration?: Configuration) => { | ||
/** | ||
@@ -55,3 +55,3 @@ * Fetches the token balances of the user | ||
*/ | ||
getBalance(owner: string, address: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Balance>>; | ||
getBalance(owner: string, address: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Balance>>; | ||
/** | ||
@@ -64,3 +64,3 @@ * Get a list of balances for given user | ||
*/ | ||
listBalances(owner: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ListBalancesResponse>>; | ||
listBalances(owner: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListBalancesResponse>>; | ||
}; | ||
@@ -71,3 +71,3 @@ /** | ||
*/ | ||
export declare const BalancesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => { | ||
export declare const BalancesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { | ||
/** | ||
@@ -74,0 +74,0 @@ * Fetches the token balances of the user |
@@ -24,3 +24,3 @@ /** | ||
*/ | ||
export declare const CollectionsApiAxiosParamCreator: (configuration?: Configuration | undefined) => { | ||
export declare const CollectionsApiAxiosParamCreator: (configuration?: Configuration) => { | ||
/** | ||
@@ -53,3 +53,3 @@ * Create collection | ||
*/ | ||
listCollectionFilters: (address: string, pageSize?: number | undefined, nextPageToken?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
listCollectionFilters: (address: string, pageSize?: number, nextPageToken?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
/** | ||
@@ -68,3 +68,3 @@ * Get a list of collections | ||
*/ | ||
listCollections: (pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, blacklist?: string | undefined, whitelist?: string | undefined, keyword?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
listCollections: (pageSize?: number, cursor?: string, orderBy?: string, direction?: string, blacklist?: string, whitelist?: string, keyword?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
/** | ||
@@ -86,3 +86,3 @@ * Update collection | ||
*/ | ||
export declare const CollectionsApiFp: (configuration?: Configuration | undefined) => { | ||
export declare const CollectionsApiFp: (configuration?: Configuration) => { | ||
/** | ||
@@ -97,3 +97,3 @@ * Create collection | ||
*/ | ||
createCollection(iMXSignature: string, iMXTimestamp: string, createCollectionRequest: CreateCollectionRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Collection>>; | ||
createCollection(iMXSignature: string, iMXTimestamp: string, createCollectionRequest: CreateCollectionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Collection>>; | ||
/** | ||
@@ -106,3 +106,3 @@ * Get details of a collection at the given address | ||
*/ | ||
getCollection(address: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Collection>>; | ||
getCollection(address: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Collection>>; | ||
/** | ||
@@ -117,3 +117,3 @@ * Get a list of collection filters | ||
*/ | ||
listCollectionFilters(address: string, pageSize?: number | undefined, nextPageToken?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CollectionFilter>>; | ||
listCollectionFilters(address: string, pageSize?: number, nextPageToken?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CollectionFilter>>; | ||
/** | ||
@@ -132,3 +132,3 @@ * Get a list of collections | ||
*/ | ||
listCollections(pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, blacklist?: string | undefined, whitelist?: string | undefined, keyword?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ListCollectionsResponse>>; | ||
listCollections(pageSize?: number, cursor?: string, orderBy?: string, direction?: string, blacklist?: string, whitelist?: string, keyword?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListCollectionsResponse>>; | ||
/** | ||
@@ -144,3 +144,3 @@ * Update collection | ||
*/ | ||
updateCollection(address: string, iMXSignature: string, iMXTimestamp: string, updateCollectionRequest: UpdateCollectionRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Collection>>; | ||
updateCollection(address: string, iMXSignature: string, iMXTimestamp: string, updateCollectionRequest: UpdateCollectionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Collection>>; | ||
}; | ||
@@ -151,3 +151,3 @@ /** | ||
*/ | ||
export declare const CollectionsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => { | ||
export declare const CollectionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { | ||
/** | ||
@@ -180,3 +180,3 @@ * Create collection | ||
*/ | ||
listCollectionFilters(address: string, pageSize?: number | undefined, nextPageToken?: string | undefined, options?: any): AxiosPromise<CollectionFilter>; | ||
listCollectionFilters(address: string, pageSize?: number, nextPageToken?: string, options?: any): AxiosPromise<CollectionFilter>; | ||
/** | ||
@@ -195,3 +195,3 @@ * Get a list of collections | ||
*/ | ||
listCollections(pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, blacklist?: string | undefined, whitelist?: string | undefined, keyword?: string | undefined, options?: any): AxiosPromise<ListCollectionsResponse>; | ||
listCollections(pageSize?: number, cursor?: string, orderBy?: string, direction?: string, blacklist?: string, whitelist?: string, keyword?: string, options?: any): AxiosPromise<ListCollectionsResponse>; | ||
/** | ||
@@ -198,0 +198,0 @@ * Update collection |
@@ -23,3 +23,3 @@ /** | ||
*/ | ||
export declare const DepositsApiAxiosParamCreator: (configuration?: Configuration | undefined) => { | ||
export declare const DepositsApiAxiosParamCreator: (configuration?: Configuration) => { | ||
/** | ||
@@ -63,3 +63,3 @@ * Get details of a deposit with the given ID | ||
*/ | ||
listDeposits: (pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, user?: string | undefined, status?: string | undefined, updatedMinTimestamp?: string | undefined, updatedMaxTimestamp?: string | undefined, tokenType?: string | undefined, tokenId?: string | undefined, assetId?: string | undefined, tokenAddress?: string | undefined, tokenName?: string | undefined, minQuantity?: string | undefined, maxQuantity?: string | undefined, metadata?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
listDeposits: (pageSize?: number, cursor?: string, orderBy?: string, direction?: string, user?: string, status?: string, updatedMinTimestamp?: string, updatedMaxTimestamp?: string, tokenType?: string, tokenId?: string, assetId?: string, tokenAddress?: string, tokenName?: string, minQuantity?: string, maxQuantity?: string, metadata?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
}; | ||
@@ -70,3 +70,3 @@ /** | ||
*/ | ||
export declare const DepositsApiFp: (configuration?: Configuration | undefined) => { | ||
export declare const DepositsApiFp: (configuration?: Configuration) => { | ||
/** | ||
@@ -79,3 +79,3 @@ * Get details of a deposit with the given ID | ||
*/ | ||
getDeposit(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Deposit>>; | ||
getDeposit(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Deposit>>; | ||
/** | ||
@@ -88,3 +88,3 @@ * Gets details of a signable deposit | ||
*/ | ||
getSignableDeposit(getSignableDepositRequest: GetSignableDepositRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GetSignableDepositResponse>>; | ||
getSignableDeposit(getSignableDepositRequest: GetSignableDepositRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSignableDepositResponse>>; | ||
/** | ||
@@ -112,3 +112,3 @@ * Get a list of deposits | ||
*/ | ||
listDeposits(pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, user?: string | undefined, status?: string | undefined, updatedMinTimestamp?: string | undefined, updatedMaxTimestamp?: string | undefined, tokenType?: string | undefined, tokenId?: string | undefined, assetId?: string | undefined, tokenAddress?: string | undefined, tokenName?: string | undefined, minQuantity?: string | undefined, maxQuantity?: string | undefined, metadata?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ListDepositsResponse>>; | ||
listDeposits(pageSize?: number, cursor?: string, orderBy?: string, direction?: string, user?: string, status?: string, updatedMinTimestamp?: string, updatedMaxTimestamp?: 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<ListDepositsResponse>>; | ||
}; | ||
@@ -119,3 +119,3 @@ /** | ||
*/ | ||
export declare const DepositsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => { | ||
export declare const DepositsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { | ||
/** | ||
@@ -159,3 +159,3 @@ * Get details of a deposit with the given ID | ||
*/ | ||
listDeposits(pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, user?: string | undefined, status?: string | undefined, updatedMinTimestamp?: string | undefined, updatedMaxTimestamp?: string | undefined, tokenType?: string | undefined, tokenId?: string | undefined, assetId?: string | undefined, tokenAddress?: string | undefined, tokenName?: string | undefined, minQuantity?: string | undefined, maxQuantity?: string | undefined, metadata?: string | undefined, options?: any): AxiosPromise<ListDepositsResponse>; | ||
listDeposits(pageSize?: number, cursor?: string, orderBy?: string, direction?: string, user?: string, status?: string, updatedMinTimestamp?: string, updatedMaxTimestamp?: string, tokenType?: string, tokenId?: string, assetId?: string, tokenAddress?: string, tokenName?: string, minQuantity?: string, maxQuantity?: string, metadata?: string, options?: any): AxiosPromise<ListDepositsResponse>; | ||
}; | ||
@@ -162,0 +162,0 @@ /** |
@@ -21,3 +21,3 @@ /** | ||
*/ | ||
export declare const EncodingApiAxiosParamCreator: (configuration?: Configuration | undefined) => { | ||
export declare const EncodingApiAxiosParamCreator: (configuration?: Configuration) => { | ||
/** | ||
@@ -37,3 +37,3 @@ * Retrieves the Starkex Encoded format for a given asset so that it can be used as parameter for Starkex smart contracts | ||
*/ | ||
export declare const EncodingApiFp: (configuration?: Configuration | undefined) => { | ||
export declare const EncodingApiFp: (configuration?: Configuration) => { | ||
/** | ||
@@ -47,3 +47,3 @@ * Retrieves the Starkex Encoded format for a given asset so that it can be used as parameter for Starkex smart contracts | ||
*/ | ||
encodeAsset(assetType: string, encodeAssetRequest: EncodeAssetRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<EncodeAssetResponse>>; | ||
encodeAsset(assetType: string, encodeAssetRequest: EncodeAssetRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EncodeAssetResponse>>; | ||
}; | ||
@@ -54,3 +54,3 @@ /** | ||
*/ | ||
export declare const EncodingApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => { | ||
export declare const EncodingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { | ||
/** | ||
@@ -57,0 +57,0 @@ * Retrieves the Starkex Encoded format for a given asset so that it can be used as parameter for Starkex smart contracts |
@@ -23,3 +23,3 @@ /** | ||
*/ | ||
export declare const MetadataApiAxiosParamCreator: (configuration?: Configuration | undefined) => { | ||
export declare const MetadataApiAxiosParamCreator: (configuration?: Configuration) => { | ||
/** | ||
@@ -61,3 +61,3 @@ * Add metadata schema to collection | ||
*/ | ||
export declare const MetadataApiFp: (configuration?: Configuration | undefined) => { | ||
export declare const MetadataApiFp: (configuration?: Configuration) => { | ||
/** | ||
@@ -73,3 +73,3 @@ * Add metadata schema to collection | ||
*/ | ||
addMetadataSchemaToCollection(address: string, iMXSignature: string, iMXTimestamp: string, addMetadataSchemaToCollectionRequest: AddMetadataSchemaToCollectionRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SuccessResponse>>; | ||
addMetadataSchemaToCollection(address: string, iMXSignature: string, iMXTimestamp: string, addMetadataSchemaToCollectionRequest: AddMetadataSchemaToCollectionRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessResponse>>; | ||
/** | ||
@@ -82,3 +82,3 @@ * Get collection metadata schema | ||
*/ | ||
getMetadataSchema(address: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Array<MetadataSchemaProperty>>>; | ||
getMetadataSchema(address: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MetadataSchemaProperty>>>; | ||
/** | ||
@@ -95,3 +95,3 @@ * Update metadata schema by name | ||
*/ | ||
updateMetadataSchemaByName(address: string, name: string, iMXSignature: string, iMXTimestamp: string, metadataSchemaRequest: MetadataSchemaRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SuccessResponse>>; | ||
updateMetadataSchemaByName(address: string, name: string, iMXSignature: string, iMXTimestamp: string, metadataSchemaRequest: MetadataSchemaRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SuccessResponse>>; | ||
}; | ||
@@ -102,3 +102,3 @@ /** | ||
*/ | ||
export declare const MetadataApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => { | ||
export declare const MetadataApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { | ||
/** | ||
@@ -105,0 +105,0 @@ * Add metadata schema to collection |
@@ -24,3 +24,3 @@ /** | ||
*/ | ||
export declare const MintsApiAxiosParamCreator: (configuration?: Configuration | undefined) => { | ||
export declare const MintsApiAxiosParamCreator: (configuration?: Configuration) => { | ||
/** | ||
@@ -65,3 +65,3 @@ * Get details of a mint with the given ID | ||
*/ | ||
listMints: (pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, user?: string | undefined, status?: string | undefined, updatedMinTimestamp?: string | undefined, updatedMaxTimestamp?: string | undefined, tokenType?: string | undefined, tokenId?: string | undefined, assetId?: string | undefined, tokenName?: string | undefined, tokenAddress?: string | undefined, minQuantity?: string | undefined, maxQuantity?: string | undefined, metadata?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
listMints: (pageSize?: number, cursor?: string, orderBy?: string, direction?: string, user?: string, status?: string, updatedMinTimestamp?: string, updatedMaxTimestamp?: string, tokenType?: string, tokenId?: string, assetId?: string, tokenName?: string, tokenAddress?: string, minQuantity?: string, maxQuantity?: string, metadata?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
/** | ||
@@ -80,3 +80,3 @@ * Mint tokens in a batch with fees | ||
*/ | ||
export declare const MintsApiFp: (configuration?: Configuration | undefined) => { | ||
export declare const MintsApiFp: (configuration?: Configuration) => { | ||
/** | ||
@@ -89,3 +89,3 @@ * Get details of a mint with the given ID | ||
*/ | ||
getMint(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Mint>>; | ||
getMint(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Mint>>; | ||
/** | ||
@@ -99,3 +99,3 @@ * Get details of a mintable token with the given token address and token ID | ||
*/ | ||
getMintableTokenDetailsByClientTokenId(tokenAddress: string, tokenId: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MintableTokenDetails>>; | ||
getMintableTokenDetailsByClientTokenId(tokenAddress: string, tokenId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MintableTokenDetails>>; | ||
/** | ||
@@ -123,3 +123,3 @@ * Get a list of mints | ||
*/ | ||
listMints(pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, user?: string | undefined, status?: string | undefined, updatedMinTimestamp?: string | undefined, updatedMaxTimestamp?: string | undefined, tokenType?: string | undefined, tokenId?: string | undefined, assetId?: string | undefined, tokenName?: string | undefined, tokenAddress?: string | undefined, minQuantity?: string | undefined, maxQuantity?: string | undefined, metadata?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ListMintsResponse>>; | ||
listMints(pageSize?: number, cursor?: string, orderBy?: string, direction?: string, user?: string, status?: string, updatedMinTimestamp?: string, updatedMaxTimestamp?: string, tokenType?: string, tokenId?: string, assetId?: string, tokenName?: string, tokenAddress?: string, minQuantity?: string, maxQuantity?: string, metadata?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListMintsResponse>>; | ||
/** | ||
@@ -132,3 +132,3 @@ * Mint tokens in a batch with fees | ||
*/ | ||
mintTokens(mintTokensRequestV2: Array<MintRequest>, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<MintTokensResponse>>; | ||
mintTokens(mintTokensRequestV2: Array<MintRequest>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MintTokensResponse>>; | ||
}; | ||
@@ -139,3 +139,3 @@ /** | ||
*/ | ||
export declare const MintsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => { | ||
export declare const MintsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { | ||
/** | ||
@@ -180,3 +180,3 @@ * Get details of a mint with the given ID | ||
*/ | ||
listMints(pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, user?: string | undefined, status?: string | undefined, updatedMinTimestamp?: string | undefined, updatedMaxTimestamp?: string | undefined, tokenType?: string | undefined, tokenId?: string | undefined, assetId?: string | undefined, tokenName?: string | undefined, tokenAddress?: string | undefined, minQuantity?: string | undefined, maxQuantity?: string | undefined, metadata?: string | undefined, options?: any): AxiosPromise<ListMintsResponse>; | ||
listMints(pageSize?: number, cursor?: string, orderBy?: string, direction?: string, user?: string, status?: string, updatedMinTimestamp?: string, updatedMaxTimestamp?: string, tokenType?: string, tokenId?: string, assetId?: string, tokenName?: string, tokenAddress?: string, minQuantity?: string, maxQuantity?: string, metadata?: string, options?: any): AxiosPromise<ListMintsResponse>; | ||
/** | ||
@@ -183,0 +183,0 @@ * Mint tokens in a batch with fees |
@@ -29,3 +29,3 @@ /** | ||
*/ | ||
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration | undefined) => { | ||
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => { | ||
/** | ||
@@ -41,3 +41,3 @@ * Cancel an order | ||
*/ | ||
cancelOrder: (id: string, cancelOrderRequest: CancelOrderRequest, xImxEthAddress?: string | undefined, xImxEthSignature?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
cancelOrder: (id: string, cancelOrderRequest: CancelOrderRequest, xImxEthAddress?: string, xImxEthSignature?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
/** | ||
@@ -52,3 +52,3 @@ * Create an order | ||
*/ | ||
createOrder: (createOrderRequest: CreateOrderRequest, xImxEthAddress?: string | undefined, xImxEthSignature?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
createOrder: (createOrderRequest: CreateOrderRequest, xImxEthAddress?: string, xImxEthSignature?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
/** | ||
@@ -64,3 +64,3 @@ * Get details of an order with the given ID | ||
*/ | ||
getOrder: (id: string, includeFees?: boolean | undefined, auxiliaryFeePercentages?: string | undefined, auxiliaryFeeRecipients?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
getOrder: (id: string, includeFees?: boolean, auxiliaryFeePercentages?: string, auxiliaryFeeRecipients?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
/** | ||
@@ -116,3 +116,3 @@ * Get details a signable cancel order | ||
*/ | ||
listOrders: (pageSize?: number | undefined, cursor?: string | undefined, orderBy?: "updated_at" | "created_at" | "expired_at" | "sell_quantity" | "buy_quantity" | "buy_quantity_with_fees" | undefined, direction?: string | undefined, user?: string | undefined, status?: "active" | "filled" | "cancelled" | "expired" | "inactive" | undefined, minTimestamp?: string | undefined, maxTimestamp?: string | undefined, updatedMinTimestamp?: string | undefined, updatedMaxTimestamp?: string | undefined, buyTokenType?: string | undefined, buyTokenId?: string | undefined, buyAssetId?: string | undefined, buyTokenAddress?: string | undefined, buyTokenName?: string | undefined, buyMinQuantity?: string | undefined, buyMaxQuantity?: string | undefined, buyMetadata?: string | undefined, sellTokenType?: string | undefined, sellTokenId?: string | undefined, sellAssetId?: string | undefined, sellTokenAddress?: string | undefined, sellTokenName?: string | undefined, sellMinQuantity?: string | undefined, sellMaxQuantity?: string | undefined, sellMetadata?: string | undefined, auxiliaryFeePercentages?: string | undefined, auxiliaryFeeRecipients?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
listOrders: (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, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
}; | ||
@@ -123,3 +123,3 @@ /** | ||
*/ | ||
export declare const OrdersApiFp: (configuration?: Configuration | undefined) => { | ||
export declare const OrdersApiFp: (configuration?: Configuration) => { | ||
/** | ||
@@ -135,3 +135,3 @@ * Cancel an order | ||
*/ | ||
cancelOrder(id: string, cancelOrderRequest: CancelOrderRequest, xImxEthAddress?: string | undefined, xImxEthSignature?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CancelOrderResponse>>; | ||
cancelOrder(id: string, cancelOrderRequest: CancelOrderRequest, xImxEthAddress?: string, xImxEthSignature?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CancelOrderResponse>>; | ||
/** | ||
@@ -146,3 +146,3 @@ * Create an order | ||
*/ | ||
createOrder(createOrderRequest: CreateOrderRequest, xImxEthAddress?: string | undefined, xImxEthSignature?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreateOrderResponse>>; | ||
createOrder(createOrderRequest: CreateOrderRequest, xImxEthAddress?: string, xImxEthSignature?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateOrderResponse>>; | ||
/** | ||
@@ -158,3 +158,3 @@ * Get details of an order with the given ID | ||
*/ | ||
getOrder(id: string, includeFees?: boolean | undefined, auxiliaryFeePercentages?: string | undefined, auxiliaryFeeRecipients?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Order>>; | ||
getOrder(id: string, includeFees?: boolean, auxiliaryFeePercentages?: string, auxiliaryFeeRecipients?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Order>>; | ||
/** | ||
@@ -167,3 +167,3 @@ * Get details a signable cancel order | ||
*/ | ||
getSignableCancelOrder(getSignableCancelOrderRequest: GetSignableCancelOrderRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GetSignableCancelOrderResponse>>; | ||
getSignableCancelOrder(getSignableCancelOrderRequest: GetSignableCancelOrderRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSignableCancelOrderResponse>>; | ||
/** | ||
@@ -176,3 +176,3 @@ * Get details a signable order V3 | ||
*/ | ||
getSignableOrder(getSignableOrderRequestV3: GetSignableOrderRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GetSignableOrderResponse>>; | ||
getSignableOrder(getSignableOrderRequestV3: GetSignableOrderRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSignableOrderResponse>>; | ||
/** | ||
@@ -212,3 +212,3 @@ * Get a list of orders | ||
*/ | ||
listOrders(pageSize?: number | undefined, cursor?: string | undefined, orderBy?: "updated_at" | "created_at" | "expired_at" | "sell_quantity" | "buy_quantity" | "buy_quantity_with_fees" | undefined, direction?: string | undefined, user?: string | undefined, status?: "active" | "filled" | "cancelled" | "expired" | "inactive" | undefined, minTimestamp?: string | undefined, maxTimestamp?: string | undefined, updatedMinTimestamp?: string | undefined, updatedMaxTimestamp?: string | undefined, buyTokenType?: string | undefined, buyTokenId?: string | undefined, buyAssetId?: string | undefined, buyTokenAddress?: string | undefined, buyTokenName?: string | undefined, buyMinQuantity?: string | undefined, buyMaxQuantity?: string | undefined, buyMetadata?: string | undefined, sellTokenType?: string | undefined, sellTokenId?: string | undefined, sellAssetId?: string | undefined, sellTokenAddress?: string | undefined, sellTokenName?: string | undefined, sellMinQuantity?: string | undefined, sellMaxQuantity?: string | undefined, sellMetadata?: string | undefined, auxiliaryFeePercentages?: string | undefined, auxiliaryFeeRecipients?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ListOrdersResponse>>; | ||
listOrders(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, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListOrdersResponse>>; | ||
}; | ||
@@ -219,3 +219,3 @@ /** | ||
*/ | ||
export declare const OrdersApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => { | ||
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { | ||
/** | ||
@@ -231,3 +231,3 @@ * Cancel an order | ||
*/ | ||
cancelOrder(id: string, cancelOrderRequest: CancelOrderRequest, xImxEthAddress?: string | undefined, xImxEthSignature?: string | undefined, options?: any): AxiosPromise<CancelOrderResponse>; | ||
cancelOrder(id: string, cancelOrderRequest: CancelOrderRequest, xImxEthAddress?: string, xImxEthSignature?: string, options?: any): AxiosPromise<CancelOrderResponse>; | ||
/** | ||
@@ -242,3 +242,3 @@ * Create an order | ||
*/ | ||
createOrder(createOrderRequest: CreateOrderRequest, xImxEthAddress?: string | undefined, xImxEthSignature?: string | undefined, options?: any): AxiosPromise<CreateOrderResponse>; | ||
createOrder(createOrderRequest: CreateOrderRequest, xImxEthAddress?: string, xImxEthSignature?: string, options?: any): AxiosPromise<CreateOrderResponse>; | ||
/** | ||
@@ -254,3 +254,3 @@ * Get details of an order with the given ID | ||
*/ | ||
getOrder(id: string, includeFees?: boolean | undefined, auxiliaryFeePercentages?: string | undefined, auxiliaryFeeRecipients?: string | undefined, options?: any): AxiosPromise<Order>; | ||
getOrder(id: string, includeFees?: boolean, auxiliaryFeePercentages?: string, auxiliaryFeeRecipients?: string, options?: any): AxiosPromise<Order>; | ||
/** | ||
@@ -306,3 +306,3 @@ * Get details a signable cancel order | ||
*/ | ||
listOrders(pageSize?: number | undefined, cursor?: string | undefined, orderBy?: "updated_at" | "created_at" | "expired_at" | "sell_quantity" | "buy_quantity" | "buy_quantity_with_fees" | undefined, direction?: string | undefined, user?: string | undefined, status?: "active" | "filled" | "cancelled" | "expired" | "inactive" | undefined, minTimestamp?: string | undefined, maxTimestamp?: string | undefined, updatedMinTimestamp?: string | undefined, updatedMaxTimestamp?: string | undefined, buyTokenType?: string | undefined, buyTokenId?: string | undefined, buyAssetId?: string | undefined, buyTokenAddress?: string | undefined, buyTokenName?: string | undefined, buyMinQuantity?: string | undefined, buyMaxQuantity?: string | undefined, buyMetadata?: string | undefined, sellTokenType?: string | undefined, sellTokenId?: string | undefined, sellAssetId?: string | undefined, sellTokenAddress?: string | undefined, sellTokenName?: string | undefined, sellMinQuantity?: string | undefined, sellMaxQuantity?: string | undefined, sellMetadata?: string | undefined, auxiliaryFeePercentages?: string | undefined, auxiliaryFeeRecipients?: string | undefined, options?: any): AxiosPromise<ListOrdersResponse>; | ||
listOrders(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, options?: any): AxiosPromise<ListOrdersResponse>; | ||
}; | ||
@@ -309,0 +309,0 @@ /** |
@@ -23,3 +23,3 @@ /** | ||
*/ | ||
export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuration | undefined) => { | ||
export declare const ProjectsApiAxiosParamCreator: (configuration?: Configuration) => { | ||
/** | ||
@@ -57,3 +57,3 @@ * Create a project | ||
*/ | ||
getProjects: (iMXSignature: string, iMXTimestamp: string, pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
getProjects: (iMXSignature: string, iMXTimestamp: string, pageSize?: number, cursor?: string, orderBy?: string, direction?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
}; | ||
@@ -64,3 +64,3 @@ /** | ||
*/ | ||
export declare const ProjectsApiFp: (configuration?: Configuration | undefined) => { | ||
export declare const ProjectsApiFp: (configuration?: Configuration) => { | ||
/** | ||
@@ -75,3 +75,3 @@ * Create a project | ||
*/ | ||
createProject(iMXSignature: string, iMXTimestamp: string, createProjectRequest: CreateProjectRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreateProjectResponse>>; | ||
createProject(iMXSignature: string, iMXTimestamp: string, createProjectRequest: CreateProjectRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateProjectResponse>>; | ||
/** | ||
@@ -86,3 +86,3 @@ * Get a project | ||
*/ | ||
getProject(id: string, iMXSignature: string, iMXTimestamp: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Project>>; | ||
getProject(id: string, iMXSignature: string, iMXTimestamp: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Project>>; | ||
/** | ||
@@ -100,3 +100,3 @@ * Get projects | ||
*/ | ||
getProjects(iMXSignature: string, iMXTimestamp: string, pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GetProjectsResponse>>; | ||
getProjects(iMXSignature: string, iMXTimestamp: string, pageSize?: number, cursor?: string, orderBy?: string, direction?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetProjectsResponse>>; | ||
}; | ||
@@ -107,3 +107,3 @@ /** | ||
*/ | ||
export declare const ProjectsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => { | ||
export declare const ProjectsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { | ||
/** | ||
@@ -141,3 +141,3 @@ * Create a project | ||
*/ | ||
getProjects(iMXSignature: string, iMXTimestamp: string, pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, options?: any): AxiosPromise<GetProjectsResponse>; | ||
getProjects(iMXSignature: string, iMXTimestamp: string, pageSize?: number, cursor?: string, orderBy?: string, direction?: string, options?: any): AxiosPromise<GetProjectsResponse>; | ||
}; | ||
@@ -144,0 +144,0 @@ /** |
@@ -21,3 +21,3 @@ /** | ||
*/ | ||
export declare const TokensApiAxiosParamCreator: (configuration?: Configuration | undefined) => { | ||
export declare const TokensApiAxiosParamCreator: (configuration?: Configuration) => { | ||
/** | ||
@@ -39,3 +39,3 @@ * Get details of a token | ||
*/ | ||
listTokens: (address?: string | undefined, symbols?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
listTokens: (address?: string, symbols?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
}; | ||
@@ -46,3 +46,3 @@ /** | ||
*/ | ||
export declare const TokensApiFp: (configuration?: Configuration | undefined) => { | ||
export declare const TokensApiFp: (configuration?: Configuration) => { | ||
/** | ||
@@ -55,3 +55,3 @@ * Get details of a token | ||
*/ | ||
getToken(address: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TokenDetails>>; | ||
getToken(address: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TokenDetails>>; | ||
/** | ||
@@ -65,3 +65,3 @@ * Get a list of tokens | ||
*/ | ||
listTokens(address?: string | undefined, symbols?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ListTokensResponse>>; | ||
listTokens(address?: string, symbols?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListTokensResponse>>; | ||
}; | ||
@@ -72,3 +72,3 @@ /** | ||
*/ | ||
export declare const TokensApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => { | ||
export declare const TokensApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { | ||
/** | ||
@@ -90,3 +90,3 @@ * Get details of a token | ||
*/ | ||
listTokens(address?: string | undefined, symbols?: string | undefined, options?: any): AxiosPromise<ListTokensResponse>; | ||
listTokens(address?: string, symbols?: string, options?: any): AxiosPromise<ListTokensResponse>; | ||
}; | ||
@@ -93,0 +93,0 @@ /** |
@@ -25,3 +25,3 @@ /** | ||
*/ | ||
export declare const TradesApiAxiosParamCreator: (configuration?: Configuration | undefined) => { | ||
export declare const TradesApiAxiosParamCreator: (configuration?: Configuration) => { | ||
/** | ||
@@ -36,3 +36,3 @@ * Create a Trade | ||
*/ | ||
createTrade: (createTradeRequest: CreateTradeRequestV1, xImxEthAddress?: string | undefined, xImxEthSignature?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
createTrade: (createTradeRequest: CreateTradeRequestV1, xImxEthAddress?: string, xImxEthSignature?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
/** | ||
@@ -72,3 +72,3 @@ * Get details a signable trade V3 | ||
*/ | ||
listTrades: (partyATokenType?: string | undefined, partyATokenAddress?: string | undefined, partyATokenId?: string | undefined, partyBTokenType?: string | undefined, partyBTokenAddress?: string | undefined, partyBTokenId?: string | undefined, pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, minTimestamp?: string | undefined, maxTimestamp?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
listTrades: (partyATokenType?: string, partyATokenAddress?: string, partyATokenId?: string, partyBTokenType?: string, partyBTokenAddress?: string, partyBTokenId?: string, pageSize?: number, cursor?: string, orderBy?: string, direction?: string, minTimestamp?: string, maxTimestamp?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
}; | ||
@@ -79,3 +79,3 @@ /** | ||
*/ | ||
export declare const TradesApiFp: (configuration?: Configuration | undefined) => { | ||
export declare const TradesApiFp: (configuration?: Configuration) => { | ||
/** | ||
@@ -90,3 +90,3 @@ * Create a Trade | ||
*/ | ||
createTrade(createTradeRequest: CreateTradeRequestV1, xImxEthAddress?: string | undefined, xImxEthSignature?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreateTradeResponse>>; | ||
createTrade(createTradeRequest: CreateTradeRequestV1, xImxEthAddress?: string, xImxEthSignature?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateTradeResponse>>; | ||
/** | ||
@@ -99,3 +99,3 @@ * Get details a signable trade V3 | ||
*/ | ||
getSignableTrade(getSignableTradeRequest: GetSignableTradeRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GetSignableTradeResponse>>; | ||
getSignableTrade(getSignableTradeRequest: GetSignableTradeRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSignableTradeResponse>>; | ||
/** | ||
@@ -108,3 +108,3 @@ * Get details of a trade with the given ID | ||
*/ | ||
getTrade(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Trade>>; | ||
getTrade(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Trade>>; | ||
/** | ||
@@ -128,3 +128,3 @@ * Get a list of trades | ||
*/ | ||
listTrades(partyATokenType?: string | undefined, partyATokenAddress?: string | undefined, partyATokenId?: string | undefined, partyBTokenType?: string | undefined, partyBTokenAddress?: string | undefined, partyBTokenId?: string | undefined, pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, minTimestamp?: string | undefined, maxTimestamp?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ListTradesResponse>>; | ||
listTrades(partyATokenType?: string, partyATokenAddress?: string, partyATokenId?: string, partyBTokenType?: string, partyBTokenAddress?: string, partyBTokenId?: string, pageSize?: number, cursor?: string, orderBy?: string, direction?: string, minTimestamp?: string, maxTimestamp?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListTradesResponse>>; | ||
}; | ||
@@ -135,3 +135,3 @@ /** | ||
*/ | ||
export declare const TradesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => { | ||
export declare const TradesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { | ||
/** | ||
@@ -146,3 +146,3 @@ * Create a Trade | ||
*/ | ||
createTrade(createTradeRequest: CreateTradeRequestV1, xImxEthAddress?: string | undefined, xImxEthSignature?: string | undefined, options?: any): AxiosPromise<CreateTradeResponse>; | ||
createTrade(createTradeRequest: CreateTradeRequestV1, xImxEthAddress?: string, xImxEthSignature?: string, options?: any): AxiosPromise<CreateTradeResponse>; | ||
/** | ||
@@ -182,3 +182,3 @@ * Get details a signable trade V3 | ||
*/ | ||
listTrades(partyATokenType?: string | undefined, partyATokenAddress?: string | undefined, partyATokenId?: string | undefined, partyBTokenType?: string | undefined, partyBTokenAddress?: string | undefined, partyBTokenId?: string | undefined, pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, minTimestamp?: string | undefined, maxTimestamp?: string | undefined, options?: any): AxiosPromise<ListTradesResponse>; | ||
listTrades(partyATokenType?: string, partyATokenAddress?: string, partyATokenId?: string, partyBTokenType?: string, partyBTokenAddress?: string, partyBTokenId?: string, pageSize?: number, cursor?: string, orderBy?: string, direction?: string, minTimestamp?: string, maxTimestamp?: string, options?: any): AxiosPromise<ListTradesResponse>; | ||
}; | ||
@@ -185,0 +185,0 @@ /** |
@@ -29,3 +29,3 @@ /** | ||
*/ | ||
export declare const TransfersApiAxiosParamCreator: (configuration?: Configuration | undefined) => { | ||
export declare const TransfersApiAxiosParamCreator: (configuration?: Configuration) => { | ||
/** | ||
@@ -40,3 +40,3 @@ * Create a new transfer request | ||
*/ | ||
createTransfer: (createTransferRequestV2: CreateTransferRequest, xImxEthAddress?: string | undefined, xImxEthSignature?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
createTransfer: (createTransferRequestV2: CreateTransferRequest, xImxEthAddress?: string, xImxEthSignature?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
/** | ||
@@ -51,3 +51,3 @@ * Create a new transfer request | ||
*/ | ||
createTransferV1: (createTransferRequest: CreateTransferRequestV1, xImxEthAddress?: string | undefined, xImxEthSignature?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
createTransferV1: (createTransferRequest: CreateTransferRequestV1, xImxEthAddress?: string, xImxEthSignature?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
/** | ||
@@ -100,3 +100,3 @@ * Gets bulk details of a signable transfer | ||
*/ | ||
listTransfers: (pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, user?: string | undefined, receiver?: string | undefined, status?: "success" | "failure" | undefined, minTimestamp?: string | undefined, maxTimestamp?: string | undefined, tokenType?: string | undefined, tokenId?: string | undefined, assetId?: string | undefined, tokenAddress?: string | undefined, tokenName?: string | undefined, minQuantity?: string | undefined, maxQuantity?: string | undefined, metadata?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
listTransfers: (pageSize?: number, cursor?: string, orderBy?: string, direction?: string, user?: string, receiver?: string, status?: 'success' | 'failure', minTimestamp?: string, maxTimestamp?: string, tokenType?: string, tokenId?: string, assetId?: string, tokenAddress?: string, tokenName?: string, minQuantity?: string, maxQuantity?: string, metadata?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
}; | ||
@@ -107,3 +107,3 @@ /** | ||
*/ | ||
export declare const TransfersApiFp: (configuration?: Configuration | undefined) => { | ||
export declare const TransfersApiFp: (configuration?: Configuration) => { | ||
/** | ||
@@ -118,3 +118,3 @@ * Create a new transfer request | ||
*/ | ||
createTransfer(createTransferRequestV2: CreateTransferRequest, xImxEthAddress?: string | undefined, xImxEthSignature?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreateTransferResponse>>; | ||
createTransfer(createTransferRequestV2: CreateTransferRequest, xImxEthAddress?: string, xImxEthSignature?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateTransferResponse>>; | ||
/** | ||
@@ -129,3 +129,3 @@ * Create a new transfer request | ||
*/ | ||
createTransferV1(createTransferRequest: CreateTransferRequestV1, xImxEthAddress?: string | undefined, xImxEthSignature?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreateTransferResponseV1>>; | ||
createTransferV1(createTransferRequest: CreateTransferRequestV1, xImxEthAddress?: string, xImxEthSignature?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateTransferResponseV1>>; | ||
/** | ||
@@ -138,3 +138,3 @@ * Gets bulk details of a signable transfer | ||
*/ | ||
getSignableTransfer(getSignableTransferRequestV2: GetSignableTransferRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GetSignableTransferResponse>>; | ||
getSignableTransfer(getSignableTransferRequestV2: GetSignableTransferRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSignableTransferResponse>>; | ||
/** | ||
@@ -147,3 +147,3 @@ * Gets details of a signable transfer | ||
*/ | ||
getSignableTransferV1(getSignableTransferRequest: GetSignableTransferRequestV1, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GetSignableTransferResponseV1>>; | ||
getSignableTransferV1(getSignableTransferRequest: GetSignableTransferRequestV1, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSignableTransferResponseV1>>; | ||
/** | ||
@@ -156,3 +156,3 @@ * Get details of a transfer with the given ID | ||
*/ | ||
getTransfer(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Transfer>>; | ||
getTransfer(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Transfer>>; | ||
/** | ||
@@ -181,3 +181,3 @@ * Get a list of transfers | ||
*/ | ||
listTransfers(pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, user?: string | undefined, receiver?: string | undefined, status?: "success" | "failure" | undefined, minTimestamp?: string | undefined, maxTimestamp?: string | undefined, tokenType?: string | undefined, tokenId?: string | undefined, assetId?: string | undefined, tokenAddress?: string | undefined, tokenName?: string | undefined, minQuantity?: string | undefined, maxQuantity?: string | undefined, metadata?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ListTransfersResponse>>; | ||
listTransfers(pageSize?: number, cursor?: string, orderBy?: string, direction?: string, user?: string, receiver?: string, status?: 'success' | 'failure', 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<ListTransfersResponse>>; | ||
}; | ||
@@ -188,3 +188,3 @@ /** | ||
*/ | ||
export declare const TransfersApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => { | ||
export declare const TransfersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { | ||
/** | ||
@@ -199,3 +199,3 @@ * Create a new transfer request | ||
*/ | ||
createTransfer(createTransferRequestV2: CreateTransferRequest, xImxEthAddress?: string | undefined, xImxEthSignature?: string | undefined, options?: any): AxiosPromise<CreateTransferResponse>; | ||
createTransfer(createTransferRequestV2: CreateTransferRequest, xImxEthAddress?: string, xImxEthSignature?: string, options?: any): AxiosPromise<CreateTransferResponse>; | ||
/** | ||
@@ -210,3 +210,3 @@ * Create a new transfer request | ||
*/ | ||
createTransferV1(createTransferRequest: CreateTransferRequestV1, xImxEthAddress?: string | undefined, xImxEthSignature?: string | undefined, options?: any): AxiosPromise<CreateTransferResponseV1>; | ||
createTransferV1(createTransferRequest: CreateTransferRequestV1, xImxEthAddress?: string, xImxEthSignature?: string, options?: any): AxiosPromise<CreateTransferResponseV1>; | ||
/** | ||
@@ -259,3 +259,3 @@ * Gets bulk details of a signable transfer | ||
*/ | ||
listTransfers(pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, user?: string | undefined, receiver?: string | undefined, status?: "success" | "failure" | undefined, minTimestamp?: string | undefined, maxTimestamp?: string | undefined, tokenType?: string | undefined, tokenId?: string | undefined, assetId?: string | undefined, tokenAddress?: string | undefined, tokenName?: string | undefined, minQuantity?: string | undefined, maxQuantity?: string | undefined, metadata?: string | undefined, options?: any): AxiosPromise<ListTransfersResponse>; | ||
listTransfers(pageSize?: number, cursor?: string, orderBy?: string, direction?: string, user?: string, receiver?: string, status?: 'success' | 'failure', minTimestamp?: string, maxTimestamp?: string, tokenType?: string, tokenId?: string, assetId?: string, tokenAddress?: string, tokenName?: string, minQuantity?: string, maxQuantity?: string, metadata?: string, options?: any): AxiosPromise<ListTransfersResponse>; | ||
}; | ||
@@ -262,0 +262,0 @@ /** |
@@ -25,3 +25,3 @@ /** | ||
*/ | ||
export declare const UsersApiAxiosParamCreator: (configuration?: Configuration | undefined) => { | ||
export declare const UsersApiAxiosParamCreator: (configuration?: Configuration) => { | ||
/** | ||
@@ -64,3 +64,3 @@ * Get operator signature to allow clients to register the user | ||
*/ | ||
export declare const UsersApiFp: (configuration?: Configuration | undefined) => { | ||
export declare const UsersApiFp: (configuration?: Configuration) => { | ||
/** | ||
@@ -73,3 +73,3 @@ * Get operator signature to allow clients to register the user | ||
*/ | ||
getSignableRegistration(getSignableRegistrationRequest: GetSignableRegistrationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GetSignableRegistrationResponse>>; | ||
getSignableRegistration(getSignableRegistrationRequest: GetSignableRegistrationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSignableRegistrationResponse>>; | ||
/** | ||
@@ -82,3 +82,3 @@ * Get encoded details to allow clients to register the user offchain | ||
*/ | ||
getSignableRegistrationOffchain(getSignableRegistrationRequest: GetSignableRegistrationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GetSignableRegistrationOffchainResponse>>; | ||
getSignableRegistrationOffchain(getSignableRegistrationRequest: GetSignableRegistrationRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSignableRegistrationOffchainResponse>>; | ||
/** | ||
@@ -91,3 +91,3 @@ * Get stark keys for a registered user | ||
*/ | ||
getUsers(user: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GetUsersApiResponse>>; | ||
getUsers(user: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetUsersApiResponse>>; | ||
/** | ||
@@ -100,3 +100,3 @@ * Registers a user | ||
*/ | ||
registerUser(registerUserRequest: RegisterUserRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<RegisterUserResponse>>; | ||
registerUser(registerUserRequest: RegisterUserRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegisterUserResponse>>; | ||
}; | ||
@@ -107,3 +107,3 @@ /** | ||
*/ | ||
export declare const UsersApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => { | ||
export declare const UsersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { | ||
/** | ||
@@ -110,0 +110,0 @@ * Get operator signature to allow clients to register the user |
@@ -25,3 +25,3 @@ /** | ||
*/ | ||
export declare const WithdrawalsApiAxiosParamCreator: (configuration?: Configuration | undefined) => { | ||
export declare const WithdrawalsApiAxiosParamCreator: (configuration?: Configuration) => { | ||
/** | ||
@@ -36,3 +36,3 @@ * Creates a withdrawal | ||
*/ | ||
createWithdrawal: (createWithdrawalRequest: CreateWithdrawalRequest, xImxEthAddress?: string | undefined, xImxEthSignature?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
createWithdrawal: (createWithdrawalRequest: CreateWithdrawalRequest, xImxEthAddress?: string, xImxEthSignature?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
/** | ||
@@ -78,3 +78,3 @@ * Gets details of a signable withdrawal | ||
*/ | ||
listWithdrawals: (withdrawnToWallet?: boolean | undefined, rollupStatus?: string | undefined, pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, user?: string | undefined, status?: string | undefined, minTimestamp?: string | undefined, maxTimestamp?: string | undefined, tokenType?: string | undefined, tokenId?: string | undefined, assetId?: string | undefined, tokenAddress?: string | undefined, tokenName?: string | undefined, minQuantity?: string | undefined, maxQuantity?: string | undefined, metadata?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>; | ||
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>; | ||
}; | ||
@@ -85,3 +85,3 @@ /** | ||
*/ | ||
export declare const WithdrawalsApiFp: (configuration?: Configuration | undefined) => { | ||
export declare const WithdrawalsApiFp: (configuration?: Configuration) => { | ||
/** | ||
@@ -96,3 +96,3 @@ * Creates a withdrawal | ||
*/ | ||
createWithdrawal(createWithdrawalRequest: CreateWithdrawalRequest, xImxEthAddress?: string | undefined, xImxEthSignature?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreateWithdrawalResponse>>; | ||
createWithdrawal(createWithdrawalRequest: CreateWithdrawalRequest, xImxEthAddress?: string, xImxEthSignature?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateWithdrawalResponse>>; | ||
/** | ||
@@ -105,3 +105,3 @@ * Gets details of a signable withdrawal | ||
*/ | ||
getSignableWithdrawal(getSignableWithdrawalRequest: GetSignableWithdrawalRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GetSignableWithdrawalResponse>>; | ||
getSignableWithdrawal(getSignableWithdrawalRequest: GetSignableWithdrawalRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSignableWithdrawalResponse>>; | ||
/** | ||
@@ -114,3 +114,3 @@ * Gets details of withdrawal with the given ID | ||
*/ | ||
getWithdrawal(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Withdrawal>>; | ||
getWithdrawal(id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Withdrawal>>; | ||
/** | ||
@@ -140,3 +140,3 @@ * Get a list of withdrawals | ||
*/ | ||
listWithdrawals(withdrawnToWallet?: boolean | undefined, rollupStatus?: string | undefined, pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, user?: string | undefined, status?: string | undefined, minTimestamp?: string | undefined, maxTimestamp?: string | undefined, tokenType?: string | undefined, tokenId?: string | undefined, assetId?: string | undefined, tokenAddress?: string | undefined, tokenName?: string | undefined, minQuantity?: string | undefined, maxQuantity?: string | undefined, metadata?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ListWithdrawalsResponse>>; | ||
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>>; | ||
}; | ||
@@ -147,3 +147,3 @@ /** | ||
*/ | ||
export declare const WithdrawalsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => { | ||
export declare const WithdrawalsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { | ||
/** | ||
@@ -158,3 +158,3 @@ * Creates a withdrawal | ||
*/ | ||
createWithdrawal(createWithdrawalRequest: CreateWithdrawalRequest, xImxEthAddress?: string | undefined, xImxEthSignature?: string | undefined, options?: any): AxiosPromise<CreateWithdrawalResponse>; | ||
createWithdrawal(createWithdrawalRequest: CreateWithdrawalRequest, xImxEthAddress?: string, xImxEthSignature?: string, options?: any): AxiosPromise<CreateWithdrawalResponse>; | ||
/** | ||
@@ -200,3 +200,3 @@ * Gets details of a signable withdrawal | ||
*/ | ||
listWithdrawals(withdrawnToWallet?: boolean | undefined, rollupStatus?: string | undefined, pageSize?: number | undefined, cursor?: string | undefined, orderBy?: string | undefined, direction?: string | undefined, user?: string | undefined, status?: string | undefined, minTimestamp?: string | undefined, maxTimestamp?: string | undefined, tokenType?: string | undefined, tokenId?: string | undefined, assetId?: string | undefined, tokenAddress?: string | undefined, tokenName?: string | undefined, minQuantity?: string | undefined, maxQuantity?: string | undefined, metadata?: string | undefined, options?: any): AxiosPromise<ListWithdrawalsResponse>; | ||
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>; | ||
}; | ||
@@ -203,0 +203,0 @@ /** |
@@ -23,11 +23,11 @@ import { Signer } from '@ethersproject/abstract-signer'; | ||
getBurn(request: TransfersApiGetTransferRequest): Promise<import("axios").AxiosResponse<import("../api").Transfer, any>>; | ||
deposit(signer: Signer, deposit: TokenDeposit): Promise<import("@ethersproject/providers").TransactionResponse>; | ||
depositEth(signer: Signer, deposit: ETHDeposit): Promise<import("@ethersproject/providers").TransactionResponse>; | ||
depositERC20(signer: Signer, deposit: ERC20Deposit): Promise<import("@ethersproject/providers").TransactionResponse>; | ||
depositERC721(signer: Signer, deposit: ERC721Deposit): Promise<import("@ethersproject/providers").TransactionResponse>; | ||
deposit(signer: Signer, deposit: TokenDeposit): Promise<import("@ethersproject/abstract-provider").TransactionResponse>; | ||
depositEth(signer: Signer, deposit: ETHDeposit): Promise<import("@ethersproject/abstract-provider").TransactionResponse>; | ||
depositERC20(signer: Signer, deposit: ERC20Deposit): Promise<import("@ethersproject/abstract-provider").TransactionResponse>; | ||
depositERC721(signer: Signer, deposit: ERC721Deposit): Promise<import("@ethersproject/abstract-provider").TransactionResponse>; | ||
prepareWithdrawal(signer: Signer, starkWallet: StarkWallet, token: TokenPrepareWithdrawal, quantity: string): Promise<import("../api").CreateWithdrawalResponse>; | ||
completeEthWithdrawal(signer: Signer, starkPublicKey: string): Promise<import("@ethersproject/providers").TransactionResponse>; | ||
completeERC20Withdrawal(signer: Signer, starkPublicKey: string, token: ERC20Withdrawal): Promise<import("@ethersproject/providers").TransactionResponse>; | ||
completeERC721Withdrawal(signer: Signer, starkPublicKey: string, token: ERC721Withdrawal): Promise<import("@ethersproject/providers").TransactionResponse>; | ||
completeWithdrawal(signer: Signer, starkPublicKey: string, token: TokenWithdrawal): Promise<import("@ethersproject/providers").TransactionResponse>; | ||
completeEthWithdrawal(signer: Signer, starkPublicKey: string): Promise<import("@ethersproject/abstract-provider").TransactionResponse>; | ||
completeERC20Withdrawal(signer: Signer, starkPublicKey: string, token: ERC20Withdrawal): Promise<import("@ethersproject/abstract-provider").TransactionResponse>; | ||
completeERC721Withdrawal(signer: Signer, starkPublicKey: string, token: ERC721Withdrawal): Promise<import("@ethersproject/abstract-provider").TransactionResponse>; | ||
completeWithdrawal(signer: Signer, starkPublicKey: string, token: TokenWithdrawal): Promise<import("@ethersproject/abstract-provider").TransactionResponse>; | ||
createOrder(signer: Signer, starkWallet: StarkWallet, request: GetSignableOrderRequest): Promise<{ | ||
@@ -34,0 +34,0 @@ order_id: number; |
{ | ||
"name": "@imtbl/core-sdk", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "Immutable Core SDK", | ||
@@ -58,3 +58,2 @@ "main": "dist/index.cjs.js", | ||
"eslint-config-prettier": "^8.5.0", | ||
"ethers": "^5.6.9", | ||
"hardhat": "^2.9.9", | ||
@@ -71,2 +70,3 @@ "jest": "^28.1.1", | ||
"dependencies": { | ||
"ethers": "^5.6.9", | ||
"@ethersproject/bignumber": "^5.6.2", | ||
@@ -73,0 +73,0 @@ "@ethersproject/providers": "^5.6.4", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
32
2523668
11
12696
+ Addedethers@^5.6.9
+ Added@ethersproject/abi@5.7.0(transitive)
+ Added@ethersproject/contracts@5.7.0(transitive)
+ Added@ethersproject/solidity@5.7.0(transitive)
+ Addedethers@5.7.2(transitive)