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
| // SPDX-License-Identifier: UNLISCENSED | |
| pragma solidity ^0.7.4; | |
| contract Legendary { | |
| string public name = "Legendary Token"; | |
| string public symbol = "LGT"; | |
| uint256 public totalSupply = 1000000000000000000000000; // 1 million tokens | |
| uint8 public decimals = 18; | |
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
| // SPDX-License-Identifier: UNLISCENSED | |
| pragma solidity ^0.8.4; | |
| contract LegendaryToken { | |
| string public name = "Legendary Token"; | |
| string public symbol = "LGT"; | |
| uint256 public totalSupply = 1000000000000000000000000; // 1 million tokens | |
| uint8 public decimals = 18; | |
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.5.0; | |
| interface IUniswapV2Migrator { | |
| function migrate(address token, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external; | |
| } |
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
| { | |
| "accounts": { | |
| "account{0}": "0x8c1a0B65F5218649Db12fcbB2fB6Ad246f399bd6" | |
| }, | |
| "linkReferences": {}, | |
| "transactions": [ | |
| { | |
| "timestamp": 1648458668905, | |
| "record": { | |
| "value": "0", |
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.5.0; | |
| import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/1e0f07751ea0badce1f51bc23578b5b1ddb4b464/contracts/GSN/Context.sol"; | |
| import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/1e0f07751ea0badce1f51bc23578b5b1ddb4b464/contracts/token/ERC20/IERC20.sol"; | |
| import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/1e0f07751ea0badce1f51bc23578b5b1ddb4b464/contracts/token/ERC20/SafeERC20.sol"; | |
| import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/1e0f07751ea0badce1f51bc23578b5b1ddb4b464/contracts/utils/ReentrancyGuard.sol"; | |
| /** | |
| * @title Crowdsale | |
| * @dev Crowdsale is a base contract for managing a token crowdsale, |
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.5.0; | |
| import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/1e0f07751ea0badce1f51bc23578b5b1ddb4b464/contracts/crowdsale/Crowdsale.sol"; | |
| import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/5471fc808a17342d738853d7bf3e9e5ef3108074/contracts/ownership/Ownable.sol"; | |
| import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/1e0f07751ea0badce1f51bc23578b5b1ddb4b464/contracts/token/ERC20/ERC20.sol"; | |
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.4.23; | |
| import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/5471fc808a17342d738853d7bf3e9e5ef3108074/contracts/token/ERC20/ERC20.sol"; | |
| import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/5471fc808a17342d738853d7bf3e9e5ef3108074/contracts/math/SafeMath.sol"; | |
| /** | |
| * @title Crowdsale | |
| * @dev Crowdsale is a base contract for managing a token crowdsale, | |
| * allowing investors to purchase tokens with ether. This contract implements |
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.5.12; | |
| import "./HEX.sol"; // TODO: Windows file separator | |
| contract ReferralSplitter { | |
| event DistributedShares( | |
| uint40 timestamp, | |
| address indexed memberAddress, | |
| uint256 amount |
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
| PEG STORAGE FOR DEPLOYMENT |
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
| REMIX EXAMPLE PROJECT | |
| Remix example project is present when Remix loads for the very first time or there are no files existing in the File Explorer. | |
| It contains 3 directories: | |
| 1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name. | |
| 2. 'scripts': Holds two scripts to deploy a contract. It is explained below. | |
| 3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity. | |
| SCRIPTS |