-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add Minting APIs to Blockchain Data package (#1493)
- Loading branch information
1 parent
9d97b21
commit d8fe557
Showing
15 changed files
with
1,278 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
...ages/internal/generated-clients/src/blockchain-data/models/create-mint-request-request.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* Immutable zkEVM API | ||
* Immutable Multi Rollup API | ||
* | ||
* The version of the OpenAPI document: 1.0.0 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
|
||
// May contain unused imports in some cases | ||
// @ts-ignore | ||
import { MintAsset } from './mint-asset'; | ||
|
||
/** | ||
* | ||
* @export | ||
* @interface CreateMintRequestRequest | ||
*/ | ||
export interface CreateMintRequestRequest { | ||
/** | ||
* List of nft to be minted | ||
* @type {Array<MintAsset>} | ||
* @memberof CreateMintRequestRequest | ||
*/ | ||
'assets': Array<MintAsset>; | ||
} | ||
|
48 changes: 48 additions & 0 deletions
48
packages/internal/generated-clients/src/blockchain-data/models/create-mint-request-result.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* tslint:disable */ | ||
/* eslint-disable */ | ||
/** | ||
* Immutable zkEVM API | ||
* Immutable Multi Rollup API | ||
* | ||
* The version of the OpenAPI document: 1.0.0 | ||
* Contact: [email protected] | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
|
||
|
||
/** | ||
* | ||
* @export | ||
* @interface CreateMintRequestResult | ||
*/ | ||
export interface CreateMintRequestResult { | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof CreateMintRequestResult | ||
*/ | ||
'imx_mint_requests_limit': string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof CreateMintRequestResult | ||
*/ | ||
'imx_mint_requests_limit_reset': string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof CreateMintRequestResult | ||
*/ | ||
'imx_remaining_mint_requests': string; | ||
/** | ||
* | ||
* @type {string} | ||
* @memberof CreateMintRequestResult | ||
*/ | ||
'imx_mint_requests_retry_after': string; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.