Sushi Token Smart Contract

Address

Init function

function initToken(
      string memory _name,
      string memory _symbol,
      address _owner,
      uint256 _initialSupply
)
      public override

Initializes ERC20 token with name and symbol, gives admin privileges and mints token supply to callers address.

Last updated