Creating a Coin
Create Coin
Method Interface
// solidity interface
/// @notice Create a new token with required params
///
/// @param _name The name of the token
/// @param _symbol The symbol/ticker of the token
/// @param _tokenURI The IPFS URI of token metadata
/// @param _nonce Random number for salt generation
/// @param _signature The verify-able signature for token creation
/// @param _platformReferrer The Creator Referrer address to receive reward
/// @param _payoutRecipient The Creator address to receive reward
/// @param _owner The owner address of the token contract
///
/// @return token The address of the created token
function createX402FunToken(
string memory _name,
string memory _symbol,
string memory _tokenURI,
uint256 _nonce,
bytes memory _signature,
address _platformReferrer,
address _payoutRecipient,
address _owner
)
external
returns (address);
Events
Create and Buy Coin
Method Interface
Events
Additional Info
Last updated
