Source Code
Latest 25 from a total of 155 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Claim | 14877280 | 356 days ago | IN | 0 ETH | 0.00000134 | ||||
| Claim | 14385586 | 368 days ago | IN | 0 ETH | 0.00000233 | ||||
| Claim | 14349848 | 368 days ago | IN | 0 ETH | 0.00000101 | ||||
| Claim | 14068508 | 375 days ago | IN | 0 ETH | 0.00000242 | ||||
| Claim | 13776435 | 382 days ago | IN | 0 ETH | 0.00001344 | ||||
| Claim | 13510318 | 388 days ago | IN | 0 ETH | 0.00000079 | ||||
| Claim | 13508142 | 388 days ago | IN | 0 ETH | 0.00000043 | ||||
| Claim | 13491541 | 388 days ago | IN | 0 ETH | 0.00000108 | ||||
| Claim | 13344745 | 392 days ago | IN | 0 ETH | 0.00000696 | ||||
| Claim | 13311333 | 392 days ago | IN | 0 ETH | 0.0000015 | ||||
| Claim | 13285715 | 393 days ago | IN | 0 ETH | 0.00000247 | ||||
| Claim | 13285692 | 393 days ago | IN | 0 ETH | 0.00000241 | ||||
| Claim | 13269786 | 393 days ago | IN | 0 ETH | 0.00000391 | ||||
| Claim | 13208760 | 395 days ago | IN | 0 ETH | 0.00002839 | ||||
| Claim | 13078724 | 398 days ago | IN | 0 ETH | 0.00003006 | ||||
| Claim | 13040692 | 399 days ago | IN | 0 ETH | 0.00000035 | ||||
| Claim | 13006360 | 399 days ago | IN | 0 ETH | 0.00000039 | ||||
| Claim | 12999146 | 400 days ago | IN | 0 ETH | 0.00000047 | ||||
| Claim | 12946659 | 401 days ago | IN | 0 ETH | 0.00003245 | ||||
| Claim | 12926939 | 401 days ago | IN | 0 ETH | 0.00000658 | ||||
| Claim | 12922651 | 401 days ago | IN | 0 ETH | 0.00000113 | ||||
| Claim | 12854914 | 403 days ago | IN | 0 ETH | 0.00000032 | ||||
| Claim | 12721694 | 406 days ago | IN | 0 ETH | 0.0000006 | ||||
| Claim | 12709973 | 406 days ago | IN | 0 ETH | 0.00000177 | ||||
| Claim | 12680253 | 407 days ago | IN | 0 ETH | 0.00000271 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Cross-Chain Transactions
Loading...
Loading
Contract Name:
AuraMerkleDrop
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 { MerkleProof } from "@openzeppelin/contracts-0.8/utils/cryptography/MerkleProof.sol";
import { IAuraLocker } from "../interfaces/IAuraLocker.sol";
import { AuraMath } from "../utils/AuraMath.sol";
import { IERC20 } from "@openzeppelin/contracts-0.8/token/ERC20/IERC20.sol";
import { SafeERC20 } from "@openzeppelin/contracts-0.8/token/ERC20/utils/SafeERC20.sol";
/**
* @title AuraMerkleDrop
* @dev Forked from convex-platform/contracts/contracts/MerkleAirdrop.sol. Changes:
* - solc 0.8.11 & OpenZeppelin MerkleDrop
* - Delayed start w/ trigger
* - EndTime for withdrawal to treasuryDAO
* - Penalty on claim & AuraLocker lock (only if address(auraLocker) != 0)
* - Non custodial (cannot change root)
*/
contract AuraMerkleDrop {
using SafeERC20 for IERC20;
address public dao;
bytes32 public merkleRoot;
IERC20 public immutable aura;
IAuraLocker public auraLocker;
address public immutable penaltyForwarder;
uint256 public pendingPenalty = 0;
uint256 public constant PENALTY_NUMERATOR = 5; // 50% penalty
uint256 public immutable deployTime;
uint256 public startTime;
uint256 public immutable expiryTime;
mapping(address => bool) public hasClaimed;
event DaoSet(address newDao);
event RootSet(bytes32 newRoot);
event StartedEarly();
event ExpiredWithdrawn(uint256 amount);
event LockerSet(address newLocker);
event Claimed(address addr, uint256 amt, bool locked);
event PenaltyForwarded(uint256 amount);
event Rescued();
/**
* @param _dao The Aura Dao
* @param _merkleRoot Merkle root
* @param _aura Aura token
* @param _auraLocker Aura locker contract
* @param _penaltyForwarder PenaltyForwarded contract
* @param _startDelay Delay until claim is live
* @param _expiresAfter Timestamp claim expires
*/
constructor(
address _dao,
bytes32 _merkleRoot,
address _aura,
address _auraLocker,
address _penaltyForwarder,
uint256 _startDelay,
uint256 _expiresAfter
) {
require(_dao != address(0), "!dao");
dao = _dao;
merkleRoot = _merkleRoot;
require(_aura != address(0), "!aura");
aura = IERC20(_aura);
auraLocker = IAuraLocker(_auraLocker);
penaltyForwarder = _penaltyForwarder;
deployTime = block.timestamp;
startTime = block.timestamp + _startDelay;
require(_expiresAfter > 2 weeks, "!expiry");
expiryTime = startTime + _expiresAfter;
}
/***************************************
CONFIG
****************************************/
function setDao(address _newDao) external {
require(msg.sender == dao, "!auth");
dao = _newDao;
emit DaoSet(_newDao);
}
function setRoot(bytes32 _merkleRoot) external {
require(msg.sender == dao, "!auth");
merkleRoot = _merkleRoot;
emit RootSet(_merkleRoot);
}
function startEarly() external {
require(msg.sender == dao, "!auth");
startTime = block.timestamp;
emit StartedEarly();
}
function withdrawExpired() external {
require(msg.sender == dao, "!auth");
require(block.timestamp > expiryTime, "!expired");
uint256 amt = aura.balanceOf(address(this)) - pendingPenalty;
aura.safeTransfer(dao, amt);
emit ExpiredWithdrawn(amt);
}
function setLocker(address _newLocker) external {
require(msg.sender == dao, "!auth");
auraLocker = IAuraLocker(_newLocker);
emit LockerSet(_newLocker);
}
function rescueReward() public {
require(msg.sender == dao, "!auth");
require(block.timestamp < AuraMath.min(deployTime + 1 weeks, startTime), "too late");
uint256 amt = aura.balanceOf(address(this));
aura.safeTransfer(dao, amt);
emit Rescued();
}
/***************************************
CLAIM
****************************************/
function claim(
bytes32[] calldata _proof,
uint256 _amount,
bool _lock
) public returns (bool) {
require(merkleRoot != bytes32(0), "!root");
require(block.timestamp > startTime, "!started");
require(block.timestamp < expiryTime, "!active");
require(_amount > 0, "!amount");
require(hasClaimed[msg.sender] == false, "already claimed");
bytes32 leaf = keccak256(abi.encodePacked(msg.sender, _amount));
require(MerkleProof.verify(_proof, merkleRoot, leaf), "invalid proof");
hasClaimed[msg.sender] = true;
if (_lock) {
aura.safeApprove(address(auraLocker), 0);
aura.safeApprove(address(auraLocker), _amount);
auraLocker.lock(msg.sender, _amount);
} else {
// If there is an address for auraLocker, and not locking, apply 20% penalty
uint256 penalty = address(penaltyForwarder) == address(0) || address(auraLocker) == address(0)
? 0
: (_amount * PENALTY_NUMERATOR) / 10;
pendingPenalty += penalty;
aura.safeTransfer(msg.sender, _amount - penalty);
}
emit Claimed(msg.sender, _amount, _lock);
return true;
}
/***************************************
FORWARD
****************************************/
function forwardPenalty() public {
uint256 toForward = pendingPenalty;
pendingPenalty = 0;
aura.safeTransfer(penaltyForwarder, toForward);
emit PenaltyForwarded(toForward);
}
}// 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 (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);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
// Hash(current computed hash + current element of the proof)
computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
} else {
// Hash(current element of the proof + current computed hash)
computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
}
}
return computedHash;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.12;
interface IAuraLocker {
function isShutdown() external view returns (bool);
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;
}// 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;
}
}{
"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
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_dao","type":"address"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"address","name":"_aura","type":"address"},{"internalType":"address","name":"_auraLocker","type":"address"},{"internalType":"address","name":"_penaltyForwarder","type":"address"},{"internalType":"uint256","name":"_startDelay","type":"uint256"},{"internalType":"uint256","name":"_expiresAfter","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amt","type":"uint256"},{"indexed":false,"internalType":"bool","name":"locked","type":"bool"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newDao","type":"address"}],"name":"DaoSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ExpiredWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newLocker","type":"address"}],"name":"LockerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PenaltyForwarded","type":"event"},{"anonymous":false,"inputs":[],"name":"Rescued","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"RootSet","type":"event"},{"anonymous":false,"inputs":[],"name":"StartedEarly","type":"event"},{"inputs":[],"name":"PENALTY_NUMERATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"aura","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"auraLocker","outputs":[{"internalType":"contract IAuraLocker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_lock","type":"bool"}],"name":"claim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dao","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deployTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"expiryTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"forwardPenalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"penaltyForwarder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingPenalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rescueReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newDao","type":"address"}],"name":"setDao","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newLocker","type":"address"}],"name":"setLocker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startEarly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawExpired","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
61010060405260006003553480156200001757600080fd5b50604051620017f7380380620017f78339810160408190526200003a916200019a565b6001600160a01b038716620000845760405162461bcd60e51b81526004016200007b906020808252600490820152632164616f60e01b604082015260600190565b60405180910390fd5b600080546001600160a01b0319166001600160a01b038981169190911790915560018790558516620000e15760405162461bcd60e51b8152602060048201526005602482015264216175726160d81b60448201526064016200007b565b6001600160a01b03858116608052600280546001600160a01b031916868316179055831660a0524260c08190526200011b90839062000214565b6004556212750081116200015c5760405162461bcd60e51b81526020600482015260076024820152662165787069727960c81b60448201526064016200007b565b806004546200016c919062000214565b60e052506200023b95505050505050565b80516001600160a01b03811681146200019557600080fd5b919050565b600080600080600080600060e0888a031215620001b657600080fd5b620001c1886200017d565b965060208801519550620001d8604089016200017d565b9450620001e8606089016200017d565b9350620001f8608089016200017d565b925060a0880151915060c0880151905092959891949750929550565b600082198211156200023657634e487b7160e01b600052601160045260246000fd5b500190565b60805160a05160c05160e051611527620002d0600039600081816102870152818161035001526107c801526000818161025801526105b101526000818161015b01528181610ab40152610c910152600081816102e5015281816103e10152818161046a01528181610647015281816106ce015281816109e301528181610a1e01528181610b460152610c6f01526115276000f3fe608060405234801561001057600080fd5b50600436106101515760003560e01c806373b2e80e116100cd578063bd6d285011610081578063d661448711610066578063d6614487146102ba578063dab5f340146102cd578063e13b7f5c146102e057600080fd5b8063bd6d2850146102a9578063c4245690146102b257600080fd5b80637a40624b116100b25780637a40624b146102535780638faa85051461027a57806399bc0aea1461028257600080fd5b806373b2e80e1461022757806378e979251461024a57600080fd5b80632eb4a7ab116101245780634162169f116101095780634162169f146101de57806353210b39146101f15780636637b8821461021457600080fd5b80632eb4a7ab146101cd57806331ae557c146101d657600080fd5b8063076bbb671461015657806315b634831461019a578063171060ec146101a457806319cdf1cb146101b7575b600080fd5b61017d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b6101a2610307565b005b6101a26101b23660046112cd565b6104ca565b6101bf600581565b604051908152602001610191565b6101bf60015481565b6101a2610567565b60005461017d906001600160a01b031681565b6102046101ff366004611307565b610723565b6040519015158152602001610191565b6101a26102223660046112cd565b610bbc565b6102046102353660046112cd565b60056020526000908152604090205460ff1681565b6101bf60045481565b6101bf7f000000000000000000000000000000000000000000000000000000000000000081565b6101a2610c59565b6101bf7f000000000000000000000000000000000000000000000000000000000000000081565b6101bf60035481565b6101a2610ce6565b60025461017d906001600160a01b031681565b6101a26102db366004611395565b610d57565b61017d7f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b0316331461034e5760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b60448201526064015b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000042116103bd5760405162461bcd60e51b815260206004820152600860248201527f21657870697265640000000000000000000000000000000000000000000000006044820152606401610345565b6003546040516370a0823160e01b8152306004820152600091906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa158015610428573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061044c91906113ae565b61045691906113dd565b600054909150610493906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116911683610dce565b6040518181527f740d726b1789a603e85c6b40463a98c7130ecdecdb1618b58bf1043342885bb9906020015b60405180910390a150565b6000546001600160a01b0316331461050c5760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610345565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527fef7ce00901486d0ae4bbe00a818eb6bb2f42bc78fc75571cf294c1c50c61adfd906020016104bf565b6000546001600160a01b031633146105a95760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610345565b6105e16105d97f000000000000000000000000000000000000000000000000000000000000000062093a806113f4565b600454610e63565b421061062f5760405162461bcd60e51b815260206004820152600860248201527f746f6f206c6174650000000000000000000000000000000000000000000000006044820152606401610345565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610696573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ba91906113ae565b6000549091506106f7906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116911683610dce565b6040517f82c202588180490f67fa4d9346c730a0c94f2b525caf39bd63427fb643f73a6990600090a150565b6001546000906107755760405162461bcd60e51b815260206004820152600560248201527f21726f6f740000000000000000000000000000000000000000000000000000006044820152606401610345565b60045442116107c65760405162461bcd60e51b815260206004820152600860248201527f21737461727465640000000000000000000000000000000000000000000000006044820152606401610345565b7f000000000000000000000000000000000000000000000000000000000000000042106108355760405162461bcd60e51b815260206004820152600760248201527f21616374697665000000000000000000000000000000000000000000000000006044820152606401610345565b600083116108855760405162461bcd60e51b815260206004820152600760248201527f21616d6f756e74000000000000000000000000000000000000000000000000006044820152606401610345565b3360009081526005602052604090205460ff16156108e55760405162461bcd60e51b815260206004820152600f60248201527f616c726561647920636c61696d656400000000000000000000000000000000006044820152606401610345565b6040516bffffffffffffffffffffffff193360601b16602082015260348101849052600090605401604051602081830303815290604052805190602001209050610966868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506001549150849050610e7b565b6109b25760405162461bcd60e51b815260206004820152600d60248201527f696e76616c69642070726f6f66000000000000000000000000000000000000006044820152606401610345565b336000908152600560205260409020805460ff191660011790558215610ab057600254610a0d906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811691166000610e91565b600254610a47906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116911686610e91565b60025460405163282d3fdf60e01b8152336004820152602481018690526001600160a01b039091169063282d3fdf90604401600060405180830381600087803b158015610a9357600080fd5b505af1158015610aa7573d6000803e3d6000fd5b50505050610b6f565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161580610af157506002546001600160a01b0316155b610b1157600a610b0260058761140c565b610b0c919061142b565b610b14565b60005b90508060036000828254610b2891906113f4565b90915550610b6d905033610b3c83886113dd565b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169190610dce565b505b60408051338152602081018690528415158183015290517ffa8256f7c08bb01a03ea96f8b3a904a4450311c9725d1c52cdbe21ed3dc42dcc9181900360600190a150600195945050505050565b6000546001600160a01b03163314610bfe5760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610345565b6000805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527fe44f98492340b33cca2c1f812e0f05006c6612a7e5dc10304debc6c6156d4d40906020016104bf565b600380546000909155610cb66001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000167f000000000000000000000000000000000000000000000000000000000000000083610dce565b6040518181527f39346cbe10cbb5c94debda36f2afe71c5dbe015ad0b194b6df8498c815137d24906020016104bf565b6000546001600160a01b03163314610d285760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610345565b426004556040517f4d420acb8e6b2d53514712e44f7e6b7354d54fc5fa0adab5aee3bb60d81eb0f890600090a1565b6000546001600160a01b03163314610d995760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610345565b60018190556040518181527f2ae0bd135f5bcfc82b9dbffdabe76051e763c2ed1c7188197181a575aa0e55b3906020016104bf565b6040516001600160a01b038316602482015260448101829052610e5e90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610fad565b505050565b6000818310610e725781610e74565b825b9392505050565b600082610e888584611092565b14949350505050565b801580610f0b5750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610ee5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0991906113ae565b155b610f7d5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610345565b6040516001600160a01b038316602482015260448101829052610e5e90849063095ea7b360e01b90606401610dfa565b6000611002826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661113e9092919063ffffffff16565b805190915015610e5e5780806020019051810190611020919061144d565b610e5e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610345565b600081815b84518110156111365760008582815181106110b4576110b461146a565b602002602001015190508083116110f6576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611123565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061112e81611480565b915050611097565b509392505050565b606061114d8484600085611155565b949350505050565b6060824710156111cd5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610345565b843b61121b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610345565b600080866001600160a01b0316858760405161123791906114cb565b60006040518083038185875af1925050503d8060008114611274576040519150601f19603f3d011682016040523d82523d6000602084013e611279565b606091505b5091509150611289828286611294565b979650505050505050565b606083156112a3575081610e74565b8251156112b35782518084602001fd5b8160405162461bcd60e51b815260040161034591906114e7565b6000602082840312156112df57600080fd5b81356001600160a01b0381168114610e7457600080fd5b801515811461130457600080fd5b50565b6000806000806060858703121561131d57600080fd5b843567ffffffffffffffff8082111561133557600080fd5b818701915087601f83011261134957600080fd5b81358181111561135857600080fd5b8860208260051b850101111561136d57600080fd5b602092830196509450508501359150604085013561138a816112f6565b939692955090935050565b6000602082840312156113a757600080fd5b5035919050565b6000602082840312156113c057600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156113ef576113ef6113c7565b500390565b60008219821115611407576114076113c7565b500190565b6000816000190483118215151615611426576114266113c7565b500290565b60008261144857634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561145f57600080fd5b8151610e74816112f6565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611494576114946113c7565b5060010190565b60005b838110156114b657818101518382015260200161149e565b838111156114c5576000848401525b50505050565b600082516114dd81846020870161149b565b9190910192915050565b602081526000825180602084015261150681604085016020870161149b565b601f01601f1916919091016040019291505056fea164736f6c634300080b000a0000000000000000000000006a7cf6aa248047e26c900a3cd057a073dd3698e489e4411503634c85e43eb2a07ca21cdf4564be84e378667742c2dc20d3bf0146000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd31000000000000000000000000c1de2d060a18cffab121e90118e380629d11977e00000000000000000000000008ec8f7550ec59f699933b089cd0f65757dc9da00000000000000000000000000000000000000000000000000000000000127500000000000000000000000000000000000000000000000000000000000093a800
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101515760003560e01c806373b2e80e116100cd578063bd6d285011610081578063d661448711610066578063d6614487146102ba578063dab5f340146102cd578063e13b7f5c146102e057600080fd5b8063bd6d2850146102a9578063c4245690146102b257600080fd5b80637a40624b116100b25780637a40624b146102535780638faa85051461027a57806399bc0aea1461028257600080fd5b806373b2e80e1461022757806378e979251461024a57600080fd5b80632eb4a7ab116101245780634162169f116101095780634162169f146101de57806353210b39146101f15780636637b8821461021457600080fd5b80632eb4a7ab146101cd57806331ae557c146101d657600080fd5b8063076bbb671461015657806315b634831461019a578063171060ec146101a457806319cdf1cb146101b7575b600080fd5b61017d7f00000000000000000000000008ec8f7550ec59f699933b089cd0f65757dc9da081565b6040516001600160a01b0390911681526020015b60405180910390f35b6101a2610307565b005b6101a26101b23660046112cd565b6104ca565b6101bf600581565b604051908152602001610191565b6101bf60015481565b6101a2610567565b60005461017d906001600160a01b031681565b6102046101ff366004611307565b610723565b6040519015158152602001610191565b6101a26102223660046112cd565b610bbc565b6102046102353660046112cd565b60056020526000908152604090205460ff1681565b6101bf60045481565b6101bf7f0000000000000000000000000000000000000000000000000000000066fea66b81565b6101a2610c59565b6101bf7f0000000000000000000000000000000000000000000000000000000067a4c36b81565b6101bf60035481565b6101a2610ce6565b60025461017d906001600160a01b031681565b6101a26102db366004611395565b610d57565b61017d7f000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd3181565b6000546001600160a01b0316331461034e5760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b60448201526064015b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000067a4c36b42116103bd5760405162461bcd60e51b815260206004820152600860248201527f21657870697265640000000000000000000000000000000000000000000000006044820152606401610345565b6003546040516370a0823160e01b8152306004820152600091906001600160a01b037f000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd3116906370a0823190602401602060405180830381865afa158015610428573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061044c91906113ae565b61045691906113dd565b600054909150610493906001600160a01b037f000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd318116911683610dce565b6040518181527f740d726b1789a603e85c6b40463a98c7130ecdecdb1618b58bf1043342885bb9906020015b60405180910390a150565b6000546001600160a01b0316331461050c5760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610345565b6002805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527fef7ce00901486d0ae4bbe00a818eb6bb2f42bc78fc75571cf294c1c50c61adfd906020016104bf565b6000546001600160a01b031633146105a95760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610345565b6105e16105d97f0000000000000000000000000000000000000000000000000000000066fea66b62093a806113f4565b600454610e63565b421061062f5760405162461bcd60e51b815260206004820152600860248201527f746f6f206c6174650000000000000000000000000000000000000000000000006044820152606401610345565b6040516370a0823160e01b81523060048201526000907f000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd316001600160a01b0316906370a0823190602401602060405180830381865afa158015610696573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ba91906113ae565b6000549091506106f7906001600160a01b037f000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd318116911683610dce565b6040517f82c202588180490f67fa4d9346c730a0c94f2b525caf39bd63427fb643f73a6990600090a150565b6001546000906107755760405162461bcd60e51b815260206004820152600560248201527f21726f6f740000000000000000000000000000000000000000000000000000006044820152606401610345565b60045442116107c65760405162461bcd60e51b815260206004820152600860248201527f21737461727465640000000000000000000000000000000000000000000000006044820152606401610345565b7f0000000000000000000000000000000000000000000000000000000067a4c36b42106108355760405162461bcd60e51b815260206004820152600760248201527f21616374697665000000000000000000000000000000000000000000000000006044820152606401610345565b600083116108855760405162461bcd60e51b815260206004820152600760248201527f21616d6f756e74000000000000000000000000000000000000000000000000006044820152606401610345565b3360009081526005602052604090205460ff16156108e55760405162461bcd60e51b815260206004820152600f60248201527f616c726561647920636c61696d656400000000000000000000000000000000006044820152606401610345565b6040516bffffffffffffffffffffffff193360601b16602082015260348101849052600090605401604051602081830303815290604052805190602001209050610966868680806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506001549150849050610e7b565b6109b25760405162461bcd60e51b815260206004820152600d60248201527f696e76616c69642070726f6f66000000000000000000000000000000000000006044820152606401610345565b336000908152600560205260409020805460ff191660011790558215610ab057600254610a0d906001600160a01b037f000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd31811691166000610e91565b600254610a47906001600160a01b037f000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd318116911686610e91565b60025460405163282d3fdf60e01b8152336004820152602481018690526001600160a01b039091169063282d3fdf90604401600060405180830381600087803b158015610a9357600080fd5b505af1158015610aa7573d6000803e3d6000fd5b50505050610b6f565b60007f00000000000000000000000008ec8f7550ec59f699933b089cd0f65757dc9da06001600160a01b03161580610af157506002546001600160a01b0316155b610b1157600a610b0260058761140c565b610b0c919061142b565b610b14565b60005b90508060036000828254610b2891906113f4565b90915550610b6d905033610b3c83886113dd565b6001600160a01b037f000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd31169190610dce565b505b60408051338152602081018690528415158183015290517ffa8256f7c08bb01a03ea96f8b3a904a4450311c9725d1c52cdbe21ed3dc42dcc9181900360600190a150600195945050505050565b6000546001600160a01b03163314610bfe5760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610345565b6000805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0383169081179091556040519081527fe44f98492340b33cca2c1f812e0f05006c6612a7e5dc10304debc6c6156d4d40906020016104bf565b600380546000909155610cb66001600160a01b037f000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd31167f00000000000000000000000008ec8f7550ec59f699933b089cd0f65757dc9da083610dce565b6040518181527f39346cbe10cbb5c94debda36f2afe71c5dbe015ad0b194b6df8498c815137d24906020016104bf565b6000546001600160a01b03163314610d285760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610345565b426004556040517f4d420acb8e6b2d53514712e44f7e6b7354d54fc5fa0adab5aee3bb60d81eb0f890600090a1565b6000546001600160a01b03163314610d995760405162461bcd60e51b8152602060048201526005602482015264042c2eae8d60db1b6044820152606401610345565b60018190556040518181527f2ae0bd135f5bcfc82b9dbffdabe76051e763c2ed1c7188197181a575aa0e55b3906020016104bf565b6040516001600160a01b038316602482015260448101829052610e5e90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff0000000000000000000000000000000000000000000000000000000090931692909217909152610fad565b505050565b6000818310610e725781610e74565b825b9392505050565b600082610e888584611092565b14949350505050565b801580610f0b5750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e90604401602060405180830381865afa158015610ee5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0991906113ae565b155b610f7d5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527f20746f206e6f6e2d7a65726f20616c6c6f77616e6365000000000000000000006064820152608401610345565b6040516001600160a01b038316602482015260448101829052610e5e90849063095ea7b360e01b90606401610dfa565b6000611002826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661113e9092919063ffffffff16565b805190915015610e5e5780806020019051810190611020919061144d565b610e5e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610345565b600081815b84518110156111365760008582815181106110b4576110b461146a565b602002602001015190508083116110f6576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611123565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061112e81611480565b915050611097565b509392505050565b606061114d8484600085611155565b949350505050565b6060824710156111cd5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610345565b843b61121b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610345565b600080866001600160a01b0316858760405161123791906114cb565b60006040518083038185875af1925050503d8060008114611274576040519150601f19603f3d011682016040523d82523d6000602084013e611279565b606091505b5091509150611289828286611294565b979650505050505050565b606083156112a3575081610e74565b8251156112b35782518084602001fd5b8160405162461bcd60e51b815260040161034591906114e7565b6000602082840312156112df57600080fd5b81356001600160a01b0381168114610e7457600080fd5b801515811461130457600080fd5b50565b6000806000806060858703121561131d57600080fd5b843567ffffffffffffffff8082111561133557600080fd5b818701915087601f83011261134957600080fd5b81358181111561135857600080fd5b8860208260051b850101111561136d57600080fd5b602092830196509450508501359150604085013561138a816112f6565b939692955090935050565b6000602082840312156113a757600080fd5b5035919050565b6000602082840312156113c057600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156113ef576113ef6113c7565b500390565b60008219821115611407576114076113c7565b500190565b6000816000190483118215151615611426576114266113c7565b500290565b60008261144857634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561145f57600080fd5b8151610e74816112f6565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611494576114946113c7565b5060010190565b60005b838110156114b657818101518382015260200161149e565b838111156114c5576000848401525b50505050565b600082516114dd81846020870161149b565b9190910192915050565b602081526000825180602084015261150681604085016020870161149b565b601f01601f1916919091016040019291505056fea164736f6c634300080b000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006a7cf6aa248047e26c900a3cd057a073dd3698e489e4411503634c85e43eb2a07ca21cdf4564be84e378667742c2dc20d3bf0146000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd31000000000000000000000000c1de2d060a18cffab121e90118e380629d11977e00000000000000000000000008ec8f7550ec59f699933b089cd0f65757dc9da00000000000000000000000000000000000000000000000000000000000127500000000000000000000000000000000000000000000000000000000000093a800
-----Decoded View---------------
Arg [0] : _dao (address): 0x6A7Cf6aa248047E26c900a3cD057a073DD3698e4
Arg [1] : _merkleRoot (bytes32): 0x89e4411503634c85e43eb2a07ca21cdf4564be84e378667742c2dc20d3bf0146
Arg [2] : _aura (address): 0xEC73284E4EC9bcea1A7DDDf489eAA324C3F7dd31
Arg [3] : _auraLocker (address): 0xc1De2d060a18CFfAB121E90118e380629d11977E
Arg [4] : _penaltyForwarder (address): 0x08EC8f7550ec59F699933b089cd0f65757dc9DA0
Arg [5] : _startDelay (uint256): 1209600
Arg [6] : _expiresAfter (uint256): 9676800
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000006a7cf6aa248047e26c900a3cd057a073dd3698e4
Arg [1] : 89e4411503634c85e43eb2a07ca21cdf4564be84e378667742c2dc20d3bf0146
Arg [2] : 000000000000000000000000ec73284e4ec9bcea1a7dddf489eaa324c3f7dd31
Arg [3] : 000000000000000000000000c1de2d060a18cffab121e90118e380629d11977e
Arg [4] : 00000000000000000000000008ec8f7550ec59f699933b089cd0f65757dc9da0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000127500
Arg [6] : 000000000000000000000000000000000000000000000000000000000093a800
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.