More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 148 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 21532248 | 8 days ago | IN | 0 ETH | 0.00827455 | ||||
Claim | 21485848 | 14 days ago | IN | 0 ETH | 0.00050143 | ||||
Claim | 21421973 | 23 days ago | IN | 0 ETH | 0.0005692 | ||||
Claim | 21386512 | 28 days ago | IN | 0 ETH | 0.00105376 | ||||
Claim | 21385495 | 28 days ago | IN | 0 ETH | 0.00081744 | ||||
Claim | 21315411 | 38 days ago | IN | 0 ETH | 0.00367949 | ||||
Claim | 21285969 | 42 days ago | IN | 0 ETH | 0.00045311 | ||||
Claim | 21228172 | 50 days ago | IN | 0 ETH | 0.00070788 | ||||
Claim | 21214230 | 52 days ago | IN | 0 ETH | 0.00090801 | ||||
Claim | 21214171 | 52 days ago | IN | 0 ETH | 0.0008809 | ||||
Claim | 21113661 | 66 days ago | IN | 0 ETH | 0.00035989 | ||||
Claim | 21085403 | 70 days ago | IN | 0 ETH | 0.00050143 | ||||
Claim | 21034628 | 77 days ago | IN | 0 ETH | 0.00053037 | ||||
Claim | 21013527 | 80 days ago | IN | 0 ETH | 0.00048723 | ||||
Claim | 20978912 | 85 days ago | IN | 0 ETH | 0.00140946 | ||||
Claim | 20913796 | 94 days ago | IN | 0 ETH | 0.00348296 | ||||
Claim | 20884742 | 98 days ago | IN | 0 ETH | 0.0004116 | ||||
Claim | 20813084 | 108 days ago | IN | 0 ETH | 0.00143958 | ||||
Claim | 20791844 | 111 days ago | IN | 0 ETH | 0.00072692 | ||||
Claim | 20719495 | 121 days ago | IN | 0 ETH | 0.00015601 | ||||
Claim | 20714651 | 122 days ago | IN | 0 ETH | 0.00047917 | ||||
Claim | 20712447 | 122 days ago | IN | 0 ETH | 0.00023595 | ||||
Claim | 20711791 | 123 days ago | IN | 0 ETH | 0.00020292 | ||||
Claim | 20614190 | 136 days ago | IN | 0 ETH | 0.00013569 | ||||
Claim | 20585636 | 140 days ago | IN | 0 ETH | 0.00013903 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xFd721703...21a30D422 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
AuraVestedEscrow
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
Yes with 800 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; import { IAuraLocker } from "./Interfaces.sol"; import { IERC20 } from "@openzeppelin/contracts-0.8/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts-0.8/token/ERC20/utils/SafeERC20.sol"; import { ReentrancyGuard } from "@openzeppelin/contracts-0.8/security/ReentrancyGuard.sol"; import { AuraMath } from "./AuraMath.sol"; /** * @title AuraVestedEscrow * @author adapted from ConvexFinance (convex-platform/contracts/contracts/VestedEscrow) * @notice Vests tokens over a given timeframe to an array of recipients. Allows locking of * these tokens directly to staking contract. * @dev Adaptations: * - One time initialisation * - Consolidation of fundAdmin/admin * - Lock in AuraLocker by default * - Start and end time */ contract AuraVestedEscrow is ReentrancyGuard { using SafeERC20 for IERC20; IERC20 public immutable rewardToken; address public admin; address public immutable funder; IAuraLocker public auraLocker; uint256 public immutable startTime; uint256 public immutable endTime; uint256 public immutable totalTime; bool public initialised = false; mapping(address => uint256) public totalLocked; mapping(address => uint256) public totalClaimed; event Funded(address indexed recipient, uint256 reward); event Cancelled(address indexed recipient); event Claim(address indexed user, uint256 amount, bool locked); /** * @param rewardToken_ Reward token (AURA) * @param admin_ Admin to cancel rewards * @param auraLocker_ Contract where rewardToken can be staked * @param starttime_ Timestamp when claim starts * @param endtime_ When vesting ends */ constructor( address rewardToken_, address admin_, address auraLocker_, uint256 starttime_, uint256 endtime_ ) { require(starttime_ >= block.timestamp, "start must be future"); require(endtime_ > starttime_, "end must be greater"); rewardToken = IERC20(rewardToken_); admin = admin_; funder = msg.sender; auraLocker = IAuraLocker(auraLocker_); startTime = starttime_; endTime = endtime_; totalTime = endTime - startTime; require(totalTime >= 16 weeks, "!short"); } /*************************************** SETUP ****************************************/ /** * @notice Change contract admin * @param _admin New admin address */ function setAdmin(address _admin) external { require(msg.sender == admin, "!auth"); admin = _admin; } /** * @notice Change locker contract address * @param _auraLocker Aura Locker address */ function setLocker(address _auraLocker) external { require(msg.sender == admin, "!auth"); auraLocker = IAuraLocker(_auraLocker); } /** * @notice Fund recipients with rewardTokens * @param _recipient Array of recipients to vest rewardTokens for * @param _amount Arrary of amount of rewardTokens to vest */ function fund(address[] calldata _recipient, uint256[] calldata _amount) external nonReentrant { require(_recipient.length == _amount.length, "!arr"); require(!initialised, "initialised already"); require(msg.sender == funder, "!funder"); require(block.timestamp < startTime, "already started"); uint256 totalAmount = 0; for (uint256 i = 0; i < _recipient.length; i++) { uint256 amount = _amount[i]; totalLocked[_recipient[i]] += amount; totalAmount += amount; emit Funded(_recipient[i], amount); } rewardToken.safeTransferFrom(msg.sender, address(this), totalAmount); initialised = true; } /** * @notice Cancel recipients vesting rewardTokens * @param _recipient Recipient address */ function cancel(address _recipient) external nonReentrant { require(msg.sender == admin, "!auth"); require(totalLocked[_recipient] > 0, "!funding"); _claim(_recipient, false); uint256 delta = remaining(_recipient); rewardToken.safeTransfer(admin, delta); totalLocked[_recipient] = 0; emit Cancelled(_recipient); } /*************************************** VIEWS ****************************************/ /** * @notice Available amount to claim * @param _recipient Recipient to lookup */ function available(address _recipient) public view returns (uint256) { uint256 vested = _totalVestedOf(_recipient, block.timestamp); return vested - totalClaimed[_recipient]; } /** * @notice Total remaining vested amount * @param _recipient Recipient to lookup */ function remaining(address _recipient) public view returns (uint256) { uint256 vested = _totalVestedOf(_recipient, block.timestamp); return totalLocked[_recipient] - vested; } /** * @notice Get total amount vested for this timestamp * @param _recipient Recipient to lookup * @param _time Timestamp to check vesting amount for */ function _totalVestedOf(address _recipient, uint256 _time) internal view returns (uint256 total) { if (_time < startTime) { return 0; } uint256 locked = totalLocked[_recipient]; uint256 elapsed = _time - startTime; total = AuraMath.min((locked * elapsed) / totalTime, locked); } /*************************************** CLAIM ****************************************/ function claim(bool _lock) external nonReentrant { _claim(msg.sender, _lock); } /** * @dev Claim reward token (Aura) and lock it. * @param _recipient Address to receive rewards. * @param _lock Lock rewards immediately. */ function _claim(address _recipient, bool _lock) internal { uint256 claimable = available(_recipient); totalClaimed[_recipient] += claimable; if (_lock) { require(address(auraLocker) != address(0), "!auraLocker"); rewardToken.safeApprove(address(auraLocker), claimable); auraLocker.lock(_recipient, claimable); } else { rewardToken.safeTransfer(_recipient, claimable); } emit Claim(_recipient, claimable, _lock); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; interface IPriceOracle { struct OracleAverageQuery { Variable variable; uint256 secs; uint256 ago; } enum Variable { PAIR_PRICE, BPT_PRICE, INVARIANT } function getTimeWeightedAverage(OracleAverageQuery[] memory queries) external view returns (uint256[] memory results); } interface IVault { enum PoolSpecialization { GENERAL, MINIMAL_SWAP_INFO, TWO_TOKEN } enum JoinKind { INIT, EXACT_TOKENS_IN_FOR_BPT_OUT, TOKEN_IN_FOR_EXACT_BPT_OUT, ALL_TOKENS_IN_FOR_EXACT_BPT_OUT } enum SwapKind { GIVEN_IN, GIVEN_OUT } struct SingleSwap { bytes32 poolId; SwapKind kind; IAsset assetIn; IAsset assetOut; uint256 amount; bytes userData; } struct FundManagement { address sender; bool fromInternalBalance; address payable recipient; bool toInternalBalance; } struct JoinPoolRequest { IAsset[] assets; uint256[] maxAmountsIn; bytes userData; bool fromInternalBalance; } function getPool(bytes32 poolId) external view returns (address, PoolSpecialization); function getPoolTokens(bytes32 poolId) external view returns ( address[] memory tokens, uint256[] memory balances, uint256 lastChangeBlock ); function joinPool( bytes32 poolId, address sender, address recipient, JoinPoolRequest memory request ) external payable; function swap( SingleSwap memory singleSwap, FundManagement memory funds, uint256 limit, uint256 deadline ) external returns (uint256 amountCalculated); function exitPool( bytes32 poolId, address sender, address payable recipient, ExitPoolRequest memory request ) external; struct ExitPoolRequest { IAsset[] assets; uint256[] minAmountsOut; bytes userData; bool toInternalBalance; } enum ExitKind { EXACT_BPT_IN_FOR_ONE_TOKEN_OUT, EXACT_BPT_IN_FOR_TOKENS_OUT, BPT_IN_FOR_EXACT_TOKENS_OUT, MANAGEMENT_FEE_TOKENS_OUT // for ManagedPool } } interface IAsset { // solhint-disable-previous-line no-empty-blocks } interface IAuraLocker { function lock(address _account, uint256 _amount) external; function checkpointEpoch() external; function epochCount() external view returns (uint256); function balanceAtEpochOf(uint256 _epoch, address _user) external view returns (uint256 amount); function totalSupplyAtEpoch(uint256 _epoch) external view returns (uint256 supply); function queueNewRewards(address _rewardsToken, uint256 reward) external; function getReward(address _account, bool _stake) external; function getReward(address _account) external; } interface IExtraRewardsDistributor { function addReward(address _token, uint256 _amount) external; } interface ICrvDepositorWrapper { function getMinOut(uint256, uint256) external view returns (uint256); function deposit( uint256, uint256, bool, address _stakeAddress ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using 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' 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) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _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 require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; /// @notice A library for performing overflow-/underflow-safe math, /// updated with awesomeness from of DappHub (https://github.com/dapphub/ds-math). library AuraMath { /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; } function sub(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a - b; } function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a * b; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute. return (a / 2) + (b / 2) + (((a % 2) + (b % 2)) / 2); } function to224(uint256 a) internal pure returns (uint224 c) { require(a <= type(uint224).max, "AuraMath: uint224 Overflow"); c = uint224(a); } function to128(uint256 a) internal pure returns (uint128 c) { require(a <= type(uint128).max, "AuraMath: uint128 Overflow"); c = uint128(a); } function to112(uint256 a) internal pure returns (uint112 c) { require(a <= type(uint112).max, "AuraMath: uint112 Overflow"); c = uint112(a); } function to96(uint256 a) internal pure returns (uint96 c) { require(a <= type(uint96).max, "AuraMath: uint96 Overflow"); c = uint96(a); } function to32(uint256 a) internal pure returns (uint32 c) { require(a <= type(uint32).max, "AuraMath: uint32 Overflow"); c = uint32(a); } } /// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint32. library AuraMath32 { function sub(uint32 a, uint32 b) internal pure returns (uint32 c) { c = a - b; } } /// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint112. library AuraMath112 { function add(uint112 a, uint112 b) internal pure returns (uint112 c) { c = a + b; } function sub(uint112 a, uint112 b) internal pure returns (uint112 c) { c = a - b; } } /// @notice A library for performing overflow-/underflow-safe addition and subtraction on uint224. library AuraMath224 { function add(uint224 a, uint224 b) internal pure returns (uint224 c) { c = a + b; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.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; 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"); (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"); (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"); (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"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "metadata": { "bytecodeHash": "none" }, "optimizer": { "enabled": true, "runs": 800 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"rewardToken_","type":"address"},{"internalType":"address","name":"admin_","type":"address"},{"internalType":"address","name":"auraLocker_","type":"address"},{"internalType":"uint256","name":"starttime_","type":"uint256"},{"internalType":"uint256","name":"endtime_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"}],"name":"Cancelled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bool","name":"locked","type":"bool"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"Funded","type":"event"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auraLocker","outputs":[{"internalType":"contract IAuraLocker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"available","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"cancel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_lock","type":"bool"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipient","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"fund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"funder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialised","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"remaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_auraLocker","type":"address"}],"name":"setLocker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalLocked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061011b5760003560e01c8063704b6c02116100b2578063d661448711610081578063ef5d9ae811610066578063ef5d9ae8146102c5578063f7c618c1146102e5578063f851a4401461030c57600080fd5b8063d661448714610292578063d8fb9337146102a557600080fd5b8063704b6c021461023257806378e9792514610245578063b1e56f6b1461026c578063b399b0bc1461027f57600080fd5b80632d81a78e116100ee5780632d81a78e146101be5780633197cbb6146101d15780634c33fe94146101f857806358533e0a1461020b57600080fd5b8063041ae8801461012057806307003bb41461016457806310098ad514610188578063171060ec146101a9575b600080fd5b6101477f000000000000000000000000ab9ff9fbc44bb889751c4e70ad2f6977267a1e0981565b6040516001600160a01b0390911681526020015b60405180910390f35b60025461017890600160a01b900460ff1681565b604051901515815260200161015b565b61019b6101963660046110c5565b61031f565b60405190815260200161015b565b6101bc6101b73660046110c5565b610359565b005b6101bc6101cc3660046110ff565b6103cf565b61019b7f00000000000000000000000000000000000000000000000000000000683b980081565b6101bc6102063660046110c5565b610439565b61019b7f00000000000000000000000000000000000000000000000000000000038a4bd281565b6101bc6102403660046110c5565b6105d5565b61019b7f0000000000000000000000000000000000000000000000000000000064b14c2e81565b6101bc61027a366004611168565b610646565b61019b61028d3660046110c5565b610999565b600254610147906001600160a01b031681565b61019b6102b33660046110c5565b60036020526000908152604090205481565b61019b6102d33660046110c5565b60046020526000908152604090205481565b6101477f000000000000000000000000c0c293ce456ff0ed870add98a0828dd4d2903dbf81565b600154610147906001600160a01b031681565b60008061032c83426109cd565b6001600160a01b03841660009081526004602052604090205490915061035290826111ea565b9392505050565b6001546001600160a01b031633146103a05760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b60448201526064015b60405180910390fd5b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600260005414156104225760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610397565b60026000556104313382610a8e565b506001600055565b6002600054141561048c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610397565b60026000556001546001600160a01b031633146104d35760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610397565b6001600160a01b0381166000908152600360205260409020546105385760405162461bcd60e51b815260206004820152600860248201527f2166756e64696e670000000000000000000000000000000000000000000000006044820152606401610397565b610543816000610a8e565b600061054e82610999565b60015490915061058b906001600160a01b037f000000000000000000000000c0c293ce456ff0ed870add98a0828dd4d2903dbf8116911683610c4c565b6001600160a01b038216600081815260036020526040808220829055517f398bd6b21ae4164ec322fb0eb8c2eb6277f36fd41903fbbed594dfe1255912819190a250506001600055565b6001546001600160a01b031633146106175760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610397565b6001805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0392909216919091179055565b600260005414156106995760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610397565b60026000558281146106d65760405162461bcd60e51b81526004016103979060208082526004908201526310b0b93960e11b604082015260600190565b600254600160a01b900460ff16156107305760405162461bcd60e51b815260206004820152601360248201527f696e697469616c6973656420616c7265616479000000000000000000000000006044820152606401610397565b336001600160a01b037f000000000000000000000000ab9ff9fbc44bb889751c4e70ad2f6977267a1e0916146107a85760405162461bcd60e51b815260206004820152600760248201527f2166756e646572000000000000000000000000000000000000000000000000006044820152606401610397565b7f0000000000000000000000000000000000000000000000000000000064b14c2e42106108175760405162461bcd60e51b815260206004820152600f60248201527f616c7265616479207374617274656400000000000000000000000000000000006044820152606401610397565b6000805b8481101561092957600084848381811061083757610837611201565b905060200201359050806003600089898681811061085757610857611201565b905060200201602081019061086c91906110c5565b6001600160a01b03166001600160a01b03168152602001908152602001600020600082825461089b9190611217565b909155506108ab90508184611217565b92508686838181106108bf576108bf611201565b90506020020160208101906108d491906110c5565b6001600160a01b03167f5af8184bef8e4b45eb9f6ed7734d04da38ced226495548f46e0c8ff8d7d9a5248260405161090e91815260200190565b60405180910390a250806109218161122f565b91505061081b565b5061095f6001600160a01b037f000000000000000000000000c0c293ce456ff0ed870add98a0828dd4d2903dbf16333084610ce1565b5050600280547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16600160a01b1790555050600160005550565b6000806109a683426109cd565b6001600160a01b0384166000908152600360205260409020549091506103529082906111ea565b60007f0000000000000000000000000000000000000000000000000000000064b14c2e8210156109ff57506000610a88565b6001600160a01b03831660009081526003602052604081205490610a437f0000000000000000000000000000000000000000000000000000000064b14c2e856111ea565b9050610a837f00000000000000000000000000000000000000000000000000000000038a4bd2610a73838561124a565b610a7d9190611269565b83610d1f565b925050505b92915050565b6000610a998361031f565b6001600160a01b038416600090815260046020526040812080549293508392909190610ac6908490611217565b90915550508115610bce576002546001600160a01b0316610b295760405162461bcd60e51b815260206004820152600b60248201527f21617572614c6f636b65720000000000000000000000000000000000000000006044820152606401610397565b600254610b63906001600160a01b037f000000000000000000000000c0c293ce456ff0ed870add98a0828dd4d2903dbf8116911683610d35565b60025460405163282d3fdf60e01b81526001600160a01b038581166004830152602482018490529091169063282d3fdf90604401600060405180830381600087803b158015610bb157600080fd5b505af1158015610bc5573d6000803e3d6000fd5b50505050610c02565b610c026001600160a01b037f000000000000000000000000c0c293ce456ff0ed870add98a0828dd4d2903dbf168483610c4c565b6040805182815283151560208201526001600160a01b038516917fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf092910160405180910390a2505050565b6040516001600160a01b038316602482015260448101829052610cdc90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610e51565b505050565b6040516001600160a01b0380851660248301528316604482015260648101829052610d199085906323b872dd60e01b90608401610c78565b50505050565b6000818310610d2e5781610352565b5090919050565b801580610daf5750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610d89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dad919061128b565b155b610e215760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610397565b6040516001600160a01b038316602482015260448101829052610cdc90849063095ea7b360e01b90606401610c78565b6000610ea6826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610f369092919063ffffffff16565b805190915015610cdc5780806020019051810190610ec491906112a4565b610cdc5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610397565b6060610f458484600085610f4d565b949350505050565b606082471015610fc55760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610397565b843b6110135760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610397565b600080866001600160a01b0316858760405161102f91906112ed565b60006040518083038185875af1925050503d806000811461106c576040519150601f19603f3d011682016040523d82523d6000602084013e611071565b606091505b509150915061108182828661108c565b979650505050505050565b6060831561109b575081610352565b8251156110ab5782518084602001fd5b8160405162461bcd60e51b81526004016103979190611309565b6000602082840312156110d757600080fd5b81356001600160a01b038116811461035257600080fd5b80151581146110fc57600080fd5b50565b60006020828403121561111157600080fd5b8135610352816110ee565b60008083601f84011261112e57600080fd5b50813567ffffffffffffffff81111561114657600080fd5b6020830191508360208260051b850101111561116157600080fd5b9250929050565b6000806000806040858703121561117e57600080fd5b843567ffffffffffffffff8082111561119657600080fd5b6111a28883890161111c565b909650945060208701359150808211156111bb57600080fd5b506111c88782880161111c565b95989497509550505050565b634e487b7160e01b600052601160045260246000fd5b6000828210156111fc576111fc6111d4565b500390565b634e487b7160e01b600052603260045260246000fd5b6000821982111561122a5761122a6111d4565b500190565b6000600019821415611243576112436111d4565b5060010190565b6000816000190483118215151615611264576112646111d4565b500290565b60008261128657634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561129d57600080fd5b5051919050565b6000602082840312156112b657600080fd5b8151610352816110ee565b60005b838110156112dc5781810151838201526020016112c4565b83811115610d195750506000910152565b600082516112ff8184602087016112c1565b9190910192915050565b60208152600082518060208401526113288160408501602087016112c1565b601f01601f1916919091016040019291505056fea164736f6c634300080b000a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.439746 | 556,485.3832 | $244,712.22 |
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.