Created
November 22, 2024 12:16
-
-
Save darkerego/5230f5b3f8cdc4a30cc75d0954c5b512 to your computer and use it in GitHub Desktop.
Flash Mintable Token
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.18; | |
interface IERC20 { | |
function totalSupply() external view returns (uint256); | |
function balanceOf(address account) external view returns (uint256); | |
function transfer(address recipient, uint256 amount) external returns (bool); | |
function allowance(address owner, address spender) external view returns (uint256); | |
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); | |
} | |
interface IFlashMintReceiver { | |
function executeFlashMint(uint256 amount) external; | |
} | |
// example initialSupply: 1000000000000000000000000000 | |
contract FlashMintableERC20 is IERC20 { | |
string public name = "FlashMintable Token"; | |
string public symbol = "FMT"; | |
uint8 public decimals = 18; | |
uint256 private _totalSupply; | |
mapping(address => uint256) private _balances; | |
mapping(address => mapping(address => uint256)) private _allowances; | |
// Constructor | |
constructor(uint256 initialSupply) { | |
_mint(msg.sender, initialSupply); | |
} | |
// ERC20 Functions | |
function totalSupply() public view override returns (uint256) { | |
return _totalSupply; | |
} | |
function balanceOf(address account) public view override returns (uint256) { | |
return _balances[account]; | |
} | |
function transfer(address recipient, uint256 amount) public override returns (bool) { | |
_transfer(msg.sender, recipient, amount); | |
return true; | |
} | |
function allowance(address owner, address spender) public view override returns (uint256) { | |
return _allowances[owner][spender]; | |
} | |
function approve(address spender, uint256 amount) public override returns (bool) { | |
_approve(msg.sender, spender, amount); | |
return true; | |
} | |
function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { | |
uint256 currentAllowance = _allowances[sender][msg.sender]; | |
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); | |
_approve(sender, msg.sender, currentAllowance - amount); | |
_transfer(sender, recipient, amount); | |
return true; | |
} | |
// Flash Mint Functionality | |
function flashMint(uint256 amount) external { | |
uint256 originalBalance = _balances[msg.sender]; | |
_mint(msg.sender, amount); | |
IFlashMintReceiver(msg.sender).executeFlashMint(amount); | |
require(_balances[msg.sender] >= originalBalance, "FlashMint: Tokens not returned"); | |
_burn(msg.sender, amount); | |
} | |
// Internal Functions | |
function _transfer(address sender, address recipient, uint256 amount) internal { | |
require(sender != address(0), "ERC20: transfer from the zero address"); | |
require(recipient != address(0), "ERC20: transfer to the zero address"); | |
uint256 senderBalance = _balances[sender]; | |
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); | |
_balances[sender] = senderBalance - amount; | |
_balances[recipient] += amount; | |
emit Transfer(sender, recipient, amount); | |
} | |
function _mint(address account, uint256 amount) internal { | |
require(account != address(0), "ERC20: mint to the zero address"); | |
_totalSupply += amount; | |
_balances[account] += amount; | |
emit Transfer(address(0), account, amount); | |
} | |
function _burn(address account, uint256 amount) internal { | |
require(account != address(0), "ERC20: burn from the zero address"); | |
uint256 accountBalance = _balances[account]; | |
require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); | |
_balances[account] = accountBalance - amount; | |
_totalSupply -= amount; | |
emit Transfer(account, address(0), amount); | |
} | |
function _approve(address owner, address spender, uint256 amount) internal { | |
require(owner != address(0), "ERC20: approve from the zero address"); | |
require(spender != address(0), "ERC20: approve to the zero address"); | |
_allowances[owner][spender] = amount; | |
emit Approval(owner, spender, amount); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment