ETH Price: $3,384.79 (+1.04%)
Gas: 8 Gwei

Contract

0x03f290D92fF7C05f2F861bb7F414f9cCF3ec6fe5
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Update Platform ...177747972023-07-26 4:13:23356 days ago1690344803IN
0x03f290D9...CF3ec6fe5
0 ETH0.0005507619.09869846
Update Fee Walle...177747922023-07-26 4:12:23356 days ago1690344743IN
0x03f290D9...CF3ec6fe5
0 ETH0.000541118.6426474
Set Logic177747752023-07-26 4:08:59356 days ago1690344539IN
0x03f290D9...CF3ec6fe5
0 ETH0.0012186524.68258116
Set Logic177747722023-07-26 4:08:23356 days ago1690344503IN
0x03f290D9...CF3ec6fe5
0 ETH0.0012018824.34294883
Set Logic177747692023-07-26 4:07:47356 days ago1690344467IN
0x03f290D9...CF3ec6fe5
0 ETH0.0011665923.62829521
Set Logic177747662023-07-26 4:07:11356 days ago1690344431IN
0x03f290D9...CF3ec6fe5
0 ETH0.0011533323.35958553
Set Logic177747632023-07-26 4:06:35356 days ago1690344395IN
0x03f290D9...CF3ec6fe5
0 ETH0.0011978424.26702808
Set Logic177747622023-07-26 4:06:23356 days ago1690344383IN
0x03f290D9...CF3ec6fe5
0 ETH0.0011695923.68899724
0x60806040177747572023-07-26 4:05:23356 days ago1690344323IN
 Create: LisaSettings
0 ETH0.0112744323.64109119

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
LisaSettings

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, None license
File 1 of 5 : LisaSettings.sol
//SPDX-License-Identifier: MIT
pragma solidity 0.8.18;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "./Interfaces/ILisaSettings.sol";

contract LisaSettings is Ownable, ILisaSettings {
    address public protocolArtTreasuryAddress;
    uint256 public protocolATFeeBps;
    uint256 public protocolBTFeeBps;
    uint256 public buyoutDurationSeconds;
    using Address for address;
    mapping(bytes32 => address) private _logicContracts;

    constructor(
        uint256 atFeeBps,
        uint256 btFeeBps,
        address artTreasuryAddress,
        uint256 buyoutDurationSec
    ) Ownable() {
        require(atFeeBps < 100 * 100);
        require(btFeeBps < 100 * 100);
        require(
            address(artTreasuryAddress) != address(0),
            "wallet address should not be 0"
        );
        protocolATFeeBps = atFeeBps;
        protocolBTFeeBps = btFeeBps;
        protocolArtTreasuryAddress = artTreasuryAddress;
        buyoutDurationSeconds = buyoutDurationSec;
    }

    function protocolAdmin() external view override returns (address) {
        return owner();
    }

    function updatePlatformAdmin(address newOwner) external onlyOwner {
        require(newOwner != address(0));
        transferOwnership(newOwner);
    }

    function updateFeeWallet(address newWallet) external onlyOwner {
        require(newWallet != address(0));
        protocolArtTreasuryAddress = newWallet;
    }

    function updateATFeeBps(uint256 atFeeBps) external onlyOwner {
        require(atFeeBps < 100 * 100);
        protocolATFeeBps = atFeeBps;
    }

    function updateBTFeeBps(uint256 btFeeBps) external onlyOwner {
        require(btFeeBps < 100 * 100);
        protocolBTFeeBps = btFeeBps;
    }

    function updateBuyoutDurationSeconds(
        uint256 newDuration
    ) external onlyOwner {
        require(newDuration > 0);
        buyoutDurationSeconds = newDuration;
    }

    function getLogic(bytes32 contractId) external view returns (address) {
        return _logicContracts[contractId];
    }

    function setLogic(
        bytes32 contractId,
        address contractAddress
    ) external onlyOwner {
        require(
            Address.isContract(contractAddress),
            "LisaSettings: contractAddress should be a contract"
        );
        _logicContracts[contractId] = contractAddress;
    }
}

File 2 of 5 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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 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);
    }
}

File 3 of 5 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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);
        }
    }
}

File 4 of 5 : Context.sol
// 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;
    }
}

File 5 of 5 : ILisaSettings.sol
//SPDX-License-Identifier: MIT
pragma solidity 0.8.18;

interface ILisaSettings {

    /// @notice Protocol admin address that would be able to perform protocol fee claim
    function protocolAdmin() external view returns (address);

    /// @notice The treasury wallet of LISA protocol that will receive protocol fees
    function protocolArtTreasuryAddress() external view returns (address);

    /// @notice Lisa Protocol commission for each sale taken from the total supply of Art Tokens (AT)
    /// It is taken from the total supply of AT after the successful sale. Defined in basis points. E.g. 1.23% = 123 BPS.
    function protocolATFeeBps() external view returns (uint256);

    /// @notice Lisa Protocol commission for each sale taken from the total sale price in base tokens (BT).
    /// It is taken from the proceeds after the successful sale. Defined in basis points. E.g. 1.23% = 123 BPS.
    function protocolBTFeeBps() external view returns (uint256);

    /// @notice The duration of
    function buyoutDurationSeconds() external returns (uint256);

    /// @notice Stores the logic contract address for a given contract key.
    function setLogic(
        bytes32 contractId,
        address contractAddress
    ) external;

    /// @notice Returns the logic contract address by key. All subsequent deployments of protocol contracts will use this function to get the most recent version of logic contracts.
    function getLogic(bytes32 contractId) external view returns (address);
}

Settings
{
  "evmVersion": "paris",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 500
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"atFeeBps","type":"uint256"},{"internalType":"uint256","name":"btFeeBps","type":"uint256"},{"internalType":"address","name":"artTreasuryAddress","type":"address"},{"internalType":"uint256","name":"buyoutDurationSec","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"buyoutDurationSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"contractId","type":"bytes32"}],"name":"getLogic","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":"protocolATFeeBps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolArtTreasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolBTFeeBps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"contractId","type":"bytes32"},{"internalType":"address","name":"contractAddress","type":"address"}],"name":"setLogic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"atFeeBps","type":"uint256"}],"name":"updateATFeeBps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"btFeeBps","type":"uint256"}],"name":"updateBTFeeBps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDuration","type":"uint256"}],"name":"updateBuyoutDurationSeconds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateFeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"updatePlatformAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b5060405161070e38038061070e83398101604081905261002f91610131565b610038336100e1565b612710841061004657600080fd5b612710831061005457600080fd5b6001600160a01b0382166100ae5760405162461bcd60e51b815260206004820152601e60248201527f77616c6c657420616464726573732073686f756c64206e6f7420626520300000604482015260640160405180910390fd5b600293909355600391909155600180546001600160a01b0319166001600160a01b0390921691909117905560045561017d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000806000806080858703121561014757600080fd5b84516020860151604087015191955093506001600160a01b038116811461016d57600080fd5b6060959095015193969295505050565b6105828061018c6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c80638da5cb5b11610097578063d1fc417111610066578063d1fc4171146101f1578063ea4d906b146101fa578063f2fde38b14610203578063f331085c1461021657600080fd5b80638da5cb5b14610191578063a9f03b83146101a2578063b681d10e146101b5578063c92becc1146101c857600080fd5b806366718524116100d3578063667185241461014c578063715018a61461015f5780637e3e317914610167578063872245111461017e57600080fd5b80632f7e449a146100fa578063420f68611461010f57806352094a8514610139575b600080fd5b61010d6101083660046104c9565b610229565b005b6000546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b60015461011c906001600160a01b031681565b61010d61015a3660046104fe565b610244565b61010d610281565b61017060035481565b604051908152602001610130565b61010d61018c3660046104c9565b610295565b6000546001600160a01b031661011c565b61010d6101b03660046104fe565b6102b0565b61010d6101c3366004610520565b6102d7565b61011c6101d63660046104c9565b6000908152600560205260409020546001600160a01b031690565b61017060025481565b61017060045481565b61010d6102113660046104fe565b61038f565b61010d6102243660046104c9565b610405565b61023161041f565b612710811061023f57600080fd5b600255565b61024c61041f565b6001600160a01b03811661025f57600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b61028961041f565b6102936000610479565b565b61029d61041f565b61271081106102ab57600080fd5b600355565b6102b861041f565b6001600160a01b0381166102cb57600080fd5b6102d48161038f565b50565b6102df61041f565b6001600160a01b0381163b6103615760405162461bcd60e51b815260206004820152603260248201527f4c69736153657474696e67733a20636f6e74726163744164647265737320736860448201527f6f756c64206265206120636f6e7472616374000000000000000000000000000060648201526084015b60405180910390fd5b60009182526005602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b61039761041f565b6001600160a01b0381166103fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610358565b6102d481610479565b61040d61041f565b6000811161041a57600080fd5b600455565b6000546001600160a01b031633146102935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610358565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156104db57600080fd5b5035919050565b80356001600160a01b03811681146104f957600080fd5b919050565b60006020828403121561051057600080fd5b610519826104e2565b9392505050565b6000806040838503121561053357600080fd5b82359150610543602084016104e2565b9050925092905056fea2646970667358221220f250f5b4968ca390cf4b5801d6b6d92d695cce1d685cae4f0e3cdc694ecb8c8b64736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000064000000000000000000000000ca7681626e3f5542ac3806c88e5bfe916c7908cd000000000000000000000000000000000000000000000000000000000013c680

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c80638da5cb5b11610097578063d1fc417111610066578063d1fc4171146101f1578063ea4d906b146101fa578063f2fde38b14610203578063f331085c1461021657600080fd5b80638da5cb5b14610191578063a9f03b83146101a2578063b681d10e146101b5578063c92becc1146101c857600080fd5b806366718524116100d3578063667185241461014c578063715018a61461015f5780637e3e317914610167578063872245111461017e57600080fd5b80632f7e449a146100fa578063420f68611461010f57806352094a8514610139575b600080fd5b61010d6101083660046104c9565b610229565b005b6000546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b60015461011c906001600160a01b031681565b61010d61015a3660046104fe565b610244565b61010d610281565b61017060035481565b604051908152602001610130565b61010d61018c3660046104c9565b610295565b6000546001600160a01b031661011c565b61010d6101b03660046104fe565b6102b0565b61010d6101c3366004610520565b6102d7565b61011c6101d63660046104c9565b6000908152600560205260409020546001600160a01b031690565b61017060025481565b61017060045481565b61010d6102113660046104fe565b61038f565b61010d6102243660046104c9565b610405565b61023161041f565b612710811061023f57600080fd5b600255565b61024c61041f565b6001600160a01b03811661025f57600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b61028961041f565b6102936000610479565b565b61029d61041f565b61271081106102ab57600080fd5b600355565b6102b861041f565b6001600160a01b0381166102cb57600080fd5b6102d48161038f565b50565b6102df61041f565b6001600160a01b0381163b6103615760405162461bcd60e51b815260206004820152603260248201527f4c69736153657474696e67733a20636f6e74726163744164647265737320736860448201527f6f756c64206265206120636f6e7472616374000000000000000000000000000060648201526084015b60405180910390fd5b60009182526005602052604090912080546001600160a01b0319166001600160a01b03909216919091179055565b61039761041f565b6001600160a01b0381166103fc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610358565b6102d481610479565b61040d61041f565b6000811161041a57600080fd5b600455565b6000546001600160a01b031633146102935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610358565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156104db57600080fd5b5035919050565b80356001600160a01b03811681146104f957600080fd5b919050565b60006020828403121561051057600080fd5b610519826104e2565b9392505050565b6000806040838503121561053357600080fd5b82359150610543602084016104e2565b9050925092905056fea2646970667358221220f250f5b4968ca390cf4b5801d6b6d92d695cce1d685cae4f0e3cdc694ecb8c8b64736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000c80000000000000000000000000000000000000000000000000000000000000064000000000000000000000000ca7681626e3f5542ac3806c88e5bfe916c7908cd000000000000000000000000000000000000000000000000000000000013c680

-----Decoded View---------------
Arg [0] : atFeeBps (uint256): 200
Arg [1] : btFeeBps (uint256): 100
Arg [2] : artTreasuryAddress (address): 0xCa7681626e3f5542ac3806c88e5BFe916C7908CD
Arg [3] : buyoutDurationSec (uint256): 1296000

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c8
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [2] : 000000000000000000000000ca7681626e3f5542ac3806c88e5bfe916c7908cd
Arg [3] : 000000000000000000000000000000000000000000000000000000000013c680


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.