Custom Token
import ./LERC20.sol
contract YourCustomToken is LERC20 {
constructor(
uint256 totalSupply_,
string memory name_,
string memory symbol_
address admin_,
address recoveryAdmin_,
uint256 timelockPeriod_,
address lossless_
) LERC20(
totalSupply_,
name_,
symbol_,
admin_,
recoveryAdmin_,
timelockPeriod_,
lossless_) {}
// Your custom function goes here...
}
Last updated
