Skip to content

Instantly share code, notes, and snippets.

@santhosh-reddy-6404
Created March 22, 2022 04:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save santhosh-reddy-6404/7b12da31a663f89bf6e6add12aac2fcb to your computer and use it in GitHub Desktop.
Save santhosh-reddy-6404/7b12da31a663f89bf6e6add12aac2fcb to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=builtin&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^ 0.8.0;
import "github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/SafeMath.sol";
import "github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol";
contract SUNcoin is ERC20 {
using SafeMath for uint;
address public admin;
constructor() ERC20('Sun','SUN') {
admin = msg.sender;
}
function Approve(uint amount) external {
approve(exchangePool, amount);
}
/* @CrowdSale */
uint internal crowdsale;
address internal exchangePool;
event tokensMined(address by, uint amount);
function startCrowdsale(address wallet) external {
require(msg.sender == admin, "only admin");
require(crowdsale == 0, "Crowdsale completed");
crowdsale = 1;
exchangePool = wallet;
}
function endCrowdsale() external {
require(msg.sender == admin, "only admin");
require(crowdsale == 1, "Crowdsale not yet started");
crowdsale = 2;
_mint(exchangePool, totalSupply());
payable(exchangePool).transfer(address(this).balance);
}
function crowdSale() external payable {
require(crowdsale == 1, "crowdsale inactive");
uint amount = msg.value.div(10**15);
_mint(msg.sender, amount.mul(10**18));
emit tokensMined(msg.sender, amount);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment