import { NeynarAPIClient, Configuration } from "@neynar/nodejs-sdk";
const client = new NeynarAPIClient(
new Configuration({ apiKey: "YOUR_NEYNAR_API_KEY" })
);
const res = await client.deployFungible({
owner: "example", // Ethereum address of the one who is creating the token
symbol: "example", // Symbol/Ticker for the token
name: "example", // Name of the token
// metadataMedia: "value",
// metadataDescription: "example",
// metadataNsfw: "value",
// metadataWebsiteLink: "example",
// metadataTwitter: "example",
// metadataDiscord: "example",
// metadataTelegram: "example",
// network: "value",
// factory: "value",
});
console.log(res);