Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 1 from a total of 1 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer Ownersh... | 18520325 | 833 days ago | IN | 0 ETH | 0.00082016 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| 0x61016060 | 24081464 | 55 days ago | Contract Creation | 0 ETH | |||
| 0x61016060 | 24081464 | 55 days ago | Contract Creation | 0 ETH | |||
| 0x61012060 | 24067765 | 57 days ago | Contract Creation | 0 ETH | |||
| 0x61012060 | 24067765 | 57 days ago | Contract Creation | 0 ETH | |||
| 0x60e06040 | 23768469 | 99 days ago | Contract Creation | 0 ETH | |||
| 0x60e06040 | 23768469 | 99 days ago | Contract Creation | 0 ETH | |||
| 0x60e06040 | 23768469 | 99 days ago | Contract Creation | 0 ETH | |||
| 0x60e06040 | 23768469 | 99 days ago | Contract Creation | 0 ETH | |||
| 0x60e06040 | 23768469 | 99 days ago | Contract Creation | 0 ETH | |||
| 0x60e06040 | 23768469 | 99 days ago | Contract Creation | 0 ETH | |||
| 0x60e06040 | 23768469 | 99 days ago | Contract Creation | 0 ETH | |||
| 0x60e06040 | 23768469 | 99 days ago | Contract Creation | 0 ETH | |||
| 0x60e06040 | 23768469 | 99 days ago | Contract Creation | 0 ETH | |||
| 0x60e06040 | 23768469 | 99 days ago | Contract Creation | 0 ETH | |||
| 0x61016060 | 23589608 | 124 days ago | Contract Creation | 0 ETH | |||
| 0x61016060 | 23589608 | 124 days ago | Contract Creation | 0 ETH | |||
| 0x61016060 | 23589608 | 124 days ago | Contract Creation | 0 ETH | |||
| 0x61016060 | 23589608 | 124 days ago | Contract Creation | 0 ETH | |||
| 0x61016060 | 23589608 | 124 days ago | Contract Creation | 0 ETH | |||
| 0x61016060 | 23589608 | 124 days ago | Contract Creation | 0 ETH | |||
| 0x61016060 | 23589608 | 124 days ago | Contract Creation | 0 ETH | |||
| 0x61016060 | 23589608 | 124 days ago | Contract Creation | 0 ETH | |||
| 0x60e06040 | 23589553 | 124 days ago | Contract Creation | 0 ETH | |||
| 0x60e06040 | 23589553 | 124 days ago | Contract Creation | 0 ETH | |||
| 0x60e06040 | 23589553 | 124 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Create2Factory
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-11-07
*/
// SPDX-License-Identifier: BUSL-1.1
// Gearbox. Generalized leverage protocol that allows to take leverage and then use it across other DeFi protocols and platforms in a composable way.
// (c) Gearbox Holdings, 2023
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Create2.sol)
/**
* @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 addr) {
require(address(this).balance >= amount, "Create2: insufficient balance");
require(bytecode.length != 0, "Create2: bytecode length is zero");
/// @solidity memory-safe-assembly
assembly {
addr := create2(amount, add(bytecode, 0x20), mload(bytecode), salt)
}
require(addr != address(0), "Create2: Failed on deploy");
}
/**
* @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 addr) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40) // Get free memory pointer
// | | ↓ ptr ... ↓ ptr + 0x0B (start) ... ↓ ptr + 0x20 ... ↓ ptr + 0x40 ... |
// |-------------------|---------------------------------------------------------------------------|
// | bytecodeHash | CCCCCCCCCCCCC...CC |
// | salt | BBBBBBBBBBBBB...BB |
// | deployer | 000000...0000AAAAAAAAAAAAAAAAAAA...AA |
// | 0xFF | FF |
// |-------------------|---------------------------------------------------------------------------|
// | memory | 000000...00FFAAAAAAAAAAAAAAAAAAA...AABBBBBBBBBBBBB...BBCCCCCCCCCCCCC...CC |
// | keccak(start, 85) | ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ |
mstore(add(ptr, 0x40), bytecodeHash)
mstore(add(ptr, 0x20), salt)
mstore(ptr, deployer) // Right-aligned with 12 preceding garbage bytes
let start := add(ptr, 0x0b) // The hashed data starts at the final garbage byte which we will set to 0xff
mstore8(start, 0xff)
addr := keccak256(start, 85)
}
}
}
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
/**
* @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;
}
}
/**
* @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 Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling 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);
}
}
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
/**
* @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
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or 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 {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// 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
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
pragma solidity 0.8.17;
/// @title Create2Factory
/// @notice Deploys contract from bytecode and salt using create2
contract Create2Factory is Ownable {
using Address for address;
function callExternal(address target, bytes calldata data) external onlyOwner {
target.functionCall(data, "Call to external contract failed");
}
function callExternalWithValue(address target, bytes calldata data) external payable onlyOwner {
target.functionCallWithValue(data, msg.value, "Call to external contract failed");
}
function deploy(bytes32 salt, bytes calldata bytecode) external onlyOwner {
Create2.deploy(0, salt, bytecode);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"callExternal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"callExternalWithValue","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"bytes","name":"bytecode","type":"bytes"}],"name":"deploy","outputs":[],"stateMutability":"nonpayable","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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6108488061007e6000396000f3fe6080604052600436106100655760003560e01c8063cdcb760a11610043578063cdcb760a146100cd578063ce5ca65a146100ed578063f2fde38b1461010057600080fd5b806364629f2c1461006a578063715018a61461008c5780638da5cb5b146100a1575b600080fd5b34801561007657600080fd5b5061008a6100853660046106fe565b610120565b005b34801561009857600080fd5b5061008a6101ad565b3480156100ad57600080fd5b50600054604080516001600160a01b039092168252519081900360200190f35b3480156100d957600080fd5b5061008a6100e8366004610751565b6101c1565b61008a6100fb3660046106fe565b61020b565b34801561010c57600080fd5b5061008a61011b366004610784565b610293565b610128610328565b6101a782828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040805180820190915260208082527f43616c6c20746f2065787465726e616c20636f6e7472616374206661696c6564908201526001600160a01b0388169392509050610382565b50505050565b6101b5610328565b6101bf600061039b565b565b6101c9610328565b6101a760008484848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061040392505050565b610213610328565b6101a782828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040805180820190915260208082527f43616c6c20746f2065787465726e616c20636f6e7472616374206661696c6564908201526001600160a01b038816939250349150610507565b61029b610328565b6001600160a01b03811661031c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103258161039b565b50565b6000546001600160a01b031633146101bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610313565b60606103918484600085610507565b90505b9392505050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000834710156104555760405162461bcd60e51b815260206004820152601d60248201527f437265617465323a20696e73756666696369656e742062616c616e63650000006044820152606401610313565b81516000036104a65760405162461bcd60e51b815260206004820181905260248201527f437265617465323a2062797465636f6465206c656e677468206973207a65726f6044820152606401610313565b8282516020840186f590506001600160a01b0381166103945760405162461bcd60e51b815260206004820152601960248201527f437265617465323a204661696c6564206f6e206465706c6f79000000000000006044820152606401610313565b60608247101561057f5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610313565b600080866001600160a01b0316858760405161059b91906107c3565b60006040518083038185875af1925050503d80600081146105d8576040519150601f19603f3d011682016040523d82523d6000602084013e6105dd565b606091505b50915091506105ee878383876105fb565b925050505b949350505050565b6060831561066a578251600003610663576001600160a01b0385163b6106635760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610313565b50816105f3565b6105f3838381511561067f5781518083602001fd5b8060405162461bcd60e51b815260040161031391906107df565b80356001600160a01b03811681146106b057600080fd5b919050565b60008083601f8401126106c757600080fd5b50813567ffffffffffffffff8111156106df57600080fd5b6020830191508360208285010111156106f757600080fd5b9250929050565b60008060006040848603121561071357600080fd5b61071c84610699565b9250602084013567ffffffffffffffff81111561073857600080fd5b610744868287016106b5565b9497909650939450505050565b60008060006040848603121561076657600080fd5b83359250602084013567ffffffffffffffff81111561073857600080fd5b60006020828403121561079657600080fd5b61039482610699565b60005b838110156107ba5781810151838201526020016107a2565b50506000910152565b600082516107d581846020870161079f565b9190910192915050565b60208152600082518060208401526107fe81604085016020870161079f565b601f01601f1916919091016040019291505056fea2646970667358221220d41de944185b5389b84dd372fcbc91a31911c241d9de628c06c04caf2d0dc6e564736f6c63430008110033
Deployed Bytecode
0x6080604052600436106100655760003560e01c8063cdcb760a11610043578063cdcb760a146100cd578063ce5ca65a146100ed578063f2fde38b1461010057600080fd5b806364629f2c1461006a578063715018a61461008c5780638da5cb5b146100a1575b600080fd5b34801561007657600080fd5b5061008a6100853660046106fe565b610120565b005b34801561009857600080fd5b5061008a6101ad565b3480156100ad57600080fd5b50600054604080516001600160a01b039092168252519081900360200190f35b3480156100d957600080fd5b5061008a6100e8366004610751565b6101c1565b61008a6100fb3660046106fe565b61020b565b34801561010c57600080fd5b5061008a61011b366004610784565b610293565b610128610328565b6101a782828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040805180820190915260208082527f43616c6c20746f2065787465726e616c20636f6e7472616374206661696c6564908201526001600160a01b0388169392509050610382565b50505050565b6101b5610328565b6101bf600061039b565b565b6101c9610328565b6101a760008484848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061040392505050565b610213610328565b6101a782828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040805180820190915260208082527f43616c6c20746f2065787465726e616c20636f6e7472616374206661696c6564908201526001600160a01b038816939250349150610507565b61029b610328565b6001600160a01b03811661031c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6103258161039b565b50565b6000546001600160a01b031633146101bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610313565b60606103918484600085610507565b90505b9392505050565b600080546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000834710156104555760405162461bcd60e51b815260206004820152601d60248201527f437265617465323a20696e73756666696369656e742062616c616e63650000006044820152606401610313565b81516000036104a65760405162461bcd60e51b815260206004820181905260248201527f437265617465323a2062797465636f6465206c656e677468206973207a65726f6044820152606401610313565b8282516020840186f590506001600160a01b0381166103945760405162461bcd60e51b815260206004820152601960248201527f437265617465323a204661696c6564206f6e206465706c6f79000000000000006044820152606401610313565b60608247101561057f5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610313565b600080866001600160a01b0316858760405161059b91906107c3565b60006040518083038185875af1925050503d80600081146105d8576040519150601f19603f3d011682016040523d82523d6000602084013e6105dd565b606091505b50915091506105ee878383876105fb565b925050505b949350505050565b6060831561066a578251600003610663576001600160a01b0385163b6106635760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610313565b50816105f3565b6105f3838381511561067f5781518083602001fd5b8060405162461bcd60e51b815260040161031391906107df565b80356001600160a01b03811681146106b057600080fd5b919050565b60008083601f8401126106c757600080fd5b50813567ffffffffffffffff8111156106df57600080fd5b6020830191508360208285010111156106f757600080fd5b9250929050565b60008060006040848603121561071357600080fd5b61071c84610699565b9250602084013567ffffffffffffffff81111561073857600080fd5b610744868287016106b5565b9497909650939450505050565b60008060006040848603121561076657600080fd5b83359250602084013567ffffffffffffffff81111561073857600080fd5b60006020828403121561079657600080fd5b61039482610699565b60005b838110156107ba5781810151838201526020016107a2565b50506000910152565b600082516107d581846020870161079f565b9190910192915050565b60208152600082518060208401526107fe81604085016020870161079f565b601f01601f1916919091016040019291505056fea2646970667358221220d41de944185b5389b84dd372fcbc91a31911c241d9de628c06c04caf2d0dc6e564736f6c63430008110033
Deployed Bytecode Sourcemap
17279:574:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17355:158;;;;;;;;;;-1:-1:-1;17355:158:0;;;;;:::i;:::-;;:::i;:::-;;6791:103;;;;;;;;;;;;;:::i;6150:87::-;;;;;;;;;;-1:-1:-1;6196:7:0;6223:6;6150:87;;;-1:-1:-1;;;;;6223:6:0;;;1201:74:1;;6150:87:0;;;;;1189:2:1;6150:87:0;;;17724:126;;;;;;;;;;-1:-1:-1;17724:126:0;;;;;:::i;:::-;;:::i;17521:195::-;;;;;;:::i;:::-;;:::i;7049:201::-;;;;;;;;;;-1:-1:-1;7049:201:0;;;;;:::i;:::-;;:::i;17355:158::-;6036:13;:11;:13::i;:::-;17444:61:::1;17464:4;;17444:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;17444:61:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;-1:-1:-1;;;;;17444:19:0;::::1;::::0;:61;-1:-1:-1;17444:61:0;-1:-1:-1;17444:19:0::1;:61::i;:::-;;17355:158:::0;;;:::o;6791:103::-;6036:13;:11;:13::i;:::-;6856:30:::1;6883:1;6856:18;:30::i;:::-;6791:103::o:0;17724:126::-;6036:13;:11;:13::i;:::-;17809:33:::1;17824:1;17827:4;17833:8;;17809:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;17809:14:0::1;::::0;-1:-1:-1;;;17809:33:0:i:1;17521:195::-:0;6036:13;:11;:13::i;:::-;17627:81:::1;17656:4;;17627:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;17627:81:0::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;-1:-1:-1;;;;;17627:28:0;::::1;::::0;:81;-1:-1:-1;17662:9:0::1;::::0;-1:-1:-1;17627:28:0::1;:81::i;7049:201::-:0;6036:13;:11;:13::i;:::-;-1:-1:-1;;;;;7138:22:0;::::1;7130:73;;;::::0;-1:-1:-1;;;7130:73:0;;2161:2:1;7130:73:0::1;::::0;::::1;2143:21:1::0;2200:2;2180:18;;;2173:30;2239:34;2219:18;;;2212:62;2310:8;2290:18;;;2283:36;2336:19;;7130:73:0::1;;;;;;;;;7214:28;7233:8;7214:18;:28::i;:::-;7049:201:::0;:::o;6315:132::-;6196:7;6223:6;-1:-1:-1;;;;;6223:6:0;4939:10;6379:23;6371:68;;;;-1:-1:-1;;;6371:68:0;;2568:2:1;6371:68:0;;;2550:21:1;;;2587:18;;;2580:30;2646:34;2626:18;;;2619:62;2698:18;;6371:68:0;2366:356:1;11754:229:0;11891:12;11923:52;11945:6;11953:4;11959:1;11962:12;11923:21;:52::i;:::-;11916:59;;11754:229;;;;;;:::o;7410:191::-;7484:16;7503:6;;-1:-1:-1;;;;;7520:17:0;;;;;;;;;;7553:40;;7503:6;;;;;;;7553:40;;7484:16;7553:40;7473:128;7410:191;:::o;1272:492::-;1359:12;1417:6;1392:21;:31;;1384:73;;;;-1:-1:-1;;;1384:73:0;;2929:2:1;1384:73:0;;;2911:21:1;2968:2;2948:18;;;2941:30;3007:31;2987:18;;;2980:59;3056:18;;1384:73:0;2727:353:1;1384:73:0;1476:8;:15;1495:1;1476:20;1468:65;;;;-1:-1:-1;;;1468:65:0;;3287:2:1;1468:65:0;;;3269:21:1;;;3306:18;;;3299:30;3365:34;3345:18;;;3338:62;3417:18;;1468:65:0;3085:356:1;1468:65:0;1674:4;1663:8;1657:15;1650:4;1640:8;1636:19;1628:6;1620:59;1612:67;-1:-1:-1;;;;;;1708:18:0;;1700:56;;;;-1:-1:-1;;;1700:56:0;;3648:2:1;1700:56:0;;;3630:21:1;3687:2;3667:18;;;3660:30;3726:27;3706:18;;;3699:55;3771:18;;1700:56:0;3446:349:1;12840:455:0;13010:12;13068:5;13043:21;:30;;13035:81;;;;-1:-1:-1;;;13035:81:0;;4002:2:1;13035:81:0;;;3984:21:1;4041:2;4021:18;;;4014:30;4080:34;4060:18;;;4053:62;4151:8;4131:18;;;4124:36;4177:19;;13035:81:0;3800:402:1;13035:81:0;13128:12;13142:23;13169:6;-1:-1:-1;;;;;13169:11:0;13188:5;13195:4;13169:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13127:73;;;;13218:69;13245:6;13253:7;13262:10;13274:12;13218:26;:69::i;:::-;13211:76;;;;12840:455;;;;;;;:::o;15413:644::-;15598:12;15627:7;15623:427;;;15655:10;:17;15676:1;15655:22;15651:290;;-1:-1:-1;;;;;9294:19:0;;;15865:60;;;;-1:-1:-1;;;15865:60:0;;4956:2:1;15865:60:0;;;4938:21:1;4995:2;4975:18;;;4968:30;5034:31;5014:18;;;5007:59;5083:18;;15865:60:0;4754:353:1;15865:60:0;-1:-1:-1;15962:10:0;15955:17;;15623:427;16005:33;16013:10;16025:12;16760:17;;:21;16756:388;;16992:10;16986:17;17049:15;17036:10;17032:2;17028:19;17021:44;16756:388;17119:12;17112:20;;-1:-1:-1;;;17112:20:0;;;;;;;;:::i;14:196:1:-;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:347::-;266:8;276:6;330:3;323:4;315:6;311:17;307:27;297:55;;348:1;345;338:12;297:55;-1:-1:-1;371:20:1;;414:18;403:30;;400:50;;;446:1;443;436:12;400:50;483:4;475:6;471:17;459:29;;535:3;528:4;519:6;511;507:19;503:30;500:39;497:59;;;552:1;549;542:12;497:59;215:347;;;;;:::o;567:483::-;646:6;654;662;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;:::-;744:39;;834:2;823:9;819:18;806:32;861:18;853:6;850:30;847:50;;;893:1;890;883:12;847:50;932:58;982:7;973:6;962:9;958:22;932:58;:::i;:::-;567:483;;1009:8;;-1:-1:-1;906:84:1;;-1:-1:-1;;;;567:483:1:o;1286:477::-;1365:6;1373;1381;1434:2;1422:9;1413:7;1409:23;1405:32;1402:52;;;1450:1;1447;1440:12;1402:52;1486:9;1473:23;1463:33;;1547:2;1536:9;1532:18;1519:32;1574:18;1566:6;1563:30;1560:50;;;1606:1;1603;1596:12;1768:186;1827:6;1880:2;1868:9;1859:7;1855:23;1851:32;1848:52;;;1896:1;1893;1886:12;1848:52;1919:29;1938:9;1919:29;:::i;4207:250::-;4292:1;4302:113;4316:6;4313:1;4310:13;4302:113;;;4392:11;;;4386:18;4373:11;;;4366:39;4338:2;4331:10;4302:113;;;-1:-1:-1;;4449:1:1;4431:16;;4424:27;4207:250::o;4462:287::-;4591:3;4629:6;4623:13;4645:66;4704:6;4699:3;4692:4;4684:6;4680:17;4645:66;:::i;:::-;4727:16;;;;;4462:287;-1:-1:-1;;4462:287:1:o;5112:396::-;5261:2;5250:9;5243:21;5224:4;5293:6;5287:13;5336:6;5331:2;5320:9;5316:18;5309:34;5352:79;5424:6;5419:2;5408:9;5404:18;5399:2;5391:6;5387:15;5352:79;:::i;:::-;5492:2;5471:15;-1:-1:-1;;5467:29:1;5452:45;;;;5499:2;5448:54;;5112:396;-1:-1:-1;;5112:396:1:o
Swarm Source
ipfs://d41de944185b5389b84dd372fcbc91a31911c241d9de628c06c04caf2d0dc6e5
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.