S Price: $0.464635 (-0.70%)

Contract

0xe3c429552ffcA15aA8A3122f3e934756e3D80A21

Overview

S Balance

Sonic LogoSonic LogoSonic Logo0 S

S Value

$0.00

Multichain Info

No addresses found
Amount:Between 1-10k
Reset Filter

Transaction Hash
Method
Block
From
To

There are no matching entries

Update your filters to view other transactions

Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
veArcSplitter

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 10000 runs

Other Settings:
paris EvmVersion
File 1 of 10 : veArcSplitter.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.22;

import {Ownable2Step} from "@openzeppelin/contracts/access/Ownable2Step.sol";
import {Pausable} from "@openzeppelin/contracts/security/Pausable.sol";
import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {IArc} from "./interfaces/IArc.sol";
import {IERC721Receiver} from "./interfaces/IERC721Receiver.sol";
import {IVotingEscrow} from "./interfaces/IVotingEscrow.sol";

contract veArcSplitter is Ownable2Step, Pausable, ReentrancyGuard, IERC721Receiver {
    
    IArc public arc;
    IVotingEscrow public veArc;
    
    event VeArcSplit(address indexed owner, uint originalTokenId, uint originalLockedAmount, uint veArc1TokenId, uint veArc1Amount, uint veArc2TokenId, uint veArc2Amount);
    event VeArcReceived(address indexed operator, address indexed from, uint tokenId, bytes data);
    
    constructor(address _arc, address _veArc) {
        require(_arc != address(0) && _veArc != address(0), 'Zero address passed in constructor');
        
        arc = IArc(_arc);
        veArc = IVotingEscrow(_veArc);
        
        _transferOwnership(0x82d3c9246890e672BA4Dfbf2038c791727BCB34A);
    }
    
    function pause() public onlyOwner
    {
        _pause();
    }
    
    function unpause() public onlyOwner
    {
        _unpause();
    }
    
    function setTokens(address _arc, address _veArc) public onlyOwner {
        require(_arc != address(0) && _veArc != address(0), 'Cannot set Arc or veArc to zero address');
        
        arc = IArc(_arc);
        veArc = IVotingEscrow(_veArc);
    }
    
    function withdrawNative(address beneficiary) public onlyOwner {
        uint256 amount = address(this).balance;
        (bool sent, ) = beneficiary.call{value: amount}("");
        require(sent, 'Unable to withdraw');
    }

    function withdrawToken(address beneficiary, address token) public onlyOwner {
        uint256 amount = IERC20(token).balanceOf(address(this));
        IERC20(token).transfer(beneficiary, amount);
    }
    
    function splitVeArc(uint tokenId, uint veArc2Amount) public nonReentrant whenNotPaused {
        require(msg.sender == veArc.ownerOf(tokenId), 'Not owner of veArc');
        require(veArc2Amount > 0, 'New veArc amount must be greater than zero');
        
        uint lockedAmount = veArc.locked__amount(tokenId);
        uint lockedEnd = veArc.locked__end(tokenId);
        uint veArcLockDuration = lockedEnd - block.timestamp;
        
        require((lockedAmount - 1) >= veArc2Amount, 'New veArc amount must be less than original veArc');
        uint veArc1Amount = lockedAmount - veArc2Amount;
        
        veArc.safeTransferFrom(msg.sender, address(this), tokenId);
        veArc.burn(tokenId);
        
        arc.mint(address(this), lockedAmount);
        arc.approve(address(veArc), lockedAmount);
        uint veArc1TokenId = veArc.create_lock_for(veArc1Amount, veArcLockDuration, msg.sender);
        uint veArc2TokenId = veArc.create_lock_for(veArc2Amount, veArcLockDuration, msg.sender);
        emit VeArcSplit(msg.sender, tokenId, lockedAmount, veArc1TokenId, veArc1Amount, veArc2TokenId, veArc2Amount);
    }
    
    function onERC721Received(address operator, address from, uint tokenId, bytes calldata data) external returns (bytes4) {
        emit VeArcReceived(operator, from, tokenId, data);
        return this.onERC721Received.selector;
    }
}

File 2 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 10 : Ownable2Step.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)

pragma solidity ^0.8.0;

import "./Ownable.sol";

/**
 * @dev Contract module which provides 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} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

    event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Returns the address of the pending owner.
     */
    function pendingOwner() public view virtual returns (address) {
        return _pendingOwner;
    }

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() public virtual {
        address sender = _msgSender();
        require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
        _transferOwnership(sender);
    }
}

File 4 of 10 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 5 of 10 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 6 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

File 7 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

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) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 8 of 10 : IArc.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.22;

interface IArc {
    function approve(address _spender, uint _value) external returns (bool);
    function balanceOf(address account) external returns (uint);
    function mint(address account, uint amount) external returns (bool);
    function burn(uint amount) external;
    function transfer(address, uint) external returns (bool);
    function transferFrom(address _from, address _to, uint _value) external;
}

File 9 of 10 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;

/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
    /**
    * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
    * by `operator` from `from`, this function is called.
    *
    * It must return its Solidity selector to confirm the token transfer.
    * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
    *
    * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
    */
    function onERC721Received(
        address operator,
        address from,
        uint tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 10 : IVotingEscrow.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;

interface IVotingEscrow {

    struct Point {
        int128 bias;
        int128 slope; // # -dweight / dt
        uint256 ts;
        uint256 blk; // block
    }

    function user_point_epoch(uint tokenId) external view returns (uint);
    function epoch() external view returns (uint);
    function user_point_history(uint tokenId, uint loc) external view returns (Point memory);
    function point_history(uint loc) external view returns (Point memory);
    function checkpoint() external;
    function deposit_for(uint tokenId, uint value) external;
    function token() external view returns (address);
    function user_point_history__ts(uint tokenId, uint idx) external view returns (uint);
    function locked__end(uint _tokenId) external view returns (uint);
    function locked__amount(uint _tokenId) external view returns (uint);
    function approve(address spender, uint tokenId) external;
    function balanceOfNFT(uint) external view returns (uint);
    function isApprovedOrOwner(address, uint) external view returns (bool);
    function ownerOf(uint) external view returns (address);
    function transferFrom(address, address, uint) external;
    function totalSupply() external view returns (uint);
    function supply() external view returns (uint);
    function create_lock_for(uint, uint, address) external returns (uint);
    function lockVote(uint tokenId) external;
    function isVoteExpired(uint tokenId) external view returns (bool);
    function voteExpiry(uint _tokenId) external view returns (uint);
    function attach(uint tokenId) external;
    function detach(uint tokenId) external;
    function voting(uint tokenId) external;
    function abstain(uint tokenId) external;
    function voted(uint tokenId) external view returns (bool);
    function withdraw(uint tokenId) external;
    function create_lock(uint value, uint duration) external returns (uint);
    function setVoter(address voter) external;
    function balanceOf(address owner) external view returns (uint);
    function safeTransferFrom(address from, address to, uint tokenId) external;
    function burn(uint _tokenId) external;
    function setAdmin(address _admin) external;
    function setArtProxy(address _proxy) external;
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_arc","type":"address"},{"internalType":"address","name":"_veArc","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"VeArcReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"originalTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"originalLockedAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"veArc1TokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"veArc1Amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"veArc2TokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"veArc2Amount","type":"uint256"}],"name":"VeArcSplit","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"arc","outputs":[{"internalType":"contract IArc","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_arc","type":"address"},{"internalType":"address","name":"_veArc","type":"address"}],"name":"setTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"veArc2Amount","type":"uint256"}],"name":"splitVeArc","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"veArc","outputs":[{"internalType":"contract IVotingEscrow","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"}],"name":"withdrawNative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"address","name":"token","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200179a3803806200179a8339810160408190526200003491620001ae565b6200003f3362000123565b6001805460ff60a01b191681556002556001600160a01b038216158015906200007057506001600160a01b03811615155b620000cc5760405162461bcd60e51b815260206004820152602260248201527f5a65726f20616464726573732070617373656420696e20636f6e73747275637460448201526137b960f11b606482015260840160405180910390fd5b600380546001600160a01b038085166001600160a01b03199283161790925560048054928416929091169190911790556200011b7382d3c9246890e672ba4dfbf2038c791727bcb34a62000123565b5050620001e6565b600180546001600160a01b03191690556200013e8162000141565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b0381168114620001a957600080fd5b919050565b60008060408385031215620001c257600080fd5b620001cd8362000191565b9150620001dd6020840162000191565b90509250929050565b6115a480620001f66000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c80635fd7b3e8116100975780638da5cb5b116100665780638da5cb5b14610231578063cbc7854e1461024f578063e30c397814610262578063f2fde38b1461028057600080fd5b80635fd7b3e8146101f9578063715018a61461021957806379ba5097146102215780638456cb591461022957600080fd5b80633aeac4e1116100d35780633aeac4e11461016b5780633f4ba83a1461017e5780634b1c6a40146101865780635c975abb146101cb57600080fd5b8063150b7a02146100fa5780632f622e6b14610143578063389290d514610158575b600080fd5b61010d610108366004611364565b610293565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020015b60405180910390f35b610156610151366004611403565b610329565b005b610156610166366004611427565b610405565b610156610179366004611449565b610bbf565b610156610cfb565b6003546101a69073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161013a565b60015474010000000000000000000000000000000000000000900460ff16604051901515815260200161013a565b6004546101a69073ffffffffffffffffffffffffffffffffffffffff1681565b610156610d0d565b610156610d1f565b610156610dd4565b60005473ffffffffffffffffffffffffffffffffffffffff166101a6565b61015661025d366004611449565b610de4565b60015473ffffffffffffffffffffffffffffffffffffffff166101a6565b61015661028e366004611403565b610f05565b60008473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f92f9ceb9e44fef0e790878730b53e80682a2614d46ad043140c698a23d0e64368686866040516102f693929190611482565b60405180910390a3507f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b610331610fb5565b604051479060009073ffffffffffffffffffffffffffffffffffffffff84169083908381818185875af1925050503d806000811461038b576040519150601f19603f3d011682016040523d82523d6000602084013e610390565b606091505b5050905080610400576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f556e61626c6520746f207769746864726177000000000000000000000000000060448201526064015b60405180910390fd5b505050565b61040d611036565b6104156110a7565b600480546040517f6352211e00000000000000000000000000000000000000000000000000000000815291820184905273ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa158015610482573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104a691906114d6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461053a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f74206f776e6572206f66207665417263000000000000000000000000000060448201526064016103f7565b600081116105ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4e657720766541726320616d6f756e74206d757374206265206772656174657260448201527f207468616e207a65726f0000000000000000000000000000000000000000000060648201526084016103f7565b600480546040517f9700ad3a00000000000000000000000000000000000000000000000000000000815291820184905260009173ffffffffffffffffffffffffffffffffffffffff90911690639700ad3a90602401602060405180830381865afa15801561063c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066091906114f3565b600480546040517ff8a0576300000000000000000000000000000000000000000000000000000000815291820186905291925060009173ffffffffffffffffffffffffffffffffffffffff169063f8a0576390602401602060405180830381865afa1580156106d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f791906114f3565b90506000610705428361150c565b90508361071360018561150c565b10156107a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4e657720766541726320616d6f756e74206d757374206265206c65737320746860448201527f616e206f726967696e616c20766541726300000000000000000000000000000060648201526084016103f7565b60006107ad858561150c565b600480546040517f42842e0e00000000000000000000000000000000000000000000000000000000815233928101929092523060248301526044820189905291925073ffffffffffffffffffffffffffffffffffffffff909116906342842e0e90606401600060405180830381600087803b15801561082b57600080fd5b505af115801561083f573d6000803e3d6000fd5b5050600480546040517f42966c680000000000000000000000000000000000000000000000000000000081529182018a905273ffffffffffffffffffffffffffffffffffffffff1692506342966c689150602401600060405180830381600087803b1580156108ad57600080fd5b505af11580156108c1573d6000803e3d6000fd5b50506003546040517f40c10f190000000000000000000000000000000000000000000000000000000081523060048201526024810188905273ffffffffffffffffffffffffffffffffffffffff90911692506340c10f1991506044016020604051808303816000875af115801561093c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610960919061154c565b50600354600480546040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821692810192909252602482018790529091169063095ea7b3906044016020604051808303816000875af11580156109e0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a04919061154c565b50600480546040517fd4e54c3b0000000000000000000000000000000000000000000000000000000081529182018390526024820184905233604483015260009173ffffffffffffffffffffffffffffffffffffffff9091169063d4e54c3b906064016020604051808303816000875af1158015610a86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aaa91906114f3565b600480546040517fd4e54c3b0000000000000000000000000000000000000000000000000000000081529182018990526024820186905233604483015291925060009173ffffffffffffffffffffffffffffffffffffffff169063d4e54c3b906064016020604051808303816000875af1158015610b2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5091906114f3565b604080518a815260208101899052908101849052606081018590526080810182905260a0810189905290915033907f05b5a4e8d3f13f94ecc0de48dd4ea03684a4009e217aea3d8b0cf5c9a1d1e6ca9060c00160405180910390a2505050505050610bbb6001600255565b5050565b610bc7610fb5565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015610c34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5891906114f3565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018390529192509083169063a9059cbb906044016020604051808303816000875af1158015610cd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf5919061154c565b50505050565b610d03610fb5565b610d0b61112c565b565b610d15610fb5565b610d0b60006111a9565b600154339073ffffffffffffffffffffffffffffffffffffffff168114610dc8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084016103f7565b610dd1816111a9565b50565b610ddc610fb5565b610d0b6111da565b610dec610fb5565b73ffffffffffffffffffffffffffffffffffffffff821615801590610e26575073ffffffffffffffffffffffffffffffffffffffff811615155b610eb2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f43616e6e6f742073657420417263206f7220766541726320746f207a65726f2060448201527f616464726573730000000000000000000000000000000000000000000000000060648201526084016103f7565b6003805473ffffffffffffffffffffffffffffffffffffffff9384167fffffffffffffffffffffffff00000000000000000000000000000000000000009182161790915560048054929093169116179055565b610f0d610fb5565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009091168117909155610f7060005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f7565b60028054036110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103f7565b60028055565b60015474010000000000000000000000000000000000000000900460ff1615610d0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016103f7565b611134611249565b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b600180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055610dd1816112cd565b6111e26110a7565b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861117f3390565b60015474010000000000000000000000000000000000000000900460ff16610d0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016103f7565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff81168114610dd157600080fd5b60008060008060006080868803121561137c57600080fd5b853561138781611342565b9450602086013561139781611342565b935060408601359250606086013567ffffffffffffffff808211156113bb57600080fd5b818801915088601f8301126113cf57600080fd5b8135818111156113de57600080fd5b8960208285010111156113f057600080fd5b9699959850939650602001949392505050565b60006020828403121561141557600080fd5b813561142081611342565b9392505050565b6000806040838503121561143a57600080fd5b50508035926020909101359150565b6000806040838503121561145c57600080fd5b823561146781611342565b9150602083013561147781611342565b809150509250929050565b83815260406020820152816040820152818360608301376000818301606090810191909152601f9092017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016010192915050565b6000602082840312156114e857600080fd5b815161142081611342565b60006020828403121561150557600080fd5b5051919050565b81810381811115611546577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b92915050565b60006020828403121561155e57600080fd5b8151801515811461142057600080fdfea2646970667358221220031c4eafcc02a1b783066095af03edc2d1e3f088cc60555c24a9bed98dbd090f64736f6c63430008160033000000000000000000000000e8876189a80b2079d8c0a7867e46c50361d972c10000000000000000000000006aca098fa93dad7a872f6dcb989f8b4a3afc3342

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c80635fd7b3e8116100975780638da5cb5b116100665780638da5cb5b14610231578063cbc7854e1461024f578063e30c397814610262578063f2fde38b1461028057600080fd5b80635fd7b3e8146101f9578063715018a61461021957806379ba5097146102215780638456cb591461022957600080fd5b80633aeac4e1116100d35780633aeac4e11461016b5780633f4ba83a1461017e5780634b1c6a40146101865780635c975abb146101cb57600080fd5b8063150b7a02146100fa5780632f622e6b14610143578063389290d514610158575b600080fd5b61010d610108366004611364565b610293565b6040517fffffffff0000000000000000000000000000000000000000000000000000000090911681526020015b60405180910390f35b610156610151366004611403565b610329565b005b610156610166366004611427565b610405565b610156610179366004611449565b610bbf565b610156610cfb565b6003546101a69073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161013a565b60015474010000000000000000000000000000000000000000900460ff16604051901515815260200161013a565b6004546101a69073ffffffffffffffffffffffffffffffffffffffff1681565b610156610d0d565b610156610d1f565b610156610dd4565b60005473ffffffffffffffffffffffffffffffffffffffff166101a6565b61015661025d366004611449565b610de4565b60015473ffffffffffffffffffffffffffffffffffffffff166101a6565b61015661028e366004611403565b610f05565b60008473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167f92f9ceb9e44fef0e790878730b53e80682a2614d46ad043140c698a23d0e64368686866040516102f693929190611482565b60405180910390a3507f150b7a020000000000000000000000000000000000000000000000000000000095945050505050565b610331610fb5565b604051479060009073ffffffffffffffffffffffffffffffffffffffff84169083908381818185875af1925050503d806000811461038b576040519150601f19603f3d011682016040523d82523d6000602084013e610390565b606091505b5050905080610400576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f556e61626c6520746f207769746864726177000000000000000000000000000060448201526064015b60405180910390fd5b505050565b61040d611036565b6104156110a7565b600480546040517f6352211e00000000000000000000000000000000000000000000000000000000815291820184905273ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa158015610482573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104a691906114d6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461053a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f74206f776e6572206f66207665417263000000000000000000000000000060448201526064016103f7565b600081116105ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4e657720766541726320616d6f756e74206d757374206265206772656174657260448201527f207468616e207a65726f0000000000000000000000000000000000000000000060648201526084016103f7565b600480546040517f9700ad3a00000000000000000000000000000000000000000000000000000000815291820184905260009173ffffffffffffffffffffffffffffffffffffffff90911690639700ad3a90602401602060405180830381865afa15801561063c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061066091906114f3565b600480546040517ff8a0576300000000000000000000000000000000000000000000000000000000815291820186905291925060009173ffffffffffffffffffffffffffffffffffffffff169063f8a0576390602401602060405180830381865afa1580156106d3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f791906114f3565b90506000610705428361150c565b90508361071360018561150c565b10156107a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4e657720766541726320616d6f756e74206d757374206265206c65737320746860448201527f616e206f726967696e616c20766541726300000000000000000000000000000060648201526084016103f7565b60006107ad858561150c565b600480546040517f42842e0e00000000000000000000000000000000000000000000000000000000815233928101929092523060248301526044820189905291925073ffffffffffffffffffffffffffffffffffffffff909116906342842e0e90606401600060405180830381600087803b15801561082b57600080fd5b505af115801561083f573d6000803e3d6000fd5b5050600480546040517f42966c680000000000000000000000000000000000000000000000000000000081529182018a905273ffffffffffffffffffffffffffffffffffffffff1692506342966c689150602401600060405180830381600087803b1580156108ad57600080fd5b505af11580156108c1573d6000803e3d6000fd5b50506003546040517f40c10f190000000000000000000000000000000000000000000000000000000081523060048201526024810188905273ffffffffffffffffffffffffffffffffffffffff90911692506340c10f1991506044016020604051808303816000875af115801561093c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610960919061154c565b50600354600480546040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff91821692810192909252602482018790529091169063095ea7b3906044016020604051808303816000875af11580156109e0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a04919061154c565b50600480546040517fd4e54c3b0000000000000000000000000000000000000000000000000000000081529182018390526024820184905233604483015260009173ffffffffffffffffffffffffffffffffffffffff9091169063d4e54c3b906064016020604051808303816000875af1158015610a86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610aaa91906114f3565b600480546040517fd4e54c3b0000000000000000000000000000000000000000000000000000000081529182018990526024820186905233604483015291925060009173ffffffffffffffffffffffffffffffffffffffff169063d4e54c3b906064016020604051808303816000875af1158015610b2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b5091906114f3565b604080518a815260208101899052908101849052606081018590526080810182905260a0810189905290915033907f05b5a4e8d3f13f94ecc0de48dd4ea03684a4009e217aea3d8b0cf5c9a1d1e6ca9060c00160405180910390a2505050505050610bbb6001600255565b5050565b610bc7610fb5565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015610c34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5891906114f3565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152602482018390529192509083169063a9059cbb906044016020604051808303816000875af1158015610cd1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf5919061154c565b50505050565b610d03610fb5565b610d0b61112c565b565b610d15610fb5565b610d0b60006111a9565b600154339073ffffffffffffffffffffffffffffffffffffffff168114610dc8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084016103f7565b610dd1816111a9565b50565b610ddc610fb5565b610d0b6111da565b610dec610fb5565b73ffffffffffffffffffffffffffffffffffffffff821615801590610e26575073ffffffffffffffffffffffffffffffffffffffff811615155b610eb2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f43616e6e6f742073657420417263206f7220766541726320746f207a65726f2060448201527f616464726573730000000000000000000000000000000000000000000000000060648201526084016103f7565b6003805473ffffffffffffffffffffffffffffffffffffffff9384167fffffffffffffffffffffffff00000000000000000000000000000000000000009182161790915560048054929093169116179055565b610f0d610fb5565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009091168117909155610f7060005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60005473ffffffffffffffffffffffffffffffffffffffff163314610d0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103f7565b60028054036110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103f7565b60028055565b60015474010000000000000000000000000000000000000000900460ff1615610d0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016103f7565b611134611249565b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b600180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055610dd1816112cd565b6111e26110a7565b600180547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861117f3390565b60015474010000000000000000000000000000000000000000900460ff16610d0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016103f7565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b73ffffffffffffffffffffffffffffffffffffffff81168114610dd157600080fd5b60008060008060006080868803121561137c57600080fd5b853561138781611342565b9450602086013561139781611342565b935060408601359250606086013567ffffffffffffffff808211156113bb57600080fd5b818801915088601f8301126113cf57600080fd5b8135818111156113de57600080fd5b8960208285010111156113f057600080fd5b9699959850939650602001949392505050565b60006020828403121561141557600080fd5b813561142081611342565b9392505050565b6000806040838503121561143a57600080fd5b50508035926020909101359150565b6000806040838503121561145c57600080fd5b823561146781611342565b9150602083013561147781611342565b809150509250929050565b83815260406020820152816040820152818360608301376000818301606090810191909152601f9092017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016010192915050565b6000602082840312156114e857600080fd5b815161142081611342565b60006020828403121561150557600080fd5b5051919050565b81810381811115611546577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b92915050565b60006020828403121561155e57600080fd5b8151801515811461142057600080fdfea2646970667358221220031c4eafcc02a1b783066095af03edc2d1e3f088cc60555c24a9bed98dbd090f64736f6c63430008160033

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

000000000000000000000000e8876189a80b2079d8c0a7867e46c50361d972c10000000000000000000000006aca098fa93dad7a872f6dcb989f8b4a3afc3342

-----Decoded View---------------
Arg [0] : _arc (address): 0xe8876189A80B2079D8C0a7867e46c50361D972c1
Arg [1] : _veArc (address): 0x6ACa098fa93DAD7A872F6dcb989F8b4A3aFC3342

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000e8876189a80b2079d8c0a7867e46c50361d972c1
Arg [1] : 0000000000000000000000006aca098fa93dad7a872f6dcb989f8b4a3afc3342


Block Transaction 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

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.