{
  "name": "HOODIES",
  "description": "HOODIES is an ERC-721 NFT collection on Robinhood Chain. Each hoodie is a unique 6-digit hex color (#RRGGBB). Colors are first-come, first-served — once a hex is minted, no one else can claim it.",
  "version": "1.0",
  "content": {
    "llms": "https://hoodies-omega.vercel.app/llms.txt",
    "contract": "https://hoodies-omega.vercel.app/contract.json"
  },
  "project": {
    "name": "HOODIES",
    "tagline": "Mint your hoodie",
    "description": "HOODIES is an ERC-721 NFT collection on Robinhood Chain. Each hoodie is a unique 6-digit hex color (#RRGGBB). Colors are first-come, first-served — once a hex is minted, no one else can claim it.",
    "collection": {
      "name": "Hoodie",
      "symbol": "HOODIE",
      "standard": "ERC-721"
    },
    "mintPrice": "0.001 ETH",
    "imageBaseUrl": "https://hoodies.fly.dev/hoodie/",
    "appUrl": "https://hoodies-omega.vercel.app",
    "marketplaceUrl": "https://opensea.io/assets/robinhood/0xe11c8cc13cfa4a310d37779400d7b6e89a579d24"
  },
  "chain": {
    "id": 4663,
    "name": "Robinhood Chain",
    "network": "robinhood",
    "nativeCurrency": {
      "name": "ETH",
      "symbol": "ETH",
      "decimals": 18
    },
    "rpcUrls": [
      "https://rpc.mainnet.chain.robinhood.com"
    ],
    "blockExplorer": {
      "name": "Robinhood Blockscout",
      "url": "https://robinhoodchain.blockscout.com"
    }
  },
  "contracts": [
    {
      "name": "HoodieNFT",
      "address": "0xe11c8cc13cfa4a310d37779400d7b6e89a579d24",
      "chainId": 4663,
      "standard": "ERC-721",
      "explorerUrl": "https://robinhoodchain.blockscout.com/address/0xe11c8cc13cfa4a310d37779400d7b6e89a579d24",
      "abiUrl": "https://hoodies-omega.vercel.app/contract.json",
      "mint": {
        "function": "mint(address to, string rawHexColor)",
        "priceWei": "1000000000000000",
        "priceEth": "0.001",
        "colorFormat": "#RRGGBB or RRGGBB (case-insensitive)"
      }
    }
  ],
  "capabilities": [
    {
      "name": "mint_hoodie",
      "description": "Mint an ERC-721 hoodie NFT for a unique hex color on Robinhood Chain",
      "contract": "0xe11c8cc13cfa4a310d37779400d7b6e89a579d24",
      "chainId": 4663,
      "function": "mint",
      "inputs": [
        "to: address",
        "rawHexColor: string (#RRGGBB or RRGGBB)"
      ],
      "value": "0.001 ETH",
      "onSuccess": "After a successful mint, return the Robinhood Blockscout transaction URL https://robinhoodchain.blockscout.com/tx/{txHash}?tab=token_transfers to the user, where {txHash} is the mint transaction hash."
    },
    {
      "name": "check_color_availability",
      "description": "Check whether a hex color has already been minted",
      "contract": "0xe11c8cc13cfa4a310d37779400d7b6e89a579d24",
      "chainId": 4663,
      "function": "isTaken",
      "inputs": [
        "rawHexColor: string"
      ]
    }
  ],
  "endpoints": {
    "metadata": "https://hoodies-omega.vercel.app/.well-known/agent.json",
    "contract": "https://hoodies-omega.vercel.app/contract.json",
    "llms": "https://hoodies-omega.vercel.app/llms.txt",
    "hoodieImage": "https://hoodies.fly.dev/hoodie/{HEX}.png",
    "mintTransaction": "https://robinhoodchain.blockscout.com/tx/{txHash}?tab=token_transfers"
  }
}