mint-artblocks-token
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseMinting an Art Blocks Token
铸造Art Blocks代币
Project ID Format
项目ID格式
All minting tools require a full project ID:
<contract_address>-<project_index>Example:
0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270-0Use to find the project ID from a name or search term. To find projects currently open for minting, pass — this filters to only projects with active minters and remaining supply.
discover_projectsmintable: true所有铸造工具都需要完整的项目ID:
<contract_address>-<project_index>示例:
0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270-0使用工具通过名称或搜索词查找项目ID。若要查找当前开放铸造的项目,传入——这会筛选出仅包含活跃铸造器且仍有剩余供应量的项目。
discover_projectsmintable: trueMinting Workflow
铸造流程
Step 1 — Understand the minter
步骤1 — 了解铸造器
Call first. Returns:
get_project_minter_config- Minter type (set price, Dutch auction, allowlist, RAM, etc.)
- Current price and currency (ETH or ERC-20)
- Remaining supply ()
max_invocations - invocations - Auction timing (start/end, price decay curve for DA minters)
- Allowlist details (for gated minters)
首先调用。返回内容包括:
get_project_minter_config- 铸造器类型(固定价格、荷兰式拍卖、白名单、RAM等)
- 当前价格及币种(ETH或ERC-20)
- 剩余供应量()
max_invocations - invocations - 拍卖时间(开始/结束时间,荷兰式拍卖铸造器的价格衰减曲线)
- 白名单详情(针对 gated 铸造器)
Step 2 — Check eligibility (gated projects only)
步骤2 — 检查资格(仅针对 gated 项目)
If the minter type is or , call before proceeding.
MinterMerkleV5MinterHolderV5check_allowlist_eligibilityReturns: eligibility status, gate type, and for holder-gated minters, which projects the wallet must hold tokens from.
如果铸造器类型为或,请在继续操作前调用。
MinterMerkleV5MinterHolderV5check_allowlist_eligibility返回内容包括:资格状态、准入类型,以及针对持有准入型铸造器的情况,钱包必须持有代币的对应项目。
Step 3 — Build the transaction
步骤3 — 构建交易
build_purchase_transaction| Param | Required | Notes |
|---|---|---|
| ✅ | |
| — | Default |
| — | Mint to a different address (gifting). Check |
Returns . The array contains non-fatal issues (paused project, sold out, complete) — always surface these to the user before they sign.
{ transaction, project, minter, price, purchaseTo, warnings }warningsbuild_purchase_transaction| 参数 | 是否必填 | 说明 |
|---|---|---|
| ✅ | |
| — | 默认值为 |
| — | 将代币铸造至其他地址(用于赠送)。请先在 |
返回。数组包含非致命问题(项目暂停、售罄、已完成)——请在用户签名前务必向其展示这些警告信息。
{ transaction, project, minter, price, purchaseTo, warnings }warningsMinter Types
铸造器类型
| Minter | Description | |
|---|---|---|
| Fixed ETH price | ✅ Supported |
| Dutch auction — exponential decay | ❌ Use wallet directly |
| Dutch auction — linear decay | ❌ Use wallet directly |
| Merkle allowlist gating | ❌ Use wallet directly |
| Holder-gated (must own another token) | ❌ Use wallet directly |
| Ranked auction mechanism | ❌ Use wallet directly |
For unsupported minters, explain the mechanics from data and direct the user to their wallet.
get_project_minter_config| 铸造器类型 | 描述 | |
|---|---|---|
| 固定ETH价格 | ✅ 支持 |
| 荷兰式拍卖——指数型价格衰减 | ❌ 请直接使用钱包操作 |
| 荷兰式拍卖——线性价格衰减 | ❌ 请直接使用钱包操作 |
| Merkle白名单准入 | ❌ 请直接使用钱包操作 |
| 持有准入(必须拥有其他代币) | ❌ 请直接使用钱包操作 |
| 排名拍卖机制 | ❌ 请直接使用钱包操作 |
对于不支持的铸造器,请根据返回的数据解释其机制,并引导用户使用自己的钱包操作。
get_project_minter_configChain IDs
链ID
| Chain | ID |
|---|---|
| Ethereum mainnet | |
| Arbitrum | |
| Base | |
| 区块链网络 | ID |
|---|---|
| 以太坊主网 | |
| Arbitrum | |
| Base | |
Notes
注意事项
- ERC-20 projects: indicates the currency token address.
get_project_minter_configonly supports ETH — direct ERC-20 users to their wallet.build_purchase_transaction - Dutch auctions: current price decreases over time. Use ,
start_price,end_price, andauction_start_timefromauction_end_timeto explain current pricing.get_project_minter_config - : useful for gifting — mints the token directly to a recipient address instead of the signer.
purchaseTo
- ERC-20项目:会显示代币币种地址。
get_project_minter_config仅支持ETH——请引导ERC-20项目用户使用钱包操作。build_purchase_transaction - 荷兰式拍卖:当前价格随时间下降。使用返回的
get_project_minter_config、start_price、end_price和auction_start_time来解释当前定价。auction_end_time - :适用于赠送场景——将代币直接铸造至接收方地址,而非签名者地址。
purchaseTo