UNPKG

cotiv2-mcp

Version:

> A plug-and-play MCP tool server to **send COTI**, **transfer BEP-20 tokens**, **deploy tokens**, and **interact with smart contracts** on the **COTI v2 Network (COTI)** — built for **Claude Desktop**, **AI agents**, and **developers.**

34 lines (33 loc) 764 B
export const erc20abi = [ { name: "transfer", type: "function", stateMutability: "nonpayable", inputs: [ { name: "recipient", type: "address" }, { name: "amount", type: "uint256" }, ], outputs: [{ type: "bool" }], }, { name: "decimals", type: "function", stateMutability: "view", inputs: [], outputs: [{ type: "uint8" }], }, { name: "symbol", type: "function", stateMutability: "view", inputs: [], outputs: [{ type: "string" }], }, { name: "name", type: "function", stateMutability: "view", inputs: [], outputs: [{ type: "string" }], }, ];