LPToken
This token is an ERC20 detailed token with added capability to be minted by the owner. It is used to represent user's shares when providing liquidity to swap contracts.
Only Swap contracts should initialize and own LPToken contracts.
Functions:
Function initialize(string name, string symbol) → bool
initialize(string name, string symbol) → bool
Initializes this LPToken contract with the given name and symbol
The caller of this function will become the owner. A Swap contract should call this in its initializer function.
Parameters:
name
: name of this tokensymbol
: symbol of this token
Function mint(address recipient, uint256 amount)
mint(address recipient, uint256 amount)
Mints the given amount of LPToken to the recipient.
only owner can call this mint function
Parameters:
recipient
: address of account to receive the tokensamount
: amount of tokens to mint
Last updated