More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 3,953 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 21272236 | 7 hrs ago | IN | 0 ETH | 0.00133938 | ||||
Withdraw | 20582278 | 96 days ago | IN | 0 ETH | 0.00013791 | ||||
Withdraw | 18139348 | 438 days ago | IN | 0 ETH | 0.00083046 | ||||
Withdraw | 18139342 | 438 days ago | IN | 0 ETH | 0.00089409 | ||||
Withdraw | 16615175 | 653 days ago | IN | 0 ETH | 0.00221943 | ||||
Withdraw | 16449866 | 676 days ago | IN | 0 ETH | 0.00361909 | ||||
Withdraw | 15913238 | 751 days ago | IN | 0 ETH | 0.00189777 | ||||
Withdraw | 15671946 | 784 days ago | IN | 0 ETH | 0.00162503 | ||||
Withdraw | 15298819 | 841 days ago | IN | 0 ETH | 0.00080089 | ||||
Withdraw | 15246515 | 849 days ago | IN | 0 ETH | 0.00067332 | ||||
Withdraw | 15160577 | 863 days ago | IN | 0 ETH | 0.00167877 | ||||
Withdraw | 15159199 | 863 days ago | IN | 0 ETH | 0.00112619 | ||||
Withdraw | 15031012 | 883 days ago | IN | 0 ETH | 0.00458187 | ||||
Withdraw | 14621636 | 951 days ago | IN | 0 ETH | 0.00357974 | ||||
Withdraw | 14532169 | 965 days ago | IN | 0 ETH | 0.00500043 | ||||
Withdraw | 14365089 | 991 days ago | IN | 0 ETH | 0.00164589 | ||||
Withdraw | 14300733 | 1001 days ago | IN | 0 ETH | 0.0028913 | ||||
Withdraw | 13881237 | 1066 days ago | IN | 0 ETH | 0.0045962 | ||||
Withdraw | 13874791 | 1067 days ago | IN | 0 ETH | 0.01041324 | ||||
Withdraw | 13861955 | 1069 days ago | IN | 0 ETH | 0.00951244 | ||||
Withdraw | 13804035 | 1078 days ago | IN | 0 ETH | 0.00498504 | ||||
Withdraw | 13787925 | 1080 days ago | IN | 0 ETH | 0.00601064 | ||||
Withdraw | 13783836 | 1081 days ago | IN | 0 ETH | 0.00447393 | ||||
Withdraw | 13691807 | 1096 days ago | IN | 0 ETH | 0.01284214 | ||||
Withdraw | 13686321 | 1096 days ago | IN | 0 ETH | 0.0111889 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
SmartChef
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-04-28 */ /** *Submitted for verification at BscScan.com on 2021-03-08 */ // File: @pancakeswap/pancake-swap-lib/contracts/math/SafeMath.sol pragma solidity >=0.4.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; } function min(uint256 x, uint256 y) internal pure returns (uint256 z) { z = x < y ? x : y; } // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method) function sqrt(uint256 y) internal pure returns (uint256 z) { if (y > 3) { z = y; uint256 x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } } } // File: @pancakeswap/pancake-swap-lib/contracts/token/BEP20/IBEP20.sol pragma solidity >=0.4.0; interface IBEP20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address); /** * @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); } // File: @pancakeswap/pancake-swap-lib/contracts/utils/Address.sol 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'); } /** * @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); } } } } // File: @pancakeswap/pancake-swap-lib/contracts/token/BEP20/SafeBEP20.sol pragma solidity ^0.6.0; /** * @title SafeBEP20 * @dev Wrappers around BEP20 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 SafeBEP20 for IBEP20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeBEP20 { using SafeMath for uint256; using Address for address; function safeTransfer( IBEP20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IBEP20 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 * {IBEP20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IBEP20 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), 'SafeBEP20: approve from non-zero to non-zero allowance' ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IBEP20 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( IBEP20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender).sub( value, 'SafeBEP20: 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(IBEP20 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, 'SafeBEP20: low-level call failed'); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), 'SafeBEP20: BEP20 operation did not succeed'); } } } // File: @pancakeswap/pancake-swap-lib/contracts/GSN/Context.sol pragma solidity >=0.4.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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor() internal {} function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @pancakeswap/pancake-swap-lib/contracts/access/Ownable.sol pragma solidity >=0.4.0; /** * @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 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 onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), 'Ownable: new owner is the zero address'); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/SmartChef.sol pragma solidity 0.6.12; // import "@nomiclabs/buidler/console.sol"; contract SmartChef is Ownable { using SafeMath for uint256; using SafeBEP20 for IBEP20; // Info of each user. struct UserInfo { uint256 amount; // How many LP tokens the user has provided. uint256 rewardDebt; // Reward debt. See explanation below. } // Info of each pool. struct PoolInfo { IBEP20 lpToken; // Address of LP token contract. uint256 allocPoint; // How many allocation points assigned to this pool. CAKEs to distribute per block. uint256 lastRewardBlock; // Last block number that CAKEs distribution occurs. uint256 accCakePerShare; // Accumulated CAKEs per share, times 1e12. See below. } // The CAKE TOKEN! IBEP20 public syrup; IBEP20 public rewardToken; // uint256 public maxStaking; // CAKE tokens created per block. uint256 public rewardPerBlock; // Info of each pool. PoolInfo[] public poolInfo; // Info of each user that stakes LP tokens. mapping (address => UserInfo) public userInfo; // Total allocation poitns. Must be the sum of all allocation points in all pools. uint256 private totalAllocPoint = 0; // The block number when CAKE mining starts. uint256 public startBlock; // The block number when CAKE mining ends. uint256 public bonusEndBlock; event Deposit(address indexed user, uint256 amount); event Withdraw(address indexed user, uint256 amount); event EmergencyWithdraw(address indexed user, uint256 amount); constructor( IBEP20 _syrup, IBEP20 _rewardToken, uint256 _rewardPerBlock, uint256 _startBlock, uint256 _bonusEndBlock ) public { syrup = _syrup; rewardToken = _rewardToken; rewardPerBlock = _rewardPerBlock; startBlock = _startBlock; bonusEndBlock = _bonusEndBlock; // staking pool poolInfo.push(PoolInfo({ lpToken: _syrup, allocPoint: 1000, lastRewardBlock: startBlock, accCakePerShare: 0 })); totalAllocPoint = 1000; // maxStaking = 50000000000000000000; } function stopReward() public onlyOwner { bonusEndBlock = block.number; } // Return reward multiplier over the given _from to _to block. function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) { if (_to <= bonusEndBlock) { return _to.sub(_from); } else if (_from >= bonusEndBlock) { return 0; } else { return bonusEndBlock.sub(_from); } } // View function to see pending Reward on frontend. function pendingReward(address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[0]; UserInfo storage user = userInfo[_user]; uint256 accCakePerShare = pool.accCakePerShare; uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (block.number > pool.lastRewardBlock && lpSupply != 0) { uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 cakeReward = multiplier.mul(rewardPerBlock).mul(pool.allocPoint).div(totalAllocPoint); accCakePerShare = accCakePerShare.add(cakeReward.mul(1e12).div(lpSupply)); } return user.amount.mul(accCakePerShare).div(1e12).sub(user.rewardDebt); } // Update reward variables of the given pool to be up-to-date. function updatePool(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; if (block.number <= pool.lastRewardBlock) { return; } uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (lpSupply == 0) { pool.lastRewardBlock = block.number; return; } uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 cakeReward = multiplier.mul(rewardPerBlock).mul(pool.allocPoint).div(totalAllocPoint); pool.accCakePerShare = pool.accCakePerShare.add(cakeReward.mul(1e12).div(lpSupply)); pool.lastRewardBlock = block.number; } // Update reward variables for all pools. Be careful of gas spending! function massUpdatePools() public { uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { updatePool(pid); } } // Stake SYRUP tokens to SmartChef function deposit(uint256 _amount) public { PoolInfo storage pool = poolInfo[0]; UserInfo storage user = userInfo[msg.sender]; // require (_amount.add(user.amount) <= maxStaking, 'exceed max stake'); updatePool(0); if (user.amount > 0) { uint256 pending = user.amount.mul(pool.accCakePerShare).div(1e12).sub(user.rewardDebt); if(pending > 0) { rewardToken.safeTransfer(address(msg.sender), pending); } } if(_amount > 0) { pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount); user.amount = user.amount.add(_amount); } user.rewardDebt = user.amount.mul(pool.accCakePerShare).div(1e12); emit Deposit(msg.sender, _amount); } // Withdraw SYRUP tokens from STAKING. function withdraw(uint256 _amount) public { PoolInfo storage pool = poolInfo[0]; UserInfo storage user = userInfo[msg.sender]; require(user.amount >= _amount, "withdraw: not good"); updatePool(0); uint256 pending = user.amount.mul(pool.accCakePerShare).div(1e12).sub(user.rewardDebt); if(pending > 0) { rewardToken.safeTransfer(address(msg.sender), pending); } if(_amount > 0) { user.amount = user.amount.sub(_amount); pool.lpToken.safeTransfer(address(msg.sender), _amount); } user.rewardDebt = user.amount.mul(pool.accCakePerShare).div(1e12); emit Withdraw(msg.sender, _amount); } // Withdraw without caring about rewards. EMERGENCY ONLY. function emergencyWithdraw() public { PoolInfo storage pool = poolInfo[0]; UserInfo storage user = userInfo[msg.sender]; pool.lpToken.safeTransfer(address(msg.sender), user.amount); user.amount = 0; user.rewardDebt = 0; emit EmergencyWithdraw(msg.sender, user.amount); } // Withdraw reward. EMERGENCY ONLY. function emergencyRewardWithdraw(uint256 _amount) public onlyOwner { require(_amount < rewardToken.balanceOf(address(this)), 'not enough token'); rewardToken.safeTransfer(address(msg.sender), _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IBEP20","name":"_syrup","type":"address"},{"internalType":"contract IBEP20","name":"_rewardToken","type":"address"},{"internalType":"uint256","name":"_rewardPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_bonusEndBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"bonusEndBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"emergencyRewardWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"pendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IBEP20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accCakePerShare","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"contract IBEP20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stopReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"syrup","outputs":[{"internalType":"contract IBEP20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600060065534801561001557600080fd5b506040516114e33803806114e3833981810160405260a081101561003857600080fd5b5080516020820151604083015160608401516080909401519293919290919060006100616101d1565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b039687166001600160a01b03199182168117835560028054978916978316979097179096556003949094556007839055600891909155604080516080810182529485526103e86020860181815291860193845260006060870181815260048054958601815591829052965193027f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b8101805494909816939095169290921790955593517f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19c830155517f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19d82015590517f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19e909101556006556101d5565b3390565b6112ff806101e46000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806380dc0672116100ad578063b6b55f2511610071578063b6b55f251461029c578063db2e21bc146102b9578063f2fde38b146102c1578063f40f0f52146102e7578063f7c618c11461030d57610121565b806380dc06721461023d57806386a952c4146102455780638ae39cac146102695780638da5cb5b146102715780638dbb1e3a1461027957610121565b80633279beab116100f45780633279beab146101eb57806348cd4cb11461020857806351eb05a614610210578063630b5ba11461022d578063715018a61461023557610121565b80631526fe27146101265780631959a002146101735780631aed6553146101b25780632e1a7d4d146101cc575b600080fd5b6101436004803603602081101561013c57600080fd5b5035610315565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b6101996004803603602081101561018957600080fd5b50356001600160a01b0316610356565b6040805192835260208301919091528051918290030190f35b6101ba61036f565b60408051918252519081900360200190f35b6101e9600480360360208110156101e257600080fd5b5035610375565b005b6101e96004803603602081101561020157600080fd5b50356104da565b6101ba610609565b6101e96004803603602081101561022657600080fd5b503561060f565b6101e961073e565b6101e9610761565b6101e9610803565b61024d610861565b604080516001600160a01b039092168252519081900360200190f35b6101ba610870565b61024d610876565b6101ba6004803603604081101561028f57600080fd5b5080359060200135610885565b6101e9600480360360208110156102b257600080fd5b50356108c5565b6101e96109da565b6101e9600480360360208110156102d757600080fd5b50356001600160a01b0316610a6d565b6101ba600480360360208110156102fd57600080fd5b50356001600160a01b0316610ace565b61024d610c26565b6004818154811061032257fe5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b6005602052600090815260409020805460019091015482565b60085481565b6000600460008154811061038557fe5b60009182526020808320338452600590915260409092208054600490920290920192508311156103f1576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b6103fb600061060f565b6000610435826001015461042f64e8d4a5100061042987600301548760000154610c3590919063ffffffff16565b90610c95565b90610cd7565b9050801561045457600254610454906001600160a01b03163383610d19565b831561047e5781546104669085610cd7565b8255825461047e906001600160a01b03163386610d19565b600383015482546104999164e8d4a510009161042991610c35565b600183015560408051858152905133917f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364919081900360200190a250505050565b6104e2610d70565b6000546001600160a01b03908116911614610532576040805162461bcd60e51b815260206004820181905260248201526000805160206112aa833981519152604482015290519081900360640190fd5b600254604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561057d57600080fd5b505afa158015610591573d6000803e3d6000fd5b505050506040513d60208110156105a757600080fd5b505181106105ef576040805162461bcd60e51b815260206004820152601060248201526f3737ba1032b737bab3b4103a37b5b2b760811b604482015290519081900360640190fd5b600254610606906001600160a01b03163383610d19565b50565b60075481565b60006004828154811061061e57fe5b906000526020600020906004020190508060020154431161063f5750610606565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561068957600080fd5b505afa15801561069d573d6000803e3d6000fd5b505050506040513d60208110156106b357600080fd5b50519050806106c9575043600290910155610606565b60006106d9836002015443610885565b90506000610706600654610429866001015461070060035487610c3590919063ffffffff16565b90610c35565b905061072961071e846104298464e8d4a51000610c35565b600386015490610d74565b60038501555050436002909201919091555050565b60045460005b8181101561075d576107558161060f565b600101610744565b5050565b610769610d70565b6000546001600160a01b039081169116146107b9576040805162461bcd60e51b815260206004820181905260248201526000805160206112aa833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61080b610d70565b6000546001600160a01b0390811691161461085b576040805162461bcd60e51b815260206004820181905260248201526000805160206112aa833981519152604482015290519081900360640190fd5b43600855565b6001546001600160a01b031681565b60035481565b6000546001600160a01b031690565b600060085482116108a15761089a8284610cd7565b90506108bf565b60085483106108b2575060006108bf565b60085461089a9084610cd7565b92915050565b600060046000815481106108d557fe5b600091825260208083203384526005909152604083206004909202019250906108fd9061060f565b805415610953576000610932826001015461042f64e8d4a5100061042987600301548760000154610c3590919063ffffffff16565b9050801561095157600254610951906001600160a01b03163383610d19565b505b821561097f578154610970906001600160a01b0316333086610dce565b805461097c9084610d74565b81555b6003820154815461099a9164e8d4a510009161042991610c35565b600182015560408051848152905133917fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c919081900360200190a2505050565b600060046000815481106109ea57fe5b600091825260208083203380855260059092526040909320805460049093029093018054909450610a28926001600160a01b03919091169190610d19565b600080825560018201819055604080519182525133917f5fafa99d0643513820be26656b45130b01e1c03062e1266bf36f88cbd3bd9695919081900360200190a25050565b610a75610d70565b6000546001600160a01b03908116911614610ac5576040805162461bcd60e51b815260206004820181905260248201526000805160206112aa833981519152604482015290519081900360640190fd5b61060681610e2e565b6000806004600081548110610adf57fe5b600091825260208083206001600160a01b03878116855260058352604080862060049586029093016003810154815483516370a0823160e01b81523098810198909852925191985093969395939491909216926370a082319260248083019392829003018186803b158015610b5357600080fd5b505afa158015610b67573d6000803e3d6000fd5b505050506040513d6020811015610b7d57600080fd5b5051600285015490915043118015610b9457508015155b15610bf4576000610ba9856002015443610885565b90506000610bd0600654610429886001015461070060035487610c3590919063ffffffff16565b9050610bef610be8846104298464e8d4a51000610c35565b8590610d74565b935050505b610c1c836001015461042f64e8d4a51000610429868860000154610c3590919063ffffffff16565b9695505050505050565b6002546001600160a01b031681565b600082610c44575060006108bf565b82820282848281610c5157fe5b0414610c8e5760405162461bcd60e51b81526004018080602001828103825260218152602001806112896021913960400191505060405180910390fd5b9392505050565b6000610c8e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610ece565b6000610c8e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f70565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610d6b908490610fca565b505050565b3390565b600082820183811015610c8e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610e28908590610fca565b50505050565b6001600160a01b038116610e735760405162461bcd60e51b81526004018080602001828103825260268152602001806112636026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008183610f5a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610f1f578181015183820152602001610f07565b50505050905090810190601f168015610f4c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581610f6657fe5b0495945050505050565b60008184841115610fc25760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610f1f578181015183820152602001610f07565b505050900390565b606061101f826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661107b9092919063ffffffff16565b805190915015610d6b5780806020019051602081101561103e57600080fd5b5051610d6b5760405162461bcd60e51b815260040180806020018281038252602a815260200180611239602a913960400191505060405180910390fd5b606061108a8484600085611092565b949350505050565b606061109d856111ff565b6110ee576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061112d5780518252601f19909201916020918201910161110e565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461118f576040519150601f19603f3d011682016040523d82523d6000602084013e611194565b606091505b509150915081156111a857915061108a9050565b8051156111b85780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315610f1f578181015183820152602001610f07565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061108a57505015159291505056fe5361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220db8fda73185b20f3f9c03eca4edeb3380f44f4fa16d721acc1189e26bad8b89d64736f6c634300060c0033000000000000000000000000cc4304a31d09258b0029ea7fe63d032f52e44efe00000000000000000000000071ba91dc68c6a206db0a6a92b4b1de3f9271432d0000000000000000000000000000000000000000000000056bc75e2d631000000000000000000000000000000000000000000000000000000000000000bc1bdc0000000000000000000000000000000000000000000000000000000000c53c65
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c806380dc0672116100ad578063b6b55f2511610071578063b6b55f251461029c578063db2e21bc146102b9578063f2fde38b146102c1578063f40f0f52146102e7578063f7c618c11461030d57610121565b806380dc06721461023d57806386a952c4146102455780638ae39cac146102695780638da5cb5b146102715780638dbb1e3a1461027957610121565b80633279beab116100f45780633279beab146101eb57806348cd4cb11461020857806351eb05a614610210578063630b5ba11461022d578063715018a61461023557610121565b80631526fe27146101265780631959a002146101735780631aed6553146101b25780632e1a7d4d146101cc575b600080fd5b6101436004803603602081101561013c57600080fd5b5035610315565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b6101996004803603602081101561018957600080fd5b50356001600160a01b0316610356565b6040805192835260208301919091528051918290030190f35b6101ba61036f565b60408051918252519081900360200190f35b6101e9600480360360208110156101e257600080fd5b5035610375565b005b6101e96004803603602081101561020157600080fd5b50356104da565b6101ba610609565b6101e96004803603602081101561022657600080fd5b503561060f565b6101e961073e565b6101e9610761565b6101e9610803565b61024d610861565b604080516001600160a01b039092168252519081900360200190f35b6101ba610870565b61024d610876565b6101ba6004803603604081101561028f57600080fd5b5080359060200135610885565b6101e9600480360360208110156102b257600080fd5b50356108c5565b6101e96109da565b6101e9600480360360208110156102d757600080fd5b50356001600160a01b0316610a6d565b6101ba600480360360208110156102fd57600080fd5b50356001600160a01b0316610ace565b61024d610c26565b6004818154811061032257fe5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b6005602052600090815260409020805460019091015482565b60085481565b6000600460008154811061038557fe5b60009182526020808320338452600590915260409092208054600490920290920192508311156103f1576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b6103fb600061060f565b6000610435826001015461042f64e8d4a5100061042987600301548760000154610c3590919063ffffffff16565b90610c95565b90610cd7565b9050801561045457600254610454906001600160a01b03163383610d19565b831561047e5781546104669085610cd7565b8255825461047e906001600160a01b03163386610d19565b600383015482546104999164e8d4a510009161042991610c35565b600183015560408051858152905133917f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364919081900360200190a250505050565b6104e2610d70565b6000546001600160a01b03908116911614610532576040805162461bcd60e51b815260206004820181905260248201526000805160206112aa833981519152604482015290519081900360640190fd5b600254604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561057d57600080fd5b505afa158015610591573d6000803e3d6000fd5b505050506040513d60208110156105a757600080fd5b505181106105ef576040805162461bcd60e51b815260206004820152601060248201526f3737ba1032b737bab3b4103a37b5b2b760811b604482015290519081900360640190fd5b600254610606906001600160a01b03163383610d19565b50565b60075481565b60006004828154811061061e57fe5b906000526020600020906004020190508060020154431161063f5750610606565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561068957600080fd5b505afa15801561069d573d6000803e3d6000fd5b505050506040513d60208110156106b357600080fd5b50519050806106c9575043600290910155610606565b60006106d9836002015443610885565b90506000610706600654610429866001015461070060035487610c3590919063ffffffff16565b90610c35565b905061072961071e846104298464e8d4a51000610c35565b600386015490610d74565b60038501555050436002909201919091555050565b60045460005b8181101561075d576107558161060f565b600101610744565b5050565b610769610d70565b6000546001600160a01b039081169116146107b9576040805162461bcd60e51b815260206004820181905260248201526000805160206112aa833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61080b610d70565b6000546001600160a01b0390811691161461085b576040805162461bcd60e51b815260206004820181905260248201526000805160206112aa833981519152604482015290519081900360640190fd5b43600855565b6001546001600160a01b031681565b60035481565b6000546001600160a01b031690565b600060085482116108a15761089a8284610cd7565b90506108bf565b60085483106108b2575060006108bf565b60085461089a9084610cd7565b92915050565b600060046000815481106108d557fe5b600091825260208083203384526005909152604083206004909202019250906108fd9061060f565b805415610953576000610932826001015461042f64e8d4a5100061042987600301548760000154610c3590919063ffffffff16565b9050801561095157600254610951906001600160a01b03163383610d19565b505b821561097f578154610970906001600160a01b0316333086610dce565b805461097c9084610d74565b81555b6003820154815461099a9164e8d4a510009161042991610c35565b600182015560408051848152905133917fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c919081900360200190a2505050565b600060046000815481106109ea57fe5b600091825260208083203380855260059092526040909320805460049093029093018054909450610a28926001600160a01b03919091169190610d19565b600080825560018201819055604080519182525133917f5fafa99d0643513820be26656b45130b01e1c03062e1266bf36f88cbd3bd9695919081900360200190a25050565b610a75610d70565b6000546001600160a01b03908116911614610ac5576040805162461bcd60e51b815260206004820181905260248201526000805160206112aa833981519152604482015290519081900360640190fd5b61060681610e2e565b6000806004600081548110610adf57fe5b600091825260208083206001600160a01b03878116855260058352604080862060049586029093016003810154815483516370a0823160e01b81523098810198909852925191985093969395939491909216926370a082319260248083019392829003018186803b158015610b5357600080fd5b505afa158015610b67573d6000803e3d6000fd5b505050506040513d6020811015610b7d57600080fd5b5051600285015490915043118015610b9457508015155b15610bf4576000610ba9856002015443610885565b90506000610bd0600654610429886001015461070060035487610c3590919063ffffffff16565b9050610bef610be8846104298464e8d4a51000610c35565b8590610d74565b935050505b610c1c836001015461042f64e8d4a51000610429868860000154610c3590919063ffffffff16565b9695505050505050565b6002546001600160a01b031681565b600082610c44575060006108bf565b82820282848281610c5157fe5b0414610c8e5760405162461bcd60e51b81526004018080602001828103825260218152602001806112896021913960400191505060405180910390fd5b9392505050565b6000610c8e83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610ece565b6000610c8e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610f70565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610d6b908490610fca565b505050565b3390565b600082820183811015610c8e576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610e28908590610fca565b50505050565b6001600160a01b038116610e735760405162461bcd60e51b81526004018080602001828103825260268152602001806112636026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008183610f5a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610f1f578181015183820152602001610f07565b50505050905090810190601f168015610f4c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581610f6657fe5b0495945050505050565b60008184841115610fc25760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610f1f578181015183820152602001610f07565b505050900390565b606061101f826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661107b9092919063ffffffff16565b805190915015610d6b5780806020019051602081101561103e57600080fd5b5051610d6b5760405162461bcd60e51b815260040180806020018281038252602a815260200180611239602a913960400191505060405180910390fd5b606061108a8484600085611092565b949350505050565b606061109d856111ff565b6110ee576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b6020831061112d5780518252601f19909201916020918201910161110e565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461118f576040519150601f19603f3d011682016040523d82523d6000602084013e611194565b606091505b509150915081156111a857915061108a9050565b8051156111b85780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315610f1f578181015183820152602001610f07565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061108a57505015159291505056fe5361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220db8fda73185b20f3f9c03eca4edeb3380f44f4fa16d721acc1189e26bad8b89d64736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000cc4304a31d09258b0029ea7fe63d032f52e44efe00000000000000000000000071ba91dc68c6a206db0a6a92b4b1de3f9271432d0000000000000000000000000000000000000000000000056bc75e2d631000000000000000000000000000000000000000000000000000000000000000bc1bdc0000000000000000000000000000000000000000000000000000000000c53c65
-----Decoded View---------------
Arg [0] : _syrup (address): 0xCC4304A31d09258b0029eA7FE63d032f52e44EFe
Arg [1] : _rewardToken (address): 0x71ba91dC68C6a206Db0A6A92B4b1De3f9271432d
Arg [2] : _rewardPerBlock (uint256): 100000000000000000000
Arg [3] : _startBlock (uint256): 12327900
Arg [4] : _bonusEndBlock (uint256): 12926053
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000cc4304a31d09258b0029ea7fe63d032f52e44efe
Arg [1] : 00000000000000000000000071ba91dc68c6a206db0a6a92b4b1de3f9271432d
Arg [2] : 0000000000000000000000000000000000000000000000056bc75e2d63100000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000bc1bdc
Arg [4] : 0000000000000000000000000000000000000000000000000000000000c53c65
Deployed Bytecode Sourcemap
23566:6875:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24520:26;;;;;;;;;;;;;;;;-1:-1:-1;24520:26:0;;:::i;:::-;;;;-1:-1:-1;;;;;24520:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24602:45;;;;;;;;;;;;;;;;-1:-1:-1;24602:45:0;-1:-1:-1;;;;;24602:45:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;24914:28;;;:::i;:::-;;;;;;;;;;;;;;;;29034:727;;;;;;;;;;;;;;;;-1:-1:-1;29034:727:0;;:::i;:::-;;30210:226;;;;;;;;;;;;;;;;-1:-1:-1;30210:226:0;;:::i;24834:25::-;;;:::i;27157:687::-;;;;;;;;;;;;;;;;-1:-1:-1;27157:687:0;;:::i;27927:180::-;;;:::i;22700:140::-;;;:::i;25806:86::-;;;:::i;24319:19::-;;;:::i;:::-;;;;-1:-1:-1;;;;;24319:19:0;;;;;;;;;;;;;;24455:29;;;:::i;22058:79::-;;;:::i;25970:306::-;;;;;;;;;;;;;;;;-1:-1:-1;25970:306:0;;;;;;;:::i;28157:825::-;;;;;;;;;;;;;;;;-1:-1:-1;28157:825:0;;:::i;29832:329::-;;;:::i;22995:109::-;;;;;;;;;;;;;;;;-1:-1:-1;22995:109:0;-1:-1:-1;;;;;22995:109:0;;:::i;26341:740::-;;;;;;;;;;;;;;;;-1:-1:-1;26341:740:0;-1:-1:-1;;;;;26341:740:0;;:::i;24345:25::-;;;:::i;24520:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24520:26:0;;;;-1:-1:-1;24520:26:0;;;:::o;24602:45::-;;;;;;;;;;;;;;;;;;;:::o;24914:28::-;;;;:::o;29034:727::-;29087:21;29111:8;29120:1;29111:11;;;;;;;;;;;;;;;;29166:10;29157:20;;:8;:20;;;;;;;29196:11;;29111;;;;;;;;-1:-1:-1;29196:22:0;-1:-1:-1;29196:22:0;29188:53;;;;;-1:-1:-1;;;29188:53:0;;;;;;;;;;;;-1:-1:-1;;;29188:53:0;;;;;;;;;;;;;;;29252:13;29263:1;29252:10;:13::i;:::-;29276:15;29294:68;29346:4;:15;;;29294:47;29336:4;29294:37;29310:4;:20;;;29294:4;:11;;;:15;;:37;;;;:::i;:::-;:41;;:47::i;:::-;:51;;:68::i;:::-;29276:86;-1:-1:-1;29376:11:0;;29373:97;;29404:11;;:54;;-1:-1:-1;;;;;29404:11:0;29437:10;29450:7;29404:24;:54::i;:::-;29483:11;;29480:151;;29525:11;;:24;;29541:7;29525:15;:24::i;:::-;29511:38;;29564:12;;:55;;-1:-1:-1;;;;;29564:12:0;29598:10;29611:7;29564:25;:55::i;:::-;29675:20;;;;29659:11;;:47;;29701:4;;29659:37;;:15;:37::i;:47::-;29641:15;;;:65;29724:29;;;;;;;;29733:10;;29724:29;;;;;;;;;;29034:727;;;;:::o;30210:226::-;22280:12;:10;:12::i;:::-;22270:6;;-1:-1:-1;;;;;22270:6:0;;;:22;;;22262:67;;;;;-1:-1:-1;;;22262:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22262:67:0;;;;;;;;;;;;;;;30306:11:::1;::::0;:36:::1;::::0;;-1:-1:-1;;;30306:36:0;;30336:4:::1;30306:36;::::0;::::1;::::0;;;-1:-1:-1;;;;;30306:11:0;;::::1;::::0;:21:::1;::::0;:36;;;;;::::1;::::0;;;;;;;;;:11;:36;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;30306:36:0;30296:46;::::1;30288:75;;;::::0;;-1:-1:-1;;;30288:75:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;30288:75:0;;;;;;;;;;;;;::::1;;30374:11;::::0;:54:::1;::::0;-1:-1:-1;;;;;30374:11:0::1;30407:10;30420:7:::0;30374:24:::1;:54::i;:::-;30210:226:::0;:::o;24834:25::-;;;;:::o;27157:687::-;27209:21;27233:8;27242:4;27233:14;;;;;;;;;;;;;;;;;;27209:38;;27278:4;:20;;;27262:12;:36;27258:75;;27315:7;;;27258:75;27362:12;;:37;;;-1:-1:-1;;;27362:37:0;;27393:4;27362:37;;;;;;27343:16;;-1:-1:-1;;;;;27362:12:0;;:22;;:37;;;;;;;;;;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27362:37:0;;-1:-1:-1;27414:13:0;27410:102;;-1:-1:-1;27467:12:0;27444:20;;;;:35;27494:7;;27410:102;27522:18;27543:49;27557:4;:20;;;27579:12;27543:13;:49::i;:::-;27522:70;;27603:18;27624:72;27680:15;;27624:51;27659:4;:15;;;27624:30;27639:14;;27624:10;:14;;:30;;;;:::i;:::-;:34;;:51::i;:72::-;27603:93;-1:-1:-1;27730:60:0;27755:34;27780:8;27755:20;27603:93;27770:4;27755:14;:20::i;:34::-;27730:20;;;;;:24;:60::i;:::-;27707:20;;;:83;-1:-1:-1;;27824:12:0;27801:20;;;;:35;;;;-1:-1:-1;27157:687:0;:::o;27927:180::-;27989:8;:15;27972:14;28015:85;28043:6;28037:3;:12;28015:85;;;28073:15;28084:3;28073:10;:15::i;:::-;28051:5;;28015:85;;;;27927:180;:::o;22700:140::-;22280:12;:10;:12::i;:::-;22270:6;;-1:-1:-1;;;;;22270:6:0;;;:22;;;22262:67;;;;;-1:-1:-1;;;22262:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22262:67:0;;;;;;;;;;;;;;;22799:1:::1;22783:6:::0;;22762:40:::1;::::0;-1:-1:-1;;;;;22783:6:0;;::::1;::::0;22762:40:::1;::::0;22799:1;;22762:40:::1;22830:1;22813:19:::0;;-1:-1:-1;;;;;;22813:19:0::1;::::0;;22700:140::o;25806:86::-;22280:12;:10;:12::i;:::-;22270:6;;-1:-1:-1;;;;;22270:6:0;;;:22;;;22262:67;;;;;-1:-1:-1;;;22262:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22262:67:0;;;;;;;;;;;;;;;25872:12:::1;25856:13;:28:::0;25806:86::o;24319:19::-;;;-1:-1:-1;;;;;24319:19:0;;:::o;24455:29::-;;;;:::o;22058:79::-;22096:7;22123:6;-1:-1:-1;;;;;22123:6:0;22058:79;:::o;25970:306::-;26042:7;26073:13;;26066:3;:20;26062:207;;26110:14;:3;26118:5;26110:7;:14::i;:::-;26103:21;;;;26062:207;26155:13;;26146:5;:22;26142:127;;-1:-1:-1;26192:1:0;26185:8;;26142:127;26233:13;;:24;;26251:5;26233:17;:24::i;26142:127::-;25970:306;;;;:::o;28157:825::-;28209:21;28233:8;28242:1;28233:11;;;;;;;;;;;;;;;;28288:10;28279:20;;:8;:20;;;;;;28233:11;;;;;;-1:-1:-1;28279:20:0;28396:13;;:10;:13::i;:::-;28424:11;;:15;28420:253;;28456:15;28474:68;28526:4;:15;;;28474:47;28516:4;28474:37;28490:4;:20;;;28474:4;:11;;;:15;;:37;;;;:::i;:68::-;28456:86;-1:-1:-1;28560:11:0;;28557:105;;28592:11;;:54;;-1:-1:-1;;;;;28592:11:0;28625:10;28638:7;28592:24;:54::i;:::-;28420:253;;28686:11;;28683:170;;28714:12;;:74;;-1:-1:-1;;;;;28714:12:0;28752:10;28773:4;28780:7;28714:29;:74::i;:::-;28817:11;;:24;;28833:7;28817:15;:24::i;:::-;28803:38;;28683:170;28897:20;;;;28881:11;;:47;;28923:4;;28881:37;;:15;:37::i;:47::-;28863:15;;;:65;28946:28;;;;;;;;28954:10;;28946:28;;;;;;;;;;28157:825;;;:::o;29832:329::-;29879:21;29903:8;29912:1;29903:11;;;;;;;;;;;;;;;;29958:10;29949:20;;;:8;:20;;;;;;;30027:11;;29903;;;;;;;29980:12;;29903:11;;-1:-1:-1;29980:59:0;;-1:-1:-1;;;;;29980:12:0;;;;;29958:10;29980:25;:59::i;:::-;30064:1;30050:15;;;30076;;;:19;;;30111:42;;;;;;;30129:10;;30111:42;;;;;;;;;;29832:329;;:::o;22995:109::-;22280:12;:10;:12::i;:::-;22270:6;;-1:-1:-1;;;;;22270:6:0;;;:22;;;22262:67;;;;;-1:-1:-1;;;22262:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22262:67:0;;;;;;;;;;;;;;;23068:28:::1;23087:8;23068:18;:28::i;26341:740::-:0;26402:7;26422:21;26446:8;26455:1;26446:11;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26492:15:0;;;;;:8;:15;;;;;;26446:11;;;;;;;26544:20;;;;26594:12;;:37;;-1:-1:-1;;;26594:37:0;;26625:4;26594:37;;;;;;;;;26446:11;;-1:-1:-1;26492:15:0;;26544:20;;26446:11;;26594:12;;;;;:22;;:37;;;;;26446:11;26594:37;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26594:37:0;26661:20;;;;26594:37;;-1:-1:-1;26646:12:0;:35;:52;;;;-1:-1:-1;26685:13:0;;;26646:52;26642:351;;;26715:18;26736:49;26750:4;:20;;;26772:12;26736:13;:49::i;:::-;26715:70;;26800:18;26821:72;26877:15;;26821:51;26856:4;:15;;;26821:30;26836:14;;26821:10;:14;;:30;;;;:::i;:72::-;26800:93;-1:-1:-1;26926:55:0;26946:34;26971:8;26946:20;26800:93;26961:4;26946:14;:20::i;:34::-;26926:15;;:19;:55::i;:::-;26908:73;;26642:351;;;27010:63;27057:4;:15;;;27010:42;27047:4;27010:32;27026:15;27010:4;:11;;;:15;;:32;;;;:::i;:63::-;27003:70;26341:740;-1:-1:-1;;;;;;26341:740:0:o;24345:25::-;;;-1:-1:-1;;;;;24345:25:0;;:::o;2398:471::-;2456:7;2701:6;2697:47;;-1:-1:-1;2731:1:0;2724:8;;2697:47;2768:5;;;2772:1;2768;:5;:1;2792:5;;;;;:10;2784:56;;;;-1:-1:-1;;;2784:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2860:1;2398:471;-1:-1:-1;;;2398:471:0:o;3345:132::-;3403:7;3430:39;3434:1;3437;3430:39;;;;;;;;;;;;;;;;;:3;:39::i;1474:136::-;1532:7;1559:43;1563:1;1566;1559:43;;;;;;;;;;;;;;;;;:3;:43::i;16473:211::-;16617:58;;;-1:-1:-1;;;;;16617:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16617:58:0;-1:-1:-1;;;16617:58:0;;;16590:86;;16610:5;;16590:19;:86::i;:::-;16473:211;;;:::o;20610:98::-;20690:10;20610:98;:::o;1010:181::-;1068:7;1100:5;;;1124:6;;;;1116:46;;;;;-1:-1:-1;;;1116:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;16692:248;16863:68;;;-1:-1:-1;;;;;16863:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16863:68:0;-1:-1:-1;;;16863:68:0;;;16836:96;;16856:5;;16836:19;:96::i;:::-;16692:248;;;;:::o;23210:229::-;-1:-1:-1;;;;;23284:22:0;;23276:73;;;;-1:-1:-1;;;23276:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23386:6;;;23365:38;;-1:-1:-1;;;;;23365:38:0;;;;23386:6;;;23365:38;;;23414:6;:17;;-1:-1:-1;;;;;;23414:17:0;-1:-1:-1;;;;;23414:17:0;;;;;;;;;;23210:229::o;3973:312::-;4093:7;4128:12;4121:5;4113:28;;;;-1:-1:-1;;;4113:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4152:9;4168:1;4164;:5;;;;;;;3973:312;-1:-1:-1;;;;;3973:312:0:o;1913:226::-;2033:7;2069:12;2061:6;;;;2053:29;;;;-1:-1:-1;;;2053:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2105:5:0;;;1913:226::o;19008:774::-;19432:23;19458:69;19486:4;19458:69;;;;;;;;;;;;;;;;;19466:5;-1:-1:-1;;;;;19458:27:0;;;:69;;;;;:::i;:::-;19542:17;;19432:95;;-1:-1:-1;19542:21:0;19538:237;;19697:10;19686:30;;;;;;;;;;;;;;;-1:-1:-1;19686:30:0;19678:85;;;;-1:-1:-1;;;19678:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13286:230;13423:12;13455:53;13478:6;13486:4;13492:1;13495:12;13455:22;:53::i;:::-;13448:60;13286:230;-1:-1:-1;;;;13286:230:0:o;14774:1020::-;14947:12;14980:18;14991:6;14980:10;:18::i;:::-;14972:60;;;;;-1:-1:-1;;;14972:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15106:12;15120:23;15147:6;-1:-1:-1;;;;;15147:11:0;15166:8;15176:4;15147:34;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;15147:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15105:76;;;;15196:7;15192:595;;;15227:10;-1:-1:-1;15220:17:0;;-1:-1:-1;15220:17:0;15192:595;15341:17;;:21;15337:439;;15604:10;15598:17;15665:15;15652:10;15648:2;15644:19;15637:44;15552:148;15740:20;;-1:-1:-1;;;15740:20:0;;;;;;;;;;;;;;;;;15747:12;;15740:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10149:641;10209:4;10690:20;;10520:66;10739:23;;;;;;:42;;-1:-1:-1;;10766:15:0;;;10731:51;-1:-1:-1;;10149:641:0:o
Swarm Source
ipfs://db8fda73185b20f3f9c03eca4edeb3380f44f4fa16d721acc1189e26bad8b89d
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.