ETH Price: $3,489.49 (+3.66%)
Gas: 2 Gwei

Contract

0xBC19712FEB3a26080eBf6f2F7849b417FdD792CA
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

BoringDAO (BORING) (@$0.0028)

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Value
0x97f658f63e5541c570f13485e3b5e3acf1210e773b44bf3d3eb29bb009b0e50b Transfer(pending)2024-06-30 1:22:0327 hrs ago1719710523IN
BoringDAO: BORING Token
0 ETH(Pending)(Pending)
Transfer202081952024-07-01 0:49:473 hrs ago1719794987IN
BoringDAO: BORING Token
0 ETH0.000146654.23721994
Transfer202069992024-06-30 20:49:477 hrs ago1719780587IN
BoringDAO: BORING Token
0 ETH0.000227796.58144848
Approve202043122024-06-30 11:50:1116 hrs ago1719748211IN
BoringDAO: BORING Token
0 ETH0.000117122.51409802
Transfer201998362024-06-29 20:49:5931 hrs ago1719694199IN
BoringDAO: BORING Token
0 ETH0.000133683.86372851
Transfer201955692024-06-29 6:31:2345 hrs ago1719642683IN
BoringDAO: BORING Token
0 ETH0.000205073.96481349
Transfer201938712024-06-29 0:49:472 days ago1719622187IN
BoringDAO: BORING Token
0 ETH0.000124693.60267176
Transfer201926802024-06-28 20:49:472 days ago1719607787IN
BoringDAO: BORING Token
0 ETH0.000144894.18637135
Transfer201913812024-06-28 16:28:592 days ago1719592139IN
BoringDAO: BORING Token
0 ETH0.000286939.62123345
Transfer201913652024-06-28 16:25:352 days ago1719591935IN
BoringDAO: BORING Token
0 ETH0.000415298.85055718
Transfer201913172024-06-28 16:15:472 days ago1719591347IN
BoringDAO: BORING Token
0 ETH0.000245569.08715307
Transfer201902932024-06-28 12:50:112 days ago1719579011IN
BoringDAO: BORING Token
0 ETH0.000242867.01946964
Transfer201855222024-06-27 20:50:233 days ago1719521423IN
BoringDAO: BORING Token
0 ETH0.000289158.35734276
Transfer201843252024-06-27 16:49:473 days ago1719506987IN
BoringDAO: BORING Token
0 ETH0.0005035114.54774592
Transfer201843182024-06-27 16:48:233 days ago1719506903IN
BoringDAO: BORING Token
0 ETH0.0005199215.02703523
Transfer201831802024-06-27 12:59:353 days ago1719493175IN
BoringDAO: BORING Token
0 ETH0.000468449.05672511
Transfer201723872024-06-26 0:49:475 days ago1719362987IN
BoringDAO: BORING Token
0 ETH0.000142144.10686157
Transfer201711892024-06-25 20:49:475 days ago1719348587IN
BoringDAO: BORING Token
0 ETH0.000226096.53254752
Transfer201688022024-06-25 12:49:475 days ago1719319787IN
BoringDAO: BORING Token
0 ETH0.000262337.5846757
Transfer201687952024-06-25 12:48:235 days ago1719319703IN
BoringDAO: BORING Token
0 ETH0.000254817.36467185
Transfer201677892024-06-25 9:25:475 days ago1719307547IN
BoringDAO: BORING Token
0 ETH0.000291695.64084588
Transfer201676102024-06-25 8:49:595 days ago1719305399IN
BoringDAO: BORING Token
0 ETH0.000221366.39589559
Transfer201665762024-06-25 5:21:115 days ago1719292871IN
BoringDAO: BORING Token
0 ETH0.000116133.89257508
Transfer201650592024-06-25 0:16:356 days ago1719274595IN
BoringDAO: BORING Token
0 ETH0.00014124.73491016
Transfer201650562024-06-25 0:15:596 days ago1719274559IN
BoringDAO: BORING Token
0 ETH0.000169473.61169579
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Boring

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 9 : Boring.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract Boring is ERC20Burnable, Ownable{

    using SafeERC20 for IERC20;

    IERC20 public bor;
    uint public ratio;
    bool public switchOn = true;

    constructor(address _bor, uint _ratio) ERC20("BoringDAO", "BORING") {
        bor = IERC20(_bor);
        ratio = _ratio;
        // for people who transfer bor to borContract address
        // https://etherscan.io/token/0x3c9d6c1C73b31c837832c72E04D3152f051fc1A9?a=0x3c9d6c1C73b31c837832c72E04D3152f051fc1A9
        // https://bscscan.com/token/0x92d7756c60dcfd4c689290e8a9f4d263b3b32241?a=0x92d7756c60dcfd4c689290e8a9f4d263b3b32241
        _mint(msg.sender, 29770922242336919137*_ratio);
    }

    function setSwitchOn(bool _switchOn) public onlyOwner {
        require(switchOn != _switchOn, "dont need change switchon");
        switchOn = _switchOn;
    }

    function toBoring(uint borAmount) public {
        uint boringAmount = borAmount*ratio;
        _mint(msg.sender, boringAmount);
        bor.safeTransferFrom(msg.sender, address(this), borAmount);
        emit ToBoring(msg.sender, borAmount, boringAmount); 
    }

    function toBor(uint boringAmount) public onlySwitchOn {
        require(balanceOf(msg.sender) >= boringAmount, "Boring:Not enough boring");
        require(bor.balanceOf(address(this)) * ratio >= boringAmount, "Boring:Not enough bor");
        burn(boringAmount);
        uint borAmount = boringAmount / ratio;
        bor.transfer(msg.sender, borAmount);
        emit ToBor(msg.sender, borAmount, boringAmount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal override {
        super._beforeTokenTransfer(from, to, amount);
        require(to != address(this), "ERC20: transfer to the token contract address");
     }

    modifier onlySwitchOn {
        require(switchOn == true, "only switchOn true");
        _;
    }

    event ToBoring(address account, uint borAmount, uint boringAmount);
    event ToBor(address account, uint borAmount, uint boringAmount);

}

File 2 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract 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 virtual 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;
    }
}

File 3 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 {
    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut 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.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, 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:
     *
     * - `to` 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;
        _balances[account] += amount;
        emit Transfer(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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(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);
    }

    /**
     * @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 to 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 { }
}

File 4 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * 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
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 5 of 9 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }
}

File 6 of 9 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

File 7 of 9 : SafeERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations 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, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 8 of 9 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 9 of 9 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

Settings
{
  "evmVersion": "istanbul",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_bor","type":"address"},{"internalType":"uint256","name":"_ratio","type":"uint256"}],"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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"borAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"boringAmount","type":"uint256"}],"name":"ToBor","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"borAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"boringAmount","type":"uint256"}],"name":"ToBoring","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":[{"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":"bor","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"ratio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_switchOn","type":"bool"}],"name":"setSwitchOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"boringAmount","type":"uint256"}],"name":"toBor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"borAmount","type":"uint256"}],"name":"toBoring","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"}]

60806040526008805460ff191660011790553480156200001e57600080fd5b5060405162001a7a38038062001a7a833981016040819052620000419162000380565b6040805180820182526009815268426f72696e6744414f60b81b602080830191825283518085019094526006845265424f52494e4760d01b9084015281519192916200009091600391620002da565b508051620000a6906004906020840190620002da565b5050506000620000bb6200015160201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600680546001600160a01b0319166001600160a01b03841617905560078190556200014933620001438368019d27900bda448e61620003d5565b62000155565b50506200044a565b3390565b6001600160a01b038216620001b15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001bf600083836200024c565b8060026000828254620001d39190620003ba565b90915550506001600160a01b0382166000908152602081905260408120805483929062000202908490620003ba565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b62000264838383620002d560201b620006d41760201c565b6001600160a01b038216301415620002d55760405162461bcd60e51b815260206004820152602d60248201527f45524332303a207472616e7366657220746f2074686520746f6b656e20636f6e60448201526c7472616374206164647265737360981b6064820152608401620001a8565b505050565b828054620002e890620003f7565b90600052602060002090601f0160209004810192826200030c576000855562000357565b82601f106200032757805160ff191683800117855562000357565b8280016001018555821562000357579182015b82811115620003575782518255916020019190600101906200033a565b506200036592915062000369565b5090565b5b808211156200036557600081556001016200036a565b6000806040838503121562000393578182fd5b82516001600160a01b0381168114620003aa578283fd5b6020939093015192949293505050565b60008219821115620003d057620003d062000434565b500190565b6000816000190483118215151615620003f257620003f262000434565b500290565b600181811c908216806200040c57607f821691505b602082108114156200042e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b611620806200045a6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063747682a0116100b8578063a457c2d71161007c578063a457c2d714610297578063a9059cbb146102aa578063dd62ed3e146102bd578063e853a1c2146102f6578063f2fde38b14610309578063f9f8f8951461031c57600080fd5b8063747682a01461023157806379cc6790146102445780638c594f69146102575780638da5cb5b1461026a57806395d89b411461028f57600080fd5b8063395093511161010a57806339509351146101bc57806341a24e60146101cf57806342966c68146101e457806370a08231146101f7578063715018a61461022057806371ca337d1461022857600080fd5b806306fdde0314610147578063095ea7b31461016557806318160ddd1461018857806323b872dd1461019a578063313ce567146101ad575b600080fd5b61014f610329565b60405161015c9190611489565b60405180910390f35b6101786101733660046113dc565b6103bb565b604051901515815260200161015c565b6002545b60405190815260200161015c565b6101786101a83660046113a1565b6103d1565b6040516012815260200161015c565b6101786101ca3660046113dc565b610489565b6101e26101dd366004611405565b6104c0565b005b6101e26101f236600461143d565b610556565b61018c610205366004611355565b6001600160a01b031660009081526020819052604090205490565b6101e2610563565b61018c60075481565b6101e261023f36600461143d565b6105d7565b6101e26102523660046113dc565b610651565b6101e261026536600461143d565b6106d9565b6005546001600160a01b03165b6040516001600160a01b03909116815260200161015c565b61014f610930565b6101786102a53660046113dc565b61093f565b6101786102b83660046113dc565b6109da565b61018c6102cb36600461136f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600654610277906001600160a01b031681565b6101e2610317366004611355565b6109e7565b6008546101789060ff1681565b6060600380546103389061158b565b80601f01602080910402602001604051908101604052809291908181526020018280546103649061158b565b80156103b15780601f10610386576101008083540402835291602001916103b1565b820191906000526020600020905b81548152906001019060200180831161039457829003601f168201915b5050505050905090565b60006103c8338484610ad2565b50600192915050565b60006103de848484610bf7565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104685760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61047c85336104778685611548565b610ad2565b60019150505b9392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103c89185906104779086906114f1565b6005546001600160a01b031633146104ea5760405162461bcd60e51b815260040161045f906114bc565b60085460ff16151581151514156105435760405162461bcd60e51b815260206004820152601960248201527f646f6e74206e656564206368616e6765207377697463686f6e00000000000000604482015260640161045f565b6008805460ff1916911515919091179055565b6105603382610dda565b50565b6005546001600160a01b0316331461058d5760405162461bcd60e51b815260040161045f906114bc565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6000600754826105e79190611529565b90506105f33382610f35565b60065461060b906001600160a01b0316333085611020565b60408051338152602081018490529081018290527f9f259704286ad43f90853301a977fc106c06586bc4647380a500de1669eaa061906060015b60405180910390a15050565b600061065d83336102cb565b9050818110156106bb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b606482015260840161045f565b6106ca83336104778585611548565b6106d48383610dda565b505050565b60085460ff1615156001146107255760405162461bcd60e51b81526020600482015260126024820152716f6e6c79207377697463684f6e207472756560701b604482015260640161045f565b336000908152602081905260409020548111156107845760405162461bcd60e51b815260206004820152601860248201527f426f72696e673a4e6f7420656e6f75676820626f72696e670000000000000000604482015260640161045f565b6007546006546040516370a0823160e01b81523060048201528392916001600160a01b0316906370a082319060240160206040518083038186803b1580156107cb57600080fd5b505afa1580156107df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108039190611455565b61080d9190611529565b10156108535760405162461bcd60e51b81526020600482015260156024820152742137b934b7339d2737ba1032b737bab3b4103137b960591b604482015260640161045f565b61085c81610556565b60006007548261086c9190611509565b60065460405163a9059cbb60e01b8152336004820152602481018390529192506001600160a01b03169063a9059cbb90604401602060405180830381600087803b1580156108b957600080fd5b505af11580156108cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f19190611421565b5060408051338152602081018390529081018390527f55f46887179b50b434bdb2d033330ad49bcbc584a44ae674bb09196f110ff4f390606001610645565b6060600480546103389061158b565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161045f565b6109d033856104778685611548565b5060019392505050565b60006103c8338484610bf7565b6005546001600160a01b03163314610a115760405162461bcd60e51b815260040161045f906114bc565b6001600160a01b038116610a765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161045f565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610b345760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161045f565b6001600160a01b038216610b955760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161045f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610c5b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161045f565b6001600160a01b038216610cbd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161045f565b610cc8838383611080565b6001600160a01b03831660009081526020819052604090205481811015610d405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161045f565b610d4a8282611548565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610d809084906114f1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dcc91815260200190565b60405180910390a350505050565b6001600160a01b038216610e3a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161045f565b610e4682600083611080565b6001600160a01b03821660009081526020819052604090205481811015610eba5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161045f565b610ec48282611548565b6001600160a01b03841660009081526020819052604081209190915560028054849290610ef2908490611548565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610bea565b6001600160a01b038216610f8b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161045f565b610f9760008383611080565b8060026000828254610fa991906114f1565b90915550506001600160a01b03821660009081526020819052604081208054839290610fd69084906114f1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261107a9085906110ef565b50505050565b6001600160a01b0382163014156106d45760405162461bcd60e51b815260206004820152602d60248201527f45524332303a207472616e7366657220746f2074686520746f6b656e20636f6e60448201526c7472616374206164647265737360981b606482015260840161045f565b6000611144826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166111c19092919063ffffffff16565b8051909150156106d457808060200190518101906111629190611421565b6106d45760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161045f565b60606111d084846000856111d8565b949350505050565b6060824710156112395760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161045f565b843b6112875760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161045f565b600080866001600160a01b031685876040516112a3919061146d565b60006040518083038185875af1925050503d80600081146112e0576040519150601f19603f3d011682016040523d82523d6000602084013e6112e5565b606091505b50915091506112f5828286611300565b979650505050505050565b6060831561130f575081610482565b82511561131f5782518084602001fd5b8160405162461bcd60e51b815260040161045f9190611489565b80356001600160a01b038116811461135057600080fd5b919050565b600060208284031215611366578081fd5b61048282611339565b60008060408385031215611381578081fd5b61138a83611339565b915061139860208401611339565b90509250929050565b6000806000606084860312156113b5578081fd5b6113be84611339565b92506113cc60208501611339565b9150604084013590509250925092565b600080604083850312156113ee578182fd5b6113f783611339565b946020939093013593505050565b600060208284031215611416578081fd5b8135610482816115dc565b600060208284031215611432578081fd5b8151610482816115dc565b60006020828403121561144e578081fd5b5035919050565b600060208284031215611466578081fd5b5051919050565b6000825161147f81846020870161155f565b9190910192915050565b60208152600082518060208401526114a881604085016020870161155f565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611504576115046115c6565b500190565b60008261152457634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611543576115436115c6565b500290565b60008282101561155a5761155a6115c6565b500390565b60005b8381101561157a578181015183820152602001611562565b8381111561107a5750506000910152565b600181811c9082168061159f57607f821691505b602082108114156115c057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b801515811461056057600080fdfea26469706673582212200d2acd362297931fdfc3ac725ba5d9f5124ea6fa55051af3048f0176fd5a686664736f6c634300080400330000000000000000000000003c9d6c1c73b31c837832c72e04d3152f051fc1a90000000000000000000000000000000000000000000000000000000000002710

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063747682a0116100b8578063a457c2d71161007c578063a457c2d714610297578063a9059cbb146102aa578063dd62ed3e146102bd578063e853a1c2146102f6578063f2fde38b14610309578063f9f8f8951461031c57600080fd5b8063747682a01461023157806379cc6790146102445780638c594f69146102575780638da5cb5b1461026a57806395d89b411461028f57600080fd5b8063395093511161010a57806339509351146101bc57806341a24e60146101cf57806342966c68146101e457806370a08231146101f7578063715018a61461022057806371ca337d1461022857600080fd5b806306fdde0314610147578063095ea7b31461016557806318160ddd1461018857806323b872dd1461019a578063313ce567146101ad575b600080fd5b61014f610329565b60405161015c9190611489565b60405180910390f35b6101786101733660046113dc565b6103bb565b604051901515815260200161015c565b6002545b60405190815260200161015c565b6101786101a83660046113a1565b6103d1565b6040516012815260200161015c565b6101786101ca3660046113dc565b610489565b6101e26101dd366004611405565b6104c0565b005b6101e26101f236600461143d565b610556565b61018c610205366004611355565b6001600160a01b031660009081526020819052604090205490565b6101e2610563565b61018c60075481565b6101e261023f36600461143d565b6105d7565b6101e26102523660046113dc565b610651565b6101e261026536600461143d565b6106d9565b6005546001600160a01b03165b6040516001600160a01b03909116815260200161015c565b61014f610930565b6101786102a53660046113dc565b61093f565b6101786102b83660046113dc565b6109da565b61018c6102cb36600461136f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600654610277906001600160a01b031681565b6101e2610317366004611355565b6109e7565b6008546101789060ff1681565b6060600380546103389061158b565b80601f01602080910402602001604051908101604052809291908181526020018280546103649061158b565b80156103b15780601f10610386576101008083540402835291602001916103b1565b820191906000526020600020905b81548152906001019060200180831161039457829003601f168201915b5050505050905090565b60006103c8338484610ad2565b50600192915050565b60006103de848484610bf7565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104685760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61047c85336104778685611548565b610ad2565b60019150505b9392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916103c89185906104779086906114f1565b6005546001600160a01b031633146104ea5760405162461bcd60e51b815260040161045f906114bc565b60085460ff16151581151514156105435760405162461bcd60e51b815260206004820152601960248201527f646f6e74206e656564206368616e6765207377697463686f6e00000000000000604482015260640161045f565b6008805460ff1916911515919091179055565b6105603382610dda565b50565b6005546001600160a01b0316331461058d5760405162461bcd60e51b815260040161045f906114bc565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6000600754826105e79190611529565b90506105f33382610f35565b60065461060b906001600160a01b0316333085611020565b60408051338152602081018490529081018290527f9f259704286ad43f90853301a977fc106c06586bc4647380a500de1669eaa061906060015b60405180910390a15050565b600061065d83336102cb565b9050818110156106bb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b606482015260840161045f565b6106ca83336104778585611548565b6106d48383610dda565b505050565b60085460ff1615156001146107255760405162461bcd60e51b81526020600482015260126024820152716f6e6c79207377697463684f6e207472756560701b604482015260640161045f565b336000908152602081905260409020548111156107845760405162461bcd60e51b815260206004820152601860248201527f426f72696e673a4e6f7420656e6f75676820626f72696e670000000000000000604482015260640161045f565b6007546006546040516370a0823160e01b81523060048201528392916001600160a01b0316906370a082319060240160206040518083038186803b1580156107cb57600080fd5b505afa1580156107df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108039190611455565b61080d9190611529565b10156108535760405162461bcd60e51b81526020600482015260156024820152742137b934b7339d2737ba1032b737bab3b4103137b960591b604482015260640161045f565b61085c81610556565b60006007548261086c9190611509565b60065460405163a9059cbb60e01b8152336004820152602481018390529192506001600160a01b03169063a9059cbb90604401602060405180830381600087803b1580156108b957600080fd5b505af11580156108cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f19190611421565b5060408051338152602081018390529081018390527f55f46887179b50b434bdb2d033330ad49bcbc584a44ae674bb09196f110ff4f390606001610645565b6060600480546103389061158b565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161045f565b6109d033856104778685611548565b5060019392505050565b60006103c8338484610bf7565b6005546001600160a01b03163314610a115760405162461bcd60e51b815260040161045f906114bc565b6001600160a01b038116610a765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161045f565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610b345760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161045f565b6001600160a01b038216610b955760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161045f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b038316610c5b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161045f565b6001600160a01b038216610cbd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161045f565b610cc8838383611080565b6001600160a01b03831660009081526020819052604090205481811015610d405760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161045f565b610d4a8282611548565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610d809084906114f1565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dcc91815260200190565b60405180910390a350505050565b6001600160a01b038216610e3a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161045f565b610e4682600083611080565b6001600160a01b03821660009081526020819052604090205481811015610eba5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161045f565b610ec48282611548565b6001600160a01b03841660009081526020819052604081209190915560028054849290610ef2908490611548565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610bea565b6001600160a01b038216610f8b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161045f565b610f9760008383611080565b8060026000828254610fa991906114f1565b90915550506001600160a01b03821660009081526020819052604081208054839290610fd69084906114f1565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261107a9085906110ef565b50505050565b6001600160a01b0382163014156106d45760405162461bcd60e51b815260206004820152602d60248201527f45524332303a207472616e7366657220746f2074686520746f6b656e20636f6e60448201526c7472616374206164647265737360981b606482015260840161045f565b6000611144826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166111c19092919063ffffffff16565b8051909150156106d457808060200190518101906111629190611421565b6106d45760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161045f565b60606111d084846000856111d8565b949350505050565b6060824710156112395760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161045f565b843b6112875760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161045f565b600080866001600160a01b031685876040516112a3919061146d565b60006040518083038185875af1925050503d80600081146112e0576040519150601f19603f3d011682016040523d82523d6000602084013e6112e5565b606091505b50915091506112f5828286611300565b979650505050505050565b6060831561130f575081610482565b82511561131f5782518084602001fd5b8160405162461bcd60e51b815260040161045f9190611489565b80356001600160a01b038116811461135057600080fd5b919050565b600060208284031215611366578081fd5b61048282611339565b60008060408385031215611381578081fd5b61138a83611339565b915061139860208401611339565b90509250929050565b6000806000606084860312156113b5578081fd5b6113be84611339565b92506113cc60208501611339565b9150604084013590509250925092565b600080604083850312156113ee578182fd5b6113f783611339565b946020939093013593505050565b600060208284031215611416578081fd5b8135610482816115dc565b600060208284031215611432578081fd5b8151610482816115dc565b60006020828403121561144e578081fd5b5035919050565b600060208284031215611466578081fd5b5051919050565b6000825161147f81846020870161155f565b9190910192915050565b60208152600082518060208401526114a881604085016020870161155f565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611504576115046115c6565b500190565b60008261152457634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611543576115436115c6565b500290565b60008282101561155a5761155a6115c6565b500390565b60005b8381101561157a578181015183820152602001611562565b8381111561107a5750506000910152565b600181811c9082168061159f57607f821691505b602082108114156115c057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b801515811461056057600080fdfea26469706673582212200d2acd362297931fdfc3ac725ba5d9f5124ea6fa55051af3048f0176fd5a686664736f6c63430008040033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000003c9d6c1c73b31c837832c72e04d3152f051fc1a90000000000000000000000000000000000000000000000000000000000002710

-----Decoded View---------------
Arg [0] : _bor (address): 0x3c9d6c1C73b31c837832c72E04D3152f051fc1A9
Arg [1] : _ratio (uint256): 10000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000003c9d6c1c73b31c837832c72e04d3152f051fc1a9
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

OVERVIEW

BoringDAO deploys a series of decentralized bridges - or tunnels - which allow you to safely move your Bitcoin & other crypto assets between Ethereum & different blockchains to maximize utilization rate of crypto assets in DeFi world.

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.