Onchain Events
Events and public contract methods available for tracking and interacting with CoinFactory launchpad tokens.
Lifecycle Overview
Events
/**
* @notice Emitted when a new bonding curve token is created.
*/
event TokenCreated(
address indexed token,
string name,
string symbol,
address indexed reserveToken,
string metadataUrl
);/**
* @notice Emitted when tokens are purchased from the bonding curve.
*/
event Mint(
address indexed token,
address indexed user,
address receiver,
uint256 amountMinted,
uint256 reserveAmount,
uint256 supplyAfter,
uint256 priceAfter,
uint40 timestamp
);Last updated