Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
MetadataResolver
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/access/AccessControl.sol"; import "./adapters/MetadataAdapter.sol"; import "../MushroomLib.sol"; /* A hub of adapters managing lifespan metadata for arbitrary NFTs Each adapter has it's own custom logic for that NFT Lifespan modification requesters have rights to manage lifespan metadata of NFTs via the adapters Admin(s) can manage the set of resolvers */ contract MetadataResolver is AccessControlUpgradeSafe { using MushroomLib for MushroomLib.MushroomData; using MushroomLib for MushroomLib.MushroomType; mapping(address => address) public metadataAdapters; modifier onlyAdmin() { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "onlyAdmin"); _; } modifier onlyLifespanModifier() { require(hasRole(LIFESPAN_MODIFY_REQUEST_ROLE, msg.sender), "onlyLifespanModifier"); _; } bytes32 public constant LIFESPAN_MODIFY_REQUEST_ROLE = keccak256("LIFESPAN_MODIFY_REQUEST_ROLE"); event ResolverSet(address nft, address resolver); modifier onlyWithMetadataAdapter(address nftContract) { require(metadataAdapters[nftContract] != address(0), "MetadataRegistry: No resolver set for nft"); _; } function hasMetadataAdapter(address nftContract) external view returns (bool) { return metadataAdapters[nftContract] != address(0); } function getMetadataAdapter(address nftContract) external view returns (address) { return metadataAdapters[nftContract]; } function isStakeable(address nftContract, uint256 nftIndex) external view returns (bool) { if (metadataAdapters[nftContract] == address(0)) { return false; } MetadataAdapter resolver = MetadataAdapter(metadataAdapters[nftContract]); return resolver.isStakeable(nftIndex); } function initialize(address initialLifespanModifier_) public initializer { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(LIFESPAN_MODIFY_REQUEST_ROLE, initialLifespanModifier_); } function getMushroomData( address nftContract, uint256 nftIndex, bytes calldata data ) external view onlyWithMetadataAdapter(nftContract) returns (MushroomLib.MushroomData memory) { MetadataAdapter resolver = MetadataAdapter(metadataAdapters[nftContract]); MushroomLib.MushroomData memory mushroomData = resolver.getMushroomData(nftIndex, data); return mushroomData; } function isBurnable(address nftContract, uint256 nftIndex) external view onlyWithMetadataAdapter(nftContract) returns (bool) { MetadataAdapter resolver = MetadataAdapter(metadataAdapters[nftContract]); return resolver.isBurnable(nftIndex); } function setMushroomLifespan( address nftContract, uint256 nftIndex, uint256 lifespan, bytes calldata data ) external onlyWithMetadataAdapter(nftContract) onlyLifespanModifier { MetadataAdapter resolver = MetadataAdapter(metadataAdapters[nftContract]); resolver.setMushroomLifespan(nftIndex, lifespan, data); } function setResolver(address nftContract, address resolver) public onlyAdmin { metadataAdapters[nftContract] = resolver; emit ResolverSet(nftContract, resolver); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts-ethereum-package/contracts/access/Ownable.sol"; /* Approve and Ban Contracts to interact with pools. (All contracts are approved by default, unless banned) */ contract BannedContractList is Initializable, OwnableUpgradeSafe { mapping(address => bool) banned; function initialize() public initializer { __Ownable_init(); } function isApproved(address toCheck) external view returns (bool) { return !banned[toCheck]; } function isBanned(address toCheck) external view returns (bool) { return banned[toCheck]; } function approveContract(address toApprove) external onlyOwner { banned[toApprove] = false; } function banContract(address toBan) external onlyOwner { banned[toBan] = true; } }
pragma solidity ^0.6.0; import "../GSN/Context.sol"; import "../Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract OwnableUpgradeSafe is Initializable, ContextUpgradeSafe { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @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 the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } uint256[49] private __gap; }
pragma solidity ^0.6.0; import "../Initializable.sol"; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract ContextUpgradeSafe is Initializable { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } uint256[50] private __gap; }
pragma solidity >=0.4.24 <0.7.0; /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer functions must be manually * invoked. This applies both to deploying an Initializable contract, as well * as extending an Initializable contract via inheritance. * WARNING: When used with inheritance, manual care must be taken to not invoke * a parent initializer twice, or ensure that all initializers are idempotent, * because this is not dealt with automatically as with constructors. */ contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private initializing; /** * @dev Modifier to use in the initializer function of a contract. */ modifier initializer() { require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized"); bool isTopLevelCall = !initializing; if (isTopLevelCall) { initializing = true; initialized = true; } _; if (isTopLevelCall) { initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "./BannedContractList.sol"; /* Prevent smart contracts from calling functions unless approved by the specified whitelist. */ contract Defensible { // Only smart contracts will be affected by this modifier modifier defend(BannedContractList bannedContractList) { require( (msg.sender == tx.origin) || bannedContractList.isApproved(msg.sender), "This smart contract has not been approved" ); _; } }
// SPDX-License-Identifier: MIT /* - Stake up to X mushrooms per user (dao can change) - Reward mushroom yield rate for lifespan - When dead, burn mushroom erc721 - Distribute 5% of ENOKI rewards to Chefs */ pragma solidity ^0.6.0; pragma experimental ABIEncoderV2; // import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/access/Ownable.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/utils/ReentrancyGuard.sol"; import "./TokenPool.sol"; import "./Defensible.sol"; import "./MushroomNFT.sol"; import "./MushroomLib.sol"; import "./metadata/MetadataResolver.sol"; /** * @title Enoki Geyser * @dev A smart-contract based mechanism to distribute tokens over time, inspired loosely by * Compound and Uniswap. * * Distribution tokens are added to a locked pool in the contract and become unlocked over time * according to a once-configurable unlock schedule. Once unlocked, they are available to be * claimed by users. * * A user may deposit tokens to accrue ownership share over the unlocked pool. This owner share * is a function of the number of tokens deposited as well as the length of time deposited. * Specifically, a user's share of the currently-unlocked pool equals their "deposit-seconds" * divided by the global "deposit-seconds". This aligns the new token distribution with long * term supporters of the project, addressing one of the major drawbacks of simple airdrops. * * More background and motivation available at: * https://github.com/ampleforth/RFCs/blob/master/RFCs/rfc-1.md */ contract EnokiGeyser is Initializable, OwnableUpgradeSafe, AccessControlUpgradeSafe, ReentrancyGuardUpgradeSafe, Defensible { using SafeMath for uint256; using MushroomLib for MushroomLib.MushroomData; using MushroomLib for MushroomLib.MushroomType; event Staked(address indexed user, address nftContract, uint256 nftId, uint256 total, bytes data); event Unstaked(address indexed user, address nftContract, uint256 nftId, uint256 total, bytes data); event TokensClaimed(address indexed user, uint256 amount, uint256 userReward, uint256 devReward); event TokensLocked(uint256 amount, uint256 total); event TokensLockedAirdrop(address airdrop, uint256 amount, uint256 total); event LifespanUsed(address nftContract, uint256 nftIndex, uint256 lifespanUsed, uint256 lifespan); event NewLifespan(address nftContract, uint256 nftIndex, uint256 lifespan); // amount: Unlocked tokens, total: Total locked tokens event TokensUnlocked(uint256 amount, uint256 total); event MaxStakesPerAddressSet(uint256 maxStakesPerAddress); event MetadataResolverSet(address metadataResolver); event BurnedMushroom(address nftContract, uint256 nftIndex); TokenPool public _unlockedPool; TokenPool public _lockedPool; MetadataResolver public metadataResolver; // // Time-bonus params // uint256 public constant BONUS_DECIMALS = 2; uint256 public startBonus = 0; uint256 public bonusPeriodSec = 0; uint256 public maxStakesPerAddress = 0; // // Global accounting state // uint256 public totalLockedShares = 0; uint256 public totalStakingShares = 0; uint256 public totalStrengthStaked = 0; uint256 private _totalStakingShareSeconds = 0; uint256 private _lastAccountingTimestampSec = now; uint256 private _maxUnlockSchedules = 0; uint256 private _initialSharesPerToken = 0; // // Dev reward state // uint256 public constant MAX_PERCENTAGE = 100; uint256 public devRewardPercentage = 0; //0% - 100% address public devRewardAddress; address public admin; BannedContractList public bannedContractList; // // User accounting state // // Represents a single stake for a user. A user may have multiple. struct Stake { address nftContract; uint256 nftIndex; uint256 strength; uint256 stakedAt; } // Caches aggregated values from the User->Stake[] map to save computation. // If lastAccountingTimestampSec is 0, there's no entry for that user. struct UserTotals { uint256 userStrengthStaked; uint256 stakingShareSeconds; uint256 lastAccountingTimestampSec; } // Aggregated staking values per user mapping(address => UserTotals) private _userTotals; // The collection of stakes for each user. Ordered by timestamp, earliest to latest. mapping(address => Stake[]) private _userStakes; // // Locked/Unlocked Accounting state // struct UnlockSchedule { uint256 initialLockedShares; uint256 unlockedShares; uint256 lastUnlockTimestampSec; uint256 endAtSec; uint256 durationSec; } UnlockSchedule[] public unlockSchedules; bool public initializeComplete; uint256 public constant SECONDS_PER_WEEK = 604800; uint256 public usedAirdropPool; uint256 public maxAirdropPool; address internal constant INITIALIZER_ADDRESS = 0xe9673e2806305557Daa67E3207c123Af9F95F9d2; IERC20 public enokiToken; uint256 public stakingEnabledTime; /** * @param enokiToken_ The token users receive as they unstake. * @param maxStakesPerAddress_ Maximum number of NFTs stakeable by a given account. * @param devRewardAddress_ Recipient address of dev rewards. * @param devRewardPercentage_ Pecentage of rewards claimed to be distributed for dev address. */ function initialize( IERC20 enokiToken_, uint256 maxStakesPerAddress_, address devRewardAddress_, uint256 devRewardPercentage_, address bannedContractList_, uint256 stakingEnabledTime_, uint256 maxAirdropPool_, address resolver_ ) public { require(msg.sender == INITIALIZER_ADDRESS, "Only deployer can reinitialize"); require(admin == address(0), "Admin has already been initialized"); require(initializeComplete == false, "Initialization already complete"); // The dev reward must be some fraction of the max. (i.e. <= 100%) require(devRewardPercentage_ <= MAX_PERCENTAGE, "EnokiGeyser: dev reward too high"); enokiToken = enokiToken_; maxStakesPerAddress = maxStakesPerAddress_; emit MaxStakesPerAddressSet(maxStakesPerAddress); devRewardPercentage = devRewardPercentage_; devRewardAddress = devRewardAddress_; stakingEnabledTime = stakingEnabledTime_; maxAirdropPool = maxAirdropPool_; metadataResolver = MetadataResolver(resolver_); emit MetadataResolverSet(address(metadataResolver)); _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); bannedContractList = BannedContractList(bannedContractList_); initializeComplete = true; } modifier onlyAdmin() { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "EnokiGeyser: Only Admin"); _; } /* ========== ADMIN FUNCTIONALITY ========== */ // Only effects future stakes function setMaxStakesPerAddress(uint256 maxStakes) public onlyAdmin { maxStakesPerAddress = maxStakes; emit MaxStakesPerAddressSet(maxStakesPerAddress); } function setMetadataResolver(address resolver_) public onlyAdmin { metadataResolver = MetadataResolver(resolver_); emit MetadataResolverSet(address(metadataResolver)); } /** * @return The token users receive as they unstake. */ function getDistributionToken() public view returns (IERC20) { return enokiToken; } function getNumStakes(address user) external view returns (uint256) { return _userStakes[user].length; } function getStakes(address user) external view returns (Stake[] memory) { uint256 numStakes = _userStakes[user].length; Stake[] memory stakes = new Stake[](numStakes); for (uint256 i = 0; i < _userStakes[user].length; i++) { stakes[i] = _userStakes[user][i]; } return stakes; } function getStake(address user, uint256 stakeIndex) external view returns (Stake memory stake) { Stake storage _userStake = _userStakes[user][stakeIndex]; stake = _userStake; } /** * @dev Transfers amount of deposit tokens from the user. * @param data Not used. */ function stake( address nftContract, uint256 nftIndex, bytes calldata data ) external defend(bannedContractList) { require(now > stakingEnabledTime, "staking-too-early"); require(metadataResolver.isStakeable(nftContract, nftIndex), "EnokiGeyser: nft not stakeable"); _stakeFor(msg.sender, msg.sender, nftContract, nftIndex); } // /** // * @dev Transfers amount of deposit tokens from the user. // * @param data Not used. // */ // function stakeBulk( // address[] memory nftContracts, // uint256[] memory nftIndicies, // bytes calldata data // ) external defend(bannedContractList) { // require(now > stakingEnabledTime, "staking-too-early"); // require(nftContracts.length == nftIndicies.length, "args length mismatch"); // for (uint256 i = 0; i < nftContracts.length; i++) { // require(metadataResolver.isStakeable(nftContracts[i], nftIndicies[i]), "EnokiGeyser: nft not stakeable"); // _stakeFor(msg.sender, msg.sender, nftContracts[i], nftIndicies[i]); // } // } /** * @dev Private implementation of staking methods. * @param staker User address who deposits tokens to stake. * @param beneficiary User address who gains credit for this stake operation. */ function _stakeFor( address staker, address beneficiary, address nftContract, uint256 nftIndex ) private { require(beneficiary != address(0), "EnokiGeyser: beneficiary is zero address"); require(metadataResolver.isStakeable(nftContract, nftIndex), "EnokiGeyser: Nft specified not stakeable"); // Shares is determined by NFT mushroom rate MushroomLib.MushroomData memory metadata = metadataResolver.getMushroomData(nftContract, nftIndex, ""); // 1. User Accounting UserTotals storage totals = _userTotals[beneficiary]; Stake memory newStake = Stake(nftContract, nftIndex, metadata.strength, now); _userStakes[beneficiary].push(newStake); require(_userStakes[beneficiary].length <= maxStakesPerAddress, "EnokiGeyser: Stake would exceed maximum stakes for address"); totals.userStrengthStaked = totals.userStrengthStaked.add(metadata.strength); totalStrengthStaked = totalStrengthStaked.add(metadata.strength); IERC721(nftContract).transferFrom(staker, address(this), nftIndex); emit Staked(beneficiary, nftContract, nftIndex, totalStakedFor(beneficiary), ""); } /** * @dev Unstakes a certain amount of previously deposited tokens. User also receives their * alotted number of distribution tokens. * @param stakes Mushrooms to unstake. * @param data Not used. */ function unstake(uint256[] calldata stakes, bytes calldata data) external returns ( uint256 totalReward, uint256 userReward, uint256 devReward ) { _unstake(stakes); } /** * @dev Unstakes a certain amount of previously deposited tokens. User also receives their * alotted number of distribution tokens. * @param stakes Mushrooms to unstake. */ function _unstake(uint256[] memory stakes) private returns ( uint256 totalReward, uint256 userReward, uint256 devReward ) { // 1. User Accounting UserTotals storage totals = _userTotals[msg.sender]; Stake[] storage accountStakes = _userStakes[msg.sender]; // Redeem from most recent stake and go backwards in time. uint256 rewardAmount = 0; for (uint256 i = 0; i < stakes.length; i++) { Stake storage currentStake = accountStakes[stakes[i]]; MushroomLib.MushroomData memory metadata = metadataResolver.getMushroomData(currentStake.nftContract, currentStake.nftIndex, ""); uint256 lifespanUsed = now.sub(currentStake.stakedAt); bool deadMushroom = false; // Effective lifespan used is capped at mushroom lifespan if (lifespanUsed >= metadata.lifespan) { lifespanUsed = metadata.lifespan; deadMushroom = true; } emit LifespanUsed(currentStake.nftContract, currentStake.nftIndex, lifespanUsed, metadata.lifespan); rewardAmount = computeNewReward(rewardAmount, metadata.strength, lifespanUsed); // Update global aomunt staked totalStrengthStaked = totalStrengthStaked.sub(metadata.strength); totals.userStrengthStaked = totals.userStrengthStaked.sub(metadata.strength); // Burn dead mushrooms, if they can be burnt. Otherwise, they can still be withdrawn with 0 lifespan. if (deadMushroom && metadataResolver.isBurnable(currentStake.nftContract, currentStake.nftIndex)) { MushroomNFT(currentStake.nftContract).burn(currentStake.nftIndex); emit BurnedMushroom(currentStake.nftContract, currentStake.nftIndex); } else { // If still alive, reduce lifespan of mushroom and return to user. If not burnable, return with 0 lifespan. metadataResolver.setMushroomLifespan(currentStake.nftContract, currentStake.nftIndex, metadata.lifespan.sub(lifespanUsed), ""); IERC721(currentStake.nftContract).transferFrom(address(this), msg.sender, currentStake.nftIndex); // TODO: Test MushroomLib.MushroomData memory metadata2 = metadataResolver.getMushroomData(currentStake.nftContract, currentStake.nftIndex, ""); emit NewLifespan(currentStake.nftContract, currentStake.nftIndex, metadata2.lifespan); } accountStakes.pop(); emit Unstaked(msg.sender, currentStake.nftContract, currentStake.nftIndex, totalStakedFor(msg.sender), ""); } // Already set in updateAccounting // _lastAccountingTimestampSec = now; // interactions totalReward= rewardAmount; (userReward, devReward) = computeDevReward(totalReward); if (userReward > 0) { require(enokiToken.transfer(msg.sender, userReward), "EnokiGeyser: transfer to user out of unlocked pool failed"); } if (devReward > 0) { require(enokiToken.transfer(devRewardAddress, devReward), "EnokiGeyser: transfer to dev out of unlocked pool failed"); } emit TokensClaimed(msg.sender, rewardAmount, userReward, devReward); require(totalStakingShares == 0 || totalStaked() > 0, "EnokiGeyser: Error unstaking. Staking shares exist, but no staking tokens do"); } function computeNewReward( uint256 currentReward, uint256 strength, uint256 timeStaked ) private view returns (uint256) { uint256 newReward = strength.mul(timeStaked).div(SECONDS_PER_WEEK); return currentReward.add(newReward); } /** * @dev Determines split of specified reward amount between user and dev. * @param totalReward Amount of reward to split. * @return userReward Reward amounts for user and dev. * @return devReward Reward amounts for user and dev. */ function computeDevReward(uint256 totalReward) public view returns (uint256 userReward, uint256 devReward) { if (devRewardPercentage == 0) { userReward = totalReward; devReward = 0; } else if (devRewardPercentage == MAX_PERCENTAGE) { userReward = 0; devReward = totalReward; } else { devReward = totalReward.mul(devRewardPercentage).div(MAX_PERCENTAGE); userReward = totalReward.sub(devReward); // Extra dust due to truncated rounding goes to user } } /** * @param addr The user to look up staking information for. * @return The number of staking tokens deposited for addr. */ function totalStakedFor(address addr) public view returns (uint256) { return _userTotals[addr].userStrengthStaked; } /** * @return The total number of deposit tokens staked globally, by all users. */ function totalStaked() public view returns (uint256) { return totalStrengthStaked; } /** * @return Total number of locked distribution tokens. */ function totalLocked() public view returns (uint256) { return enokiToken.balanceOf(address(this)); } /** * @dev This funcion allows the contract owner to add more locked distribution tokens, along * with the associated "unlock schedule". These locked tokens immediately begin unlocking * linearly over the duraction of durationSec timeframe. * @param amount Number of distribution tokens to lock. These are transferred from the caller. * @param durationSec Length of time to linear unlock the tokens. */ function lockTokens(uint256 amount, uint256 durationSec) external onlyOwner { require(enokiToken.transferFrom(msg.sender, address(this), amount), "EnokiGeyser: transfer failed"); emit TokensLocked(amount, totalLocked()); } function lockTokensAirdrop(address airdrop, uint256 amount) external onlyAdmin { require(usedAirdropPool.add(amount) <= maxAirdropPool, "Exceeds maximum airdrop tokens"); usedAirdropPool = usedAirdropPool.add(amount); require(enokiToken.transfer(address(airdrop), amount), "EnokiGeyser: transfer into airdrop pool failed"); emit TokensLockedAirdrop(airdrop, amount, totalLocked()); } }
pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
pragma solidity ^0.6.0; import "../utils/EnumerableSet.sol"; import "../utils/Address.sol"; import "../GSN/Context.sol"; import "../Initializable.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, _msgSender())); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. */ abstract contract AccessControlUpgradeSafe is Initializable, ContextUpgradeSafe { function __AccessControl_init() internal initializer { __Context_init_unchained(); __AccessControl_init_unchained(); } function __AccessControl_init_unchained() internal initializer { } using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } uint256[49] private __gap; }
pragma solidity ^0.6.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } }
pragma solidity ^0.6.0; import "../Initializable.sol"; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ contract ReentrancyGuardUpgradeSafe is Initializable { bool private _notEntered; function __ReentrancyGuard_init() internal initializer { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal initializer { // Storing an initial non-zero value makes deployment a bit more // expensive, but in exchange the refund on every call to nonReentrant // will be lower in amount. Since refunds are capped to a percetange of // the total transaction's gas, it is best to keep them low in cases // like this one, to increase the likelihood of the full refund coming // into effect. _notEntered = true; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_notEntered, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _notEntered = false; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _notEntered = true; } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/access/Ownable.sol"; /** * @title A simple holder of tokens. * This is a simple contract to hold tokens. It's useful in the case where a separate contract * needs to hold multiple distinct pools of the same token. */ contract TokenPool is Initializable, OwnableUpgradeSafe { IERC20 public token; function initialize(IERC20 _token) public initializer { __Ownable_init(); token = _token; } function balance() public view returns (uint256) { return token.balanceOf(address(this)); } function transfer(address to, uint256 value) external onlyOwner returns (bool) { return token.transfer(to, value); } function rescueFunds(address tokenToRescue, address to, uint256 amount) external onlyOwner returns (bool) { require(address(token) != tokenToRescue, 'TokenPool: Cannot claim token held by the contract'); return IERC20(tokenToRescue).transfer(to, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts-ethereum-package/contracts/access/Ownable.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/access/AccessControl.sol"; import "./ERC721.sol"; import "./MushroomLib.sol"; /* Minting and burning permissions are managed by the Owner */ contract MushroomNFT is ERC721UpgradeSafe, OwnableUpgradeSafe, AccessControlUpgradeSafe { using MushroomLib for MushroomLib.MushroomData; using MushroomLib for MushroomLib.MushroomType; mapping (uint256 => MushroomLib.MushroomData) public mushroomData; // NFT Id -> Metadata mapping (uint256 => MushroomLib.MushroomType) public mushroomTypes; // Species Id -> Metadata mapping (uint256 => bool) public mushroomTypeExists; // Species Id -> Exists mapping (uint256 => string) public mushroomMetadataUri; // Species Id -> URI bytes32 public constant LIFESPAN_MODIFIER_ROLE = keccak256("LIFESPAN_MODIFIER_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); function initialize() public initializer { __Ownable_init_unchained(); __AccessControl_init_unchained(); __ERC721_init("Enoki Mushrooms", "Enoki Mushrooms"); _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); } /* ========== VIEWS ========== */ // Mushrooms inherit their strength from their species function getMushroomData(uint256 tokenId) public view returns (MushroomLib.MushroomData memory) { MushroomLib.MushroomData memory data = mushroomData[tokenId]; return data; } function getSpecies(uint256 speciesId) public view returns (MushroomLib.MushroomType memory) { return mushroomTypes[speciesId]; } function getRemainingMintableForSpecies(uint256 speciesId) public view returns (uint256) { MushroomLib.MushroomType storage species = mushroomTypes[speciesId]; return species.cap.sub(species.minted); } /// @notice Return token URI for mushroom /// @notice URI is determined by species and can be modifed by the owner function tokenURI(uint256 tokenId) public view override returns (string memory) { MushroomLib.MushroomData storage data = mushroomData[tokenId]; return mushroomMetadataUri[data.species]; } /* ========== ROLE MANAGEMENT ========== */ // TODO: Ensure we can transfer admin role privledges modifier onlyLifespanModifier() { require(hasRole(LIFESPAN_MODIFIER_ROLE, msg.sender), "MushroomNFT: Only approved lifespan modifier"); _; } modifier onlyMinter() { require(hasRole(MINTER_ROLE, msg.sender), "MushroomNFT: Only approved mushroom minter"); _; } /* ========== RESTRICTED FUNCTIONS ========== */ /** * @dev The burner must be the owner of the token, or approved. The EnokiGeyser owns tokens when it burns them. */ function burn(uint256 tokenId) public { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); _clearMushroomData(tokenId); } function mint(address recipient, uint256 tokenId, uint256 speciesId, uint256 lifespan) public onlyMinter { _mintWithMetadata(recipient, tokenId, speciesId, lifespan); } function setMushroomLifespan(uint256 index, uint256 lifespan) public onlyLifespanModifier { mushroomData[index].lifespan = lifespan; } function setSpeciesUri(uint256 speciesId, string memory URI) public onlyOwner { mushroomMetadataUri[speciesId] = URI; } function _mintWithMetadata(address recipient, uint256 tokenId, uint256 speciesId, uint256 lifespan) internal { require(mushroomTypeExists[speciesId], "MushroomNFT: mushroom species specified does not exist"); MushroomLib.MushroomType storage species = mushroomTypes[speciesId]; require(species.minted < species.cap, "MushroomNFT: minting cap reached for species"); species.minted = species.minted.add(1); mushroomData[tokenId] = MushroomLib.MushroomData(speciesId, species.strength, lifespan); _safeMint(recipient, tokenId); } // TODO: We don't really have to do this as a newly minted mushroom will set the data function _clearMushroomData(uint256 tokenId) internal { MushroomLib.MushroomData storage data = mushroomData[tokenId]; MushroomLib.MushroomType storage species = mushroomTypes[data.species]; mushroomData[tokenId].species = 0; mushroomData[tokenId].strength = 0; mushroomData[tokenId].lifespan = 0; species.minted = species.minted.sub(1); } function setMushroomType(uint256 speciesId, MushroomLib.MushroomType memory mType) public onlyOwner { if (!mushroomTypeExists[speciesId]) { mushroomTypeExists[speciesId] = true; } mushroomTypes[speciesId] = mType; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts-ethereum-package/contracts/GSN/Context.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC721/IERC721Metadata.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC721/IERC721Enumerable.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/introspection/ERC165.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/utils/Address.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/utils/EnumerableSet.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/utils/EnumerableMap.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/utils/Strings.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/Initializable.sol"; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721UpgradeSafe is Initializable, ContextUpgradeSafe, ERC165UpgradeSafe, IERC721, IERC721Metadata, IERC721Enumerable { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; // Base URI string private _baseURI; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; function __ERC721_init(string memory name, string memory symbol) internal initializer { __Context_init_unchained(); __ERC165_init_unchained(); __ERC721_init_unchained(name, symbol); } function __ERC721_init_unchained(string memory name, string memory symbol) internal initializer { _name = name; _symbol = symbol; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @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 */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _holderTokens[owner].length(); } /** * @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 */ function ownerOf(uint256 tokenId) public view override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @dev Gets the token name. * @return string representing the token name */ function name() public view override returns (string memory) { return _name; } /** * @dev Gets the token symbol. * @return string representing the token symbol */ function symbol() public view override returns (string memory) { return _symbol; } /** * @dev Returns the URI for a given token ID. May return an empty string. * * If a base URI is set (via {_setBaseURI}), it is added as a prefix to the * token's own URI (via {_setTokenURI}). * * If there is a base URI but no token URI, the token's ID will be used as * its URI when appending it to the base URI. This pattern for autogenerated * token URIs can lead to large gas savings. * * .Examples * |=== * |`_setBaseURI()` |`_setTokenURI()` |`tokenURI()` * | "" * | "" * | "" * | "" * | "token.uri/123" * | "token.uri/123" * | "token.uri/" * | "123" * | "token.uri/123" * | "token.uri/" * | "" * | "token.uri/<tokenId>" * |=== * * Requirements: * * - `tokenId` must exist. */ function tokenURI(uint256 tokenId) public view override virtual returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; // If there is no base URI, return the token URI. if (bytes(_baseURI).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(_baseURI, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(_baseURI, tokenId.toString())); } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view returns (string memory) { return _baseURI; } /** * @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 tokens list owned by the requested address */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev Gets the total amount of tokens stored by the contract. * @return uint256 representing the total amount of tokens */ function totalSupply() public view override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @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 list */ function tokenByIndex(uint256 index) public view override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @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 approved for the given token ID * @param tokenId uint256 ID of the token to be approved */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, 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 */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @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 operator operator address to set the approval * @param approved representing the status of the approval to be set */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @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 */ function isApprovedForAll(address owner, address operator) public view override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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 receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(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 {IERC721Receiver-onERC721Received}, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { 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 {IERC721Receiver-onERC721Received}, * which is called upon a safe transfer, and return the magic value * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise, * the transfer is reverted. * Requires the _msgSender() to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred * @param _data bytes data to send along with a safe transfer check */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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)"))`; otherwise, * the transfer is reverted. * Requires the msg.sender to be the owner, approved, or operator * @param from current owner of the token * @param to address to receive the ownership of the given token ID * @param tokenId uint256 ID of the token to be transferred * @param _data bytes data to send along with a safe transfer check */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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 */ function _exists(uint256 tokenId) internal view returns (bool) { return _tokenOwners.contains(tokenId); } /** * @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 is the owner of the token */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Internal function to safely mint a new token. * Reverts if the given token ID already exists. * 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)"))`; otherwise, * the transfer is reverted. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Internal function to safely mint a new token. * Reverts if the given token ID already exists. * 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)"))`; otherwise, * the transfer is reverted. * @param to The address that will own the minted token * @param tokenId uint256 ID of the token to be minted * @param _data bytes data to send along with a safe transfer check */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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 */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(address(0), to, 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 */ function _burn(uint256 tokenId) internal virtual { address owner = ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _holderTokens[owner].remove(tokenId); _tokenOwners.remove(tokenId); emit Transfer(owner, address(0), 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 uint256 ID of the token to be transferred */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _holderTokens[from].remove(tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(from, to, tokenId); } /** * @dev Internal function to set the token URI for a given token. * * Reverts if the token ID does not exist. * * TIP: If all token IDs share a prefix (for example, if your URIs look like * `https://api.myproject.com/token/<id>`), use {_setBaseURI} to store * it and save gas. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (!to.isContract()) { return true; } // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = to.call(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data )); if (!success) { if (returndata.length > 0) { // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert("ERC721: transfer to non ERC721Receiver implementer"); } } else { bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } } function _approve(address to, uint256 tokenId) private { _tokenApprovals[tokenId] = to; emit Approval(ownerOf(tokenId), to, tokenId); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - when `from` is zero, `tokenId` will be minted for `to`. * - when `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } uint256[41] private __gap; }
pragma solidity ^0.6.2; import "../../introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of NFTs in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the NFT specified by `tokenId`. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * * * Requirements: * - `from`, `to` cannot be zero. * - `tokenId` must be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this * NFT by either {approve} or {setApprovalForAll}. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to * another (`to`). * * Requirements: * - If the caller is not `from`, it must be approved to move this NFT by * either {approve} or {setApprovalForAll}. */ function transferFrom(address from, address to, uint256 tokenId) external; function approve(address to, uint256 tokenId) external; function getApproved(uint256 tokenId) external view returns (address operator); function setApprovalForAll(address operator, bool _approved) external; function isApprovedForAll(address owner, address operator) external view returns (bool); function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; }
pragma solidity ^0.6.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
pragma solidity ^0.6.2; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { function name() external view returns (string memory); function symbol() external view returns (string memory); function tokenURI(uint256 tokenId) external view returns (string memory); }
pragma solidity ^0.6.2; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { function totalSupply() external view returns (uint256); function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); function tokenByIndex(uint256 index) external view returns (uint256); }
pragma solidity ^0.6.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @notice Handle the receipt of an NFT * @dev The ERC721 smart contract calls this function on the recipient * after a {IERC721-safeTransferFrom}. This function MUST return the function selector, * otherwise the caller will revert the transaction. The selector to be * returned can be obtained as `this.onERC721Received.selector`. This * function MAY throw to revert and reject the transfer. * Note: the ERC721 contract address is always the message sender. * @param operator The address which called `safeTransferFrom` function * @param from The address which previously owned the token * @param tokenId The NFT identifier which is being transferred * @param data Additional data with no specified format * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); }
pragma solidity ^0.6.0; import "./IERC165.sol"; import "../Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ contract ERC165UpgradeSafe is Initializable, 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 _supportedInterfaces; function __ERC165_init() internal initializer { __ERC165_init_unchained(); } function __ERC165_init_unchained() internal initializer { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @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: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } uint256[49] private __gap; }
pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
pragma solidity ^0.6.0; /** * @dev Library for managing an enumerable variant of Solidity's * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] * type. * * Maps have the following properties: * * - Entries are added, removed, and checked for existence in constant time * (O(1)). * - Entries are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableMap for EnumerableMap.UintToAddressMap; * * // Declare a set state variable * EnumerableMap.UintToAddressMap private myMap; * } * ``` * * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are * supported. */ library EnumerableMap { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Map type with // bytes32 keys and values. // The Map implementation uses private functions, and user-facing // implementations (such as Uint256ToAddressMap) are just wrappers around // the underlying Map. // This means that we can only create new EnumerableMaps for types that fit // in bytes32. struct MapEntry { bytes32 _key; bytes32 _value; } struct Map { // Storage of map keys and values MapEntry[] _entries; // Position of the entry defined by a key in the `entries` array, plus 1 // because index 0 means a key is not in the map. mapping (bytes32 => uint256) _indexes; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) { // Equivalent to !contains(map, key) map._entries.push(MapEntry({ _key: key, _value: value })); // The entry is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value map._indexes[key] = map._entries.length; return true; } else { map._entries[keyIndex - 1]._value = value; return false; } } /** * @dev Removes a key-value pair from a map. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function _remove(Map storage map, bytes32 key) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex != 0) { // Equivalent to contains(map, key) // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one // in the array, and then remove the last entry (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = keyIndex - 1; uint256 lastIndex = map._entries.length - 1; // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. MapEntry storage lastEntry = map._entries[lastIndex]; // Move the last entry to the index where the entry to delete is map._entries[toDeleteIndex] = lastEntry; // Update the index for the moved entry map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved entry was stored map._entries.pop(); // Delete the index for the deleted slot delete map._indexes[key]; return true; } else { return false; } } /** * @dev Returns true if the key is in the map. O(1). */ function _contains(Map storage map, bytes32 key) private view returns (bool) { return map._indexes[key] != 0; } /** * @dev Returns the number of key-value pairs in the map. O(1). */ function _length(Map storage map) private view returns (uint256) { return map._entries.length; } /** * @dev Returns the key-value pair stored at position `index` in the map. O(1). * * Note that there are no guarantees on the ordering of entries inside the * array, and it may change when more entries are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) { require(map._entries.length > index, "EnumerableMap: index out of bounds"); MapEntry storage entry = map._entries[index]; return (entry._key, entry._value); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function _get(Map storage map, bytes32 key) private view returns (bytes32) { return _get(map, key, "EnumerableMap: nonexistent key"); } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. */ function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } // UintToAddressMap struct UintToAddressMap { Map _inner; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) { return _set(map._inner, bytes32(key), bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) { return _remove(map._inner, bytes32(key)); } /** * @dev Returns true if the key is in the map. O(1). */ function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) { return _contains(map._inner, bytes32(key)); } /** * @dev Returns the number of elements in the map. O(1). */ function length(UintToAddressMap storage map) internal view returns (uint256) { return _length(map._inner); } /** * @dev Returns the element stored at position `index` in the set. O(1). * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) { (bytes32 key, bytes32 value) = _at(map._inner, index); return (uint256(key), address(uint256(value))); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function get(UintToAddressMap storage map, uint256 key) internal view returns (address) { return address(uint256(_get(map._inner, bytes32(key)))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. */ function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) { return address(uint256(_get(map._inner, bytes32(key), errorMessage))); } }
pragma solidity ^0.6.0; /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = byte(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; library MushroomLib { struct MushroomData { uint256 species; uint256 strength; uint256 lifespan; } struct MushroomType { uint256 id; uint256 strength; uint256 minLifespan; uint256 maxLifespan; uint256 minted; uint256 cap; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; pragma experimental ABIEncoderV2; import "../../MushroomLib.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/access/AccessControl.sol"; /* Reads mushroom NFT metadata for a given NFT contract Also forwards requests from the MetadataResolver to set lifespan */ abstract contract MetadataAdapter is AccessControlUpgradeSafe { using MushroomLib for MushroomLib.MushroomData; using MushroomLib for MushroomLib.MushroomType; bytes32 public constant LIFESPAN_MODIFY_REQUEST_ROLE = keccak256("LIFESPAN_MODIFY_REQUEST_ROLE"); modifier onlyLifespanModifier() { require(hasRole(LIFESPAN_MODIFY_REQUEST_ROLE, msg.sender), "onlyLifespanModifier"); _; } function getMushroomData(uint256 index, bytes calldata data) external virtual view returns (MushroomLib.MushroomData memory); function setMushroomLifespan(uint256 index, uint256 lifespan, bytes calldata data) external virtual; function isBurnable(uint256 index) external view virtual returns (bool); function isStakeable(uint256 index) external view virtual returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts/math/SafeMath.sol"; /** * @title EthVesting * @dev A eth holder contract that can release its eth balance gradually like a * typical vesting scheme, with a cliff and vesting period. */ contract EthVesting { // The vesting schedule is time-based (i.e. using block timestamps as opposed to e.g. block numbers), and is // therefore sensitive to timestamp manipulation (which is something miners can do, to a certain degree). Therefore, // it is recommended to avoid using short time durations (less than a minute). Typical vesting schemes, with a // cliff period of a year and a duration of four years, are safe to use. // solhint-disable not-rely-on-time using SafeMath for uint256; event EthReleased(uint256 amount); event EthReleasedBackup(uint256 amount); event PaymentReceived(address from, uint256 amount); // beneficiary of tokens after they are released address payable private _beneficiary; address payable private _backupBeneficiary; // Durations and timestamps are expressed in UNIX time, the same units as block.timestamp. uint256 private _cliff; uint256 private _start; uint256 private _duration; uint256 private _backupReleaseGracePeriod; uint256 private _released; /** * @dev Creates a vesting contract that vests its balance of any ERC20 token to the * beneficiary, gradually in a linear fashion until start + duration. By then all * of the balance will have vested. * @param beneficiary address of the beneficiary to whom vested tokens are transferred * @param cliffDuration duration in seconds of the cliff in which tokens will begin to vest * @param start the time (as Unix time) at which point vesting starts * @param duration duration in seconds of the period in which the tokens will vest * @param backupReleaseGracePeriod the period after the duration in completed before the backup beneficiary can withdraw */ constructor (address payable beneficiary, address payable backupBeneficiary, uint256 start, uint256 cliffDuration, uint256 duration, uint256 backupReleaseGracePeriod) public { require(beneficiary != address(0), "EthVesting: beneficiary is the zero address"); // solhint-disable-next-line max-line-length require(cliffDuration <= duration, "EthVesting: cliff is longer than duration"); require(duration > 0, "EthVesting: duration is 0"); // solhint-disable-next-line max-line-length require(start.add(duration) > block.timestamp, "EthVesting: final time is before current time"); _beneficiary = beneficiary; _backupBeneficiary = backupBeneficiary; _duration = duration; _cliff = start.add(cliffDuration); _start = start; _backupReleaseGracePeriod = backupReleaseGracePeriod; } /** * @return the beneficiary of the ether. */ function beneficiary() public view returns (address) { return _beneficiary; } /** * @return the backup beneficiary of the ether. */ function backupBeneficiary() public view returns (address) { return _backupBeneficiary; } /** * @return the period after the duration in completed before the backup beneficiary can withdraw. */ function backupReleaseGracePeriod() public view returns (uint256) { return _backupReleaseGracePeriod; } /** * @return the cliff time of the eth vesting. */ function cliff() public view returns (uint256) { return _cliff; } /** * @return the start time of the eth vesting. */ function start() public view returns (uint256) { return _start; } /** * @return the duration of the eth vesting. */ function duration() public view returns (uint256) { return _duration; } /** * @return the amount of the token released. */ function released() public view returns (uint256) { return _released; } /** * @notice Transfers vested tokens to beneficiary. */ function release() public { uint256 unreleased = _releasableAmount(); require(unreleased > 0, "EthVesting: no eth is due"); _released = _released.add(unreleased); _beneficiary.transfer(unreleased); emit EthReleased(unreleased); } /** * @dev Calculates the amount that has already vested but hasn't been released yet. */ function _releasableAmount() private view returns (uint256) { return _vestedAmount().sub(_released); } /** * @dev Calculates the amount that has already vested. */ function _vestedAmount() private view returns (uint256) { uint256 currentBalance = address(this).balance; uint256 totalBalance = currentBalance.add(_released); if (block.timestamp < _cliff) { return 0; } else if (block.timestamp >= _start.add(_duration)) { return totalBalance; } else { return totalBalance.mul(block.timestamp.sub(_start)).div(_duration); } } /** * @dev After the vesting period is complete, allows for withdrawal by backup beneficiary if funds are unclaimed after the post-duration grace period */ function backupRelease() public { require(block.timestamp >= _start.add(_duration).add(_backupReleaseGracePeriod)); _backupBeneficiary.transfer(address(this).balance); emit EthReleasedBackup(address(this).balance); } // Allow Recieve Ether receive () external payable virtual { emit PaymentReceived(msg.sender, msg.value); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "./EnokiGeyser.sol"; contract GeyserEscrow is Ownable { EnokiGeyser public geyser; constructor(EnokiGeyser geyser_) public { geyser = geyser_; } function lockTokens( uint256 amount, uint256 durationSec ) external onlyOwner { IERC20 distributionToken = geyser.getDistributionToken(); distributionToken.approve(address(geyser), amount); geyser.lockTokens(amount, durationSec); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../GSN/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @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 the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; interface IMiniMe { /* ========== STANDARD ERC20 ========== */ function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); /* ========== MINIME EXTENSIONS ========== */ function balanceOfAt(address account, uint256 blockNumber) external view returns (uint256); function totalSupplyAt(uint256 blockNumber) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; interface IMission { function sendSpores(address recipient, uint256 amount) external; function approvePool(address pool) external; function revokePool(address pool) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; pragma experimental ABIEncoderV2; interface IMushroomFactory { function costPerMushroom() external returns (uint256); function getRemainingMintableForMySpecies(uint256 numMushrooms) external view returns (uint256); function growMushrooms(address recipient, uint256 numMushrooms) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; pragma experimental ABIEncoderV2; import "../MushroomLib.sol"; abstract contract IMushroomMetadata { using MushroomLib for MushroomLib.MushroomData; using MushroomLib for MushroomLib.MushroomType; function hasMetadataAdapter(address nftContract) external virtual view returns (bool); function getMushroomData( address nftContract, uint256 nftIndex, bytes calldata data ) external virtual view returns (MushroomLib.MushroomData memory); function setMushroomLifespan( address nftContract, uint256 nftIndex, uint256 lifespan, bytes calldata data ) external virtual; function setResolver(address nftContract, address resolver) public virtual; }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; interface IRateVoteable { function changeRate(uint256 percentage) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; interface ISporeToken { /* ========== STANDARD ERC20 ========== */ function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); /* ========== EXTENSIONS ========== */ function burn(uint256 amount) external; function mint(address to, uint256 amount) external; function addInitialLiquidityTransferRights(address account) external; function enableTransfers() external; function addMinter(address account) external; function removeMinter(address account) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/IERC20.sol"; abstract contract ITokenPool { function token() external virtual view returns (IERC20); function balance() external virtual view returns (uint256); function transfer(address to, uint256 value) external virtual returns (bool); function rescueFunds(address tokenToRescue, address to, uint256 amount) external virtual returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC721/IERC721.sol"; // import "@openzeppelin/contracts-ethereum-package/contracts/access/AccessControl.sol"; import "../../MushroomNFT.sol"; import "../../MushroomLib.sol"; import "./MetadataAdapter.sol"; /* Reads mushroom NFT metadata directly from the Mushroom NFT contract Also forwards requests from the MetadataResolver to a given forwarder, that cannot be modified */ contract MushroomAdapter is Initializable, MetadataAdapter { using MushroomLib for MushroomLib.MushroomData; using MushroomLib for MushroomLib.MushroomType; MushroomNFT public mushroomNft; function initialize(address nftContract_, address forwardActionsFrom_) public initializer { mushroomNft = MushroomNFT(nftContract_); _setupRole(LIFESPAN_MODIFY_REQUEST_ROLE, forwardActionsFrom_); } function getMushroomData(uint256 index, bytes calldata data) external override view returns (MushroomLib.MushroomData memory) { MushroomLib.MushroomData memory mData = mushroomNft.getMushroomData(index); return mData; } // Mushrooms can always be staked function isStakeable(uint256 nftIndex) external override view returns (bool) { return true; } // All Mushrooms are burnable function isBurnable(uint256 index) external override view returns (bool) { return true; } function setMushroomLifespan( uint256 index, uint256 lifespan, bytes calldata data ) external override onlyLifespanModifier { mushroomNft.setMushroomLifespan(index, lifespan); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts-ethereum-package/contracts/access/Ownable.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /* A pool of spores that can be takens by Spore pools according to their spore rate */ contract Mission is Initializable, OwnableUpgradeSafe { IERC20 public sporeToken; mapping (address => bool) public approved; event SporesHarvested(address pool, uint256 amount); modifier onlyApprovedPool() { require(approved[msg.sender], "Mission: Only approved pools"); _; } function initialize(IERC20 sporeToken_) public initializer { __Ownable_init(); sporeToken = sporeToken_; } function sendSpores(address recipient, uint256 amount) public onlyApprovedPool { sporeToken.transfer(recipient, amount); emit SporesHarvested(msg.sender, amount); } function approvePool(address pool) public onlyOwner { approved[pool] = true; } function revokePool(address pool) public onlyOwner { approved[pool] = false; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts-ethereum-package/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/access/Ownable.sol"; import "./MushroomNFT.sol"; import "./MushroomLib.sol"; /* MushroomFactories manage the mushroom generation logic for pools Each pool will have it's own factory to generate mushrooms according to its' powers. The mushroomFactory should be administered by the pool, which grants the ability to grow mushrooms */ contract MushroomFactory is Initializable, OwnableUpgradeSafe { using MushroomLib for MushroomLib.MushroomData; using MushroomLib for MushroomLib.MushroomType; using SafeMath for uint256; event MushroomGrown(address recipient, uint256 id, uint256 species, uint256 lifespan); IERC20 public sporeToken; MushroomNFT public mushroomNft; uint256 public costPerMushroom; uint256 public mySpecies; uint256 public spawnCount; function initialize( IERC20 sporeToken_, MushroomNFT mushroomNft_, address sporePool_, uint256 costPerMushroom_, uint256 mySpecies_ ) public initializer { __Ownable_init(); sporeToken = sporeToken_; mushroomNft = mushroomNft_; costPerMushroom = costPerMushroom_; mySpecies = mySpecies_; transferOwnership(sporePool_); } /* Each mushroom will have a randomly generated lifespan within it's range. To prevent mushrooms harvested at the same block from having the same properties, a spawnCount seed is added to the block timestamp before hashing the timestamp to generate the lifespan for each individual mushroom. Note that block.timestamp is somewhat manipulatable by Miners. If a Miner was a massive ENOKI fan and only harvested when the mined a block they could give themselves mushrooms with longer lifespan than the average. However, the lifespan is still constained by the max lifespan. */ function _generateMushroomLifespan(uint256 minLifespan, uint256 maxLifespan) internal returns (uint256) { uint256 range = maxLifespan.sub(minLifespan); uint256 fromMin = uint256(keccak256(abi.encodePacked(block.timestamp.add(spawnCount)))) % range; spawnCount = spawnCount.add(1); return minLifespan.add(fromMin); } function getRemainingMintableForMySpecies() public view returns (uint256) { return mushroomNft.getRemainingMintableForSpecies(mySpecies); } // Each mushroom costs 1/10th of the spore rate in spores. function growMushrooms(address recipient, uint256 numMushrooms) public onlyOwner { MushroomLib.MushroomType memory species = mushroomNft.getSpecies(mySpecies); require(getRemainingMintableForMySpecies() >= numMushrooms, "MushroomFactory: Mushrooms to grow exceeds species cap"); for (uint256 i = 0; i < numMushrooms; i++) { uint256 nextId = mushroomNft.totalSupply().add(1); uint256 lifespan = _generateMushroomLifespan(species.minLifespan, species.maxLifespan); mushroomNft.mint(recipient, nextId, mySpecies, lifespan); emit MushroomGrown(recipient, nextId, mySpecies, lifespan); } } }
pragma solidity ^0.6.0; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts/GSN/Context.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. */ contract PaymentSplitter is Context { using SafeMath for uint256; event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor (address[] memory payees, uint256[] memory shares) public payable { // solhint-disable-next-line max-line-length require(payees.length == shares.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive () external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance.add(_totalReleased); uint256 payment = totalReceived.mul(_shares[account]).div(_totalShares).sub(_released[account]); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] = _released[account].add(payment); _totalReleased = _totalReleased.add(payment); account.transfer(payment); emit PaymentReleased(account, payment); } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares.add(shares_); emit PayeeAdded(account, shares_); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts-ethereum-package/contracts/math/Math.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/utils/ReentrancyGuard.sol"; import "./Defensible.sol"; import "./interfaces/IMiniMe.sol"; import "./interfaces/ISporeToken.sol"; import "./interfaces/IRateVoteable.sol"; import "./BannedContractList.sol"; /* Can be paused by the owner The mushroomFactory must be set by the owner before mushrooms can be harvested (optionally), and can be modified to use new mushroom spawning logic */ contract RateVote is ReentrancyGuardUpgradeSafe, Defensible { using SafeMath for uint256; /* ========== STATE VARIABLES ========== */ uint256 public constant MAX_PERCENTAGE = 100; uint256 public votingEnabledTime; mapping(address => uint256) lastVoted; struct VoteEpoch { uint256 startTime; uint256 activeEpoch; uint256 increaseVoteWeight; uint256 decreaseVoteWeight; } VoteEpoch public voteEpoch; uint256 public voteDuration; IMiniMe public enokiToken; IRateVoteable public pool; BannedContractList public bannedContractList; // In percentage: mul(X).div(100) uint256 public decreaseRateMultiplier; uint256 public increaseRateMultiplier; /* ========== CONSTRUCTOR ========== */ function initialize( address _pool, address _enokiToken, uint256 _voteDuration, uint256 _votingEnabledTime, address _bannedContractList ) public virtual initializer { __ReentrancyGuard_init(); pool = IRateVoteable(_pool); decreaseRateMultiplier = 50; increaseRateMultiplier = 150; votingEnabledTime = _votingEnabledTime; voteDuration = _voteDuration; enokiToken = IMiniMe(_enokiToken); voteEpoch = VoteEpoch({ startTime: votingEnabledTime, activeEpoch: 0, increaseVoteWeight: 0, decreaseVoteWeight: 0 }); bannedContractList = BannedContractList(_bannedContractList); } /* Votes with a given nonce invalidate other votes with the same nonce This ensures only one rate vote can pass for a given time period */ function getVoteEpoch() external view returns (VoteEpoch memory) { return voteEpoch; } /* === Actions === */ /// @notice Any user can vote once in a given voting epoch, with their balance at the start of the epoch function vote(uint256 voteId) external nonReentrant defend(bannedContractList) { require(now > votingEnabledTime, "Too early"); require(now <= voteEpoch.startTime.add(voteDuration), "Vote has ended"); require(lastVoted[msg.sender] < voteEpoch.activeEpoch, "Already voted"); uint256 userWeight = enokiToken.balanceOfAt(msg.sender, voteEpoch.startTime); if (voteId == 0) { // Decrease rate voteEpoch.decreaseVoteWeight = voteEpoch.decreaseVoteWeight.add(userWeight); } else if (voteId == 1) { // Increase rate voteEpoch.increaseVoteWeight = voteEpoch.increaseVoteWeight.add(userWeight); } else { revert("Invalid voteId"); } lastVoted[msg.sender] = voteEpoch.activeEpoch; emit Vote(msg.sender, voteEpoch.activeEpoch, userWeight, voteId); } /// @notice Once a vote has exceeded the duration, it can be resolved, implementing the decision and starting the next vote function resolveVote() external nonReentrant defend(bannedContractList) { require(now >= voteEpoch.startTime.add(voteDuration), "Vote still active"); uint256 decision = 0; if (voteEpoch.decreaseVoteWeight > voteEpoch.increaseVoteWeight) { // Decrease wins pool.changeRate(decreaseRateMultiplier); } else if (voteEpoch.increaseVoteWeight > voteEpoch.decreaseVoteWeight) { // Increase wins pool.changeRate(increaseRateMultiplier); decision = 1; } else { //else Tie, no rate change decision = 2; } emit VoteResolved(voteEpoch.activeEpoch, decision); voteEpoch.activeEpoch = voteEpoch.activeEpoch.add(1); voteEpoch.decreaseVoteWeight = 0; voteEpoch.increaseVoteWeight = 0; voteEpoch.startTime = now; emit VoteStarted(voteEpoch.activeEpoch, voteEpoch.startTime, voteEpoch.startTime.add(voteDuration)); } /* ===Events=== */ event Vote(address indexed user, uint256 indexed epoch, uint256 weight, uint256 indexed vote); event VoteResolved(uint256 indexed epoch, uint256 indexed decision); event VoteStarted(uint256 indexed epoch, uint256 startTime, uint256 endTime); }
pragma solidity ^0.6.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts-ethereum-package/contracts/math/Math.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/utils/ReentrancyGuard.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/utils/Pausable.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/access/Ownable.sol"; import "./Defensible.sol"; import "./interfaces/IMushroomFactory.sol"; import "./interfaces/IMission.sol"; import "./interfaces/IMiniMe.sol"; import "./interfaces/ISporeToken.sol"; import "./BannedContractList.sol"; /* Staking can be paused by the owner (withdrawing & harvesting cannot be paused) The mushroomFactory must be set by the owner before mushrooms can be harvested (optionally) It and can be modified, to use new mushroom spawning logic The rateVote contract has control over the spore emission rate. It can be modified, to change the voting logic around rate changes. */ contract SporePool is OwnableUpgradeSafe, ReentrancyGuardUpgradeSafe, PausableUpgradeSafe, Defensible { using SafeMath for uint256; using SafeERC20 for IERC20; /* ========== STATE VARIABLES ========== */ ISporeToken public sporeToken; IERC20 public stakingToken; uint256 public sporesPerSecond = 0; uint256 public lastUpdateTime; uint256 public rewardPerTokenStored; uint256 public constant MAX_PERCENTAGE = 100; uint256 public devRewardPercentage; address public devRewardAddress; mapping(address => uint256) public userRewardPerTokenPaid; mapping(address => uint256) public rewards; uint256 internal _totalSupply; mapping(address => uint256) internal _balances; IMushroomFactory public mushroomFactory; IMission public mission; BannedContractList public bannedContractList; uint256 public stakingEnabledTime; address public rateVote; IMiniMe public enokiToken; address public enokiDaoAgent; /* ========== CONSTRUCTOR ========== */ function initialize( address _sporeToken, address _stakingToken, address _mission, address _bannedContractList, address _devRewardAddress, address _enokiDaoAgent, uint256[3] memory uintParams ) public virtual initializer { __Context_init_unchained(); __Pausable_init_unchained(); __ReentrancyGuard_init_unchained(); __Ownable_init_unchained(); sporeToken = ISporeToken(_sporeToken); stakingToken = IERC20(_stakingToken); mission = IMission(_mission); bannedContractList = BannedContractList(_bannedContractList); /* [0] uint256 _devRewardPercentage, [1] uint256 stakingEnabledTime_, [2] uint256 initialRewardRate_, */ devRewardPercentage = uintParams[0]; devRewardAddress = _devRewardAddress; stakingEnabledTime = uintParams[1]; sporesPerSecond = uintParams[2]; enokiDaoAgent = _enokiDaoAgent; emit SporeRateChange(sporesPerSecond); } /* ========== VIEWS ========== */ function totalSupply() external view returns (uint256) { return _totalSupply; } function balanceOf(address account) external view returns (uint256) { return _balances[account]; } // Rewards are turned off at the mission level function lastTimeRewardApplicable() public view returns (uint256) { return block.timestamp; } function rewardPerToken() public view returns (uint256) { if (_totalSupply == 0) { return rewardPerTokenStored; } // Time difference * sporesPerSecond return rewardPerTokenStored.add(lastTimeRewardApplicable().sub(lastUpdateTime).mul(sporesPerSecond).mul(1e18).div(_totalSupply)); } function earned(address account) public view returns (uint256) { return _balances[account].mul(rewardPerToken().sub(userRewardPerTokenPaid[account])).div(1e18).add(rewards[account]); } /* ========== MUTATIVE FUNCTIONS ========== */ function stake(uint256 amount) external virtual nonReentrant defend(bannedContractList) whenNotPaused updateReward(msg.sender) { require(amount > 0, "Cannot stake 0"); require(now > stakingEnabledTime, "Cannot stake before staking enabled"); _totalSupply = _totalSupply.add(amount); _balances[msg.sender] = _balances[msg.sender].add(amount); stakingToken.safeTransferFrom(msg.sender, address(this), amount); emit Staked(msg.sender, amount); } // Withdrawing does not harvest, the rewards must be harvested separately function withdraw(uint256 amount) public virtual updateReward(msg.sender) { require(amount > 0, "Cannot withdraw 0"); _totalSupply = _totalSupply.sub(amount); _balances[msg.sender] = _balances[msg.sender].sub(amount); stakingToken.safeTransfer(msg.sender, amount); emit Withdrawn(msg.sender, amount); } function harvest(uint256 mushroomsToGrow) public nonReentrant updateReward(msg.sender) returns ( uint256 toDev, uint256 toDao, uint256 remainingReward ) { uint256 reward = rewards[msg.sender]; if (reward > 0) { remainingReward = reward; toDev = 0; toDao = 0; rewards[msg.sender] = 0; // Burn some rewards for mushrooms if desired if (mushroomsToGrow > 0) { uint256 totalCost = mushroomFactory.costPerMushroom().mul(mushroomsToGrow); require(reward >= totalCost, "Not enough rewards to grow the number of mushrooms specified"); toDev = totalCost.mul(devRewardPercentage).div(MAX_PERCENTAGE); if (toDev > 0) { mission.sendSpores(devRewardAddress, toDev); emit DevRewardPaid(devRewardAddress, toDev); } toDao = totalCost.sub(toDev); mission.sendSpores(enokiDaoAgent, toDao); emit DaoRewardPaid(enokiDaoAgent, toDao); remainingReward = reward.sub(totalCost); mushroomFactory.growMushrooms(msg.sender, mushroomsToGrow); emit MushroomsGrown(msg.sender, mushroomsToGrow); } if (remainingReward > 0) { mission.sendSpores(msg.sender, remainingReward); emit RewardPaid(msg.sender, remainingReward); } } } // Withdraw, forfietting all rewards function emergencyWithdraw() external nonReentrant { withdraw(_balances[msg.sender]); } /* ========== RESTRICTED FUNCTIONS ========== */ // Added to support recovering LP Rewards from other systems such as BAL to be distributed to holders function recoverERC20(address tokenAddress, uint256 tokenAmount) external onlyOwner { // Cannot recover the staking token or the rewards token require(tokenAddress != address(stakingToken) && tokenAddress != address(sporeToken), "Cannot withdraw the staking or rewards tokens"); //TODO: Add safeTransfer IERC20(tokenAddress).transfer(owner(), tokenAmount); emit Recovered(tokenAddress, tokenAmount); } function setMushroomFactory(address mushroomFactory_) external onlyOwner { mushroomFactory = IMushroomFactory(mushroomFactory_); } function pauseStaking() external onlyOwner { _pause(); } function unpauseStaking() external onlyOwner { _unpause(); } function setRateVote(address _rateVote) external onlyOwner { rateVote = _rateVote; } function changeRate(uint256 percentage) external onlyRateVote { sporesPerSecond = sporesPerSecond.mul(percentage).div(MAX_PERCENTAGE); emit SporeRateChange(sporesPerSecond); } /* ========== MODIFIERS ========== */ modifier updateReward(address account) { rewardPerTokenStored = rewardPerToken(); lastUpdateTime = lastTimeRewardApplicable(); if (account != address(0)) { rewards[account] = earned(account); userRewardPerTokenPaid[account] = rewardPerTokenStored; } _; } modifier onlyRateVote() { require(msg.sender == rateVote, "onlyRateVote"); _; } /* ========== EVENTS ========== */ event RewardAdded(uint256 reward); event Staked(address indexed user, uint256 amount); event Withdrawn(address indexed user, uint256 amount); event RewardPaid(address indexed user, uint256 reward); event DevRewardPaid(address indexed user, uint256 reward); event DaoRewardPaid(address indexed user, uint256 reward); event MushroomsGrown(address indexed user, uint256 number); event Recovered(address token, uint256 amount); event SporeRateChange(uint256 newRate); }
pragma solidity ^0.6.0; import "../GSN/Context.sol"; import "../Initializable.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract PausableUpgradeSafe is Initializable, ContextUpgradeSafe { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal initializer { __Context_init_unchained(); __Pausable_init_unchained(); } function __Pausable_init_unchained() internal initializer { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Triggers stopped state. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts-ethereum-package/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/SafeERC20.sol"; import "./SporePool.sol"; /* ETH Variant of SporePool */ contract SporePoolEth is SporePool { using SafeMath for uint256; using SafeERC20 for IERC20; /* ========== CONSTRUCTOR ========== */ function initialize( address _sporeToken, address _stakingToken, address _mission, address _bannedContractList, address _devRewardAddress, address _enokiDaoAgent, uint256[3] memory uintParams ) public override initializer { __Context_init_unchained(); __Pausable_init_unchained(); __ReentrancyGuard_init_unchained(); __Ownable_init_unchained(); sporeToken = ISporeToken(_sporeToken); mission = IMission(_mission); bannedContractList = BannedContractList(_bannedContractList); /* [0] uint256 _devRewardPercentage, [1] uint256 stakingEnabledTime_, [2] uint256 initialRewardRate_, */ devRewardPercentage = uintParams[0]; devRewardAddress = _devRewardAddress; stakingEnabledTime = uintParams[1]; sporesPerSecond = uintParams[2]; enokiDaoAgent = _enokiDaoAgent; emit SporeRateChange(sporesPerSecond); } /* ========== MUTATIVE FUNCTIONS ========== */ function stake(uint256 amount) external override nonReentrant defend(bannedContractList) whenNotPaused updateReward(msg.sender) { revert("Use stakeEth function for ETH variant"); } function stakeEth(uint256 amount) external payable nonReentrant defend(bannedContractList) whenNotPaused updateReward(msg.sender) { require(amount > 0, "Cannot stake 0"); require(msg.value == amount, "Incorrect ETH transfer amount"); require(now > stakingEnabledTime, "Cannot stake before staking enabled"); _totalSupply = _totalSupply.add(amount); _balances[msg.sender] = _balances[msg.sender].add(amount); emit Staked(msg.sender, amount); } function withdraw(uint256 amount) public override updateReward(msg.sender) { require(amount > 0, "Cannot withdraw 0"); _totalSupply = _totalSupply.sub(amount); _balances[msg.sender] = _balances[msg.sender].sub(amount); msg.sender.transfer(amount); emit Withdrawn(msg.sender, amount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/math/Math.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "./SporeToken.sol"; contract SporePresale is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; mapping(address => bool) public whitelist; mapping(address => uint256) public ethSupply; uint256 public whitelistCount; address payable devAddress; uint256 public sporePrice = 25; uint256 public buyLimit = 3 * 1e18; bool public presaleStart = false; bool public onlyWhitelist = true; uint256 public presaleLastSupply = 15000 * 1e18; SporeToken public spore; event BuySporeSuccess(address account, uint256 ethAmount, uint256 sporeAmount); constructor(address payable devAddress_, SporeToken sporeToken_) public { devAddress = devAddress_; spore = sporeToken_; } function addToWhitelist(address[] memory accounts) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { address account = accounts[i]; require(whitelist[account] == false, "This account is already in whitelist."); whitelist[account] = true; whitelistCount = whitelistCount + 1; } } function removeFromWhitelist(address[] memory accounts) public onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { address account = accounts[i]; require(whitelist[account], "This account is not in whitelist."); whitelist[account] = false; whitelistCount = whitelistCount - 1; } } function getDevAddress() public view returns (address) { return address(devAddress); } function setDevAddress(address payable account) public onlyOwner { devAddress = account; } function startPresale() public onlyOwner { presaleStart = true; } function stopPresale() public onlyOwner { presaleStart = false; } function setSporePrice(uint256 newPrice) public onlyOwner { sporePrice = newPrice; } function setBuyLimit(uint256 newLimit) public onlyOwner { buyLimit = newLimit; } function changeToNotOnlyWhitelist() public onlyOwner { onlyWhitelist = false; } modifier needHaveLastSupply() { require(presaleLastSupply >= 0, "Oh you are so late."); _; } modifier presaleHasStarted() { require(presaleStart, "Presale has not been started."); _; } receive() external payable presaleHasStarted needHaveLastSupply { if (onlyWhitelist) { require(whitelist[msg.sender], "This time is only for people who are in whitelist."); } uint256 ethTotalAmount = ethSupply[msg.sender].add(msg.value); require(ethTotalAmount <= buyLimit, "Everyone should buy less than 3 eth."); uint256 sporeAmount = msg.value.mul(sporePrice); require(sporeAmount <= presaleLastSupply, "insufficient presale supply"); presaleLastSupply = presaleLastSupply.sub(sporeAmount); spore.mint(msg.sender, sporeAmount); ethSupply[msg.sender] = ethTotalAmount; devAddress.transfer(msg.value); emit BuySporeSuccess(msg.sender, msg.value, sporeAmount); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "../../GSN/Context.sol"; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @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. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { 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 balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, 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. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev 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. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @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 will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract SporeToken is ERC20("SporeFinance", "SPORE"), Ownable { using SafeMath for uint256; /* ========== STATE VARIABLES ========== */ mapping(address => bool) public minters; address public initialLiquidityManager; bool internal _transfersEnabled; mapping(address => bool) internal _canTransferInitialLiquidity; /* ========== CONSTRUCTOR ========== */ constructor(address initialLiquidityManager_) public { _transfersEnabled = false; minters[msg.sender] = true; initialLiquidityManager = initialLiquidityManager_; _canTransferInitialLiquidity[msg.sender] = true; } /* ========== MUTATIVE FUNCTIONS ========== */ /// @notice Transfer is enabled as normal except during an initial phase function transfer(address recipient, uint256 amount) public override returns (bool) { require(_transfersEnabled || _canTransferInitialLiquidity[msg.sender], "SporeToken: transfers not enabled"); return super.transfer(recipient, amount); } /// @notice TransferFrom is enabled as normal except during an initial phase function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { require(_transfersEnabled || _canTransferInitialLiquidity[msg.sender], "SporeToken: transfers not enabled"); return super.transferFrom(sender, recipient, amount); } /// @notice Any account is entitled to burn their own tokens function burn(uint256 amount) public { require(amount > 0); require(balanceOf(msg.sender) >= amount); _burn(msg.sender, amount); } /* ========== RESTRICTED FUNCTIONS ========== */ function mint(address to, uint256 amount) public onlyMinter { _mint(to, amount); } function addInitialLiquidityTransferRights(address account) public onlyInitialLiquidityManager { require(!_transfersEnabled, "SporeToken: cannot add initial liquidity transfer rights after global transfers enabled"); _canTransferInitialLiquidity[account] = true; } /// @notice One time acion to enable global transfers after the initial liquidity is supplied. function enableTransfers() public onlyInitialLiquidityManager { _transfersEnabled = true; } function addMinter(address account) public onlyOwner { minters[account] = true; } function removeMinter(address account) public onlyOwner { minters[account] = false; } modifier onlyMinter() { require(minters[msg.sender], "Restricted to minters."); _; } modifier onlyInitialLiquidityManager() { require(initialLiquidityManager == msg.sender, "Restricted to initial liquidity manager."); _; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts-ethereum-package/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts-ethereum-package/contracts/access/Ownable.sol"; import "../MushroomNFT.sol"; import "../MushroomLib.sol"; /* MushroomFactories manage the mushroom generation logic for pools Each pool will have it's own factory to generate mushrooms according to its' powers. The mushroomFactory should be administered by the pool, which grants the ability to grow mushrooms */ contract MushroomLifespanMock is Initializable, OwnableUpgradeSafe { using MushroomLib for MushroomLib.MushroomData; using MushroomLib for MushroomLib.MushroomType; using SafeMath for uint256; uint256 public spawnCount; event MushroomGrown(address recipient, uint256 id, uint256 species, uint256 lifespan); function generateMushroomLifespan(uint256 minLifespan, uint256 maxLifespan) public returns (uint256) { uint256 range = maxLifespan.sub(minLifespan); uint256 fromMin = uint256(keccak256(abi.encodePacked(block.timestamp.add(spawnCount)))) % range; spawnCount = spawnCount.add(1); return minLifespan.add(fromMin); } function getRemainingMintableForMySpecies(MushroomNFT mushroomNft, uint256 speciesId) public view returns (uint256) { return mushroomNft.getRemainingMintableForSpecies(speciesId); } // Each mushroom costs 1/10th of the spore rate in spores. function growMushrooms(MushroomNFT mushroomNft, uint256 speciesId, address recipient, uint256 numMushrooms) public { MushroomLib.MushroomType memory species = mushroomNft.getSpecies(speciesId); require(getRemainingMintableForMySpecies(mushroomNft, speciesId) >= numMushrooms, "MushroomFactory: Mushrooms to grow exceeds species cap"); for (uint256 i = 0; i < numMushrooms; i++) { uint256 nextId = mushroomNft.totalSupply().add(1); uint256 lifespan = generateMushroomLifespan(species.minLifespan, species.maxLifespan); mushroomNft.mint(recipient, nextId, speciesId, lifespan); emit MushroomGrown(recipient, nextId, speciesId, lifespan); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.0; import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; /** * @title TokenVesting * @dev A token holder contract that can release its token balance gradually like a * typical vesting scheme, with a cliff and vesting period. Optionally revocable by the * owner. */ contract TokenVesting is Ownable { // The vesting schedule is time-based (i.e. using block timestamps as opposed to e.g. block numbers), and is // therefore sensitive to timestamp manipulation (which is something miners can do, to a certain degree). Therefore, // it is recommended to avoid using short time durations (less than a minute). Typical vesting schemes, with a // cliff period of a year and a duration of four years, are safe to use. // solhint-disable not-rely-on-time using SafeMath for uint256; using SafeERC20 for IERC20; event TokensReleased(address token, uint256 amount); event TokenVestingRevoked(address token); // beneficiary of tokens after they are released address private _beneficiary; // Durations and timestamps are expressed in UNIX time, the same units as block.timestamp. uint256 private _cliff; uint256 private _start; uint256 private _duration; bool private _revocable; mapping (address => uint256) private _released; mapping (address => bool) private _revoked; /** * @dev Creates a vesting contract that vests its balance of any ERC20 token to the * beneficiary, gradually in a linear fashion until start + duration. By then all * of the balance will have vested. * @param beneficiary address of the beneficiary to whom vested tokens are transferred * @param cliffDuration duration in seconds of the cliff in which tokens will begin to vest * @param start the time (as Unix time) at which point vesting starts * @param duration duration in seconds of the period in which the tokens will vest * @param revocable whether the vesting is revocable or not */ constructor (address beneficiary, uint256 start, uint256 cliffDuration, uint256 duration, bool revocable) public { require(beneficiary != address(0), "TokenVesting: beneficiary is the zero address"); // solhint-disable-next-line max-line-length require(cliffDuration <= duration, "TokenVesting: cliff is longer than duration"); require(duration > 0, "TokenVesting: duration is 0"); // solhint-disable-next-line max-line-length require(start.add(duration) > block.timestamp, "TokenVesting: final time is before current time"); _beneficiary = beneficiary; _revocable = revocable; _duration = duration; _cliff = start.add(cliffDuration); _start = start; } /** * @return the beneficiary of the tokens. */ function beneficiary() public view returns (address) { return _beneficiary; } /** * @return the cliff time of the token vesting. */ function cliff() public view returns (uint256) { return _cliff; } /** * @return the start time of the token vesting. */ function start() public view returns (uint256) { return _start; } /** * @return the duration of the token vesting. */ function duration() public view returns (uint256) { return _duration; } /** * @return true if the vesting is revocable. */ function revocable() public view returns (bool) { return _revocable; } /** * @return the amount of the token released. */ function released(address token) public view returns (uint256) { return _released[token]; } /** * @return true if the token is revoked. */ function revoked(address token) public view returns (bool) { return _revoked[token]; } /** * @notice Transfers vested tokens to beneficiary. * @param token ERC20 token which is being vested */ function release(IERC20 token) public { uint256 unreleased = _releasableAmount(token); require(unreleased > 0, "TokenVesting: no tokens are due"); _released[address(token)] = _released[address(token)].add(unreleased); token.safeTransfer(_beneficiary, unreleased); emit TokensReleased(address(token), unreleased); } /** * @notice Allows the owner to revoke the vesting. Tokens already vested * remain in the contract, the rest are returned to the owner. * @param token ERC20 token which is being vested */ function revoke(IERC20 token) public onlyOwner { require(_revocable, "TokenVesting: cannot revoke"); require(!_revoked[address(token)], "TokenVesting: token already revoked"); uint256 balance = token.balanceOf(address(this)); uint256 unreleased = _releasableAmount(token); uint256 refund = balance.sub(unreleased); _revoked[address(token)] = true; token.safeTransfer(owner(), refund); emit TokenVestingRevoked(address(token)); } /** * @dev Calculates the amount that has already vested but hasn't been released yet. * @param token ERC20 token which is being vested */ function _releasableAmount(IERC20 token) private view returns (uint256) { return _vestedAmount(token).sub(_released[address(token)]); } /** * @dev Calculates the amount that has already vested. * @param token ERC20 token which is being vested */ function _vestedAmount(IERC20 token) private view returns (uint256) { uint256 currentBalance = token.balanceOf(address(this)); uint256 totalBalance = currentBalance.add(_released[address(token)]); if (block.timestamp < _cliff) { return 0; } else if (block.timestamp >= _start.add(_duration) || _revoked[address(token)]) { return totalBalance; } else { return totalBalance.mul(block.timestamp.sub(_start)).div(_duration); } } }
{ "metadata": { "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"nft","type":"address"},{"indexed":false,"internalType":"address","name":"resolver","type":"address"}],"name":"ResolverSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIFESPAN_MODIFY_REQUEST_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"nftContract","type":"address"}],"name":"getMetadataAdapter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"nftContract","type":"address"},{"internalType":"uint256","name":"nftIndex","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"getMushroomData","outputs":[{"components":[{"internalType":"uint256","name":"species","type":"uint256"},{"internalType":"uint256","name":"strength","type":"uint256"},{"internalType":"uint256","name":"lifespan","type":"uint256"}],"internalType":"struct MushroomLib.MushroomData","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nftContract","type":"address"}],"name":"hasMetadataAdapter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"initialLifespanModifier_","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nftContract","type":"address"},{"internalType":"uint256","name":"nftIndex","type":"uint256"}],"name":"isBurnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"nftContract","type":"address"},{"internalType":"uint256","name":"nftIndex","type":"uint256"}],"name":"isStakeable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"metadataAdapters","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nftContract","type":"address"},{"internalType":"uint256","name":"nftIndex","type":"uint256"},{"internalType":"uint256","name":"lifespan","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"setMushroomLifespan","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nftContract","type":"address"},{"internalType":"address","name":"resolver","type":"address"}],"name":"setResolver","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50611194806100206000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80639ad389bc116100a2578063ca15c87311610071578063ca15c8731461023b578063d547741f1461024e578063d70f488614610261578063dad1305014610274578063e66f82a61461028757610116565b80639ad389bc146101f85780639ce96f8b14610200578063a217fddf14610220578063c4d66de81461022857610116565b8063597e99cb116100e9578063597e99cb1461018c5780637c0a30111461019f5780639010d07c146101b257806391d14854146101d257806398fd9c21146101e557610116565b806314feff181461011b578063248a9ca3146101445780632f2ff15d1461016457806336568abe14610179575b600080fd5b61012e610129366004610c93565b61029a565b60405161013b9190610eb5565b60405180910390f35b610157610152366004610d9e565b610378565b60405161013b9190610ec0565b610177610172366004610db6565b61038d565b005b610177610187366004610db6565b6103d5565b61017761019a366004610c5f565b610417565b61012e6101ad366004610c93565b6104ab565b6101c56101c0366004610de5565b61056f565b60405161013b9190610e87565b61012e6101e0366004610db6565b61058e565b6101c56101f3366004610c44565b6105a6565b6101576105c1565b61021361020e366004610cbd565b6105e5565b60405161013b91906110e1565b6101576106d5565b610177610236366004610c44565b6106da565b610157610249366004610d9e565b610792565b61017761025c366004610db6565b6107a9565b61012e61026f366004610c44565b6107e3565b6101c5610282366004610c44565b610803565b610177610295366004610d17565b610821565b6001600160a01b0380831660009081526097602052604081205490918491166102de5760405162461bcd60e51b81526004016102d590610f7d565b60405180910390fd5b6001600160a01b038085166000908152609760205260409081902054905163637c46a560e11b8152911690819063c6f88d4a9061031f908790600401610ec0565b60206040518083038186803b15801561033757600080fd5b505afa15801561034b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061036f9190610d7e565b95945050505050565b60009081526065602052604090206002015490565b6000828152606560205260409020600201546103ab906101e0610922565b6103c75760405162461bcd60e51b81526004016102d590610f2e565b6103d18282610926565b5050565b6103dd610922565b6001600160a01b0316816001600160a01b03161461040d5760405162461bcd60e51b81526004016102d590611092565b6103d1828261098f565b61042260003361058e565b61043e5760405162461bcd60e51b81526004016102d590610ec9565b6001600160a01b038281166000908152609760205260409081902080546001600160a01b03191692841692909217909155517f7126a24e175b883fc2fd81c07197434bd8790327d4fa35492827096cfcabbbdf9061049f9084908490610e9b565b60405180910390a15050565b6001600160a01b038281166000908152609760205260408120549091166104d457506000610569565b6001600160a01b0380841660009081526097602052604090819020549051637a5208ff60e11b8152911690819063f4a411fe90610515908690600401610ec0565b60206040518083038186803b15801561052d57600080fd5b505afa158015610541573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105659190610d7e565b9150505b92915050565b600082815260656020526040812061058790836109f8565b9392505050565b60008281526065602052604081206105879083610a04565b6097602052600090815260409020546001600160a01b031681565b7ff45351edb1797952ac79facb8f5a284cbf22f8d49f98ba0cb8c205f34bbb44ab81565b6105ed610bc5565b6001600160a01b038086166000908152609760205260409020548691166106265760405162461bcd60e51b81526004016102d590610f7d565b6001600160a01b0380871660009081526097602052604090205416610649610bc5565b604051639c42f02360e01b81526001600160a01b03831690639c42f02390610679908a908a908a90600401611102565b60606040518083038186803b15801561069157600080fd5b505afa1580156106a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c99190610e06565b98975050505050505050565b600081565b600054610100900460ff16806106f357506106f3610a19565b80610701575060005460ff16155b61071d5760405162461bcd60e51b81526004016102d590611016565b600054610100900460ff16158015610748576000805460ff1961ff0019909116610100171660011790555b6107536000336103c7565b61077d7ff45351edb1797952ac79facb8f5a284cbf22f8d49f98ba0cb8c205f34bbb44ab836103c7565b80156103d1576000805461ff00191690555050565b600081815260656020526040812061056990610a1f565b6000828152606560205260409020600201546107c7906101e0610922565b61040d5760405162461bcd60e51b81526004016102d590610fc6565b6001600160a01b0390811660009081526097602052604090205416151590565b6001600160a01b039081166000908152609760205260409020541690565b6001600160a01b0380861660009081526097602052604090205486911661085a5760405162461bcd60e51b81526004016102d590610f7d565b6108847ff45351edb1797952ac79facb8f5a284cbf22f8d49f98ba0cb8c205f34bbb44ab3361058e565b6108a05760405162461bcd60e51b81526004016102d590611064565b6001600160a01b038087166000908152609760205260409081902054905163121d816560e11b8152911690819063243b02ca906108e790899089908990899060040161111c565b600060405180830381600087803b15801561090157600080fd5b505af1158015610915573d6000803e3d6000fd5b5050505050505050505050565b3390565b600082815260656020526040902061093e9082610a2a565b156103d15761094b610922565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526065602052604090206109a79082610a3f565b156103d1576109b4610922565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60006105878383610a54565b6000610587836001600160a01b038416610a99565b303b1590565b600061056982610ab1565b6000610587836001600160a01b038416610ab5565b6000610587836001600160a01b038416610aff565b81546000908210610a775760405162461bcd60e51b81526004016102d590610eec565b826000018281548110610a8657fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b6000610ac18383610a99565b610af757508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610569565b506000610569565b60008181526001830160205260408120548015610bbb5783546000198083019190810190600090879083908110610b3257fe5b9060005260206000200154905080876000018481548110610b4f57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080610b7f57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610569565b6000915050610569565b60405180606001604052806000815260200160008152602001600081525090565b80356001600160a01b038116811461056957600080fd5b60008083601f840112610c0e578182fd5b50813567ffffffffffffffff811115610c25578182fd5b602083019150836020828501011115610c3d57600080fd5b9250929050565b600060208284031215610c55578081fd5b6105878383610be6565b60008060408385031215610c71578081fd5b610c7b8484610be6565b9150610c8a8460208501610be6565b90509250929050565b60008060408385031215610ca5578182fd5b610caf8484610be6565b946020939093013593505050565b60008060008060608587031215610cd2578182fd5b8435610cdd81611146565b935060208501359250604085013567ffffffffffffffff811115610cff578283fd5b610d0b87828801610bfd565b95989497509550505050565b600080600080600060808688031215610d2e578081fd5b610d388787610be6565b94506020860135935060408601359250606086013567ffffffffffffffff811115610d61578182fd5b610d6d88828901610bfd565b969995985093965092949392505050565b600060208284031215610d8f578081fd5b81518015158114610587578182fd5b600060208284031215610daf578081fd5b5035919050565b60008060408385031215610dc8578182fd5b823591506020830135610dda81611146565b809150509250929050565b60008060408385031215610df7578182fd5b50508035926020909101359150565b600060608284031215610e17578081fd5b6040516060810181811067ffffffffffffffff82111715610e36578283fd5b80604052508251815260208301516020820152604083015160408201528091505092915050565b60008284528282602086013780602084860101526020601f19601f85011685010190509392505050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b90815260200190565b60208082526009908201526837b7363ca0b236b4b760b91b604082015260600190565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b60208082526029908201527f4d6574616461746152656769737472793a204e6f207265736f6c7665722073656040820152681d08199bdc881b999d60ba1b606082015260800190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b6020808252602e908201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560408201526d195b881a5b9a5d1a585b1a5e995960921b606082015260800190565b60208082526014908201527337b7363ca634b332b9b830b726b7b234b334b2b960611b604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b81518152602080830151908201526040918201519181019190915260600190565b60008482526040602083015261036f604083018486610e5d565b60008582528460208301526060604083015261113c606083018486610e5d565b9695505050505050565b6001600160a01b038116811461115b57600080fd5b5056fea26469706673582212202e2553adf22b89f806f463bc05c0a1718382dd77de8d9951450de10d059fa03464736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c80639ad389bc116100a2578063ca15c87311610071578063ca15c8731461023b578063d547741f1461024e578063d70f488614610261578063dad1305014610274578063e66f82a61461028757610116565b80639ad389bc146101f85780639ce96f8b14610200578063a217fddf14610220578063c4d66de81461022857610116565b8063597e99cb116100e9578063597e99cb1461018c5780637c0a30111461019f5780639010d07c146101b257806391d14854146101d257806398fd9c21146101e557610116565b806314feff181461011b578063248a9ca3146101445780632f2ff15d1461016457806336568abe14610179575b600080fd5b61012e610129366004610c93565b61029a565b60405161013b9190610eb5565b60405180910390f35b610157610152366004610d9e565b610378565b60405161013b9190610ec0565b610177610172366004610db6565b61038d565b005b610177610187366004610db6565b6103d5565b61017761019a366004610c5f565b610417565b61012e6101ad366004610c93565b6104ab565b6101c56101c0366004610de5565b61056f565b60405161013b9190610e87565b61012e6101e0366004610db6565b61058e565b6101c56101f3366004610c44565b6105a6565b6101576105c1565b61021361020e366004610cbd565b6105e5565b60405161013b91906110e1565b6101576106d5565b610177610236366004610c44565b6106da565b610157610249366004610d9e565b610792565b61017761025c366004610db6565b6107a9565b61012e61026f366004610c44565b6107e3565b6101c5610282366004610c44565b610803565b610177610295366004610d17565b610821565b6001600160a01b0380831660009081526097602052604081205490918491166102de5760405162461bcd60e51b81526004016102d590610f7d565b60405180910390fd5b6001600160a01b038085166000908152609760205260409081902054905163637c46a560e11b8152911690819063c6f88d4a9061031f908790600401610ec0565b60206040518083038186803b15801561033757600080fd5b505afa15801561034b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061036f9190610d7e565b95945050505050565b60009081526065602052604090206002015490565b6000828152606560205260409020600201546103ab906101e0610922565b6103c75760405162461bcd60e51b81526004016102d590610f2e565b6103d18282610926565b5050565b6103dd610922565b6001600160a01b0316816001600160a01b03161461040d5760405162461bcd60e51b81526004016102d590611092565b6103d1828261098f565b61042260003361058e565b61043e5760405162461bcd60e51b81526004016102d590610ec9565b6001600160a01b038281166000908152609760205260409081902080546001600160a01b03191692841692909217909155517f7126a24e175b883fc2fd81c07197434bd8790327d4fa35492827096cfcabbbdf9061049f9084908490610e9b565b60405180910390a15050565b6001600160a01b038281166000908152609760205260408120549091166104d457506000610569565b6001600160a01b0380841660009081526097602052604090819020549051637a5208ff60e11b8152911690819063f4a411fe90610515908690600401610ec0565b60206040518083038186803b15801561052d57600080fd5b505afa158015610541573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105659190610d7e565b9150505b92915050565b600082815260656020526040812061058790836109f8565b9392505050565b60008281526065602052604081206105879083610a04565b6097602052600090815260409020546001600160a01b031681565b7ff45351edb1797952ac79facb8f5a284cbf22f8d49f98ba0cb8c205f34bbb44ab81565b6105ed610bc5565b6001600160a01b038086166000908152609760205260409020548691166106265760405162461bcd60e51b81526004016102d590610f7d565b6001600160a01b0380871660009081526097602052604090205416610649610bc5565b604051639c42f02360e01b81526001600160a01b03831690639c42f02390610679908a908a908a90600401611102565b60606040518083038186803b15801561069157600080fd5b505afa1580156106a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c99190610e06565b98975050505050505050565b600081565b600054610100900460ff16806106f357506106f3610a19565b80610701575060005460ff16155b61071d5760405162461bcd60e51b81526004016102d590611016565b600054610100900460ff16158015610748576000805460ff1961ff0019909116610100171660011790555b6107536000336103c7565b61077d7ff45351edb1797952ac79facb8f5a284cbf22f8d49f98ba0cb8c205f34bbb44ab836103c7565b80156103d1576000805461ff00191690555050565b600081815260656020526040812061056990610a1f565b6000828152606560205260409020600201546107c7906101e0610922565b61040d5760405162461bcd60e51b81526004016102d590610fc6565b6001600160a01b0390811660009081526097602052604090205416151590565b6001600160a01b039081166000908152609760205260409020541690565b6001600160a01b0380861660009081526097602052604090205486911661085a5760405162461bcd60e51b81526004016102d590610f7d565b6108847ff45351edb1797952ac79facb8f5a284cbf22f8d49f98ba0cb8c205f34bbb44ab3361058e565b6108a05760405162461bcd60e51b81526004016102d590611064565b6001600160a01b038087166000908152609760205260409081902054905163121d816560e11b8152911690819063243b02ca906108e790899089908990899060040161111c565b600060405180830381600087803b15801561090157600080fd5b505af1158015610915573d6000803e3d6000fd5b5050505050505050505050565b3390565b600082815260656020526040902061093e9082610a2a565b156103d15761094b610922565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526065602052604090206109a79082610a3f565b156103d1576109b4610922565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60006105878383610a54565b6000610587836001600160a01b038416610a99565b303b1590565b600061056982610ab1565b6000610587836001600160a01b038416610ab5565b6000610587836001600160a01b038416610aff565b81546000908210610a775760405162461bcd60e51b81526004016102d590610eec565b826000018281548110610a8657fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b6000610ac18383610a99565b610af757508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610569565b506000610569565b60008181526001830160205260408120548015610bbb5783546000198083019190810190600090879083908110610b3257fe5b9060005260206000200154905080876000018481548110610b4f57fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080610b7f57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610569565b6000915050610569565b60405180606001604052806000815260200160008152602001600081525090565b80356001600160a01b038116811461056957600080fd5b60008083601f840112610c0e578182fd5b50813567ffffffffffffffff811115610c25578182fd5b602083019150836020828501011115610c3d57600080fd5b9250929050565b600060208284031215610c55578081fd5b6105878383610be6565b60008060408385031215610c71578081fd5b610c7b8484610be6565b9150610c8a8460208501610be6565b90509250929050565b60008060408385031215610ca5578182fd5b610caf8484610be6565b946020939093013593505050565b60008060008060608587031215610cd2578182fd5b8435610cdd81611146565b935060208501359250604085013567ffffffffffffffff811115610cff578283fd5b610d0b87828801610bfd565b95989497509550505050565b600080600080600060808688031215610d2e578081fd5b610d388787610be6565b94506020860135935060408601359250606086013567ffffffffffffffff811115610d61578182fd5b610d6d88828901610bfd565b969995985093965092949392505050565b600060208284031215610d8f578081fd5b81518015158114610587578182fd5b600060208284031215610daf578081fd5b5035919050565b60008060408385031215610dc8578182fd5b823591506020830135610dda81611146565b809150509250929050565b60008060408385031215610df7578182fd5b50508035926020909101359150565b600060608284031215610e17578081fd5b6040516060810181811067ffffffffffffffff82111715610e36578283fd5b80604052508251815260208301516020820152604083015160408201528091505092915050565b60008284528282602086013780602084860101526020601f19601f85011685010190509392505050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b901515815260200190565b90815260200190565b60208082526009908201526837b7363ca0b236b4b760b91b604082015260600190565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b60208082526029908201527f4d6574616461746152656769737472793a204e6f207265736f6c7665722073656040820152681d08199bdc881b999d60ba1b606082015260800190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b6020808252602e908201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560408201526d195b881a5b9a5d1a585b1a5e995960921b606082015260800190565b60208082526014908201527337b7363ca634b332b9b830b726b7b234b334b2b960611b604082015260600190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b81518152602080830151908201526040918201519181019190915260600190565b60008482526040602083015261036f604083018486610e5d565b60008582528460208301526060604083015261113c606083018486610e5d565b9695505050505050565b6001600160a01b038116811461115b57600080fd5b5056fea26469706673582212202e2553adf22b89f806f463bc05c0a1718382dd77de8d9951450de10d059fa03464736f6c634300060c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.