From 4142cb3bfa6767420e57e4f42d2da120460a093b Mon Sep 17 00:00:00 2001 From: Ninjatosba Date: Mon, 26 Feb 2024 16:19:16 +0300 Subject: [PATCH] update readme --- contracts/minters/multi-mint-oem/README.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/contracts/minters/multi-mint-oem/README.md b/contracts/minters/multi-mint-oem/README.md index 1a05dc3..e9173cf 100644 --- a/contracts/minters/multi-mint-oem/README.md +++ b/contracts/minters/multi-mint-oem/README.md @@ -6,7 +6,7 @@ Multi minter contract is a Open edition minter contract with configurable token Drop is a configuration for a set of tokens. It includes the following parameters: -- `new_token_details`: Token details such as name, symbol, description, and preview_uri. +- `token_details`: Token details such as name, symbol, description, and preview_uri. - `price`: The price of the token. - `start_time`: The start time of the trading. - `end_time`: The end time of the trading. @@ -20,12 +20,13 @@ Similar with the Minter contract, the creator should send Collection details alo ### NewDrop - This function allows the creator to create a new drop with the given parameters. The creator can create multiple drops with different parameters. Active drop will be changed to the new drop. But the previous drop will be still active for minting. - - `token_details`: Token details such as name, symbol, description, and preview_uri. - - `price`: The price of the token. - - `start_time`: The start time of the trading. - - `end_time`: The end time of the trading. - - `num_tokens`: The maximum supply of the token. - - `per_address_limit` : The maximum number of tokens that can be minted by a single address. + - `new_token_details`: New token details such as name, symbol, description, and preview_uri. + - `new_config`: New configuration for the new drop. It includes the following parameters: + - `price`: The price of the token. + - `start_time`: The start time of the trading. + - `end_time`: The end time of the trading. + - `num_tokens`: The maximum supply of the token. + - `per_address_limit` : The maximum number of tokens that can be minted by a single address. ### Mint @@ -34,4 +35,4 @@ Similar with the Minter contract, the creator should send Collection details alo - `drop_id`: The id of the drop to mint. OPTIONAL. If not provided, it will mint the active drop. - `AdminMint{}`: As the name suggests, this option is specifically for admin to mint a token. Admins have the ability to determine the recipient. Admins are not subject to address limits or private mint checks, and this action does not require a payment. - `drop_id`: The id of the drop to mint. OPTIONAL. If not provided, it will mint the active drop. - - `recipient`: The address of the recipient. \ No newline at end of file + - `recipient`: The address of the recipient.