Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 195 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Buy Now | 13152983 | 1226 days ago | IN | 0 ETH | 0.01678956 | ||||
Buy Now | 13152702 | 1226 days ago | IN | 0 ETH | 0.02277038 | ||||
Buy Now | 13152702 | 1226 days ago | IN | 0 ETH | 0.02393371 | ||||
Buy Now | 13152699 | 1226 days ago | IN | 0 ETH | 0.02925225 | ||||
Buy Now | 13152692 | 1226 days ago | IN | 0 ETH | 0.02799682 | ||||
Buy Now | 13152688 | 1226 days ago | IN | 0 ETH | 0.02804629 | ||||
Buy Now | 13152682 | 1226 days ago | IN | 0 ETH | 0.02695519 | ||||
Buy Now | 13152676 | 1226 days ago | IN | 0 ETH | 0.03138101 | ||||
Buy Now | 13152672 | 1226 days ago | IN | 0 ETH | 0.03807695 | ||||
Buy Now | 13152670 | 1226 days ago | IN | 0 ETH | 0.00740509 | ||||
Buy Now | 13152665 | 1226 days ago | IN | 0 ETH | 0.03328112 | ||||
Buy Now | 13152662 | 1226 days ago | IN | 0 ETH | 0.03135802 | ||||
Buy Now | 13152658 | 1226 days ago | IN | 0 ETH | 0.03843405 | ||||
Buy Now | 13152658 | 1226 days ago | IN | 0 ETH | 0.03848084 | ||||
Buy Now | 13152657 | 1226 days ago | IN | 0 ETH | 0.03424136 | ||||
Transfer | 13152657 | 1226 days ago | IN | 0.04219481 ETH | 0.00429581 | ||||
Buy Now | 13152657 | 1226 days ago | IN | 0 ETH | 0.03428663 | ||||
Buy Now | 13152654 | 1226 days ago | IN | 0 ETH | 0.03587158 | ||||
Buy Now | 13152654 | 1226 days ago | IN | 0 ETH | 0.00855521 | ||||
Buy Now | 13152652 | 1226 days ago | IN | 0 ETH | 0.03848474 | ||||
Buy Now | 13152651 | 1226 days ago | IN | 0 ETH | 0.01975663 | ||||
Buy Now | 13152650 | 1226 days ago | IN | 0 ETH | 0.03052792 | ||||
Buy Now | 13152650 | 1226 days ago | IN | 0 ETH | 0.03052792 | ||||
Transfer | 13152650 | 1226 days ago | IN | 0.15 ETH | 0.00382367 | ||||
Buy Now | 13152650 | 1226 days ago | IN | 0 ETH | 0.03056151 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
TRLabBuyNowV1
Compiler Version
v0.8.2+commit.661d1103
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "./interfaces/ITRLabCore.sol"; import "./lib/LibArtwork.sol"; import "./interfaces/IBuyNow.sol"; import "./base/SignerRole.sol"; /// @title Interface for NFT buy-now in a fixed price. /// @author Joe /// @notice This is the interface for fixed price NFT buy-now. contract TRLabBuyNowV1 is IBuyNow, ReentrancyGuard, SignerRole, Ownable, Pausable { using SafeERC20 for IERC20; /// @dev TRLabCore contract address ITRLabCore public trLabCore; /// @dev TRLab wallet address address public trlabWallet; /// @dev artwork id => ArtworkOnSaleInfo mapping(uint256 => LibArtwork.ArtworkOnSaleInfo) public artworkOnSaleInfos; /// @dev buyer => (artworkId => purchaseCount) mapping(address => mapping(uint256 => uint256)) public buyerRecords; /// @dev Require that the caller must be an EOA account if not whitelisted. modifier onlyEOA() { require(msg.sender == tx.origin, "not eoa"); _; } /// @dev init contract with TRLabCore contract address and TRLab wallet address constructor(address _trlabCore, address _trlabWallet) { setTRLabCore(_trlabCore); setTRLabWallet(_trlabWallet); } /// @dev add approved signer for signing purchase signature /// @param account address the singer account function addSigner(address account) public override onlyOwner { _addSigner(account); } /// @dev remove signer for signing purchase signature /// @param account address the singer account function removeSigner(address account) public onlyOwner { _removeSigner(account); } /// @dev Sets the trlab nft core contract address. /// @param _trlabCore address the address of the trlab core contract. function setTRLabCore(address _trlabCore) public override onlyOwner { trLabCore = ITRLabCore(_trlabCore); } /// @dev Sets the trlab wallet to receive NFT sale income. /// @param _trlabWallet address the address of the trlab wallet. function setTRLabWallet(address _trlabWallet) public override onlyOwner { trlabWallet = _trlabWallet; } /// @dev setup an artwork for sale /// @param _artworkId uint256 the address of the trlab wallet. /// @param _onSaleInfo the ArtworkOnSaleInfo object. function putOnSale(uint256 _artworkId, LibArtwork.ArtworkOnSaleInfo memory _onSaleInfo) public override onlyOwner { require(_onSaleInfo.endTime >= _onSaleInfo.startTime, "entTime should >= startTime!"); require(_onSaleInfo.takeTokenAddress != address(0), "takeTokenAddress cannot be 0x0"); artworkOnSaleInfos[_artworkId] = _onSaleInfo; emit ArtworkOnSale(_artworkId, _onSaleInfo); } /// @notice buy one NFT token of specific artwork. Needs a proper signature of allowed signer to verify purchase. /// @param _artworkId uint256 the id of the artwork to buy. /// @param v uint8 v of the signature /// @param r bytes32 r of the signature /// @param s bytes32 s of the signature function buyNow( uint256 _artworkId, uint8 v, bytes32 r, bytes32 s ) external override onlyEOA nonReentrant whenNotPaused { uint256 chainId = getChainID(); bytes32 messageHash = keccak256(abi.encode(chainId, address(this), _msgSender(), _artworkId)); require(_verifySignedMessage(messageHash, v, r, s), "signer should sign buyer address and artwork id!"); LibArtwork.ArtworkOnSaleInfo memory onSaleInfo = artworkOnSaleInfos[_artworkId]; _checkOnSaleStatus(onSaleInfo); uint256 alreadyBought = buyerRecords[_msgSender()][_artworkId]; require(alreadyBought < onSaleInfo.purchaseLimit, "you have reached purchase limit!"); buyerRecords[_msgSender()][_artworkId] = alreadyBought + 1; _transferOnSaleToken(onSaleInfo); trLabCore.releaseArtworkForReceiver(_msgSender(), _artworkId, 1); } function getChainID() public view returns (uint256) { uint256 id; assembly { id := chainid() } return id; } /// @dev check on-sale if empty, and if both start and end time is valid function _checkOnSaleStatus(LibArtwork.ArtworkOnSaleInfo memory onSaleInfo) internal view { require(onSaleInfo.takeTokenAddress != address(0), "artwork not on sale!"); require(onSaleInfo.startTime <= block.timestamp, "artwork sale not started yet!"); require(onSaleInfo.endTime >= block.timestamp, "artwork sale is already ended!"); } /// @dev transfer sale income to trlab wallet account function _transferOnSaleToken(LibArtwork.ArtworkOnSaleInfo memory onSaleInfo) internal { IERC20(onSaleInfo.takeTokenAddress).safeTransferFrom(_msgSender(), trlabWallet, onSaleInfo.takeAmount); } }
// SPDX-License-Identifier: MIT 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' // solhint-disable-next-line max-line-length 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 // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT 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 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor () { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../lib/LibArtwork.sol"; /// @title Interface of TRLab NFT core contract /// @author Joe /// @notice This is the interface of TRLab NFT core contract interface ITRLabCore { /// @notice This event emits when a new NFT token has been minted. /// @param id uint256 the id of the minted NFT token. /// @param owner address the address of the token owner. /// @param artworkId uint256 the id of the artwork of this token. /// @param printEdition uint32 the print edition of this token. /// @param tokenURI string the metadata ipfs URI. event ArtworkReleaseCreated( uint256 indexed id, address indexed owner, uint256 indexed artworkId, uint32 printEdition, string tokenURI ); /// @notice This event emits when a batch of NFT tokens has been minted. /// @param artworkId uint256 the id of the artwork of this token. /// @param printEdition uint32 the new print edition of this artwork. event ArtworkPrintIndexUpdated(uint256 indexed artworkId, uint32 indexed printEdition); event NewArtworkStore(address indexed storeAddress); /// @notice This event emits when an artwork has been burned. /// @param artworkId uint256 the id of the burned artwork. event ArtworkBurned(uint256 indexed artworkId); /// @dev sets the artwork store address. /// @param _storeAddress address the address of the artwork store contract. function setStoreAddress(address _storeAddress) external; /// @dev set the royalty of a token. Can only be called by owner at emergency /// @param _tokenId uint256 the id of the token /// @param _receiver address the receiver address of the royalty /// @param _bps uint256 the royalty percentage in bps function setTokenRoyalty( uint256 _tokenId, address _receiver, uint256 _bps ) external; /// @dev set the royalty of tokens. Can only be called by owner at emergency /// @param _tokenIds uint256[] the ids of the token /// @param _receiver address the receiver address of the royalty /// @param _bps uint256 the royalty percentage in bps function setTokensRoyalty( uint256[] calldata _tokenIds, address _receiver, uint256 _bps ) external; /// @notice Retrieves the artwork object by id /// @param _artworkId uint256 the address of the creator /// @return artwork the artwork object function getArtwork(uint256 _artworkId) external view returns (LibArtwork.Artwork memory artwork); /// @notice Creates a new artwork object, artwork creator is _msgSender() /// @param _totalSupply uint32 the total allowable prints for this artwork /// @param _metadataPath string the ipfs metadata path /// @param _royaltyReceiver address the royalty receiver /// @param _royaltyBps uint256 the royalty percentage in bps function createArtwork( uint32 _totalSupply, string calldata _metadataPath, address _royaltyReceiver, uint256 _royaltyBps ) external; /// @notice Creates a new artwork object and mints it's first release token. /// @dev No creations of any kind are allowed when the contract is paused. /// @param _totalSupply uint32 the total allowable prints for this artwork /// @param _metadataPath string the ipfs metadata path /// @param _numReleases uint32 the number of tokens to be minted /// @param _royaltyReceiver address the royalty receiver /// @param _royaltyBps uint256 the royalty percentage in bps function createArtworkAndReleases( uint32 _totalSupply, string calldata _metadataPath, uint32 _numReleases, address _royaltyReceiver, uint256 _royaltyBps ) external; /// @notice mints tokens of artwork. /// @dev No creations of any kind are allowed when the contract is paused. /// @param _artworkId uint256 the id of the artwork /// @param _numReleases uint32 the number of tokens to be minted function releaseArtwork(uint256 _artworkId, uint32 _numReleases) external; /// @notice mints tokens of artwork in behave of receiver. Designed for buy-now contract. /// @dev No creations of any kind are allowed when the contract is paused. /// @param _receiver address the owner of the new nft token. /// @param _artworkId uint256 the id of the artwork. /// @param _numReleases uint32 the number of tokens to be minted. function releaseArtworkForReceiver( address _receiver, uint256 _artworkId, uint32 _numReleases ) external; /// @notice get the next token id /// @return the last token id function getNextTokenId() external view returns (uint256); /// @dev getter function for approvedTokenCreators mapping. Check if caller is approved creator. /// @param caller address the address of caller to check. /// @return true if caller is approved creator, otherwise false. function approvedTokenCreators(address caller) external returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library LibArtwork { struct Artwork { address creator; uint32 printIndex; uint32 totalSupply; string metadataPath; address royaltyReceiver; uint256 royaltyBps; // royaltyBps is a value between 0 to 10000 } struct ArtworkRelease { // The unique edition number of this artwork release uint32 printEdition; // Reference ID to the artwork metadata uint256 artworkId; } struct ArtworkOnSaleInfo { address takeTokenAddress; // only accept erc20, should use WETH uint256 takeAmount; uint256 startTime; // timestamp in seconds uint256 endTime; uint256 purchaseLimit; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../lib/LibArtwork.sol"; import "./ITRLabCore.sol"; /// @title Interface for NFT buy-now in a fixed price. /// @author Joe /// @notice This is the interface for fixed price NFT buy-now. interface IBuyNow { /// @notice This event emits when a new artwork has been put on sale. /// @param artworkId uint256 the id of the on sale artwork. /// @param onSaleInfo the on sale object. event ArtworkOnSale(uint256 indexed artworkId, LibArtwork.ArtworkOnSaleInfo onSaleInfo); /// @dev Sets the trlab nft core contract address. /// @param _trlabCore address the address of the trlab core contract. function setTRLabCore(address _trlabCore) external; /// @dev Sets the trlab wallet to receive NFT sale income. /// @param _trlabWallet address the address of the trlab wallet. function setTRLabWallet(address _trlabWallet) external; /// @dev setup an artwork for sale /// @param _artworkId uint256 the address of the trlab wallet. /// @param _onSaleInfo the ArtworkOnSaleInfo object. function putOnSale(uint256 _artworkId, LibArtwork.ArtworkOnSaleInfo memory _onSaleInfo) external; /// @notice buy one NFT token of specific artwork. Needs a proper signature of allowed signer to verify purchase. /// @param _artworkId uint256 the id of the artwork to buy. /// @param v uint8 v of the signature /// @param r bytes32 r of the signature /// @param s bytes32 s of the signature function buyNow( uint256 _artworkId, uint8 v, bytes32 r, bytes32 s ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "../lib/LibRoles.sol"; abstract contract SignerRole is Context { using LibRoles for LibRoles.Role; event SignerAdded(address indexed account); event SignerRemoved(address indexed account); LibRoles.Role private _signers; constructor() { _addSigner(_msgSender()); } modifier onlySigner() { require(isSigner(_msgSender()), "SignerRole: caller does not have the Signer role"); _; } function isSigner(address account) public view returns (bool) { return _signers.has(account); } function addSigner(address account) public virtual onlySigner { _addSigner(account); } function renounceSigner() public { _removeSigner(_msgSender()); } function _verifySignedMessage( bytes32 messageHash, uint8 v, bytes32 r, bytes32 s ) internal view returns (bool) { address recoveredSigner = ECDSA.recover(ECDSA.toEthSignedMessageHash(messageHash), v, r, s); return isSigner(recoveredSigner); } function _addSigner(address account) internal { _signers.add(account); emit SignerAdded(account); } function _removeSigner(address account) internal { _signers.remove(account); emit SignerRemoved(account); } }
// SPDX-License-Identifier: MIT 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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { // Divide the signature in r, s and v variables bytes32 r; bytes32 s; uint8 v; // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. // solhint-disable-next-line no-inline-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } } else if (signature.length == 64) { // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. // solhint-disable-next-line no-inline-assembly assembly { let vs := mload(add(signature, 0x40)) r := mload(add(signature, 0x20)) s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } } else { revert("ECDSA: invalid signature length"); } return recover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value"); require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value"); // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); require(signer != address(0), "ECDSA: invalid signature"); return signer; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library LibRoles { struct Role { mapping(address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_trlabCore","type":"address"},{"internalType":"address","name":"_trlabWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"artworkId","type":"uint256"},{"components":[{"internalType":"address","name":"takeTokenAddress","type":"address"},{"internalType":"uint256","name":"takeAmount","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"purchaseLimit","type":"uint256"}],"indexed":false,"internalType":"struct LibArtwork.ArtworkOnSaleInfo","name":"onSaleInfo","type":"tuple"}],"name":"ArtworkOnSale","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"SignerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"SignerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"artworkOnSaleInfos","outputs":[{"internalType":"address","name":"takeTokenAddress","type":"address"},{"internalType":"uint256","name":"takeAmount","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"purchaseLimit","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_artworkId","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"buyNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"buyerRecords","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isSigner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_artworkId","type":"uint256"},{"components":[{"internalType":"address","name":"takeTokenAddress","type":"address"},{"internalType":"uint256","name":"takeAmount","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"purchaseLimit","type":"uint256"}],"internalType":"struct LibArtwork.ArtworkOnSaleInfo","name":"_onSaleInfo","type":"tuple"}],"name":"putOnSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_trlabCore","type":"address"}],"name":"setTRLabCore","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_trlabWallet","type":"address"}],"name":"setTRLabWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"trLabCore","outputs":[{"internalType":"contract ITRLabCore","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"trlabWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620017e4380380620017e4833981016040819052620000349162000304565b60016000556200004433620000b2565b600280546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506002805460ff60a01b191690556200009f8262000104565b620000aa8162000175565b50506200033b565b620000cd816001620001e260201b62000a0f1790919060201c565b6040516001600160a01b038216907f47d1c22a25bb3a5d4e481b9b1e6944c2eade3181a0a20b495ed61d35b5323f2490600090a250565b6002546001600160a01b03163314620001535760405162461bcd60e51b81526020600482018190526024820152600080516020620017c483398151915260448201526064015b60405180910390fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6002546001600160a01b03163314620001c05760405162461bcd60e51b81526020600482018190526024820152600080516020620017c483398151915260448201526064016200014a565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b620001ee828262000262565b156200023d5760405162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650060448201526064016200014a565b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620002c75760405162461bcd60e51b815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f206164647265604482015261737360f01b60648201526084016200014a565b506001600160a01b03166000908152602091909152604090205460ff1690565b80516001600160a01b0381168114620002ff57600080fd5b919050565b6000806040838503121562000317578182fd5b6200032283620002e7565b91506200033260208401620002e7565b90509250929050565b611479806200034b6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063845a70d6116100a2578063cda149c511610071578063cda149c514610279578063e36533f5146102a4578063e5c8b03d146102b7578063eb12d61e146102bf578063f2fde38b146102d25761010b565b8063845a70d61461022f5780638da5cb5b14610242578063a432630314610253578063c0fe01b3146102665761010b565b80635c975abb116100de5780635c975abb146101de578063715018a614610201578063786a016a146102095780637df73e271461021c5761010b565b80630e316ab71461011057806315e4ea8c14610125578063431eb528146101a3578063564b81ef146101ce575b600080fd5b61012361011e366004611217565b6102e5565b005b61016c61013336600461127a565b600560205260009081526040902080546001820154600283015460038401546004909401546001600160a01b0390931693919290919085565b604080516001600160a01b0390961686526020860194909452928401919091526060830152608082015260a0015b60405180910390f35b6004546101b6906001600160a01b031681565b6040516001600160a01b03909116815260200161019a565b465b60405190815260200161019a565b6101f1600254600160a01b900460ff1690565b604051901515815260200161019a565b610123610324565b610123610217366004611217565b610398565b6101f161022a366004611217565b6103e4565b6003546101b6906001600160a01b031681565b6002546001600160a01b03166101b6565b610123610261366004611217565b6103f9565b61012361027436600461132e565b610445565b6101d0610287366004611231565b600660209081526000928352604080842090915290825290205481565b6101236102b2366004611292565b610755565b6101236108e6565b6101236102cd366004611217565b6108f1565b6101236102e0366004611217565b610924565b6002546001600160a01b031633146103185760405162461bcd60e51b815260040161030f906113be565b60405180910390fd5b61032181610a8b565b50565b6002546001600160a01b0316331461034e5760405162461bcd60e51b815260040161030f906113be565b6002546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600280546001600160a01b0319169055565b6002546001600160a01b031633146103c25760405162461bcd60e51b815260040161030f906113be565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b60006103f1600183610acd565b90505b919050565b6002546001600160a01b031633146104235760405162461bcd60e51b815260040161030f906113be565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b33321461047e5760405162461bcd60e51b81526020600482015260076024820152666e6f7420656f6160c81b604482015260640161030f565b600260005414156104d15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161030f565b60026000556104e9600254600160a01b900460ff1690565b156105295760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161030f565b60408051466020808301829052308385015233606084015260808084018990528451808503909101815260a09093019093528151919092012061056e81868686610b50565b6105d35760405162461bcd60e51b815260206004820152603060248201527f7369676e65722073686f756c64207369676e206275796572206164647265737360448201526f20616e6420617274776f726b2069642160801b606482015260840161030f565b600086815260056020908152604091829020825160a08101845281546001600160a01b0316815260018201549281019290925260028101549282019290925260038201546060820152600490910154608082015261063081610bca565b3360009081526006602090815260408083208a84529091529020546080820151811061069e5760405162461bcd60e51b815260206004820181905260248201527f796f7520686176652072656163686564207075726368617365206c696d697421604482015260640161030f565b6106a98160016113f3565b3360009081526006602090815260408083208c84529091529020556106cd82610cc0565b6003546001600160a01b031663bb8455b2336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018b905260016044820152606401600060405180830381600087803b15801561072e57600080fd5b505af1158015610742573d6000803e3d6000fd5b5050600160005550505050505050505050565b6002546001600160a01b0316331461077f5760405162461bcd60e51b815260040161030f906113be565b8060400151816060015110156107d75760405162461bcd60e51b815260206004820152601c60248201527f656e7454696d652073686f756c64203e3d20737461727454696d652100000000604482015260640161030f565b80516001600160a01b031661082e5760405162461bcd60e51b815260206004820152601e60248201527f74616b65546f6b656e416464726573732063616e6e6f74206265203078300000604482015260640161030f565b600082815260056020908152604091829020835181546001600160a01b0319166001600160a01b03909116908117825584830180516001840155858501805160028501556060808801805160038701556080808a0180516004909801979097558851958652935196850196909652905195830195909552925193810193909352519082015282907f4bc4fe3b84dae847abee1bc4f287a94b50acd92da02f19046b1df141544adee09060a00160405180910390a25050565b6108ef33610a8b565b565b6002546001600160a01b0316331461091b5760405162461bcd60e51b815260040161030f906113be565b61032181610ce2565b6002546001600160a01b0316331461094e5760405162461bcd60e51b815260040161030f906113be565b6001600160a01b0381166109b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161030f565b6002546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600280546001600160a01b0319166001600160a01b0392909216919091179055565b610a198282610acd565b15610a665760405162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015260640161030f565b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b610a96600182610d24565b6040516001600160a01b038216907f3525e22824a8a7df2c9a6029941c824cf95b6447f1e13d5128fd3826d35afe8b90600090a250565b60006001600160a01b038216610b305760405162461bcd60e51b815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f206164647265604482015261737360f01b606482015260840161030f565b506001600160a01b03166000908152602091909152604090205460ff1690565b600080610bb5610bad876040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b868686610da6565b9050610bc0816103e4565b9695505050505050565b80516001600160a01b0316610c185760405162461bcd60e51b8152602060048201526014602482015273617274776f726b206e6f74206f6e2073616c652160601b604482015260640161030f565b4281604001511115610c6c5760405162461bcd60e51b815260206004820152601d60248201527f617274776f726b2073616c65206e6f7420737461727465642079657421000000604482015260640161030f565b42816060015110156103215760405162461bcd60e51b815260206004820152601e60248201527f617274776f726b2073616c6520697320616c726561647920656e646564210000604482015260640161030f565b61032133600454602084015184516001600160a01b0390811693921690610f4f565b610ced600182610a0f565b6040516001600160a01b038216907f47d1c22a25bb3a5d4e481b9b1e6944c2eade3181a0a20b495ed61d35b5323f2490600090a250565b610d2e8282610acd565b610d845760405162461bcd60e51b815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6044820152606560f81b606482015260840161030f565b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115610e235760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161030f565b8360ff16601b1480610e3857508360ff16601c145b610e8f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161030f565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015610ee3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610f465760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161030f565b95945050505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610fa9908590610faf565b50505050565b6000611004826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166110869092919063ffffffff16565b8051909150156110815780806020019051810190611022919061125a565b6110815760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161030f565b505050565b6060611095848460008561109f565b90505b9392505050565b6060824710156111005760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161030f565b843b61114e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161030f565b600080866001600160a01b0316858760405161116a919061136f565b60006040518083038185875af1925050503d80600081146111a7576040519150601f19603f3d011682016040523d82523d6000602084013e6111ac565b606091505b50915091506111bc8282866111c7565b979650505050505050565b606083156111d6575081611098565b8251156111e65782518084602001fd5b8160405162461bcd60e51b815260040161030f919061138b565b80356001600160a01b03811681146103f457600080fd5b600060208284031215611228578081fd5b61109882611200565b60008060408385031215611243578081fd5b61124c83611200565b946020939093013593505050565b60006020828403121561126b578081fd5b81518015158114611098578182fd5b60006020828403121561128b578081fd5b5035919050565b60008082840360c08112156112a5578283fd5b8335925060a0601f19820112156112ba578182fd5b5060405160a0810181811067ffffffffffffffff821117156112ea57634e487b7160e01b83526041600452602483fd5b6040526112f960208501611200565b815260408401356020820152606084013560408201526080840135606082015260a08401356080820152809150509250929050565b60008060008060808587031215611343578182fd5b84359350602085013560ff8116811461135a578283fd5b93969395505050506040820135916060013590565b60008251611381818460208701611417565b9190910192915050565b60006020825282518060208401526113aa816040850160208701611417565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561141257634e487b7160e01b81526011600452602481fd5b500190565b60005b8381101561143257818101518382015260200161141a565b83811115610fa9575050600091015256fea2646970667358221220cf3e74fabacf8e25ddee1ab1c4f3ca412e4edaf3001c764572735d1cc89f56a264736f6c634300080200334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000d00de8ce9ea7a0e5573cc6bc6f97cb0c293cb16e000000000000000000000000b3b03b9831a42733d06a388bab243022e065db0b
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063845a70d6116100a2578063cda149c511610071578063cda149c514610279578063e36533f5146102a4578063e5c8b03d146102b7578063eb12d61e146102bf578063f2fde38b146102d25761010b565b8063845a70d61461022f5780638da5cb5b14610242578063a432630314610253578063c0fe01b3146102665761010b565b80635c975abb116100de5780635c975abb146101de578063715018a614610201578063786a016a146102095780637df73e271461021c5761010b565b80630e316ab71461011057806315e4ea8c14610125578063431eb528146101a3578063564b81ef146101ce575b600080fd5b61012361011e366004611217565b6102e5565b005b61016c61013336600461127a565b600560205260009081526040902080546001820154600283015460038401546004909401546001600160a01b0390931693919290919085565b604080516001600160a01b0390961686526020860194909452928401919091526060830152608082015260a0015b60405180910390f35b6004546101b6906001600160a01b031681565b6040516001600160a01b03909116815260200161019a565b465b60405190815260200161019a565b6101f1600254600160a01b900460ff1690565b604051901515815260200161019a565b610123610324565b610123610217366004611217565b610398565b6101f161022a366004611217565b6103e4565b6003546101b6906001600160a01b031681565b6002546001600160a01b03166101b6565b610123610261366004611217565b6103f9565b61012361027436600461132e565b610445565b6101d0610287366004611231565b600660209081526000928352604080842090915290825290205481565b6101236102b2366004611292565b610755565b6101236108e6565b6101236102cd366004611217565b6108f1565b6101236102e0366004611217565b610924565b6002546001600160a01b031633146103185760405162461bcd60e51b815260040161030f906113be565b60405180910390fd5b61032181610a8b565b50565b6002546001600160a01b0316331461034e5760405162461bcd60e51b815260040161030f906113be565b6002546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600280546001600160a01b0319169055565b6002546001600160a01b031633146103c25760405162461bcd60e51b815260040161030f906113be565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b60006103f1600183610acd565b90505b919050565b6002546001600160a01b031633146104235760405162461bcd60e51b815260040161030f906113be565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b33321461047e5760405162461bcd60e51b81526020600482015260076024820152666e6f7420656f6160c81b604482015260640161030f565b600260005414156104d15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161030f565b60026000556104e9600254600160a01b900460ff1690565b156105295760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640161030f565b60408051466020808301829052308385015233606084015260808084018990528451808503909101815260a09093019093528151919092012061056e81868686610b50565b6105d35760405162461bcd60e51b815260206004820152603060248201527f7369676e65722073686f756c64207369676e206275796572206164647265737360448201526f20616e6420617274776f726b2069642160801b606482015260840161030f565b600086815260056020908152604091829020825160a08101845281546001600160a01b0316815260018201549281019290925260028101549282019290925260038201546060820152600490910154608082015261063081610bca565b3360009081526006602090815260408083208a84529091529020546080820151811061069e5760405162461bcd60e51b815260206004820181905260248201527f796f7520686176652072656163686564207075726368617365206c696d697421604482015260640161030f565b6106a98160016113f3565b3360009081526006602090815260408083208c84529091529020556106cd82610cc0565b6003546001600160a01b031663bb8455b2336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018b905260016044820152606401600060405180830381600087803b15801561072e57600080fd5b505af1158015610742573d6000803e3d6000fd5b5050600160005550505050505050505050565b6002546001600160a01b0316331461077f5760405162461bcd60e51b815260040161030f906113be565b8060400151816060015110156107d75760405162461bcd60e51b815260206004820152601c60248201527f656e7454696d652073686f756c64203e3d20737461727454696d652100000000604482015260640161030f565b80516001600160a01b031661082e5760405162461bcd60e51b815260206004820152601e60248201527f74616b65546f6b656e416464726573732063616e6e6f74206265203078300000604482015260640161030f565b600082815260056020908152604091829020835181546001600160a01b0319166001600160a01b03909116908117825584830180516001840155858501805160028501556060808801805160038701556080808a0180516004909801979097558851958652935196850196909652905195830195909552925193810193909352519082015282907f4bc4fe3b84dae847abee1bc4f287a94b50acd92da02f19046b1df141544adee09060a00160405180910390a25050565b6108ef33610a8b565b565b6002546001600160a01b0316331461091b5760405162461bcd60e51b815260040161030f906113be565b61032181610ce2565b6002546001600160a01b0316331461094e5760405162461bcd60e51b815260040161030f906113be565b6001600160a01b0381166109b35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161030f565b6002546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600280546001600160a01b0319166001600160a01b0392909216919091179055565b610a198282610acd565b15610a665760405162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015260640161030f565b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b610a96600182610d24565b6040516001600160a01b038216907f3525e22824a8a7df2c9a6029941c824cf95b6447f1e13d5128fd3826d35afe8b90600090a250565b60006001600160a01b038216610b305760405162461bcd60e51b815260206004820152602260248201527f526f6c65733a206163636f756e7420697320746865207a65726f206164647265604482015261737360f01b606482015260840161030f565b506001600160a01b03166000908152602091909152604090205460ff1690565b600080610bb5610bad876040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b868686610da6565b9050610bc0816103e4565b9695505050505050565b80516001600160a01b0316610c185760405162461bcd60e51b8152602060048201526014602482015273617274776f726b206e6f74206f6e2073616c652160601b604482015260640161030f565b4281604001511115610c6c5760405162461bcd60e51b815260206004820152601d60248201527f617274776f726b2073616c65206e6f7420737461727465642079657421000000604482015260640161030f565b42816060015110156103215760405162461bcd60e51b815260206004820152601e60248201527f617274776f726b2073616c6520697320616c726561647920656e646564210000604482015260640161030f565b61032133600454602084015184516001600160a01b0390811693921690610f4f565b610ced600182610a0f565b6040516001600160a01b038216907f47d1c22a25bb3a5d4e481b9b1e6944c2eade3181a0a20b495ed61d35b5323f2490600090a250565b610d2e8282610acd565b610d845760405162461bcd60e51b815260206004820152602160248201527f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6044820152606560f81b606482015260840161030f565b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0821115610e235760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161030f565b8360ff16601b1480610e3857508360ff16601c145b610e8f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161030f565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015610ee3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610f465760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161030f565b95945050505050565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610fa9908590610faf565b50505050565b6000611004826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166110869092919063ffffffff16565b8051909150156110815780806020019051810190611022919061125a565b6110815760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161030f565b505050565b6060611095848460008561109f565b90505b9392505050565b6060824710156111005760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b606482015260840161030f565b843b61114e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161030f565b600080866001600160a01b0316858760405161116a919061136f565b60006040518083038185875af1925050503d80600081146111a7576040519150601f19603f3d011682016040523d82523d6000602084013e6111ac565b606091505b50915091506111bc8282866111c7565b979650505050505050565b606083156111d6575081611098565b8251156111e65782518084602001fd5b8160405162461bcd60e51b815260040161030f919061138b565b80356001600160a01b03811681146103f457600080fd5b600060208284031215611228578081fd5b61109882611200565b60008060408385031215611243578081fd5b61124c83611200565b946020939093013593505050565b60006020828403121561126b578081fd5b81518015158114611098578182fd5b60006020828403121561128b578081fd5b5035919050565b60008082840360c08112156112a5578283fd5b8335925060a0601f19820112156112ba578182fd5b5060405160a0810181811067ffffffffffffffff821117156112ea57634e487b7160e01b83526041600452602483fd5b6040526112f960208501611200565b815260408401356020820152606084013560408201526080840135606082015260a08401356080820152809150509250929050565b60008060008060808587031215611343578182fd5b84359350602085013560ff8116811461135a578283fd5b93969395505050506040820135916060013590565b60008251611381818460208701611417565b9190910192915050565b60006020825282518060208401526113aa816040850160208701611417565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561141257634e487b7160e01b81526011600452602481fd5b500190565b60005b8381101561143257818101518382015260200161141a565b83811115610fa9575050600091015256fea2646970667358221220cf3e74fabacf8e25ddee1ab1c4f3ca412e4edaf3001c764572735d1cc89f56a264736f6c63430008020033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d00de8ce9ea7a0e5573cc6bc6f97cb0c293cb16e000000000000000000000000b3b03b9831a42733d06a388bab243022e065db0b
-----Decoded View---------------
Arg [0] : _trlabCore (address): 0xd00dE8ce9eA7A0E5573CC6bc6F97cb0c293CB16e
Arg [1] : _trlabWallet (address): 0xb3b03b9831A42733d06A388bab243022E065Db0b
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000d00de8ce9ea7a0e5573cc6bc6f97cb0c293cb16e
Arg [1] : 000000000000000000000000b3b03b9831a42733d06a388bab243022e065db0b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.