Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Ninjatosba committed Feb 26, 2024
1 parent 47e9c83 commit 4142cb3
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions contracts/minters/multi-mint-oem/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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

Expand All @@ -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.
- `recipient`: The address of the recipient.

0 comments on commit 4142cb3

Please sign in to comment.