Arbitrum Sepolia Testnet

Contract

0x86F25B91CA7591f3b1f321AaCA091B2dE060eEc1
Source Code Source Code

Overview

ETH Balance

0 ETH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Amount
Approve1011437092024-11-27 16:33:32424 days ago1732725212IN
0x86F25B91...dE060eEc1
0 ETH0.000004990.1
Approve1011429252024-11-27 16:30:16424 days ago1732725016IN
0x86F25B91...dE060eEc1
0 ETH0.000005220.1
Approve1011411122024-11-27 16:22:43424 days ago1732724563IN
0x86F25B91...dE060eEc1
0 ETH0.000005150.1
Approve1011410852024-11-27 16:22:36424 days ago1732724556IN
0x86F25B91...dE060eEc1
0 ETH0.000005150.1
Transfer1011408842024-11-27 16:21:46424 days ago1732724506IN
0x86F25B91...dE060eEc1
0 ETH0.000003930.1
Approve1011398782024-11-27 16:17:35424 days ago1732724255IN
0x86F25B91...dE060eEc1
0 ETH0.000003070.1
Approve1011394332024-11-27 16:15:43424 days ago1732724143IN
0x86F25B91...dE060eEc1
0 ETH0.000005060.1
Approve1011393982024-11-27 16:15:35424 days ago1732724135IN
0x86F25B91...dE060eEc1
0 ETH0.000005060.1
Approve1011384012024-11-27 16:11:26424 days ago1732723886IN
0x86F25B91...dE060eEc1
0 ETH0.000005290.1
Approve998264542024-11-23 11:41:12428 days ago1732362072IN
0x86F25B91...dE060eEc1
0 ETH0.000005040.1
Approve997912442024-11-23 8:48:36428 days ago1732351716IN
0x86F25B91...dE060eEc1
0 ETH0.000004640.1
Approve984292572024-11-18 15:27:11433 days ago1731943631IN
0x86F25B91...dE060eEc1
0 ETH0.000002830.1
Transfer984210632024-11-18 14:47:07433 days ago1731941227IN
0x86F25B91...dE060eEc1
0 ETH0.000005270.1
Approve984151582024-11-18 14:18:44433 days ago1731939524IN
0x86F25B91...dE060eEc1
0 ETH0.000004740.1
Transfer984149412024-11-18 14:17:40433 days ago1731939460IN
0x86F25B91...dE060eEc1
0 ETH0.000005260.1
Approve983983072024-11-18 12:56:37433 days ago1731934597IN
0x86F25B91...dE060eEc1
0 ETH0.000004840.1
Approve975924182024-11-15 12:34:35436 days ago1731674075IN
0x86F25B91...dE060eEc1
0 ETH0.000004710.1
Approve975922192024-11-15 12:33:36436 days ago1731674016IN
0x86F25B91...dE060eEc1
0 ETH0.000004710.1
Approve975919582024-11-15 12:32:15436 days ago1731673935IN
0x86F25B91...dE060eEc1
0 ETH0.000004710.1
Approve975913782024-11-15 12:29:33436 days ago1731673773IN
0x86F25B91...dE060eEc1
0 ETH0.000004710.1
Approve975791952024-11-15 11:29:03436 days ago1731670143IN
0x86F25B91...dE060eEc1
0 ETH0.00000510.1
Approve975779112024-11-15 11:23:06436 days ago1731669786IN
0x86F25B91...dE060eEc1
0 ETH0.000005180.1
Approve975755412024-11-15 11:12:29436 days ago1731669149IN
0x86F25B91...dE060eEc1
0 ETH0.000007150.13789
Approve975748562024-11-15 11:09:29436 days ago1731668969IN
0x86F25B91...dE060eEc1
0 ETH0.000005080.1
Transfer975614862024-11-15 10:09:57436 days ago1731665397IN
0x86F25B91...dE060eEc1
0 ETH0.000008860.1
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To Amount
912992952024-10-24 12:59:19458 days ago1729774759  Contract Creation0 ETH

Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xd5685304...b4E8D0Bdf
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
MockInterSynthToken

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

// SPDX-License-Identifier: MIT
pragma solidity =0.8.24;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "../Owned.sol";
import "../interfaces/IRewardEscrowV2.sol";
import "../interfaces/IRewardsDistribution.sol";
import "../interfaces/ISupplySchedule.sol";

/**
 * This smart contract
 */

contract MockInterSynthToken is Owned, ERC20 {
    // uint256 INITIAL_SUPPLY = 10000000000 * 10**18;

    IRewardsDistribution private rewardsDistribution;
    ISupplySchedule private supplySchedule;

    constructor(
        address _owner,
        IRewardsDistribution _rewardsDistribution,
        ISupplySchedule _supplySchedule
    ) ERC20("Internal Synth Token", "SYNTH") Owned(_owner) {
        rewardsDistribution = _rewardsDistribution;
        supplySchedule = _supplySchedule;
    }

    function setAssociatedContracts(
        IRewardsDistribution _rewardsDistribution,
        ISupplySchedule _supplySchedule
    ) external onlyOwner {
        if (address(_rewardsDistribution) != address(0)) {
            rewardsDistribution = _rewardsDistribution;
        }
        if (address(_supplySchedule) != address(0)) {
            supplySchedule = _supplySchedule;
        }
    }

    function ownerMint(uint256 _amount) external onlyOwner {
        _mint(msg.sender, _amount);
    }

    function mint() external returns (bool) {
        require(address(rewardsDistribution) != address(0), "Synthr: RewardsDistribution not set");
        require(address(supplySchedule) != address(0), "Synthr: SupplySchedule not set");

        uint256 supplyToMint = supplySchedule.mintableSupply();
        require(supplyToMint > 0, "Synthr: No supply is mintable");

        // record minting event before mutation to token supply
        uint256 minterReward = supplySchedule.recordMintEvent(supplyToMint);

        // Set minted SYNTH balance to RewardEscrow's balance
        // Minus the minterReward and set balance of minter to add reward
        uint256 amountToDistribute = supplyToMint - minterReward;

        _mint(address(rewardsDistribution), amountToDistribute);

        // Kick off the distribution of rewards
        rewardsDistribution.distributeRewards(amountToDistribute);

        // Assign the minters reward.
        _mint(msg.sender, minterReward);

        return true;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

// SPDX-License-Identifier: MIT
pragma solidity =0.8.24;

library VestingEntries {
    struct VestingEntry {
        uint64 endTime;
        uint256 escrowAmount;
    }
    struct VestingEntryWithID {
        uint64 endTime;
        uint256 escrowAmount;
        uint256 entryID;
    }
}

interface IRewardEscrowV2 {
    // Views
    function balanceOf(address account) external view returns (uint256);

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

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

    function totalEscrowedBalance() external view returns (uint256);

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

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

    function getVestingQuantity(
        address account,
        uint256[] calldata entryIDs
    ) external view returns (uint256);

    function getVestingSchedules(
        address account,
        uint256 index,
        uint256 pageSize
    ) external view returns (VestingEntries.VestingEntryWithID[] memory);

    function getAccountVestingEntryIDs(
        address account,
        uint256 index,
        uint256 pageSize
    ) external view returns (uint256[] memory);

    function getVestingEntryClaimable(
        address account,
        uint256 entryID
    ) external view returns (uint256);

    function getVestingEntry(
        address account,
        uint256 entryID
    ) external view returns (uint64, uint256);

    // Mutative functions
    function vest(uint256[] calldata entryIDs) external;

    function createEscrowEntry(address beneficiary, uint256 deposit, uint256 duration) external;

    function appendVestingEntry(address account, uint256 quantity, uint256 duration) external;
}

// SPDX-License-Identifier: MIT
pragma solidity >=0.4.24;

interface IRewardsDistribution {
    // Structs
    struct DistributionData {
        address destination;
        uint256 amount;
    }

    // Views
    function authority() external view returns (address);

    function distributions(
        uint256 index
    ) external view returns (address destination, uint256 amount); // DistributionData

    function distributionsLength() external view returns (uint256);

    // Mutative Functions
    function distributeRewards(uint256 amount) external returns (bool);
}

// SPDX-License-Identifier: MIT
pragma solidity >=0.4.24;

interface ISupplySchedule {
    // Views
    function mintableSupply() external view returns (uint256);

    function isMintable() external view returns (bool);

    function minterReward() external view returns (uint256);

    // Mutative functions
    function recordMintEvent(uint256 supplyMinted) external returns (uint256);
}

// SPDX-License-Identifier: MIT
pragma solidity =0.8.24;

contract Owned {
    address public owner;
    address public nominatedOwner;

    constructor(address _owner) {
        require(_owner != address(0), "Owner address cannot be 0");
        owner = _owner;
        emit OwnerChanged(address(0), _owner);
    }

    function nominateNewOwner(address _owner) external onlyOwner {
        nominatedOwner = _owner;
        emit OwnerNominated(_owner);
    }

    function acceptOwnership() external {
        require(
            msg.sender == nominatedOwner,
            "You must be nominated before you can accept ownership"
        );
        emit OwnerChanged(owner, nominatedOwner);
        owner = nominatedOwner;
        nominatedOwner = address(0);
    }

    modifier onlyOwner() {
        _onlyOwner();
        _;
    }

    function _onlyOwner() private view {
        require(msg.sender == owner, "Only the contract owner may perform this action");
    }

    event OwnerNominated(address newOwner);
    event OwnerChanged(address oldOwner, address newOwner);
}

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

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"contract IRewardsDistribution","name":"_rewardsDistribution","type":"address"},{"internalType":"contract ISupplySchedule","name":"_supplySchedule","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerNominated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"nominateNewOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nominatedOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IRewardsDistribution","name":"_rewardsDistribution","type":"address"},{"internalType":"contract ISupplySchedule","name":"_supplySchedule","type":"address"}],"name":"setAssociatedContracts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

0x60806040523480156200001157600080fd5b50604051620012d4380380620012d48339810160408190526200003491620001aa565b604080518082018252601481527f496e7465726e616c2053796e746820546f6b656e000000000000000000000000602080830191909152825180840190935260058352640a6b29ca8960db1b9083015290846001600160a01b038116620000e15760405162461bcd60e51b815260206004820152601960248201527f4f776e657220616464726573732063616e6e6f74206265203000000000000000604482015260640160405180910390fd5b600080546001600160a01b0319166001600160a01b03831690811782556040805192835260208301919091527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c910160405180910390a1506005620001478382620002a5565b506006620001568282620002a5565b5050600780546001600160a01b039485166001600160a01b031991821617909155600880549390941692169190911790915550620003719050565b6001600160a01b0381168114620001a757600080fd5b50565b600080600060608486031215620001c057600080fd5b8351620001cd8162000191565b6020850151909350620001e08162000191565b6040850151909250620001f38162000191565b809150509250925092565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022957607f821691505b6020821081036200024a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002a0576000816000526020600020601f850160051c810160208610156200027b5750805b601f850160051c820191505b818110156200029c5782815560010162000287565b5050505b505050565b81516001600160401b03811115620002c157620002c1620001fe565b620002d981620002d2845462000214565b8462000250565b602080601f831160018114620003115760008415620002f85750858301515b600019600386901b1c1916600185901b1785556200029c565b600085815260208120601f198616915b82811015620003425788860151825594840194600190910190840162000321565b5085821015620003615787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b610f5380620003816000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806353a47bb7116100a257806395d89b411161007157806395d89b4114610242578063a457c2d71461024a578063a9059cbb1461025d578063dd62ed3e14610270578063f19e75d41461028357600080fd5b806353a47bb7146101d357806370a08231146101fe57806379ba5097146102275780638da5cb5b1461022f57600080fd5b80631627540c116100e95780631627540c1461017957806318160ddd1461018c57806323b872dd1461019e578063313ce567146101b157806339509351146101c057600080fd5b8063029746061461011b57806306fdde0314610130578063095ea7b31461014e5780631249c58b14610171575b600080fd5b61012e610129366004610d3a565b610296565b005b6101386102f8565b6040516101459190610d73565b60405180910390f35b61016161015c366004610dc2565b61038a565b6040519015158152602001610145565b6101616103a4565b61012e610187366004610dee565b610643565b6004545b604051908152602001610145565b6101616101ac366004610e12565b61069f565b60405160128152602001610145565b6101616101ce366004610dc2565b6106c3565b6001546101e6906001600160a01b031681565b6040516001600160a01b039091168152602001610145565b61019061020c366004610dee565b6001600160a01b031660009081526002602052604090205490565b61012e6106e5565b6000546101e6906001600160a01b031681565b6101386107cf565b610161610258366004610dc2565b6107de565b61016161026b366004610dc2565b610859565b61019061027e366004610d3a565b610867565b61012e610291366004610e53565b610892565b61029e6108a7565b6001600160a01b038216156102c957600780546001600160a01b0319166001600160a01b0384161790555b6001600160a01b038116156102f457600880546001600160a01b0319166001600160a01b0383161790555b5050565b60606005805461030790610e6c565b80601f016020809104026020016040519081016040528092919081815260200182805461033390610e6c565b80156103805780601f1061035557610100808354040283529160200191610380565b820191906000526020600020905b81548152906001019060200180831161036357829003601f168201915b5050505050905090565b60003361039881858561091b565b60019150505b92915050565b6007546000906001600160a01b03166104105760405162461bcd60e51b815260206004820152602360248201527f53796e7468723a2052657761726473446973747269627574696f6e206e6f74206044820152621cd95d60ea1b60648201526084015b60405180910390fd5b6008546001600160a01b03166104685760405162461bcd60e51b815260206004820152601e60248201527f53796e7468723a20537570706c795363686564756c65206e6f742073657400006044820152606401610407565b60085460408051633317025760e21b815290516000926001600160a01b03169163cc5c095c9160048083019260209291908290030181865afa1580156104b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d69190610ea6565b9050600081116105285760405162461bcd60e51b815260206004820152601d60248201527f53796e7468723a204e6f20737570706c79206973206d696e7461626c650000006044820152606401610407565b600854604051637e7961d760e01b8152600481018390526000916001600160a01b031690637e7961d7906024016020604051808303816000875af1158015610574573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105989190610ea6565b905060006105a68284610ed5565b6007549091506105bf906001600160a01b031682610a3f565b600754604051630b32e9c760e31b8152600481018390526001600160a01b03909116906359974e38906024016020604051808303816000875af115801561060a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062e9190610ee8565b506106393383610a3f565b6001935050505090565b61064b6108a7565b600180546001600160a01b0319166001600160a01b0383169081179091556040519081527f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce229060200160405180910390a150565b6000336106ad858285610b00565b6106b8858585610b7a565b506001949350505050565b6000336103988185856106d68383610867565b6106e09190610f0a565b61091b565b6001546001600160a01b0316331461075d5760405162461bcd60e51b815260206004820152603560248201527f596f75206d757374206265206e6f6d696e61746564206265666f726520796f7560448201527402063616e20616363657074206f776e65727368697605c1b6064820152608401610407565b600054600154604080516001600160a01b0393841681529290911660208301527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c910160405180910390a160018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b60606006805461030790610e6c565b600033816107ec8286610867565b90508381101561084c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610407565b6106b8828686840361091b565b600033610398818585610b7a565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61089a6108a7565b6108a43382610a3f565b50565b6000546001600160a01b031633146109195760405162461bcd60e51b815260206004820152602f60248201527f4f6e6c792074686520636f6e7472616374206f776e6572206d6179207065726660448201526e37b936903a3434b99030b1ba34b7b760891b6064820152608401610407565b565b6001600160a01b03831661097d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610407565b6001600160a01b0382166109de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610407565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216610a955760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610407565b8060046000828254610aa79190610f0a565b90915550506001600160a01b0382166000818152600260209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000610b0c8484610867565b90506000198114610b745781811015610b675760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610407565b610b74848484840361091b565b50505050565b6001600160a01b038316610bde5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610407565b6001600160a01b038216610c405760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610407565b6001600160a01b03831660009081526002602052604090205481811015610cb85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610407565b6001600160a01b0380851660008181526002602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d189086815260200190565b60405180910390a3610b74565b6001600160a01b03811681146108a457600080fd5b60008060408385031215610d4d57600080fd5b8235610d5881610d25565b91506020830135610d6881610d25565b809150509250929050565b60006020808352835180602085015260005b81811015610da157858101830151858201604001528201610d85565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215610dd557600080fd5b8235610de081610d25565b946020939093013593505050565b600060208284031215610e0057600080fd5b8135610e0b81610d25565b9392505050565b600080600060608486031215610e2757600080fd5b8335610e3281610d25565b92506020840135610e4281610d25565b929592945050506040919091013590565b600060208284031215610e6557600080fd5b5035919050565b600181811c90821680610e8057607f821691505b602082108103610ea057634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215610eb857600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561039e5761039e610ebf565b600060208284031215610efa57600080fd5b81518015158114610e0b57600080fd5b8082018082111561039e5761039e610ebf56fea26469706673582212208ccd5d0974ab19b9b8e4ad353ff2851b0fd38b30326745349990d9fe0cb9a77764736f6c634300081800330000000000000000000000006f808ae3445a711ecaa4da5c8330b051541a4de000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c1dd32bf02235858330a27a3f858f00e834654f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806353a47bb7116100a257806395d89b411161007157806395d89b4114610242578063a457c2d71461024a578063a9059cbb1461025d578063dd62ed3e14610270578063f19e75d41461028357600080fd5b806353a47bb7146101d357806370a08231146101fe57806379ba5097146102275780638da5cb5b1461022f57600080fd5b80631627540c116100e95780631627540c1461017957806318160ddd1461018c57806323b872dd1461019e578063313ce567146101b157806339509351146101c057600080fd5b8063029746061461011b57806306fdde0314610130578063095ea7b31461014e5780631249c58b14610171575b600080fd5b61012e610129366004610d3a565b610296565b005b6101386102f8565b6040516101459190610d73565b60405180910390f35b61016161015c366004610dc2565b61038a565b6040519015158152602001610145565b6101616103a4565b61012e610187366004610dee565b610643565b6004545b604051908152602001610145565b6101616101ac366004610e12565b61069f565b60405160128152602001610145565b6101616101ce366004610dc2565b6106c3565b6001546101e6906001600160a01b031681565b6040516001600160a01b039091168152602001610145565b61019061020c366004610dee565b6001600160a01b031660009081526002602052604090205490565b61012e6106e5565b6000546101e6906001600160a01b031681565b6101386107cf565b610161610258366004610dc2565b6107de565b61016161026b366004610dc2565b610859565b61019061027e366004610d3a565b610867565b61012e610291366004610e53565b610892565b61029e6108a7565b6001600160a01b038216156102c957600780546001600160a01b0319166001600160a01b0384161790555b6001600160a01b038116156102f457600880546001600160a01b0319166001600160a01b0383161790555b5050565b60606005805461030790610e6c565b80601f016020809104026020016040519081016040528092919081815260200182805461033390610e6c565b80156103805780601f1061035557610100808354040283529160200191610380565b820191906000526020600020905b81548152906001019060200180831161036357829003601f168201915b5050505050905090565b60003361039881858561091b565b60019150505b92915050565b6007546000906001600160a01b03166104105760405162461bcd60e51b815260206004820152602360248201527f53796e7468723a2052657761726473446973747269627574696f6e206e6f74206044820152621cd95d60ea1b60648201526084015b60405180910390fd5b6008546001600160a01b03166104685760405162461bcd60e51b815260206004820152601e60248201527f53796e7468723a20537570706c795363686564756c65206e6f742073657400006044820152606401610407565b60085460408051633317025760e21b815290516000926001600160a01b03169163cc5c095c9160048083019260209291908290030181865afa1580156104b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d69190610ea6565b9050600081116105285760405162461bcd60e51b815260206004820152601d60248201527f53796e7468723a204e6f20737570706c79206973206d696e7461626c650000006044820152606401610407565b600854604051637e7961d760e01b8152600481018390526000916001600160a01b031690637e7961d7906024016020604051808303816000875af1158015610574573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105989190610ea6565b905060006105a68284610ed5565b6007549091506105bf906001600160a01b031682610a3f565b600754604051630b32e9c760e31b8152600481018390526001600160a01b03909116906359974e38906024016020604051808303816000875af115801561060a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061062e9190610ee8565b506106393383610a3f565b6001935050505090565b61064b6108a7565b600180546001600160a01b0319166001600160a01b0383169081179091556040519081527f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce229060200160405180910390a150565b6000336106ad858285610b00565b6106b8858585610b7a565b506001949350505050565b6000336103988185856106d68383610867565b6106e09190610f0a565b61091b565b6001546001600160a01b0316331461075d5760405162461bcd60e51b815260206004820152603560248201527f596f75206d757374206265206e6f6d696e61746564206265666f726520796f7560448201527402063616e20616363657074206f776e65727368697605c1b6064820152608401610407565b600054600154604080516001600160a01b0393841681529290911660208301527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c910160405180910390a160018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b60606006805461030790610e6c565b600033816107ec8286610867565b90508381101561084c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610407565b6106b8828686840361091b565b600033610398818585610b7a565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b61089a6108a7565b6108a43382610a3f565b50565b6000546001600160a01b031633146109195760405162461bcd60e51b815260206004820152602f60248201527f4f6e6c792074686520636f6e7472616374206f776e6572206d6179207065726660448201526e37b936903a3434b99030b1ba34b7b760891b6064820152608401610407565b565b6001600160a01b03831661097d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610407565b6001600160a01b0382166109de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610407565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216610a955760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610407565b8060046000828254610aa79190610f0a565b90915550506001600160a01b0382166000818152600260209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000610b0c8484610867565b90506000198114610b745781811015610b675760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610407565b610b74848484840361091b565b50505050565b6001600160a01b038316610bde5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610407565b6001600160a01b038216610c405760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610407565b6001600160a01b03831660009081526002602052604090205481811015610cb85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610407565b6001600160a01b0380851660008181526002602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d189086815260200190565b60405180910390a3610b74565b6001600160a01b03811681146108a457600080fd5b60008060408385031215610d4d57600080fd5b8235610d5881610d25565b91506020830135610d6881610d25565b809150509250929050565b60006020808352835180602085015260005b81811015610da157858101830151858201604001528201610d85565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215610dd557600080fd5b8235610de081610d25565b946020939093013593505050565b600060208284031215610e0057600080fd5b8135610e0b81610d25565b9392505050565b600080600060608486031215610e2757600080fd5b8335610e3281610d25565b92506020840135610e4281610d25565b929592945050506040919091013590565b600060208284031215610e6557600080fd5b5035919050565b600181811c90821680610e8057607f821691505b602082108103610ea057634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215610eb857600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561039e5761039e610ebf565b600060208284031215610efa57600080fd5b81518015158114610e0b57600080fd5b8082018082111561039e5761039e610ebf56fea26469706673582212208ccd5d0974ab19b9b8e4ad353ff2851b0fd38b30326745349990d9fe0cb9a77764736f6c63430008180033

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
0x86F25B91CA7591f3b1f321AaCA091B2dE060eEc1
Loading...
Loading
Loading...
Loading
[ 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.