More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 551 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 60792686 | 1 hr ago | IN | 0 AVAX | 0.00012414 | ||||
Deposit | 60792680 | 1 hr ago | IN | 0 AVAX | 0.00010888 | ||||
Withdraw | 60776932 | 7 hrs ago | IN | 0 AVAX | 0.00003133 | ||||
Deposit | 60776906 | 7 hrs ago | IN | 0 AVAX | 0.0000229 | ||||
Withdraw | 60758648 | 14 hrs ago | IN | 0 AVAX | 0.00011085 | ||||
Deposit | 60758632 | 14 hrs ago | IN | 0 AVAX | 0.00010841 | ||||
Withdraw | 60755111 | 15 hrs ago | IN | 0 AVAX | 0.00010034 | ||||
Withdraw | 60739518 | 21 hrs ago | IN | 0 AVAX | 0.01058655 | ||||
Withdraw | 60727190 | 26 hrs ago | IN | 0 AVAX | 0.00021341 | ||||
Withdraw | 60674243 | 47 hrs ago | IN | 0 AVAX | 0.0000151 | ||||
Deposit | 60674231 | 47 hrs ago | IN | 0 AVAX | 0.00001165 | ||||
Withdraw | 60671944 | 2 days ago | IN | 0 AVAX | 0.00017862 | ||||
Deposit | 60671918 | 2 days ago | IN | 0 AVAX | 0.00017373 | ||||
Deposit | 60663654 | 2 days ago | IN | 0 AVAX | 0.00010948 | ||||
Deposit | 60663534 | 2 days ago | IN | 0 AVAX | 0.00010948 | ||||
Withdraw | 60637119 | 2 days ago | IN | 0 AVAX | 0.0001736 | ||||
Withdraw | 60631905 | 2 days ago | IN | 0 AVAX | 0.00013489 | ||||
Withdraw | 60617641 | 2 days ago | IN | 0 AVAX | 0.00021426 | ||||
Withdraw | 60570709 | 3 days ago | IN | 0 AVAX | 0.00014411 | ||||
Withdraw | 60524664 | 4 days ago | IN | 0 AVAX | 0.00013487 | ||||
Withdraw | 60465841 | 5 days ago | IN | 0 AVAX | 0.00002403 | ||||
Withdraw | 60449237 | 5 days ago | IN | 0 AVAX | 0.00017904 | ||||
Deposit | 60449207 | 5 days ago | IN | 0 AVAX | 0.00017462 | ||||
Withdraw | 60442753 | 5 days ago | IN | 0 AVAX | 0.0001923 | ||||
Withdraw | 60440913 | 6 days ago | IN | 0 AVAX | 0.00013487 |
Loading...
Loading
Contract Name:
LPStaking
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.7.6; // imports import "./EnumerableSet.sol"; import "./Ownable.sol"; import "./StargateToken.sol"; // interfaces import "./IERC20.sol"; // libraries import "./SafeMath.sol"; import "./SafeERC20.sol"; contract LPStaking is Ownable { using SafeMath for uint256; using SafeERC20 for IERC20; // 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 STGs // entitled to a user but is pending to be distributed is: // // pending reward = (user.amount * pool.accStargatePerShare) - user.rewardDebt // // Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens: // 1. The pool's `accStargatePerShare` (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 { IERC20 lpToken; // Address of LP token contract. uint256 allocPoint; // How many allocation points assigned to this pool. STGs to distribute per block. uint256 lastRewardBlock; // Last block number that STGs distribution occurs. uint256 accStargatePerShare; // Accumulated STGs per share, times 1e12. See below. } // The STG TOKEN! StargateToken public stargate; // Block number when bonus STG period ends. uint256 public bonusEndBlock; // STG tokens created per block. uint256 public stargatePerBlock; // Bonus multiplier for early stargate makers. uint256 public constant BONUS_MULTIPLIER = 1; // Track which tokens have been added. mapping(address => bool) private addedLPTokens; mapping(uint256 => uint256) public lpBalances; // Info of each pool. PoolInfo[] public poolInfo; // Info of each user that stakes LP tokens. mapping(uint256 => mapping(address => UserInfo)) public userInfo; // Total allocation points. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint = 0; // The block number when STG 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); constructor( StargateToken _stargate, uint256 _stargatePerBlock, uint256 _startBlock, uint256 _bonusEndBlock ) { require(_startBlock >= block.number, "LPStaking: _startBlock must be >= current block"); require(_bonusEndBlock >= _startBlock, "LPStaking: _bonusEndBlock must be > than _startBlock"); require(address(_stargate) != address(0x0), "Stargate: _stargate cannot be 0x0"); stargate = _stargate; stargatePerBlock = _stargatePerBlock; startBlock = _startBlock; bonusEndBlock = _bonusEndBlock; } function poolLength() external view returns (uint256) { return poolInfo.length; } /// @notice handles adding a new LP token (Can only be called by the owner) /// @param _allocPoint The alloc point is used as the weight of the pool against all other alloc points added. /// @param _lpToken The lp token address function add(uint256 _allocPoint, IERC20 _lpToken) public onlyOwner { massUpdatePools(); require(address(_lpToken) != address(0x0), "StarGate: lpToken cant be 0x0"); require(addedLPTokens[address(_lpToken)] == false, "StarGate: _lpToken already exists"); addedLPTokens[address(_lpToken)] = true; uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock; totalAllocPoint = totalAllocPoint.add(_allocPoint); poolInfo.push(PoolInfo({lpToken: _lpToken, allocPoint: _allocPoint, lastRewardBlock: lastRewardBlock, accStargatePerShare: 0})); } function set(uint256 _pid, uint256 _allocPoint) public onlyOwner { massUpdatePools(); totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint); poolInfo[_pid].allocPoint = _allocPoint; } function getMultiplier(uint256 _from, uint256 _to) public view returns (uint256) { if (_to <= bonusEndBlock) { return _to.sub(_from).mul(BONUS_MULTIPLIER); } else if (_from >= bonusEndBlock) { return _to.sub(_from); } else { return bonusEndBlock.sub(_from).mul(BONUS_MULTIPLIER).add(_to.sub(bonusEndBlock)); } } function pendingStargate(uint256 _pid, address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accStargatePerShare = pool.accStargatePerShare; uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (block.number > pool.lastRewardBlock && lpSupply != 0) { uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 stargateReward = multiplier.mul(stargatePerBlock).mul(pool.allocPoint).div(totalAllocPoint); accStargatePerShare = accStargatePerShare.add(stargateReward.mul(1e12).div(lpSupply)); } return user.amount.mul(accStargatePerShare).div(1e12).sub(user.rewardDebt); } function massUpdatePools() public { uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { updatePool(pid); } } 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 stargateReward = multiplier.mul(stargatePerBlock).mul(pool.allocPoint).div(totalAllocPoint); pool.accStargatePerShare = pool.accStargatePerShare.add(stargateReward.mul(1e12).div(lpSupply)); pool.lastRewardBlock = block.number; } function deposit(uint256 _pid, uint256 _amount) public { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; updatePool(_pid); if (user.amount > 0) { uint256 pending = user.amount.mul(pool.accStargatePerShare).div(1e12).sub(user.rewardDebt); safeStargateTransfer(msg.sender, pending); } pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount); user.amount = user.amount.add(_amount); user.rewardDebt = user.amount.mul(pool.accStargatePerShare).div(1e12); lpBalances[_pid] = lpBalances[_pid].add(_amount); emit Deposit(msg.sender, _pid, _amount); } function withdraw(uint256 _pid, uint256 _amount) public { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; require(user.amount >= _amount, "withdraw: _amount is too large"); updatePool(_pid); uint256 pending = user.amount.mul(pool.accStargatePerShare).div(1e12).sub(user.rewardDebt); safeStargateTransfer(msg.sender, pending); user.amount = user.amount.sub(_amount); user.rewardDebt = user.amount.mul(pool.accStargatePerShare).div(1e12); pool.lpToken.safeTransfer(address(msg.sender), _amount); lpBalances[_pid] = lpBalances[_pid].sub(_amount); emit Withdraw(msg.sender, _pid, _amount); } /// @notice Withdraw without caring about rewards. /// @param _pid The pid specifies the pool function emergencyWithdraw(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; uint256 userAmount = user.amount; user.amount = 0; user.rewardDebt = 0; pool.lpToken.safeTransfer(address(msg.sender), userAmount); lpBalances[_pid] = lpBalances[_pid].sub(userAmount); emit EmergencyWithdraw(msg.sender, _pid, userAmount); } /// @notice Safe transfer function, just in case if rounding error causes pool to not have enough STGs. /// @param _to The address to transfer tokens to /// @param _amount The quantity to transfer function safeStargateTransfer(address _to, uint256 _amount) internal { uint256 stargateBal = stargate.balanceOf(address(this)); if (_amount > stargateBal) { IERC20(stargate).safeTransfer(_to, stargateBal); } else { IERC20(stargate).safeTransfer(_to, _amount); } } function setStargatePerBlock(uint256 _stargatePerBlock) external onlyOwner { massUpdatePools(); stargatePerBlock = _stargatePerBlock; } // Override the renounce ownership inherited by zeppelin ownable function renounceOwnership() public override onlyOwner {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "./Context.sol"; import "./IERC20.sol"; import "./SafeMath.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; 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_) { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity >=0.5.0; import "./ILayerZeroUserApplicationConfig.sol"; interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig { // @notice send a LayerZero message to the specified address at a LayerZero endpoint. // @param _dstChainId - the destination chain identifier // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains // @param _payload - a custom bytes payload to send to the destination contract // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction // @param _adapterParams - parameters for custom functionality. ie: pay for a specified destination gasAmount, or receive airdropped native gas from the relayer on destination function send(uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable; // @notice used by the messaging library to publish verified payload // @param _srcChainId - the source chain identifier // @param _srcAddress - the source contract (as bytes) at the source chain // @param _dstAddress - the address on destination chain // @param _nonce - the unbound message ordering nonce // @param _gasLimit - the gas limit for external contract execution // @param _payload - verified payload to send to the destination contract function receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload) external; // @notice get the inboundNonce of a receiver from a source chain which could be EVM or non-EVM chain // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64); // @notice get the outboundNonce from this source chain which, consequently, is always an EVM // @param _srcAddress - the source chain contract address function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64); // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery // @param _dstChainId - the destination chain identifier // @param _userApplication - the user app address on this EVM chain // @param _payload - the custom message to send over LayerZero // @param _payInZRO - if false, user app pays the protocol fee in native token // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam) external view returns (uint nativeFee, uint zroFee); // @notice get this Endpoint's immutable source identifier function getChainId() external view returns (uint16); // @notice the interface to retry failed message on this Endpoint destination // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address // @param _payload - the payload to be retried function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external; // @notice query if any STORED payload (message blocking) at the endpoint. // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool); // @notice query if the _libraryAddress is valid for sending msgs. // @param _userApplication - the user app address on this EVM chain function getSendLibraryAddress(address _userApplication) external view returns (address); // @notice query if the _libraryAddress is valid for receiving msgs. // @param _userApplication - the user app address on this EVM chain function getReceiveLibraryAddress(address _userApplication) external view returns (address); // @notice query if the non-reentrancy guard for send() is on // @return true if the guard is on. false otherwise function isSendingPayload() external view returns (bool); // @notice query if the non-reentrancy guard for receive() is on // @return true if the guard is on. false otherwise function isReceivingPayload() external view returns (bool); // @notice get the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _userApplication - the contract address of the user application // @param _configType - type of configuration. every messaging library has its own convention. function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory); // @notice get the send() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getSendVersion(address _userApplication) external view returns (uint16); // @notice get the lzReceive() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getReceiveVersion(address _userApplication) external view returns (uint16); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity >=0.5.0; interface ILayerZeroReceiver { // @notice LayerZero endpoint will invoke this function to deliver the message on the destination // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external; }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity >=0.5.0; interface ILayerZeroUserApplicationConfig { // @notice set the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _configType - type of configuration. every messaging library has its own convention. // @param _config - configuration in the bytes. can encode arbitrary content. function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external; // @notice set the send() LayerZero messaging library version to _version // @param _version - new messaging library version function setSendVersion(uint16 _version) external; // @notice set the lzReceive() LayerZero messaging library version to _version // @param _version - new messaging library version function setReceiveVersion(uint16 _version) external; // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload // @param _srcChainId - the chainId of the source chain // @param _srcAddress - the contract address of the source contract at the source chain function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external; }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.7.6; import "./ERC20.sol"; import "./Ownable.sol"; import "./ILayerZeroEndpoint.sol"; import "./ILayerZeroReceiver.sol"; import "./ILayerZeroUserApplicationConfig.sol"; contract OmnichainFungibleToken is ERC20, Ownable, ILayerZeroReceiver, ILayerZeroUserApplicationConfig { // the only endpointId these tokens will ever be minted on // required: the LayerZero endpoint which is passed in the constructor ILayerZeroEndpoint immutable public endpoint; // a map of our connected contracts mapping(uint16 => bytes) public dstContractLookup; // pause the sendTokens() bool public paused; bool public isMain; event Paused(bool isPaused); event SendToChain(uint16 dstChainId, bytes to, uint256 qty); event ReceiveFromChain(uint16 srcChainId, uint64 nonce, uint256 qty); constructor( string memory _name, string memory _symbol, address _endpoint, uint16 _mainChainId, uint256 initialSupplyOnMainEndpoint ) ERC20(_name, _symbol) { if (ILayerZeroEndpoint(_endpoint).getChainId() == _mainChainId) { _mint(msg.sender, initialSupplyOnMainEndpoint); isMain = true; } // set the LayerZero endpoint endpoint = ILayerZeroEndpoint(_endpoint); } function pauseSendTokens(bool _pause) external onlyOwner { paused = _pause; emit Paused(_pause); } function setDestination(uint16 _dstChainId, bytes calldata _destinationContractAddress) public onlyOwner { dstContractLookup[_dstChainId] = _destinationContractAddress; } function chainId() external view returns (uint16){ return endpoint.getChainId(); } function sendTokens( uint16 _dstChainId, // send tokens to this chainId bytes calldata _to, // where to deliver the tokens on the destination chain uint256 _qty, // how many tokens to send address zroPaymentAddress, // ZRO payment address bytes calldata adapterParam // txParameters ) public payable { require(!paused, "OFT: sendTokens() is currently paused"); // lock if leaving the safe chain, otherwise burn if (isMain) { // ... transferFrom the tokens to this contract for locking purposes _transfer(msg.sender, address(this), _qty); } else { _burn(msg.sender, _qty); } // abi.encode() the payload with the values to send bytes memory payload = abi.encode(_to, _qty); // send LayerZero message endpoint.send{value: msg.value}( _dstChainId, // destination chainId dstContractLookup[_dstChainId], // destination UA address payload, // abi.encode()'ed bytes msg.sender, // refund address (LayerZero will refund any extra gas back to caller of send() zroPaymentAddress, // 'zroPaymentAddress' unused for this mock/example adapterParam // 'adapterParameters' unused for this mock/example ); emit SendToChain(_dstChainId, _to, _qty); } function lzReceive( uint16 _srcChainId, bytes memory _fromAddress, uint64 nonce, bytes memory _payload ) external override { require(msg.sender == address(endpoint)); // boilerplate! lzReceive must be called by the endpoint for security require( _fromAddress.length == dstContractLookup[_srcChainId].length && keccak256(_fromAddress) == keccak256(dstContractLookup[_srcChainId]), "OFT: invalid source sending contract" ); // decode (bytes memory _to, uint256 _qty) = abi.decode(_payload, (bytes, uint256)); address toAddress; // load the toAddress from the bytes assembly { toAddress := mload(add(_to, 20)) } // mint the tokens back into existence, to the receiving address if (isMain) { _transfer(address(this), toAddress, _qty); } else { _mint(toAddress, _qty); } emit ReceiveFromChain(_srcChainId, nonce, _qty); } function estimateSendTokensFee(uint16 _dstChainId, bool _useZro, bytes calldata txParameters) external view returns (uint256 nativeFee, uint256 zroFee) { return endpoint.estimateFees(_dstChainId, address(this), bytes(""), _useZro, txParameters); } //---------------------------DAO CALL---------------------------------------- // generic config for user Application function setConfig( uint16 _version, uint16 _chainId, uint256 _configType, bytes calldata _config ) external override onlyOwner { endpoint.setConfig(_version, _chainId, _configType, _config); } function setSendVersion(uint16 version) external override onlyOwner { endpoint.setSendVersion(version); } function setReceiveVersion(uint16 version) external override onlyOwner { endpoint.setReceiveVersion(version); } function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner { endpoint.forceResumeReceive(_srcChainId, _srcAddress); } function renounceOwnership() public override onlyOwner {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "./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. */ abstract 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "./IERC20.sol"; import "./SafeMath.sol"; import "./Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @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) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * 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); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.7.6; import "./OmnichainFungibleToken.sol"; contract StargateToken is OmnichainFungibleToken { constructor( string memory _name, string memory _symbol, address _endpoint, uint16 _mainEndpointId, uint256 _initialSupplyOnMainEndpoint ) OmnichainFungibleToken(_name, _symbol, _endpoint, _mainEndpointId, _initialSupplyOnMainEndpoint) {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract StargateToken","name":"_stargate","type":"address"},{"internalType":"uint256","name":"_stargatePerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"uint256","name":"_bonusEndBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":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":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 IERC20","name":"_lpToken","type":"address"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bonusEndBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lpBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingStargate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accStargatePerShare","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"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_stargatePerBlock","type":"uint256"}],"name":"setStargatePerBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stargate","outputs":[{"internalType":"contract StargateToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stargatePerBlock","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":"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":"_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
608060405260006008553480156200001657600080fd5b506040516200194338038062001943833981810160405260808110156200003c57600080fd5b508051602082015160408301516060909301519192909160006200005f620001a5565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35043821015620000ea5760405162461bcd60e51b815260040180806020018281038252602f81526020018062001914602f913960400191505060405180910390fd5b818110156200012b5760405162461bcd60e51b8152600401808060200182810382526034815260200180620018e06034913960400191505060405180910390fd5b6001600160a01b038416620001725760405162461bcd60e51b8152600401808060200182810382526021815260200180620018bf6021913960400191505060405180910390fd5b600180546001600160a01b0319166001600160a01b039590951694909417909355600391909155600955600255620001a9565b3390565b61170680620001b96000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806351eb05a6116100c35780638da5cb5b1161007c5780638da5cb5b146103215780638dbb1e3a1461032957806393f1a40b1461034c57806398c03a7214610391578063e2bbb15814610399578063f2fde38b146103bc5761014d565b806351eb05a6146102ab5780635312ea8e146102c8578063630b5ba1146102e55780636c099dee146102ed578063715018a6146103115780638aa28550146103195761014d565b80631aed6553116101155780631aed6553146102035780632b8bbbe81461020b5780632f607fdd146102375780633497070614610263578063441a3e701461028057806348cd4cb1146102a35761014d565b80630328e32f14610152578063081e3eda146101815780631526fe271461018957806317caf6f1146101d65780631ab06ee5146101de575b600080fd5b61016f6004803603602081101561016857600080fd5b50356103e2565b60408051918252519081900360200190f35b61016f6103f4565b6101a66004803603602081101561019f57600080fd5b50356103fa565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b61016f61043e565b610201600480360360408110156101f457600080fd5b5080359060200135610444565b005b61016f610518565b6102016004803603604081101561022157600080fd5b50803590602001356001600160a01b031661051e565b61016f6004803603604081101561024d57600080fd5b50803590602001356001600160a01b0316610770565b6102016004803603602081101561027957600080fd5b50356108e6565b6102016004803603604081101561029657600080fd5b5080359060200135610955565b61016f610ad5565b610201600480360360208110156102c157600080fd5b5035610adb565b610201600480360360208110156102de57600080fd5b5035610c05565b610201610ccf565b6102f5610cf2565b604080516001600160a01b039092168252519081900360200190f35b610201610d01565b61016f610d65565b6102f5610d6a565b61016f6004803603604081101561033f57600080fd5b5080359060200135610d79565b6103786004803603604081101561036257600080fd5b50803590602001356001600160a01b0316610ddf565b6040805192835260208301919091528051918290030190f35b61016f610e03565b610201600480360360408110156103af57600080fd5b5080359060200135610e09565b610201600480360360208110156103d257600080fd5b50356001600160a01b0316610f3c565b60056020526000908152604090205481565b60065490565b6006818154811061040a57600080fd5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b60085481565b61044c61103e565b6001600160a01b031661045d610d6a565b6001600160a01b0316146104a6576040805162461bcd60e51b81526020600482018190526024820152600080516020611687833981519152604482015290519081900360640190fd5b6104ae610ccf565b6104eb816104e5600685815481106104c257fe5b90600052602060002090600402016001015460085461104290919063ffffffff16565b9061109f565b60088190555080600683815481106104ff57fe5b9060005260206000209060040201600101819055505050565b60025481565b61052661103e565b6001600160a01b0316610537610d6a565b6001600160a01b031614610580576040805162461bcd60e51b81526020600482018190526024820152600080516020611687833981519152604482015290519081900360640190fd5b610588610ccf565b6001600160a01b0381166105e3576040805162461bcd60e51b815260206004820152601d60248201527f53746172476174653a206c70546f6b656e2063616e7420626520307830000000604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff161561063b5760405162461bcd60e51b81526004018080602001828103825260218152602001806115f96021913960400191505060405180910390fd5b6001600160a01b0381166000908152600460205260408120805460ff19166001179055600954431161066f57600954610671565b435b600854909150610681908461109f565b600855604080516080810182526001600160a01b0393841681526020810194855290810191825260006060820181815260068054600181018255925291517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f600490920291820180546001600160a01b031916919095161790935592517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d40830155517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4182015590517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4290910155565b6000806006848154811061078057fe5b600091825260208083208784526007825260408085206001600160a01b03898116875290845281862060049586029093016003810154815484516370a0823160e01b81523098810198909852935191985093969395939492909116926370a08231926024808301939192829003018186803b1580156107fe57600080fd5b505afa158015610812573d6000803e3d6000fd5b505050506040513d602081101561082857600080fd5b505160028501549091504311801561083f57508015155b156108ab576000610854856002015443610d79565b90506000610887600854610881886001015461087b6003548761110090919063ffffffff16565b90611100565b90611159565b90506108a661089f846108818464e8d4a51000611100565b859061109f565b935050505b6108d983600101546108d364e8d4a5100061088186886000015461110090919063ffffffff16565b90611042565b9450505050505b92915050565b6108ee61103e565b6001600160a01b03166108ff610d6a565b6001600160a01b031614610948576040805162461bcd60e51b81526020600482018190526024820152600080516020611687833981519152604482015290519081900360640190fd5b610950610ccf565b600355565b60006006838154811061096457fe5b6000918252602080832086845260078252604080852033865290925292208054600490920290920192508311156109e2576040805162461bcd60e51b815260206004820152601e60248201527f77697468647261773a205f616d6f756e7420697320746f6f206c617267650000604482015290519081900360640190fd5b6109eb84610adb565b6000610a1982600101546108d364e8d4a510006108818760030154876000015461110090919063ffffffff16565b9050610a2533826111c0565b8154610a319085611042565b8083556003840154610a4e9164e8d4a51000916108819190611100565b60018301558254610a69906001600160a01b03163386611279565b600085815260056020526040902054610a829085611042565b6000868152600560209081526040918290209290925580518681529051879233927ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568929081900390910190a35050505050565b60095481565b600060068281548110610aea57fe5b9060005260206000209060040201905080600201544311610b0b5750610c02565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610b5557600080fd5b505afa158015610b69573d6000803e3d6000fd5b505050506040513d6020811015610b7f57600080fd5b5051905080610b95575043600290910155610c02565b6000610ba5836002015443610d79565b90506000610bcc600854610881866001015461087b6003548761110090919063ffffffff16565b9050610bef610be4846108818464e8d4a51000611100565b60038601549061109f565b6003850155505043600290920191909155505b50565b600060068281548110610c1457fe5b600091825260208083208584526007825260408085203380875293528420805485825560018201959095556004909302018054909450919291610c64916001600160a01b03919091169083611279565b600084815260056020526040902054610c7d9082611042565b6000858152600560209081526040918290209290925580518381529051869233927fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae0595929081900390910190a350505050565b60065460005b81811015610cee57610ce681610adb565b600101610cd5565b5050565b6001546001600160a01b031681565b610d0961103e565b6001600160a01b0316610d1a610d6a565b6001600160a01b031614610d63576040805162461bcd60e51b81526020600482018190526024820152600080516020611687833981519152604482015290519081900360640190fd5b565b600181565b6000546001600160a01b031690565b60006002548211610d9a57610d93600161087b8486611042565b90506108e0565b6002548310610dad57610d938284611042565b610d93610dc56002548461104290919063ffffffff16565b6104e5600161087b8760025461104290919063ffffffff16565b60076020908152600092835260408084209091529082529020805460019091015482565b60035481565b600060068381548110610e1857fe5b60009182526020808320868452600782526040808520338652909252922060049091029091019150610e4984610adb565b805415610e8c576000610e7e82600101546108d364e8d4a510006108818760030154876000015461110090919063ffffffff16565b9050610e8a33826111c0565b505b8154610ea3906001600160a01b03163330866112cb565b8054610eaf908461109f565b8082556003830154610ecc9164e8d4a51000916108819190611100565b6001820155600084815260056020526040902054610eea908461109f565b6000858152600560209081526040918290209290925580518581529051869233927f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15929081900390910190a350505050565b610f4461103e565b6001600160a01b0316610f55610d6a565b6001600160a01b031614610f9e576040805162461bcd60e51b81526020600482018190526024820152600080516020611687833981519152604482015290519081900360640190fd5b6001600160a01b038116610fe35760405162461bcd60e51b815260040180806020018281038252602681526020018061161a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b600082821115611099576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156110f9576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008261110f575060006108e0565b8282028284828161111c57fe5b04146110f95760405162461bcd60e51b81526004018080602001828103825260218152602001806116666021913960400191505060405180910390fd5b60008082116111af576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816111b857fe5b049392505050565b600154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561120b57600080fd5b505afa15801561121f573d6000803e3d6000fd5b505050506040513d602081101561123557600080fd5b505190508082111561125d57600154611258906001600160a01b03168483611279565b611274565b600154611274906001600160a01b03168484611279565b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261127490849061132b565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261132590859061132b565b50505050565b6000611380826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166113dc9092919063ffffffff16565b8051909150156112745780806020019051602081101561139f57600080fd5b50516112745760405162461bcd60e51b815260040180806020018281038252602a8152602001806116a7602a913960400191505060405180910390fd5b60606113eb84846000856113f3565b949350505050565b6060824710156114345760405162461bcd60e51b81526004018080602001828103825260268152602001806116406026913960400191505060405180910390fd5b61143d8561154e565b61148e576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106114cc5780518252601f1990920191602091820191016114ad565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461152e576040519150601f19603f3d011682016040523d82523d6000602084013e611533565b606091505b5091509150611543828286611554565b979650505050505050565b3b151590565b606083156115635750816110f9565b8251156115735782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156115bd5781810151838201526020016115a5565b50505050905090810190601f1680156115ea5780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe53746172476174653a205f6c70546f6b656e20616c7265616479206578697374734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220164dad91f30f320ed0df206216844f4ac5a616a037abb69a0d9fc9ebab13814164736f6c6343000706003353746172676174653a205f73746172676174652063616e6e6f74206265203078304c505374616b696e673a205f626f6e7573456e64426c6f636b206d757374206265203e207468616e205f7374617274426c6f636b4c505374616b696e673a205f7374617274426c6f636b206d757374206265203e3d2063757272656e7420626c6f636b0000000000000000000000002f6f07cdcf3588944bf4c42ac74ff24bf56e759000000000000000000000000000000000000000000000000025aa937a60b346400000000000000000000000000000000000000000000000000000000000ba63cb0000000000000000000000000000000000000000000000000000000000ba63cb
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806351eb05a6116100c35780638da5cb5b1161007c5780638da5cb5b146103215780638dbb1e3a1461032957806393f1a40b1461034c57806398c03a7214610391578063e2bbb15814610399578063f2fde38b146103bc5761014d565b806351eb05a6146102ab5780635312ea8e146102c8578063630b5ba1146102e55780636c099dee146102ed578063715018a6146103115780638aa28550146103195761014d565b80631aed6553116101155780631aed6553146102035780632b8bbbe81461020b5780632f607fdd146102375780633497070614610263578063441a3e701461028057806348cd4cb1146102a35761014d565b80630328e32f14610152578063081e3eda146101815780631526fe271461018957806317caf6f1146101d65780631ab06ee5146101de575b600080fd5b61016f6004803603602081101561016857600080fd5b50356103e2565b60408051918252519081900360200190f35b61016f6103f4565b6101a66004803603602081101561019f57600080fd5b50356103fa565b604080516001600160a01b0390951685526020850193909352838301919091526060830152519081900360800190f35b61016f61043e565b610201600480360360408110156101f457600080fd5b5080359060200135610444565b005b61016f610518565b6102016004803603604081101561022157600080fd5b50803590602001356001600160a01b031661051e565b61016f6004803603604081101561024d57600080fd5b50803590602001356001600160a01b0316610770565b6102016004803603602081101561027957600080fd5b50356108e6565b6102016004803603604081101561029657600080fd5b5080359060200135610955565b61016f610ad5565b610201600480360360208110156102c157600080fd5b5035610adb565b610201600480360360208110156102de57600080fd5b5035610c05565b610201610ccf565b6102f5610cf2565b604080516001600160a01b039092168252519081900360200190f35b610201610d01565b61016f610d65565b6102f5610d6a565b61016f6004803603604081101561033f57600080fd5b5080359060200135610d79565b6103786004803603604081101561036257600080fd5b50803590602001356001600160a01b0316610ddf565b6040805192835260208301919091528051918290030190f35b61016f610e03565b610201600480360360408110156103af57600080fd5b5080359060200135610e09565b610201600480360360208110156103d257600080fd5b50356001600160a01b0316610f3c565b60056020526000908152604090205481565b60065490565b6006818154811061040a57600080fd5b600091825260209091206004909102018054600182015460028301546003909301546001600160a01b039092169350919084565b60085481565b61044c61103e565b6001600160a01b031661045d610d6a565b6001600160a01b0316146104a6576040805162461bcd60e51b81526020600482018190526024820152600080516020611687833981519152604482015290519081900360640190fd5b6104ae610ccf565b6104eb816104e5600685815481106104c257fe5b90600052602060002090600402016001015460085461104290919063ffffffff16565b9061109f565b60088190555080600683815481106104ff57fe5b9060005260206000209060040201600101819055505050565b60025481565b61052661103e565b6001600160a01b0316610537610d6a565b6001600160a01b031614610580576040805162461bcd60e51b81526020600482018190526024820152600080516020611687833981519152604482015290519081900360640190fd5b610588610ccf565b6001600160a01b0381166105e3576040805162461bcd60e51b815260206004820152601d60248201527f53746172476174653a206c70546f6b656e2063616e7420626520307830000000604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff161561063b5760405162461bcd60e51b81526004018080602001828103825260218152602001806115f96021913960400191505060405180910390fd5b6001600160a01b0381166000908152600460205260408120805460ff19166001179055600954431161066f57600954610671565b435b600854909150610681908461109f565b600855604080516080810182526001600160a01b0393841681526020810194855290810191825260006060820181815260068054600181018255925291517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f600490920291820180546001600160a01b031916919095161790935592517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d40830155517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4182015590517ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d4290910155565b6000806006848154811061078057fe5b600091825260208083208784526007825260408085206001600160a01b03898116875290845281862060049586029093016003810154815484516370a0823160e01b81523098810198909852935191985093969395939492909116926370a08231926024808301939192829003018186803b1580156107fe57600080fd5b505afa158015610812573d6000803e3d6000fd5b505050506040513d602081101561082857600080fd5b505160028501549091504311801561083f57508015155b156108ab576000610854856002015443610d79565b90506000610887600854610881886001015461087b6003548761110090919063ffffffff16565b90611100565b90611159565b90506108a661089f846108818464e8d4a51000611100565b859061109f565b935050505b6108d983600101546108d364e8d4a5100061088186886000015461110090919063ffffffff16565b90611042565b9450505050505b92915050565b6108ee61103e565b6001600160a01b03166108ff610d6a565b6001600160a01b031614610948576040805162461bcd60e51b81526020600482018190526024820152600080516020611687833981519152604482015290519081900360640190fd5b610950610ccf565b600355565b60006006838154811061096457fe5b6000918252602080832086845260078252604080852033865290925292208054600490920290920192508311156109e2576040805162461bcd60e51b815260206004820152601e60248201527f77697468647261773a205f616d6f756e7420697320746f6f206c617267650000604482015290519081900360640190fd5b6109eb84610adb565b6000610a1982600101546108d364e8d4a510006108818760030154876000015461110090919063ffffffff16565b9050610a2533826111c0565b8154610a319085611042565b8083556003840154610a4e9164e8d4a51000916108819190611100565b60018301558254610a69906001600160a01b03163386611279565b600085815260056020526040902054610a829085611042565b6000868152600560209081526040918290209290925580518681529051879233927ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568929081900390910190a35050505050565b60095481565b600060068281548110610aea57fe5b9060005260206000209060040201905080600201544311610b0b5750610c02565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015610b5557600080fd5b505afa158015610b69573d6000803e3d6000fd5b505050506040513d6020811015610b7f57600080fd5b5051905080610b95575043600290910155610c02565b6000610ba5836002015443610d79565b90506000610bcc600854610881866001015461087b6003548761110090919063ffffffff16565b9050610bef610be4846108818464e8d4a51000611100565b60038601549061109f565b6003850155505043600290920191909155505b50565b600060068281548110610c1457fe5b600091825260208083208584526007825260408085203380875293528420805485825560018201959095556004909302018054909450919291610c64916001600160a01b03919091169083611279565b600084815260056020526040902054610c7d9082611042565b6000858152600560209081526040918290209290925580518381529051869233927fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae0595929081900390910190a350505050565b60065460005b81811015610cee57610ce681610adb565b600101610cd5565b5050565b6001546001600160a01b031681565b610d0961103e565b6001600160a01b0316610d1a610d6a565b6001600160a01b031614610d63576040805162461bcd60e51b81526020600482018190526024820152600080516020611687833981519152604482015290519081900360640190fd5b565b600181565b6000546001600160a01b031690565b60006002548211610d9a57610d93600161087b8486611042565b90506108e0565b6002548310610dad57610d938284611042565b610d93610dc56002548461104290919063ffffffff16565b6104e5600161087b8760025461104290919063ffffffff16565b60076020908152600092835260408084209091529082529020805460019091015482565b60035481565b600060068381548110610e1857fe5b60009182526020808320868452600782526040808520338652909252922060049091029091019150610e4984610adb565b805415610e8c576000610e7e82600101546108d364e8d4a510006108818760030154876000015461110090919063ffffffff16565b9050610e8a33826111c0565b505b8154610ea3906001600160a01b03163330866112cb565b8054610eaf908461109f565b8082556003830154610ecc9164e8d4a51000916108819190611100565b6001820155600084815260056020526040902054610eea908461109f565b6000858152600560209081526040918290209290925580518581529051869233927f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15929081900390910190a350505050565b610f4461103e565b6001600160a01b0316610f55610d6a565b6001600160a01b031614610f9e576040805162461bcd60e51b81526020600482018190526024820152600080516020611687833981519152604482015290519081900360640190fd5b6001600160a01b038116610fe35760405162461bcd60e51b815260040180806020018281038252602681526020018061161a6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b600082821115611099576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000828201838110156110f9576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008261110f575060006108e0565b8282028284828161111c57fe5b04146110f95760405162461bcd60e51b81526004018080602001828103825260218152602001806116666021913960400191505060405180910390fd5b60008082116111af576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816111b857fe5b049392505050565b600154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561120b57600080fd5b505afa15801561121f573d6000803e3d6000fd5b505050506040513d602081101561123557600080fd5b505190508082111561125d57600154611258906001600160a01b03168483611279565b611274565b600154611274906001600160a01b03168484611279565b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261127490849061132b565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261132590859061132b565b50505050565b6000611380826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166113dc9092919063ffffffff16565b8051909150156112745780806020019051602081101561139f57600080fd5b50516112745760405162461bcd60e51b815260040180806020018281038252602a8152602001806116a7602a913960400191505060405180910390fd5b60606113eb84846000856113f3565b949350505050565b6060824710156114345760405162461bcd60e51b81526004018080602001828103825260268152602001806116406026913960400191505060405180910390fd5b61143d8561154e565b61148e576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b600080866001600160a01b031685876040518082805190602001908083835b602083106114cc5780518252601f1990920191602091820191016114ad565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461152e576040519150601f19603f3d011682016040523d82523d6000602084013e611533565b606091505b5091509150611543828286611554565b979650505050505050565b3b151590565b606083156115635750816110f9565b8251156115735782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156115bd5781810151838201526020016115a5565b50505050905090810190601f1680156115ea5780820380516001836020036101000a031916815260200191505b509250505060405180910390fdfe53746172476174653a205f6c70546f6b656e20616c7265616479206578697374734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220164dad91f30f320ed0df206216844f4ac5a616a037abb69a0d9fc9ebab13814164736f6c63430007060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002f6f07cdcf3588944bf4c42ac74ff24bf56e759000000000000000000000000000000000000000000000000025aa937a60b346400000000000000000000000000000000000000000000000000000000000ba63cb0000000000000000000000000000000000000000000000000000000000ba63cb
-----Decoded View---------------
Arg [0] : _stargate (address): 0x2F6F07CDcf3588944Bf4C42aC74ff24bF56e7590
Arg [1] : _stargatePerBlock (uint256): 2714143879261800000
Arg [2] : _startBlock (uint256): 12215243
Arg [3] : _bonusEndBlock (uint256): 12215243
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000002f6f07cdcf3588944bf4c42ac74ff24bf56e7590
Arg [1] : 00000000000000000000000000000000000000000000000025aa937a60b34640
Arg [2] : 0000000000000000000000000000000000000000000000000000000000ba63cb
Arg [3] : 0000000000000000000000000000000000000000000000000000000000ba63cb
Deployed Bytecode Sourcemap
261:9105:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1984:45;;;;;;;;;;;;;;;;-1:-1:-1;1984:45:8;;:::i;:::-;;;;;;;;;;;;;;;;3265:93;;;:::i;2062:26::-;;;;;;;;;;;;;;;;-1:-1:-1;2062:26:8;;:::i;:::-;;;;-1:-1:-1;;;;;2062:26:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2299:34;;;:::i;4229:239::-;;;;;;;;;;;;;;;;-1:-1:-1;4229:239:8;;;;;;;:::i;:::-;;1679:28;;;:::i;3604:619::-;;;;;;;;;;;;;;;;-1:-1:-1;3604:619:8;;;;;;-1:-1:-1;;;;;3604:619:8;;:::i;4863:784::-;;;;;;;;;;;;;;;;-1:-1:-1;4863:784:8;;;;;;-1:-1:-1;;;;;4863:784:8;;:::i;9077:155::-;;;;;;;;;;;;;;;;-1:-1:-1;9077:155:8;;:::i;7252:723::-;;;;;;;;;;;;;;;;-1:-1:-1;7252:723:8;;;;;;;:::i;2387:25::-;;;:::i;5834:692::-;;;;;;;;;;;;;;;;-1:-1:-1;5834:692:8;;:::i;8083:450::-;;;;;;;;;;;;;;;;-1:-1:-1;8083:450:8;;:::i;5653:175::-;;;:::i;1596:29::-;;;:::i;:::-;;;;-1:-1:-1;;;;;1596:29:8;;;;;;;;;;;;;;9307:57;;;:::i;1838:44::-;;;:::i;1061:85:10:-;;;:::i;4474:383:8:-;;;;;;;;;;;;;;;;-1:-1:-1;4474:383:8;;;;;;;:::i;2142:64::-;;;;;;;;;;;;;;;;-1:-1:-1;2142:64:8;;;;;;-1:-1:-1;;;;;2142:64:8;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;1750:31;;;:::i;6532:714::-;;;;;;;;;;;;;;;;-1:-1:-1;6532:714:8;;;;;;;:::i;1987:240:10:-;;;;;;;;;;;;;;;;-1:-1:-1;1987:240:10;-1:-1:-1;;;;;1987:240:10;;:::i;1984:45:8:-;;;;;;;;;;;;;:::o;3265:93::-;3336:8;:15;3265:93;:::o;2062:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2062:26:8;;;;-1:-1:-1;2062:26:8;;;:::o;2299:34::-;;;;:::o;4229:239::-;1284:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:10;;1265:68;;;;;-1:-1:-1;;;1265:68:10;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1265:68:10;;;;;;;;;;;;;;;4304:17:8::1;:15;:17::i;:::-;4349:63;4400:11;4349:46;4369:8;4378:4;4369:14;;;;;;;;;;;;;;;;;;:25;;;4349:15;;:19;;:46;;;;:::i;:::-;:50:::0;::::1;:63::i;:::-;4331:15;:81;;;;4450:11;4422:8;4431:4;4422:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;4229:239:::0;;:::o;1679:28::-;;;;:::o;3604:619::-;1284:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:10;;1265:68;;;;;-1:-1:-1;;;1265:68:10;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1265:68:10;;;;;;;;;;;;;;;3682:17:8::1;:15;:17::i;:::-;-1:-1:-1::0;;;;;3717:33:8;::::1;3709:75;;;::::0;;-1:-1:-1;;;3709:75:8;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;3802:32:8;::::1;;::::0;;;:13:::1;:32;::::0;;;;;::::1;;:41;3794:87;;;;-1:-1:-1::0;;;3794:87:8::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;3891:32:8;::::1;;::::0;;;:13:::1;:32;::::0;;;;:39;;-1:-1:-1;;3891:39:8::1;3926:4;3891:39;::::0;;3981:10:::1;::::0;3966:12:::1;:25;:53;;4009:10;;3966:53;;;3994:12;3966:53;4047:15;::::0;3940:79;;-1:-1:-1;4047:32:8::1;::::0;4067:11;4047:19:::1;:32::i;:::-;4029:15;:50:::0;4103:112:::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;4103:112:8;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;-1:-1:-1;4103:112:8;;;;;;4089:8:::1;:127:::0;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;4089:127:8::1;::::0;;;::::1;;::::0;;;;;;;;;;;;;;;;;;;;;3604:619::o;4863:784::-;4940:7;4959:21;4983:8;4992:4;4983:14;;;;;;;;;;;;;;;;5031;;;:8;:14;;;;;;-1:-1:-1;;;;;5031:21:8;;;;;;;;;;;4983:14;;;;;;;5092:24;;;;5145:12;;:37;;-1:-1:-1;;;5145:37:8;;5176:4;5145:37;;;;;;;;;4983:14;;-1:-1:-1;5031:21:8;;5092:24;;4983:14;;5145:12;;;;;:22;;:37;;;;;4983:14;;5145:37;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5145:37:8;5211:20;;;;5145:37;;-1:-1:-1;5196:12:8;:35;:52;;;;-1:-1:-1;5235:13:8;;;5196:52;5192:365;;;5264:18;5285:49;5299:4;:20;;;5321:12;5285:13;:49::i;:::-;5264:70;;5348:22;5373:74;5431:15;;5373:53;5410:4;:15;;;5373:32;5388:16;;5373:10;:14;;:32;;;;:::i;:::-;:36;;:53::i;:::-;:57;;:74::i;:::-;5348:99;-1:-1:-1;5483:63:8;5507:38;5536:8;5507:24;5348:99;5526:4;5507:18;:24::i;:38::-;5483:19;;:23;:63::i;:::-;5461:85;;5192:365;;;5573:67;5624:4;:15;;;5573:46;5614:4;5573:36;5589:19;5573:4;:11;;;:15;;:36;;;;:::i;:46::-;:50;;:67::i;:::-;5566:74;;;;;;4863:784;;;;;:::o;9077:155::-;1284:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:10;;1265:68;;;;;-1:-1:-1;;;1265:68:10;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1265:68:10;;;;;;;;;;;;;;;9162:17:8::1;:15;:17::i;:::-;9189:16;:36:::0;9077:155::o;7252:723::-;7318:21;7342:8;7351:4;7342:14;;;;;;;;;;;;;;;;7390;;;:8;:14;;;;;;7405:10;7390:26;;;;;;;7434:11;;7342:14;;;;;;;;-1:-1:-1;7434:22:8;-1:-1:-1;7434:22:8;7426:65;;;;;-1:-1:-1;;;7426:65:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;7501:16;7512:4;7501:10;:16::i;:::-;7527:15;7545:72;7601:4;:15;;;7545:51;7591:4;7545:41;7561:4;:24;;;7545:4;:11;;;:15;;:41;;;;:::i;:72::-;7527:90;;7627:41;7648:10;7660:7;7627:20;:41::i;:::-;7692:11;;:24;;7708:7;7692:15;:24::i;:::-;7678:38;;;7760:24;;;;7744:51;;7790:4;;7744:41;;7678:38;7744:15;:41::i;:51::-;7726:15;;;:69;7805:12;;:55;;-1:-1:-1;;;;;7805:12:8;7839:10;7852:7;7805:25;:55::i;:::-;7889:16;;;;:10;:16;;;;;;:29;;7910:7;7889:20;:29::i;:::-;7870:16;;;;:10;:16;;;;;;;;;:48;;;;7933:35;;;;;;;7881:4;;7942:10;;7933:35;;;;;;;;;;;7252:723;;;;;:::o;2387:25::-;;;;:::o;5834:692::-;5885:21;5909:8;5918:4;5909:14;;;;;;;;;;;;;;;;;;5885:38;;5953:4;:20;;;5937:12;:36;5933:73;;5989:7;;;5933:73;6034:12;;:37;;;-1:-1:-1;;;6034:37:8;;6065:4;6034:37;;;;;;6015:16;;-1:-1:-1;;;;;6034:12:8;;:22;;:37;;;;;;;;;;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6034:37:8;;-1:-1:-1;6085:13:8;6081:99;;-1:-1:-1;6137:12:8;6114:20;;;;:35;6163:7;;6081:99;6189:18;6210:49;6224:4;:20;;;6246:12;6210:13;:49::i;:::-;6189:70;;6269:22;6294:74;6352:15;;6294:53;6331:4;:15;;;6294:32;6309:16;;6294:10;:14;;:32;;;;:::i;:74::-;6269:99;-1:-1:-1;6406:68:8;6435:38;6464:8;6435:24;6269:99;6454:4;6435:18;:24::i;:38::-;6406:24;;;;;:28;:68::i;:::-;6379:24;;;:95;-1:-1:-1;;6507:12:8;6484:20;;;;:35;;;;-1:-1:-1;5834:692:8;;:::o;8083:450::-;8141:21;8165:8;8174:4;8165:14;;;;;;;;;;;;;;;;8213;;;:8;:14;;;;;;8228:10;8213:26;;;;;;;8270:11;;8291:15;;;-1:-1:-1;8316:15:8;;:19;;;;8165:14;;;;;8345:12;;8165:14;;-1:-1:-1;8213:26:8;;8270:11;8345:58;;-1:-1:-1;;;;;8345:12:8;;;;;8270:11;8345:25;:58::i;:::-;8432:16;;;;:10;:16;;;;;;:32;;8453:10;8432:20;:32::i;:::-;8413:16;;;;:10;:16;;;;;;;;;:51;;;;8479:47;;;;;;;8424:4;;8497:10;;8479:47;;;;;;;;;;;8083:450;;;;:::o;5653:175::-;5714:8;:15;5697:14;5739:83;5767:6;5761:3;:12;5739:83;;;5796:15;5807:3;5796:10;:15::i;:::-;5775:5;;5739:83;;;;5653:175;:::o;1596:29::-;;;-1:-1:-1;;;;;1596:29:8;;:::o;9307:57::-;1284:12:10;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:10;;1265:68;;;;;-1:-1:-1;;;1265:68:10;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1265:68:10;;;;;;;;;;;;;;;9307:57:8:o;1838:44::-;1881:1;1838:44;:::o;1061:85:10:-;1107:7;1133:6;-1:-1:-1;;;;;1133:6:10;1061:85;:::o;4474:383:8:-;4546:7;4576:13;;4569:3;:20;4565:286;;4612:36;1881:1;4612:14;:3;4620:5;4612:7;:14::i;:36::-;4605:43;;;;4565:286;4678:13;;4669:5;:22;4665:186;;4714:14;:3;4722:5;4714:7;:14::i;4665:186::-;4766:74;4817:22;4825:13;;4817:3;:7;;:22;;;;:::i;:::-;4766:46;1881:1;4766:24;4784:5;4766:13;;:17;;:24;;;;:::i;2142:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1750:31::-;;;;:::o;6532:714::-;6597:21;6621:8;6630:4;6621:14;;;;;;;;;;;;;;;;6669;;;:8;:14;;;;;;6684:10;6669:26;;;;;;;6621:14;;;;;;;;-1:-1:-1;6705:16:8;6678:4;6705:10;:16::i;:::-;6735:11;;:15;6731:191;;6766:15;6784:72;6840:4;:15;;;6784:51;6830:4;6784:41;6800:4;:24;;;6784:4;:11;;;:15;;:41;;;;:::i;:72::-;6766:90;;6870:41;6891:10;6903:7;6870:20;:41::i;:::-;6731:191;;6931:12;;:74;;-1:-1:-1;;;;;6931:12:8;6969:10;6990:4;6997:7;6931:29;:74::i;:::-;7029:11;;:24;;7045:7;7029:15;:24::i;:::-;7015:38;;;7097:24;;;;7081:51;;7127:4;;7081:41;;7015:38;7081:15;:41::i;:51::-;7063:15;;;:69;7161:16;;;;:10;:16;;;;;;:29;;7182:7;7161:20;:29::i;:::-;7142:16;;;;:10;:16;;;;;;;;;:48;;;;7205:34;;;;;;;7153:4;;7213:10;;7205:34;;;;;;;;;;;6532:714;;;;:::o;1987:240:10:-;1284:12;:10;:12::i;:::-;-1:-1:-1;;;;;1273:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1273:23:10;;1265:68;;;;;-1:-1:-1;;;1265:68:10;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;1265:68:10;;;;;;;;;;;;;;;-1:-1:-1;;;;;2075:22:10;::::1;2067:73;;;;-1:-1:-1::0;;;2067:73:10::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2176:6;::::0;;2155:38:::1;::::0;-1:-1:-1;;;;;2155:38:10;;::::1;::::0;2176:6;::::1;::::0;2155:38:::1;::::0;::::1;2203:6;:17:::0;;-1:-1:-1;;;;;;2203:17:10::1;-1:-1:-1::0;;;;;2203:17:10;;;::::1;::::0;;;::::1;::::0;;1987:240::o;598:104:1:-;685:10;598:104;:::o;3128:155:12:-;3186:7;3218:1;3213;:6;;3205:49;;;;;-1:-1:-1;;;3205:49:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3271:5:12;;;3128:155::o;2682:175::-;2740:7;2771:5;;;2794:6;;;;2786:46;;;;;-1:-1:-1;;;2786:46:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;2849:1;2682:175;-1:-1:-1;;;2682:175:12:o;3530:215::-;3588:7;3611:6;3607:20;;-1:-1:-1;3626:1:12;3619:8;;3607:20;3649:5;;;3653:1;3649;:5;:1;3672:5;;;;;:10;3664:56;;;;-1:-1:-1;;;3664:56:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4209:150;4267:7;4298:1;4294;:5;4286:44;;;;;-1:-1:-1;;;4286:44:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;4351:1;4347;:5;;;;;;;4209:150;-1:-1:-1;;;4209:150:12:o;8748:323:8:-;8849:8;;:33;;;-1:-1:-1;;;8849:33:8;;8876:4;8849:33;;;;;;8827:19;;-1:-1:-1;;;;;8849:8:8;;:18;;:33;;;;;;;;;;;;;;:8;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8849:33:8;;-1:-1:-1;8896:21:8;;;8892:173;;;8940:8;;8933:47;;-1:-1:-1;;;;;8940:8:8;8963:3;8968:11;8933:29;:47::i;:::-;8892:173;;;9018:8;;9011:43;;-1:-1:-1;;;;;9018:8:8;9041:3;9046:7;9011:29;:43::i;:::-;8748:323;;;:::o;677:175:11:-;786:58;;;-1:-1:-1;;;;;786:58:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;786:58:11;-1:-1:-1;;;786:58:11;;;759:86;;779:5;;759:19;:86::i;858:203::-;985:68;;;-1:-1:-1;;;;;985:68:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;985:68:11;-1:-1:-1;;;985:68:11;;;958:96;;978:5;;958:19;:96::i;:::-;858:203;;;;:::o;2940:751::-;3359:23;3385:69;3413:4;3385:69;;;;;;;;;;;;;;;;;3393:5;-1:-1:-1;;;;;3385:27:11;;;:69;;;;;:::i;:::-;3468:17;;3359:95;;-1:-1:-1;3468:21:11;3464:221;;3608:10;3597:30;;;;;;;;;;;;;;;-1:-1:-1;3597:30:11;3589:85;;;;-1:-1:-1;;;3589:85:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3573:193:0;3676:12;3707:52;3729:6;3737:4;3743:1;3746:12;3707:21;:52::i;:::-;3700:59;3573:193;-1:-1:-1;;;;3573:193:0:o;4600:523::-;4727:12;4784:5;4759:21;:30;;4751:81;;;;-1:-1:-1;;;4751:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4850:18;4861:6;4850:10;:18::i;:::-;4842:60;;;;;-1:-1:-1;;;4842:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4973:12;4987:23;5014:6;-1:-1:-1;;;;;5014:11:0;5034:5;5042:4;5014:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;5014:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4972:75;;;;5064:52;5082:7;5091:10;5103:12;5064:17;:52::i;:::-;5057:59;4600:523;-1:-1:-1;;;;;;;4600:523:0:o;718:413::-;1078:20;1116:8;;;718:413::o;7083:725::-;7198:12;7226:7;7222:580;;;-1:-1:-1;7256:10:0;7249:17;;7222:580;7367:17;;:21;7363:429;;7625:10;7619:17;7685:15;7672:10;7668:2;7664:19;7657:44;7574:145;7764:12;7757:20;;-1:-1:-1;;;7757:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://164dad91f30f320ed0df206216844f4ac5a616a037abb69a0d9fc9ebab138141
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
AVAX | 58.80% | $0.203057 | 52,158.0293 | $10,591.05 | |
POL | 26.55% | $0.202678 | 23,595.6723 | $4,782.33 | |
BSC | 11.28% | $0.203152 | 10,000 | $2,031.52 | |
ZKSYNC | 1.70% | $1,816.35 | 0.1687 | $306.42 | |
LINEA | 1.15% | $1,816.35 | 0.114 | $207.11 | |
ETH | 0.28% | $1 | 50 | $50 | |
ETH | 0.15% | $1,815.09 | 0.015 | $27.23 | |
ETH | 0.04% | $0.709435 | 10.9831 | $7.79 | |
ZKEVM | 0.05% | $1,815.09 | 0.005 | $9.08 |
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.