-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 50c7db5
Showing
10 changed files
with
6,756 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
node_modules | ||
.env | ||
coverage | ||
coverage.json | ||
typechain | ||
typechain-types | ||
|
||
#Hardhat files | ||
cache | ||
artifacts | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Sample Hardhat Project | ||
|
||
This project demonstrates a basic Hardhat use case. It comes with a sample contract, a test for that contract, and a script that deploys that contract. | ||
|
||
Try running some of the following tasks: | ||
|
||
```shell | ||
npx hardhat help | ||
npx hardhat test | ||
REPORT_GAS=true npx hardhat test | ||
npx hardhat node | ||
npx hardhat run scripts/deploy.js | ||
``` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,248 @@ | ||
// SPDX-License-Identifier: MIT | ||
// Filosofía Código Contracts based on OpenZeppelin (token/ERC20/ERC20.sol) | ||
|
||
pragma solidity ^0.8.0; | ||
|
||
interface IERC20 { | ||
event Transfer(address indexed from, address indexed to, uint256 value); | ||
event Approval(address indexed owner, address indexed spender, uint256 value); | ||
function totalSupply() external view returns (uint256); | ||
function balanceOf(address account) external view returns (uint256); | ||
function transfer(address to, 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 from, | ||
address to, | ||
uint256 amount | ||
) external returns (bool); | ||
} | ||
|
||
interface IERC20Metadata is IERC20 { | ||
function name() external view returns (string memory); | ||
function symbol() external view returns (string memory); | ||
function decimals() external view returns (uint8); | ||
} | ||
|
||
abstract contract Context { | ||
function _msgSender() internal view virtual returns (address) { | ||
return msg.sender; | ||
} | ||
|
||
function _msgData() internal view virtual returns (bytes calldata) { | ||
return msg.data; | ||
} | ||
} | ||
|
||
abstract contract Ownable is Context { | ||
address private _owner; | ||
|
||
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); | ||
|
||
constructor() { | ||
_transferOwnership(_msgSender()); | ||
} | ||
|
||
modifier onlyOwner() { | ||
_checkOwner(); | ||
_; | ||
} | ||
|
||
function owner() public view virtual returns (address) { | ||
return _owner; | ||
} | ||
|
||
function _checkOwner() internal view virtual { | ||
require(owner() == _msgSender(), "Ownable: caller is not the owner"); | ||
} | ||
|
||
function renounceOwnership() public virtual onlyOwner { | ||
_transferOwnership(address(0)); | ||
} | ||
|
||
function transferOwnership(address newOwner) public virtual onlyOwner { | ||
require(newOwner != address(0), "Ownable: new owner is the zero address"); | ||
_transferOwnership(newOwner); | ||
} | ||
|
||
function _transferOwnership(address newOwner) internal virtual { | ||
address oldOwner = _owner; | ||
_owner = newOwner; | ||
emit OwnershipTransferred(oldOwner, newOwner); | ||
} | ||
} | ||
|
||
contract ERC20 is Context, IERC20, IERC20Metadata, Ownable { | ||
mapping(address => uint256) internal _balances; | ||
|
||
mapping(address => mapping(address => uint256)) private _allowances; | ||
|
||
uint256 private _totalSupply; | ||
|
||
string private _name; | ||
string private _symbol; | ||
|
||
constructor(string memory name_, string memory symbol_) { | ||
_name = name_; | ||
_symbol = symbol_; | ||
} | ||
|
||
function name() public view virtual override returns (string memory) { | ||
return _name; | ||
} | ||
|
||
function symbol() public view virtual override returns (string memory) { | ||
return _symbol; | ||
} | ||
|
||
function decimals() public view virtual override returns (uint8) { | ||
return 18; | ||
} | ||
|
||
function totalSupply() public view virtual override returns (uint256) { | ||
return _totalSupply; | ||
} | ||
|
||
function balanceOf(address account) public view virtual override returns (uint256) { | ||
return _balances[account]; | ||
} | ||
|
||
function transfer(address to, uint256 amount) public virtual override returns (bool) { | ||
address owner = _msgSender(); | ||
_transfer(owner, to, amount); | ||
return true; | ||
} | ||
|
||
function allowance(address owner, address spender) public view virtual override returns (uint256) { | ||
return _allowances[owner][spender]; | ||
} | ||
|
||
function approve(address spender, uint256 amount) public virtual override returns (bool) { | ||
address owner = _msgSender(); | ||
_approve(owner, spender, amount); | ||
return true; | ||
} | ||
|
||
function transferFrom( | ||
address from, | ||
address to, | ||
uint256 amount | ||
) public virtual override returns (bool) { | ||
address spender = _msgSender(); | ||
_spendAllowance(from, spender, amount); | ||
_transfer(from, to, amount); | ||
return true; | ||
} | ||
|
||
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { | ||
address owner = _msgSender(); | ||
_approve(owner, spender, allowance(owner, spender) + addedValue); | ||
return true; | ||
} | ||
|
||
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { | ||
address owner = _msgSender(); | ||
uint256 currentAllowance = allowance(owner, spender); | ||
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); | ||
unchecked { | ||
_approve(owner, spender, currentAllowance - subtractedValue); | ||
} | ||
|
||
return true; | ||
} | ||
|
||
function _transfer( | ||
address from, | ||
address to, | ||
uint256 amount | ||
) internal virtual { | ||
require(from != address(0), "ERC20: transfer from the zero address"); | ||
require(to != address(0), "ERC20: transfer to the zero address"); | ||
|
||
_beforeTokenTransfer(from, to, amount); | ||
|
||
uint256 fromBalance = _balances[from]; | ||
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); | ||
unchecked { | ||
_balances[from] = fromBalance - amount; | ||
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by | ||
// decrementing then incrementing. | ||
_balances[to] += amount; | ||
} | ||
|
||
emit Transfer(from, to, amount); | ||
|
||
_afterTokenTransfer(from, to, amount); | ||
} | ||
|
||
function _mint(address account, uint256 amount) internal virtual { | ||
require(account != address(0), "ERC20: mint to the zero address"); | ||
|
||
_beforeTokenTransfer(address(0), account, amount); | ||
|
||
_totalSupply += amount; | ||
unchecked { | ||
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. | ||
_balances[account] += amount; | ||
} | ||
emit Transfer(address(0), account, amount); | ||
|
||
_afterTokenTransfer(address(0), account, amount); | ||
} | ||
|
||
function _burn(address account, uint256 amount) internal virtual { | ||
require(account != address(0), "ERC20: burn from the zero address"); | ||
|
||
_beforeTokenTransfer(account, address(0), amount); | ||
|
||
uint256 accountBalance = _balances[account]; | ||
require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); | ||
unchecked { | ||
_balances[account] = accountBalance - amount; | ||
// Overflow not possible: amount <= accountBalance <= totalSupply. | ||
_totalSupply -= amount; | ||
} | ||
|
||
emit Transfer(account, address(0), amount); | ||
|
||
_afterTokenTransfer(account, address(0), amount); | ||
} | ||
|
||
function _approve( | ||
address owner, | ||
address spender, | ||
uint256 amount | ||
) internal virtual { | ||
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); | ||
} | ||
|
||
function _spendAllowance( | ||
address owner, | ||
address spender, | ||
uint256 amount | ||
) internal virtual { | ||
uint256 currentAllowance = allowance(owner, spender); | ||
if (currentAllowance != type(uint256).max) { | ||
require(currentAllowance >= amount, "ERC20: insufficient allowance"); | ||
unchecked { | ||
_approve(owner, spender, currentAllowance - amount); | ||
} | ||
} | ||
} | ||
|
||
function _beforeTokenTransfer( | ||
address from, | ||
address to, | ||
uint256 amount | ||
) internal virtual {} | ||
|
||
function _afterTokenTransfer( | ||
address from, | ||
address to, | ||
uint256 amount | ||
) internal virtual {} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
// SPDX-License-Identifier: MIT | ||
// Filosofía Código Contracts based on OpenZeppelin (token/ERC20/ERC20.sol) | ||
|
||
pragma solidity ^0.8.0; | ||
|
||
import "./ERC20.sol"; | ||
|
||
interface ISwapRouter { | ||
function factory() external pure returns (address); | ||
} | ||
|
||
interface ISwapFactory { | ||
function createPair(address tokenA, address tokenB) external returns (address pair); | ||
} | ||
|
||
abstract contract FeeToken is ERC20 | ||
{ | ||
mapping(address => bool) public isTaxless; | ||
address public vaultAddress; | ||
bool public isFeeActive; | ||
address public pair; | ||
uint[] public fees; | ||
uint public feeDecimals = 2; | ||
|
||
constructor(string memory name, string memory symbol, | ||
address _vaultAddress, | ||
uint buyFee, uint sellFee, uint p2pFee, | ||
address routerAddress, | ||
address baseTokenAddress) ERC20(name, symbol) | ||
{ | ||
ISwapRouter router = ISwapRouter(routerAddress); | ||
pair = ISwapFactory(router.factory()).createPair(address(this), baseTokenAddress); | ||
|
||
vaultAddress = _vaultAddress; | ||
|
||
isTaxless[msg.sender] = true; | ||
isTaxless[address(this)] = true; | ||
isTaxless[vaultAddress] = true; | ||
isTaxless[address(0)] = true; | ||
|
||
fees[0] = buyFee; | ||
fees[1] = sellFee; | ||
fees[2] = p2pFee; | ||
|
||
isFeeActive = true; | ||
} | ||
|
||
function _transfer( | ||
address from, | ||
address to, | ||
uint256 amount | ||
) internal virtual override { | ||
uint256 feesCollected; | ||
if (isFeeActive && !isTaxless[from] && !isTaxless[to]) { | ||
bool sell = to == pair; | ||
bool p2p = from != pair && to != pair; | ||
uint feeIndex = p2p ? 2 : sell ? 1 : 0; | ||
feesCollected = (amount * fees[feeIndex]) / (10**(feeDecimals + 2)); | ||
} | ||
|
||
amount -= feesCollected; | ||
_balances[from] -= feesCollected; | ||
_balances[vaultAddress] += feesCollected; | ||
|
||
emit Transfer(from, vaultAddress, amount); | ||
|
||
super._transfer(from, to, amount); | ||
} | ||
|
||
function setTaxless(address account, bool value) external onlyOwner { | ||
isTaxless[account] = value; | ||
} | ||
|
||
function setFeeActive(bool value) external onlyOwner { | ||
isFeeActive = value; | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// SPDX-License-Identifier: MIT | ||
// Filosofía Código Contracts based on OpenZeppelin (token/ERC20/ERC20.sol) | ||
|
||
pragma solidity 0.8.17; | ||
|
||
import "./FeeToken.sol"; | ||
|
||
contract MyFeeToken is FeeToken | ||
{ | ||
constructor() FeeToken("My Token", "MTKN", | ||
address(this), | ||
200, 100, 0, | ||
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, | ||
0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48) | ||
{ | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
require("@nomicfoundation/hardhat-toolbox"); | ||
|
||
/** @type import('hardhat/config').HardhatUserConfig */ | ||
module.exports = { | ||
solidity: "0.8.17", | ||
}; |
Oops, something went wrong.