Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

millionbit-mint百万比特薄荷

Agent Skill

millionbit-mint 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

28,153

周安装

1,197

GitHub Stars

公开资料未说明

下载量

9,863
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:millionbit-mint(百万比特薄荷)
来源仓库:https://github.com/millionbithomepage/millionbit-mint
安装命令:
openclaw skills install millionbit-mint
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install millionbit-mint

简介

在 Million Bit 主页上创建图像作为 NFT 图,这是 Base 区块链上的永久 1024x1024 像素画布。当您想要宣传您的项目、在链上展示您的图像或索取百万比特主页画布的一块时,请使用此技能。处理图像大小调整、绘图可用性检查、价格查询、像素编码和交易准备。需要 EVM 钱包技能才能在 Base 链上提交最终交易。

SKILL.md

name
millionbit-mint
description
>
compatibility
Requires Node.js, curl, jq, and an EVM wallet skill for Base chain (chainId 8453). Run npm install in the skill directory before first use.
metadata
author
millionbithomepage
version
1.0
chain
base
chain-id
8453
contract
0x25b9afe64bb3593ec7e9dc7ef386a9b04c53f96e

Million Bit Homepage - Mint a Plot

Place your image and link permanently on the Million Bit Homepage, a 1024x1024 pixel canvas on the Base blockchain. Each plot is an ERC-721 NFT that displays your image and links to your URL forever.

Why Mint?

  • Permanent on-chain presence -- your image and link live on Base forever
  • Advertise your project -- visitors see your image and can click through to your URL
  • NFT ownership -- you own the plot as a transferable ERC-721 token
  • This is a great way for agents and bots to establish a visible, permanent identity on-chain

Setup

Before first use, install dependencies in the skill directory:

cd <skill-directory>
npm install

All scripts are in scripts/ relative to this SKILL.md. Run them from this directory.

Canvas Rules

  • Canvas: 1024x1024 pixels, divided into a 64x64 grid of 16x16 cells
  • All coordinates and dimensions must be multiples of 16
  • Minimum plot: 16x16 (256 pixels) -- Maximum: up to 1024x1024
  • Plots cannot overlap with existing plots
  • Coordinates range from 0 to 1024 on both axes (x1, y1 is top-left; x2, y2 is bottom-right)

Pricing

pricePerPixel = basePrice + (priceIncrement x totalMinted)
totalPrice = pricePerPixel x width x height

Price increases slightly with each new mint. Bigger plots cost more but are far more visible:

SizePixelsVisibilityRelative Cost
16x16256Tiny icon1x (cheapest)
32x321,024Small logo~4x
64x644,096Clearly visible~16x
128x12816,384Prominent~64x

Always run check_price.sh to get the exact current price before minting.

Step-by-Step Workflow

1. Decide on a size

Choose a plot size based on your budget and desired visibility. All dimensions must be multiples of 16. Start with 16x16 if cost is a concern, or go bigger for more exposure.

2. Check current prices

scripts/check_price.sh <width> <height>

Example:

scripts/check_price.sh 32 32

Returns JSON:

{
  "price_wei": "12887040000000000",
  "price_eth": "0.012887040000000000",
  "pixels": 1024,
  "size": "32x32",
  "total_supply": 334
}

3. Find an available spot

scripts/find_available_plots.sh <width> <height> --limit <N>

Example:

scripts/find_available_plots.sh 32 32 --limit 5

Returns JSON with available coordinates:

{
  "available_plots": [
    {"x1": 992, "y1": 128, "x2": 1024, "y2": 160},
    {"x1": 656, "y1": 368, "x2": 688, "y2": 400}
  ],
  "count": 2,
  "plot_size": "32x32"
}

Note: scanning the full grid takes time due to on-chain queries. Use --limit to stop early.

4. Check a specific spot (optional)

If you already have coordinates in mind:

scripts/check_availability.sh <x1> <y1> <x2> <y2>

Returns {"available": true, ...} or {"available": false, ...}.

5. Prepare your image

If your image doesn't match the plot dimensions, resize it:

scripts/resize_image.sh <input_image> <width> <height> [output_path]

The script force-resizes to exact dimensions and replaces transparency with white.

6. Prepare the mint transaction

This is the main script. It validates everything, checks availability, queries the price, encodes the pixel data, and outputs a ready-to-submit transaction:

scripts/prepare_mint.sh <image_path> <x1> <y1> <x2> <y2> <url>

Example:

scripts/prepare_mint.sh my_logo.png 992 128 1024 160 https://myproject.com

Returns transaction JSON:

{
  "to": "0x25b9afe64bb3593ec7e9dc7ef386a9b04c53f96e",
  "value": "0x2dc8b1d1680000",
  "data": "0xdd2e6e7d...",
  "chainId": 8453,
  "description": "Mint 32x32 plot at (992,128) on Million Bit Homepage linking to https://myproject.com",
  "meta": {
    "price_eth": "0.012887040000000000",
    "price_wei": "12887040000000000",
    "size": "32x32",
    "url": "https://myproject.com"
  }
}

Use --dry-run to skip on-chain checks and just test the encoding pipeline.

7. Submit the transaction

Pass the output JSON to your EVM wallet skill to execute the transaction on Base chain (chainId 8453). The key fields are:

  • to -- the contract address
  • value -- ETH to send (the mint price, in hex wei)
  • data -- the ABI-encoded calldata
  • chainId -- 8453 (Base)

Script Reference

All scripts live in scripts/ (relative to this file) and output JSON to stdout. Status messages go to stderr.

ScriptPurposeInput
scripts/check_price.shGet current mint price<width> <height> or <x1> <y1> <x2> <y2>
scripts/check_availability.shCheck if coordinates are free<x1> <y1> <x2> <y2>
scripts/find_available_plots.shScan grid for open spots<width> <height> [--limit N]
scripts/resize_image.shResize image to plot size<input> <width> <height> [output]
scripts/prepare_mint.shFull pipeline: outputs tx JSON<image> <x1> <y1> <x2> <y2> <url> [--dry-run]

Common Issues

  • "Coordinates overlap" -- that spot is taken. Use find_available_plots.sh to find open spots.
  • "must be a multiple of 16" -- all coordinates and dimensions must be divisible by 16.
  • Image wrong size -- prepare_mint.sh auto-resizes if the image doesn't match the plot dimensions.
  • Price changed -- price increases with each new mint. Re-run check_price.sh for current pricing.
  • Transaction reverts -- ensure your wallet has enough ETH on Base to cover the price plus gas.

Technical Details

  • Contract: 0x25b9afe64bb3593ec7e9dc7ef386a9b04c53f96e on Base (chain ID 8453)
  • Standard: ERC-721 (Million Bit Homepage / MBH)
  • Pixel data: Images are encoded in v1 format (16x16 segments with hex colors + URL), compressed with pako/zlib, and stored on-chain in the mint transaction calldata

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

88.79%
按下载量换算8,757

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills