usage of this.
Example
function unwrap(uint256 amount) external {
require(this.balanceOf(msg.sender) >= amount, "Not Enough WRings to unwrap");
burn(msg.sender, amount);
iRings.transferFrom(address(this), msg.sender, amount);
emit Unwrapped(msg.sender, amount);
}Note if you drop this :
this :
Solution:

Last updated