Expand description
Module containing a contract’s types and functions.
interface ITIP20Factory {
function createToken(string memory name, string memory symbol, string memory currency, address quoteToken, address admin, bytes32 salt) external returns (address token);
}Structs§
- ITIP20
Factory Instance - A
ITIP20Factoryinstance. - create
Token Call - Function with signature
createToken(string,string,string,address,address,bytes32)and selector0x68130445. - create
Token Return - Container type for the return parameters of the
createToken(string,string,string,address,address,bytes32)function.
Enums§
- ITIP20
Factory Calls - Container for all the
ITIP20Factoryfunction calls.
Functions§
- new
- Creates a new wrapper around an on-chain
ITIP20Factorycontract instance.