ETH Price: $2,483.11 (+2.74%)

Contract

0x3BEbc3a0a97F7de155c978CA76954Ad9C284Bab9

Overview

ETH Balance

0 ETH

ETH Value

$0.00

Sponsored

Transaction Hash
Method
Block
From
To
0x60a06040283694622022-10-09 10:56:52728 days ago1665313012IN
 Create: HopAdapter
0 ETH0.001828443760.001

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
303464582022-10-20 5:08:13718 days ago1666242493
0x3BEbc3a0...9C284Bab9
0.169100310381646 ETH
303464582022-10-20 5:08:13718 days ago1666242493
0x3BEbc3a0...9C284Bab9
0.169100310381646 ETH
303457052022-10-20 5:01:20718 days ago1666242080
0x3BEbc3a0...9C284Bab9
0.1607 ETH
303457052022-10-20 5:01:20718 days ago1666242080
0x3BEbc3a0...9C284Bab9
0.1607 ETH
303451872022-10-20 4:57:02718 days ago1666241822
0x3BEbc3a0...9C284Bab9
0.162 ETH
303451872022-10-20 4:57:02718 days ago1666241822
0x3BEbc3a0...9C284Bab9
0.162 ETH
303445882022-10-20 4:52:15718 days ago1666241535
0x3BEbc3a0...9C284Bab9
0.163329505565802 ETH
303445882022-10-20 4:52:15718 days ago1666241535
0x3BEbc3a0...9C284Bab9
0.163329505565802 ETH
303445532022-10-20 4:52:00718 days ago1666241520
0x3BEbc3a0...9C284Bab9
0.01 ETH
303445532022-10-20 4:52:00718 days ago1666241520
0x3BEbc3a0...9C284Bab9
0.01 ETH
303438802022-10-20 4:46:11718 days ago1666241171
0x3BEbc3a0...9C284Bab9
0.164643741870033 ETH
303438802022-10-20 4:46:11718 days ago1666241171
0x3BEbc3a0...9C284Bab9
0.164643741870033 ETH
303434142022-10-20 4:41:53718 days ago1666240913
0x3BEbc3a0...9C284Bab9
0.165984012904568 ETH
303434142022-10-20 4:41:53718 days ago1666240913
0x3BEbc3a0...9C284Bab9
0.165984012904568 ETH
303429122022-10-20 4:37:05718 days ago1666240625
0x3BEbc3a0...9C284Bab9
0.157577366741278 ETH
303429122022-10-20 4:37:05718 days ago1666240625
0x3BEbc3a0...9C284Bab9
0.157577366741278 ETH
303424252022-10-20 4:33:48718 days ago1666240428
0x3BEbc3a0...9C284Bab9
0.158905378427146 ETH
303424252022-10-20 4:33:48718 days ago1666240428
0x3BEbc3a0...9C284Bab9
0.158905378427146 ETH
303420062022-10-20 4:29:29718 days ago1666240169
0x3BEbc3a0...9C284Bab9
0.160179359908208 ETH
303420062022-10-20 4:29:29718 days ago1666240169
0x3BEbc3a0...9C284Bab9
0.160179359908208 ETH
303415042022-10-20 4:25:10718 days ago1666239910
0x3BEbc3a0...9C284Bab9
0.161496016033452 ETH
303415042022-10-20 4:25:10718 days ago1666239910
0x3BEbc3a0...9C284Bab9
0.161496016033452 ETH
303409162022-10-20 4:20:39718 days ago1666239639
0x3BEbc3a0...9C284Bab9
0.162887038952369 ETH
303409162022-10-20 4:20:39718 days ago1666239639
0x3BEbc3a0...9C284Bab9
0.162887038952369 ETH
303294842022-10-20 2:39:49718 days ago1666233589
0x3BEbc3a0...9C284Bab9
0.164133581284349 ETH
View All Internal Transactions

Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
HopAdapter

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion
File 1 of 13 : HopAdapter.sol
// SPDX-License-Identifier: GPL-3.0-only

pragma solidity >=0.8.15;

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

import "../interfaces/IBridgeAdapter.sol";
import "../interfaces/IWETH.sol";
import "../interfaces/IHopBridge.sol";
import "../lib/NativeWrap.sol";

contract HopAdapter is IBridgeAdapter, NativeWrap {
    using SafeERC20 for IERC20;

    bool public immutable isL1;

    mapping(address => address) public bridges;

    event BridgeUpdated(address[] tokens, address[] bridges);

    constructor(
        address[] memory _tokens,
        address[] memory _bridges,
        bool _isL1,
        address _nativeWrap
    ) NativeWrap(_nativeWrap) {
        isL1 = _isL1;
        _setBridges(_tokens, _bridges);
    }

    struct BridgeParams {
        uint256 bonderFee;
        uint256 deadline;
        uint256 amountOutMin;
        uint256 dstDeadline;
        uint256 dstAmountOutMin;
    }

    function bridge(
        uint64 _dstChainId,
        address _receiver,
        uint256 _amount,
        address _token,
        bytes memory _bridgeParams,
        bytes memory //_requestMessage
    ) external payable returns (bytes memory bridgeResp) {
        BridgeParams memory p = abi.decode(_bridgeParams, (BridgeParams));
        address _bridge = bridges[_token];
        require(_bridge != address(0), "bridge not found");

        IERC20(_token).safeTransferFrom(msg.sender, address(this), _amount);

        if (isL1) {
            uint256 value;
            if (_token == nativeWrap) {
                IWETH(_token).withdraw(_amount);
                value = _amount;
            } else {
                IERC20(_token).safeIncreaseAllowance(_bridge, _amount);
            }
            IHopBridge(_bridge).sendToL2{value: value}(
                _dstChainId,
                _receiver,
                _amount,
                p.amountOutMin,
                p.deadline,
                address(0),
                0
            );
        } else {
            uint256 value;
            if (_token == nativeWrap && IHopBridge(_bridge).l2CanonicalTokenIsEth()) {
                IWETH(_token).withdraw(_amount);
                value = _amount;
            } else {
                IERC20(_token).safeIncreaseAllowance(_bridge, _amount);
            }
            IHopBridge(_bridge).swapAndSend{value: value}(
                _dstChainId,
                _receiver,
                _amount,
                p.bonderFee,
                p.amountOutMin,
                p.deadline,
                p.dstAmountOutMin,
                p.dstDeadline
            );
        }
        return bridgeResp;
    }

    function setBridges(address[] calldata _tokens, address[] calldata _bridges) external onlyOwner {
        _setBridges(_tokens, _bridges);
    }

    function _setBridges(address[] memory _tokens, address[] memory _bridges) private {
        require(_tokens.length == _bridges.length, "len mismatch");
        for (uint8 i = 0; i < _tokens.length; i++) {
            bridges[_tokens[i]] = _bridges[i];
        }
        emit BridgeUpdated(_tokens, _bridges);
    }
}

File 2 of 13 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.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'
        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));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @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
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 3 of 13 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 4 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 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 {
        _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 5 of 13 : IBridgeAdapter.sol
// SPDX-License-Identifier: GPL-3.0-only

pragma solidity >=0.8.15;

interface IBridgeAdapter {
    function bridge(
        uint64 _dstChainId,
        // the address that the fund is transfered to on the destination chain
        address _receiver,
        uint256 _amount,
        address _token,
        // Bridge transfers quoted and abi encoded by chainhop backend server.
        // Bridge adapter implementations need to decode this themselves.
        bytes memory _bridgeParams,
        // The message to be bridged alongside the transfer.
        // Note if the bridge adapter doesn't support message passing, the call should revert when
        // this field is set.
        bytes memory _requestMessage
    ) external payable returns (bytes memory bridgeResp);
}

File 6 of 13 : IWETH.sol
// SPDX-License-Identifier: GPL-3.0-only

pragma solidity >=0.8.15;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

interface IWETH is IERC20 {
    function deposit() external payable;

    function withdraw(uint256) external;
}

File 7 of 13 : IHopBridge.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.8.15;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

interface IHopBridge {
    // functions in Hop's L1Bridge
    function sendToL2(
        uint256 chainId,
        address recipient,
        uint256 amount,
        uint256 amountOutMin,
        uint256 deadline,
        address relayer,
        uint256 relayerFee
    ) external payable;

    // functions in Hop's AMM wrapper
    function l2CanonicalTokenIsEth() external view returns (bool);

    function swapAndSend(
        uint256 chainId,
        address recipient,
        uint256 amount,
        uint256 bonderFee,
        uint256 amountOutMin,
        uint256 deadline,
        uint256 destinationAmountOutMin,
        uint256 destinationDeadline
    ) external payable;
}

File 8 of 13 : NativeWrap.sol
// SPDX-License-Identifier: GPL-3.0-only

pragma solidity >=0.8.15;

import "@openzeppelin/contracts/access/Ownable.sol";

/**
 * @title A codec registry that maps swap function selectors to corresponding codec addresses
 * @author Padoriku
 */
abstract contract NativeWrap is Ownable {
    address public nativeWrap;

    event NativeWrapUpdated(address nativeWrap);

    constructor(address _nativeWrap) {
        require(_nativeWrap != address(0), "zero native wrap");
        nativeWrap = _nativeWrap;
    }

    function setNativeWrap(address _nativeWrap) external onlyOwner {
        nativeWrap = _nativeWrap;
    }

    receive() external payable {}
}

File 9 of 13 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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");

        (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");

        (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");

        (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");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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;
    }
}

File 12 of 13 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

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 Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    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 default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 13 of 13 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 800,
    "details": {
      "yul": false
    }
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"},{"internalType":"address[]","name":"_bridges","type":"address[]"},{"internalType":"bool","name":"_isL1","type":"bool"},{"internalType":"address","name":"_nativeWrap","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"tokens","type":"address[]"},{"indexed":false,"internalType":"address[]","name":"bridges","type":"address[]"}],"name":"BridgeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"nativeWrap","type":"address"}],"name":"NativeWrapUpdated","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"},{"inputs":[{"internalType":"uint64","name":"_dstChainId","type":"uint64"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_token","type":"address"},{"internalType":"bytes","name":"_bridgeParams","type":"bytes"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"bridge","outputs":[{"internalType":"bytes","name":"bridgeResp","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bridges","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isL1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nativeWrap","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"},{"internalType":"address[]","name":"_bridges","type":"address[]"}],"name":"setBridges","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nativeWrap","type":"address"}],"name":"setNativeWrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b5060405162001a0338038062001a03833981016040819052620000349162000384565b806200004033620000ae565b6001600160a01b038116620000725760405162461bcd60e51b8152600401620000699062000453565b60405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055811515608052620000a48484620000fe565b5050505062000585565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8051825114620001225760405162461bcd60e51b8152600401620000699062000489565b60005b82518160ff161015620001d057818160ff16815181106200014a576200014a6200049b565b602002602001015160026000858460ff16815181106200016e576200016e6200049b565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508080620001c790620004c7565b91505062000125565b507fe6f8b37160fcd8da316f0f1af6909be686dfdb00300ad6bb0727b8ca058df2f78282604051620002049291906200055c565b60405180910390a15050565b634e487b7160e01b600052604160045260246000fd5b601f19601f83011681018181106001600160401b03821117156200024e576200024e62000210565b6040525050565b60006200026160405190565b90506200026f828262000226565b919050565b60006001600160401b0382111562000290576200029062000210565b5060209081020190565b60006001600160a01b0382165b92915050565b620002b8816200029a565b8114620002c457600080fd5b50565b8051620002a781620002ad565b6000620002eb620002e58462000274565b62000255565b838152905060208082019084028301858111156200030c576200030c600080fd5b835b81811015620003345780620003248882620002c7565b845250602092830192016200030e565b5050509392505050565b600082601f830112620003545762000354600080fd5b815162000366848260208601620002d4565b949350505050565b801515620002b8565b8051620002a7816200036e565b600080600080608085870312156200039f576200039f600080fd5b84516001600160401b03811115620003ba57620003ba600080fd5b620003c8878288016200033e565b94505060208501516001600160401b03811115620003e957620003e9600080fd5b620003f7878288016200033e565b93505060406200040a8782880162000377565b92505060606200041d87828801620002c7565b91505092959194509250565b601081526000602082016f07a65726f206e617469766520777261760841b815291505b5060200190565b60208082528101620002a78162000429565b600c81526000602082016b0d8cadc40dad2e6dac2e8c6d60a31b815291506200044c565b60208082528101620002a78162000465565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60ff16600060fe198201620004e057620004e0620004b1565b5060010190565b620004f2816200029a565b82525050565b6000620005068383620004e7565b505060200190565b600062000519825190565b80845260209384019383018060005b83811015620005515781516200053f8882620004f8565b97506020830192505060010162000528565b509495945050505050565b604080825281016200056f81856200050e565b905081810360208301526200036681846200050e565b60805161145c620005a76000396000818160b80152610341015261145c6000f3fe60806040526004361061009a5760003560e01c8063715018a6116100695780638da5cb5b1161004e5780638da5cb5b14610194578063ced67f0c146101b2578063f2fde38b146101e857600080fd5b8063715018a61461015f578063834bc3ea1461017457600080fd5b80631974932b146100a65780633509c148146100f0578063457bfa2f146101125780635b5a66a71461013f57600080fd5b366100a157005b600080fd5b3480156100b257600080fd5b506100da7f000000000000000000000000000000000000000000000000000000000000000081565b6040516100e79190610a97565b60405180910390f35b3480156100fc57600080fd5b5061011061010b366004610afd565b610208565b005b34801561011e57600080fd5b50600154610132906001600160a01b031681565b6040516100e79190610b90565b34801561014b57600080fd5b5061011061015a366004610bbd565b610283565b34801561016b57600080fd5b506101106102ba565b610187610182366004610d05565b6102ce565b6040516100e79190610e23565b3480156101a057600080fd5b506000546001600160a01b0316610132565b3480156101be57600080fd5b506101326101cd366004610bbd565b6002602052600090815260409020546001600160a01b031681565b3480156101f457600080fd5b50610110610203366004610bbd565b6105fd565b610210610637565b61027d8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060408051602080880282810182019093528782529093508792508691829185019084908082843760009201919091525061066192505050565b50505050565b61028b610637565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6102c2610637565b6102cc6000610764565b565b60606000838060200190518101906102e69190610ec5565b6001600160a01b03808716600090815260026020526040902054919250168061032a5760405162461bcd60e51b815260040161032190610f1d565b60405180910390fd5b61033f6001600160a01b03871633308a6107c1565b7f000000000000000000000000000000000000000000000000000000000000000015610472576001546000906001600160a01b03908116908816036103e457604051632e1a7d4d60e01b81526001600160a01b03881690632e1a7d4d906103aa908b90600401610f33565b600060405180830381600087803b1580156103c457600080fd5b505af11580156103d8573d6000803e3d6000fd5b505050508790506103f8565b6103f86001600160a01b038816838a610846565b816001600160a01b031663deace8f5828c8c8c886040015189602001516000806040518963ffffffff1660e01b815260040161043a9796959493929190610f78565b6000604051808303818588803b15801561045357600080fd5b505af1158015610467573d6000803e3d6000fd5b5050505050506105f1565b6001546000906001600160a01b0388811691161480156104ef5750816001600160a01b031663285551256040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ef9190610ff3565b1561055a57604051632e1a7d4d60e01b81526001600160a01b03881690632e1a7d4d90610520908b90600401610f33565b600060405180830381600087803b15801561053a57600080fd5b505af115801561054e573d6000803e3d6000fd5b5050505087905061056e565b61056e6001600160a01b038816838a610846565b816001600160a01b031663eea0d7b2828c8c8c886000015189604001518a602001518b608001518c606001516040518a63ffffffff1660e01b81526004016105bd989796959493929190611014565b6000604051808303818588803b1580156105d657600080fd5b505af11580156105ea573d6000803e3d6000fd5b5050505050505b50509695505050505050565b610605610637565b6001600160a01b03811661062b5760405162461bcd60e51b8152600401610321906110e8565b61063481610764565b50565b6000546001600160a01b031633146102cc5760405162461bcd60e51b81526004016103219061112a565b80518251146106825760405162461bcd60e51b81526004016103219061116e565b60005b82518160ff16101561072657818160ff16815181106106a6576106a661117e565b602002602001015160026000858460ff16815181106106c7576106c761117e565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550808061071e906111aa565b915050610685565b507fe6f8b37160fcd8da316f0f1af6909be686dfdb00300ad6bb0727b8ca058df2f78282604051610758929190611224565b60405180910390a15050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61027d846323b872dd60e01b8585856040516024016107e293929190611249565b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526108e3565b600081846001600160a01b031663dd62ed3e30866040518363ffffffff1660e01b8152600401610877929190611271565b602060405180830381865afa158015610894573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b8919061128c565b6108c291906112ad565b905061027d8463095ea7b360e01b85846040516024016107e29291906112c5565b6000610938826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166109779092919063ffffffff16565b80519091501561097257808060200190518101906109569190610ff3565b6109725760405162461bcd60e51b81526004016103219061133a565b505050565b60606109868484600085610990565b90505b9392505050565b6060824710156109b25760405162461bcd60e51b8152600401610321906113a4565b6001600160a01b0385163b6109d95760405162461bcd60e51b8152600401610321906113e8565b600080866001600160a01b031685876040516109f5919061141a565b60006040518083038185875af1925050503d8060008114610a32576040519150601f19603f3d011682016040523d82523d6000602084013e610a37565b606091505b5091509150610a47828286610a54565b925050505b949350505050565b60608315610a63575081610989565b825115610a735782518084602001fd5b8160405162461bcd60e51b81526004016103219190610e23565b8015155b82525050565b60208101610aa58284610a8d565b92915050565b60008083601f840112610ac057610ac0600080fd5b50813567ffffffffffffffff811115610adb57610adb600080fd5b602083019150836020820283011115610af657610af6600080fd5b9250929050565b60008060008060408587031215610b1657610b16600080fd5b843567ffffffffffffffff811115610b3057610b30600080fd5b610b3c87828801610aab565b9450945050602085013567ffffffffffffffff811115610b5e57610b5e600080fd5b610b6a87828801610aab565b95989497509550505050565b60006001600160a01b038216610aa5565b610a9181610b76565b60208101610aa58284610b87565b610ba781610b76565b811461063457600080fd5b8035610aa581610b9e565b600060208284031215610bd257610bd2600080fd5b6000610a4c8484610bb2565b67ffffffffffffffff8116610ba7565b8035610aa581610bde565b80610ba7565b8035610aa581610bf9565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715610c4657610c46610c0a565b6040525050565b6000610c5860405190565b9050610c648282610c20565b919050565b600067ffffffffffffffff821115610c8357610c83610c0a565b601f19601f83011660200192915050565b82818337506000910152565b6000610cb3610cae84610c69565b610c4d565b905082815260208101848484011115610cce57610cce600080fd5b610cd9848285610c94565b509392505050565b600082601f830112610cf557610cf5600080fd5b8135610a4c848260208601610ca0565b60008060008060008060c08789031215610d2157610d21600080fd5b6000610d2d8989610bee565b9650506020610d3e89828a01610bb2565b9550506040610d4f89828a01610bff565b9450506060610d6089828a01610bb2565b935050608087013567ffffffffffffffff811115610d8057610d80600080fd5b610d8c89828a01610ce1565b92505060a087013567ffffffffffffffff811115610dac57610dac600080fd5b610db889828a01610ce1565b9150509295509295509295565b60005b83811015610de0578181015183820152602001610dc8565b8381111561027d5750506000910152565b6000610dfb825190565b808452602084019350610e12818560208601610dc5565b601f01601f19169290920192915050565b602080825281016109898184610df1565b8051610aa581610bf9565b600060a08284031215610e5457610e54600080fd5b610e5e60a0610c4d565b90506000610e6c8484610e34565b8252506020610e7d84848301610e34565b6020830152506040610e9184828501610e34565b6040830152506060610ea584828501610e34565b6060830152506080610eb984828501610e34565b60808301525092915050565b600060a08284031215610eda57610eda600080fd5b6000610a4c8484610e3f565b601081526000602082017f627269646765206e6f7420666f756e6400000000000000000000000000000000815291505b5060200190565b60208082528101610aa581610ee6565b80610a91565b60208101610aa58284610f2d565b6000610aa5610f5767ffffffffffffffff841681565b90565b610a9181610f41565b6000610aa5610f578381565b610a9181610f63565b60e08101610f86828a610f5a565b610f936020830189610b87565b610fa06040830188610f2d565b610fad6060830187610f2d565b610fba6080830186610f2d565b610fc760a0830185610b87565b610fd460c0830184610f6f565b98975050505050505050565b801515610ba7565b8051610aa581610fe0565b60006020828403121561100857611008600080fd5b6000610a4c8484610fe8565b6101008101611023828b610f5a565b611030602083018a610b87565b61103d6040830189610f2d565b61104a6060830188610f2d565b6110576080830187610f2d565b61106460a0830186610f2d565b61107160c0830185610f2d565b61107e60e0830184610f2d565b9998505050505050505050565b602681526000602082017f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181527f6464726573730000000000000000000000000000000000000000000000000000602082015291505b5060400190565b60208082528101610aa58161108b565b60208082527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657291019081526000610f16565b60208082528101610aa5816110f8565b600c81526000602082017f6c656e206d69736d61746368000000000000000000000000000000000000000081529150610f16565b60208082528101610aa58161113a565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60ff16600060fe1982016111c0576111c0611194565b5060010190565b60006111d38383610b87565b505060200190565b60006111e5825190565b80845260209384019383018060005b8381101561121957815161120888826111c7565b9750602083019250506001016111f4565b509495945050505050565b6040808252810161123581856111db565b9050818103602083015261098681846111db565b606081016112578286610b87565b6112646020830185610b87565b610a4c6040830184610f2d565b6040810161127f8285610b87565b6109896020830184610b87565b6000602082840312156112a1576112a1600080fd5b6000610a4c8484610e34565b600082198211156112c0576112c0611194565b500190565b604081016112d38285610b87565b6109896020830184610f2d565b602a81526000602082017f5361666545524332303a204552433230206f7065726174696f6e20646964206e81527f6f74207375636365656400000000000000000000000000000000000000000000602082015291506110e1565b60208082528101610aa5816112e0565b602681526000602082017f416464726573733a20696e73756666696369656e742062616c616e636520666f81527f722063616c6c0000000000000000000000000000000000000000000000000000602082015291506110e1565b60208082528101610aa58161134a565b601d81526000602082017f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081529150610f16565b60208082528101610aa5816113b4565b6000611402825190565b611410818560208601610dc5565b9290920192915050565b600061098982846113f856fea2646970667358221220e9c39e1af474500d1789a5f93740a1654126b0d72f5b548a87c338e9bff58fb864736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000420000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000060000000000000000000000007f5c764cbc14f9669b88837ca1490cca17c3160700000000000000000000000094b008aa00579c1307b0ef2c499ad98a8ce58e58000000000000000000000000da10009cbd5d07dd0cecc66161fc93d7c9000da1000000000000000000000000420000000000000000000000000000000000000600000000000000000000000068f180fcce6836688e9084f035309e29bf0a20950000000000000000000000008700daec35af8ff88c16bdf0418774cb3d7599b400000000000000000000000000000000000000000000000000000000000000060000000000000000000000002ad09850b0ca4c7c1b33f5acd6cbabcab5d6e7960000000000000000000000007d269d3e0d61a05a0ba976b7dbf8805bf844af3f000000000000000000000000b3c68a491608952cb1257fc9909a537a0173b63b00000000000000000000000086ca30bef97fb651b8d866d45503684b90cb33120000000000000000000000002a11a98e2fcf4674f30934b5166645fe6ca35f56000000000000000000000000f11ebb94ec986ea891aec29cff151345c83b33ec

Deployed Bytecode

0x60806040526004361061009a5760003560e01c8063715018a6116100695780638da5cb5b1161004e5780638da5cb5b14610194578063ced67f0c146101b2578063f2fde38b146101e857600080fd5b8063715018a61461015f578063834bc3ea1461017457600080fd5b80631974932b146100a65780633509c148146100f0578063457bfa2f146101125780635b5a66a71461013f57600080fd5b366100a157005b600080fd5b3480156100b257600080fd5b506100da7f000000000000000000000000000000000000000000000000000000000000000081565b6040516100e79190610a97565b60405180910390f35b3480156100fc57600080fd5b5061011061010b366004610afd565b610208565b005b34801561011e57600080fd5b50600154610132906001600160a01b031681565b6040516100e79190610b90565b34801561014b57600080fd5b5061011061015a366004610bbd565b610283565b34801561016b57600080fd5b506101106102ba565b610187610182366004610d05565b6102ce565b6040516100e79190610e23565b3480156101a057600080fd5b506000546001600160a01b0316610132565b3480156101be57600080fd5b506101326101cd366004610bbd565b6002602052600090815260409020546001600160a01b031681565b3480156101f457600080fd5b50610110610203366004610bbd565b6105fd565b610210610637565b61027d8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060408051602080880282810182019093528782529093508792508691829185019084908082843760009201919091525061066192505050565b50505050565b61028b610637565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b6102c2610637565b6102cc6000610764565b565b60606000838060200190518101906102e69190610ec5565b6001600160a01b03808716600090815260026020526040902054919250168061032a5760405162461bcd60e51b815260040161032190610f1d565b60405180910390fd5b61033f6001600160a01b03871633308a6107c1565b7f000000000000000000000000000000000000000000000000000000000000000015610472576001546000906001600160a01b03908116908816036103e457604051632e1a7d4d60e01b81526001600160a01b03881690632e1a7d4d906103aa908b90600401610f33565b600060405180830381600087803b1580156103c457600080fd5b505af11580156103d8573d6000803e3d6000fd5b505050508790506103f8565b6103f86001600160a01b038816838a610846565b816001600160a01b031663deace8f5828c8c8c886040015189602001516000806040518963ffffffff1660e01b815260040161043a9796959493929190610f78565b6000604051808303818588803b15801561045357600080fd5b505af1158015610467573d6000803e3d6000fd5b5050505050506105f1565b6001546000906001600160a01b0388811691161480156104ef5750816001600160a01b031663285551256040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ef9190610ff3565b1561055a57604051632e1a7d4d60e01b81526001600160a01b03881690632e1a7d4d90610520908b90600401610f33565b600060405180830381600087803b15801561053a57600080fd5b505af115801561054e573d6000803e3d6000fd5b5050505087905061056e565b61056e6001600160a01b038816838a610846565b816001600160a01b031663eea0d7b2828c8c8c886000015189604001518a602001518b608001518c606001516040518a63ffffffff1660e01b81526004016105bd989796959493929190611014565b6000604051808303818588803b1580156105d657600080fd5b505af11580156105ea573d6000803e3d6000fd5b5050505050505b50509695505050505050565b610605610637565b6001600160a01b03811661062b5760405162461bcd60e51b8152600401610321906110e8565b61063481610764565b50565b6000546001600160a01b031633146102cc5760405162461bcd60e51b81526004016103219061112a565b80518251146106825760405162461bcd60e51b81526004016103219061116e565b60005b82518160ff16101561072657818160ff16815181106106a6576106a661117e565b602002602001015160026000858460ff16815181106106c7576106c761117e565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550808061071e906111aa565b915050610685565b507fe6f8b37160fcd8da316f0f1af6909be686dfdb00300ad6bb0727b8ca058df2f78282604051610758929190611224565b60405180910390a15050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61027d846323b872dd60e01b8585856040516024016107e293929190611249565b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526108e3565b600081846001600160a01b031663dd62ed3e30866040518363ffffffff1660e01b8152600401610877929190611271565b602060405180830381865afa158015610894573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b8919061128c565b6108c291906112ad565b905061027d8463095ea7b360e01b85846040516024016107e29291906112c5565b6000610938826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166109779092919063ffffffff16565b80519091501561097257808060200190518101906109569190610ff3565b6109725760405162461bcd60e51b81526004016103219061133a565b505050565b60606109868484600085610990565b90505b9392505050565b6060824710156109b25760405162461bcd60e51b8152600401610321906113a4565b6001600160a01b0385163b6109d95760405162461bcd60e51b8152600401610321906113e8565b600080866001600160a01b031685876040516109f5919061141a565b60006040518083038185875af1925050503d8060008114610a32576040519150601f19603f3d011682016040523d82523d6000602084013e610a37565b606091505b5091509150610a47828286610a54565b925050505b949350505050565b60608315610a63575081610989565b825115610a735782518084602001fd5b8160405162461bcd60e51b81526004016103219190610e23565b8015155b82525050565b60208101610aa58284610a8d565b92915050565b60008083601f840112610ac057610ac0600080fd5b50813567ffffffffffffffff811115610adb57610adb600080fd5b602083019150836020820283011115610af657610af6600080fd5b9250929050565b60008060008060408587031215610b1657610b16600080fd5b843567ffffffffffffffff811115610b3057610b30600080fd5b610b3c87828801610aab565b9450945050602085013567ffffffffffffffff811115610b5e57610b5e600080fd5b610b6a87828801610aab565b95989497509550505050565b60006001600160a01b038216610aa5565b610a9181610b76565b60208101610aa58284610b87565b610ba781610b76565b811461063457600080fd5b8035610aa581610b9e565b600060208284031215610bd257610bd2600080fd5b6000610a4c8484610bb2565b67ffffffffffffffff8116610ba7565b8035610aa581610bde565b80610ba7565b8035610aa581610bf9565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715610c4657610c46610c0a565b6040525050565b6000610c5860405190565b9050610c648282610c20565b919050565b600067ffffffffffffffff821115610c8357610c83610c0a565b601f19601f83011660200192915050565b82818337506000910152565b6000610cb3610cae84610c69565b610c4d565b905082815260208101848484011115610cce57610cce600080fd5b610cd9848285610c94565b509392505050565b600082601f830112610cf557610cf5600080fd5b8135610a4c848260208601610ca0565b60008060008060008060c08789031215610d2157610d21600080fd5b6000610d2d8989610bee565b9650506020610d3e89828a01610bb2565b9550506040610d4f89828a01610bff565b9450506060610d6089828a01610bb2565b935050608087013567ffffffffffffffff811115610d8057610d80600080fd5b610d8c89828a01610ce1565b92505060a087013567ffffffffffffffff811115610dac57610dac600080fd5b610db889828a01610ce1565b9150509295509295509295565b60005b83811015610de0578181015183820152602001610dc8565b8381111561027d5750506000910152565b6000610dfb825190565b808452602084019350610e12818560208601610dc5565b601f01601f19169290920192915050565b602080825281016109898184610df1565b8051610aa581610bf9565b600060a08284031215610e5457610e54600080fd5b610e5e60a0610c4d565b90506000610e6c8484610e34565b8252506020610e7d84848301610e34565b6020830152506040610e9184828501610e34565b6040830152506060610ea584828501610e34565b6060830152506080610eb984828501610e34565b60808301525092915050565b600060a08284031215610eda57610eda600080fd5b6000610a4c8484610e3f565b601081526000602082017f627269646765206e6f7420666f756e6400000000000000000000000000000000815291505b5060200190565b60208082528101610aa581610ee6565b80610a91565b60208101610aa58284610f2d565b6000610aa5610f5767ffffffffffffffff841681565b90565b610a9181610f41565b6000610aa5610f578381565b610a9181610f63565b60e08101610f86828a610f5a565b610f936020830189610b87565b610fa06040830188610f2d565b610fad6060830187610f2d565b610fba6080830186610f2d565b610fc760a0830185610b87565b610fd460c0830184610f6f565b98975050505050505050565b801515610ba7565b8051610aa581610fe0565b60006020828403121561100857611008600080fd5b6000610a4c8484610fe8565b6101008101611023828b610f5a565b611030602083018a610b87565b61103d6040830189610f2d565b61104a6060830188610f2d565b6110576080830187610f2d565b61106460a0830186610f2d565b61107160c0830185610f2d565b61107e60e0830184610f2d565b9998505050505050505050565b602681526000602082017f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181527f6464726573730000000000000000000000000000000000000000000000000000602082015291505b5060400190565b60208082528101610aa58161108b565b60208082527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657291019081526000610f16565b60208082528101610aa5816110f8565b600c81526000602082017f6c656e206d69736d61746368000000000000000000000000000000000000000081529150610f16565b60208082528101610aa58161113a565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60ff16600060fe1982016111c0576111c0611194565b5060010190565b60006111d38383610b87565b505060200190565b60006111e5825190565b80845260209384019383018060005b8381101561121957815161120888826111c7565b9750602083019250506001016111f4565b509495945050505050565b6040808252810161123581856111db565b9050818103602083015261098681846111db565b606081016112578286610b87565b6112646020830185610b87565b610a4c6040830184610f2d565b6040810161127f8285610b87565b6109896020830184610b87565b6000602082840312156112a1576112a1600080fd5b6000610a4c8484610e34565b600082198211156112c0576112c0611194565b500190565b604081016112d38285610b87565b6109896020830184610f2d565b602a81526000602082017f5361666545524332303a204552433230206f7065726174696f6e20646964206e81527f6f74207375636365656400000000000000000000000000000000000000000000602082015291506110e1565b60208082528101610aa5816112e0565b602681526000602082017f416464726573733a20696e73756666696369656e742062616c616e636520666f81527f722063616c6c0000000000000000000000000000000000000000000000000000602082015291506110e1565b60208082528101610aa58161134a565b601d81526000602082017f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081529150610f16565b60208082528101610aa5816113b4565b6000611402825190565b611410818560208601610dc5565b9290920192915050565b600061098982846113f856fea2646970667358221220e9c39e1af474500d1789a5f93740a1654126b0d72f5b548a87c338e9bff58fb864736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000420000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000060000000000000000000000007f5c764cbc14f9669b88837ca1490cca17c3160700000000000000000000000094b008aa00579c1307b0ef2c499ad98a8ce58e58000000000000000000000000da10009cbd5d07dd0cecc66161fc93d7c9000da1000000000000000000000000420000000000000000000000000000000000000600000000000000000000000068f180fcce6836688e9084f035309e29bf0a20950000000000000000000000008700daec35af8ff88c16bdf0418774cb3d7599b400000000000000000000000000000000000000000000000000000000000000060000000000000000000000002ad09850b0ca4c7c1b33f5acd6cbabcab5d6e7960000000000000000000000007d269d3e0d61a05a0ba976b7dbf8805bf844af3f000000000000000000000000b3c68a491608952cb1257fc9909a537a0173b63b00000000000000000000000086ca30bef97fb651b8d866d45503684b90cb33120000000000000000000000002a11a98e2fcf4674f30934b5166645fe6ca35f56000000000000000000000000f11ebb94ec986ea891aec29cff151345c83b33ec

-----Decoded View---------------
Arg [0] : _tokens (address[]): 0x7F5c764cBc14f9669B88837ca1490cCa17c31607,0x94b008aA00579c1307B0EF2c499aD98a8ce58e58,0xDA10009cBd5D07dd0CeCc66161FC93D7c9000da1,0x4200000000000000000000000000000000000006,0x68f180fcCe6836688e9084f035309E29Bf0A2095,0x8700dAec35aF8Ff88c16BdF0418774CB3D7599B4
Arg [1] : _bridges (address[]): 0x2ad09850b0CA4c7c1B33f5AcD6cBAbCaB5d6e796,0x7D269D3E0d61A05a0bA976b7DBF8805bF844AF3F,0xb3C68a491608952Cb1257FC9909a537a0173b63B,0x86cA30bEF97fB651b8d866D45503684b90cb3312,0x2A11a98e2fCF4674F30934B5166645fE6CA35F56,0xf11EBB94EC986EA891Aec29cfF151345C83b33Ec
Arg [2] : _isL1 (bool): False
Arg [3] : _nativeWrap (address): 0x4200000000000000000000000000000000000006

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000004200000000000000000000000000000000000006
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 0000000000000000000000007f5c764cbc14f9669b88837ca1490cca17c31607
Arg [6] : 00000000000000000000000094b008aa00579c1307b0ef2c499ad98a8ce58e58
Arg [7] : 000000000000000000000000da10009cbd5d07dd0cecc66161fc93d7c9000da1
Arg [8] : 0000000000000000000000004200000000000000000000000000000000000006
Arg [9] : 00000000000000000000000068f180fcce6836688e9084f035309e29bf0a2095
Arg [10] : 0000000000000000000000008700daec35af8ff88c16bdf0418774cb3d7599b4
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [12] : 0000000000000000000000002ad09850b0ca4c7c1b33f5acd6cbabcab5d6e796
Arg [13] : 0000000000000000000000007d269d3e0d61a05a0ba976b7dbf8805bf844af3f
Arg [14] : 000000000000000000000000b3c68a491608952cb1257fc9909a537a0173b63b
Arg [15] : 00000000000000000000000086ca30bef97fb651b8d866d45503684b90cb3312
Arg [16] : 0000000000000000000000002a11a98e2fcf4674f30934b5166645fe6ca35f56
Arg [17] : 000000000000000000000000f11ebb94ec986ea891aec29cff151345c83b33ec


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]
[ 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.