Created
May 24, 2020 01:13
-
-
Save islishude/6c55b0d6022e6d06e31178ed02e0a0ce to your computer and use it in GitHub Desktop.
TrueTokenFaucet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.6.0; | |
contract TrueTokenFaucet { | |
address public constant token = 0x0000000000085d4780B73119b644AE5ecd22b376; | |
address public constant controller = 0x0000000000075EfBeE23fe2de1bd0b7690883cc9; | |
// 100000000 | |
uint256 public constant amount = 0x52b7d2dcc80cd2e4000000; | |
function faucet(uint256 _amount) public { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment