Faucet
The contract is to provide functionality of topping the users with native tokens to pay transaction fees.
Last updated
Was this helpful?
The contract is to provide functionality of topping the users with native tokens to pay transaction fees.
Emitted when user is topped by G$.
user
The address of the user who is being top.
amount
The amount of Fuse sent to the user.
event WalletTopped(address indexed user, uint256 amount);The function allows to check if the user address can be topped with Fuse.
_user
The user who is being checked if he could be topped.
Returns: true if user could be topped, false otherwise.
function canTop(address _user) public view returns (bool);The function is utilized to top given address with amount of Fuse given in constructor. The amount of times specified in constructor per day.
_user
The address to transfer to.
Can only be called by admin.
function canTop(address _user) public view returns (bool);Last updated
Was this helpful?
Was this helpful?