LPToken
Last updated
Was this helpful?
Last updated
Was this helpful?
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.
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.
name
: name of this token
symbol
: symbol of this token
mint(address recipient, uint256 amount)
Mints the given amount of LPToken to the recipient.
only owner can call this mint function
recipient
: address of account to receive the tokens
amount
: amount of tokens to mint