Source Code
Latest 25 from a total of 80 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Leave Staking | 15418588 | 1209 days ago | IN | 0 ETH | 0.00094593 | ||||
| Deposit | 15413619 | 1210 days ago | IN | 0 ETH | 0.00019198 | ||||
| Enter Staking | 15345714 | 1221 days ago | IN | 0 ETH | 0.00151796 | ||||
| Leave Staking | 14466161 | 1362 days ago | IN | 0 ETH | 0.00280357 | ||||
| Leave Staking | 14465609 | 1362 days ago | IN | 0 ETH | 0.00324017 | ||||
| Withdraw | 14461472 | 1363 days ago | IN | 0 ETH | 0.00476041 | ||||
| Leave Staking | 14460797 | 1363 days ago | IN | 0 ETH | 0.00441427 | ||||
| Leave Staking | 14459761 | 1363 days ago | IN | 0 ETH | 0.00384439 | ||||
| Leave Staking | 14459724 | 1363 days ago | IN | 0 ETH | 0.00374612 | ||||
| Withdraw | 14459578 | 1363 days ago | IN | 0 ETH | 0.00500855 | ||||
| Withdraw | 14455606 | 1364 days ago | IN | 0 ETH | 0.00641624 | ||||
| Withdraw | 14454716 | 1364 days ago | IN | 0 ETH | 0.00521681 | ||||
| Update Emission ... | 14454535 | 1364 days ago | IN | 0 ETH | 0.00335297 | ||||
| Withdraw | 14451672 | 1364 days ago | IN | 0 ETH | 0.01661361 | ||||
| Withdraw | 14445143 | 1365 days ago | IN | 0 ETH | 0.01051322 | ||||
| Deposit | 14416778 | 1370 days ago | IN | 0 ETH | 0.00334818 | ||||
| Deposit | 14391167 | 1374 days ago | IN | 0 ETH | 0.00764071 | ||||
| Enter Staking | 14370508 | 1377 days ago | IN | 0 ETH | 0.00382269 | ||||
| Enter Staking | 14370505 | 1377 days ago | IN | 0 ETH | 0.00335461 | ||||
| Enter Staking | 14369358 | 1377 days ago | IN | 0 ETH | 0.00372268 | ||||
| Enter Staking | 14367765 | 1377 days ago | IN | 0 ETH | 0.00937095 | ||||
| Enter Staking | 14363799 | 1378 days ago | IN | 0 ETH | 0.00346489 | ||||
| Deposit | 14352803 | 1380 days ago | IN | 0 ETH | 0.00528196 | ||||
| Enter Staking | 14344098 | 1381 days ago | IN | 0 ETH | 0.00439381 | ||||
| Withdraw | 14332576 | 1383 days ago | IN | 0 ETH | 0.00495443 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MasterChef
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)
pragma solidity 0.6.12;
import '@sphynxswap/sphynx-swap-lib/contracts/math/SafeMath.sol';
import '@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/IBEP20.sol';
import '@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/SafeBEP20.sol';
import '@sphynxswap/sphynx-swap-lib/contracts/access/Ownable.sol';
import './SphynxToken.sol';
interface IMigratorChef {
// Perform LP token migration from legacy PancakeSwap or any swap to SphynxSwap.
// Take the current LP token address and return the new LP token address.
// Migrator should have full access to the caller's LP token.
// Return the new LP token address.
//
// XXX Migrator must have allowance access to PancakeSwap LP tokens.
// SphynxSwap must mint EXACTLY the same amount of SphynxSwap LP tokens or
// else something bad will happen. Traditional PancakeSwap does not
// do that so be careful!
function migrate(IBEP20 token) external returns (IBEP20);
}
// Have fun reading it. Hopefully it's bug-free. God bless.
contract MasterChef 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.
//
// We do some fancy math here. Basically, any point in time, the amount of Sphynxs
// entitled to a user but is pending to be distributed is:
//
// pending reward = (user.amount * pool.accsphynxPerShare) - user.rewardDebt
//
// Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens:
// 1. The pool's `accsphynxPerShare` (and `lastRewardBlock`) gets updated.
// 2. User receives the pending reward sent to his/her address.
// 3. User's `amount` gets updated.
// 4. User's `rewardDebt` gets updated.
}
// Info of each pool.
struct PoolInfo {
IBEP20 lpToken; // Address of LP token contract.
uint256 allocPoint; // How many allocation points assigned to this pool. sphynxs to distribute per block.
uint256 lastRewardBlock; // Last block number that sphynxs distribution occurs.
uint256 accSphynxPerShare; // Accumulated Sphynxs per share, times 1e12. See below.
}
// The sphynx TOKEN!
SphynxToken public sphynx;
// Dev address.
address public devaddr;
// sphynx tokens created per block.
uint256 public sphynxPerBlock;
// Bonus muliplier for early sphynx makers.
uint256 public BONUS_MULTIPLIER = 1;
// The migrator contract. It has a lot of power. Can only be set through governance (owner).
IMigratorChef public migrator;
uint256 public toBurn = 20;
// Info of each pool.
PoolInfo[] public poolInfo;
// Info of each user that stakes LP tokens.
mapping(uint256 => mapping(address => UserInfo)) public userInfo;
// Total allocation poitns. Must be the sum of all allocation points in all pools.
uint256 public totalAllocPoint = 0;
// The block number when sphynx mining starts.
uint256 public startBlock;
event Deposit(address indexed user, uint256 indexed pid, uint256 amount);
event Withdraw(address indexed user, uint256 indexed pid, uint256 amount);
event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount);
event SetDev(address newDev);
constructor(
SphynxToken _sphynx,
address _devaddr,
uint256 _sphynxPerBlock,
uint256 _startBlock
) public {
sphynx = _sphynx;
devaddr = _devaddr;
sphynxPerBlock = _sphynxPerBlock;
startBlock = _startBlock;
// staking pool
poolInfo.push(PoolInfo({ lpToken: _sphynx, allocPoint: 100, lastRewardBlock: startBlock, accSphynxPerShare: 0 }));
totalAllocPoint = 100;
}
function updateMultiplier(uint256 multiplierNumber) public onlyOwner {
BONUS_MULTIPLIER = multiplierNumber;
}
function poolLength() external view returns (uint256) {
return poolInfo.length;
}
// Add a new lp to the pool. Can only be called by the owner.
// XXX DO NOT add the same LP token more than once. Rewards will be messed up if you do.
function add(
uint256 _allocPoint,
IBEP20 _lpToken,
bool _withUpdate
) public onlyOwner {
if (_withUpdate) {
massUpdatePools();
}
uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock;
totalAllocPoint = totalAllocPoint.add(_allocPoint);
poolInfo.push(PoolInfo({ lpToken: _lpToken, allocPoint: _allocPoint, lastRewardBlock: lastRewardBlock, accSphynxPerShare: 0 }));
}
// Update the given pool's sphynx allocation point. Can only be called by the owner.
function set(
uint256 _pid,
uint256 _allocPoint,
bool _withUpdate
) public onlyOwner {
if (_withUpdate) {
massUpdatePools();
}
totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint);
poolInfo[_pid].allocPoint = _allocPoint;
}
// Set the migrator contract. Can only be called by the owner.
function setMigrator(IMigratorChef _migrator) public onlyOwner {
migrator = _migrator;
}
// Migrate lp token to another lp contract. Can be called by anyone. We trust that migrator contract is good.
function migrate(uint256 _pid) public {
require(address(migrator) != address(0), 'migrate: no migrator');
PoolInfo storage pool = poolInfo[_pid];
IBEP20 lpToken = pool.lpToken;
uint256 bal = lpToken.balanceOf(address(this));
lpToken.safeApprove(address(migrator), bal);
IBEP20 newLpToken = migrator.migrate(lpToken);
require(bal == newLpToken.balanceOf(address(this)), 'migrate: bad');
pool.lpToken = newLpToken;
}
function changeToBurn(uint256 value) public onlyOwner {
toBurn = value;
}
// Return reward multiplier over the given _from to _to block.
function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) {
return _to.sub(_from).mul(BONUS_MULTIPLIER);
}
// View function to see pending sphynxs on frontend.
function pendingSphynx(uint256 _pid, address _user) external view returns (uint256) {
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][_user];
uint256 accSphynxPerShare = pool.accSphynxPerShare;
uint256 lpSupply = pool.lpToken.balanceOf(address(this));
if (block.number > pool.lastRewardBlock && lpSupply != 0) {
uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number);
uint256 sphynxReward = multiplier.mul(sphynxPerBlock).mul(pool.allocPoint).div(totalAllocPoint);
accSphynxPerShare = accSphynxPerShare.add(sphynxReward.mul(1e12).div(lpSupply));
}
return user.amount.mul(accSphynxPerShare).div(1e12).sub(user.rewardDebt);
}
// 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);
}
}
// 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 sphynxReward = multiplier.mul(sphynxPerBlock).mul(pool.allocPoint).div(totalAllocPoint);
sphynx.mint(devaddr, sphynxReward.div(100));
sphynx.mint(address(this), sphynxReward);
pool.accSphynxPerShare = pool.accSphynxPerShare.add(sphynxReward.mul(1e12).div(lpSupply));
pool.lastRewardBlock = block.number;
}
// Deposit LP tokens to MasterChef for sphynx allocation.
function deposit(uint256 _pid, uint256 _amount) public {
require(_pid != 0, 'deposit sphynx by staking');
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][msg.sender];
updatePool(_pid);
if (user.amount > 0) {
uint256 pending = user.amount.mul(pool.accSphynxPerShare).div(1e12).sub(user.rewardDebt);
if (pending > 0) {
safeSphynxTransfer(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.accSphynxPerShare).div(1e12);
emit Deposit(msg.sender, _pid, _amount);
}
// Withdraw LP tokens from MasterChef.
function withdraw(uint256 _pid, uint256 _amount) public {
require(_pid != 0, 'withdraw sphynx by unstaking');
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][msg.sender];
require(user.amount >= _amount, 'withdraw: not good');
updatePool(_pid);
uint256 pending = user.amount.mul(pool.accSphynxPerShare).div(1e12).sub(user.rewardDebt);
if (pending > 0) {
safeSphynxTransfer(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.accSphynxPerShare).div(1e12);
emit Withdraw(msg.sender, _pid, _amount);
}
// Stake sphynx tokens to MasterChef
function enterStaking(uint256 _amount) public {
PoolInfo storage pool = poolInfo[0];
UserInfo storage user = userInfo[0][msg.sender];
updatePool(0);
if (user.amount > 0) {
uint256 pending = user.amount.mul(pool.accSphynxPerShare).div(1e12).sub(user.rewardDebt);
if (pending > 0) {
safeSphynxTransfer(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.accSphynxPerShare).div(1e12);
emit Deposit(msg.sender, 0, _amount);
}
// Withdraw sphynx tokens from STAKING.
function leaveStaking(uint256 _amount) public {
PoolInfo storage pool = poolInfo[0];
UserInfo storage user = userInfo[0][msg.sender];
require(user.amount >= _amount, 'withdraw: not good');
updatePool(0);
uint256 pending = user.amount.mul(pool.accSphynxPerShare).div(1e12).sub(user.rewardDebt);
if (pending > 0) {
safeSphynxTransfer(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.accSphynxPerShare).div(1e12);
emit Withdraw(msg.sender, 0, _amount);
}
// Withdraw without caring about rewards. EMERGENCY ONLY.
function emergencyWithdraw(uint256 _pid) public {
PoolInfo storage pool = poolInfo[_pid];
UserInfo storage user = userInfo[_pid][msg.sender];
pool.lpToken.safeTransfer(address(msg.sender), user.amount);
emit EmergencyWithdraw(msg.sender, _pid, user.amount);
user.amount = 0;
user.rewardDebt = 0;
}
// Safe sphynx transfer function, just in case if rounding error causes pool to not have enough sphynxs.
function safeSphynxTransfer(address _to, uint256 _amount) internal {
uint256 amount = _amount.mul(toBurn).div(100);
sphynx.transfer(0x000000000000000000000000000000000000dEaD, amount);
sphynx.transfer(_to, _amount.sub(amount));
}
// Update dev address by the previous dev.
function dev(address _devaddr) public {
require(msg.sender == devaddr, 'dev: wut?');
devaddr = _devaddr;
emit SetDev(_devaddr);
}
// Sphynx has to add hidden dummy pools inorder to alter the emission, here we make it simple and transparent to all.
function updateEmissionRate(uint256 _perBlock) public onlyOwner {
massUpdatePools();
sphynxPerBlock = _perBlock;
}
}// SPDX-License-Identifier: MIT
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;
}
}
}// SPDX-License-Identifier: GPL-3.0-or-later
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);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
import './IBEP20.sol';
import '../../math/SafeMath.sol';
import '../../utils/Address.sol';
/**
* @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');
}
}
}// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity >=0.4.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 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;
}
}// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;
import '@sphynxswap/sphynx-swap-lib/contracts/access/Manageable.sol';
import '@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/BEP20.sol';
import '@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/IBEP20.sol';
import '@sphynxswap/sphynx-swap-lib/contracts/token/BEP20/SafeBEP20.sol';
import '@sphynxswap/swap-core/contracts/interfaces/ISphynxPair.sol';
import '@sphynxswap/swap-core/contracts/interfaces/ISphynxFactory.sol';
import '@sphynxswap/swap-periphery/contracts/interfaces/ISphynxRouter02.sol';
interface AggregatorV3Interface {
function decimals() external view returns (uint8);
function description() external view returns (string memory);
function version() external view returns (uint256);
// getRoundData and latestRoundData should both raise "No data present"
// if they do not have data to report, instead of returning unset values
// which could be misinterpreted as actual reported values.
function getRoundData(uint80 _roundId)
external
view
returns (
uint80 roundId,
int256 answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
);
function latestRoundData()
external
view
returns (
uint80 roundId,
int256 answer,
uint256 startedAt,
uint256 updatedAt,
uint80 answeredInRound
);
}
contract SphynxToken is BEP20, Manageable {
using SafeMath for uint256;
using SafeBEP20 for IBEP20;
ISphynxRouter02 public sphynxSwapRouter;
address public sphynxSwapPair;
bool private swapping;
address public masterChef;
address public sphynxBridge;
address payable public marketingWallet = payable(0x3D458e65828d031B46579De28e9BBAAeb2729064);
address payable public developmentWallet = payable(0x7dB8380C7A017F82CC1d2DC7F8F1dE2d29Fd1df6);
address public lotteryAddress;
uint256 public usdAmountToSwap = 500;
uint256 public marketingFee;
uint256 public developmentFee;
uint256 public lotteryFee;
uint256 public totalFees;
uint256 public blockNumber;
bool public SwapAndLiquifyEnabled = false;
bool public sendToLottery = false;
bool public stopTrade = false;
bool public claimable = true;
uint256 public maxTxAmount = 800000000 * (10 ** 18); // Initial Max Tx Amount
mapping(address => bool) signers;
mapping(uint256 => address) signersArray;
mapping(address => bool) stopTradeSign;
AggregatorV3Interface internal priceFeed;
// exlcude from fees and max transaction amount
mapping(address => bool) private _isExcludedFromFees;
// getting fee addresses
mapping(address => bool) public _isGetFees;
// store addresses that are automated market maker pairs. Any transfer to these addresses
// could be subject to a maximum transfer amount
mapping(address => bool) public automatedMarketMakerPairs;
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
modifier onlyMasterChefAndBridge() {
require(msg.sender == masterChef || msg.sender == sphynxBridge, 'Permission Denied');
_;
}
modifier onlySigner() {
require(signers[msg.sender], 'not-a-signer');
_;
}
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
// Contract Events
event ExcludeFromFees(address indexed account, bool isExcluded);
event GetFee(address indexed account, bool isGetFee);
event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
event MarketingWalletUpdated(address indexed newMarketingWallet, address indexed oldMarketingWallet);
event DevelopmentWalletUpdated(address indexed newDevelopmentWallet, address indexed oldDevelopmentWallet);
event LotteryAddressUpdated(address indexed newLotteryAddress, address indexed oldLotteryAddress);
event UpdateSphynxSwapRouter(address indexed newAddress, address indexed oldAddress);
event SwapAndLiquify(uint256 tokensSwapped, uint256 nativeReceived, uint256 tokensIntoLiqudity);
event UpdateSwapAndLiquify(bool value);
event UpdateSendToLottery(bool value);
event SetMarketingFee(uint256 value);
event SetDevelopmentFee(uint256 value);
event SetLotteryFee(uint256 value);
event SetAllFeeToZero(uint256 marketingFee, uint256 developmentFee, uint256 lotteryFee);
event MaxFees(uint256 marketingFee, uint256 developmentFee, uint256 lotteryFee);
event SetUsdAmountToSwap(uint256 usdAmountToSwap);
event SetBlockNumber(uint256 blockNumber);
event UpdateMasterChef(address masterChef);
event UpdateSphynxBridge(address sphynxBridge);
event UpdateMaxTxAmount(uint256 txAmount);
constructor() public BEP20('Sphynx ETH', 'SPHYNX') {
uint256 _marketingFee = 5;
uint256 _developmentFee = 5;
uint256 _lotteryFee = 1;
marketingFee = _marketingFee;
developmentFee = _developmentFee;
lotteryFee = _lotteryFee;
totalFees = _marketingFee.add(_developmentFee);
blockNumber = 0;
ISphynxRouter02 _sphynxSwapRouter = ISphynxRouter02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // mainnet
// Create a sphynxswap pair for SPHYNX
address _sphynxSwapPair = ISphynxFactory(_sphynxSwapRouter.factory()).createPair(address(this), _sphynxSwapRouter.WETH());
sphynxSwapRouter = _sphynxSwapRouter;
sphynxSwapPair = _sphynxSwapPair;
_setAutomatedMarketMakerPair(sphynxSwapPair, true);
// exclude from paying fees or having max transaction amount
excludeFromFees(marketingWallet, true);
excludeFromFees(developmentWallet, true);
excludeFromFees(address(this), true);
excludeFromFees(owner(), true);
// set getFee addresses
_isGetFees[address(_sphynxSwapRouter)] = true;
_isGetFees[_sphynxSwapPair] = true;
priceFeed = AggregatorV3Interface(0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419);
_mint(owner(), 800000000 * (10**18));
_status = _NOT_ENTERED;
//multi-sign-wallets
signers[0x35BfE8dA53F94d6711F111790643D2D403992b56] = true;
signers[0x96C463B615228981A2c30B842E8A8e4e933CEc46] = true;
signers[0x7278fC9C49A2B6bd072b9d47E3c903ef0e12bb83] = true;
signersArray[0] = 0x35BfE8dA53F94d6711F111790643D2D403992b56;
signersArray[1] = 0x96C463B615228981A2c30B842E8A8e4e933CEc46;
signersArray[2] = 0x7278fC9C49A2B6bd072b9d47E3c903ef0e12bb83;
}
receive() external payable {}
// mint function for masterchef;
function mint(address to, uint256 amount) public onlyMasterChefAndBridge {
_mint(to, amount);
}
function updateSwapAndLiquifiy(bool value) public onlyManager {
SwapAndLiquifyEnabled = value;
emit UpdateSwapAndLiquify(value);
}
function updateSendToLottery(bool value) public onlyManager {
sendToLottery = value;
emit UpdateSendToLottery(value);
}
function setMarketingFee(uint256 value) external onlyManager {
require(value <= 5, 'SPHYNX: Invalid marketingFee');
marketingFee = value;
totalFees = marketingFee.add(developmentFee);
emit SetMarketingFee(value);
}
function setDevelopmentFee(uint256 value) external onlyManager {
require(value <= 5, 'SPHYNX: Invalid developmentFee');
developmentFee = value;
totalFees = marketingFee.add(developmentFee);
emit SetDevelopmentFee(value);
}
function setLotteryFee(uint256 value) external onlyManager {
require(value <= 1, 'SPHYNX: Invalid lotteryFee');
lotteryFee = value;
emit SetLotteryFee(value);
}
function setAllFeeToZero() external onlyOwner {
marketingFee = 0;
developmentFee = 0;
lotteryFee = 0;
totalFees = 0;
emit SetAllFeeToZero(marketingFee, developmentFee, lotteryFee);
}
function maxFees() external onlyOwner {
marketingFee = 5;
developmentFee = 5;
lotteryFee = 1;
totalFees = marketingFee.add(developmentFee);
emit MaxFees(marketingFee, developmentFee, lotteryFee);
}
function updateSphynxSwapRouter(address newAddress) public onlyManager {
require(newAddress != address(sphynxSwapRouter), 'SPHYNX: The router already has that address');
emit UpdateSphynxSwapRouter(newAddress, address(sphynxSwapRouter));
sphynxSwapRouter = ISphynxRouter02(newAddress);
address _sphynxSwapPair;
_sphynxSwapPair = ISphynxFactory(sphynxSwapRouter.factory()).getPair(address(this), sphynxSwapRouter.WETH());
if(_sphynxSwapPair == address(0)) {
_sphynxSwapPair = ISphynxFactory(sphynxSwapRouter.factory()).createPair(address(this), sphynxSwapRouter.WETH());
}
_setAutomatedMarketMakerPair(sphynxSwapPair, false);
sphynxSwapPair = _sphynxSwapPair;
_setAutomatedMarketMakerPair(sphynxSwapPair, true);
}
function updateMasterChef(address _masterChef) public onlyManager {
require(masterChef != _masterChef, 'SPHYNX: MasterChef already exists!');
masterChef = _masterChef;
emit UpdateMasterChef(_masterChef);
}
function updateSphynxBridge(address _sphynxBridge) public onlyManager {
require(sphynxBridge != _sphynxBridge, 'SPHYNX: SphynxBridge already exists!');
_isExcludedFromFees[sphynxBridge] = false;
sphynxBridge = _sphynxBridge;
_isExcludedFromFees[sphynxBridge] = true;
emit UpdateSphynxBridge(_sphynxBridge);
}
function excludeFromFees(address account, bool excluded) public onlyManager {
require(_isExcludedFromFees[account] != excluded, "SPHYNX: Account is already the value of 'excluded'");
_isExcludedFromFees[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
function setFeeAccount(address account, bool isGetFee) public onlyManager {
require(_isGetFees[account] != isGetFee, "SPHYNX: Account is already the value of 'isGetFee'");
_isGetFees[account] = isGetFee;
emit GetFee(account, isGetFee);
}
function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner {
for (uint256 i = 0; i < accounts.length; i++) {
_isExcludedFromFees[accounts[i]] = excluded;
}
emit ExcludeMultipleAccountsFromFees(accounts, excluded);
}
function setAutomatedMarketMakerPair(address pair, bool value) public onlyManager {
_setAutomatedMarketMakerPair(pair, value);
}
function _setAutomatedMarketMakerPair(address pair, bool value) private {
require(automatedMarketMakerPairs[pair] != value, 'SPHYNX: Automated market maker pair is already set to that value');
automatedMarketMakerPairs[pair] = value;
emit SetAutomatedMarketMakerPair(pair, value);
}
function setUsdAmountToSwap(uint256 _usdAmount) public onlyManager {
usdAmountToSwap = _usdAmount;
emit SetUsdAmountToSwap(usdAmountToSwap);
}
function updateMarketingWallet(address newMarketingWallet) public onlyManager {
require(newMarketingWallet != marketingWallet, 'SPHYNX: The marketing wallet is already this address');
excludeFromFees(newMarketingWallet, true);
excludeFromFees(marketingWallet, false);
emit MarketingWalletUpdated(newMarketingWallet, marketingWallet);
marketingWallet = payable(newMarketingWallet);
}
function updateDevelopmentgWallet(address newDevelopmentWallet) public onlyManager {
require(newDevelopmentWallet != developmentWallet, 'SPHYNX: The development wallet is already this address');
excludeFromFees(newDevelopmentWallet, true);
excludeFromFees(developmentWallet, false);
emit DevelopmentWalletUpdated(newDevelopmentWallet, developmentWallet);
developmentWallet = payable(newDevelopmentWallet);
}
function updateLotteryAddress(address newLotteryAddress) public onlyManager {
require(newLotteryAddress != lotteryAddress, 'SPHYNX: The lottery wallet is already this address');
excludeFromFees(newLotteryAddress, true);
excludeFromFees(lotteryAddress, false);
emit LotteryAddressUpdated(newLotteryAddress, lotteryAddress);
lotteryAddress = newLotteryAddress;
}
function setBlockNumber() public onlyOwner {
blockNumber = block.number;
emit SetBlockNumber(blockNumber);
}
function updateMaxTxAmount(uint256 _amount) public onlyManager {
maxTxAmount = _amount;
emit UpdateMaxTxAmount(_amount);
}
function updateTokenClaim(bool _claim) public onlyManager {
claimable = _claim;
}
function updateStopTrade(bool _value) external onlySigner {
require(stopTrade != _value, 'already-set');
require(!stopTradeSign[msg.sender], 'already-sign');
stopTradeSign[msg.sender] = true;
if (
stopTradeSign[signersArray[0]] &&
stopTradeSign[signersArray[1]] &&
stopTradeSign[signersArray[2]]
) {
stopTrade = _value;
stopTradeSign[signersArray[0]] = false;
stopTradeSign[signersArray[1]] = false;
stopTradeSign[signersArray[2]] = false;
}
}
function updateSignerWallet(address _signer) external onlySigner {
signers[msg.sender] = false;
signers[_signer] = true;
for(uint i = 0; i < 3; i++) {
if(signersArray[i] == msg.sender) {
signersArray[i] = _signer;
}
}
}
function isExcludedFromFees(address account) public view returns (bool) {
return _isExcludedFromFees[account];
}
function _transfer(
address from,
address to,
uint256 amount
) internal override {
require(from != address(0), 'BEP20: transfer from the zero address');
require(to != address(0), 'BEP20: transfer to the zero address');
require(!stopTrade, 'trade-stopped');
require(amount <= maxTxAmount, 'max-tx-amount-overflow');
if (amount == 0) {
super._transfer(from, to, 0);
return;
}
if(SwapAndLiquifyEnabled) {
uint256 contractTokenBalance = balanceOf(address(this));
uint256 nativeTokenAmount = _getTokenAmountFromNative();
bool canSwap = contractTokenBalance >= nativeTokenAmount;
if (canSwap && !swapping && !automatedMarketMakerPairs[from]) {
swapping = true;
// Set number of tokens to sell to nativeTokenAmount
contractTokenBalance = nativeTokenAmount;
swapTokens(contractTokenBalance);
swapping = false;
}
}
// indicates if fee should be deducted from transfer
bool takeFee = true;
// if any account belongs to _isExcludedFromFee account then remove the fee
if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
takeFee = false;
}
if (takeFee) {
if (block.number - blockNumber <= 10) {
uint256 afterBalance = balanceOf(to) + amount;
require(afterBalance <= 250000 * (10**18), 'Owned amount exceeds the maxOwnedAmount');
}
uint256 fees;
if (_isGetFees[from] || _isGetFees[to]) {
if (block.number - blockNumber <= 5) {
fees = amount.mul(99).div(10**2);
} else {
fees = amount.mul(totalFees).div(10**2);
if (sendToLottery) {
uint256 lotteryAmount = amount.mul(lotteryFee).div(10**2);
amount = amount.sub(lotteryAmount);
super._transfer(from, lotteryAddress, lotteryAmount);
}
}
amount = amount.sub(fees);
super._transfer(from, address(this), fees);
}
}
super._transfer(from, to, amount);
}
function swapTokens(uint256 tokenAmount) private {
swapTokensForNative(tokenAmount);
uint256 swappedNative = address(this).balance;
uint256 marketingNative = swappedNative.mul(marketingFee).div(totalFees);
uint256 developmentNative = swappedNative.sub(marketingNative);
transferNativeToMarketingWallet(marketingNative);
transferNativeToDevelopmentWallet(developmentNative);
}
// Swap tokens on PacakeSwap
function swapTokensForNative(uint256 tokenAmount) private {
// generate the sphynxswap pair path of token -> WETH
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = sphynxSwapRouter.WETH();
_approve(address(this), address(sphynxSwapRouter), tokenAmount);
// make the swap
sphynxSwapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of Native
path,
address(this),
block.timestamp
);
}
function getNativeAmountFromUSD() public view returns (uint256 amount) {
(
uint80 roundID,
int price,
uint startedAt,
uint timeStamp,
uint80 answeredInRound
) = priceFeed.latestRoundData();
amount = usdAmountToSwap.mul(10 ** 26).div(uint256(price));
}
function _getTokenAmountFromNative() internal view returns (uint256) {
uint256 tokenAmount;
address[] memory path = new address[](2);
path[0] = sphynxSwapRouter.WETH();
path[1] = address(this);
uint256 nativeAmountToSwap = getNativeAmountFromUSD();
uint256[] memory amounts = sphynxSwapRouter.getAmountsOut(nativeAmountToSwap, path);
tokenAmount = amounts[1];
return tokenAmount;
}
function transferNativeToMarketingWallet(uint256 amount) private {
marketingWallet.transfer(amount);
}
function transferNativeToDevelopmentWallet(uint256 amount) private {
developmentWallet.transfer(amount);
}
}// 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) {
// 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);
}
}
}
}// SPDX-License-Identifier: GPL-3.0-or-later
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;
}
}// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity >=0.4.0;
import '../GSN/Context.sol';
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an manager) that can be granted exclusive access to
* specific functions.
*
* By default, the manager account will be the one that deploys the contract. This
* can later be changed with {transferManagement}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyManager`, which can be applied to your functions to restrict their use to
* the manager.
*/
contract Manageable is Context {
address private _manager;
event ManagementTransferred(address indexed previousManager, address indexed newManager);
/**
* @dev Initializes the contract setting the deployer as the initial manager.
*/
constructor() internal {
address msgSender = _msgSender();
_manager = msgSender;
emit ManagementTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current manager.
*/
function manager() public view returns (address) {
return _manager;
}
/**
* @dev Throws if called by any account other than the manager.
*/
modifier onlyManager() {
require(_manager == _msgSender(), 'Manageable: caller is not the manager');
_;
}
/**
* @dev Leaves the contract without manager. It will not be possible to call
* `onlyManager` functions anymore. Can only be called by the current manager.
*
* NOTE: Renouncing management will leave the contract without an manager,
* thereby removing any functionality that is only available to the manager.
*/
function renounceManagement() public onlyManager {
emit ManagementTransferred(_manager, address(0));
_manager = address(0);
}
/**
* @dev Transfers management of the contract to a new account (`newManager`).
* Can only be called by the current manager.
*/
function transferManagement(address newManager) public onlyManager {
_transferManagement(newManager);
}
/**
* @dev Transfers management of the contract to a new account (`newManager`).
*/
function _transferManagement(address newManager) internal {
require(newManager != address(0), 'Manageable: new manager is the zero address');
emit ManagementTransferred(_manager, newManager);
_manager = newManager;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.4.0;
import '../../access/Ownable.sol';
import '../../GSN/Context.sol';
import './IBEP20.sol';
import '../../math/SafeMath.sol';
import '../../utils/Address.sol';
/**
* @dev Implementation of the {IBEP20} 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 {BEP20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-BEP20-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 BEP20 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 {IBEP20-approve}.
*/
contract BEP20 is Context, IBEP20, Ownable {
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 bep token owner.
*/
function getOwner() external override view returns (address) {
return owner();
}
/**
* @dev Returns the token name.
*/
function name() public override view returns (string memory) {
return _name;
}
/**
* @dev Returns the token decimals.
*/
function decimals() public override view returns (uint8) {
return _decimals;
}
/**
* @dev Returns the token symbol.
*/
function symbol() public override view returns (string memory) {
return _symbol;
}
/**
* @dev See {BEP20-totalSupply}.
*/
function totalSupply() public override view returns (uint256) {
return _totalSupply;
}
/**
* @dev See {BEP20-balanceOf}.
*/
function balanceOf(address account) public override view returns (uint256) {
return _balances[account];
}
/**
* @dev See {BEP20-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 override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {BEP20-allowance}.
*/
function allowance(address owner, address spender) public override view returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {BEP20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {BEP20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {BEP20};
*
* 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 override returns (bool) {
_transfer(sender, recipient, amount);
_approve(
sender,
_msgSender(),
_allowances[sender][_msgSender()].sub(amount, 'BEP20: 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 {BEP20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public 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 {BEP20-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 returns (bool) {
_approve(
_msgSender(),
spender,
_allowances[_msgSender()][spender].sub(subtractedValue, 'BEP20: decreased allowance below zero')
);
return true;
}
/**
* @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing
* the total supply.
*
* Requirements
*
* - `msg.sender` must be the token owner
*/
function mint(uint256 amount) public onlyOwner returns (bool) {
_mint(_msgSender(), amount);
return true;
}
/**
* @dev Destroys `amount` tokens from `msg.sender`, decreasing the total supply.
*
*/
function burn(uint256 amount) public returns (bool) {
_burn(_msgSender(), amount);
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), 'BEP20: transfer from the zero address');
require(recipient != address(0), 'BEP20: transfer to the zero address');
_balances[sender] = _balances[sender].sub(amount, 'BEP20: 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 {
require(account != address(0), 'BEP20: mint to the zero address');
_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 {
require(account != address(0), 'BEP20: burn from the zero address');
_balances[account] = _balances[account].sub(amount, 'BEP20: 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 is internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal {
require(owner != address(0), 'BEP20: approve from the zero address');
require(spender != address(0), 'BEP20: approve to the zero address');
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Destroys `amount` tokens from `account`.`amount` is then deducted
* from the caller's allowance.
*
* See {_burn} and {_approve}.
*/
function _burnFrom(address account, uint256 amount) internal {
_burn(account, amount);
_approve(
account,
_msgSender(),
_allowances[account][_msgSender()].sub(amount, 'BEP20: burn amount exceeds allowance')
);
}
}pragma solidity >=0.5.0;
interface ISphynxPair {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint);
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
event Mint(address indexed sender, uint amount0, uint amount1);
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
event Swap(
address indexed sender,
uint amount0In,
uint amount1In,
uint amount0Out,
uint amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
function price0CumulativeLast() external view returns (uint);
function price1CumulativeLast() external view returns (uint);
function kLast() external view returns (uint);
function swapFee() external view returns (uint32);
function mint(address to) external returns (uint liquidity);
function burn(address to) external returns (uint amount0, uint amount1);
function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
function setSwapFee(uint32) external;
}pragma solidity >=0.5.0;
interface ISphynxFactory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB) external view returns (address pair);
function allPairs(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(address tokenA, address tokenB) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
function setSwapFee(address _pair, uint32 _swapFee) external;
}pragma solidity >=0.6.2;
import './ISphynxRouter01.sol';
interface ISphynxRouter02 is ISphynxRouter01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}pragma solidity >=0.6.2;
interface ISphynxRouter01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountA, uint amountB);
function removeLiquidityETHWithPermit(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapTokensForExactTokens(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut, uint swapFee) external pure returns (uint amountOut);
function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut, uint swapFee) external pure returns (uint amountIn);
function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"metadata": {
"useLiteralContent": true
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract SphynxToken","name":"_sphynx","type":"address"},{"internalType":"address","name":"_devaddr","type":"address"},{"internalType":"uint256","name":"_sphynxPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"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":false,"internalType":"address","name":"newDev","type":"address"}],"name":"SetDev","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"BONUS_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IBEP20","name":"_lpToken","type":"address"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"changeToBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devaddr","type":"address"}],"name":"dev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devaddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"enterStaking","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"leaveStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"migrator","outputs":[{"internalType":"contract IMigratorChef","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingSphynx","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":"accSphynxPerShare","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IMigratorChef","name":"_migrator","type":"address"}],"name":"setMigrator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sphynx","outputs":[{"internalType":"contract SphynxToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sphynxPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_perBlock","type":"uint256"}],"name":"updateEmissionRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"multiplierNumber","type":"uint256"}],"name":"updateMultiplier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"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":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405260016004556014600655600060095534801561001f57600080fd5b506040516123303803806123308339818101604052608081101561004257600080fd5b508051602082015160408301516060909301519192909160006100636101cc565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b03199081166001600160a01b03968716908117835560028054831696881696909617909555600393909355600a8290556040805160808101825294855260646020860181815291860193845260006060870181815260078054958601815590915295517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6886004909402938401805490961697169690961790935591517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c689830155517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68a82015590517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68b909101556009556101d0565b3390565b612151806101df6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806359c368981161010f5780638d88a90e116100a2578063d49e77cd11610071578063d49e77cd14610501578063e2bbb15814610509578063f2fde38b1461052c578063f47ffd8e14610552576101e5565b80638d88a90e1461046b5780638da5cb5b146104915780638dbb1e3a1461049957806393f1a40b146104bc576101e5565b806364482f79116100de57806364482f7914610428578063715018a6146104535780637cd07e471461045b5780638aa2855014610463576101e5565b806359c36898146103b35780635d5cc7af146103d75780635ffe614614610403578063630b5ba114610420576101e5565b806323cf311811610187578063454b060811610156578063454b06081461035457806348cd4cb11461037157806351eb05a6146103795780635312ea8e14610396576101e5565b806323cf3118146102e6578063246ea64e1461030c57806341441d3b14610314578063441a3e7014610331576101e5565b80631058d281116101c35780631058d281146102405780631526fe271461025d57806317caf6f1146102aa5780631eaaa045146102b2576101e5565b8063081e3eda146101ea5780630ba84cd2146102045780630e3d625914610223575b600080fd5b6101f261055a565b60408051918252519081900360200190f35b6102216004803603602081101561021a57600080fd5b5035610560565b005b6102216004803603602081101561023957600080fd5b50356105c5565b6102216004803603602081101561025657600080fd5b5035610622565b61027a6004803603602081101561027357600080fd5b503561079b565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b6101f26107dc565b610221600480360360608110156102c857600080fd5b508035906001600160a01b03602082013516906040013515156107e2565b610221600480360360208110156102fc57600080fd5b50356001600160a01b031661095d565b6101f26109d7565b6102216004803603602081101561032a57600080fd5b50356109dd565b6102216004803603604081101561034757600080fd5b5080359060200135610b06565b6102216004803603602081101561036a57600080fd5b5035610cab565b6101f2610f07565b6102216004803603602081101561038f57600080fd5b5035610f0d565b610221600480360360208110156103ac57600080fd5b5035611134565b6103bb6111cf565b604080516001600160a01b039092168252519081900360200190f35b6101f2600480360360408110156103ed57600080fd5b50803590602001356001600160a01b03166111de565b6102216004803603602081101561041957600080fd5b5035611342565b61022161139f565b6102216004803603606081101561043e57600080fd5b508035906020810135906040013515156113c2565b610221611493565b6103bb611535565b6101f2611544565b6102216004803603602081101561048157600080fd5b50356001600160a01b031661154a565b6103bb6115e9565b6101f2600480360360408110156104af57600080fd5b50803590602001356115f8565b6104e8600480360360408110156104d257600080fd5b50803590602001356001600160a01b0316611613565b6040805192835260208301919091528051918290030190f35b6103bb611637565b6102216004803603604081101561051f57600080fd5b5080359060200135611646565b6102216004803603602081101561054257600080fd5b50356001600160a01b03166117aa565b6101f261180b565b60075490565b610568611811565b6000546001600160a01b039081169116146105b8576040805162461bcd60e51b815260206004820181905260248201526000805160206120fc833981519152604482015290519081900360640190fd5b6105c061139f565b600355565b6105cd611811565b6000546001600160a01b0390811691161461061d576040805162461bcd60e51b815260206004820181905260248201526000805160206120fc833981519152604482015290519081900360640190fd5b600655565b6000600760008154811061063257fe5b600091825260208083203384527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c790915260409092208054600490920290920192508311156106bd576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b6106c76000610f0d565b600061070182600101546106fb64e8d4a510006106f58760030154876000015461181590919063ffffffff16565b9061186e565b906118b0565b905080156107135761071333826118f2565b831561073d57815461072590856118b0565b8255825461073d906001600160a01b03163386611a26565b600383015482546107589164e8d4a51000916106f591611815565b600183015560408051858152905160009133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a350505050565b600781815481106107a857fe5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b60095481565b6107ea611811565b6000546001600160a01b0390811691161461083a576040805162461bcd60e51b815260206004820181905260248201526000805160206120fc833981519152604482015290519081900360640190fd5b80156108485761084861139f565b6000600a54431161085b57600a5461085d565b435b60095490915061086d9085611a7d565b600955604080516080810182526001600160a01b0394851681526020810195865290810191825260006060820181815260078054600181018255925291517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688600490920291820180546001600160a01b031916919096161790945593517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c689840155517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68a8301555090517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68b90910155565b610965611811565b6000546001600160a01b039081169116146109b5576040805162461bcd60e51b815260206004820181905260248201526000805160206120fc833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b60065481565b600060076000815481106109ed57fe5b600091825260208083203384527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c790915260408320600490920201925090610a3490610f0d565b805415610a7d576000610a6982600101546106fb64e8d4a510006106f58760030154876000015461181590919063ffffffff16565b90508015610a7b57610a7b33826118f2565b505b8215610aa9578154610a9a906001600160a01b0316333086611ad7565b8054610aa69084611a7d565b81555b60038201548154610ac49164e8d4a51000916106f591611815565b600182015560408051848152905160009133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a3505050565b81610b58576040805162461bcd60e51b815260206004820152601c60248201527f776974686472617720737068796e7820627920756e7374616b696e6700000000604482015290519081900360640190fd5b600060078381548110610b6757fe5b600091825260208083208684526008825260408085203386529092529220805460049092029092019250831115610bda576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b610be384610f0d565b6000610c1182600101546106fb64e8d4a510006106f58760030154876000015461181590919063ffffffff16565b90508015610c2357610c2333826118f2565b8315610c4d578154610c3590856118b0565b82558254610c4d906001600160a01b03163386611a26565b60038301548254610c689164e8d4a51000916106f591611815565b6001830155604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a35050505050565b6005546001600160a01b0316610cff576040805162461bcd60e51b815260206004820152601460248201527336b4b3b930ba329d1037379036b4b3b930ba37b960611b604482015290519081900360640190fd5b600060078281548110610d0e57fe5b600091825260208083206004928302018054604080516370a0823160e01b81523095810195909552519195506001600160a01b0316939284926370a0823192602480840193829003018186803b158015610d6757600080fd5b505afa158015610d7b573d6000803e3d6000fd5b505050506040513d6020811015610d9157600080fd5b5051600554909150610db0906001600160a01b03848116911683611b37565b6005546040805163ce5494bb60e01b81526001600160a01b0385811660048301529151600093929092169163ce5494bb9160248082019260209290919082900301818787803b158015610e0257600080fd5b505af1158015610e16573d6000803e3d6000fd5b505050506040513d6020811015610e2c57600080fd5b5051604080516370a0823160e01b815230600482015290519192506001600160a01b038316916370a0823191602480820192602092909190829003018186803b158015610e7857600080fd5b505afa158015610e8c573d6000803e3d6000fd5b505050506040513d6020811015610ea257600080fd5b50518214610ee6576040805162461bcd60e51b815260206004820152600c60248201526b1b5a59dc985d194e8818985960a21b604482015290519081900360640190fd5b83546001600160a01b0319166001600160a01b039190911617909255505050565b600a5481565b600060078281548110610f1c57fe5b9060005260206000209060040201905080600201544311610f3d5750611131565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610f8757600080fd5b505afa158015610f9b573d6000803e3d6000fd5b505050506040513d6020811015610fb157600080fd5b5051905080610fc7575043600290910155611131565b6000610fd78360020154436115f8565b905060006110046009546106f58660010154610ffe6003548761181590919063ffffffff16565b90611815565b6001546002549192506001600160a01b03908116916340c10f19911661102b84606461186e565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561107157600080fd5b505af1158015611085573d6000803e3d6000fd5b5050600154604080516340c10f1960e01b81523060048201526024810186905290516001600160a01b0390921693506340c10f19925060448082019260009290919082900301818387803b1580156110dc57600080fd5b505af11580156110f0573d6000803e3d6000fd5b5050505061111e611113846106f564e8d4a510008561181590919063ffffffff16565b600386015490611a7d565b6003850155505043600290920191909155505b50565b60006007828154811061114357fe5b60009182526020808320858452600882526040808520338087529352909320805460049093029093018054909450611188926001600160a01b03919091169190611a26565b80546040805191825251849133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a360008082556001909101555050565b6001546001600160a01b031681565b600080600784815481106111ee57fe5b600091825260208083208784526008825260408085206001600160a01b03898116875290845281862060049586029093016003810154815484516370a0823160e01b81523098810198909852935191985093969395939492909116926370a08231926024808301939192829003018186803b15801561126c57600080fd5b505afa158015611280573d6000803e3d6000fd5b505050506040513d602081101561129657600080fd5b50516002850154909150431180156112ad57508015155b1561130d5760006112c28560020154436115f8565b905060006112e96009546106f58860010154610ffe6003548761181590919063ffffffff16565b9050611308611301846106f58464e8d4a51000611815565b8590611a7d565b935050505b61133583600101546106fb64e8d4a510006106f586886000015461181590919063ffffffff16565b9450505050505b92915050565b61134a611811565b6000546001600160a01b0390811691161461139a576040805162461bcd60e51b815260206004820181905260248201526000805160206120fc833981519152604482015290519081900360640190fd5b600455565b60075460005b818110156113be576113b681610f0d565b6001016113a5565b5050565b6113ca611811565b6000546001600160a01b0390811691161461141a576040805162461bcd60e51b815260206004820181905260248201526000805160206120fc833981519152604482015290519081900360640190fd5b80156114285761142861139f565b6114658261145f6007868154811061143c57fe5b9060005260206000209060040201600101546009546118b090919063ffffffff16565b90611a7d565b600981905550816007848154811061147957fe5b906000526020600020906004020160010181905550505050565b61149b611811565b6000546001600160a01b039081169116146114eb576040805162461bcd60e51b815260206004820181905260248201526000805160206120fc833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6005546001600160a01b031681565b60045481565b6002546001600160a01b03163314611595576040805162461bcd60e51b81526020600482015260096024820152686465763a207775743f60b81b604482015290519081900360640190fd5b600280546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f8daa6bb00de042a7d51816fcee4a3d5c1e91a2128fd64fa1a9a38afa0d26beb59181900360200190a150565b6000546001600160a01b031690565b60045460009061160c90610ffe84866118b0565b9392505050565b60086020908152600092835260408084209091529082529020805460019091015482565b6002546001600160a01b031681565b81611698576040805162461bcd60e51b815260206004820152601960248201527f6465706f73697420737068796e78206279207374616b696e6700000000000000604482015290519081900360640190fd5b6000600783815481106116a757fe5b600091825260208083208684526008825260408085203386529092529220600490910290910191506116d884610f0d565b80541561172157600061170d82600101546106fb64e8d4a510006106f58760030154876000015461181590919063ffffffff16565b9050801561171f5761171f33826118f2565b505b821561174d57815461173e906001600160a01b0316333086611ad7565b805461174a9084611a7d565b81555b600382015481546117689164e8d4a51000916106f591611815565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b6117b2611811565b6000546001600160a01b03908116911614611802576040805162461bcd60e51b815260206004820181905260248201526000805160206120fc833981519152604482015290519081900360640190fd5b61113181611c4a565b60035481565b3390565b6000826118245750600061133c565b8282028284828161183157fe5b041461160c5760405162461bcd60e51b81526004018080602001828103825260218152602001806120a56021913960400191505060405180910390fd5b600061160c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611cea565b600061160c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d8c565b600061190e60646106f56006548561181590919063ffffffff16565b6001546040805163a9059cbb60e01b815261dead60048201526024810184905290519293506001600160a01b039091169163a9059cbb916044808201926020929091908290030181600087803b15801561196757600080fd5b505af115801561197b573d6000803e3d6000fd5b505050506040513d602081101561199157600080fd5b50506001546001600160a01b031663a9059cbb846119af85856118b0565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156119f557600080fd5b505af1158015611a09573d6000803e3d6000fd5b505050506040513d6020811015611a1f57600080fd5b5050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611a78908490611de6565b505050565b60008282018381101561160c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611b31908590611de6565b50505050565b801580611bbd575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015611b8f57600080fd5b505afa158015611ba3573d6000803e3d6000fd5b505050506040513d6020811015611bb957600080fd5b5051155b611bf85760405162461bcd60e51b81526004018080602001828103825260368152602001806120c66036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052611a78908490611de6565b6001600160a01b038116611c8f5760405162461bcd60e51b815260040180806020018281038252602681526020018061207f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008183611d765760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d3b578181015183820152602001611d23565b50505050905090810190601f168015611d685780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611d8257fe5b0495945050505050565b60008184841115611dde5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611d3b578181015183820152602001611d23565b505050900390565b6060611e3b826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611e979092919063ffffffff16565b805190915015611a7857808060200190516020811015611e5a57600080fd5b5051611a785760405162461bcd60e51b815260040180806020018281038252602a815260200180612055602a913960400191505060405180910390fd5b6060611ea68484600085611eae565b949350505050565b6060611eb98561201b565b611f0a576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611f495780518252601f199092019160209182019101611f2a565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611fab576040519150601f19603f3d011682016040523d82523d6000602084013e611fb0565b606091505b50915091508115611fc4579150611ea69050565b805115611fd45780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315611d3b578181015183820152602001611d23565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611ea657505015159291505056fe5361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666542455032303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220736a031d2d197766d5cd4f465897138c0f608ab7310f6a88a022fa79f41a32c664736f6c634300060c003300000000000000000000000094dfd4e2210fa5b752c3cd0f381edad9da6640f8000000000000000000000000074222a8a5b6a155a80c533a54e3ef5ed267ae160000000000000000000000000000000000000000000000022b1c8c1227a000000000000000000000000000000000000000000000000000000000000000d4d1cc
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806359c368981161010f5780638d88a90e116100a2578063d49e77cd11610071578063d49e77cd14610501578063e2bbb15814610509578063f2fde38b1461052c578063f47ffd8e14610552576101e5565b80638d88a90e1461046b5780638da5cb5b146104915780638dbb1e3a1461049957806393f1a40b146104bc576101e5565b806364482f79116100de57806364482f7914610428578063715018a6146104535780637cd07e471461045b5780638aa2855014610463576101e5565b806359c36898146103b35780635d5cc7af146103d75780635ffe614614610403578063630b5ba114610420576101e5565b806323cf311811610187578063454b060811610156578063454b06081461035457806348cd4cb11461037157806351eb05a6146103795780635312ea8e14610396576101e5565b806323cf3118146102e6578063246ea64e1461030c57806341441d3b14610314578063441a3e7014610331576101e5565b80631058d281116101c35780631058d281146102405780631526fe271461025d57806317caf6f1146102aa5780631eaaa045146102b2576101e5565b8063081e3eda146101ea5780630ba84cd2146102045780630e3d625914610223575b600080fd5b6101f261055a565b60408051918252519081900360200190f35b6102216004803603602081101561021a57600080fd5b5035610560565b005b6102216004803603602081101561023957600080fd5b50356105c5565b6102216004803603602081101561025657600080fd5b5035610622565b61027a6004803603602081101561027357600080fd5b503561079b565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b6101f26107dc565b610221600480360360608110156102c857600080fd5b508035906001600160a01b03602082013516906040013515156107e2565b610221600480360360208110156102fc57600080fd5b50356001600160a01b031661095d565b6101f26109d7565b6102216004803603602081101561032a57600080fd5b50356109dd565b6102216004803603604081101561034757600080fd5b5080359060200135610b06565b6102216004803603602081101561036a57600080fd5b5035610cab565b6101f2610f07565b6102216004803603602081101561038f57600080fd5b5035610f0d565b610221600480360360208110156103ac57600080fd5b5035611134565b6103bb6111cf565b604080516001600160a01b039092168252519081900360200190f35b6101f2600480360360408110156103ed57600080fd5b50803590602001356001600160a01b03166111de565b6102216004803603602081101561041957600080fd5b5035611342565b61022161139f565b6102216004803603606081101561043e57600080fd5b508035906020810135906040013515156113c2565b610221611493565b6103bb611535565b6101f2611544565b6102216004803603602081101561048157600080fd5b50356001600160a01b031661154a565b6103bb6115e9565b6101f2600480360360408110156104af57600080fd5b50803590602001356115f8565b6104e8600480360360408110156104d257600080fd5b50803590602001356001600160a01b0316611613565b6040805192835260208301919091528051918290030190f35b6103bb611637565b6102216004803603604081101561051f57600080fd5b5080359060200135611646565b6102216004803603602081101561054257600080fd5b50356001600160a01b03166117aa565b6101f261180b565b60075490565b610568611811565b6000546001600160a01b039081169116146105b8576040805162461bcd60e51b815260206004820181905260248201526000805160206120fc833981519152604482015290519081900360640190fd5b6105c061139f565b600355565b6105cd611811565b6000546001600160a01b0390811691161461061d576040805162461bcd60e51b815260206004820181905260248201526000805160206120fc833981519152604482015290519081900360640190fd5b600655565b6000600760008154811061063257fe5b600091825260208083203384527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c790915260409092208054600490920290920192508311156106bd576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b6106c76000610f0d565b600061070182600101546106fb64e8d4a510006106f58760030154876000015461181590919063ffffffff16565b9061186e565b906118b0565b905080156107135761071333826118f2565b831561073d57815461072590856118b0565b8255825461073d906001600160a01b03163386611a26565b600383015482546107589164e8d4a51000916106f591611815565b600183015560408051858152905160009133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a350505050565b600781815481106107a857fe5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b60095481565b6107ea611811565b6000546001600160a01b0390811691161461083a576040805162461bcd60e51b815260206004820181905260248201526000805160206120fc833981519152604482015290519081900360640190fd5b80156108485761084861139f565b6000600a54431161085b57600a5461085d565b435b60095490915061086d9085611a7d565b600955604080516080810182526001600160a01b0394851681526020810195865290810191825260006060820181815260078054600181018255925291517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688600490920291820180546001600160a01b031916919096161790945593517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c689840155517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68a8301555090517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68b90910155565b610965611811565b6000546001600160a01b039081169116146109b5576040805162461bcd60e51b815260206004820181905260248201526000805160206120fc833981519152604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b0392909216919091179055565b60065481565b600060076000815481106109ed57fe5b600091825260208083203384527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c790915260408320600490920201925090610a3490610f0d565b805415610a7d576000610a6982600101546106fb64e8d4a510006106f58760030154876000015461181590919063ffffffff16565b90508015610a7b57610a7b33826118f2565b505b8215610aa9578154610a9a906001600160a01b0316333086611ad7565b8054610aa69084611a7d565b81555b60038201548154610ac49164e8d4a51000916106f591611815565b600182015560408051848152905160009133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a3505050565b81610b58576040805162461bcd60e51b815260206004820152601c60248201527f776974686472617720737068796e7820627920756e7374616b696e6700000000604482015290519081900360640190fd5b600060078381548110610b6757fe5b600091825260208083208684526008825260408085203386529092529220805460049092029092019250831115610bda576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b610be384610f0d565b6000610c1182600101546106fb64e8d4a510006106f58760030154876000015461181590919063ffffffff16565b90508015610c2357610c2333826118f2565b8315610c4d578154610c3590856118b0565b82558254610c4d906001600160a01b03163386611a26565b60038301548254610c689164e8d4a51000916106f591611815565b6001830155604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a35050505050565b6005546001600160a01b0316610cff576040805162461bcd60e51b815260206004820152601460248201527336b4b3b930ba329d1037379036b4b3b930ba37b960611b604482015290519081900360640190fd5b600060078281548110610d0e57fe5b600091825260208083206004928302018054604080516370a0823160e01b81523095810195909552519195506001600160a01b0316939284926370a0823192602480840193829003018186803b158015610d6757600080fd5b505afa158015610d7b573d6000803e3d6000fd5b505050506040513d6020811015610d9157600080fd5b5051600554909150610db0906001600160a01b03848116911683611b37565b6005546040805163ce5494bb60e01b81526001600160a01b0385811660048301529151600093929092169163ce5494bb9160248082019260209290919082900301818787803b158015610e0257600080fd5b505af1158015610e16573d6000803e3d6000fd5b505050506040513d6020811015610e2c57600080fd5b5051604080516370a0823160e01b815230600482015290519192506001600160a01b038316916370a0823191602480820192602092909190829003018186803b158015610e7857600080fd5b505afa158015610e8c573d6000803e3d6000fd5b505050506040513d6020811015610ea257600080fd5b50518214610ee6576040805162461bcd60e51b815260206004820152600c60248201526b1b5a59dc985d194e8818985960a21b604482015290519081900360640190fd5b83546001600160a01b0319166001600160a01b039190911617909255505050565b600a5481565b600060078281548110610f1c57fe5b9060005260206000209060040201905080600201544311610f3d5750611131565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610f8757600080fd5b505afa158015610f9b573d6000803e3d6000fd5b505050506040513d6020811015610fb157600080fd5b5051905080610fc7575043600290910155611131565b6000610fd78360020154436115f8565b905060006110046009546106f58660010154610ffe6003548761181590919063ffffffff16565b90611815565b6001546002549192506001600160a01b03908116916340c10f19911661102b84606461186e565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561107157600080fd5b505af1158015611085573d6000803e3d6000fd5b5050600154604080516340c10f1960e01b81523060048201526024810186905290516001600160a01b0390921693506340c10f19925060448082019260009290919082900301818387803b1580156110dc57600080fd5b505af11580156110f0573d6000803e3d6000fd5b5050505061111e611113846106f564e8d4a510008561181590919063ffffffff16565b600386015490611a7d565b6003850155505043600290920191909155505b50565b60006007828154811061114357fe5b60009182526020808320858452600882526040808520338087529352909320805460049093029093018054909450611188926001600160a01b03919091169190611a26565b80546040805191825251849133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a360008082556001909101555050565b6001546001600160a01b031681565b600080600784815481106111ee57fe5b600091825260208083208784526008825260408085206001600160a01b03898116875290845281862060049586029093016003810154815484516370a0823160e01b81523098810198909852935191985093969395939492909116926370a08231926024808301939192829003018186803b15801561126c57600080fd5b505afa158015611280573d6000803e3d6000fd5b505050506040513d602081101561129657600080fd5b50516002850154909150431180156112ad57508015155b1561130d5760006112c28560020154436115f8565b905060006112e96009546106f58860010154610ffe6003548761181590919063ffffffff16565b9050611308611301846106f58464e8d4a51000611815565b8590611a7d565b935050505b61133583600101546106fb64e8d4a510006106f586886000015461181590919063ffffffff16565b9450505050505b92915050565b61134a611811565b6000546001600160a01b0390811691161461139a576040805162461bcd60e51b815260206004820181905260248201526000805160206120fc833981519152604482015290519081900360640190fd5b600455565b60075460005b818110156113be576113b681610f0d565b6001016113a5565b5050565b6113ca611811565b6000546001600160a01b0390811691161461141a576040805162461bcd60e51b815260206004820181905260248201526000805160206120fc833981519152604482015290519081900360640190fd5b80156114285761142861139f565b6114658261145f6007868154811061143c57fe5b9060005260206000209060040201600101546009546118b090919063ffffffff16565b90611a7d565b600981905550816007848154811061147957fe5b906000526020600020906004020160010181905550505050565b61149b611811565b6000546001600160a01b039081169116146114eb576040805162461bcd60e51b815260206004820181905260248201526000805160206120fc833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6005546001600160a01b031681565b60045481565b6002546001600160a01b03163314611595576040805162461bcd60e51b81526020600482015260096024820152686465763a207775743f60b81b604482015290519081900360640190fd5b600280546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f8daa6bb00de042a7d51816fcee4a3d5c1e91a2128fd64fa1a9a38afa0d26beb59181900360200190a150565b6000546001600160a01b031690565b60045460009061160c90610ffe84866118b0565b9392505050565b60086020908152600092835260408084209091529082529020805460019091015482565b6002546001600160a01b031681565b81611698576040805162461bcd60e51b815260206004820152601960248201527f6465706f73697420737068796e78206279207374616b696e6700000000000000604482015290519081900360640190fd5b6000600783815481106116a757fe5b600091825260208083208684526008825260408085203386529092529220600490910290910191506116d884610f0d565b80541561172157600061170d82600101546106fb64e8d4a510006106f58760030154876000015461181590919063ffffffff16565b9050801561171f5761171f33826118f2565b505b821561174d57815461173e906001600160a01b0316333086611ad7565b805461174a9084611a7d565b81555b600382015481546117689164e8d4a51000916106f591611815565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a350505050565b6117b2611811565b6000546001600160a01b03908116911614611802576040805162461bcd60e51b815260206004820181905260248201526000805160206120fc833981519152604482015290519081900360640190fd5b61113181611c4a565b60035481565b3390565b6000826118245750600061133c565b8282028284828161183157fe5b041461160c5760405162461bcd60e51b81526004018080602001828103825260218152602001806120a56021913960400191505060405180910390fd5b600061160c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611cea565b600061160c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d8c565b600061190e60646106f56006548561181590919063ffffffff16565b6001546040805163a9059cbb60e01b815261dead60048201526024810184905290519293506001600160a01b039091169163a9059cbb916044808201926020929091908290030181600087803b15801561196757600080fd5b505af115801561197b573d6000803e3d6000fd5b505050506040513d602081101561199157600080fd5b50506001546001600160a01b031663a9059cbb846119af85856118b0565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156119f557600080fd5b505af1158015611a09573d6000803e3d6000fd5b505050506040513d6020811015611a1f57600080fd5b5050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611a78908490611de6565b505050565b60008282018381101561160c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611b31908590611de6565b50505050565b801580611bbd575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b158015611b8f57600080fd5b505afa158015611ba3573d6000803e3d6000fd5b505050506040513d6020811015611bb957600080fd5b5051155b611bf85760405162461bcd60e51b81526004018080602001828103825260368152602001806120c66036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052611a78908490611de6565b6001600160a01b038116611c8f5760405162461bcd60e51b815260040180806020018281038252602681526020018061207f6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60008183611d765760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d3b578181015183820152602001611d23565b50505050905090810190601f168015611d685780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611d8257fe5b0495945050505050565b60008184841115611dde5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611d3b578181015183820152602001611d23565b505050900390565b6060611e3b826040518060400160405280602081526020017f5361666542455032303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611e979092919063ffffffff16565b805190915015611a7857808060200190516020811015611e5a57600080fd5b5051611a785760405162461bcd60e51b815260040180806020018281038252602a815260200180612055602a913960400191505060405180910390fd5b6060611ea68484600085611eae565b949350505050565b6060611eb98561201b565b611f0a576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611f495780518252601f199092019160209182019101611f2a565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611fab576040519150601f19603f3d011682016040523d82523d6000602084013e611fb0565b606091505b50915091508115611fc4579150611ea69050565b805115611fd45780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315611d3b578181015183820152602001611d23565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590611ea657505015159291505056fe5361666542455032303a204245503230206f7065726174696f6e20646964206e6f7420737563636565644f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775361666542455032303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220736a031d2d197766d5cd4f465897138c0f608ab7310f6a88a022fa79f41a32c664736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000094dfd4e2210fa5b752c3cd0f381edad9da6640f8000000000000000000000000074222a8a5b6a155a80c533a54e3ef5ed267ae160000000000000000000000000000000000000000000000022b1c8c1227a000000000000000000000000000000000000000000000000000000000000000d4d1cc
-----Decoded View---------------
Arg [0] : _sphynx (address): 0x94DFd4E2210Fa5B752c3CD0f381edad9dA6640f8
Arg [1] : _devaddr (address): 0x074222A8A5b6A155A80C533A54E3ef5ED267AE16
Arg [2] : _sphynxPerBlock (uint256): 40000000000000000000
Arg [3] : _startBlock (uint256): 13947340
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000094dfd4e2210fa5b752c3cd0f381edad9da6640f8
Arg [1] : 000000000000000000000000074222a8a5b6a155a80c533a54e3ef5ed267ae16
Arg [2] : 0000000000000000000000000000000000000000000000022b1c8c1227a00000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000d4d1cc
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.