uniderp-mcp
Version:
> A plug-and-play MCP tool server to **send ETH**, **transfer ERC-20 tokens**, **deploy tokens**, and **interact with smart contracts** on the **UNICHAIN** — built for **Claude Desktop**, **AI agents**, and **developers.**
16 lines (15 loc) • 606 B
JavaScript
import { privateKeyToAccount } from "viem/accounts";
import { uniderpCreateMeme } from "../functions/uniderpCreateMeme.js";
const test = async () => {
const account = privateKeyToAccount("0x783b373c7dc246dbf6253764e333213e138fad07ec09f74feb77c0e693332a1a" // 0x20518e4cc0E1E866Ef31ab0232b166fA367305C9
);
const tokenAddress = await uniderpCreateMeme({
account,
initialEthBuyAmount: "0",
tokenName: "VIO1",
tokenSymbol: "VIO1",
description: "VIOLET developer",
});
console.log(`Uniswap transaction sent successfully. ${tokenAddress}`);
};
test();