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.**
39 lines (38 loc) • 911 B
JavaScript
import { defineChain } from "viem";
export const cotiTestnet = /*#__PURE__*/ defineChain({
id: 7_082_400,
name: "Testnet",
nativeCurrency: {
decimals: 18,
name: "tCOTI",
symbol: "tCOTI",
},
rpcUrls: {
default: { http: ["https://testnet.coti.io/rpc"] },
},
blockExplorers: {
default: {
name: "Cotiscan",
url: "https://testnet.cotiscan.io",
},
},
});
export const cotiMainnet = /*#__PURE__*/ defineChain({
id: 2_632_500,
name: "Mainnet",
nativeCurrency: {
decimals: 18,
name: "COTI",
symbol: "COTI",
},
rpcUrls: {
default: { http: ["https://mainnet.coti.io/rpc"] },
},
blockExplorers: {
default: {
name: "Cotiscan",
url: "https://mainnet.cotiscan.io",
},
},
});
export const supportedChain = cotiTestnet;