Last active
September 29, 2021 20:28
-
-
Save AlexanderTserkovniy/d506d3e306f51e6b75bf72b77433eeb5 to your computer and use it in GitHub Desktop.
Example tokens from the official web site 0x8F228268423D5c535A5b316d0f84a6A2D84f242E and 0xf347712bc3cDBF1464C902B6C00111d998f615BF
This file contains 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; | |
interface IERC20 { | |
function totalSupply() external view returns (uint256); | |
function balanceOf(address account) external view returns (uint256); | |
function allowance(address owner, address spender) external view returns (uint256); | |
function transfer(address recipient, uint256 amount) external returns (bool); | |
function approve(address spender, uint256 amount) external returns (bool); | |
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); | |
event Transfer(address indexed from, address indexed to, uint256 value); | |
event Approval(address indexed owner, address indexed spender, uint256 value); | |
} | |
contract ERC20Basic is IERC20 { | |
string public constant name = "ERC20Basic"; | |
string public constant symbol = "ERCSS"; | |
uint8 public constant decimals = 18; | |
event Approval(address indexed tokenOwner, address indexed spender, uint tokens); | |
event Transfer(address indexed from, address indexed to, uint tokens); | |
mapping(address => uint256) balances; | |
mapping(address => mapping (address => uint256)) allowed; | |
uint256 totalSupply_ = 10 ether; | |
using SafeMath for uint256; | |
constructor() public { | |
balances[msg.sender] = totalSupply_; | |
} | |
function totalSupply() public override view returns (uint256) { | |
return totalSupply_; | |
} | |
function balanceOf(address tokenOwner) public override view returns (uint256) { | |
return balances[tokenOwner]; | |
} | |
function transfer(address receiver, uint256 numTokens) public override returns (bool) { | |
require(numTokens <= balances[msg.sender]); | |
balances[msg.sender] = balances[msg.sender].sub(numTokens); | |
balances[receiver] = balances[receiver].add(numTokens); | |
emit Transfer(msg.sender, receiver, numTokens); | |
return true; | |
} | |
function approve(address delegate, uint256 numTokens) public override returns (bool) { | |
allowed[msg.sender][delegate] = numTokens; | |
emit Approval(msg.sender, delegate, numTokens); | |
return true; | |
} | |
function allowance(address owner, address delegate) public override view returns (uint) { | |
return allowed[owner][delegate]; | |
} | |
function transferFrom(address owner, address buyer, uint256 numTokens) public override returns (bool) { | |
require(numTokens <= balances[owner]); | |
require(numTokens <= allowed[owner][msg.sender]); | |
balances[owner] = balances[owner].sub(numTokens); | |
allowed[owner][msg.sender] = allowed[owner][msg.sender].sub(numTokens); | |
balances[buyer] = balances[buyer].add(numTokens); | |
emit Transfer(owner, buyer, numTokens); | |
return true; | |
} | |
} | |
library SafeMath { | |
function sub(uint256 a, uint256 b) internal pure returns (uint256) { | |
assert(b <= a); | |
return a - b; | |
} | |
function add(uint256 a, uint256 b) internal pure returns (uint256) { | |
uint256 c = a + b; | |
assert(c >= a); | |
return c; | |
} | |
} | |
contract DEX { | |
event Bought(uint256 amount); | |
event Sold(uint256 amount); | |
IERC20 public token; | |
constructor() public { | |
token = new ERC20Basic(); | |
} | |
function buy() payable public { | |
uint256 amountTobuy = msg.value; | |
uint256 dexBalance = token.balanceOf(address(this)); | |
require(amountTobuy > 0, "You need to send some ether"); | |
require(amountTobuy <= dexBalance, "Not enough tokens in the reserve"); | |
token.transfer(msg.sender, amountTobuy); | |
emit Bought(amountTobuy); | |
} | |
function sell(uint256 amount) public { | |
require(amount > 0, "You need to sell at least some tokens"); | |
uint256 allowance = token.allowance(msg.sender, address(this)); | |
require(allowance >= amount, "Check the token allowance"); | |
token.transferFrom(msg.sender, address(this), amount); | |
msg.sender.transfer(amount); | |
emit Sold(amount); | |
} | |
} |
This file contains 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: MIT | |
pragma solidity 0.8.7; | |
contract VendingMachine { | |
// Declare state variables of the contract | |
address public owner; | |
mapping (address => uint) public cupcakeBalances; | |
// When 'VendingMachine' contract is deployed: | |
// 1. set the deploying address as the owner of the contract | |
// 2. set the deployed smart contract's cupcake balance to 100 | |
constructor() { | |
owner = msg.sender; | |
cupcakeBalances[address(this)] = 100; | |
} | |
// Allow the owner to increase the smart contract's cupcake balance | |
function refill(uint amount) public { | |
require(msg.sender == owner, "Only the owner can refill."); | |
cupcakeBalances[address(this)] += amount; | |
} | |
// Allow anyone to purchase cupcakes | |
function purchase(uint amount) public payable { | |
require(msg.value >= amount * 1 ether, "You must pay at least 1 ETH per cupcake"); | |
require(cupcakeBalances[address(this)] >= amount, "Not enough cupcakes in stock to complete this purchase"); | |
cupcakeBalances[address(this)] -= amount; | |
cupcakeBalances[msg.sender] += amount; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment