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

Contract

0xe0D0Cf872C09968f1554730042Ee680354deC994
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Stake197314732024-04-25 9:25:47157 days ago1714037147IN
0xe0D0Cf87...354deC994
0 ETH0.0008252213.4254233
Stake197314412024-04-25 9:19:23157 days ago1714036763IN
0xe0D0Cf87...354deC994
0 ETH0.0010156713.77224812
Stake197314372024-04-25 9:18:35157 days ago1714036715IN
0xe0D0Cf87...354deC994
0 ETH0.0009147112.40331816
Stake197314252024-04-25 9:16:11157 days ago1714036571IN
0xe0D0Cf87...354deC994
0 ETH0.0008219912.65671139
Stake197314182024-04-25 9:14:47157 days ago1714036487IN
0xe0D0Cf87...354deC994
0 ETH0.0009256312.55131147
Stake197313922024-04-25 9:09:35157 days ago1714036175IN
0xe0D0Cf87...354deC994
0 ETH0.0009392412.73434247
Stake197313222024-04-25 8:55:11157 days ago1714035311IN
0xe0D0Cf87...354deC994
0 ETH0.0008699311.79603542
Stake197312672024-04-25 8:44:11157 days ago1714034651IN
0xe0D0Cf87...354deC994
0 ETH0.0006820510.50346364
Stake197312512024-04-25 8:40:59157 days ago1714034459IN
0xe0D0Cf87...354deC994
0 ETH0.0008508811.53772938
Stake197312392024-04-25 8:38:35157 days ago1714034315IN
0xe0D0Cf87...354deC994
0 ETH0.0007872712.12038155
Stake197312132024-04-25 8:33:23157 days ago1714034003IN
0xe0D0Cf87...354deC994
0 ETH0.0008711313.41337299
Stake197311392024-04-25 8:18:11157 days ago1714033091IN
0xe0D0Cf87...354deC994
0 ETH0.0009705514.9419736
Stake197311232024-04-25 8:14:59157 days ago1714032899IN
0xe0D0Cf87...354deC994
0 ETH0.0009484712.86108868
Stake197308902024-04-25 7:27:59158 days ago1714030079IN
0xe0D0Cf87...354deC994
0 ETH0.00062488.47215541
Stake197308802024-04-25 7:25:59158 days ago1714029959IN
0xe0D0Cf87...354deC994
0 ETH0.000469787.64171666
Stake197308372024-04-25 7:17:23158 days ago1714029443IN
0xe0D0Cf87...354deC994
0 ETH0.000465737.17120164
Stake197308032024-04-25 7:10:35158 days ago1714029035IN
0xe0D0Cf87...354deC994
0 ETH0.000369066.00241
Stake197307442024-04-25 6:58:47158 days ago1714028327IN
0xe0D0Cf87...354deC994
0 ETH0.000383565.90513268
Stake197307422024-04-25 6:58:23158 days ago1714028303IN
0xe0D0Cf87...354deC994
0 ETH0.000362255.65411563
Stake197307052024-04-25 6:50:47158 days ago1714027847IN
0xe0D0Cf87...354deC994
0 ETH0.000436956.72708624
Stake197306592024-04-25 6:41:35158 days ago1714027295IN
0xe0D0Cf87...354deC994
0 ETH0.000501016.79357116
Stake197306302024-04-25 6:35:47158 days ago1714026947IN
0xe0D0Cf87...354deC994
0 ETH0.000388455.98123857
Stake197304452024-04-25 5:58:35158 days ago1714024715IN
0xe0D0Cf87...354deC994
0 ETH0.000454756.16717846
Stake197302972024-04-25 5:28:59158 days ago1714022939IN
0xe0D0Cf87...354deC994
0 ETH0.000381925.17884177
Stake197301942024-04-25 5:08:23158 days ago1714021703IN
0xe0D0Cf87...354deC994
0 ETH0.00042955.8231898
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
BounceBitVault

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : BounceBitVault.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.0;

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

contract BounceBitVault is Ownable, Pausable {
    using SafeERC20 for IERC20;

    // whitelisted token address => the target address token transfer to
    mapping(address => address) public whitelist;

    event Staked(address token, address from, address to, uint256 amount);
    event WhitelistSet(address token, address to);

    constructor(address[] memory tokens, address[] memory tos) {
        require(tokens.length == tos.length, "INVALID_LENGTH");
        for (uint256 i = 0; i < tokens.length; i++) {
            _setWhitelist(tokens[i], tos[i]);
        }
    }

    function stake(address token, uint256 amount) external whenNotPaused {
        address to = whitelist[token];
        require(to != address(0), "INVALID_TO");
        IERC20(token).safeTransferFrom(msg.sender, address(this), amount);
        IERC20(token).safeTransfer(to, amount);
        emit Staked(token, msg.sender, to, amount);
    }

    function setWhitelist(address token, address to) external onlyOwner {
        _setWhitelist(token, to);
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    function _setWhitelist(address token, address to) private {
        require(Address.isContract(token), "INVALID_TOKEN");
        require(to != address(0), "INVALID_TO");
        whitelist[token] = to;
        emit WhitelistSet(token, to);
    }
}

File 2 of 8 : 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 8 : 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 4 of 8 : IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/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 5 of 8 : 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 6 of 8 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/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;

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    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));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    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");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    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");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation 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).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // 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 cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

File 7 of 8 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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 8 of 8 : 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;
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "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":"tos","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":"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":"token","type":"address"},{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"WhitelistSet","type":"event"},{"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

608060405234801562000010575f80fd5b5060405162000df138038062000df1833981016040819052620000339162000327565b6200003e3362000106565b5f805460ff60a01b191690558051825114620000925760405162461bcd60e51b815260206004820152600e60248201526d0929cac82989288be988a9c8ea8960931b60448201526064015b60405180910390fd5b5f5b8251811015620000fd57620000e8838281518110620000b757620000b76200038d565b6020026020010151838381518110620000d457620000d46200038d565b60200260200101516200015560201b60201c565b80620000f481620003a1565b91505062000094565b505050620003c6565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382163b6200019e5760405162461bcd60e51b815260206004820152600d60248201526c24a72b20a624a22faa27a5a2a760991b604482015260640162000089565b6001600160a01b038116620001e35760405162461bcd60e51b815260206004820152600a602482015269494e56414c49445f544f60b01b604482015260640162000089565b6001600160a01b038281165f8181526001602090815260409182902080546001600160a01b031916948616948517905581519283528201929092527feac5a5e660e60098b6da6e7ac8b421701cdaa876a2b2558794dde0dd0313b18f910160405180910390a15050565b634e487b7160e01b5f52604160045260245ffd5b80516001600160a01b038116811462000278575f80fd5b919050565b5f82601f8301126200028d575f80fd5b815160206001600160401b0380831115620002ac57620002ac6200024d565b8260051b604051601f19603f83011681018181108482111715620002d457620002d46200024d565b604052938452858101830193838101925087851115620002f2575f80fd5b83870191505b848210156200031c576200030c8262000261565b83529183019190830190620002f8565b979650505050505050565b5f806040838503121562000339575f80fd5b82516001600160401b038082111562000350575f80fd5b6200035e868387016200027d565b9350602085015191508082111562000374575f80fd5b5062000383858286016200027d565b9150509250929050565b634e487b7160e01b5f52603260045260245ffd5b5f60018201620003bf57634e487b7160e01b5f52601160045260245ffd5b5060010190565b610a1d80620003d45f395ff3fe608060405234801561000f575f80fd5b5060043610610090575f3560e01c80638da5cb5b116100635780638da5cb5b146100cf5780639b19251a146100f3578063adc9772e1461011b578063ba181ac61461012e578063f2fde38b14610141575f80fd5b80633f4ba83a146100945780635c975abb1461009e578063715018a6146100bf5780638456cb59146100c7575b5f80fd5b61009c610154565b005b5f54600160a01b900460ff1660405190151581526020015b60405180910390f35b61009c610166565b61009c610177565b5f546001600160a01b03165b6040516001600160a01b0390911681526020016100b6565b6100db6101013660046108e0565b60016020525f90815260409020546001600160a01b031681565b61009c610129366004610900565b610187565b61009c61013c366004610928565b610266565b61009c61014f3660046108e0565b61027c565b61015c6102f5565b61016461034e565b565b61016e6102f5565b6101645f6103a2565b61017f6102f5565b6101646103f1565b61018f610433565b6001600160a01b038083165f9081526001602052604090205416806101e85760405162461bcd60e51b815260206004820152600a602482015269494e56414c49445f544f60b01b60448201526064015b60405180910390fd5b6101fd6001600160a01b03841633308561047f565b6102116001600160a01b03841682846104f0565b604080516001600160a01b0385811682523360208301528316818301526060810184905290517f6e613e504dcbe267f60e295b08e0a211b63db8690d660e5ed4f864d409bb66209181900360800190a1505050565b61026e6102f5565b6102788282610525565b5050565b6102846102f5565b6001600160a01b0381166102e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016101df565b6102f2816103a2565b50565b5f546001600160a01b031633146101645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101df565b610356610619565b5f805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6103f9610433565b5f805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586103853390565b5f54600160a01b900460ff16156101645760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016101df565b6040516001600160a01b03808516602483015283166044820152606481018290526104ea9085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610668565b50505050565b6040516001600160a01b03831660248201526044810182905261052090849063a9059cbb60e01b906064016104b3565b505050565b6001600160a01b0382163b61056c5760405162461bcd60e51b815260206004820152600d60248201526c24a72b20a624a22faa27a5a2a760991b60448201526064016101df565b6001600160a01b0381166105af5760405162461bcd60e51b815260206004820152600a602482015269494e56414c49445f544f60b01b60448201526064016101df565b6001600160a01b038281165f8181526001602090815260409182902080546001600160a01b031916948616948517905581519283528201929092527feac5a5e660e60098b6da6e7ac8b421701cdaa876a2b2558794dde0dd0313b18f910160405180910390a15050565b5f54600160a01b900460ff166101645760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016101df565b5f6106bc826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661073b9092919063ffffffff16565b905080515f14806106dc5750808060200190518101906106dc9190610959565b6105205760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016101df565b606061074984845f85610751565b949350505050565b6060824710156107b25760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016101df565b5f80866001600160a01b031685876040516107cd919061099a565b5f6040518083038185875af1925050503d805f8114610807576040519150601f19603f3d011682016040523d82523d5f602084013e61080c565b606091505b509150915061081d87838387610828565b979650505050505050565b606083156108965782515f0361088f576001600160a01b0385163b61088f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016101df565b5081610749565b61074983838151156108ab5781518083602001fd5b8060405162461bcd60e51b81526004016101df91906109b5565b80356001600160a01b03811681146108db575f80fd5b919050565b5f602082840312156108f0575f80fd5b6108f9826108c5565b9392505050565b5f8060408385031215610911575f80fd5b61091a836108c5565b946020939093013593505050565b5f8060408385031215610939575f80fd5b610942836108c5565b9150610950602084016108c5565b90509250929050565b5f60208284031215610969575f80fd5b815180151581146108f9575f80fd5b5f5b8381101561099257818101518382015260200161097a565b50505f910152565b5f82516109ab818460208701610978565b9190910192915050565b602081525f82518060208401526109d3816040850160208701610978565b601f01601f1916919091016040019291505056fea2646970667358221220d29be573d53fa8a942264c2b96a9892f1c26f3b8485bac71064e0edb21a2500664736f6c63430008140033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000040000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599000000000000000000000000a9b1eb5908cfc3cdf91f9b8b3a7410859800909600000000000000000000000038e382f74dfb84608f3c1f10187f6bef5951de930000000000000000000000001981e32c2154936741ab6541a737b87c68f13ce10000000000000000000000000000000000000000000000000000000000000004000000000000000000000000a318dc13107efa77b3dbdc35b87ddd79b33e1139000000000000000000000000d08426542212c2bc2b3fadfb9529e7dbd14b86ba000000000000000000000000d08426542212c2bc2b3fadfb9529e7dbd14b86ba000000000000000000000000d08426542212c2bc2b3fadfb9529e7dbd14b86ba

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610090575f3560e01c80638da5cb5b116100635780638da5cb5b146100cf5780639b19251a146100f3578063adc9772e1461011b578063ba181ac61461012e578063f2fde38b14610141575f80fd5b80633f4ba83a146100945780635c975abb1461009e578063715018a6146100bf5780638456cb59146100c7575b5f80fd5b61009c610154565b005b5f54600160a01b900460ff1660405190151581526020015b60405180910390f35b61009c610166565b61009c610177565b5f546001600160a01b03165b6040516001600160a01b0390911681526020016100b6565b6100db6101013660046108e0565b60016020525f90815260409020546001600160a01b031681565b61009c610129366004610900565b610187565b61009c61013c366004610928565b610266565b61009c61014f3660046108e0565b61027c565b61015c6102f5565b61016461034e565b565b61016e6102f5565b6101645f6103a2565b61017f6102f5565b6101646103f1565b61018f610433565b6001600160a01b038083165f9081526001602052604090205416806101e85760405162461bcd60e51b815260206004820152600a602482015269494e56414c49445f544f60b01b60448201526064015b60405180910390fd5b6101fd6001600160a01b03841633308561047f565b6102116001600160a01b03841682846104f0565b604080516001600160a01b0385811682523360208301528316818301526060810184905290517f6e613e504dcbe267f60e295b08e0a211b63db8690d660e5ed4f864d409bb66209181900360800190a1505050565b61026e6102f5565b6102788282610525565b5050565b6102846102f5565b6001600160a01b0381166102e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016101df565b6102f2816103a2565b50565b5f546001600160a01b031633146101645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101df565b610356610619565b5f805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6103f9610433565b5f805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586103853390565b5f54600160a01b900460ff16156101645760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016101df565b6040516001600160a01b03808516602483015283166044820152606481018290526104ea9085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610668565b50505050565b6040516001600160a01b03831660248201526044810182905261052090849063a9059cbb60e01b906064016104b3565b505050565b6001600160a01b0382163b61056c5760405162461bcd60e51b815260206004820152600d60248201526c24a72b20a624a22faa27a5a2a760991b60448201526064016101df565b6001600160a01b0381166105af5760405162461bcd60e51b815260206004820152600a602482015269494e56414c49445f544f60b01b60448201526064016101df565b6001600160a01b038281165f8181526001602090815260409182902080546001600160a01b031916948616948517905581519283528201929092527feac5a5e660e60098b6da6e7ac8b421701cdaa876a2b2558794dde0dd0313b18f910160405180910390a15050565b5f54600160a01b900460ff166101645760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016101df565b5f6106bc826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661073b9092919063ffffffff16565b905080515f14806106dc5750808060200190518101906106dc9190610959565b6105205760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016101df565b606061074984845f85610751565b949350505050565b6060824710156107b25760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016101df565b5f80866001600160a01b031685876040516107cd919061099a565b5f6040518083038185875af1925050503d805f8114610807576040519150601f19603f3d011682016040523d82523d5f602084013e61080c565b606091505b509150915061081d87838387610828565b979650505050505050565b606083156108965782515f0361088f576001600160a01b0385163b61088f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016101df565b5081610749565b61074983838151156108ab5781518083602001fd5b8060405162461bcd60e51b81526004016101df91906109b5565b80356001600160a01b03811681146108db575f80fd5b919050565b5f602082840312156108f0575f80fd5b6108f9826108c5565b9392505050565b5f8060408385031215610911575f80fd5b61091a836108c5565b946020939093013593505050565b5f8060408385031215610939575f80fd5b610942836108c5565b9150610950602084016108c5565b90509250929050565b5f60208284031215610969575f80fd5b815180151581146108f9575f80fd5b5f5b8381101561099257818101518382015260200161097a565b50505f910152565b5f82516109ab818460208701610978565b9190910192915050565b602081525f82518060208401526109d3816040850160208701610978565b601f01601f1916919091016040019291505056fea2646970667358221220d29be573d53fa8a942264c2b96a9892f1c26f3b8485bac71064e0edb21a2500664736f6c63430008140033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000040000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599000000000000000000000000a9b1eb5908cfc3cdf91f9b8b3a7410859800909600000000000000000000000038e382f74dfb84608f3c1f10187f6bef5951de930000000000000000000000001981e32c2154936741ab6541a737b87c68f13ce10000000000000000000000000000000000000000000000000000000000000004000000000000000000000000a318dc13107efa77b3dbdc35b87ddd79b33e1139000000000000000000000000d08426542212c2bc2b3fadfb9529e7dbd14b86ba000000000000000000000000d08426542212c2bc2b3fadfb9529e7dbd14b86ba000000000000000000000000d08426542212c2bc2b3fadfb9529e7dbd14b86ba

-----Decoded View---------------
Arg [0] : tokens (address[]): 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599,0xA9B1Eb5908CfC3cdf91F9B8B3a74108598009096,0x38e382F74dfb84608F3C1F10187f6bEf5951DE93,0x1981E32C2154936741aB6541a737b87C68F13cE1
Arg [1] : tos (address[]): 0xA318Dc13107EfA77B3dbdc35B87ddD79b33e1139,0xD08426542212c2Bc2B3fADFb9529E7dBD14B86Ba,0xD08426542212c2Bc2B3fADFb9529E7dBD14B86Ba,0xD08426542212c2Bc2B3fADFb9529E7dBD14B86Ba

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599
Arg [4] : 000000000000000000000000a9b1eb5908cfc3cdf91f9b8b3a74108598009096
Arg [5] : 00000000000000000000000038e382f74dfb84608f3c1f10187f6bef5951de93
Arg [6] : 0000000000000000000000001981e32c2154936741ab6541a737b87c68f13ce1
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 000000000000000000000000a318dc13107efa77b3dbdc35b87ddd79b33e1139
Arg [9] : 000000000000000000000000d08426542212c2bc2b3fadfb9529e7dbd14b86ba
Arg [10] : 000000000000000000000000d08426542212c2bc2b3fadfb9529e7dbd14b86ba
Arg [11] : 000000000000000000000000d08426542212c2bc2b3fadfb9529e7dbd14b86ba


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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