Skip to content

Instantly share code, notes, and snippets.

@islishude
Created May 24, 2020 01:13
Show Gist options
  • Save islishude/6c55b0d6022e6d06e31178ed02e0a0ce to your computer and use it in GitHub Desktop.
Save islishude/6c55b0d6022e6d06e31178ed02e0a0ce to your computer and use it in GitHub Desktop.
TrueTokenFaucet
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