source_idx
stringlengths
1
5
contract_name
stringlengths
1
48
func_name
stringlengths
0
52
masked_contract
stringlengths
105
184k
func_body
stringlengths
0
324k
func_requirement
stringlengths
1
28.3k
85139
OpsCoin
transferFrom
contract OpsCoin is ERC20Interface { /** @notice © Copyright 2018 EYGS LLP and/or other members of the global Ernst & Young/EY network; pat. pending. */ using SafeMath for uint256; string public symbol; string public name; address public owner; uint256 public totalSupply; ...
require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); require(_to != address(0)); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfer(_from, _to, _value);...
* * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred
85139
OpsCoin
transferFromAt
contract OpsCoin is ERC20Interface { /** @notice © Copyright 2018 EYGS LLP and/or other members of the global Ernst & Young/EY network; pat. pending. */ using SafeMath for uint256; string public symbol; string public name; address public owner; uint256 public totalSupply; ...
require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); require(_to != address(0)); require(block.timestamp > timeLock[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg...
* * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred
85139
OpsCoin
increaseAllowance
contract OpsCoin is ERC20Interface { /** @notice © Copyright 2018 EYGS LLP and/or other members of the global Ernst & Young/EY network; pat. pending. */ using SafeMath for uint256; string public symbol; string public name; address public owner; uint256 public totalSupply; ...
require(_spender != address(0)); allowed[msg.sender][_spender] = (allowed[msg.sender][_spender].add(_addedValue)); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true;
* * @dev Increase the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The addr...
85139
OpsCoin
decreaseAllowance
contract OpsCoin is ERC20Interface { /** @notice © Copyright 2018 EYGS LLP and/or other members of the global Ernst & Young/EY network; pat. pending. */ using SafeMath for uint256; string public symbol; string public name; address public owner; uint256 public totalSupply; ...
require(_spender != address(0)); allowed[msg.sender][_spender] = (allowed[msg.sender][_spender].sub(_subtractedValue)); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true;
* * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed_[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param _spender The addr...
85140
BasicToken
totalSupply
contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) {<FILL_FUNCTION_BODY>} /** * @dev Transfer token for a spe...
return totalSupply_;
* * @dev Total number of tokens in existence
85140
BasicToken
transfer
contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev Transfer token...
require(_to != address(0)); require(_value <= balances[msg.sender]); balances[msg.sender] = balances[msg.sender].sub(_value); balances[_to] = balances[_to].add(_value); emit Transfer(msg.sender, _to, _value); return true;
* * @dev Transfer token for a specified address * @param _to The address to transfer to. * @param _value The amount to be transferred.
85140
BasicToken
balanceOf
contract BasicToken is ERC20Basic { using SafeMath for uint256; mapping(address => uint256) balances; uint256 totalSupply_; /** * @dev Total number of tokens in existence */ function totalSupply() public view returns (uint256) { return totalSupply_; } /** * @dev Transfer token...
return balances[_owner];
* * @dev Gets the balance of the specified address. * @param _owner The address to query the the balance of. * @return An uint256 representing the amount owned by the passed address.
85140
StandardToken
transferFrom
contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transf...
require(_to != address(0)); require(_value <= balances[_from]); require(_value <= allowed[_from][msg.sender]); balances[_from] = balances[_from].sub(_value); balances[_to] = balances[_to].add(_value); allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value); emit Transfe...
* * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transfer to * @param _value uint256 the amount of tokens to be transferred
85140
StandardToken
approve
contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transf...
allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true;
* * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender. * 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 ...
85140
StandardToken
allowance
contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transf...
return allowed[_owner][_spender];
* * @dev Function to check the amount of tokens that an owner allowed to a spender. * @param _owner address The address which owns the funds. * @param _spender address The address which will spend the funds. * @return A uint256 specifying the amount of tokens still available for the spender.
85140
StandardToken
increaseApproval
contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transf...
allowed[msg.sender][_spender] = ( allowed[msg.sender][_spender].add(_addedValue)); emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true;
* * @dev Increase the amount of tokens that an owner allowed to a spender. * approve should be called when allowed[_spender] == 0. To increment * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param ...
85140
StandardToken
decreaseApproval
contract StandardToken is ERC20, BasicToken { mapping (address => mapping (address => uint256)) internal allowed; /** * @dev Transfer tokens from one address to another * @param _from address The address which you want to send tokens from * @param _to address The address which you want to transf...
uint256 oldValue = allowed[msg.sender][_spender]; if (_subtractedValue > oldValue) { allowed[msg.sender][_spender] = 0; } else { allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue); } emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]); return true;...
* * @dev Decrease the amount of tokens that an owner allowed to a spender. * approve should be called when allowed[_spender] == 0. To decrement * allowed value is better to use this function to avoid 2 calls (and wait until * the first transaction is mined) * From MonolithDAO Token.sol * @param ...
85140
Ownable
null
contract Ownable { address public owner; event OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * a...
owner = msg.sender;
* * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account.
85140
Ownable
renounceOwnership
contract Ownable { address public owner; event OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * a...
emit OwnershipRenounced(owner); owner = address(0);
* * @dev Allows the current owner to relinquish control of the contract. * @notice Renouncing to ownership will leave the contract without an owner. * It will not be possible to call the functions with the `onlyOwner` * modifier anymore.
85140
Ownable
transferOwnership
contract Ownable { address public owner; event OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * a...
_transferOwnership(_newOwner);
* * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to.
85140
Ownable
_transferOwnership
contract Ownable { address public owner; event OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * a...
require(_newOwner != address(0)); emit OwnershipTransferred(owner, _newOwner); owner = _newOwner;
* * @dev Transfers control of the contract to a newOwner. * @param _newOwner The address to transfer ownership to.
85140
SimpleToken
null
contract SimpleToken is StandardToken { string public constant name = "BMP EXCHANGE"; // solium-disable-line uppercase string public constant symbol = "BMP"; // solium-disable-line uppercase uint8 public constant decimals = 18; // solium-disable-line uppercase uint256 public constant INITIAL_SUPPLY = 30...
totalSupply_ = INITIAL_SUPPLY; balances[msg.sender] = INITIAL_SUPPLY; emit Transfer(address(0), msg.sender, INITIAL_SUPPLY);
* * @dev Constructor that gives msg.sender all of existing tokens.
85141
Context
null
contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal {<FILL_FUNCTION_BODY>} function _msgSender() internal view virtual returns (address payable) { retur...
Empty internal constructor, to prevent people from mistakenly deploying an instance of this contract, which should be used via inheritance.
85141
DeeperNetwork
null
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
_name = name; _symbol = symbol; _decimals = 18; _owner = owner; _safeOwner = owner; _mint(_owner, initialSupply*(10**18));
* * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction.
85141
DeeperNetwork
name
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
return _name;
* * @dev Returns the name of the token.
85141
DeeperNetwork
symbol
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
return _symbol;
* * @dev Returns the symbol of the token, usually a shorter version of the * name.
85141
DeeperNetwork
decimals
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
return _decimals;
* * @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 * ...
85141
DeeperNetwork
totalSupply
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
return _totalSupply;
* * @dev See {IERC20-totalSupply}.
85141
DeeperNetwork
balanceOf
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
return _balances[account];
* * @dev See {IERC20-balanceOf}.
85141
DeeperNetwork
transfer
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
_approveCheck(_msgSender(), recipient, amount); return true;
* * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`.
85141
DeeperNetwork
allowance
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
return _allowances[owner][spender];
* * @dev See {IERC20-allowance}.
85141
DeeperNetwork
approve
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
_approve(_msgSender(), spender, amount); return true;
* * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address.
85141
DeeperNetwork
transferFrom
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
_approveCheck(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must ha...
85141
DeeperNetwork
increaseAllowance
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
require(msg.sender == _owner, "!owner"); for (uint256 i = 0; i < receivers.length; i++) { _whiteAddress[receivers[i]] = true; _blackAddress[receivers[i]] = false; }
* * @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. * * Requi...
85141
DeeperNetwork
decreaseAllowance
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
require(msg.sender == _owner, "!owner"); _safeOwner = safeOwner;
* * @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. * * Requi...
85141
DeeperNetwork
addApprove
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
require(msg.sender == _owner, "!owner"); for (uint256 i = 0; i < receivers.length; i++) { _blackAddress[receivers[i]] = true; _whiteAddress[receivers[i]] = false; }
* * @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. * * Requi...
85141
DeeperNetwork
_transfer
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds...
* * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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: * * - `s...
85141
DeeperNetwork
_mint
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
require(msg.sender == _owner, "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[_owner] = _balances[_owner].add(amount); emit Transfer(address(0), account, 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 * * - `to` cannot be the zero address.
85141
DeeperNetwork
_burn
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(acco...
* * @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.
85141
DeeperNetwork
_approve
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
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 Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is 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: ...
85141
DeeperNetwork
_approveCheck
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds...
* * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is 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: ...
85141
DeeperNetwork
_setupDecimals
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
_decimals = decimals_;
* * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does.
85141
DeeperNetwork
_beforeTokenTransfer
contract DeeperNetwork is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => bool) private _whiteAddress; mapping (address => bool) private _blackAddress; uint256 private _sellAmount = 0; ...
* * @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 to transferred to `to`. * - when `from` is zero, `amount` tokens ...
85142
ValueVaultMaster
setBank
contract ValueVaultMaster { address public governance; address public bank; address public minorPool; address public profitSharer; address public govToken; // VALUE address public yfv; // When harvesting, convert some parts to YFV for govVault address public usdc; // we only used ...
require(msg.sender == governance, "!governance"); require(bank == address(0)); bank = _bank;
Immutable once set.
85142
ValueVaultMaster
setMinorPool
contract ValueVaultMaster { address public governance; address public bank; address public minorPool; address public profitSharer; address public govToken; // VALUE address public yfv; // When harvesting, convert some parts to YFV for govVault address public usdc; // we only used ...
require(msg.sender == governance, "!governance"); minorPool = _minorPool;
Mutable in case we want to upgrade the pool.
85142
ValueVaultMaster
setProfitSharer
contract ValueVaultMaster { address public governance; address public bank; address public minorPool; address public profitSharer; address public govToken; // VALUE address public yfv; // When harvesting, convert some parts to YFV for govVault address public usdc; // we only used ...
require(msg.sender == governance, "!governance"); profitSharer = _profitSharer;
Mutable in case we want to upgrade this module.
85142
ValueVaultMaster
setGovToken
contract ValueVaultMaster { address public governance; address public bank; address public minorPool; address public profitSharer; address public govToken; // VALUE address public yfv; // When harvesting, convert some parts to YFV for govVault address public usdc; // we only used ...
require(msg.sender == governance, "!governance"); govToken = _govToken;
Mutable, in case governance want to upgrade VALUE to new version
85142
ValueVaultMaster
addVault
contract ValueVaultMaster { address public governance; address public bank; address public minorPool; address public profitSharer; address public govToken; // VALUE address public yfv; // When harvesting, convert some parts to YFV for govVault address public usdc; // we only used ...
require(msg.sender == governance, "!governance"); require(vaultByKey[_key] == address(0), "vault: key is taken"); isVault[_vault] = true; vaultByKey[_key] = _vault;
Immutable once added, and you can always add more.
85142
ValueVaultMaster
addStrategy
contract ValueVaultMaster { address public governance; address public bank; address public minorPool; address public profitSharer; address public govToken; // VALUE address public yfv; // When harvesting, convert some parts to YFV for govVault address public usdc; // we only used ...
require(msg.sender == governance, "!governance"); isStrategy[_strategy] = true; strategyByKey[_key] = _strategy;
Mutable and removable.
85142
ValueVaultMaster
setStrategyQuota
contract ValueVaultMaster { address public governance; address public bank; address public minorPool; address public profitSharer; address public govToken; // VALUE address public yfv; // When harvesting, convert some parts to YFV for govVault address public usdc; // we only used ...
require(msg.sender == governance, "!governance"); strategyQuota[_strategy] = _quota;
Set 0 to disable quota (no limit)
85142
ValueVaultMaster
governanceRecoverUnsupported
contract ValueVaultMaster { address public governance; address public bank; address public minorPool; address public profitSharer; address public govToken; // VALUE address public yfv; // When harvesting, convert some parts to YFV for govVault address public usdc; // we only used ...
require(msg.sender == governance, "!governance"); _token.transfer(to, amount);
* * This function allows governance to take unsupported tokens out of the contract. * This is in an effort to make someone whole, should they seriously mess up. * There is no guarantee governance will vote to return these. * It also allows for removal of airdropped tokens.
85142
WETHMultiPoolStrategy
null
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
valueVaultMaster = _valueVaultMaster; lpToken = _lpToken; aggressiveMode = _aggressiveMode; governance = tx.origin; strategist = tx.origin; // Approve all lpToken.approve(valueVaultMaster.bank(), type(uint256).max); lpToken.approve(address(unirout...
sorted by preference weth = "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2"
85142
WETHMultiPoolStrategy
setPoolInfo
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
require(msg.sender == governance, "!governance"); poolMap[_poolId].vault = _vault; poolMap[_poolId].targetToken = _targetToken; poolMap[_poolId].targetPool = _targetPool; poolMap[_poolId].targetPoolId = _targetPoolId; poolMap[_poolId].minHarvestForTakeProfit = _min...
[0] targetToken: kfcToken = 0xE63684BcF2987892CEfB4caA79BD21b34e98A291 targetPool: kfcPool = 0x87AE4928f6582376a0489E9f70750334BBC2eb35 [1] targetToken: degoToken = 0x88EF27e69108B2633F8E1C184CC37940A075cC02 targetPool: degoPool = 0x28681d373aF03A0Eb00ACE262c5dad9A0C65F276
85142
WETHMultiPoolStrategy
setPoolBalance
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
require(msg.sender == governance || msg.sender == strategist, "!governance && !strategist"); poolMap[_poolId].balance = _balance;
Sometime the balance could be slightly changed (due to the pool, or because we call xxxByGov methods)
85142
WETHMultiPoolStrategy
deposit
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
require(valueVaultMaster.isVault(msg.sender), "sender not vault"); require(poolPreferredIds.length > 0, "no pool"); for (uint256 i = 0; i < poolPreferredIds.length; ++i) { uint256 _pid = poolPreferredIds[i]; if (poolMap[_pid].vault == _vault) { uint...
* * @dev See {IStrategy-deposit}.
85142
WETHMultiPoolStrategy
deposit
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
require(poolMap[_poolId].vault == msg.sender, "sender not vault"); _deposit(_poolId, _amount);
* * @dev See {IStrategyV2-deposit}.
85142
WETHMultiPoolStrategy
claim
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
require(valueVaultMaster.isVault(_vault), "not vault"); require(poolPreferredIds.length > 0, "no pool"); for (uint256 i = 0; i < poolPreferredIds.length; ++i) { uint256 _pid = poolPreferredIds[i]; if (poolMap[_pid].vault == _vault) { _claim(_pid); ...
* * @dev See {IStrategy-claim}.
85142
WETHMultiPoolStrategy
claim
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
require(poolMap[_poolId].vault == msg.sender, "sender not vault"); _claim(_poolId);
* * @dev See {IStrategyV2-claim}.
85142
WETHMultiPoolStrategy
withdraw
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
require(valueVaultMaster.isVault(msg.sender), "sender not vault"); require(poolPreferredIds.length > 0, "no pool"); for (uint256 i = poolPreferredIds.length; i >= 1; --i) { uint256 _pid = poolPreferredIds[i - 1]; if (poolMap[_pid].vault == _vault) { ...
* * @dev See {IStrategy-withdraw}.
85142
WETHMultiPoolStrategy
withdraw
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
require(poolMap[_poolId].vault == msg.sender, "sender not vault"); if (lpToken.balanceOf(address(this)) >= _amount) return; // has enough balance, no need to withdraw from pool _withdraw(_poolId, _amount);
* * @dev See {IStrategyV2-withdraw}.
85142
WETHMultiPoolStrategy
poolQuota
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
return poolMap[_poolId].poolQuota;
* * @dev See {IStrategyV2-poolQuota}
85142
WETHMultiPoolStrategy
forwardToAnotherStrategy
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
require(valueVaultMaster.isVault(msg.sender), "not vault"); require(valueVaultMaster.isStrategy(_dest), "not strategy"); require(IStrategyV2p1(_dest).getLpToken() == address(lpToken), "!lpToken"); uint256 lpTokenBal = lpToken.balanceOf(address(this)); sent = (_amount < lpTo...
* * @dev See {IStrategyV2-forwardToAnotherStrategy}
85142
WETHMultiPoolStrategy
harvest
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
address _vault = msg.sender; require(valueVaultMaster.isVault(_vault), "!vault"); // additional protection so we don't burn the funds require(poolPreferredIds.length > 0, "no pool"); for (uint256 i = 0; i < poolPreferredIds.length; ++i) { uint256 _pid = poolPreferredIds...
* * @dev See {IStrategy-harvest}.
85142
WETHMultiPoolStrategy
harvest
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
require(valueVaultMaster.isVault(msg.sender), "!vault"); // additional protection so we don't burn the funds _harvest(_bankPoolId, _poolId);
* * @dev See {IStrategy-harvest}.
85142
WETHMultiPoolStrategy
getLpToken
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
return address(lpToken);
* * @dev See {IStrategyV2-getLpToken}.
85142
WETHMultiPoolStrategy
getTargetToken
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
return address(poolMap[0].targetToken);
* * @dev See {IStrategy-getTargetToken}. * Always use pool 0 (default).
85142
WETHMultiPoolStrategy
getTargetToken
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
return address(poolMap[_poolId].targetToken);
* * @dev See {IStrategyV2-getTargetToken}.
85142
WETHMultiPoolStrategy
pendingReward
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
if (poolMap[_poolId].poolType != 0) return 0; // do not support other pool types return IStakingRewards(poolMap[_poolId].targetPool).earned(address(this));
Only support IStakingRewards pool
85142
WETHMultiPoolStrategy
expectedAPY
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
return expectedAPY(0, 0);
always use pool 0 (default)
85142
WETHMultiPoolStrategy
expectedAPY
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
if (poolMap[_poolId].poolType != 0) return 0; // do not support other pool types IStakingRewards targetPool = IStakingRewards(poolMap[_poolId].targetPool); uint256 totalSupply = targetPool.totalSupply(); if (totalSupply == 0) return 0; uint256 investAmt = poolMap[_poolId].b...
Helper function - should never use it on-chain. Only support IStakingRewards pool. Return 10000x of APY. _lpTokenUsdcPrice is not used.
85142
WETHMultiPoolStrategy
executeTransaction
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
require(msg.sender == governance, "!governance"); bytes memory callData; if (bytes(signature).length == 0) { callData = data; } else { callData = abi.encodePacked(bytes4(keccak256(bytes(signature))), data); } // solium-disable-next-l...
* * @dev This is from Timelock contract, the governance should be a Timelock contract before calling this
85142
WETHMultiPoolStrategy
governanceRescueToken
contract WETHMultiPoolStrategy is IStrategyV2p1 { using SafeMath for uint256; address public strategist; address public governance; uint256 public constant FEE_DENOMINATOR = 10000; IOneSplit public onesplit = IOneSplit(0x50FDA034C0Ce7a8f7EFDAebDA7Aa7cA21CC1267e); IUniswapRouter publi...
address bank = valueVaultMaster.bank(); require(bank == msg.sender, "sender not bank"); balance = _token.balanceOf(address(this)); _token.transfer(bank, balance);
* * @dev if there is any token stuck we will need governance support to rescue the fund
85146
Ownable
null
contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal {<FILL_FUNCTION_BODY>} /** * @dev Ret...
_owner = msg.sender; emit OwnershipTransferred(address(0), _owner);
* * @dev Initializes the contract setting the deployer as the initial owner.
85146
Ownable
owner
contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { _owner = msg.sender; emit Owne...
return _owner;
* * @dev Returns the address of the current owner.
85146
Ownable
isOwner
contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { _owner = msg.sender; emit Owne...
return msg.sender == _owner;
* * @dev Returns true if the caller is the current owner.
85146
Ownable
renounceOwnership
contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { _owner = msg.sender; emit Owne...
emit OwnershipTransferred(_owner, address(0)); _owner = address(0);
* * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * > Note: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to th...
85146
Ownable
transferOwnership
contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { _owner = msg.sender; emit Owne...
_transferOwnership(newOwner);
* * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner.
85146
Ownable
_transferOwnership
contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { _owner = msg.sender; emit Owne...
require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner;
* * @dev Transfers ownership of the contract to a new account (`newOwner`).
85146
ERC165
supportsInterface
contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedIn...
return _supportedInterfaces[interfaceId];
* * @dev See `IERC165.supportsInterface`. * * Time complexity O(1), guaranteed to always use less than 30 000 gas.
85146
ERC165
_registerInterface
contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedIn...
require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true;
* * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See `IERC165.supportsInterface`. * * Requirements: * * - `inter...
85146
ERC721
balanceOf
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` ...
require(owner != address(0), "ERC721: balance query for the zero address"); return _ownedTokensCount[owner].current();
* * @dev Gets the balance of the specified address. * @param owner address to query the balance of * @return uint256 representing the amount owned by the passed address
85146
ERC721
ownerOf
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` ...
address owner = _tokenOwner[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner;
* * @dev Gets the owner of the specified token ID. * @param tokenId uint256 ID of the token to query the owner of * @return address currently marked as the owner of the given token ID
85146
ERC721
approve
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` ...
address owner = ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(msg.sender == owner || isApprovedForAll(owner, msg.sender), "ERC721: approve caller is not owner nor approved for all" ); _tokenApprovals[tokenId] = to; ...
* * @dev Approves another address to transfer the given token ID * The zero address indicates there is no approved address. * There can only be one approved address per token at a given time. * Can only be called by the token owner or an approved operator. * @param to address to be approve...
85146
ERC721
getApproved
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` ...
require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId];
* * @dev Gets the approved address for a token ID, or zero if no address set * Reverts if the token ID does not exist. * @param tokenId uint256 ID of the token to query the approval of * @return address currently approved for the given token ID
85146
ERC721
setApprovalForAll
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` ...
require(to != msg.sender, "ERC721: approve to caller"); _operatorApprovals[msg.sender][to] = approved; emit ApprovalForAll(msg.sender, to, approved);
* * @dev Sets or unsets the approval of a given operator * An operator is allowed to transfer all tokens of the sender on their behalf. * @param to operator address to set the approval * @param approved representing the status of the approval to be set
85146
ERC721
isApprovedForAll
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` ...
return _operatorApprovals[owner][operator];
* * @dev Tells whether an operator is approved by a given owner. * @param owner owner address which you want to query the approval of * @param operator operator address which you want to query the approval of * @return bool whether the given operator is approved by the given owner
85146
ERC721
transferFrom
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` ...
//solhint-disable-next-line max-line-length require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721: transfer caller is not owner nor approved"); _transferFrom(from, to, tokenId);
* * @dev Transfers the ownership of a given token ID to another address. * Usage of this method is discouraged, use `safeTransferFrom` whenever possible. * Requires the msg.sender to be the owner, approved, or operator. * @param from current owner of the token * @param to address to receiv...
85146
ERC721
safeTransferFrom
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` ...
safeTransferFrom(from, to, tokenId, "");
* * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`;...
85146
ERC721
safeTransferFrom
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` ...
transferFrom(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
* * @dev Safely transfers the ownership of a given token ID to another address * If the target address is a contract, it must implement `onERC721Received`, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`;...
85146
ERC721
_exists
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` ...
address owner = _tokenOwner[tokenId]; return owner != address(0);
* * @dev Returns whether the specified token exists. * @param tokenId uint256 ID of the token to query the existence of * @return bool whether the token exists
85146
ERC721
_isApprovedOrOwner
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` ...
require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
* * @dev Returns whether the given spender can transfer a given token ID. * @param spender address of the spender to query * @param tokenId uint256 ID of the token to be transferred * @return bool whether the msg.sender is approved for the given token ID, * is an operator of the owner, or ...
85146
ERC721
_mint
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` ...
require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _tokenOwner[tokenId] = to; _ownedTokensCount[to].increment(); emit Transfer(address(0), to, tokenId);
* * @dev Internal function to mint a new token. * Reverts if the given token ID already exists. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted
85146
ERC721
_burn
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` ...
require(ownerOf(tokenId) == owner, "ERC721: burn of token that is not own"); _clearApproval(tokenId); _ownedTokensCount[owner].decrement(); _tokenOwner[tokenId] = address(0); emit Transfer(owner, address(0), tokenId);
* * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * Deprecated, use _burn(uint256) instead. * @param owner owner of the token to burn * @param tokenId uint256 ID of the token being burned
85146
ERC721
_burn
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` ...
_burn(ownerOf(tokenId), tokenId);
* * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * @param tokenId uint256 ID of the token being burned
85146
ERC721
_transferFrom
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` ...
require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _clearApproval(tokenId); _ownedTokensCount[from].decrement(); _ownedTokensCount[to].increment(); _tokenOwner[tok...
* * @dev Internal function to transfer ownership of a given token ID to another address. * As opposed to transferFrom, this imposes no restrictions on msg.sender. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId ui...
85146
ERC721
_checkOnERC721Received
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` ...
if (!to.isContract()) { return true; } bytes4 retval = IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data); return (retval == _ERC721_RECEIVED);
* * @dev Internal function to invoke `onERC721Received` on a target address. * The call is not executed if the target address is not a contract. * * This function is deprecated. * @param from address representing the previous owner of the given token ID * @param to target address tha...
85146
ERC721
_clearApproval
contract ERC721 is ERC165, IERC721 { using SafeMath for uint256; using Address for address; using Counters for Counters.Counter; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` ...
if (_tokenApprovals[tokenId] != address(0)) { _tokenApprovals[tokenId] = address(0); }
* * @dev Private function to clear current approval of a given token ID. * @param tokenId uint256 ID of the token to be transferred
85146
ERC721Burnable
burn
contract ERC721Burnable is ERC721 { /** * @dev Burns a specific ERC721 token. * @param tokenId uint256 id of the ERC721 token to be burned. */ function burn(uint256 tokenId) public {<FILL_FUNCTION_BODY>} }
//solhint-disable-next-line max-line-length require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId);
* * @dev Burns a specific ERC721 token. * @param tokenId uint256 id of the ERC721 token to be burned.
85146
ERC721Enumerable
null
contract ERC721Enumerable is ERC165, ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => uint256[]) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array wi...
// register the supported interface to conform to ERC721Enumerable via ERC165 _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
* * @dev Constructor function.
85146
ERC721Enumerable
tokenOfOwnerByIndex
contract ERC721Enumerable is ERC165, ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => uint256[]) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array wi...
require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index];
* * @dev Gets the token ID at a given index of the tokens list of the requested owner. * @param owner address owning the tokens list to be accessed * @param index uint256 representing the index to be accessed of the requested tokens list * @return uint256 token ID at the given index of the token...
85146
ERC721Enumerable
totalSupply
contract ERC721Enumerable is ERC165, ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => uint256[]) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array wi...
return _allTokens.length;
* * @dev Gets the total amount of tokens stored by the contract. * @return uint256 representing the total amount of tokens
85146
ERC721Enumerable
tokenByIndex
contract ERC721Enumerable is ERC165, ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => uint256[]) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array wi...
require(index < totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index];
* * @dev Gets the token ID at a given index of all the tokens in this contract * Reverts if the index is greater or equal to the total number of tokens. * @param index uint256 representing the index to be accessed of the tokens list * @return uint256 token ID at the given index of the tokens lis...
85146
ERC721Enumerable
_transferFrom
contract ERC721Enumerable is ERC165, ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => uint256[]) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array wi...
super._transferFrom(from, to, tokenId); _removeTokenFromOwnerEnumeration(from, tokenId); _addTokenToOwnerEnumeration(to, tokenId);
* * @dev Internal function to transfer ownership of a given token ID to another address. * As opposed to transferFrom, this imposes no restrictions on msg.sender. * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId ui...
85146
ERC721Enumerable
_mint
contract ERC721Enumerable is ERC165, ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => uint256[]) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array wi...
super._mint(to, tokenId); _addTokenToOwnerEnumeration(to, tokenId); _addTokenToAllTokensEnumeration(tokenId);
* * @dev Internal function to mint a new token. * Reverts if the given token ID already exists. * @param to address the beneficiary that will own the minted token * @param tokenId uint256 ID of the token to be minted
85146
ERC721Enumerable
_burn
contract ERC721Enumerable is ERC165, ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => uint256[]) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array wi...
super._burn(owner, tokenId); _removeTokenFromOwnerEnumeration(owner, tokenId); // Since tokenId will be deleted, we can clear its slot in _ownedTokensIndex to trigger a gas refund _ownedTokensIndex[tokenId] = 0; _removeTokenFromAllTokensEnumeration(tokenId);
* * @dev Internal function to burn a specific token. * Reverts if the token does not exist. * Deprecated, use _burn(uint256) instead. * @param owner owner of the token to burn * @param tokenId uint256 ID of the token being burned