Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 116 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Create Token Loc... | 14633989 | 994 days ago | IN | 0 ETH | 0.01114214 | ||||
Create Token Loc... | 14633986 | 994 days ago | IN | 0 ETH | 0.01131494 | ||||
Create Token Loc... | 14633984 | 994 days ago | IN | 0 ETH | 0.01131537 | ||||
Create Token Loc... | 14633981 | 994 days ago | IN | 0 ETH | 0.01131537 | ||||
Create Token Loc... | 14633975 | 994 days ago | IN | 0 ETH | 0.01131537 | ||||
Create Token Loc... | 14633970 | 994 days ago | IN | 0 ETH | 0.01131494 | ||||
Create Token Loc... | 14633959 | 994 days ago | IN | 0 ETH | 0.01131494 | ||||
Create Token Loc... | 14633952 | 994 days ago | IN | 0 ETH | 0.01131537 | ||||
Create Token Loc... | 14633950 | 994 days ago | IN | 0 ETH | 0.01131537 | ||||
Create Token Loc... | 14633948 | 994 days ago | IN | 0 ETH | 0.01131537 | ||||
Create Token Loc... | 14633946 | 994 days ago | IN | 0 ETH | 0.01131494 | ||||
Create Token Loc... | 14633944 | 994 days ago | IN | 0 ETH | 0.01131451 | ||||
Create Token Loc... | 14633941 | 994 days ago | IN | 0 ETH | 0.01131537 | ||||
Create Token Loc... | 14633939 | 994 days ago | IN | 0 ETH | 0.01131494 | ||||
Create Token Loc... | 14633937 | 994 days ago | IN | 0 ETH | 0.01131537 | ||||
Create Token Loc... | 14633934 | 994 days ago | IN | 0 ETH | 0.01131494 | ||||
Create Token Loc... | 14633930 | 994 days ago | IN | 0 ETH | 0.01131537 | ||||
Create Token Loc... | 14633927 | 994 days ago | IN | 0 ETH | 0.01131537 | ||||
Create Token Loc... | 14633925 | 994 days ago | IN | 0 ETH | 0.01131537 | ||||
Create Token Loc... | 14633923 | 994 days ago | IN | 0 ETH | 0.01131537 | ||||
Create Token Loc... | 14633921 | 994 days ago | IN | 0 ETH | 0.01131537 | ||||
Create Token Loc... | 14633917 | 994 days ago | IN | 0 ETH | 0.01131494 | ||||
Create Token Loc... | 14633915 | 994 days ago | IN | 0 ETH | 0.01131494 | ||||
Create Token Loc... | 14633913 | 994 days ago | IN | 0 ETH | 0.01131494 | ||||
Create Token Loc... | 14633911 | 994 days ago | IN | 0 ETH | 0.01131451 |
Latest 25 internal transactions (View All)
Advanced mode:
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xb6F87019...8F8d6fbd0 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
BreederDaoTokenLockManager
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "./factory/MinimalProxyFactory.sol"; import "./interfaces/IBreederDaoTokenLockManager.sol"; /** * @title BreederDaoTokenLockManager * @notice This contract manages a list of authorized function calls and targets that can be called * by any TokenLockWallet contract and it is a factory of TokenLockWallet contracts. * * This contract receives funds to make the process of creating TokenLockWallet contracts * easier by distributing them the initial tokens to be managed. * * The owner can setup a list of token destinations that will be used by TokenLock contracts to * approve the pulling of funds, this way in can be guaranteed that only protocol contracts * will manipulate users funds. */ contract BreederDaoTokenLockManager is MinimalProxyFactory, IBreederDaoTokenLockManager { using SafeERC20 for IERC20; // -- State -- address public masterCopy; IERC20 private _token; // -- Events -- event MasterCopyUpdated(address indexed masterCopy); event TokenLockCreated( address indexed contractAddress, bytes32 indexed initHash, address indexed beneficiary, address token, uint256 managedAmount, uint256 startTime, uint256 endTime, uint256 periods, uint256 releaseStartTime, uint256 vestingCliffTime, IBreederDaoTokenLock.Revocability revocable ); event TokensDeposited(address indexed sender, uint256 amount); event TokensWithdrawn(address indexed sender, uint256 amount); event FunctionCallAuth( address indexed caller, bytes4 indexed sigHash, address indexed target, string signature ); event TokenDestinationAllowed(address indexed dst, bool allowed); /** * Constructor. * @param _breedToken Token to use for deposits and withdrawals * @param _masterCopy Address of the master copy to use to clone proxies */ constructor(IERC20 _breedToken, address _masterCopy) { require(address(_breedToken) != address(0), "Token cannot be zero"); _token = _breedToken; setMasterCopy(_masterCopy); } // -- Factory -- /** * @notice Sets the masterCopy bytecode to use to create clones of TokenLock contracts * @param _masterCopy Address of contract bytecode to factory clone */ function setMasterCopy(address _masterCopy) public override onlyOwner { require(_masterCopy != address(0), "MasterCopy cannot be zero"); masterCopy = _masterCopy; emit MasterCopyUpdated(_masterCopy); } /** * @notice Creates and fund a new token lock wallet using a minimum proxy * @param _newOwner Address of the contract owner * @param _beneficiary Address of the beneficiary of locked tokens * @param _managedAmount Amount of tokens to be managed by the lock contract * @param _startTime Start time of the release schedule * @param _endTime End time of the release schedule * @param _periods Number of periods between start time and end time * @param _releaseStartTime Override time for when the releases start * @param _revocable Whether the contract is revocable */ function createTokenLockWallet( address _newOwner, address _beneficiary, uint256 _managedAmount, uint256 _startTime, uint256 _endTime, uint256 _periods, uint256 _releaseStartTime, uint256 _vestingCliffTime, IBreederDaoTokenLock.Revocability _revocable ) external override onlyOwner { require( _token.balanceOf(address(this)) >= _managedAmount, "Not enough tokens to create lock" ); // Create contract using a minimal proxy and call initializer bytes memory initializer = abi.encodeWithSignature( "initialize(address,address,address,uint256,uint256,uint256,uint256,uint256,uint256,uint8)", _newOwner, _beneficiary, address(_token), _managedAmount, _startTime, _endTime, _periods, _releaseStartTime, _vestingCliffTime, _revocable ); address contractAddress = _deployProxy2( keccak256(initializer), masterCopy, initializer ); // Send managed amount to the created contract _token.safeTransfer(contractAddress, _managedAmount); emit TokenLockCreated( contractAddress, keccak256(initializer), _beneficiary, address(_token), _managedAmount, _startTime, _endTime, _periods, _releaseStartTime, _vestingCliffTime, _revocable ); } // -- Funds Management -- /** * @notice Gets the token address * @return Token used for transfers and approvals */ function token() external view override returns (IERC20) { return _token; } /** * @notice Deposits tokens into the contract * @dev Even if the ERC20 token can be transferred directly to the contract * this function provide a safe interface to do the transfer and avoid mistakes * @param _amount Amount to deposit */ function deposit(uint256 _amount) external override { require(_amount > 0, "Amount cannot be zero"); _token.safeTransferFrom(msg.sender, address(this), _amount); emit TokensDeposited(msg.sender, _amount); } /** * @notice Withdraws tokens from the contract * @dev Escape hatch in case of mistakes or to recover remaining funds * @param _amount Amount of tokens to withdraw */ function withdraw(uint256 _amount) external override onlyOwner { require(_amount > 0, "Amount cannot be zero"); _token.safeTransfer(msg.sender, _amount); emit TokensWithdrawn(msg.sender, _amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// 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/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Create2.sol) pragma solidity ^0.8.0; /** * @dev Helper to make usage of the `CREATE2` EVM opcode easier and safer. * `CREATE2` can be used to compute in advance the address where a smart * contract will be deployed, which allows for interesting new mechanisms known * as 'counterfactual interactions'. * * See the https://eips.ethereum.org/EIPS/eip-1014#motivation[EIP] for more * information. */ library Create2 { /** * @dev Deploys a contract using `CREATE2`. The address where the contract * will be deployed can be known in advance via {computeAddress}. * * The bytecode for a contract can be obtained from Solidity with * `type(contractName).creationCode`. * * Requirements: * * - `bytecode` must not be empty. * - `salt` must have not been used for `bytecode` already. * - the factory must have a balance of at least `amount`. * - if `amount` is non-zero, `bytecode` must have a `payable` constructor. */ function deploy( uint256 amount, bytes32 salt, bytes memory bytecode ) internal returns (address) { address addr; require(address(this).balance >= amount, "Create2: insufficient balance"); require(bytecode.length != 0, "Create2: bytecode length is zero"); assembly { addr := create2(amount, add(bytecode, 0x20), mload(bytecode), salt) } require(addr != address(0), "Create2: Failed on deploy"); return addr; } /** * @dev Returns the address where a contract will be stored if deployed via {deploy}. Any change in the * `bytecodeHash` or `salt` will result in a new destination address. */ function computeAddress(bytes32 salt, bytes32 bytecodeHash) internal view returns (address) { return computeAddress(salt, bytecodeHash, address(this)); } /** * @dev Returns the address where a contract will be stored if deployed via {deploy} from a contract located at * `deployer`. If `deployer` is this contract's address, returns the same value as {computeAddress}. */ function computeAddress( bytes32 salt, bytes32 bytecodeHash, address deployer ) internal pure returns (address) { bytes32 _data = keccak256(abi.encodePacked(bytes1(0xff), deployer, salt, bytecodeHash)); return address(uint160(uint256(_data))); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Create2.sol"; // Adapted from https://github.com/OpenZeppelin/openzeppelin-sdk/blob/v2.5.0/packages/lib/contracts/upgradeability/ProxyFactory.sol // Based on https://eips.ethereum.org/EIPS/eip-1167 contract MinimalProxyFactory is Ownable { // -- Events -- event ProxyCreated(address indexed proxy); /** * @notice Gets the deterministic CREATE2 address for MinimalProxy with a particular implementation * @param _salt Bytes32 salt to use for CREATE2 * @param _implementation Address of the proxy target implementation * @return Address of the counterfactual MinimalProxy */ function getDeploymentAddress(bytes32 _salt, address _implementation) external view returns (address) { return Create2.computeAddress( _salt, keccak256(_getContractCreationCode(_implementation)), address(this) ); } /** * @notice Deploys a MinimalProxy with CREATE2 * @param _salt Bytes32 salt to use for CREATE2 * @param _implementation Address of the proxy target implementation * @param _data Bytes with the initializer call * @return Address of the deployed MinimalProxy */ function _deployProxy2( bytes32 _salt, address _implementation, bytes memory _data ) internal returns (address) { address proxyAddress = Create2.deploy( 0, _salt, _getContractCreationCode(_implementation) ); emit ProxyCreated(proxyAddress); // Call function with data if (_data.length > 0) { Address.functionCall(proxyAddress, _data); } return proxyAddress; } /** * @notice Gets the MinimalProxy bytecode * @param _implementation Address of the proxy target implementation * @return MinimalProxy bytecode */ function _getContractCreationCode(address _implementation) internal pure returns (bytes memory) { bytes10 creation = 0x3d602d80600a3d3981f3; bytes10 prefix = 0x363d3d373d3d3d363d73; bytes20 targetBytes = bytes20(_implementation); bytes15 suffix = 0x5af43d82803e903d91602b57fd5bf3; return abi.encodePacked(creation, prefix, targetBytes, suffix); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IBreederDaoTokenLock { enum Revocability { NotSet, Enabled, Disabled } // -- Balances -- function currentBalance() external view returns (uint256); // -- Time & Periods -- function currentTime() external view returns (uint256); function duration() external view returns (uint256); function sinceStartTime() external view returns (uint256); function amountPerPeriod() external view returns (uint256); function periodDuration() external view returns (uint256); function currentPeriod() external view returns (uint256); function passedPeriods() external view returns (uint256); // -- Locking & Release Schedule -- function availableAmount() external view returns (uint256); function vestedAmount() external view returns (uint256); function releasableAmount() external view returns (uint256); function totalOutstandingAmount() external view returns (uint256); function surplusAmount() external view returns (uint256); // -- Value Transfer -- function release() external; function withdrawSurplus(uint256 _amount) external; function revoke() external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "./IBreederDaoTokenLock.sol"; interface IBreederDaoTokenLockManager { // -- Factory -- function setMasterCopy(address _masterCopy) external; function createTokenLockWallet( address _owner, address _beneficiary, uint256 _managedAmount, uint256 _startTime, uint256 _endTime, uint256 _periods, uint256 _releaseStartTime, uint256 _vestingCliffTime, IBreederDaoTokenLock.Revocability _revocable ) external; // -- Funds Management -- function token() external returns (IERC20); function deposit(uint256 _amount) external; function withdraw(uint256 _amount) external; }
{ "evmVersion": "london", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": false, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"_breedToken","type":"address"},{"internalType":"address","name":"_masterCopy","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":true,"internalType":"bytes4","name":"sigHash","type":"bytes4"},{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"string","name":"signature","type":"string"}],"name":"FunctionCallAuth","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"masterCopy","type":"address"}],"name":"MasterCopyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"proxy","type":"address"}],"name":"ProxyCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"dst","type":"address"},{"indexed":false,"internalType":"bool","name":"allowed","type":"bool"}],"name":"TokenDestinationAllowed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"contractAddress","type":"address"},{"indexed":true,"internalType":"bytes32","name":"initHash","type":"bytes32"},{"indexed":true,"internalType":"address","name":"beneficiary","type":"address"},{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"managedAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"periods","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"releaseStartTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"vestingCliffTime","type":"uint256"},{"indexed":false,"internalType":"enum IBreederDaoTokenLock.Revocability","name":"revocable","type":"uint8"}],"name":"TokenLockCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensDeposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensWithdrawn","type":"event"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"},{"internalType":"address","name":"_beneficiary","type":"address"},{"internalType":"uint256","name":"_managedAmount","type":"uint256"},{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"_periods","type":"uint256"},{"internalType":"uint256","name":"_releaseStartTime","type":"uint256"},{"internalType":"uint256","name":"_vestingCliffTime","type":"uint256"},{"internalType":"enum IBreederDaoTokenLock.Revocability","name":"_revocable","type":"uint8"}],"name":"createTokenLockWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_salt","type":"bytes32"},{"internalType":"address","name":"_implementation","type":"address"}],"name":"getDeploymentAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"masterCopy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_masterCopy","type":"address"}],"name":"setMasterCopy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061009e5760003560e01c8063b6b55f2511610066578063b6b55f2514610121578063bdb62fbe1461013d578063cf497e6c1461016d578063f2fde38b14610189578063fc0c546a146101a55761009e565b80632e1a7d4d146100a357806368d30c2e146100bf578063715018a6146100db5780638da5cb5b146100e5578063a619486e14610103575b600080fd5b6100bd60048036038101906100b891906111f6565b6101c3565b005b6100d960048036038101906100d491906112a6565b610320565b005b6100e361066f565b005b6100ed6106f7565b6040516100fa919061137f565b60405180910390f35b61010b610720565b604051610118919061137f565b60405180910390f35b61013b600480360381019061013691906111f6565b610746565b005b610157600480360381019061015291906113d0565b610829565b604051610164919061137f565b60405180910390f35b61018760048036038101906101829190611410565b61084d565b005b6101a3600480360381019061019e9190611410565b6109c0565b005b6101ad610ab8565b6040516101ba919061149c565b60405180910390f35b6101cb610ae2565b73ffffffffffffffffffffffffffffffffffffffff166101e96106f7565b73ffffffffffffffffffffffffffffffffffffffff161461023f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023690611514565b60405180910390fd5b60008111610282576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161027990611580565b60405180910390fd5b6102cf3382600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610aea9092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f6352c5382c4a4578e712449ca65e83cdb392d045dfcf1cad9615189db2da244b8260405161031591906115af565b60405180910390a250565b610328610ae2565b73ffffffffffffffffffffffffffffffffffffffff166103466106f7565b73ffffffffffffffffffffffffffffffffffffffff161461039c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161039390611514565b60405180910390fd5b86600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016103f8919061137f565b602060405180830381865afa158015610415573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061043991906115df565b101561047a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047190611658565b60405180910390fd5b60008989600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168a8a8a8a8a8a8a6040516024016104c19a999897969594939291906116ef565b6040516020818303038152906040527fc7d3ea3c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050905060006105768280519060200120600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610b70565b90506105c5818a600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610aea9092919063ffffffff16565b8973ffffffffffffffffffffffffffffffffffffffff1682805190602001208273ffffffffffffffffffffffffffffffffffffffff167f3c7ff6acee351ed98200c285a04745858a107e16da2f13c3a81a43073c17d644600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168d8d8d8d8d8d8d60405161065a98979695949392919061178b565b60405180910390a45050505050505050505050565b610677610ae2565b73ffffffffffffffffffffffffffffffffffffffff166106956106f7565b73ffffffffffffffffffffffffffffffffffffffff16146106eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e290611514565b60405180910390fd5b6106f56000610bec565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008111610789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078090611580565b60405180910390fd5b6107d8333083600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610cb0909392919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f59062170a285eb80e8c6b8ced60428442a51910635005233fc4ce084a475845e8260405161081e91906115af565b60405180910390a250565b60006108458361083884610d39565b8051906020012030610daf565b905092915050565b610855610ae2565b73ffffffffffffffffffffffffffffffffffffffff166108736106f7565b73ffffffffffffffffffffffffffffffffffffffff16146108c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c090611514565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093090611855565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f30909084afc859121ffc3a5aef7fe37c540a9a1ef60bd4d8dcdb76376fadf9de60405160405180910390a250565b6109c8610ae2565b73ffffffffffffffffffffffffffffffffffffffff166109e66106f7565b73ffffffffffffffffffffffffffffffffffffffff1614610a3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3390611514565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa3906118e7565b60405180910390fd5b610ab581610bec565b50565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600033905090565b610b6b8363a9059cbb60e01b8484604051602401610b09929190611907565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610df3565b505050565b600080610b87600086610b8287610d39565b610eba565b90508073ffffffffffffffffffffffffffffffffffffffff167efffc2da0b561cae30d9826d37709e9421c4725faebc226cbbb7ef5fc5e734960405160405180910390a2600083511115610be157610bdf8184610fcb565b505b809150509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610d33846323b872dd60e01b858585604051602401610cd193929190611930565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610df3565b50505050565b60606000693d602d80600a3d3981f360b01b9050600069363d3d373d3d3d363d7360b01b905060008460601b905060006e5af43d82803e903d91602b57fd5bf360881b905083838383604051602001610d959493929190611a4e565b604051602081830303815290604052945050505050919050565b60008060ff60f81b838686604051602001610dcd9493929190611b52565b6040516020818303038152906040528051906020012090508060001c9150509392505050565b6000610e55826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166110159092919063ffffffff16565b9050600081511115610eb55780806020019051810190610e759190611bd8565b610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab90611c77565b60405180910390fd5b5b505050565b60008084471015610f00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef790611ce3565b60405180910390fd5b600083511415610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90611d4f565b60405180910390fd5b8383516020850187f59050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb790611dbb565b60405180910390fd5b809150509392505050565b606061100d83836040518060400160405280601e81526020017f416464726573733a206c6f772d6c6576656c2063616c6c206661696c65640000815250611015565b905092915050565b6060611024848460008561102d565b90509392505050565b606082471015611072576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106990611e4d565b60405180910390fd5b61107b85611141565b6110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190611eb9565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516110e39190611f53565b60006040518083038185875af1925050503d8060008114611120576040519150601f19603f3d011682016040523d82523d6000602084013e611125565b606091505b5091509150611135828286611154565b92505050949350505050565b600080823b905060008111915050919050565b60608315611164578290506111b4565b6000835111156111775782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab9190611fbf565b60405180910390fd5b9392505050565b600080fd5b6000819050919050565b6111d3816111c0565b81146111de57600080fd5b50565b6000813590506111f0816111ca565b92915050565b60006020828403121561120c5761120b6111bb565b5b600061121a848285016111e1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061124e82611223565b9050919050565b61125e81611243565b811461126957600080fd5b50565b60008135905061127b81611255565b92915050565b6003811061128e57600080fd5b50565b6000813590506112a081611281565b92915050565b60008060008060008060008060006101208a8c0312156112c9576112c86111bb565b5b60006112d78c828d0161126c565b99505060206112e88c828d0161126c565b98505060406112f98c828d016111e1565b975050606061130a8c828d016111e1565b965050608061131b8c828d016111e1565b95505060a061132c8c828d016111e1565b94505060c061133d8c828d016111e1565b93505060e061134e8c828d016111e1565b9250506101006113608c828d01611291565b9150509295985092959850929598565b61137981611243565b82525050565b60006020820190506113946000830184611370565b92915050565b6000819050919050565b6113ad8161139a565b81146113b857600080fd5b50565b6000813590506113ca816113a4565b92915050565b600080604083850312156113e7576113e66111bb565b5b60006113f5858286016113bb565b92505060206114068582860161126c565b9150509250929050565b600060208284031215611426576114256111bb565b5b60006114348482850161126c565b91505092915050565b6000819050919050565b600061146261145d61145884611223565b61143d565b611223565b9050919050565b600061147482611447565b9050919050565b600061148682611469565b9050919050565b6114968161147b565b82525050565b60006020820190506114b1600083018461148d565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006114fe6020836114b7565b9150611509826114c8565b602082019050919050565b6000602082019050818103600083015261152d816114f1565b9050919050565b7f416d6f756e742063616e6e6f74206265207a65726f0000000000000000000000600082015250565b600061156a6015836114b7565b915061157582611534565b602082019050919050565b600060208201905081810360008301526115998161155d565b9050919050565b6115a9816111c0565b82525050565b60006020820190506115c460008301846115a0565b92915050565b6000815190506115d9816111ca565b92915050565b6000602082840312156115f5576115f46111bb565b5b6000611603848285016115ca565b91505092915050565b7f4e6f7420656e6f75676820746f6b656e7320746f20637265617465206c6f636b600082015250565b60006116426020836114b7565b915061164d8261160c565b602082019050919050565b6000602082019050818103600083015261167181611635565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600381106116b8576116b7611678565b5b50565b60008190506116c9826116a7565b919050565b60006116d9826116bb565b9050919050565b6116e9816116ce565b82525050565b600061014082019050611705600083018d611370565b611712602083018c611370565b61171f604083018b611370565b61172c606083018a6115a0565b61173960808301896115a0565b61174660a08301886115a0565b61175360c08301876115a0565b61176060e08301866115a0565b61176e6101008301856115a0565b61177c6101208301846116e0565b9b9a5050505050505050505050565b6000610100820190506117a1600083018b611370565b6117ae602083018a6115a0565b6117bb60408301896115a0565b6117c860608301886115a0565b6117d560808301876115a0565b6117e260a08301866115a0565b6117ef60c08301856115a0565b6117fc60e08301846116e0565b9998505050505050505050565b7f4d6173746572436f70792063616e6e6f74206265207a65726f00000000000000600082015250565b600061183f6019836114b7565b915061184a82611809565b602082019050919050565b6000602082019050818103600083015261186e81611832565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118d16026836114b7565b91506118dc82611875565b604082019050919050565b60006020820190508181036000830152611900816118c4565b9050919050565b600060408201905061191c6000830185611370565b61192960208301846115a0565b9392505050565b60006060820190506119456000830186611370565b6119526020830185611370565b61195f60408301846115a0565b949350505050565b60007fffffffffffffffffffff0000000000000000000000000000000000000000000082169050919050565b6000819050919050565b6119ae6119a982611967565b611993565b82525050565b60007fffffffffffffffffffffffffffffffffffffffff00000000000000000000000082169050919050565b6000819050919050565b6119fb6119f6826119b4565b6119e0565b82525050565b60007fffffffffffffffffffffffffffffff000000000000000000000000000000000082169050919050565b6000819050919050565b611a48611a4382611a01565b611a2d565b82525050565b6000611a5a828761199d565b600a82019150611a6a828661199d565b600a82019150611a7a82856119ea565b601482019150611a8a8284611a37565b600f8201915081905095945050505050565b60007fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b611ae3611ade82611a9c565b611ac8565b82525050565b60008160601b9050919050565b6000611b0182611ae9565b9050919050565b6000611b1382611af6565b9050919050565b611b2b611b2682611243565b611b08565b82525050565b6000819050919050565b611b4c611b478261139a565b611b31565b82525050565b6000611b5e8287611ad2565b600182019150611b6e8286611b1a565b601482019150611b7e8285611b3b565b602082019150611b8e8284611b3b565b60208201915081905095945050505050565b60008115159050919050565b611bb581611ba0565b8114611bc057600080fd5b50565b600081519050611bd281611bac565b92915050565b600060208284031215611bee57611bed6111bb565b5b6000611bfc84828501611bc3565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000611c61602a836114b7565b9150611c6c82611c05565b604082019050919050565b60006020820190508181036000830152611c9081611c54565b9050919050565b7f437265617465323a20696e73756666696369656e742062616c616e6365000000600082015250565b6000611ccd601d836114b7565b9150611cd882611c97565b602082019050919050565b60006020820190508181036000830152611cfc81611cc0565b9050919050565b7f437265617465323a2062797465636f6465206c656e677468206973207a65726f600082015250565b6000611d396020836114b7565b9150611d4482611d03565b602082019050919050565b60006020820190508181036000830152611d6881611d2c565b9050919050565b7f437265617465323a204661696c6564206f6e206465706c6f7900000000000000600082015250565b6000611da56019836114b7565b9150611db082611d6f565b602082019050919050565b60006020820190508181036000830152611dd481611d98565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000611e376026836114b7565b9150611e4282611ddb565b604082019050919050565b60006020820190508181036000830152611e6681611e2a565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000611ea3601d836114b7565b9150611eae82611e6d565b602082019050919050565b60006020820190508181036000830152611ed281611e96565b9050919050565b600081519050919050565b600081905092915050565b60005b83811015611f0d578082015181840152602081019050611ef2565b83811115611f1c576000848401525b50505050565b6000611f2d82611ed9565b611f378185611ee4565b9350611f47818560208601611eef565b80840191505092915050565b6000611f5f8284611f22565b915081905092915050565b600081519050919050565b6000601f19601f8301169050919050565b6000611f9182611f6a565b611f9b81856114b7565b9350611fab818560208601611eef565b611fb481611f75565b840191505092915050565b60006020820190508181036000830152611fd98184611f86565b90509291505056fea2646970667358221220b41a8b38e3238434b05b050929617a806d31c98471078b283fc7161f4443e44064736f6c634300080a0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.