ETH Price: $3,154.78 (-4.15%)

Contract

0xd4260B2781e2460f49dB746112BB592ba3fb6382
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Claim211476212024-11-09 4:11:115 days ago1731125471IN
Fixed Forex: rKP3R Distribution
0 ETH0.00478875.8272731
Claim208455092024-09-28 0:20:4747 days ago1727482847IN
Fixed Forex: rKP3R Distribution
0 ETH0.000976515.77572543
Claim208455092024-09-28 0:20:4747 days ago1727482847IN
Fixed Forex: rKP3R Distribution
0 ETH0.0082479415.77572543
Claim208455062024-09-28 0:20:1147 days ago1727482811IN
Fixed Forex: rKP3R Distribution
0 ETH0.0083968925.2
Claim207236862024-09-11 0:07:2364 days ago1726013243IN
Fixed Forex: rKP3R Distribution
0 ETH0.000964022.10216841
Claim206087932024-08-25 23:09:2380 days ago1724627363IN
Fixed Forex: rKP3R Distribution
0 ETH0.00081812.73127358
Claim206025822024-08-25 2:19:2381 days ago1724552363IN
Fixed Forex: rKP3R Distribution
0 ETH0.000530260.87953407
Claim205633932024-08-19 14:52:5987 days ago1724079179IN
Fixed Forex: rKP3R Distribution
0 ETH0.000413782.19519667
Claim205309402024-08-15 2:06:3591 days ago1723687595IN
Fixed Forex: rKP3R Distribution
0 ETH0.00096764
Claim205305842024-08-15 0:55:1191 days ago1723683311IN
Fixed Forex: rKP3R Distribution
0 ETH0.001205811.89870991
Claim205156242024-08-12 22:48:4793 days ago1723502927IN
Fixed Forex: rKP3R Distribution
0 ETH0.000333781.29624053
Claim205148882024-08-12 20:21:3593 days ago1723494095IN
Fixed Forex: rKP3R Distribution
0 ETH0.000175762.83960598
Claim205148832024-08-12 20:20:3593 days ago1723494035IN
Fixed Forex: rKP3R Distribution
0 ETH0.001828023.16879099
Claim204647742024-08-05 20:33:11100 days ago1722889991IN
Fixed Forex: rKP3R Distribution
0 ETH0.000735546.20319254
Claim204511602024-08-03 22:59:47102 days ago1722725987IN
Fixed Forex: rKP3R Distribution
0 ETH0.000395241.10963972
Claim204481862024-08-03 13:02:35103 days ago1722690155IN
Fixed Forex: rKP3R Distribution
0 ETH0.000565631.68651935
Claim204471772024-08-03 9:40:11103 days ago1722678011IN
Fixed Forex: rKP3R Distribution
0 ETH0.000612411.53030698
Claim204421622024-08-02 16:50:23104 days ago1722617423IN
Fixed Forex: rKP3R Distribution
0 ETH0.00473416.22125135
Claim202613202024-07-08 10:53:35129 days ago1720436015IN
Fixed Forex: rKP3R Distribution
0 ETH0.000401212.35202095
Claim202545822024-07-07 12:17:59130 days ago1720354679IN
Fixed Forex: rKP3R Distribution
0 ETH0.000158521.46548121
Claim202484932024-07-06 15:54:23131 days ago1720281263IN
Fixed Forex: rKP3R Distribution
0 ETH0.002990043.84927878
Claim201471382024-06-22 12:06:59145 days ago1719058019IN
Fixed Forex: rKP3R Distribution
0 ETH0.001582392.35328394
Claim200704902024-06-11 18:50:47155 days ago1718131847IN
Fixed Forex: rKP3R Distribution
0 ETH0.0045416711.76352193
Claim199900042024-05-31 13:06:47167 days ago1717160807IN
Fixed Forex: rKP3R Distribution
0 ETH0.0099287316.61187601
Claim199516102024-05-26 4:17:11172 days ago1716697031IN
Fixed Forex: rKP3R Distribution
0 ETH0.000355982.88383134
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

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

Contract Name:
Vyper_contract

Compiler Version
vyper:0.2.7

Optimization Enabled:
N/A

Other Settings:
GNU LGPLv3 license

Contract Source Code (Vyper language format)

# @version 0.2.7
"""
@title Curve Fee Distribution
@author Curve Finance
@license MIT
"""

from vyper.interfaces import ERC20


interface VotingEscrow:
    def user_point_epoch(addr: address) -> uint256: view
    def epoch() -> uint256: view
    def user_point_history(addr: address, loc: uint256) -> Point: view
    def point_history(loc: uint256) -> Point: view
    def checkpoint(): nonpayable


event CommitAdmin:
    admin: address

event ApplyAdmin:
    admin: address

event ToggleAllowCheckpointToken:
    toggle_flag: bool

event CheckpointToken:
    time: uint256
    tokens: uint256

event Claimed:
    recipient: indexed(address)
    amount: uint256
    claim_epoch: uint256
    max_epoch: uint256


struct Point:
    bias: int128
    slope: int128  # - dweight / dt
    ts: uint256
    blk: uint256  # block


WEEK: constant(uint256) = 7 * 86400
TOKEN_CHECKPOINT_DEADLINE: constant(uint256) = 86400

start_time: public(uint256)
time_cursor: public(uint256)
time_cursor_of: public(HashMap[address, uint256])
user_epoch_of: public(HashMap[address, uint256])

last_token_time: public(uint256)
tokens_per_week: public(uint256[1000000000000000])

voting_escrow: public(address)
token: public(address)
total_received: public(uint256)
token_last_balance: public(uint256)

ve_supply: public(uint256[1000000000000000])  # VE total supply at week bounds

admin: public(address)
future_admin: public(address)
can_checkpoint_token: public(bool)
emergency_return: public(address)
is_killed: public(bool)


@external
def __init__(
    _voting_escrow: address,
    _start_time: uint256,
    _token: address,
    _admin: address,
    _emergency_return: address
):
    """
    @notice Contract constructor
    @param _voting_escrow VotingEscrow contract address
    @param _start_time Epoch time for fee distribution to start
    @param _token Fee token address (3CRV)
    @param _admin Admin address
    @param _emergency_return Address to transfer `_token` balance to
                             if this contract is killed
    """
    t: uint256 = _start_time / WEEK * WEEK
    self.start_time = t
    self.last_token_time = t
    self.time_cursor = t
    self.token = _token
    self.voting_escrow = _voting_escrow
    self.admin = _admin
    self.emergency_return = _emergency_return


@internal
def _checkpoint_token():
    token_balance: uint256 = ERC20(self.token).balanceOf(self)
    to_distribute: uint256 = token_balance - self.token_last_balance
    self.token_last_balance = token_balance

    t: uint256 = self.last_token_time
    since_last: uint256 = block.timestamp - t
    self.last_token_time = block.timestamp
    this_week: uint256 = t / WEEK * WEEK
    next_week: uint256 = 0

    for i in range(20):
        next_week = this_week + WEEK
        if block.timestamp < next_week:
            if since_last == 0 and block.timestamp == t:
                self.tokens_per_week[this_week] += to_distribute
            else:
                self.tokens_per_week[this_week] += to_distribute * (block.timestamp - t) / since_last
            break
        else:
            if since_last == 0 and next_week == t:
                self.tokens_per_week[this_week] += to_distribute
            else:
                self.tokens_per_week[this_week] += to_distribute * (next_week - t) / since_last
        t = next_week
        this_week = next_week

    log CheckpointToken(block.timestamp, to_distribute)


@external
def checkpoint_token():
    """
    @notice Update the token checkpoint
    @dev Calculates the total number of tokens to be distributed in a given week.
         During setup for the initial distribution this function is only callable
         by the contract owner. Beyond initial distro, it can be enabled for anyone
         to call.
    """
    assert (msg.sender == self.admin) or\
           (self.can_checkpoint_token and (block.timestamp > self.last_token_time + TOKEN_CHECKPOINT_DEADLINE))
    self._checkpoint_token()


@internal
def _find_timestamp_epoch(ve: address, _timestamp: uint256) -> uint256:
    _min: uint256 = 0
    _max: uint256 = VotingEscrow(ve).epoch()
    for i in range(128):
        if _min >= _max:
            break
        _mid: uint256 = (_min + _max + 2) / 2
        pt: Point = VotingEscrow(ve).point_history(_mid)
        if pt.ts <= _timestamp:
            _min = _mid
        else:
            _max = _mid - 1
    return _min


@view
@internal
def _find_timestamp_user_epoch(ve: address, user: address, _timestamp: uint256, max_user_epoch: uint256) -> uint256:
    _min: uint256 = 0
    _max: uint256 = max_user_epoch
    for i in range(128):
        if _min >= _max:
            break
        _mid: uint256 = (_min + _max + 2) / 2
        pt: Point = VotingEscrow(ve).user_point_history(user, _mid)
        if pt.ts <= _timestamp:
            _min = _mid
        else:
            _max = _mid - 1
    return _min


@view
@external
def ve_for_at(_user: address, _timestamp: uint256) -> uint256:
    """
    @notice Get the veCRV balance for `_user` at `_timestamp`
    @param _user Address to query balance for
    @param _timestamp Epoch time
    @return uint256 veCRV balance
    """
    ve: address = self.voting_escrow
    max_user_epoch: uint256 = VotingEscrow(ve).user_point_epoch(_user)
    epoch: uint256 = self._find_timestamp_user_epoch(ve, _user, _timestamp, max_user_epoch)
    pt: Point = VotingEscrow(ve).user_point_history(_user, epoch)
    return convert(max(pt.bias - pt.slope * convert(_timestamp - pt.ts, int128), 0), uint256)


@internal
def _checkpoint_total_supply():
    ve: address = self.voting_escrow
    t: uint256 = self.time_cursor
    rounded_timestamp: uint256 = block.timestamp / WEEK * WEEK
    VotingEscrow(ve).checkpoint()

    for i in range(20):
        if t > rounded_timestamp:
            break
        else:
            epoch: uint256 = self._find_timestamp_epoch(ve, t)
            pt: Point = VotingEscrow(ve).point_history(epoch)
            dt: int128 = 0
            if t > pt.ts:
                # If the point is at 0 epoch, it can actually be earlier than the first deposit
                # Then make dt 0
                dt = convert(t - pt.ts, int128)
            self.ve_supply[t] = convert(max(pt.bias - pt.slope * dt, 0), uint256)
        t += WEEK

    self.time_cursor = t


@external
def checkpoint_total_supply():
    """
    @notice Update the veCRV total supply checkpoint
    @dev The checkpoint is also updated by the first claimant each
         new epoch week. This function may be called independently
         of a claim, to reduce claiming gas costs.
    """
    self._checkpoint_total_supply()


@internal
def _claim(addr: address, ve: address, _last_token_time: uint256) -> uint256:
    # Minimal user_epoch is 0 (if user had no point)
    user_epoch: uint256 = 0
    to_distribute: uint256 = 0

    max_user_epoch: uint256 = VotingEscrow(ve).user_point_epoch(addr)
    _start_time: uint256 = self.start_time

    if max_user_epoch == 0:
        # No lock = no fees
        return 0

    week_cursor: uint256 = self.time_cursor_of[addr]
    if week_cursor == 0:
        # Need to do the initial binary search
        user_epoch = self._find_timestamp_user_epoch(ve, addr, _start_time, max_user_epoch)
    else:
        user_epoch = self.user_epoch_of[addr]

    if user_epoch == 0:
        user_epoch = 1

    user_point: Point = VotingEscrow(ve).user_point_history(addr, user_epoch)

    if week_cursor == 0:
        week_cursor = (user_point.ts + WEEK - 1) / WEEK * WEEK

    if week_cursor >= _last_token_time:
        return 0

    if week_cursor < _start_time:
        week_cursor = _start_time
    old_user_point: Point = empty(Point)

    # Iterate over weeks
    for i in range(50):
        if week_cursor >= _last_token_time:
            break

        if week_cursor >= user_point.ts and user_epoch <= max_user_epoch:
            user_epoch += 1
            old_user_point = user_point
            if user_epoch > max_user_epoch:
                user_point = empty(Point)
            else:
                user_point = VotingEscrow(ve).user_point_history(addr, user_epoch)

        else:
            # Calc
            # + i * 2 is for rounding errors
            dt: int128 = convert(week_cursor - old_user_point.ts, int128)
            balance_of: uint256 = convert(max(old_user_point.bias - dt * old_user_point.slope, 0), uint256)
            if balance_of == 0 and user_epoch > max_user_epoch:
                break
            if balance_of > 0:
                to_distribute += balance_of * self.tokens_per_week[week_cursor] / self.ve_supply[week_cursor]

            week_cursor += WEEK

    user_epoch = min(max_user_epoch, user_epoch - 1)
    self.user_epoch_of[addr] = user_epoch
    self.time_cursor_of[addr] = week_cursor

    log Claimed(addr, to_distribute, user_epoch, max_user_epoch)

    return to_distribute

@view
@internal
def _claimable(addr: address, ve: address, _last_token_time: uint256) -> uint256:
    # Minimal user_epoch is 0 (if user had no point)
    user_epoch: uint256 = 0
    to_distribute: uint256 = 0

    max_user_epoch: uint256 = VotingEscrow(ve).user_point_epoch(addr)
    _start_time: uint256 = self.start_time

    if max_user_epoch == 0:
        # No lock = no fees
        return 0

    week_cursor: uint256 = self.time_cursor_of[addr]
    if week_cursor == 0:
        # Need to do the initial binary search
        user_epoch = self._find_timestamp_user_epoch(ve, addr, _start_time, max_user_epoch)
    else:
        user_epoch = self.user_epoch_of[addr]

    if user_epoch == 0:
        user_epoch = 1

    user_point: Point = VotingEscrow(ve).user_point_history(addr, user_epoch)

    if week_cursor == 0:
        week_cursor = (user_point.ts + WEEK - 1) / WEEK * WEEK

    if week_cursor >= _last_token_time:
        return 0

    if week_cursor < _start_time:
        week_cursor = _start_time
    old_user_point: Point = empty(Point)

    # Iterate over weeks
    for i in range(50):
        if week_cursor >= _last_token_time:
            break

        if week_cursor >= user_point.ts and user_epoch <= max_user_epoch:
            user_epoch += 1
            old_user_point = user_point
            if user_epoch > max_user_epoch:
                user_point = empty(Point)
            else:
                user_point = VotingEscrow(ve).user_point_history(addr, user_epoch)

        else:
            # Calc
            # + i * 2 is for rounding errors
            dt: int128 = convert(week_cursor - old_user_point.ts, int128)
            balance_of: uint256 = convert(max(old_user_point.bias - dt * old_user_point.slope, 0), uint256)
            if balance_of == 0 and user_epoch > max_user_epoch:
                break
            if balance_of > 0:
                to_distribute += balance_of * self.tokens_per_week[week_cursor] / self.ve_supply[week_cursor]

            week_cursor += WEEK

    return to_distribute

@view
@external
def claimable(_addr: address = msg.sender) -> uint256:
    """
    @notice See claimable fees for `_addr`
    @dev Each call to claim looks at a maximum of 50 user veCRV points.
         For accounts with many veCRV related actions, this function
         may need to be called more than once to claim all available
         fees. In the `Claimed` event that fires, if `claim_epoch` is
         less than `max_epoch`, the account may claim again.
    @param _addr Address to claim fees for
    @return uint256 Amount of fees claimed in the call
    """
    last_token_time: uint256 = self.last_token_time / WEEK * WEEK
    return self._claimable(_addr, self.voting_escrow, last_token_time)

@external
@nonreentrant('lock')
def claim(_addr: address = msg.sender) -> uint256:
    """
    @notice Claim fees for `_addr`
    @dev Each call to claim look at a maximum of 50 user veCRV points.
         For accounts with many veCRV related actions, this function
         may need to be called more than once to claim all available
         fees. In the `Claimed` event that fires, if `claim_epoch` is
         less than `max_epoch`, the account may claim again.
    @param _addr Address to claim fees for
    @return uint256 Amount of fees claimed in the call
    """
    assert not self.is_killed

    if block.timestamp >= self.time_cursor:
        self._checkpoint_total_supply()

    last_token_time: uint256 = self.last_token_time

    if self.can_checkpoint_token and (block.timestamp > last_token_time + TOKEN_CHECKPOINT_DEADLINE):
        self._checkpoint_token()
        last_token_time = block.timestamp

    last_token_time = last_token_time / WEEK * WEEK

    amount: uint256 = self._claim(_addr, self.voting_escrow, last_token_time)
    if amount != 0:
        token: address = self.token
        assert ERC20(token).transfer(_addr, amount)
        self.token_last_balance -= amount

    return amount


@external
@nonreentrant('lock')
def claim_many(_receivers: address[20]) -> bool:
    """
    @notice Make multiple fee claims in a single call
    @dev Used to claim for many accounts at once, or to make
         multiple claims for the same address when that address
         has significant veCRV history
    @param _receivers List of addresses to claim for. Claiming
                      terminates at the first `ZERO_ADDRESS`.
    @return bool success
    """
    assert not self.is_killed

    if block.timestamp >= self.time_cursor:
        self._checkpoint_total_supply()

    last_token_time: uint256 = self.last_token_time

    if self.can_checkpoint_token and (block.timestamp > last_token_time + TOKEN_CHECKPOINT_DEADLINE):
        self._checkpoint_token()
        last_token_time = block.timestamp

    last_token_time = last_token_time / WEEK * WEEK
    voting_escrow: address = self.voting_escrow
    token: address = self.token
    total: uint256 = 0

    for addr in _receivers:
        if addr == ZERO_ADDRESS:
            break

        amount: uint256 = self._claim(addr, voting_escrow, last_token_time)
        if amount != 0:
            assert ERC20(token).transfer(addr, amount)
            total += amount

    if total != 0:
        self.token_last_balance -= total

    return True


@external
def burn(_coin: address) -> bool:
    """
    @notice Receive 3CRV into the contract and trigger a token checkpoint
    @param _coin Address of the coin being received (must be 3CRV)
    @return bool success
    """
    assert _coin == self.token
    assert not self.is_killed

    amount: uint256 = ERC20(_coin).balanceOf(msg.sender)
    if amount != 0:
        ERC20(_coin).transferFrom(msg.sender, self, amount)
        if self.can_checkpoint_token and (block.timestamp > self.last_token_time + TOKEN_CHECKPOINT_DEADLINE):
            self._checkpoint_token()

    return True


@external
def commit_admin(_addr: address):
    """
    @notice Commit transfer of ownership
    @param _addr New admin address
    """
    assert msg.sender == self.admin  # dev: access denied
    self.future_admin = _addr
    log CommitAdmin(_addr)


@external
def apply_admin():
    """
    @notice Apply transfer of ownership
    """
    assert msg.sender == self.admin
    assert self.future_admin != ZERO_ADDRESS
    future_admin: address = self.future_admin
    self.admin = future_admin
    log ApplyAdmin(future_admin)


@external
def toggle_allow_checkpoint_token():
    """
    @notice Toggle permission for checkpointing by any account
    """
    assert msg.sender == self.admin
    flag: bool = not self.can_checkpoint_token
    self.can_checkpoint_token = flag
    log ToggleAllowCheckpointToken(flag)


@external
def kill_me():
    """
    @notice Kill the contract
    @dev Killing transfers the entire 3CRV balance to the emergency return address
         and blocks the ability to claim or burn. The contract cannot be unkilled.
    """
    assert msg.sender == self.admin

    self.is_killed = True

    token: address = self.token
    assert ERC20(token).transfer(self.emergency_return, ERC20(token).balanceOf(self))


@external
def recover_balance(_coin: address) -> bool:
    """
    @notice Recover ERC20 tokens from this contract
    @dev Tokens are sent to the emergency return address.
    @param _coin Token address
    @return bool success
    """
    assert msg.sender == self.admin
    assert _coin != self.token

    amount: uint256 = ERC20(_coin).balanceOf(self)
    response: Bytes[32] = raw_call(
        _coin,
        concat(
            method_id("transfer(address,uint256)"),
            convert(self.emergency_return, bytes32),
            convert(amount, bytes32),
        ),
        max_outsize=32,
    )
    if len(response) != 0:
        assert convert(response, bool)

    return True

Contract Security Audit

Contract ABI

[{"name":"CommitAdmin","inputs":[{"type":"address","name":"admin","indexed":false}],"anonymous":false,"type":"event"},{"name":"ApplyAdmin","inputs":[{"type":"address","name":"admin","indexed":false}],"anonymous":false,"type":"event"},{"name":"ToggleAllowCheckpointToken","inputs":[{"type":"bool","name":"toggle_flag","indexed":false}],"anonymous":false,"type":"event"},{"name":"CheckpointToken","inputs":[{"type":"uint256","name":"time","indexed":false},{"type":"uint256","name":"tokens","indexed":false}],"anonymous":false,"type":"event"},{"name":"Claimed","inputs":[{"type":"address","name":"recipient","indexed":true},{"type":"uint256","name":"amount","indexed":false},{"type":"uint256","name":"claim_epoch","indexed":false},{"type":"uint256","name":"max_epoch","indexed":false}],"anonymous":false,"type":"event"},{"outputs":[],"inputs":[{"type":"address","name":"_voting_escrow"},{"type":"uint256","name":"_start_time"},{"type":"address","name":"_token"},{"type":"address","name":"_admin"},{"type":"address","name":"_emergency_return"}],"stateMutability":"nonpayable","type":"constructor"},{"name":"checkpoint_token","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":820723},{"name":"ve_for_at","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"_user"},{"type":"uint256","name":"_timestamp"}],"stateMutability":"view","type":"function","gas":249417},{"name":"checkpoint_total_supply","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":10592405},{"name":"claimable","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function"},{"name":"claimable","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"_addr"}],"stateMutability":"view","type":"function"},{"name":"claim","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"nonpayable","type":"function"},{"name":"claim","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"_addr"}],"stateMutability":"nonpayable","type":"function"},{"name":"claim_many","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address[20]","name":"_receivers"}],"stateMutability":"nonpayable","type":"function","gas":26281965},{"name":"burn","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"_coin"}],"stateMutability":"nonpayable","type":"function","gas":823510},{"name":"commit_admin","outputs":[],"inputs":[{"type":"address","name":"_addr"}],"stateMutability":"nonpayable","type":"function","gas":37958},{"name":"apply_admin","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":39594},{"name":"toggle_allow_checkpoint_token","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":38733},{"name":"kill_me","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":39647},{"name":"recover_balance","outputs":[{"type":"bool","name":""}],"inputs":[{"type":"address","name":"_coin"}],"stateMutability":"nonpayable","type":"function","gas":7838},{"name":"start_time","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1601},{"name":"time_cursor","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1631},{"name":"time_cursor_of","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"arg0"}],"stateMutability":"view","type":"function","gas":1876},{"name":"user_epoch_of","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"address","name":"arg0"}],"stateMutability":"view","type":"function","gas":1906},{"name":"last_token_time","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1721},{"name":"tokens_per_week","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"arg0"}],"stateMutability":"view","type":"function","gas":1860},{"name":"voting_escrow","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1781},{"name":"token","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1811},{"name":"total_received","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1841},{"name":"token_last_balance","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1871},{"name":"ve_supply","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"arg0"}],"stateMutability":"view","type":"function","gas":2010},{"name":"admin","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1931},{"name":"future_admin","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1961},{"name":"can_checkpoint_token","outputs":[{"type":"bool","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1991},{"name":"emergency_return","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2021},{"name":"is_killed","outputs":[{"type":"bool","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2051}]

Deployed Bytecode

0x341561000a57600080fd5b6004361015610018576124cb565b600035601c526f7fffffffffffffffffffffffffffffff604052600015610384575b61014052602061020060246370a0823161018052306101a05261019c6007545afa61006457600080fd5b601f3d1161007157600080fd5b6000506102005161016052610160516009548082101561009057600080fd5b8082039050905061018052610160516009556004546101a052426101a051808210156100bb57600080fd5b808203905090506101c052426004556101a05162093a808082049050905062093a8080820282158284830414176100f157600080fd5b809050905090506101e05260006102005261022060006014818352015b6101e05162093a8081818301101561012557600080fd5b808201905090506102005261020051421015610232576101c0511515610150576101a0514214610153565b60005b1561019e576101e05166038d7ea4c68000811061016f57600080fd5b600560c052602060c0200180546101805181818301101561018f57600080fd5b80820190509050815550610229565b6101e05166038d7ea4c6800081106101b557600080fd5b600560c052602060c02001805461018051426101a051808210156101d857600080fd5b8082039050905080820282158284830414176101f357600080fd5b809050905090506101c051808061020957600080fd5b82049050905081818301101561021e57600080fd5b808201905090508155505b61034856610327565b6101c051151561024a576101a051610200511461024d565b60005b15610298576101e05166038d7ea4c68000811061026957600080fd5b600560c052602060c0200180546101805181818301101561028957600080fd5b80820190509050815550610326565b6101e05166038d7ea4c6800081106102af57600080fd5b600560c052602060c02001805461018051610200516101a051808210156102d557600080fd5b8082039050905080820282158284830414176102f057600080fd5b809050905090506101c051808061030657600080fd5b82049050905081818301101561031b57600080fd5b808201905090508155505b5b610200516101a052610200516101e0525b815160010180835281141561010e575b5050426102205261018051610240527fce749457b74e10f393f2c6b1ce4261b78791376db5a3f501477a809f03f500d66040610220a161014051565b63811a40fe60005114156103eb57600b543314156103a35760016103d3565b600d54156103cf57600454620151808181830110156103c157600080fd5b8082019050905042116103d2565b60005b5b5b6103dd57600080fd5b6006580161003a565b600050005b6000156105a6575b61018052610140526101605260006101a0526020610240600463900cf0cf6101e0526101fc610140515afa61042757600080fd5b601f3d1161043457600080fd5b600050610240516101c0526101e060006080818352015b6101c0516101a05110151561045f57610592565b6101a0516101c05181818301101561047657600080fd5b80820190509050600281818301101561048e57600080fd5b80820190509050600280820490509050610200526102206080610320602463d1febfb96102a052610200516102c0526102bc610140515afa6104cf57600080fd5b607f3d116104dc57600080fd5b61032080808080516103a0525050602081019050808080516103c0525050602081019050808080516103e05250506020810190508080805161040052505050506000506103a0805182528060200151826020015280604001518260400152806060015182606001525050610160516102605111151561056257610200516101a052610581565b6102005160018082101561057557600080fd5b808203905090506101c0525b5b815160010180835281141561044b575b50506101a051600052600051610180515650005b60001561073f575b6101c0526101405261016052610180526101a05260006101e0526101a0516102005261022060006080818352015b610200516101e0511015156105f05761072b565b6101e0516102005181818301101561060757600080fd5b80820190509050600281818301101561061f57600080fd5b8082019050905060028082049050905061024052610260608061038060446328d09d476102e052610160516103005261024051610320526102fc610140515afa61066857600080fd5b607f3d1161067557600080fd5b61038080808080516104005250506020810190508080805161042052505060208101905080808051610440525050602081019050808080516104605250505050600050610400805182528060200151826020015280604001518260400152806060015182606001525050610180516102a0511115156106fb57610240516101e05261071a565b6102405160018082101561070e57600080fd5b80820390509050610200525b5b81516001018083528114156105dc575b50506101e0516000526000516101c0515650005b63ace296fb60005114156109525760043560a01c1561075d57600080fd5b600654610140526020610200602463010ae757610180526004356101a05261019c610140515afa61078d57600080fd5b601f3d1161079a57600080fd5b6000506102005161016052610140516101605161018051610140516101a0526004356101c0526024356101e0526101605161020052610200516101e0516101c0516101a051600658016105ae565b6102605261018052610160526101405261026051610180526101a060806102c060446328d09d476102205260043561024052610180516102605261023c610140515afa61083457600080fd5b607f3d1161084157600080fd5b6102c080808080516103405250506020810190508080805161036052505060208101905080808051610380525050602081019050808080516103a052505050506000506103408051825280602001518260200152806040015182604001528060600151826060015250506101a0516101c0516024356101e051808210156108c757600080fd5b808203905090506040518111156108dd57600080fd5b808202808060008112156108ed57195b607f1c156108fa57600080fd5b9050905090508082038080600081121561091057195b607f1c1561091d57600080fd5b9050905090506000808212156109335780610935565b815b90509050600081121561094757600080fd5b60005260206000f350005b600015610c10575b6101405260065461016052600154610180524262093a808082049050905062093a80808202821582848304141761099057600080fd5b809050905090506101a052610160513b6109a957600080fd5b60006000600463c2c4c5c16101c0526101dc6000610160515af16109cc57600080fd5b6101c060006014818352015b6101a0516101805111156109ef57610c0156610bce565b6101405161016051610180516101a0516101c0516101e051610160516102005261018051610220526102205161020051600658016103f3565b610280526101e0526101c0526101a052610180526101605261014052610280516101e0526102006080610300602463d1febfb9610280526101e0516102a05261029c610160515afa610a7957600080fd5b607f3d11610a8657600080fd5b6103008080808051610380525050602081019050808080516103a0525050602081019050808080516103c0525050602081019050808080516103e0525050505060005061038080518252806020015182602001528060400151826040015280606001518260600152505060006102805261024051610180511115610b3457610180516102405180821015610b1957600080fd5b80820390509050604051811115610b2f57600080fd5b610280525b61020051610220516102805180820280806000811215610b5057195b607f1c15610b5d57600080fd5b90509050905080820380806000811215610b7357195b607f1c15610b8057600080fd5b905090509050600080821215610b965780610b98565b815b905090506000811215610baa57600080fd5b6101805166038d7ea4c680008110610bc157600080fd5b600a60c052602060c02001555b610180805162093a80818183011015610be657600080fd5b808201905090508152505b81516001018083528114156109d8575b50506101805160015561014051565b63b21ed5026000511415610c2c576006580161095a565b600050005b600015611294575b6101a0526101405261016052610180526040366101c03760206102a0602463010ae75761022052610140516102405261023c610160515afa610c7557600080fd5b601f3d11610c8257600080fd5b6000506102a0516102005260005461022052610200511515610cad5760006000526000516101a05156505b60026101405160e05260c052604060c0205461024052610240511515610d5f576101405161016051610180516101a0516101c0516101e05161020051610220516102405161016051610260526101405161028052610220516102a052610200516102c0526102c0516102a0516102805161026051600658016105ae565b610320526102405261022052610200526101e0526101c0526101a052610180526101605261014052610320516101c052610d76565b60036101405160e05260c052604060c020546101c0525b6101c0511515610d875760016101c0525b610260608061038060446328d09d476102e05261014051610300526101c051610320526102fc610160515afa610dbc57600080fd5b607f3d11610dc957600080fd5b61038080808080516104005250506020810190508080805161042052505060208101905080808051610440525050602081019050808080516104605250505050600050610400805182528060200151826020015280604001518260400152806060015182606001525050610240511515610ea0576102a05162093a80818183011015610e5457600080fd5b80820190509050600180821015610e6a57600080fd5b8082039050905062093a808082049050905062093a808082028215828483041417610e9457600080fd5b80905090509050610240525b6101805161024051101515610ebe5760006000526000516101a05156505b61022051610240511015610ed55761022051610240525b6080366102e03761036060006032818352015b6101805161024051101515610efc576111db565b6102a05161024051101515610f1a57610200516101c0511115610f1d565b60005b15611038576101c080516001818183011015610f3857600080fd5b808201905090508152506102e0610260805182528060200151826020015280604001518260400152806060015182606001525050610200516101c0511115610f865760803661026037611033565b610260608061042060446328d09d4761038052610140516103a0526101c0516103c05261039c610160515afa610fbb57600080fd5b607f3d11610fc857600080fd5b61042080808080516104a0525050602081019050808080516104c0525050602081019050808080516104e05250506020810190508080805161050052505050506000506104a08051825280602001518260200152806040015182604001528060600151826060015250505b6111ca565b61024051610320518082101561104d57600080fd5b8082039050905060405181111561106357600080fd5b610380526102e05161038051610300518082028080600081121561108357195b607f1c1561109057600080fd5b905090509050808203808060008112156110a657195b607f1c156110b357600080fd5b9050905090506000808212156110c957806110cb565b815b9050905060008112156110dd57600080fd5b6103a0526103a05115156110f957610200516101c051116110fc565b60005b15611106576111db565b60006103a05111156111a7576101e080516103a0516102405166038d7ea4c68000811061113257600080fd5b600560c052602060c0200154808202821582848304141761115257600080fd5b809050905090506102405166038d7ea4c68000811061117057600080fd5b600a60c052602060c0200154808061118757600080fd5b82049050905081818301101561119c57600080fd5b808201905090508152505b610240805162093a808181830110156111bf57600080fd5b808201905090508152505b5b8151600101808352811415610ee8575b5050610200516101c0516001808210156111f457600080fd5b8082039050905080821115611209578061120b565b815b905090506101c0526101c05160036101405160e05260c052604060c020556102405160026101405160e05260c052604060c020556101e051610360526101c05161038052610200516103a052610140517f9cdcf2f7714cca3508c7f0110b04a90a80a3a8dd0e35de99689db74d28c5383e6060610360a26101e0516000526000516101a0515650005b600015611857575b6101a0526101405261016052610180526040366101c03760206102a0602463010ae75761022052610140516102405261023c610160515afa6112dd57600080fd5b601f3d116112ea57600080fd5b6000506102a05161020052600054610220526102005115156113155760006000526000516101a05156505b60026101405160e05260c052604060c02054610240526102405115156113c7576101405161016051610180516101a0516101c0516101e05161020051610220516102405161016051610260526101405161028052610220516102a052610200516102c0526102c0516102a0516102805161026051600658016105ae565b610320526102405261022052610200526101e0526101c0526101a052610180526101605261014052610320516101c0526113de565b60036101405160e05260c052604060c020546101c0525b6101c05115156113ef5760016101c0525b610260608061038060446328d09d476102e05261014051610300526101c051610320526102fc610160515afa61142457600080fd5b607f3d1161143157600080fd5b61038080808080516104005250506020810190508080805161042052505060208101905080808051610440525050602081019050808080516104605250505050600050610400805182528060200151826020015280604001518260400152806060015182606001525050610240511515611508576102a05162093a808181830110156114bc57600080fd5b808201905090506001808210156114d257600080fd5b8082039050905062093a808082049050905062093a8080820282158284830414176114fc57600080fd5b80905090509050610240525b61018051610240511015156115265760006000526000516101a05156505b6102205161024051101561153d5761022051610240525b6080366102e03761036060006032818352015b610180516102405110151561156457611843565b6102a0516102405110151561158257610200516101c0511115611585565b60005b156116a0576101c0805160018181830110156115a057600080fd5b808201905090508152506102e0610260805182528060200151826020015280604001518260400152806060015182606001525050610200516101c05111156115ee576080366102603761169b565b610260608061042060446328d09d4761038052610140516103a0526101c0516103c05261039c610160515afa61162357600080fd5b607f3d1161163057600080fd5b61042080808080516104a0525050602081019050808080516104c0525050602081019050808080516104e05250506020810190508080805161050052505050506000506104a08051825280602001518260200152806040015182604001528060600151826060015250505b611832565b6102405161032051808210156116b557600080fd5b808203905090506040518111156116cb57600080fd5b610380526102e0516103805161030051808202808060008112156116eb57195b607f1c156116f857600080fd5b9050905090508082038080600081121561170e57195b607f1c1561171b57600080fd5b9050905090506000808212156117315780611733565b815b90509050600081121561174557600080fd5b6103a0526103a051151561176157610200516101c05111611764565b60005b1561176e57611843565b60006103a051111561180f576101e080516103a0516102405166038d7ea4c68000811061179a57600080fd5b600560c052602060c020015480820282158284830414176117ba57600080fd5b809050905090506102405166038d7ea4c6800081106117d857600080fd5b600a60c052602060c020015480806117ef57600080fd5b82049050905081818301101561180457600080fd5b808201905090508152505b610240805162093a8081818301101561182757600080fd5b808201905090508152505b5b8151600101808352811415611550575b50506101e0516000526000516101a0515650005b63af38d757600051141561186f5733610140526118a5565b63402914f5600051141561189d5760043560a01c1561188d57600080fd5b60206004610140376000506118a5565b600015611925575b60045462093a808082049050905062093a8080820282158284830414176118cb57600080fd5b8090509050905061016052610140516101605161014051610180526006546101a052610160516101c0526101c0516101a051610180516006580161129c565b6102205261016052610140526102205160005260206000f350005b634e71d92d600051141561193d573361014052611973565b631e83409a600051141561196b5760043560a01c1561195b57600080fd5b6020600461014037600050611973565b600015611b37575b62ffffff541561198257600080fd5b600162ffffff55600f541561199657600080fd5b600154421015156119b657610140516006580161095a565b610140526000505b60045461016052600d54156119ea5761016051620151808181830110156119dc57600080fd5b8082019050905042116119ed565b60005b15611a145761014051610160516006580161003a565b610160526101405260005042610160525b6101605162093a808082049050905062093a808082028215828483041417611a3b57600080fd5b8090509050905061016052610140516101605161018051610140516101a0526006546101c052610160516101e0526101e0516101c0516101a05160065801610c34565b6102405261018052610160526101405261024051610180526000610180511815611b1a576007546101a0526020610260604463a9059cbb6101c052610140516101e05261018051610200526101dc60006101a0515af1611add57600080fd5b601f3d11611aea57600080fd5b60005061026051611afa57600080fd5b600980546101805180821015611b0f57600080fd5b808203905090508155505b61018051600052600062ffffff5560206000f350600062ffffff55005b637b935a236000511415611dca5762ffffff5415611b5457600080fd5b600162ffffff556000610120525b610120516004013560a01c15611b7757600080fd5b6020610120510161012052610280610120511015611b9457611b62565b600f5415611ba157600080fd5b60015442101515611bb9576006580161095a565b6000505b60045461014052600d5415611bed576101405162015180818183011015611bdf57600080fd5b808201905090504211611bf0565b60005b15611c0f57610140516006580161003a565b6101405260005042610140525b6101405162093a808082049050905062093a808082028215828483041417611c3657600080fd5b8090509050905061014052600654610160526007546101805260006101a0526101e060006014818352015b60206101e05102600401356101c0526101c0511515611c7f57611d81565b6101405161016051610180516101a0516101c0516101e051610200516101c051610220526101605161024052610140516102605261026051610240516102205160065801610c34565b6102c052610200526101e0526101c0526101a0526101805261016052610140526102c051610200526000610200511815611d705760206102c0604463a9059cbb610220526101c05161024052610200516102605261023c6000610180515af1611d3057600080fd5b601f3d11611d3d57600080fd5b6000506102c051611d4d57600080fd5b6101a0805161020051818183011015611d6557600080fd5b808201905090508152505b5b8151600101808352811415611c61575b505060006101a0511815611daf57600980546101a05180821015611da457600080fd5b808203905090508155505b6001600052600062ffffff5560206000f350600062ffffff55005b6389afcb446000511415611eef5760043560a01c15611de857600080fd5b60075460043514611df857600080fd5b600f5415611e0557600080fd5b60206101e060246370a0823161016052336101805261017c6004355afa611e2b57600080fd5b601f3d11611e3857600080fd5b6000506101e051610140526000610140511815611ee257602061022060646323b872dd610160523361018052306101a052610140516101c05261017c60006004355af1611e8457600080fd5b601f3d11611e9157600080fd5b60005061022050600d5415611ec45760045462015180818183011015611eb657600080fd5b808201905090504211611ec7565b60005b15611ee157610140516006580161003a565b610140526000505b5b600160005260206000f350005b63b1d3db756000511415611f515760043560a01c15611f0d57600080fd5b600b543314611f1b57600080fd5b600435600c55600435610140527f59a407284ae6e2986675fa1400d6498af928ed01f4fd2dd6be4a2a8b4fc35b346020610140a1005b63c0e991a66000511415611fbb57600b543314611f6d57600080fd5b6000600c5418611f7c57600080fd5b600c546101405261014051600b5561014051610160527f756f845176805c8ebf249854e909627308157f63c96e470e44a9e8549ba6fb1e6020610160a1005b632121bfc3600051141561201757600b543314611fd757600080fd5b600d54156101405261014051600d5561014051610160527fdbe6ac1081ebd8e648718341126659456f4009fcadfe1c23f66f5e61522610b26020610160a1005b63e369885360005114156120c857600b54331461203357600080fd5b6001600f556007546101405260206102a0604463a9059cbb61020052600e546102205260206101e060246370a0823161016052306101805261017c610140515afa61207d57600080fd5b601f3d1161208a57600080fd5b6000506101e0516102405261021c6000610140515af16120a957600080fd5b601f3d116120b657600080fd5b6000506102a0516120c657600080fd5b005b63db2f5f7960005114156122905760043560a01c156120e657600080fd5b600b5433146120f457600080fd5b6007546004351861210457600080fd5b60206101e060246370a0823161016052306101805261017c6004355afa61212a57600080fd5b601f3d1161213757600080fd5b6000506101e05161014052600060046101c0527fa9059cbb000000000000000000000000000000000000000000000000000000006101e0526101c060048060208461022001018260208501600060045af1505080518201915050600e5460208261022001015260208101905061014051602082610220010152602081019050806102205261022090508051602001806102c08284600060045af16121da57600080fd5b505060206103806102c0516102e060006004355af16121f857600080fd5b60203d80821115612209578061220b565b815b90509050610360526103608051602001806101608284600060045af161223057600080fd5b505060006101605118156122835761016080602001516000825180602090131561225957600080fd5b809190121561226757600080fd5b806020036101000a8204905090509050151561228257600080fd5b5b600160005260206000f350005b63834ee41760005114156122ac5760005460005260206000f350005b63127dcbd360005114156122c85760015460005260206000f350005b632a2a314b60005114156123025760043560a01c156122e657600080fd5b600260043560e05260c052604060c0205460005260206000f350005b63d5d46e88600051141561233c5760043560a01c1561232057600080fd5b600360043560e05260c052604060c0205460005260206000f350005b637f58e8f860005114156123585760045460005260206000f350005b63edf5999760005114156123935760043566038d7ea4c68000811061237c57600080fd5b600560c052602060c020015460005260206000f350005b63dfe0503160005114156123af5760065460005260206000f350005b63fc0c546a60005114156123cb5760075460005260206000f350005b632f0c222e60005114156123e75760085460005260206000f350005b6322b04bfc60005114156124035760095460005260206000f350005b63d4dafba8600051141561243e5760043566038d7ea4c68000811061242757600080fd5b600a60c052602060c020015460005260206000f350005b63f851a440600051141561245a57600b5460005260206000f350005b6317f7182a600051141561247657600c5460005260206000f350005b63aeba4737600051141561249257600d5460005260206000f350005b632c3f531e60005114156124ae57600e5460005260206000f350005b639c868ac060005114156124ca57600f5460005260206000f350005b5b60006000fd

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.