Migrating Coins
Migrate Graduated Coin
Method Interface
// solidity interface
/// @notice Migrate a graduated token to Liquidity pool (DEX)
///
/// @param _token The graduated token address
function migrate(address _token) external nonReentrant;Events
/// @notice emitted when a graduated token is migrated
///
/// @param addr The token contract address
event Migrated(
address token,
uint256 tokenId,
uint128 liquidity,
uint256 amount0,
uint256 amount1,
uint256 migrationFee
);Last updated

