文件 1 的 1:Vyper_contract.vy
# @version 0.3.1
"""
@title Voting Escrow Delegation
@author Curve Finance
@license MIT
@dev Provides test functions only available in test mode (`brownie test`)
"""
interface ERC721Receiver:
def onERC721Received(
_operator: address, _from: address, _token_id: uint256, _data: Bytes[4096]
) -> bytes32:
nonpayable
interface VotingEscrow:
def balanceOf(_account: address) -> int256: view
def locked__end(_addr: address) -> uint256: view
event Approval:
_owner: indexed(address)
_approved: indexed(address)
_token_id: indexed(uint256)
event ApprovalForAll:
_owner: indexed(address)
_operator: indexed(address)
_approved: bool
event Transfer:
_from: indexed(address)
_to: indexed(address)
_token_id: indexed(uint256)
event BurnBoost:
_delegator: indexed(address)
_receiver: indexed(address)
_token_id: indexed(uint256)
event DelegateBoost:
_delegator: indexed(address)
_receiver: indexed(address)
_token_id: indexed(uint256)
_amount: uint256
_cancel_time: uint256
_expire_time: uint256
event ExtendBoost:
_delegator: indexed(address)
_receiver: indexed(address)
_token_id: indexed(uint256)
_amount: uint256
_expire_time: uint256
_cancel_time: uint256
event TransferBoost:
_from: indexed(address)
_to: indexed(address)
_token_id: indexed(uint256)
_amount: uint256
_expire_time: uint256
event GreyListUpdated:
_receiver: indexed(address)
_delegator: indexed(address)
_status: bool
struct Boost:
# [bias uint128][slope int128]
delegated: uint256
received: uint256
# [total active delegations 128][next expiry 128]
expiry_data: uint256
struct Token:
# [bias uint128][slope int128]
data: uint256
# [delegator pos 128][cancel time 128]
dinfo: uint256
# [global 128][local 128]
position: uint256
expire_time: uint256
struct Point:
bias: int256
slope: int256
IDENTITY_PRECOMPILE: constant(address) = 0x0000000000000000000000000000000000000004
MAX_PCT: constant(uint256) = 10_000
WEEK: constant(uint256) = 86400 * 7
VOTING_ESCROW: immutable(address) # Voting escrow
AUTHORIZER_ADAPTOR: immutable(address) # Authorizer Adaptor
balanceOf: public(HashMap[address, uint256])
getApproved: public(HashMap[uint256, address])
isApprovedForAll: public(HashMap[address, HashMap[address, bool]])
ownerOf: public(HashMap[uint256, address])
name: public(String[32])
symbol: public(String[32])
base_uri: public(String[128])
totalSupply: public(uint256)
# use totalSupply to determine the length
tokenByIndex: public(HashMap[uint256, uint256])
# use balanceOf to determine the length
tokenOfOwnerByIndex: public(HashMap[address, uint256[MAX_UINT256]])
boost: HashMap[address, Boost]
boost_tokens: HashMap[uint256, Token]
token_of_delegator_by_index: public(HashMap[address, uint256[MAX_UINT256]])
total_minted: public(HashMap[address, uint256])
# address => timestamp => # of delegations expiring
account_expiries: public(HashMap[address, HashMap[uint256, uint256]])
# The grey list - per-user black and white lists
# users can make this a blacklist or a whitelist - defaults to blacklist
# gray_list[_receiver][_delegator]
# by default is blacklist, with no delegators blacklisted
# if [_receiver][ZERO_ADDRESS] is False = Blacklist, True = Whitelist
# if this is a blacklist, receivers disallow any delegations from _delegator if it is True
# if this is a whitelist, receivers only allow delegations from _delegator if it is True
# Delegation will go through if: not (grey_list[_receiver][ZERO_ADDRESS] ^ grey_list[_receiver][_delegator])
grey_list: public(HashMap[address, HashMap[address, bool]])
@external
def __init__(_voting_escrow: address, _name: String[32], _symbol: String[32], _base_uri: String[128], _authorizer_adaptor: address):
VOTING_ESCROW = _voting_escrow
AUTHORIZER_ADAPTOR = _authorizer_adaptor
self.name = _name
self.symbol = _symbol
self.base_uri = _base_uri
@view
@external
def admin() -> address:
return AUTHORIZER_ADAPTOR
@internal
def _approve(_owner: address, _approved: address, _token_id: uint256):
self.getApproved[_token_id] = _approved
log Approval(_owner, _approved, _token_id)
@view
@internal
def _is_approved_or_owner(_spender: address, _token_id: uint256) -> bool:
owner: address = self.ownerOf[_token_id]
return (
_spender == owner
or _spender == self.getApproved[_token_id]
or self.isApprovedForAll[owner][_spender]
)
@internal
def _update_enumeration_data(_from: address, _to: address, _token_id: uint256):
delegator: address = convert(shift(_token_id, -96), address)
position_data: uint256 = self.boost_tokens[_token_id].position
local_pos: uint256 = position_data % 2 ** 128
global_pos: uint256 = shift(position_data, -128)
# position in the delegator array of minted tokens
delegator_pos: uint256 = shift(self.boost_tokens[_token_id].dinfo, -128)
if _from == ZERO_ADDRESS:
# minting - This is called before updates to balance and totalSupply
local_pos = self.balanceOf[_to]
global_pos = self.totalSupply
position_data = shift(global_pos, 128) + local_pos
# this is a new token so we get the index of a new spot
delegator_pos = self.total_minted[delegator]
self.tokenByIndex[global_pos] = _token_id
self.tokenOfOwnerByIndex[_to][local_pos] = _token_id
self.boost_tokens[_token_id].position = position_data
# we only mint tokens in the create_boost fn, and this is called
# before we update the cancel_time so we can just set the value
# of dinfo to the shifted position
self.boost_tokens[_token_id].dinfo = shift(delegator_pos, 128)
self.token_of_delegator_by_index[delegator][delegator_pos] = _token_id
self.total_minted[delegator] = delegator_pos + 1
elif _to == ZERO_ADDRESS:
# burning - This is called after updates to balance and totalSupply
# we operate on both the global array and local array
last_global_index: uint256 = self.totalSupply
last_local_index: uint256 = self.balanceOf[_from]
last_delegator_pos: uint256 = self.total_minted[delegator] - 1
if global_pos != last_global_index:
# swap - set the token we're burnings position to the token in the last index
last_global_token: uint256 = self.tokenByIndex[last_global_index]
last_global_token_pos: uint256 = self.boost_tokens[last_global_token].position
# update the global position of the last global token
self.boost_tokens[last_global_token].position = shift(global_pos, 128) + (last_global_token_pos % 2 ** 128)
self.tokenByIndex[global_pos] = last_global_token
self.tokenByIndex[last_global_index] = 0
if local_pos != last_local_index:
# swap - set the token we're burnings position to the token in the last index
last_local_token: uint256 = self.tokenOfOwnerByIndex[_from][last_local_index]
last_local_token_pos: uint256 = self.boost_tokens[last_local_token].position
# update the local position of the last local token
self.boost_tokens[last_local_token].position = shift(last_local_token_pos / 2 ** 128, 128) + local_pos
self.tokenOfOwnerByIndex[_from][local_pos] = last_local_token
self.tokenOfOwnerByIndex[_from][last_local_index] = 0
self.boost_tokens[_token_id].position = 0
if delegator_pos != last_delegator_pos:
last_delegator_token: uint256 = self.token_of_delegator_by_index[delegator][last_delegator_pos]
last_delegator_token_dinfo: uint256 = self.boost_tokens[last_delegator_token].dinfo
# update the last tokens position data and maintain the correct cancel time
self.boost_tokens[last_delegator_token].dinfo = shift(delegator_pos, 128) + (last_delegator_token_dinfo % 2 ** 128)
self.token_of_delegator_by_index[delegator][delegator_pos] = last_delegator_token
self.token_of_delegator_by_index[delegator][last_delegator_pos] = 0
self.boost_tokens[_token_id].dinfo = 0 # we are burning the token so we can just set to 0
self.total_minted[delegator] = last_delegator_pos
else:
# transfering - called between balance updates
from_last_index: uint256 = self.balanceOf[_from]
if local_pos != from_last_index:
# swap - set the token we're burnings position to the token in the last index
last_local_token: uint256 = self.tokenOfOwnerByIndex[_from][from_last_index]
last_local_token_pos: uint256 = self.boost_tokens[last_local_token].position
# update the local position of the last local token
self.boost_tokens[last_local_token].position = shift(last_local_token_pos / 2 ** 128, 128) + local_pos
self.tokenOfOwnerByIndex[_from][local_pos] = last_local_token
self.tokenOfOwnerByIndex[_from][from_last_index] = 0
# to is simple we just add to the end of the list
local_pos = self.balanceOf[_to]
self.tokenOfOwnerByIndex[_to][local_pos] = _token_id
self.boost_tokens[_token_id].position = shift(global_pos, 128) + local_pos
@internal
def _burn(_token_id: uint256):
owner: address = self.ownerOf[_token_id]
self._approve(owner, ZERO_ADDRESS, _token_id)
self.balanceOf[owner] -= 1
self.ownerOf[_token_id] = ZERO_ADDRESS
self.totalSupply -= 1
self._update_enumeration_data(owner, ZERO_ADDRESS, _token_id)
log Transfer(owner, ZERO_ADDRESS, _token_id)
@internal
def _mint(_to: address, _token_id: uint256):
assert _to != ZERO_ADDRESS # dev: minting to ZERO_ADDRESS disallowed
assert self.ownerOf[_token_id] == ZERO_ADDRESS # dev: token exists
self._update_enumeration_data(ZERO_ADDRESS, _to, _token_id)
self.balanceOf[_to] += 1
self.ownerOf[_token_id] = _to
self.totalSupply += 1
log Transfer(ZERO_ADDRESS, _to, _token_id)
@internal
def _mint_boost(_token_id: uint256, _delegator: address, _receiver: address, _bias: int256, _slope: int256, _cancel_time: uint256, _expire_time: uint256):
is_whitelist: uint256 = convert(self.grey_list[_receiver][ZERO_ADDRESS], uint256)
delegator_status: uint256 = convert(self.grey_list[_receiver][_delegator], uint256)
assert not convert(bitwise_xor(is_whitelist, delegator_status), bool) # dev: mint boost not allowed
data: uint256 = shift(convert(_bias, uint256), 128) + convert(abs(_slope), uint256)
self.boost[_delegator].delegated += data
self.boost[_receiver].received += data
token: Token = self.boost_tokens[_token_id]
token.data = data
token.dinfo = token.dinfo + _cancel_time
token.expire_time = _expire_time
self.boost_tokens[_token_id] = token
@internal
def _burn_boost(_token_id: uint256, _delegator: address, _receiver: address, _bias: int256, _slope: int256):
token: Token = self.boost_tokens[_token_id]
expire_time: uint256 = token.expire_time
if expire_time == 0:
return
self.boost[_delegator].delegated -= token.data
self.boost[_receiver].received -= token.data
token.data = 0
# maintain the same position in the delegator array, but remove the cancel time
token.dinfo = shift(token.dinfo / 2 ** 128, 128)
token.expire_time = 0
self.boost_tokens[_token_id] = token
# update the next expiry data
expiry_data: uint256 = self.boost[_delegator].expiry_data
next_expiry: uint256 = expiry_data % 2 ** 128
active_delegations: uint256 = shift(expiry_data, -128) - 1
expiries: uint256 = self.account_expiries[_delegator][expire_time]
if active_delegations != 0 and expire_time == next_expiry and expiries == 0:
# Will be passed if
# active_delegations == 0, no more active boost tokens
# or
# expire_time != next_expiry, the cancelled boost token isn't the next expiring boost token
# or
# expiries != 0, the cancelled boost token isn't the only one expiring at expire_time
for i in range(1, 513): # ~10 years
# we essentially allow for a boost token be expired for up to 6 years
# 10 yrs - 4 yrs (max vecRV lock time) = ~ 6 yrs
if i == 512:
raise "Failed to find next expiry"
week_ts: uint256 = expire_time + WEEK * (i + 1)
if self.account_expiries[_delegator][week_ts] > 0:
next_expiry = week_ts
break
elif active_delegations == 0:
next_expiry = 0
self.boost[_delegator].expiry_data = shift(active_delegations, 128) + next_expiry
self.account_expiries[_delegator][expire_time] = expiries - 1
@internal
def _transfer_boost(_from: address, _to: address, _bias: int256, _slope: int256):
data: uint256 = shift(convert(_bias, uint256), 128) + convert(abs(_slope), uint256)
self.boost[_from].received -= data
self.boost[_to].received += data
@pure
@internal
def _deconstruct_bias_slope(_data: uint256) -> Point:
return Point({bias: convert(shift(_data, -128), int256), slope: -convert(_data % 2 ** 128, int256)})
@pure
@internal
def _calc_bias_slope(_x: int256, _y: int256, _expire_time: int256) -> Point:
# SLOPE: (y2 - y1) / (x2 - x1)
# BIAS: y = mx + b -> y - mx = b
slope: int256 = -_y / (_expire_time - _x)
return Point({bias: _y - slope * _x, slope: slope})
@internal
def _transfer(_from: address, _to: address, _token_id: uint256):
assert self.ownerOf[_token_id] == _from # dev: _from is not owner
assert _to != ZERO_ADDRESS # dev: transfers to ZERO_ADDRESS are disallowed
delegator: address = convert(shift(_token_id, -96), address)
is_whitelist: uint256 = convert(self.grey_list[_to][ZERO_ADDRESS], uint256)
delegator_status: uint256 = convert(self.grey_list[_to][delegator], uint256)
assert not convert(bitwise_xor(is_whitelist, delegator_status), bool) # dev: transfer boost not allowed
# clear previous token approval
self._approve(_from, ZERO_ADDRESS, _token_id)
self.balanceOf[_from] -= 1
self._update_enumeration_data(_from, _to, _token_id)
self.balanceOf[_to] += 1
self.ownerOf[_token_id] = _to
tpoint: Point = self._deconstruct_bias_slope(self.boost_tokens[_token_id].data)
tvalue: int256 = tpoint.slope * convert(block.timestamp, int256) + tpoint.bias
# if the boost value is negative, reset the slope and bias
if tvalue > 0:
self._transfer_boost(_from, _to, tpoint.bias, tpoint.slope)
# y = mx + b -> y - b = mx -> (y - b)/m = x -> -b / m = x (x-intercept)
expiry: uint256 = convert(-tpoint.bias / tpoint.slope, uint256)
log TransferBoost(_from, _to, _token_id, convert(tvalue, uint256), expiry)
else:
self._burn_boost(_token_id, delegator, _from, tpoint.bias, tpoint.slope)
log BurnBoost(delegator, _from, _token_id)
log Transfer(_from, _to, _token_id)
@internal
def _cancel_boost(_token_id: uint256, _caller: address):
receiver: address = self.ownerOf[_token_id]
assert receiver != ZERO_ADDRESS # dev: token does not exist
delegator: address = convert(shift(_token_id, -96), address)
token: Token = self.boost_tokens[_token_id]
tpoint: Point = self._deconstruct_bias_slope(token.data)
tvalue: int256 = tpoint.slope * convert(block.timestamp, int256) + tpoint.bias
# if not (the owner or operator or the boost value is negative)
if not (_caller == receiver or self.isApprovedForAll[receiver][_caller] or tvalue <= 0):
if _caller == delegator or self.isApprovedForAll[delegator][_caller]:
# if delegator or operator, wait till after cancel time
assert (token.dinfo % 2 ** 128) <= block.timestamp # dev: must wait for cancel time
else:
# All others are disallowed
raise "Not allowed!"
self._burn_boost(_token_id, delegator, receiver, tpoint.bias, tpoint.slope)
log BurnBoost(delegator, receiver, _token_id)
@internal
def _set_delegation_status(_receiver: address, _delegator: address, _status: bool):
self.grey_list[_receiver][_delegator] = _status
log GreyListUpdated(_receiver, _delegator, _status)
@pure
@internal
def _uint_to_string(_value: uint256) -> String[78]:
# NOTE: Odd that this works with a raw_call inside, despite being marked
# a pure function
if _value == 0:
return "0"
buffer: Bytes[78] = b""
digits: uint256 = 78
for i in range(78):
# go forward to find the # of digits, and set it
# only if we have found the last index
if digits == 78 and _value / 10 ** i == 0:
digits = i
value: uint256 = ((_value / 10 ** (77 - i)) % 10) + 48
char: Bytes[1] = slice(convert(value, bytes32), 31, 1)
buffer = raw_call(
IDENTITY_PRECOMPILE,
concat(buffer, char),
max_outsize=78,
is_static_call=True
)
return convert(slice(buffer, 78 - digits, digits), String[78])
@external
def approve(_approved: address, _token_id: uint256):
"""
@notice Change or reaffirm the approved address for an NFT.
@dev The zero address indicates there is no approved address.
Throws unless `msg.sender` is the current NFT owner, or an authorized
operator of the current owner.
@param _approved The new approved NFT controller.
@param _token_id The NFT to approve.
"""
owner: address = self.ownerOf[_token_id]
assert (
msg.sender == owner or self.isApprovedForAll[owner][msg.sender]
) # dev: must be owner or operator
self._approve(owner, _approved, _token_id)
@external
def safeTransferFrom(_from: address, _to: address, _token_id: uint256, _data: Bytes[4096] = b""):
"""
@notice Transfers the ownership of an NFT from one address to another address
@dev Throws unless `msg.sender` is the current owner, an authorized
operator, or the approved address for this NFT. Throws if `_from` is
not the current owner. Throws if `_to` is the zero address. Throws if
`_tokenId` is not a valid NFT. When transfer is complete, this function
checks if `_to` is a smart contract (code size > 0). If so, it calls
`onERC721Received` on `_to` and throws if the return value is not
`bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`.
@param _from The current owner of the NFT
@param _to The new owner
@param _token_id The NFT to transfer
@param _data Additional data with no specified format, sent in call to `_to`, max length 4096
"""
assert self._is_approved_or_owner(msg.sender, _token_id) # dev: neither owner nor approved
self._transfer(_from, _to, _token_id)
if _to.is_contract:
response: bytes32 = ERC721Receiver(_to).onERC721Received(
msg.sender, _from, _token_id, _data
)
assert slice(response, 0, 4) == method_id(
"onERC721Received(address,address,uint256,bytes)"
) # dev: invalid response
@external
def setApprovalForAll(_operator: address, _approved: bool):
"""
@notice Enable or disable approval for a third party ("operator") to manage
all of `msg.sender`'s assets.
@dev Emits the ApprovalForAll event. Multiple operators per account are allowed.
@param _operator Address to add to the set of authorized operators.
@param _approved True if the operator is approved, false to revoke approval.
"""
self.isApprovedForAll[msg.sender][_operator] = _approved
log ApprovalForAll(msg.sender, _operator, _approved)
@external
def transferFrom(_from: address, _to: address, _token_id: uint256):
"""
@notice Transfer ownership of an NFT -- THE CALLER IS RESPONSIBLE
TO CONFIRM THAT `_to` IS CAPABLE OF RECEIVING NFTS OR ELSE
THEY MAY BE PERMANENTLY LOST
@dev Throws unless `msg.sender` is the current owner, an authorized
operator, or the approved address for this NFT. Throws if `_from` is
not the current owner. Throws if `_to` is the ZERO_ADDRESS.
@param _from The current owner of the NFT
@param _to The new owner
@param _token_id The NFT to transfer
"""
assert self._is_approved_or_owner(msg.sender, _token_id) # dev: neither owner nor approved
self._transfer(_from, _to, _token_id)
@view
@external
def tokenURI(_token_id: uint256) -> String[256]:
return concat(self.base_uri, self._uint_to_string(_token_id))
@external
def burn(_token_id: uint256):
"""
@notice Destroy a token
@dev Only callable by the token owner, their operator, or an approved account.
Burning a token with a currently active boost, burns the boost.
@param _token_id The token to burn
"""
assert self._is_approved_or_owner(msg.sender, _token_id) # dev: neither owner nor approved
tdata: uint256 = self.boost_tokens[_token_id].data
if tdata != 0:
tpoint: Point = self._deconstruct_bias_slope(tdata)
delegator: address = convert(shift(_token_id, -96), address)
owner: address = self.ownerOf[_token_id]
self._burn_boost(_token_id, delegator, owner, tpoint.bias, tpoint.slope)
log BurnBoost(delegator, owner, _token_id)
self._burn(_token_id)
@external
def create_boost(
_delegator: address,
_receiver: address,
_percentage: int256,
_cancel_time: uint256,
_expire_time: uint256,
_id: uint256,
):
"""
@notice Create a boost and delegate it to another account.
@dev Delegated boost can become negative, and requires active management, else
the adjusted veCRV balance of the delegator's account will decrease until reaching 0
@param _delegator The account to delegate boost from
@param _receiver The account to receive the delegated boost
@param _percentage Since veCRV is a constantly decreasing asset, we use percentage to determine
the amount of delegator's boost to delegate
@param _cancel_time A point in time before _expire_time in which the delegator or their operator
can cancel the delegated boost
@param _expire_time The point in time, atleast a day in the future, at which the value of the boost
will reach 0. After which the negative value is deducted from the delegator's account (and the
receiver's received boost only) until it is cancelled. This value is rounded down to the nearest
WEEK.
@param _id The token id, within the range of [0, 2 ** 96). Useful for contracts given operator status
to have specific ranges.
"""
assert msg.sender == _delegator or self.isApprovedForAll[_delegator][msg.sender] # dev: only delegator or operator
expire_time: uint256 = (_expire_time / WEEK) * WEEK
expiry_data: uint256 = self.boost[_delegator].expiry_data
next_expiry: uint256 = expiry_data % 2 ** 128
if next_expiry == 0:
next_expiry = MAX_UINT256
assert block.timestamp < next_expiry # dev: negative boost token is in circulation
assert _percentage > 0 # dev: percentage must be greater than 0 bps
assert _percentage <= MAX_PCT # dev: percentage must be less than 10_000 bps
assert _cancel_time <= expire_time # dev: cancel time is after expiry
assert expire_time >= block.timestamp + WEEK # dev: boost duration must be atleast WEEK
assert expire_time <= VotingEscrow(VOTING_ESCROW).locked__end(_delegator) # dev: boost expiration is past voting escrow lock expiry
assert _id < 2 ** 96 # dev: id out of bounds
# [delegator address 160][cancel_time uint40][id uint56]
token_id: uint256 = shift(convert(_delegator, uint256), 96) + _id
# check if the token exists here before we expend more gas by minting it
self._mint(_receiver, token_id)
# delegated slope and bias
point: Point = self._deconstruct_bias_slope(self.boost[_delegator].delegated)
time: int256 = convert(block.timestamp, int256)
# delegated boost will be positive, if any of circulating boosts are negative
# we have already reverted
delegated_boost: int256 = point.slope * time + point.bias
y: int256 = _percentage * (VotingEscrow(VOTING_ESCROW).balanceOf(_delegator) - delegated_boost) / MAX_PCT
assert y > 0 # dev: no boost
point = self._calc_bias_slope(time, y, convert(expire_time, int256))
assert point.slope < 0 # dev: invalid slope
self._mint_boost(token_id, _delegator, _receiver, point.bias, point.slope, _cancel_time, expire_time)
# increase the number of expiries for the user
if expire_time < next_expiry:
next_expiry = expire_time
active_delegations: uint256 = shift(expiry_data, -128)
self.account_expiries[_delegator][expire_time] += 1
self.boost[_delegator].expiry_data = shift(active_delegations + 1, 128) + next_expiry
log DelegateBoost(_delegator, _receiver, token_id, convert(y, uint256), _cancel_time, _expire_time)
@external
def extend_boost(_token_id: uint256, _percentage: int256, _expire_time: uint256, _cancel_time: uint256):
"""
@notice Extend the boost of an existing boost or expired boost
@dev The extension can not decrease the value of the boost. If there are
any outstanding negative value boosts which cause the delegable boost
of an account to be negative this call will revert
@param _token_id The token to extend the boost of
@param _percentage The percentage of delegable boost to delegate
AFTER burning the token's current boost
@param _expire_time The new time at which the boost value will become
0, and eventually negative. Must be greater than the previous expiry time,
and atleast a WEEK from now, and less than the veCRV lock expiry of the
delegator's account. This value is rounded down to the nearest WEEK.
"""
delegator: address = convert(shift(_token_id, -96), address)
receiver: address = self.ownerOf[_token_id]
assert msg.sender == delegator or self.isApprovedForAll[delegator][msg.sender] # dev: only delegator or operator
assert receiver != ZERO_ADDRESS # dev: boost token does not exist
assert _percentage > 0 # dev: percentage must be greater than 0 bps
assert _percentage <= MAX_PCT # dev: percentage must be less than 10_000 bps
# timestamp when delegating account's voting escrow ends - also our second point (lock_expiry, 0)
token: Token = self.boost_tokens[_token_id]
expire_time: uint256 = (_expire_time / WEEK) * WEEK
assert _cancel_time <= expire_time # dev: cancel time is after expiry
assert expire_time >= block.timestamp + WEEK # dev: boost duration must be atleast one day
assert expire_time <= VotingEscrow(VOTING_ESCROW).locked__end(delegator) # dev: boost expiration is past voting escrow lock expiry
point: Point = self._deconstruct_bias_slope(token.data)
time: int256 = convert(block.timestamp, int256)
tvalue: int256 = point.slope * time + point.bias
# Can extend a token by increasing it's amount but not it's expiry time
assert expire_time >= token.expire_time # dev: new expiration must be greater than old token expiry
# if we are extending an unexpired boost, the cancel time must the same or greater
# else we can adjust the cancel time to our preference
if _cancel_time < (token.dinfo % 2 ** 128):
assert block.timestamp >= token.expire_time # dev: cancel time reduction disallowed
# storage variables have been updated: next_expiry + active_delegations
self._burn_boost(_token_id, delegator, receiver, point.bias, point.slope)
expiry_data: uint256 = self.boost[delegator].expiry_data
next_expiry: uint256 = expiry_data % 2 ** 128
if next_expiry == 0:
next_expiry = MAX_UINT256
assert block.timestamp < next_expiry # dev: negative outstanding boosts
# delegated slope and bias
point = self._deconstruct_bias_slope(self.boost[delegator].delegated)
# verify delegated boost isn't negative, else it'll inflate out vecrv balance
delegated_boost: int256 = point.slope * time + point.bias
y: int256 = _percentage * (VotingEscrow(VOTING_ESCROW).balanceOf(delegator) - delegated_boost) / MAX_PCT
# a delegator can snipe the exact moment a token expires and create a boost
# with 10_000 or some percentage of their boost, which is perfectly fine.
# this check is here so the user can't extend a boost unless they actually
# have any to give
assert y > 0 # dev: no boost
assert y >= tvalue # dev: cannot reduce value of boost
point = self._calc_bias_slope(time, y, convert(expire_time, int256))
assert point.slope < 0 # dev: invalid slope
self._mint_boost(_token_id, delegator, receiver, point.bias, point.slope, _cancel_time, expire_time)
# increase the number of expiries for the user
if expire_time < next_expiry:
next_expiry = expire_time
active_delegations: uint256 = shift(expiry_data, -128)
self.account_expiries[delegator][expire_time] += 1
self.boost[delegator].expiry_data = shift(active_delegations + 1, 128) + next_expiry
log ExtendBoost(delegator, receiver, _token_id, convert(y, uint256), expire_time, _cancel_time)
@external
def cancel_boost(_token_id: uint256):
"""
@notice Cancel an outstanding boost
@dev This does not burn the token, only the boost it represents. The owner
of the token or their operator can cancel a boost at any time. The
delegator or their operator can only cancel a token after the cancel
time. Anyone can cancel the boost if the value of it is negative.
@param _token_id The token to cancel
"""
self._cancel_boost(_token_id, msg.sender)
@external
def batch_cancel_boosts(_token_ids: uint256[256]):
"""
@notice Cancel many outstanding boosts
@dev This does not burn the token, only the boost it represents. The owner
of the token or their operator can cancel a boost at any time. The
delegator or their operator can only cancel a token after the cancel
time. Anyone can cancel the boost if the value of it is negative.
@param _token_ids A list of 256 token ids to nullify. The list must
be padded with 0 values if less than 256 token ids are provided.
"""
for _token_id in _token_ids:
if _token_id == 0:
break
self._cancel_boost(_token_id, msg.sender)
@external
def set_delegation_status(_receiver: address, _delegator: address, _status: bool):
"""
@notice Set or reaffirm the blacklist/whitelist status of a delegator for a receiver.
@dev Setting delegator as the ZERO_ADDRESS enables users to deactive delegations globally
and enable the white list. The ability of a delegator to delegate to a receiver
is determined by ~(grey_list[_receiver][ZERO_ADDRESS] ^ grey_list[_receiver][_delegator]).
@param _receiver The account which we will be updating it's list
@param _delegator The account to disallow/allow delegations from
@param _status Boolean of the status to set the _delegator account to
"""
assert msg.sender == _receiver or self.isApprovedForAll[_receiver][msg.sender]
self._set_delegation_status(_receiver, _delegator, _status)
@external
def batch_set_delegation_status(_receiver: address, _delegators: address[256], _status: uint256[256]):
"""
@notice Set or reaffirm the blacklist/whitelist status of multiple delegators for a receiver.
@dev Setting delegator as the ZERO_ADDRESS enables users to deactive delegations globally
and enable the white list. The ability of a delegator to delegate to a receiver
is determined by ~(grey_list[_receiver][ZERO_ADDRESS] ^ grey_list[_receiver][_delegator]).
@param _receiver The account which we will be updating it's list
@param _delegators List of 256 accounts to disallow/allow delegations from
@param _status List of 256 0s and 1s (booleans) of the status to set the _delegator_i account to.
if the value is not 0 or 1, execution will break, effectively stopping at the index.
"""
assert msg.sender == _receiver or self.isApprovedForAll[_receiver][msg.sender] # dev: only receiver or operator
for i in range(256):
if _status[i] > 1:
break
self._set_delegation_status(_receiver, _delegators[i], convert(_status[i], bool))
@view
@external
def adjusted_balance_of(_account: address) -> uint256:
"""
@notice Adjusted veCRV balance after accounting for delegations and boosts
@dev If boosts/delegations have a negative value, they're effective value is 0
@param _account The account to query the adjusted balance of
"""
next_expiry: uint256 = self.boost[_account].expiry_data % 2 ** 128
if next_expiry != 0 and next_expiry < block.timestamp:
# if the account has a negative boost in circulation
# we over penalize by setting their adjusted balance to 0
# this is because we don't want to iterate to find the real
# value
return 0
adjusted_balance: int256 = VotingEscrow(VOTING_ESCROW).balanceOf(_account)
boost: Boost = self.boost[_account]
time: int256 = convert(block.timestamp, int256)
if boost.delegated != 0:
dpoint: Point = self._deconstruct_bias_slope(boost.delegated)
# we take the absolute value, since delegated boost can be negative
# if any outstanding negative boosts are in circulation
# this can inflate the vecrv balance of a user
# taking the absolute value has the effect that it costs
# a user to negatively impact another's vecrv balance
adjusted_balance -= abs(dpoint.slope * time + dpoint.bias)
if boost.received != 0:
rpoint: Point = self._deconstruct_bias_slope(boost.received)
# similar to delegated boost, our received boost can be negative
# if any outstanding negative boosts are in our possession
# However, unlike delegated boost, we do not negatively impact
# our adjusted balance due to negative boosts. Instead we take
# whichever is greater between 0 and the value of our received
# boosts.
adjusted_balance += max(rpoint.slope * time + rpoint.bias, empty(int256))
# since we took the absolute value of our delegated boost, it now instead of
# becoming negative is positive, and will continue to increase ...
# meaning if we keep a negative outstanding delegated balance for long
# enought it will not only decrease our vecrv_balance but also our received
# boost, however we return the maximum between our adjusted balance and 0
# when delegating boost, received boost isn't used for determining how
# much we can delegate.
return convert(max(adjusted_balance, empty(int256)), uint256)
@view
@external
def delegated_boost(_account: address) -> uint256:
"""
@notice Query the total effective delegated boost value of an account.
@dev This value can be greater than the veCRV balance of
an account if the account has outstanding negative
value boosts.
@param _account The account to query
"""
dpoint: Point = self._deconstruct_bias_slope(self.boost[_account].delegated)
time: int256 = convert(block.timestamp, int256)
return convert(abs(dpoint.slope * time + dpoint.bias), uint256)
@view
@external
def received_boost(_account: address) -> uint256:
"""
@notice Query the total effective received boost value of an account
@dev This value can be 0, even with delegations which have a large value,
if the account has any outstanding negative value boosts.
@param _account The account to query
"""
rpoint: Point = self._deconstruct_bias_slope(self.boost[_account].received)
time: int256 = convert(block.timestamp, int256)
return convert(max(rpoint.slope * time + rpoint.bias, empty(int256)), uint256)
@view
@external
def token_boost(_token_id: uint256) -> int256:
"""
@notice Query the effective value of a boost
@dev The effective value of a boost is negative after it's expiration
date.
@param _token_id The token id to query
"""
tpoint: Point = self._deconstruct_bias_slope(self.boost_tokens[_token_id].data)
time: int256 = convert(block.timestamp, int256)
return tpoint.slope * time + tpoint.bias
@view
@external
def token_expiry(_token_id: uint256) -> uint256:
"""
@notice Query the timestamp of a boost token's expiry
@dev The effective value of a boost is negative after it's expiration
date.
@param _token_id The token id to query
"""
return self.boost_tokens[_token_id].expire_time
@view
@external
def token_cancel_time(_token_id: uint256) -> uint256:
"""
@notice Query the timestamp of a boost token's cancel time. This is
the point at which the delegator can nullify the boost. A receiver
can cancel a token at any point. Anyone can nullify a token's boost
after it's expiration.
@param _token_id The token id to query
"""
return self.boost_tokens[_token_id].dinfo % 2 ** 128
@view
@external
def calc_boost_bias_slope(
_delegator: address,
_percentage: int256,
_expire_time: int256,
_extend_token_id: uint256 = 0
) -> (int256, int256):
"""
@notice Calculate the bias and slope for a boost.
@param _delegator The account to delegate boost from
@param _percentage The percentage of the _delegator's delegable
veCRV to delegate.
@param _expire_time The time at which the boost value of the token
will reach 0, and subsequently become negative
@param _extend_token_id OPTIONAL token id, which if set will first nullify
the boost of the token, before calculating the bias and slope. Useful
for calculating the new bias and slope when extending a token, or
determining the bias and slope of a subsequent token after cancelling
an existing one. Will have no effect if _delegator is not the delegator
of the token.
"""
time: int256 = convert(block.timestamp, int256)
assert _percentage > 0 # dev: percentage must be greater than 0
assert _percentage <= MAX_PCT # dev: percentage must be less than or equal to 100%
assert _expire_time > time + WEEK # dev: Invalid min expiry time
lock_expiry: int256 = convert(VotingEscrow(VOTING_ESCROW).locked__end(_delegator), int256)
assert _expire_time <= lock_expiry
ddata: uint256 = self.boost[_delegator].delegated
if _extend_token_id != 0 and convert(shift(_extend_token_id, -96), address) == _delegator:
# decrease the delegated bias and slope by the token's bias and slope
# only if it is the delegator's and it is within the bounds of existence
ddata -= self.boost_tokens[_extend_token_id].data
dpoint: Point = self._deconstruct_bias_slope(ddata)
delegated_boost: int256 = dpoint.slope * time + dpoint.bias
assert delegated_boost >= 0 # dev: outstanding negative boosts
y: int256 = _percentage * (VotingEscrow(VOTING_ESCROW).balanceOf(_delegator) - delegated_boost) / MAX_PCT
assert y > 0 # dev: no boost
slope: int256 = -y / (_expire_time - time)
assert slope < 0 # dev: invalid slope
bias: int256 = y - slope * time
return bias, slope
@pure
@external
def get_token_id(_delegator: address, _id: uint256) -> uint256:
"""
@notice Simple method to get the token id's mintable by a delegator
@param _delegator The address of the delegator
@param _id The id value, must be less than 2 ** 96
"""
assert _id < 2 ** 96 # dev: invalid _id
return shift(convert(_delegator, uint256), 96) + _id
@external
def set_base_uri(_base_uri: String[128]):
assert msg.sender == AUTHORIZER_ADAPTOR
self.base_uri = _base_uri