/**
* Taτsu: building decentralized future.
*
* Bittensor-powered ecosystem of decentralized AI applications,
* with API access and Bittensor Subnet as integral components.
*
* https://tatsuecosystem.com/
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;
/********************************************************************************************
LIBRARY
********************************************************************************************/
/**
* @title Address Library
*
* @notice Collection of functions providing utility for interacting with addresses.
*/
library Address {
// ERROR
/**
* @notice Error indicating insufficient balance while performing an operation.
*
* @param account Address where the balance is insufficient.
*/
error AddressInsufficientBalance(address account);
/**
* @notice Error indicating an attempt to interact with a contract having empty code.
*
* @param target Address of the contract with empty code.
*/
error AddressEmptyCode(address target);
/**
* @notice Error indicating a failed internal call.
*/
error FailedInnerCall();
// FUNCTION
/**
* @notice Calls a function on a specified address without transferring value.
*
* @param target Address on which the function will be called.
* @param data Encoded data of the function call.
*
* @return returndata Result of the function call.
*
* @dev The `target` must be a contract address and this function must be calling
* `target` with `data` not reverting.
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0);
}
/**
* @notice Calls a function on a specified address with a specified value.
*
* @param target Address on which the function will be called.
* @param data Encoded data of the function call.
* @param value Value to be sent in the call.
*
* @return returndata Result of the function call.
*
* @dev This function ensure that the calling contract actually have Ether balance
* of at least `value` and that the called Solidity function is a `payable`. Should
* throw if caller does have insufficient balance.
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
if (address(this).balance < value) {
revert AddressInsufficientBalance(address(this));
}
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @notice Verifies the result of a function call and handles errors if any.
*
* @param target Address on which the function was called.
* @param success Boolean indicating the success of the function call.
* @param returndata Result data of the function call.
*
* @return Result of the function call or reverts with an appropriate error.
*
* @dev This help to verify that a low level call to smart-contract was successful
* and will reverts if the target was not a contract. For unsuccessful call, this
* will bubble up the revert reason (falling back to {FailedInnerCall}). Should
* throw if both the returndata and target.code length are 0 when `success` is true.
*/
function verifyCallResultFromTarget(address target, bool success, bytes memory returndata) internal view returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
if (returndata.length == 0 && target.code.length == 0) {
revert AddressEmptyCode(target);
}
return returndata;
}
}
/**
* @notice Reverts with decoded revert data or FailedInnerCall if no revert
* data is available.
*
* @param returndata Result data of a failed function call.
*
* @dev Should throw if returndata length is 0.
*/
function _revert(bytes memory returndata) private pure {
if (returndata.length > 0) {
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert FailedInnerCall();
}
}
}
/**
* @title SafeERC20 Library
*
* @notice Collection of functions providing utility for safe operations with
* ERC20 tokens.
*
* @dev This is mainly for the usage of token that throw on failure (when the
* token contract returns false). Tokens that return no value (and instead revert
* or throw on failure) are also supported where non-reverting calls are assumed
* to be a successful transaction.
*/
library SafeERC20 {
// LIBRARY
using Address for address;
// ERROR
/**
* @notice Error indicating a failed operation during an ERC-20 token transfer.
*
* @param token Address of the token contract.
*/
error SafeERC20FailedOperation(address token);
// FUNCTION
/**
* @notice Safely transfers tokens.
*
* @param token ERC20 token interface.
* @param to Address to which the tokens will be transferred.
* @param value Amount of tokens to be transferred.
*
* @dev Transfer `value` amount of `token` from the calling contract to `to` where
* non-reverting calls are assumed to be successful if `token` returns no value.
*/
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value)));
}
/**
* @notice Calls a function on a token contract and reverts if the operation fails.
*
* @param token ERC20 token interface.
* @param data Encoded data of the function call.
*
* @dev This imitates a Solidity high-level call such as a regular function call to
* a contract while relaxing the requirement on the return value.
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
bytes memory returndata = address(token).functionCall(data);
if (returndata.length != 0 && !abi.decode(returndata, (bool))) {
revert SafeERC20FailedOperation(address(token));
}
}
}
/********************************************************************************************
INTERFACE
********************************************************************************************/
/**
* @title Router Interface
*
* @notice Interface of the Router contract, providing functions to interact with
* Router contract that is derived from Uniswap V2 Router.
*
* @dev See https://docs.uniswap.org/contracts/v2/reference/smart-contracts/router-02
*/
interface IRouter {
// FUNCTION
/**
* @notice Get the address of the Wrapped Ether (WETH) token.
*
* @return The address of the WETH token.
*/
function WETH() external pure returns (address);
/**
* @notice Get the address of the linked Factory contract.
*
* @return The address of the Factory contract.
*/
function factory() external pure returns (address);
/**
* @notice Swaps an exact amount of tokens for ETH, supporting
* tokens that implement fee-on-transfer mechanisms.
*
* @param amountIn The exact amount of input tokens for the swap.
* @param amountOutMin The minimum acceptable amount of ETH to receive in the swap.
* @param path An array of token addresses representing the token swap path.
* @param to The recipient address that will receive the swapped ETH.
* @param deadline The timestamp by which the transaction must be executed to be
* considered valid.
*
* @dev This function swaps a specific amount of tokens for ETH on a specified path,
* ensuring a minimum amount of output ETH.
*/
function swapExactTokensForETHSupportingFeeOnTransferTokens(uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline) external;
/**
* @notice Swaps a precise amount of ETH for tokens, supporting tokens with fee-on-transfer mechanisms.
*
* @param amountOutMin The minimum acceptable amount of output tokens expected from the swap.
* @param path An array of token addresses representing the token swap path.
* @param to The recipient address that will receive the swapped tokens.
* @param deadline The timestamp by which the transaction must be executed to be considered valid.
*
* @dev This function performs a direct swap of a specified amount of ETH for tokens based on the provided
* path and minimum acceptable output token amount.
*/
function swapExactETHForTokensSupportingFeeOnTransferTokens(uint256 amountOutMin, address[] calldata path, address to, uint256 deadline) external payable;
}
/**
* @title Factory Interface
*
* @notice Interface of the Factory contract, providing functions to interact with
* Factory contract that is derived from Uniswap V2 Factory.
*
* @dev See https://docs.uniswap.org/contracts/v2/reference/smart-contracts/factory
*/
interface IFactory {
// FUNCTION
/**
* @notice Create a new token pair for two given tokens on Uniswap V2-based factory.
*
* @param tokenA The address of the first token.
* @param tokenB The address of the second token.
*
* @return pair The address of the created pair for the given tokens.
*/
function createPair(address tokenA, address tokenB) external returns (address pair);
/**
* @notice Get the address of the pair for two tokens on the decentralized exchange.
*
* @param tokenA The address of the first token.
* @param tokenB The address of the second token.
*
* @return pair The address of the pair corresponding to the provided tokens.
*/
function getPair(address tokenA, address tokenB) external view returns (address pair);
}
/**
* @title Pair Interface
*
* @notice Interface of the Pair contract in a decentralized exchange based on the
* Pair contract that is derived from Uniswap V2 Pair.
*
* @dev See https://docs.uniswap.org/contracts/v2/reference/smart-contracts/pair
*/
interface IPair {
// FUNCTION
/**
* @notice Get the address of the first token in the pair.
*
* @return The address of the first token.
*/
function token0() external view returns (address);
/**
* @notice Get the address of the second token in the pair.
*
* @return The address of the second token.
*/
function token1() external view returns (address);
}
/**
* @title ERC20 Token Standard Interface
*
* @notice Interface of the ERC-20 standard token as defined in the ERC.
*
* @dev See https://eips.ethereum.org/EIPS/eip-20
*/
interface IERC20 {
// EVENT
/**
* @notice Emitted when `value` tokens are transferred from
* one account (`from`) to another (`to`).
*
* @param from The address tokens are transferred from.
* @param to The address tokens are transferred to.
* @param value The amount of tokens transferred.
*
* @dev The `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @notice Emitted when the allowance of a `spender` for an `owner`
* is set by a call to {approve}.
*
* @param owner The address allowing `spender` to spend on their behalf.
* @param spender The address allowed to spend tokens on behalf of `owner`.
* @param value The allowance amount set for `spender`.
*
* @dev The `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
// FUNCTION
/**
* @notice Returns the value of tokens in existence.
*
* @return The value of the total supply of tokens.
*
* @dev This should get the total token supply.
*/
function totalSupply() external view returns (uint256);
/**
* @notice Returns the value of tokens owned by `account`.
*
* @param account The address to query the balance for.
*
* @return The token balance of `account`.
*
* @dev This should get the token balance of a specific account.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @notice Moves a `value` amount of tokens from the caller's account to `to`.
*
* @param to The address to transfer tokens to.
* @param value The amount of tokens to be transferred.
*
* @return A boolean indicating whether the transfer was successful or not.
*
* @dev This should transfer tokens to a specified address and emits a {Transfer} event.
*/
function transfer(address to, uint256 value) external returns (bool);
/**
* @notice Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}.
*
* @param owner The address allowing `spender` to spend on their behalf.
* @param spender The address allowed to spend tokens on behalf of `owner`.
*
* @return The allowance amount for `spender`.
*
* @dev The return value should be zero by default and
* changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @notice Sets a `value` amount of tokens as the allowance of `spender` over the
* caller's tokens.
*
* @param spender The address allowed to spend tokens on behalf of the sender.
* @param value The allowance amount for `spender`.
*
* @return A boolean indicating whether the approval was successful or not.
*
* @dev This should approve `spender` to spend a specified amount of tokens
* on behalf of the sender and emits an {Approval} event.
*/
function approve(address spender, uint256 value) external returns (bool);
/**
* @notice Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` is then deducted from the caller's allowance.
*
* @param from The address to transfer tokens from.
* @param to The address to transfer tokens to.
* @param value The amount of tokens to be transferred.
*
* @return A boolean indicating whether the transfer was successful or not.
*
* @dev This should transfer tokens from one address to another after
* spending caller's allowance and emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 value) external returns (bool);
}
/**
* @title ERC20 Token Metadata Interface
*
* @notice Interface for the optional metadata functions of the ERC-20 standard as defined in the ERC.
*
* @dev It extends the IERC20 interface. See https://eips.ethereum.org/EIPS/eip-20
*/
interface IERC20Metadata is IERC20 {
// FUNCTION
/**
* @notice Returns the name of the token.
*
* @return The name of the token as a string.
*/
function name() external view returns (string memory);
/**
* @notice Returns the symbol of the token.
*
* @return The symbol of the token as a string.
*/
function symbol() external view returns (string memory);
/**
* @notice Returns the number of decimals used to display the token.
*
* @return The number of decimals as a uint8.
*/
function decimals() external view returns (uint8);
}
/**
* @title ERC20 Token Standard Error Interface
*
* @notice Interface of the ERC-6093 custom errors that defined common errors
* related to the ERC-20 standard token functionalities.
*
* @dev See https://eips.ethereum.org/EIPS/eip-6093
*/
interface IERC20Errors {
// ERROR
/**
* @notice Error indicating that the `sender` has inssufficient `balance` for the operation.
*
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*
* @dev The `needed` value is required to inform user on the needed amount.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @notice Error indicating that the `sender` is invalid for the operation.
*
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @notice Error indicating that the `receiver` is invalid for the operation.
*
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @notice Error indicating that the `spender` does not have enough `allowance` for the operation.
*
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*
* @dev The `needed` value is required to inform user on the needed amount.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @notice Error indicating that the `approver` is invalid for the approval operation.
*
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @notice Error indicating that the `spender` is invalid for the allowance operation.
*
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @title Common Error Interface
*
* @notice Interface of the common errors not specific to ERC-20 functionalities.
*/
interface ICommonError {
// ERROR
/**
* @notice Error indicating that the `current` address cannot be used in this context.
*
* @param current Address used in the context.
*/
error CannotUseCurrentAddress(address current);
/**
* @notice Error indicating that the `current` value cannot be used in this context.
*
* @param current Value used in the context.
*/
error CannotUseCurrentValue(uint256 current);
/**
* @notice Error indicating that the `current` state cannot be used in this context.
*
* @param current Boolean state used in the context.
*/
error CannotUseCurrentState(bool current);
/**
* @notice Error indicating that the `invalid` address provided is not a valid address for this context.
*
* @param invalid Address used in the context.
*/
error InvalidAddress(address invalid);
/**
* @notice Error indicating that the `invalid` value provided is not a valid value for this context.
*
* @param invalid Value used in the context.
*/
error InvalidValue(uint256 invalid);
}
/********************************************************************************************
ACCESS
********************************************************************************************/
/**
* @title Ownable Contract
*
* @notice Abstract contract module implementing ownership functionality through
* inheritance as a basic access control mechanism, where there is an owner account
* that can be granted exclusive access to specific functions.
*
* @dev The initial owner is set to the address provided by the deployer and can
* later be changed with {transferOwnership}.
*/
abstract contract Ownable {
// DATA
address private _owner;
// MODIFIER
/**
* @notice Modifier that allows access only to the contract owner.
*
* @dev Should throw if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
// ERROR
/**
* @notice Error indicating that the `account` is not authorized to perform an operation.
*
* @param account Address used to perform the operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @notice Error indicating that the provided `owner` address is invalid.
*
* @param owner Address used to perform the operation.
*
* @dev Should throw if called by an invalid owner account such as address(0) as an example.
*/
error OwnableInvalidOwner(address owner);
// CONSTRUCTOR
/**
* @notice Initializes the contract setting the `initialOwner` address provided by
* the deployer as the initial owner.
*
* @param initialOwner The address to set as the initial owner.
*
* @dev Should throw an error if called with address(0) as the `initialOwner`.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
// EVENT
/**
* @notice Emitted when ownership of the contract is transferred.
*
* @param previousOwner The address of the previous owner.
* @param newOwner The address of the new owner.
*/
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
// FUNCTION
/**
* @notice Get the address of the smart contract owner.
*
* @return The address of the current owner.
*
* @dev Should return the address of the current smart contract owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @notice Checks if the caller is the owner and reverts if not.
*
* @dev Should throw if the sender is not the current owner of the smart contract.
*/
function _checkOwner() internal view virtual {
if (owner() != msg.sender) {
revert OwnableUnauthorizedAccount(msg.sender);
}
}
/**
* @notice Allows the current owner to renounce ownership and make the
* smart contract ownerless.
*
* @dev This function can only be called by the current owner and will
* render all `onlyOwner` functions inoperable.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @notice Allows the current owner to transfer ownership of the smart contract
* to `newOwner` address.
*
* @param newOwner The address to transfer ownership to.
*
* @dev This function can only be called by the current owner and will render
* all `onlyOwner` functions inoperable to him/her. Should throw if called with
* address(0) as the `newOwner`.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @notice Internal function to transfer ownership of the smart contract
* to `newOwner` address.
*
* @param newOwner The address to transfer ownership to.
*
* @dev This function replace current owner address stored as _owner with
* the address of the `newOwner`.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
/********************************************************************************************
TOKEN
********************************************************************************************/
/**
* @title Tatsu Token Contract
*
* @notice Tatsu is an extended version of ERC-20 standard token that
* includes additional functionalities for ownership control, finalize presale
* and exemption management.
*
* @dev Implements ERC20Metadata, ERC20Errors, and CommonError interfaces, and
* extends Ownable contract.
*/
contract Tatsu is Ownable, IERC20Metadata, IERC20Errors, ICommonError {
// LIBRARY
using SafeERC20 for IERC20;
using Address for address;
// DATA
struct Fee {
uint256 marketing;
}
Fee public buyFee = Fee(20_000);
Fee public sellFee = Fee(30_000);
Fee public transferFee = Fee(0);
Fee public collectedFee = Fee(0);
Fee public redeemedFee = Fee(0);
IRouter public router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
string private constant NAME = "Ta\u03C4su";
string private constant SYMBOL = "TATSU";
uint8 private constant DECIMALS = 18;
uint256 public constant FEEDENOMINATOR = 100_000;
uint256 private _totalSupply;
uint256 public tradeStartTime = 0;
uint256 public totalTriggerZeusBuyback = 0;
uint256 public lastTriggerZeusTimestamp = 0;
uint256 public totalFeeCollected = 0;
uint256 public totalFeeRedeemed = 0;
uint256 public walletLimit = 2_000;
address public projectOwner = 0x38Fb3f48da7c1edCa3978c7e68bBf8D2CAfa2cD1;
address public marketingReceiver = 0xbf871fD9B60AF982b9770ebcb4d84A7c40aA9f75;
address public pair;
bool public limitEnabled = false;
bool public tradeEnabled = false;
bool public isFeeActive = false;
bool public isFeeLocked = false;
bool public isReceiverLocked = false;
bool public inSwap = false;
// MAPPING
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => uint256)) private _allowances;
mapping(address pair => bool) public isPairLP;
mapping(address account => bool) public isExemptFee;
mapping(address account => bool) public isExemptLimit;
mapping(address account => bool) public isBlackListed;
// MODIFIER
/**
* @notice Modifier to mark the start and end of a swapping operation.
*/
modifier swapping() {
inSwap = true;
_;
inSwap = false;
}
// ERROR
/**
* @notice Error indicating that address has already been blacklisted.
*/
error AccountBlacklisted();
/**
* @notice Error indicating that balance exceed max wallet limit.
*/
error MaxWalletLimitExceed(uint256 balance, uint256 limit);
/**
* @notice Error indicating that trading has not been enabled yet.
*/
error TradeNotYetEnabled();
/**
* @notice Error indicating that trading has already been enabled at a specific `timestamp`.
*
* @param currentState The current state of trading.
* @param timestamp The timestamp when trading was enabled.
*
* @dev The `currentState` is required to inform user of the current state of trading.
*/
error TradeAlreadyEnabled(bool currentState, uint256 timestamp);
/**
* @notice Error indicating that a certain state is already in its intended condition.
*
* @param stateType The type of state that is already in its current state.
* @param state The current state value that indicates its already active status.
*
* @dev The `currentState` is required to inform user of the current state of trading.
*/
error AlreadyCurrentState(string stateType, bool state);
/**
* @notice Error indicating an invalid total fee compared to the maximum allowed.
*
* @param current The current total fee.
* @param max The maximum allowed total fee.
*
* @dev The `max` is required to inform user of the maximum value allowed.
*/
error InvalidTotalFee(uint256 current, uint256 max);
/**
* @notice Error indicating an invalid amount compared to the maximum allowed.
*
* @param current The current amount used.
* @param max The maximum amount allowed to be used.
*
* @dev The `max` is required to inform user of the maximum value allowed.
*/
error CannotRedeemMoreThanAllowedTreshold(uint256 current, uint256 max);
/**
* @notice Error indicating that the native token cannot be withdrawn from the smart contract.
*/
error CannotWithdrawNativeToken();
/**
* @notice Error indicating that fees have been locked and cannot be modified.
*/
error FeeLocked();
/**
* @notice Error indicating that wallet limti have been removed and cannot be modified.
*/
error WalletLimitAlreadyRemoved();
/**
* @notice Error indicating that presale has been finalized and cannot be modified.
*/
error AlreadyFinalized();
/**
* @notice Error indicating that receivers have been locked and cannot be modified.
*/
error ReceiverLocked();
/**
* @notice Error indicating that the receiver cannot initiate transfer of Ether.
*
* @dev Should throw if called by the receiver address.
*/
error ReceiverCannotInitiateTransferEther();
/**
* @notice Error indicating that only a wallet address is allowed to perform the action.
*
* @dev Should throw if called to use an address that is not believed to be a wallet.
*/
error OnlyWalletAddressAllowed();
/**
* @notice Error indicating that cannot use all the current values to perform the action.
*
* @dev Should throw if called to using all the current values.
*/
error CannotUseAllCurrentValue();
// CONSTRUCTOR
/**
* @notice Constructs the Tatsu contract and initializes both owner
* and project owner addresses. Deployer will receive 1,000,000 tokens after
* the smart contract was deployed.
*
* @dev If deployer is not the project owner, then deployer will be exempted
* from fees along with the project owner and router.
*/
constructor() Ownable (msg.sender) {
isExemptFee[projectOwner] = true;
isExemptLimit[projectOwner] = true;
isExemptFee[address(router)] = true;
isExemptLimit[address(router)] = true;
if (projectOwner != msg.sender) {
isExemptFee[msg.sender] = true;
isExemptLimit[msg.sender] = true;
}
uint256 fullSupply = 1_000_000;
uint256 supply_25 = fullSupply * 25_000 / FEEDENOMINATOR;
uint256 supply_remaining = fullSupply - supply_25;
_mint(address(this), supply_25 * 10**DECIMALS);
_mint(msg.sender, supply_remaining * 10**DECIMALS);
collectedFee.marketing += balanceOf(address(this));
totalFeeCollected += balanceOf(address(this));
pair = IFactory(router.factory()).createPair(address(this), router.WETH());
isPairLP[pair] = true;
isExemptLimit[pair] = true;
}
// EVENT
/**
* @notice Emits when an manual redemption occurs, distributing fees
* and redeeming a specific amount.
*
* @param marketingFeeDistribution The amount distributed for marketing fees.
* @param amountToRedeem The total amount being redeemed.
* @param caller The address that triggered the redemption.
* @param timestamp The timestamp at which the redemption event occurred.
*/
event ManualRedeem(uint256 marketingFeeDistribution, uint256 amountToRedeem, address caller, uint256 timestamp);
/**
* @notice Emitted when the router address is updated.
*
* @param oldRouter The address of the old router.
* @param newRouter The address of the new router.
* @param caller The address that triggered the router update.
* @param timestamp The timestamp when the update occurred.
*/
event UpdateRouter(address oldRouter, address newRouter, address caller, uint256 timestamp);
/**
* @notice Emitted upon setting the status of a specific address type.
*
* @param addressType The type of address status being modified.
* @param account The address of the account whose status is being updated.
* @param oldStatus The previous exemption status.
* @param newStatus The new exemption status.
* @param caller The address that triggered the status update.
* @param timestamp The timestamp when the update occurred.
*/
event SetAddressState(string addressType, address account, bool oldStatus, bool newStatus, address caller, uint256 timestamp);
/**
* @notice Emitted when presale is finalized for the contract.
*
* @param caller The address that triggered the presale finalization.
* @param timestamp The timestamp when presale was finalized.
*/
event FinalizedPresale(address caller, uint256 timestamp);
/**
* @notice Emitted when a lock is applied.
*
* @param lockType The type of lock applied.
* @param caller The address of the caller who applied the lock.
* @param timestamp The timestamp when the lock was applied.
*/
event Lock(string lockType, address caller, uint256 timestamp);
/**
* @notice Emitted when the state of a feature is updated.
*
* @param stateType The type of state being updated.
* @param oldStatus The previous status before the update.
* @param newStatus The new status after the update.
* @param caller The address of the caller who updated the state.
* @param timestamp The timestamp when the update occurred.
*/
event UpdateState(string stateType, bool oldStatus, bool newStatus, address caller, uint256 timestamp);
/**
* @notice Emitted when the state of a feature is updated.
*
* @param feeType The type of fee being updated.
* @param oldFee The previous fee value before the update.
* @param newFee The new fee value after the update.
* @param caller The address of the caller who updated the fee.
* @param timestamp The timestamp when the fee update occurred.
*/
event UpdateFee(string feeType, uint256 oldFee, uint256 newFee, address caller, uint256 timestamp);
/**
* @notice Emitted upon updating a receiver address.
*
* @param receiverType The type of receiver being updated.
* @param oldReceiver The previous receiver address before the update.
* @param newReceiver The new receiver address after the update.
* @param caller The address of the caller who updated the receiver address.
* @param timestamp The timestamp when the receiver address was updated.
*/
event UpdateReceiver(string receiverType, address oldReceiver, address newReceiver, address caller, uint256 timestamp);
/**
* @notice Emitted when wallet limit removed for the contract.
*
* @param caller The address that triggered the wallet limit removal.
* @param timestamp The timestamp when wallet limit removed.
*/
event WalletLimitRemoved(address caller, uint256 timestamp);
// FUNCTION
/* General */
/**
* @notice Allows the contract to receive Ether.
*
* @dev This is a required feature to have in order to allow the smart contract
* to be able to receive ether from the swap.
*/
receive() external payable {}
/**
* @notice Withdraws tokens or Ether from the contract to a specified address.
*
* @param tokenAddress The address of the token to withdraw.
* @param amount The amount of tokens or Ether to withdraw.
*
* @dev You need to use address(0) as `tokenAddress` to withdraw Ether and
* use 0 as `amount` to withdraw the whole balance amount in the smart contract.
* Anyone can trigger this function to send the fund to the `marketingReceiver`.
* Only `marketingReceiver` address will not be able to trigger this function to
* withdraw Ether from the smart contract by himself/herself. Should throw if try
* to withdraw any amount of native token from the smart contract. Distribution
* of native token can only be done through manualRedeem function.
*/
function wTokens(address tokenAddress, uint256 amount) external {
uint256 toTransfer = amount;
address receiver = marketingReceiver;
if (tokenAddress == address(this)) {
if (totalFeeCollected - totalFeeRedeemed >= balanceOf(address(this))) {
revert CannotWithdrawNativeToken();
}
if (amount > balanceOf(address(this))) {
revert ERC20InsufficientBalance(address(this), balanceOf(address(this)), amount);
}
if (amount == 0) {
toTransfer = IERC20(tokenAddress).balanceOf(address(this));
}
_update(address(this), receiver, toTransfer);
} else if (tokenAddress == address(0)) {
if (amount == 0) {
toTransfer = address(this).balance;
}
if (msg.sender == receiver) {
revert ReceiverCannotInitiateTransferEther();
}
payable(receiver).transfer(toTransfer);
} else {
if (amount == 0) {
toTransfer = IERC20(tokenAddress).balanceOf(address(this));
}
IERC20(tokenAddress).safeTransfer(receiver, toTransfer);
}
}
/**
* @notice Finallizes presale and activate functionality for the token contract.
*
* @dev Only the smart contract owner can trigger this function and should throw if
* presale already finalized. Can only be triggered once and emits a FinalizedPresale
* event upon successful transaction. This function also set necessary states and
* emitting an event upon success.
*/
function enableTrade() external onlyOwner {
if (tradeEnabled) {
revert TradeAlreadyEnabled(tradeEnabled, tradeStartTime);
}
if (tradeStartTime != 0) {
revert AlreadyFinalized();
}
if (isFeeActive) {
revert AlreadyCurrentState("isFeeActive", isFeeActive);
}
tradeEnabled = true;
limitEnabled = true;
isFeeActive = true;
tradeStartTime = block.timestamp;
emit FinalizedPresale(msg.sender, block.timestamp);
}
/**
* @notice Calculates the circulating supply of the token.
*
* @return The circulating supply of the token.
*
* @dev This should only return the token supply that is in circulation,
* which excluded the potential balance that could be in both address(0)
* and address(0xdead) that are already known to not be out of circulation.
*/
function circulatingSupply() public view returns (uint256) {
return totalSupply() - balanceOf(address(0xdead)) - balanceOf(address(0));
}
/* Check */
/**
* @notice Checks the max wallet limit for an address based on the current
* block timestamp.
*
* @return The limit based on circulating supply of tokens.
*/
function checkWalletLimit() internal view returns (uint256) {
return circulatingSupply() * walletLimit / FEEDENOMINATOR;
}
/* Redeem */
/**
* @param amountToRedeem The amount of tokens to be redeemed and distributed
* for marketing.
*
* @dev This function calculates the distribution of tokens for marketing
* redeems the specified amount, and triggers a swap for ETH. This function
* can be used for both auto and manual redeem of the specified amount.
*/
function manualRedeem(uint256 amountToRedeem) external swapping {
uint256 totalToRedeem = totalFeeCollected - totalFeeRedeemed;
if (amountToRedeem > circulatingSupply() * 5_000 / FEEDENOMINATOR) {
revert CannotRedeemMoreThanAllowedTreshold(amountToRedeem, circulatingSupply() * 5_000 / FEEDENOMINATOR);
}
if (amountToRedeem > totalToRedeem) {
return;
}
uint256 marketingToRedeem = collectedFee.marketing - redeemedFee.marketing;
uint256 marketingFeeDistribution = amountToRedeem * marketingToRedeem / totalToRedeem;
redeemedFee.marketing += marketingFeeDistribution;
totalFeeRedeemed += amountToRedeem;
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = router.WETH();
_approve(address(this), address(router), amountToRedeem);
emit ManualRedeem(marketingFeeDistribution, amountToRedeem, msg.sender, block.timestamp);
router.swapExactTokensForETHSupportingFeeOnTransferTokens(
marketingFeeDistribution,
0,
path,
marketingReceiver,
block.timestamp
);
}
/* Update */
/**
* @notice Remove wallet limit.
*
* @dev This function will emits the WalletLimitRemoved event.
*/
function removeWalletLimit() external onlyOwner {
if (!limitEnabled) {
revert WalletLimitAlreadyRemoved();
}
limitEnabled = false;
emit WalletLimitRemoved(msg.sender, block.timestamp);
}
/**
* @notice Locks the fee mechanism, preventing further changes once locked.
*
* @dev This function will emits the Lock event.
*/
function lockFees() external onlyOwner {
if (isFeeLocked) {
revert FeeLocked();
}
isFeeLocked = true;
emit Lock("isFeeLocked", msg.sender, block.timestamp);
}
/**
* @notice Locks the receivers, preventing further changes once locked.
*
* @dev This function will emits the Lock event.
*/
function lockReceivers() external onlyOwner {
if (isReceiverLocked) {
revert ReceiverLocked();
}
isReceiverLocked = true;
emit Lock("isReceiverLocked", msg.sender, block.timestamp);
}
/**
* @notice Updates the status of fee activation, allowing toggling the fee mechanism.
* a certain threshold.
*
* @param newStatus The new status for fee activation.
*
* @dev This function will emits the UpdateState event.
*/
function updateFeeActive(bool newStatus) external onlyOwner {
if (isFeeLocked) {
revert FeeLocked();
}
if (isFeeActive == newStatus) {
revert CannotUseCurrentState(newStatus);
}
bool oldStatus = isFeeActive;
isFeeActive = newStatus;
emit UpdateState("isFeeActive", oldStatus, newStatus, msg.sender, block.timestamp);
}
/**
* @notice Allow the owner to modify marketing fee for buy transactions.
*
* @param newMarketingFee The new marketing fee percentage for buy transactions.
*
* @dev This function will emits the UpdateFee event and should throw if triggered
* with the current value or if the fee was locked.
*/
function updateBuyFee(uint256 newMarketingFee) external onlyOwner {
if (isFeeLocked) {
revert FeeLocked();
}
if (newMarketingFee > 20_000) {
revert InvalidTotalFee(newMarketingFee, 20_000);
}
if (newMarketingFee == buyFee.marketing) {
revert CannotUseAllCurrentValue();
}
uint256 oldMarketingFee = buyFee.marketing;
buyFee.marketing = newMarketingFee;
emit UpdateFee("buyFee - Marketing", oldMarketingFee, newMarketingFee, msg.sender, block.timestamp);
}
/**
* @notice Allow the owner to modify marketing fee for sell transactions.
*
* @param newMarketingFee The new marketing fee percentage for sell transactions.
*
* @dev This function will emits the UpdateFee event and should throw if triggered
* with the current value or if the fee was locked.
*/
function updateSellFee(uint256 newMarketingFee) external onlyOwner {
if (isFeeLocked) {
revert FeeLocked();
}
if (newMarketingFee > 35_000) {
revert InvalidTotalFee(newMarketingFee, 35_000);
}
if (newMarketingFee == sellFee.marketing) {
revert CannotUseAllCurrentValue();
}
uint256 oldMarketingFee = sellFee.marketing;
sellFee.marketing = newMarketingFee;
emit UpdateFee("sellFee - Marketing", oldMarketingFee, newMarketingFee, msg.sender, block.timestamp);
}
/**
* @notice Allow the owner to modify marketing fee for transfer transactions.
*
* @param newMarketingFee The new marketing fee percentage for transfer transactions.
*
* @dev This function will emits the UpdateFee event and should throw if triggered
* with the current value or if the fee was locked.
*/
function updateTransferFee(uint256 newMarketingFee) external onlyOwner {
if (isFeeLocked) {
revert FeeLocked();
}
if (newMarketingFee > 10_000) {
revert InvalidTotalFee(newMarketingFee, 10_000);
}
if (newMarketingFee == transferFee.marketing) {
revert CannotUseAllCurrentValue();
}
uint256 oldMarketingFee = transferFee.marketing;
transferFee.marketing = newMarketingFee;
emit UpdateFee("transferFee - Marketing", oldMarketingFee, newMarketingFee, msg.sender, block.timestamp);
}
/**
* @notice Allow the owner to change the address receiving marketing fees.
*
* @param newMarketingReceiver The new address to receive marketing fees.
*
* @dev This function will emits the UpdateReceiver event and should throw
* if triggered with the current address or if the receiver was locked.
*/
function updateMarketingReceiver(address newMarketingReceiver) external onlyOwner {
if (isReceiverLocked) {
revert ReceiverLocked();
}
if (newMarketingReceiver == address(0)) {
revert InvalidAddress(address(0));
}
if (marketingReceiver == newMarketingReceiver) {
revert CannotUseCurrentAddress(newMarketingReceiver);
}
if (newMarketingReceiver.code.length > 0) {
revert OnlyWalletAddressAllowed();
}
address oldMarketingReceiver = marketingReceiver;
marketingReceiver = newMarketingReceiver;
emit UpdateReceiver("marketingReceiver", oldMarketingReceiver, newMarketingReceiver, msg.sender, block.timestamp);
}
/**
* @notice Allow the owner to set the status of a specified LP pair.
*
* @param lpPair The LP pair address.
* @param newStatus The new status of the LP pair.
*
* @dev This function will emits the SetAddressState event and should throw
* if triggered with the current state for the address or if the lpPair
* address is not a valid pair address.
*/
function setPairLP(address lpPair, bool newStatus) external onlyOwner {
if (isPairLP[lpPair] == newStatus) {
revert CannotUseCurrentState(newStatus);
}
if (IPair(lpPair).token0() != address(this) && IPair(lpPair).token1() != address(this)) {
revert InvalidAddress(lpPair);
}
bool oldStatus = isPairLP[lpPair];
isPairLP[lpPair] = newStatus;
emit SetAddressState("isPairLP", lpPair, oldStatus, newStatus, msg.sender, block.timestamp);
}
/**
* @notice Updates the router address used for token swaps.
*
* @param newRouter The address of the new router contract.
*
* @dev This should also generate the pair address using the factory of the `newRouter` if
* the address of the pair on the new router's factory is address(0).If the new pair address's
* isPairLP status is not yet set to true, this function will automatically set it to true.
*/
function updateRouter(address newRouter) external onlyOwner {
if (newRouter == address(router)) {
revert CannotUseCurrentAddress(newRouter);
}
address oldRouter = address(router);
router = IRouter(newRouter);
emit UpdateRouter(oldRouter, newRouter, msg.sender, block.timestamp);
if (address(IFactory(router.factory()).getPair(address(this), router.WETH())) == address(0)) {
pair = IFactory(router.factory()).createPair(address(this), router.WETH());
if (!isPairLP[pair]) {
isPairLP[pair] = true;
}
if (!isExemptLimit[pair]) {
isExemptLimit[pair] = true;
}
}
}
/**
* @notice Updates the exemption status for fee on a specific account.
*
* @param user The address of the account.
* @param newStatus The new exemption status.
*
* @dev Should throw if the `newStatus` is the exact same state as the current state
* for the `user` address.
*/
function updateExemptFee(address user, bool newStatus) external onlyOwner {
if (isExemptFee[user] == newStatus) { revert CannotUseCurrentState(newStatus); }
bool oldStatus = isExemptFee[user];
isExemptFee[user] = newStatus;
emit SetAddressState("isExemptFee", user, oldStatus, newStatus, msg.sender, block.timestamp);
}
/**
* @notice Updates the exemption status for max wallet limit on a specific account.
*
* @param user The address of the account.
* @param newStatus The new exemption status.
*
* @dev Should throw if the `newStatus` is the exact same state as the current state
* for the `user` address.
*/
function updateExemptLimit(address user, bool newStatus) external onlyOwner {
if (isExemptLimit[user] == newStatus) { revert CannotUseCurrentState(newStatus); }
bool oldStatus = isExemptLimit[user];
isExemptLimit[user] = newStatus;
emit SetAddressState("isExemptLimit", user, oldStatus, newStatus, msg.sender, block.timestamp);
}
/**
* @notice Updates the blacklist status for a specific account.
*
* @param user The address of the account.
* @param newStatus The new blacklist status.
*
* @dev Should throw if the `newStatus` is the exact same state as the current state
* for the `user` address.
*/
function updateBlacklist(address user, bool newStatus) external onlyOwner {
if (isBlackListed[user] == newStatus) { revert CannotUseCurrentState(newStatus); }
bool oldStatus = isBlackListed[user];
isBlackListed[user] = newStatus;
emit SetAddressState("isBlackListed", user, oldStatus, newStatus, msg.sender, block.timestamp);
}
/* Fee */
/**
* @notice Takes the buy fee from the specified address and amount, and distribute
* the fees accordingly.
*
* @param from The address from which the fee is taken.
* @param amount The amount from which the fee is taken.
*
* @return The new amount after deducting the fee.
*/
function takeBuyFee(address from, uint256 amount) internal swapping returns (uint256) {
return takeFee(buyFee, from, amount);
}
/**
* @notice Takes the sell fee from the specified address and amount, and distribute
* the fees accordingly.
*
* @param from The address from which the fee is taken.
* @param amount The amount from which the fee is taken.
*
* @return The new amount after deducting the fee.
*/
function takeSellFee(address from, uint256 amount) internal swapping returns (uint256) {
return takeFee(sellFee, from, amount);
}
/**
* @notice Takes the transfer fee from the specified address and amount, and distribute
* the fees accordingly.
*
* @param from The address from which the fee is taken.
* @param amount The amount from which the fee is taken.
*
* @return The new amount after deducting the fee.
*/
function takeTransferFee(address from, uint256 amount) internal swapping returns (uint256) {
return takeFee(transferFee, from, amount);
}
/**
* @notice Takes the transfer fee from the specified address and amount, and distribute
* the fees accordingly.
*
* @param feeType The type of fee being taken.
* @param from The address from which the fee is taken.
* @param amount The amount from which the fee is taken.
*
* @return The new amount after deducting the fee.
*/
function takeFee(Fee memory feeType, address from, uint256 amount) internal swapping returns (uint256) {
uint256 feeTotal = feeType.marketing;
uint256 feeAmount = amount * feeTotal / FEEDENOMINATOR;
uint256 newAmount = amount - feeAmount;
if (feeAmount > 0) {
tallyFee(feeType, from, feeAmount, feeTotal);
}
return newAmount;
}
/**
* @notice Tally the collected fee for a given fee type and address,
* based on the amount and fee provided.
*
* @param feeType The type of fee being tallied.
* @param from The address from which the fee is collected.
* @param amount The total amount being collected as a fee.
* @param fee The total fee being collected.
*/
function tallyFee(Fee memory feeType, address from, uint256 amount, uint256 fee) internal swapping {
uint256 collectMarketing = amount * feeType.marketing / fee;
tallyCollection(collectMarketing, amount);
_update(from, address(this), amount);
}
/**
* @notice Tally the collected fee for marketing based on
* provided amounts.
*
* @param collectMarketing The amount collected for marketing fees.
* @param amount The total amount collected as a fee.
*/
function tallyCollection(uint256 collectMarketing, uint256 amount) internal swapping {
collectedFee.marketing += collectMarketing;
totalFeeCollected += amount;
}
/* Buyback */
/**
* @notice Triggers a buyback with a specified amount,
* limited to 5 ether per transaction.
*
* @param amount The amount of ETH to be used for the buyback.
*
* @dev This can only be triggered by the smart contract owner.
*/
function triggerZeusBuyback(uint256 amount) external onlyOwner {
if (amount > 5 ether) {
revert InvalidValue(5 ether);
}
totalTriggerZeusBuyback += amount;
lastTriggerZeusTimestamp = block.timestamp;
buyTokens(amount, address(0xdead));
}
/**
* @notice Initiates a buyback by swapping ETH for tokens.
*
* @param amount The amount of ETH to be used for the buyback.
* @param to The address to which the bought tokens will be sent.
*/
function buyTokens(uint256 amount, address to) internal swapping {
if (msg.sender == address(0xdead)) { revert InvalidAddress(address(0xdead)); }
address[] memory path = new address[](2);
path[0] = router.WETH();
path[1] = address(this);
router.swapExactETHForTokensSupportingFeeOnTransferTokens{
value: amount
} (0, path, to, block.timestamp);
}
/* Override */
/**
* @notice Overrides the {transferOwnership} function to update project owner.
*
* @param newOwner The address of the new owner.
*
* @dev Should throw if the `newOwner` is set to the current owner address or address(0xdead).
* This overrides function is just an extended version of the original {transferOwnership}
* function. See {Ownable-transferOwnership} for more information.
*/
function transferOwnership(address newOwner) public override onlyOwner {
if (newOwner == owner()) {
revert CannotUseCurrentAddress(newOwner);
}
if (newOwner == address(0xdead)) {
revert InvalidAddress(newOwner);
}
projectOwner = newOwner;
super.transferOwnership(newOwner);
}
/* ERC20 Standard */
/**
* @notice Returns the name of the token.
*
* @return The name of the token.
*
* @dev This is usually a longer version of the name.
*/
function name() public view virtual returns (string memory) {
return NAME;
}
/**
* @notice Returns the symbol of the token.
*
* @return The symbol of the token.
*
* @dev This is usually a shorter version of the name.
*/
function symbol() public view virtual returns (string memory) {
return SYMBOL;
}
/**
* @notice Returns the number of decimals used for token display purposes.
*
* @return The number of decimals.
*
* @dev This is purely used for user representation of the amount and does not
* affect any of the arithmetic of the smart contract including, but not limited
* to {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual returns (uint8) {
return DECIMALS;
}
/**
* @notice Returns the total supply of tokens.
*
* @return The total supply of tokens.
*
* @dev See {IERC20-totalSupply} for more information.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @notice Returns the balance of tokens for a given account.
*
* @param account The address of the account to check.
*
* @return The token balance of the account.
*
* @dev See {IERC20-balanceOf} for more information.
*/
function balanceOf(address account) public view virtual returns (uint256) {
return _balances[account];
}
/**
* @notice Transfers tokens from the sender to a specified recipient.
*
* @param to The address of the recipient.
* @param value The amount of tokens to transfer.
*
* @return A boolean indicating whether the transfer was successful or not.
*
* @dev See {IERC20-transfer} for more information.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address provider = msg.sender;
_transfer(provider, to, value);
return true;
}
/**
* @notice Returns the allowance amount that a spender is allowed to spend on behalf of a provider.
*
* @param provider The address allowing spending.
* @param spender The address allowed to spend tokens.
*
* @return The allowance amount for the spender.
*
* @dev See {IERC20-allowance} for more information.
*/
function allowance(address provider, address spender) public view virtual returns (uint256) {
return _allowances[provider][spender];
}
/**
* @notice Approves a spender to spend a certain amount of tokens on behalf of the sender.
*
* @param spender The address allowed to spend tokens.
* @param value The allowance amount for the spender.
*
* @return A boolean indicating whether the approval was successful or not.
*
* @dev See {IERC20-approve} for more information.
*/
function approve(address spender, uint256 value) public virtual returns (bool) {
address provider = msg.sender;
_approve(provider, spender, value);
return true;
}
/**
* @notice Transfers tokens from one address to another on behalf of a spender.
*
* @param from The address to transfer tokens from.
* @param to The address to transfer tokens to.
* @param value The amount of tokens to transfer.
*
* @return A boolean indicating whether the transfer was successful or not.
*
* @dev See {IERC20-transferFrom} for more information.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = msg.sender;
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @notice Internal function to handle token transfers with additional checks.
*
* @param from The address tokens are transferred from.
* @param to The address tokens are transferred to.
* @param value The amount of tokens to transfer.
*
* @dev This internal function is equivalent to {transfer}, and thus can be used for other functions
* such as implementing automatic token fees, slashing mechanisms, etc. Since this function is not
* virtual, {_update} should be overridden instead. This function can only be called if the address
* for `from` and `to` are not address(0) and the sender should at least have a balance of `value`.
* It also enforces various conditions including validations for trade status, fees, exemptions,
* and redemption.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
if (!tradeEnabled) {
if (!isExemptFee[from] && !isExemptFee[to]) {
revert TradeNotYetEnabled();
}
}
if (inSwap || isExemptFee[from] || isExemptFee[to]) {
return _update(from, to, value);
}
uint256 newValue = value;
if (isFeeActive && !isExemptFee[from] && !isExemptFee[to]) {
newValue = _beforeTokenTransfer(from, to, value);
}
if (limitEnabled && !isExemptLimit[to] && balanceOf(to) + newValue > checkWalletLimit()) {
revert MaxWalletLimitExceed(balanceOf(to) + newValue, checkWalletLimit());
}
if (isBlackListed[from]) {
revert AccountBlacklisted();
}
_update(from, to, newValue);
}
/**
* @notice Internal function called before token transfer, applying fee mechanisms
* based on transaction specifics.
*
* @param from The address from which tokens are being transferred.
* @param to The address to which tokens are being transferred.
* @param amount The amount of tokens being transferred.
*
* @return The modified amount after applying potential fees.
*
* @dev This function calculates and applies fees before executing token transfers
* based on the transaction details and address types.
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal swapping virtual returns (uint256) {
if (isPairLP[from] && (buyFee.marketing > 0)) {
return takeBuyFee(from, amount);
}
if (isPairLP[to] && (sellFee.marketing > 0)) {
return takeSellFee(from, amount);
}
if (!isPairLP[from] && !isPairLP[to] && (transferFee.marketing > 0)) {
return takeTransferFee(from, amount);
}
return amount;
}
/**
* @notice Internal function to update token balances during transfers.
*
* @param from The address tokens are transferred from.
* @param to The address tokens are transferred to.
* @param value The amount of tokens to transfer.
*
* @dev This function is used internally to transfer a `value` amount of token from
* `from` address to `to` address. This function is also used for mints if `from`
* is the zero address and for burns if `to` is the zero address.
*
* IMPORTANT: All customizations that are required for transfers, mints, and burns
* should be done by overriding this function.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
_totalSupply -= value;
}
} else {
unchecked {
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @notice Internal function to mint tokens and update the total supply.
*
* @param account The address to mint tokens to.
* @param value The amount of tokens to mint.
*
* @dev The `account` address cannot be address(0) because it does not make any sense to mint to it.
* Since this function is not virtual, {_update} should be overridden instead for customization.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @notice Internal function to set an allowance for a `spender` to spend a specific `value` of tokens
* on behalf of a `provider`.
*
* @param provider The address allowing spending.
* @param spender The address allowed to spend tokens.
* @param value The allowance amount for the spender.
*
* @dev This internal function is equivalent to {approve}, and thus can be used for other functions
* such as setting automatic allowances for certain subsystems, etc.
*
* IMPORTANT: This function internally calls {_approve} with the emitEvent parameter set to `true`.
*/
function _approve(address provider, address spender, uint256 value) internal {
_approve(provider, spender, value, true);
}
/**
* @notice Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* @param provider The address allowing spending.
* @param spender The address allowed to spend tokens.
* @param value The allowance amount for the spender.
* @param emitEvent A boolean indicating whether to emit the Approval event.
*
* @dev This internal function is equivalent to {approve}, and thus can be used for other functions
* such as setting automatic allowances for certain subsystems, etc. This function can only be called
* if the address for `provider` and `spender` are not address(0). If `emitEvent` is set to `true`,
* this function will emits the Approval event.
*/
function _approve(address provider, address spender, uint256 value, bool emitEvent) internal virtual {
if (provider == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[provider][spender] = value;
if (emitEvent) {
emit Approval(provider, spender, value);
}
}
/**
* @notice Internal function to decrease allowance when tokens are spent.
*
* @param provider The address allowing spending.
* @param spender The address allowed to spend tokens.
* @param value The amount of tokens spent.
*
* @dev If the allowance value for the `spender` is infinite/the max value of uint256,
* this function will notupdate the allowance value. Should throw if not enough allowance
* is available. On all occasion, this function will not emit an Approval event.
*/
function _spendAllowance(address provider, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(provider, spender);
if (currentAllowance != type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(provider, spender, currentAllowance - value, false);
}
}
}
/* ERC20 Extended */
/**
* @notice Increases the allowance granted by the message sender to the spender.
*
* @param spender The address to whom the allowance is being increased.
* @param value The additional amount by which the allowance is increased.
*
* @return A boolean indicating whether the operation was successful or not.
*
* @dev Allow a spender to spend more tokens on behalf of the message sender and
* update the allowance accordingly.
*/
function increaseAllowance(address spender, uint256 value) external virtual returns (bool) {
address provider = msg.sender;
uint256 currentAllowance = allowance(provider, spender);
_approve(provider, spender, currentAllowance + value, true);
return true;
}
/**
* @notice Decreases the allowance granted by the message sender to the spender.
*
* @param spender The address whose allowance is being decreased.
* @param value The amount by which the allowance is decreased.
*
* @return A boolean indicating whether the operation was successful or not.
*
* @dev Reduce the spender's allowance by a specified amount. Should throw if the
* current allowance is insufficient.
*/
function decreaseAllowance(address spender, uint256 value) external virtual returns (bool) {
address provider = msg.sender;
uint256 currentAllowance = allowance(provider, spender);
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(provider, spender, currentAllowance - value, true);
}
return true;
}
}
{
"compilationTarget": {
"Tatsu.sol": "Tatsu"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
}
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccountBlacklisted","type":"error"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[{"internalType":"string","name":"stateType","type":"string"},{"internalType":"bool","name":"state","type":"bool"}],"name":"AlreadyCurrentState","type":"error"},{"inputs":[],"name":"AlreadyFinalized","type":"error"},{"inputs":[{"internalType":"uint256","name":"current","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"CannotRedeemMoreThanAllowedTreshold","type":"error"},{"inputs":[],"name":"CannotUseAllCurrentValue","type":"error"},{"inputs":[{"internalType":"address","name":"current","type":"address"}],"name":"CannotUseCurrentAddress","type":"error"},{"inputs":[{"internalType":"bool","name":"current","type":"bool"}],"name":"CannotUseCurrentState","type":"error"},{"inputs":[{"internalType":"uint256","name":"current","type":"uint256"}],"name":"CannotUseCurrentValue","type":"error"},{"inputs":[],"name":"CannotWithdrawNativeToken","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[],"name":"FeeLocked","type":"error"},{"inputs":[{"internalType":"address","name":"invalid","type":"address"}],"name":"InvalidAddress","type":"error"},{"inputs":[{"internalType":"uint256","name":"current","type":"uint256"},{"internalType":"uint256","name":"max","type":"uint256"}],"name":"InvalidTotalFee","type":"error"},{"inputs":[{"internalType":"uint256","name":"invalid","type":"uint256"}],"name":"InvalidValue","type":"error"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"MaxWalletLimitExceed","type":"error"},{"inputs":[],"name":"OnlyWalletAddressAllowed","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReceiverCannotInitiateTransferEther","type":"error"},{"inputs":[],"name":"ReceiverLocked","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"inputs":[{"internalType":"bool","name":"currentState","type":"bool"},{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradeAlreadyEnabled","type":"error"},{"inputs":[],"name":"TradeNotYetEnabled","type":"error"},{"inputs":[],"name":"WalletLimitAlreadyRemoved","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"FinalizedPresale","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"lockType","type":"string"},{"indexed":false,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Lock","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"marketingFeeDistribution","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountToRedeem","type":"uint256"},{"indexed":false,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"ManualRedeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"addressType","type":"string"},{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"oldStatus","type":"bool"},{"indexed":false,"internalType":"bool","name":"newStatus","type":"bool"},{"indexed":false,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"SetAddressState","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"feeType","type":"string"},{"indexed":false,"internalType":"uint256","name":"oldFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newFee","type":"uint256"},{"indexed":false,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"UpdateFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"receiverType","type":"string"},{"indexed":false,"internalType":"address","name":"oldReceiver","type":"address"},{"indexed":false,"internalType":"address","name":"newReceiver","type":"address"},{"indexed":false,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"UpdateReceiver","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldRouter","type":"address"},{"indexed":false,"internalType":"address","name":"newRouter","type":"address"},{"indexed":false,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"UpdateRouter","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"stateType","type":"string"},{"indexed":false,"internalType":"bool","name":"oldStatus","type":"bool"},{"indexed":false,"internalType":"bool","name":"newStatus","type":"bool"},{"indexed":false,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"UpdateState","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"caller","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"WalletLimitRemoved","type":"event"},{"inputs":[],"name":"FEEDENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"provider","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"marketing","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectedFee","outputs":[{"internalType":"uint256","name":"marketing","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"inSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExemptFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExemptLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFeeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFeeLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"isPairLP","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isReceiverLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTriggerZeusTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockReceivers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToRedeem","type":"uint256"}],"name":"manualRedeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redeemedFee","outputs":[{"internalType":"uint256","name":"marketing","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"marketing","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"lpPair","type":"address"},{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"setPairLP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeeCollected","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeeRedeemed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTriggerZeusBuyback","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"marketing","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"triggerZeusBuyback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"updateBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMarketingFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"updateExemptFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"updateExemptLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newStatus","type":"bool"}],"name":"updateFeeActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingReceiver","type":"address"}],"name":"updateMarketingReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMarketingFee","type":"uint256"}],"name":"updateSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMarketingFee","type":"uint256"}],"name":"updateTransferFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"wTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]