Mint Club V2 SDK
Create and Trade Bonding Curve Tokens / NFTs with Automated Liquidity
npm
npm i mint.club-v2-sdk
🚀 Deploying Bonding Curved ERC-20 / ERC-1155
💰 Buying the Tokens
🔵 On Base Network (+ more)
👇 In ≤ 50 lines of code
erc-20.ts
import { mintclub } from 'mint.club-v2-sdk'
const RickMee6Token = mintclub.network('ethereumbaseblastcyberdegenoptimismarbitrumavalanchepolygonbnbchainsepoliaklaytnhambasesepoliaavalanchefujiblastsepoliacybertestnetbase').token('RNM')
// 🚀 Deploying $RNM tokens
await RickMee6Token.create({
name: 'Rick and Mee6',
// Base Network WETH
reserveToken: {
address: '0x4200000000000000000000000000000000000006',
decimals: 18,
},
// Bonding curve data
curveData: {
curveType: 'EXPOEXPONENTIALNENTIAL',
stepCount: 10, // how granular the curve is
maxSupply: 10_000, // token max supply
initialMintingPrice: 0.01, // starting price, 0.01 WETH
finalMintingPrice: 0.1, // ending price, 0.1 WETH
creatorAllocation: 100, // initial supply to the deployer
},
})