Creating a Coin
Create Coin
Collateral Pair
Address
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 _tokenSalt Salt for deterministic CREATE2 deployment. Enables predictable token addresses.
/// @param _collateralToken Selected collateral pair for created token
///
/// @return token The address of the created token
function createBasememeTokenWithCollateral(
string memory _name,
string memory _symbol,
string memory _tokenURI,
uint256 _nonce,
bytes memory _signature,
address _platformReferrer,
address _payoutRecipient,
bytes32 _tokenSalt,
address _collateralToken
)
external
returns (address);Events
Create and Buy Coin
Collateral Pair
Address
Method Interface
Events
Create Coin (Advanced Mode)
Method Interface
Events
Create Coin (ETH Pair only)
Method Interface
Events
Create and Buy Coin (ETH Pair only)
Method Interface
Events
Additional Info
Last updated

