Transaction Hash:
Block:
21640308 at Jan-16-2025 11:23:11 PM +UTC
Transaction Fee:
0.000347093579290752 ETH
$0.87
Gas Used:
72,564 Gas / 4.783275168 Gwei
Emitted Events:
301 |
DigitalMediaCore.Approval( owner=[Sender] 0x2e307ceab1b4c5f4cac508e3b13c3dbfe86a3c81, approved=0x00000000...000000000, tokenId=14359 )
|
302 |
DigitalMediaCore.Transfer( from=[Sender] 0x2e307ceab1b4c5f4cac508e3b13c3dbfe86a3c81, to=[Receiver] SealedArtMarket, tokenId=14359 )
|
303 |
SealedArtMarket.AuctionCreated( owner=[Sender] 0x2e307ceab1b4c5f4cac508e3b13c3dbfe86a3c81, nftContract=DigitalMediaCore, auctionDuration=86400, auctionType=F5B2B20500000000000000000000000000000000000000000000000000000001, nftId=14359, reserve=100000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2cBe14b7...16C137F3C | |||||
0x2e307Cea...fe86a3c81 | (Phettaverse Editions: Deployer) |
0.136948174149846753 Eth
Nonce: 2302
|
0.136601080570556001 Eth
Nonce: 2303
| 0.000347093579290752 | |
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 14.409727796627472462 Eth | 14.409803110803072462 Eth | 0.0000753141756 | |
0xcd51b81A...2Afb27d45 |
Execution Trace
SealedArtMarket.createAuction( nftContract=0xcd51b81Ac1572707B7f3051aa97A31e2Afb27d45, auctionDuration=86400, auctionType=F5B2B20500000000000000000000000000000000000000000000000000000001, nftId=14359, reserve=100000000000000000 )

-
DigitalMediaCore.transferFrom( from=0x2e307Ceab1b4c5F4cAc508E3B13C3dBfe86a3c81, to=0x2cBe14b7F60Fbe6A323cBA7Db56f2D916C137F3C, tokenId=14359 )
createAuction[SealedArtMarket (ln:508)]
transferFrom[SealedArtMarket (ln:515)]
_createAuction[SealedArtMarket (ln:516)]
calculateAuctionHash[SealedArtMarket (ln:503)]
AuctionCreated[SealedArtMarket (ln:506)]
File 1 of 2: SealedArtMarket
File 2 of 2: DigitalMediaCore
// 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); } } // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/BitMaps.sol) pragma solidity ^0.8.0; /** * @dev Library for managing uint256 to bool mapping in a compact and efficient way, providing the keys are sequential. * Largely inspired by Uniswap's https://github.com/Uniswap/merkle-distributor/blob/master/contracts/MerkleDistributor.sol[merkle-distributor]. */ library BitMaps { struct BitMap { mapping(uint256 => uint256) _data; } /** * @dev Returns whether the bit at `index` is set. */ function get(BitMap storage bitmap, uint256 index) internal view returns (bool) { uint256 bucket = index >> 8; uint256 mask = 1 << (index & 0xff); return bitmap._data[bucket] & mask != 0; } /** * @dev Sets the bit at `index` to the boolean `value`. */ function setTo(BitMap storage bitmap, uint256 index, bool value) internal { if (value) { set(bitmap, index); } else { unset(bitmap, index); } } /** * @dev Sets the bit at `index`. */ function set(BitMap storage bitmap, uint256 index) internal { uint256 bucket = index >> 8; uint256 mask = 1 << (index & 0xff); bitmap._data[bucket] |= mask; } /** * @dev Unsets the bit at `index`. */ function unset(BitMap storage bitmap, uint256 index) internal { uint256 bucket = index >> 8; uint256 mask = 1 << (index & 0xff); bitmap._data[bucket] &= ~mask; } } // SPDX-License-Identifier: AGPL-3.0 pragma solidity ^0.8.4; abstract contract EIP712 { /// ----------------------------------------------------------------------- /// Structs /// ----------------------------------------------------------------------- /// @param v Part of the ECDSA signature /// @param r Part of the ECDSA signature /// @param s Part of the ECDSA signature struct WithdrawalPacket { uint8 v; bytes32 r; bytes32 s; uint256 deadline; uint256 amount; uint256 nonce; address account; } /// ----------------------------------------------------------------------- /// Immutable parameters /// ----------------------------------------------------------------------- /// @notice The chain ID used by EIP-712 uint256 internal immutable INITIAL_CHAIN_ID; /// @notice The domain separator used by EIP-712 bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR; /// ----------------------------------------------------------------------- /// Constructor /// ----------------------------------------------------------------------- constructor() { INITIAL_CHAIN_ID = block.chainid; INITIAL_DOMAIN_SEPARATOR = _computeDomainSeparator(); } /// ----------------------------------------------------------------------- /// Packet verification /// ----------------------------------------------------------------------- function _verifySig(bytes memory data, uint8 v, bytes32 r, bytes32 s) internal virtual returns (address) { // verify signature address recoveredAddress = ecrecover(keccak256(abi.encodePacked("\\x19\\x01", DOMAIN_SEPARATOR(), keccak256(data))), v, r, s); return recoveredAddress; } /// @notice Verifies whether a packet is valid and returns the result. /// @dev The deadline, request, and signature are verified. /// @param packet The packet provided by the offchain data provider function _verifyWithdrawal(WithdrawalPacket calldata packet) internal virtual returns (address) { // verify deadline require(block.timestamp < packet.deadline, ">deadline"); // verify signature address recoveredAddress = _verifySig( abi.encode( keccak256("VerifyWithdrawal(uint256 deadline,uint256 amount,uint256 nonce,address account)"), packet.deadline, packet.amount, packet.nonce, packet.account ), packet.v, packet.r, packet.s ); return recoveredAddress; // Invariant: sequencer != address(0), we maintain this every time sequencer is set } struct Bid { uint8 v; bytes32 r; bytes32 s; bytes32 auctionId; uint256 maxAmount; } function _verifyBid(Bid calldata packet) internal virtual returns (address) { address recoveredAddress = _verifySig( abi.encode(keccak256("Bid(bytes32 auctionId,uint256 maxAmount)"), packet.auctionId, packet.maxAmount), packet.v, packet.r, packet.s ); require(recoveredAddress != address(0), "sig"); return recoveredAddress; } struct BidWinner { uint8 v; bytes32 r; bytes32 s; bytes32 auctionId; uint256 amount; address winner; } function _verifyBidWinner(BidWinner calldata packet) internal virtual returns (address) { return _verifySig( abi.encode( keccak256("BidWinner(bytes32 auctionId,uint256 amount,address winner)"), packet.auctionId, packet.amount, packet.winner ), packet.v, packet.r, packet.s ); } struct CancelAuction { uint8 v; bytes32 r; bytes32 s; bytes32 auctionId; uint256 deadline; } function _verifyCancelAuction(CancelAuction calldata packet) internal virtual returns (address) { require(block.timestamp <= packet.deadline, "deadline"); return _verifySig( abi.encode( keccak256("CancelAuction(bytes32 auctionId,uint256 deadline)"), packet.auctionId, packet.deadline ), packet.v, packet.r, packet.s ); } struct Offer { uint8 v; bytes32 r; bytes32 s; address nftContract; uint256 nftId; uint256 amount; uint256 deadline; uint256 counter; uint256 nonce; } function _verifyBuyOffer(Offer calldata packet) internal virtual returns (address) { return _verifySig( abi.encode( keccak256( "BuyOffer(address nftContract,uint256 nftId,uint256 amount,uint256 deadline,uint256 counter,uint256 nonce)" ), packet.nftContract, packet.nftId, packet.amount, packet.deadline, packet.counter, packet.nonce ), packet.v, packet.r, packet.s ); } function _verifySellOffer(Offer calldata packet) internal virtual returns (address) { return _verifySig( abi.encode( keccak256( "SellOffer(address nftContract,uint256 nftId,uint256 amount,uint256 deadline,uint256 counter,uint256 nonce)" ), packet.nftContract, packet.nftId, packet.amount, packet.deadline, packet.counter, packet.nonce ), packet.v, packet.r, packet.s ); } struct OfferAttestation { uint8 v; bytes32 r; bytes32 s; bytes32 auctionId; uint256 amount; address buyer; address seller; uint256 deadline; } function _verifyOfferAttestation(OfferAttestation calldata packet) internal virtual returns (address) { return _verifySig( abi.encode( keccak256( "OfferAttestation(bytes32 auctionId,uint256 amount,address buyer,address seller,uint256 deadline)" ), packet.auctionId, packet.amount, packet.buyer, packet.seller, packet.deadline ), packet.v, packet.r, packet.s ); } /// ----------------------------------------------------------------------- /// EIP-712 compliance /// ----------------------------------------------------------------------- /// @notice The domain separator used by EIP-712 function DOMAIN_SEPARATOR() public view virtual returns (bytes32) { return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : _computeDomainSeparator(); } /// @notice Computes the domain separator used by EIP-712 function _computeDomainSeparator() internal view virtual returns (bytes32) { return keccak256( abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256("SealedArtMarket"), keccak256("1"), block.chainid, address(this) ) ); } } pragma solidity ^0.8.7; import "./EIP712.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./SealedFundingFactory.sol"; import {BitMaps} from "@openzeppelin/contracts/utils/structs/BitMaps.sol"; interface IERC721 { function ownerOf(uint256 _tokenId) external view returns (address); function transferFrom(address _from, address _to, uint256 _tokenId) external; } interface RoyaltyEngine { function getRoyalty(address tokenAddress, uint256 tokenId, uint256 value) external returns (address payable[] memory recipients, uint256[] memory amounts); } contract SealedArtMarket is EIP712, Ownable { using BitMaps for BitMaps.BitMap; event Transfer(address indexed from, address indexed to, uint256 value); mapping(address => uint256) private _balances; string public constant name = "Sealed ETH"; string public constant symbol = "SETH"; uint8 public constant decimals = 18; function totalSupply() public view returns (uint256) { return address(this).balance; } // sequencer and settleSequencer are separated as an extra security measure against key leakage through side attacks // If a side channel attack is possible that requires multiple signatures to be made, settleSequencer will be more protected // against it because each signature will require an onchain action, which will make the attack extremely expensive // It also allows us to use different security systems for the two keys, since settleSequencer is much more sensitive address public sequencer; // Invariant: always different than address(0) address public settleSequencer; // Invariant: always different than address(0) address payable public treasury; SealedFundingFactory public immutable sealedFundingFactory; uint256 internal constant MAX_PROTOCOL_FEE = 0.1e18; // 10% uint256 public feeMultiplier; uint256 public forcedWithdrawDelay = 2 days; RoyaltyEngine public constant royaltyEngine = RoyaltyEngine(0xBc40d21999b4BF120d330Ee3a2DE415287f626C9); enum AuctionState { NONE, // 0 -> doesnt exist, default state CREATED, CLOSED } mapping(bytes32 => AuctionState) public auctionState; mapping(address => mapping(uint256 => mapping(uint256 => uint256))) public pendingWithdrawals; mapping(bytes32 => uint256) public pendingAuctionCancels; mapping(address => bool) public guardians; BitMaps.BitMap private usedNonces; mapping(address => BitMaps.BitMap) private usedOrderNonces; mapping(address => uint256) public accountCounter; function balanceOf(address account) public view returns (uint256) { return _balances[account]; } constructor(address _sequencer, address payable _treasury, address _settleSequencer) { require(_sequencer != address(0) && _settleSequencer != address(0), "0x0 sequencer not allowed"); sequencer = _sequencer; treasury = _treasury; settleSequencer = _settleSequencer; sealedFundingFactory = new SealedFundingFactory(address(this)); } event SequencerChanged(address newSequencer, address newSettleSequencer); function changeSequencer(address newSequencer, address newSettleSequencer) external onlyOwner { require(newSequencer != address(0) && newSettleSequencer != address(0), "0x0 sequencer not allowed"); sequencer = newSequencer; settleSequencer = newSettleSequencer; emit SequencerChanged(newSequencer, newSettleSequencer); } event ForcedWithdrawDelayChanged(uint256 newDelay); function changeForcedWithdrawDelay(uint256 newDelay) external onlyOwner { require(newDelay < 10 days, "<10 days"); forcedWithdrawDelay = newDelay; emit ForcedWithdrawDelayChanged(newDelay); } event TreasuryChanged(address newTreasury); function changeTreasury(address payable newTreasury) external onlyOwner { treasury = newTreasury; emit TreasuryChanged(newTreasury); } event GuardianSet(address guardian, bool value); function setGuardian(address guardian, bool value) external onlyOwner { guardians[guardian] = value; emit GuardianSet(guardian, value); } event SequencerDisabled(address guardian); function emergencyDisableSequencer() external { require(guardians[msg.sender] == true, "not guardian"); // Maintain the invariant that sequencers are not 0x0 sequencer = address(0x000000000000000000000000000000000000dEaD); settleSequencer = address(0x000000000000000000000000000000000000dEaD); emit SequencerDisabled(msg.sender); } event FeeChanged(uint256 newFeeMultiplier); function changeFee(uint256 newFeeMultiplier) external onlyOwner { require(newFeeMultiplier <= MAX_PROTOCOL_FEE, "fee too high"); feeMultiplier = newFeeMultiplier; emit FeeChanged(newFeeMultiplier); } function deposit(address receiver) public payable { _balances[receiver] += msg.value; emit Transfer(address(0), receiver, msg.value); } function _withdraw(uint256 amount) internal { _balances[msg.sender] -= amount; (bool success,) = payable(msg.sender).call{value: amount}(""); require(success); emit Transfer(msg.sender, address(0), amount); } event WithdrawNonceUsed(uint256 nonce); function withdraw(WithdrawalPacket calldata packet) public { require(_verifyWithdrawal(packet) == sequencer, "!sequencer"); require(nonceState(packet.nonce) == false, "replayed"); usedNonces.set(packet.nonce); require(packet.account == msg.sender, "not sender"); _withdraw(packet.amount); emit WithdrawNonceUsed(packet.nonce); } event StartWithdrawal(address owner, uint256 timestamp, uint256 nonce, uint256 amount); function startWithdrawal(uint256 amount, uint256 nonce) external { pendingWithdrawals[msg.sender][block.timestamp][nonce] = amount; emit StartWithdrawal(msg.sender, block.timestamp, nonce, amount); } event CancelWithdrawal(address owner, uint256 timestamp, uint256 nonce); function cancelPendingWithdrawal(uint256 timestamp, uint256 nonce) external { pendingWithdrawals[msg.sender][timestamp][nonce] = 0; emit CancelWithdrawal(msg.sender, timestamp, nonce); } event ExecuteDelayedWithdrawal(address owner, uint256 timestamp, uint256 nonce); function executePendingWithdrawal(uint256 timestamp, uint256 nonce) external { require(timestamp + forcedWithdrawDelay < block.timestamp, "too soon"); uint256 amount = pendingWithdrawals[msg.sender][timestamp][nonce]; pendingWithdrawals[msg.sender][timestamp][nonce] = 0; _withdraw(amount); emit ExecuteDelayedWithdrawal(msg.sender, timestamp, nonce); } function calculateAuctionHash( address owner, address nftContract, bytes32 auctionType, uint256 nftId, uint256 reserve ) public pure returns (bytes32) { return keccak256(abi.encode(owner, nftContract, auctionType, nftId, reserve)); } event AuctionCreated( address owner, address nftContract, uint256 auctionDuration, bytes32 auctionType, uint256 nftId, uint256 reserve ); function _createAuction( address nftContract, uint256 auctionDuration, bytes32 auctionType, uint256 nftId, uint256 reserve ) internal { bytes32 auctionId = calculateAuctionHash(msg.sender, nftContract, auctionType, nftId, reserve); require(auctionState[auctionId] == AuctionState.NONE, "repeated auction id"); // maybe this is not needed? auctionState[auctionId] = AuctionState.CREATED; emit AuctionCreated(msg.sender, nftContract, auctionDuration, auctionType, nftId, reserve); } function createAuction( address nftContract, uint256 auctionDuration, bytes32 auctionType, uint256 nftId, uint256 reserve ) external { IERC721(nftContract).transferFrom(msg.sender, address(this), nftId); _createAuction(nftContract, auctionDuration, auctionType, nftId, reserve); } event AuctionCancelled(bytes32 auctionId); function _cancelAuction( address nftContract, bytes32 auctionType, uint256 nftId, uint256 reserve, CancelAuction calldata cancelAuctionPacket ) internal { require(_verifyCancelAuction(cancelAuctionPacket) == sequencer, "!sequencer"); bytes32 auctionId = calculateAuctionHash(msg.sender, nftContract, auctionType, nftId, reserve); require(auctionState[auctionId] == AuctionState.CREATED, "bad state"); require(cancelAuctionPacket.auctionId == auctionId, "!auctionId"); auctionState[auctionId] = AuctionState.CLOSED; emit AuctionCancelled(auctionId); } function cancelAuction( address nftContract, bytes32 auctionType, uint256 nftId, uint256 reserve, CancelAuction calldata cancelAuctionPacket ) external { _cancelAuction(nftContract, auctionType, nftId, reserve, cancelAuctionPacket); IERC721(nftContract).transferFrom(address(this), msg.sender, nftId); } function changeAuction( address nftContract, bytes32 auctionType, uint256 nftId, uint256 reserve, uint256 newAuctionDuration, bytes32 newAuctionType, uint256 newReserve, CancelAuction calldata cancelAuctionPacket ) external { _cancelAuction(nftContract, auctionType, nftId, reserve, cancelAuctionPacket); _createAuction(nftContract, newAuctionDuration, newAuctionType, nftId, newReserve); } event StartDelayedAuctionCancel(bytes32 auctionId); function startCancelAuction( address nftContract, bytes32 auctionType, uint256 nftId, uint256 reserve ) external { bytes32 auctionId = calculateAuctionHash(msg.sender, nftContract, auctionType, nftId, reserve); require(auctionState[auctionId] == AuctionState.CREATED, "bad auction state"); pendingAuctionCancels[auctionId] = block.timestamp; emit StartDelayedAuctionCancel(auctionId); } event ExecuteDelayedAuctionCancel(bytes32 auctionId); function executeCancelAuction( address nftContract, bytes32 auctionType, uint256 nftId, uint256 reserve ) external { bytes32 auctionId = calculateAuctionHash(msg.sender, nftContract, auctionType, nftId, reserve); uint256 timestamp = pendingAuctionCancels[auctionId]; require(timestamp != 0 && (timestamp + forcedWithdrawDelay) < block.timestamp, "too soon"); require(auctionState[auctionId] == AuctionState.CREATED, "not open"); auctionState[auctionId] = AuctionState.CLOSED; pendingAuctionCancels[auctionId] = 0; emit AuctionCancelled(auctionId); IERC721(nftContract).transferFrom(address(this), msg.sender, nftId); emit ExecuteDelayedAuctionCancel(auctionId); } function _transferETH(address payable receiver, uint256 amount) internal { (bool success,) = receiver.call{value: amount, gas: 300_000}(""); if (success == false) { _balances[receiver] += amount; emit Transfer(address(0), receiver, amount); } } function _distributeSale(address nftContract, uint256 nftId, uint256 amount, address payable seller) internal { uint256 totalRoyalty = 0; try royaltyEngine.getRoyalty{gas: 500_000}(nftContract, nftId, amount) returns (address payable[] memory recipients, uint256[] memory amounts) { uint length = 5; // Use a maximum of 5 items to avoid attacks that blow up gas limit if(recipients.length < length){ length = recipients.length; } if(amounts.length < length){ length = amounts.length; } for (uint256 i; i < length;) { _transferETH(recipients[i], amounts[i]); totalRoyalty += amounts[i]; unchecked { ++i; } } require(totalRoyalty <= (amount / 3), "Royalty too high"); // Protect against royalty hacks } catch {} uint256 feeAmount = (amount * feeMultiplier) / 1e18; _transferETH(treasury, feeAmount); _transferETH(seller, amount - (totalRoyalty + feeAmount)); // totalRoyalty+feeAmount <= amount*0.43 } event AuctionSettled(bytes32 auctionId); function settleAuction( address payable nftOwner, address nftContract, bytes32 auctionType, uint256 nftId, uint256 reserve, Bid calldata bid, BidWinner calldata bidWinner ) public { bytes32 auctionId = calculateAuctionHash(nftOwner, nftContract, auctionType, nftId, reserve); require(auctionState[auctionId] == AuctionState.CREATED, "bad auction state"); auctionState[auctionId] = AuctionState.CLOSED; require(bidWinner.auctionId == auctionId && bid.auctionId == auctionId, "!auctionId"); uint256 amount = bidWinner.amount; require(amount <= bid.maxAmount && amount >= reserve, "!amount"); require(_verifyBid(bid) == bidWinner.winner, "!winner"); require(_verifyBidWinner(bidWinner) == settleSequencer, "!settleSequencer"); _balances[bidWinner.winner] -= amount; emit Transfer(bidWinner.winner, address(0), amount); IERC721(nftContract).transferFrom(address(this), bidWinner.winner, nftId); _distributeSale(nftContract, nftId, amount, nftOwner); emit AuctionSettled(auctionId); } function _revealBids(bytes32[] calldata salts, address owner) internal { for (uint256 i = 0; i < salts.length;) { // We use try/catch here to prevent a griefing attack where someone could deploySealedFunding() one of the // sealed fundings of the buyer right before another user calls this function, thus making it revert // It's still possible for the buyer to perform this attack by frontrunning the call with a withdraw() // but that's trivial to solve by just revealing all the salts of the griefing user try sealedFundingFactory.deploySealedFunding{gas: 100_000}(salts[i], owner) {} // cost of deploySealedFunding() is between 55k and 82k catch {} unchecked { ++i; } } } function settleAuctionWithSealedBids( bytes32[] calldata salts, address payable nftOwner, address nftContract, bytes32 auctionType, uint256 nftId, uint256 reserve, Bid calldata bid, BidWinner calldata bidWinner ) external { _revealBids(salts, bidWinner.winner); settleAuction(nftOwner, nftContract, auctionType, nftId, reserve, bid, bidWinner); } function withdrawWithSealedBids(bytes32[] calldata salts, WithdrawalPacket calldata packet) external { _revealBids(salts, msg.sender); withdraw(packet); } event CounterIncreased(address account, uint256 newCounter); function increaseCounter(uint256 newCounter) external { require(newCounter > accountCounter[msg.sender], "too low"); accountCounter[msg.sender] = newCounter; emit CounterIncreased(msg.sender, newCounter); } event OfferCancelled(address account, uint256 nonce); function cancelOffer(uint256 nonce) external { usedOrderNonces[msg.sender].set(nonce); emit OfferCancelled(msg.sender, nonce); } function _verifyOffer(Offer calldata offer, address creator) private { require(offer.deadline > block.timestamp, "!deadline"); require(orderNonces(creator, offer.nonce) == false, "!orderNonce"); usedOrderNonces[msg.sender].set(offer.nonce); require(offer.counter > accountCounter[creator], "!counter"); } event OrdersMatched(bytes32 auctionId, address buyer, address sender, uint256 buyerNonce, uint256 sellerNonce); function matchOrders( Offer calldata sellerOffer, Offer calldata buyerOffer, OfferAttestation calldata sequencerStamp, address nftContract, bytes32 auctionType, uint256 nftId, uint256 reserve ) external { // First run verifications that can fail due to a delayed tx require(sequencerStamp.deadline > block.timestamp, "!deadline"); if (msg.sender != sequencerStamp.buyer) { _verifyOffer(buyerOffer, sequencerStamp.buyer); require(_verifyBuyOffer(buyerOffer) == sequencerStamp.buyer && sequencerStamp.buyer != address(0), "!buyer"); } if (msg.sender != sequencerStamp.seller) { _verifyOffer(sellerOffer, sequencerStamp.seller); require( _verifySellOffer(sellerOffer) == sequencerStamp.seller && sequencerStamp.seller != address(0), "!seller" ); } // Verify NFT is owned by seller bytes32 auctionId = calculateAuctionHash( sequencerStamp.seller, nftContract, auctionType, nftId, reserve ); require(auctionState[auctionId] == AuctionState.CREATED && sequencerStamp.auctionId == auctionId, "bad auction state"); // Execute sale _balances[sequencerStamp.buyer] -= sequencerStamp.amount; emit Transfer(sequencerStamp.buyer, address(0), sequencerStamp.amount); auctionState[auctionId] = AuctionState.CLOSED; // Run verifications that can't fail due to external factors require(sequencerStamp.amount == sellerOffer.amount && sequencerStamp.amount == buyerOffer.amount, "!amount"); require( nftContract == sellerOffer.nftContract && nftContract == buyerOffer.nftContract, "!nftContract" ); require(nftId == sellerOffer.nftId && nftId == buyerOffer.nftId, "!nftId"); require(_verifyOfferAttestation(sequencerStamp) == sequencer, "!sequencer"); // This needs sequencer approval to avoid someone rugging their bids by buying another NFT // Finish executing sale IERC721(nftContract).transferFrom(address(this), sequencerStamp.buyer, nftId); _distributeSale( nftContract, nftId, sequencerStamp.amount, payable(sequencerStamp.seller) ); emit OrdersMatched(auctionId, sequencerStamp.buyer, msg.sender, buyerOffer.nonce, sellerOffer.nonce); } function nonceState(uint256 nonce) public view returns (bool) { return usedNonces.get(nonce); } function orderNonces(address account, uint256 nonce) public view returns (bool) { return usedOrderNonces[account].get(nonce); } } pragma solidity ^0.8.7; interface IExchange { function deposit(address receiver) external payable; } contract SealedFunding { constructor(address _owner, address _exchange) { IExchange(_exchange).deposit{value: address(this).balance}(_owner); assembly { // Ensures the runtime bytecode is a single opcode: `INVALID`. This reduces contract // deploy costs & ensures that no one can accidentally send ETH to the contract once // deployed. mstore8(0, 0xfe) return(0, 1) } } } pragma solidity ^0.8.7; import "./SealedFunding.sol"; contract SealedFundingFactory { address public immutable exchange; constructor(address _exchange) { exchange = _exchange; } event SealedFundingRevealed(bytes32 salt, address owner); function deploySealedFunding(bytes32 salt, address owner) public { new SealedFunding{salt: salt}(owner, exchange); emit SealedFundingRevealed(salt, owner); } function computeSealedFundingAddress(bytes32 salt, address owner) external view returns (address predictedAddress, bool isDeployed) { predictedAddress = address( uint160( uint256( keccak256( abi.encodePacked( bytes1(0xff), address(this), salt, keccak256(abi.encodePacked(type(SealedFunding).creationCode, abi.encode(owner, exchange))) ) ) ) ) ); isDeployed = predictedAddress.code.length != 0; } }
File 2 of 2: DigitalMediaCore
// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol 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 { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. 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. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // 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) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @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) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // 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 (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): 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. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @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) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @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)); } } // File: VaultCoreInterface.sol pragma solidity 0.8.9; abstract contract VaultCoreInterface { function getVersion() public pure virtual returns (uint); function typeOfContract() public pure virtual returns (bytes32); function approveToken( uint256 _tokenId, address _tokenContractAddress) external virtual; } // File: RoyaltyRegistryInterface.sol pragma solidity 0.8.9; /** * Interface to the RoyaltyRegistry responsible for looking payout addresses */ abstract contract RoyaltyRegistryInterface { function getAddress(address custodial) external view virtual returns (address); function getMediaCustomPercentage(uint256 mediaId, address tokenAddress) external view virtual returns(uint16); function getExternalTokenPercentage(uint256 tokenId, address tokenAddress) external view virtual returns(uint16, uint16); function typeOfContract() virtual public pure returns (string calldata); function VERSION() virtual public pure returns (uint8); } // File: ApprovedCreatorRegistryInterface.sol pragma solidity 0.8.9; /** * Interface to the digital media store external contract that is * responsible for storing the common digital media and collection data. * This allows for new token contracts to be deployed and continue to reference * the digital media and collection data. */ abstract contract ApprovedCreatorRegistryInterface { function getVersion() virtual public pure returns (uint); function typeOfContract() virtual public pure returns (string calldata); function isOperatorApprovedForCustodialAccount( address _operator, address _custodialAddress) virtual public view returns (bool); } // File: utils/Collaborator.sol pragma solidity 0.8.9; library Collaborator { bytes32 public constant TYPE_HASH = keccak256("Share(address account,uint48 value,uint48 royalty)"); struct Share { address payable account; uint48 value; uint48 royalty; } function hash(Share memory part) internal pure returns (bytes32) { return keccak256(abi.encode(TYPE_HASH, part.account, part.value, part.royalty)); } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/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: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: OBOControl.sol pragma solidity 0.8.9; contract OBOControl is Ownable { address public oboAdmin; uint256 constant public newAddressWaitPeriod = 1 days; bool public canAddOBOImmediately = true; // List of approved on behalf of users. mapping (address => uint256) public approvedOBOs; event NewOBOAddressEvent( address OBOAddress, bool action); event NewOBOAdminAddressEvent( address oboAdminAddress); modifier onlyOBOAdmin() { require(owner() == _msgSender() || oboAdmin == _msgSender(), "not oboAdmin"); _; } function setOBOAdmin(address _oboAdmin) external onlyOwner { oboAdmin = _oboAdmin; emit NewOBOAdminAddressEvent(_oboAdmin); } /** * Add a new approvedOBO address. The address can be used after wait period. */ function addApprovedOBO(address _oboAddress) external onlyOBOAdmin { require(_oboAddress != address(0), "cant set to 0x"); require(approvedOBOs[_oboAddress] == 0, "already added"); approvedOBOs[_oboAddress] = block.timestamp; emit NewOBOAddressEvent(_oboAddress, true); } /** * Removes an approvedOBO immediately. */ function removeApprovedOBO(address _oboAddress) external onlyOBOAdmin { delete approvedOBOs[_oboAddress]; emit NewOBOAddressEvent(_oboAddress, false); } /* * Add OBOAddress for immediate use. This is an internal only Fn that is called * only when the contract is deployed. */ function addApprovedOBOImmediately(address _oboAddress) internal onlyOwner { require(_oboAddress != address(0), "addr(0)"); // set the date to one in past so that address is active immediately. approvedOBOs[_oboAddress] = block.timestamp - newAddressWaitPeriod - 1; emit NewOBOAddressEvent(_oboAddress, true); } function addApprovedOBOAfterDeploy(address _oboAddress) external onlyOBOAdmin { require(canAddOBOImmediately == true, "disabled"); addApprovedOBOImmediately(_oboAddress); } function blockImmediateOBO() external onlyOBOAdmin { canAddOBOImmediately = false; } /* * Helper function to verify is a given address is a valid approvedOBO address. */ function isValidApprovedOBO(address _oboAddress) public view returns (bool) { uint256 createdAt = approvedOBOs[_oboAddress]; if (createdAt == 0) { return false; } return block.timestamp - createdAt > newAddressWaitPeriod; } /** * @dev Modifier to make the obo calls only callable by approved addressess */ modifier isApprovedOBO() { require(isValidApprovedOBO(msg.sender), "unauthorized OBO user"); _; } } // File: @openzeppelin/contracts/security/Pausable.sol pragma solidity ^0.8.0; /** * @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()); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: DigitalMediaToken.sol pragma solidity 0.8.9; contract DigitalMediaToken is ERC721, OBOControl, Pausable { // creator address has to be set during deploy via constructor only. address public singleCreatorAddress; address public signerAddress; bool public enableExternalMinting; bool public canRoyaltyRegistryChange = true; struct DigitalMedia { uint32 totalSupply; // The total supply of collectibles available uint32 printIndex; // The current print index address creator; // The creator of the collectible uint16 royalty; bool immutableMedia; Collaborator.Share[] collaborators; string metadataPath; // Hash of the media content, with the actual data stored on a secondary // data store (ideally decentralized) } struct DigitalMediaRelease { uint32 printEdition; // The unique edition number of this digital media release uint256 digitalMediaId; // Reference ID to the digital media metadata } ApprovedCreatorRegistryInterface public creatorRegistryStore; RoyaltyRegistryInterface public royaltyStore; VaultCoreInterface public vaultStore; // Event fired when a new digital media is created. No point in returning printIndex // since its always zero when created. event DigitalMediaCreateEvent( uint256 id, address creator, uint32 totalSupply, uint32 royalty, bool immutableMedia, string metadataPath); event DigitalMediaReleaseCreateEvent( uint256 id, address owner, uint32 printEdition, string tokenURI, uint256 digitalMediaId); // Event fired when a creator assigns a new creator address. event ChangedCreator( address creator, address newCreator); // Event fired when a digital media is burned event DigitalMediaBurnEvent( uint256 id, address caller); // Event fired when burning a token event DigitalMediaReleaseBurnEvent( uint256 tokenId, address owner); event NewSignerEvent( address signer); event NewRoyaltyEvent( uint16 value); // ID to Digital Media object mapping (uint256 => DigitalMedia) public idToDigitalMedia; // Maps internal ERC721 token ID to digital media release object. mapping (uint256 => DigitalMediaRelease) public tokenIdToDigitalMediaRelease; // Maps a creator address to a new creator address. Useful if a creator // changes their address or the previous address gets compromised. mapping (address => address) public changedCreators; constructor(string memory _tokenName, string memory _tokenSymbol) ERC721(_tokenName, _tokenSymbol) {} // Set the creator registry address upon construction. Immutable. function setCreatorRegistryStore(address _crsAddress) internal { ApprovedCreatorRegistryInterface candidateCreatorRegistryStore = ApprovedCreatorRegistryInterface(_crsAddress); // require(candidateCreatorRegistryStore.getVersion() == 1, "registry store is not version 1"); // Simple check to make sure we are adding the registry contract indeed // https://fravoll.github.io/solidity-patterns/string_equality_comparison.html bytes32 contractType = keccak256(abi.encodePacked(candidateCreatorRegistryStore.typeOfContract())); // keccak256(abi.encodePacked("approvedCreatorRegistry")) = 0x74cb6de1099c3d993f336da7af5394f68038a23980424e1ae5723d4110522be4 // keccak256(abi.encodePacked("approvedCreatorRegistryReadOnly")) = 0x9732b26dfb8751e6f1f71e8f21b28a237cfe383953dce7db3dfa1777abdb2791 require( contractType == 0x74cb6de1099c3d993f336da7af5394f68038a23980424e1ae5723d4110522be4 || contractType == 0x9732b26dfb8751e6f1f71e8f21b28a237cfe383953dce7db3dfa1777abdb2791, "not crtrRegistry"); creatorRegistryStore = candidateCreatorRegistryStore; } function setRoyaltyRegistryStore(address _royaltyStore) external whenNotPaused onlyOBOAdmin { require(canRoyaltyRegistryChange == true, "no"); RoyaltyRegistryInterface candidateRoyaltyStore = RoyaltyRegistryInterface(_royaltyStore); require(candidateRoyaltyStore.VERSION() == 1, "roylty v!= 1"); bytes32 contractType = keccak256(abi.encodePacked(candidateRoyaltyStore.typeOfContract())); // keccak256(abi.encodePacked("royaltyRegistry")) = 0xb590ff355bf2d720a7e957392d3b76fd1adda1832940640bf5d5a7c387fed323 require(contractType == 0xb590ff355bf2d720a7e957392d3b76fd1adda1832940640bf5d5a7c387fed323, "not royalty"); royaltyStore = candidateRoyaltyStore; } function setRoyaltyRegistryForever() external whenNotPaused onlyOwner { canRoyaltyRegistryChange = false; } function setVaultStore(address _vaultStore) external whenNotPaused onlyOwner { VaultCoreInterface candidateVaultStore = VaultCoreInterface(_vaultStore); bytes32 contractType = candidateVaultStore.typeOfContract(); require(contractType == 0x6d707661756c7400000000000000000000000000000000000000000000000000, "invalid mpvault"); vaultStore = candidateVaultStore; } /* * Set signer address on the token contract. Setting signer means we are opening * the token contract for external accounts to create tokens. Call this to change * the signer immediately. */ function setSignerAddress(address _signerAddress, bool _enableExternalMinting) external whenNotPaused isApprovedOBO { require(_signerAddress != address(0), "cant be zero"); signerAddress = _signerAddress; enableExternalMinting = _enableExternalMinting; emit NewSignerEvent(signerAddress); } /** * Validates that the Registered store is initialized. */ modifier registryInitialized() { require(address(creatorRegistryStore) != address(0), "registry = 0x0"); _; } /** * Validates that the Vault store is initialized. */ modifier vaultInitialized() { require(address(vaultStore) != address(0), "vault = 0x0"); _; } function _setCollaboratorsOnDigitalMedia(DigitalMedia storage _digitalMedia, Collaborator.Share[] memory _collaborators) internal { uint total = 0; uint totalRoyalty = 0; for (uint i = 0; i < _collaborators.length; i++) { require(_collaborators[i].account != address(0x0) || _collaborators[i].account != _digitalMedia.creator, "collab 0x0/creator"); require(_collaborators[i].value != 0 || _collaborators[i].royalty != 0, "share/royalty = 0"); _digitalMedia.collaborators.push(_collaborators[i]); total = total + _collaborators[i].value; totalRoyalty = totalRoyalty + _collaborators[i].royalty; } require(total <= 10000, "total <=10000"); require(totalRoyalty <= 10000, "totalRoyalty <=10000"); } /** * Creates a new digital media object. * @param _creator address the creator of this digital media * @param _totalSupply uint32 the total supply a creation could have * @param _metadataPath string the path to the ipfs metadata * @return uint the new digital media id */ function _createDigitalMedia( address _creator, uint256 _onchainId, uint32 _totalSupply, string memory _metadataPath, Collaborator.Share[] memory _collaborators, uint16 _royalty, bool _immutableMedia) internal returns (uint) { // If this is a single creator contract make sure _owner matches single creator if (singleCreatorAddress != address(0)) { require(singleCreatorAddress == _creator, "Creator must match single creator address"); } // Verify this media does not exist already DigitalMedia storage _digitalMedia = idToDigitalMedia[_onchainId]; require(_digitalMedia.creator == address(0), "media already exists"); // TODO: Dannie check this require throughly. require((_totalSupply > 0) && address(_creator) != address(0) && _royalty <= 10000, "invalid params"); _digitalMedia.printIndex = 0; _digitalMedia.totalSupply = _totalSupply; _digitalMedia.creator = _creator; _digitalMedia.metadataPath = _metadataPath; _digitalMedia.immutableMedia = _immutableMedia; _digitalMedia.royalty = _royalty; _setCollaboratorsOnDigitalMedia(_digitalMedia, _collaborators); emit DigitalMediaCreateEvent( _onchainId, _creator, _totalSupply, _royalty, _immutableMedia, _metadataPath); return _onchainId; } /** * Creates _count number of new digital media releases (i.e a token). * Bumps up the print index by _count. * @param _owner address the owner of the digital media object * @param _digitalMediaId uint256 the digital media id */ function _createDigitalMediaReleases( address _owner, uint256 _digitalMediaId, uint256[] memory _releaseIds) internal { require(_releaseIds.length > 0 && _releaseIds.length < 10000, "0 < count <= 10000"); DigitalMedia storage _digitalMedia = idToDigitalMedia[_digitalMediaId]; require(_digitalMedia.creator != address(0), "media does not exist"); uint32 currentPrintIndex = _digitalMedia.printIndex; require(_checkApprovedCreator(_digitalMedia.creator, _owner), "Creator not approved"); require(_releaseIds.length + currentPrintIndex <= _digitalMedia.totalSupply, "Total supply exceeded."); for (uint32 i=0; i < _releaseIds.length; i++) { uint256 newDigitalMediaReleaseId = _releaseIds[i]; DigitalMediaRelease storage release = tokenIdToDigitalMediaRelease[newDigitalMediaReleaseId]; require(release.printEdition == 0, "tokenId already used"); uint32 newPrintEdition = currentPrintIndex + 1 + i; release.printEdition = newPrintEdition; release.digitalMediaId = _digitalMediaId; emit DigitalMediaReleaseCreateEvent( newDigitalMediaReleaseId, _owner, newPrintEdition, _digitalMedia.metadataPath, _digitalMediaId ); // This will assign ownership and also emit the Transfer event as per ERC721 _mint(_owner, newDigitalMediaReleaseId); } _digitalMedia.printIndex = _digitalMedia.printIndex + uint32(_releaseIds.length); } /** * Checks that a given caller is an approved creator and is allowed to mint or burn * tokens. If the creator was changed it will check against the updated creator. * @param _caller the calling address * @return bool allowed or not */ function _checkApprovedCreator(address _creator, address _caller) internal view returns (bool) { address approvedCreator = changedCreators[_creator]; if (approvedCreator != address(0)) { return approvedCreator == _caller; } else { return _creator == _caller; } } /** * Burns a token for a given tokenId and caller. * @param _tokenId the id of the token to burn. * @param _caller the address of the caller. */ function _burnToken(uint256 _tokenId, address _caller) internal { address owner = ownerOf(_tokenId); require(_isApprovedOrOwner(_caller, _tokenId), "ERC721: burn caller is not owner nor approved"); _burn(_tokenId); // Dont delete the tokenIdToDMR as we dont want to reissue another release // with the same id. Leaving the data will prevent reissuing. // delete tokenIdToDigitalMediaRelease[_tokenId]; emit DigitalMediaReleaseBurnEvent(_tokenId, owner); } /** * Burns a digital media. Once this function succeeds, this digital media * will no longer be able to mint any more tokens. Existing tokens need to be * burned individually though. * @param _digitalMediaId the id of the digital media to burn * @param _caller the address of the caller. */ function _burnDigitalMedia(uint256 _digitalMediaId, address _caller) internal { DigitalMedia storage _digitalMedia = idToDigitalMedia[_digitalMediaId]; require(_digitalMedia.creator != address(0), "media does not exist"); require(_checkApprovedCreator(_digitalMedia.creator, _caller) || isApprovedForAll(_digitalMedia.creator, _caller), "Failed digital media burn. Caller not approved."); _digitalMedia.printIndex = _digitalMedia.totalSupply; emit DigitalMediaBurnEvent(_digitalMediaId, _caller); } /** * @dev Returns an URI for a given token ID * @dev Throws if the token ID does not exist. May return an empty string. * @param _tokenId uint256 ID of the token to query */ function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId)); DigitalMediaRelease storage digitalMediaRelease = tokenIdToDigitalMediaRelease[_tokenId]; uint256 _digitalMediaId = digitalMediaRelease.digitalMediaId; DigitalMedia storage _digitalMedia = idToDigitalMedia[_digitalMediaId]; string memory prefix = "ipfs://"; return string(abi.encodePacked(prefix, string(_digitalMedia.metadataPath))); } /* * Look up a royalty payout address if royaltyStore is set otherwise we returns * the same argument. */ function _getRoyaltyAddress(address custodial) internal view returns(address) { return address(royaltyStore) == address(0) ? custodial : royaltyStore.getAddress(custodial); } } // File: DigitalMediaCore.sol pragma solidity 0.8.9; contract DigitalMediaCore is DigitalMediaToken { using ECDSA for bytes32; uint8 constant public VERSION = 3; struct DigitalMediaCreateRequest { uint256 onchainId; // onchain id for this media uint32 totalSupply; // The total supply of collectibles available address creator; // The creator of the collectible uint16 royalty; bool immutableMedia; Collaborator.Share[] collaborators; string metadataPath; // Hash of the media content uint256[] releaseIds; // number of releases to mint } struct DigitalMediaUpdateRequest { uint256 onchainId; // onchain id for this media uint256 metadataId; uint32 totalSupply; // The total supply of collectibles available address creator; // The creator of the collectible uint16 royalty; Collaborator.Share[] collaborators; string metadataPath; // Hash of the media content } struct DigitalMediaReleaseCreateRequest { uint256 digitalMediaId; uint256[] releaseIds; // number of releases to mint address owner; } struct TokenDestinationRequest { uint256 tokenId; address destinationAddress; } struct ChainSignatureRequest { uint256 onchainId; address owner; } struct PayoutInfo { address user; uint256 amount; } event DigitalMediaUpdateEvent( uint256 id, uint32 totalSupply, uint16 royalty, string metadataPath, uint256 metadataId); event MediasImmutableEvent( uint256[] mediaIds); event MediaImmutableEvent( uint256 mediaId); constructor(string memory _tokenName, string memory _tokenSymbol, address _crsAddress) DigitalMediaToken(_tokenName, _tokenSymbol) { setCreatorRegistryStore(_crsAddress); } /** * Retrieves a Digital Media object. */ function getDigitalMedia(uint256 _id) external view returns (DigitalMedia memory) { DigitalMedia memory _digitalMedia = idToDigitalMedia[_id]; require(_digitalMedia.creator != address(0), "DigitalMedia not found."); return _digitalMedia; } /** * Ok I am not proud of this function but sale conract needs to getDigitalMedia * while I tried to write a interface file DigitalMediaBurnInterfaceV3.sol I could * not include the DigitalMedia struct in that abstract contract. So I am writing * another endpoint to return just the bare minimum data required for the sale contract. */ function getDigitalMediaForSale(uint256 _id) external view returns( address, bool, uint16) { DigitalMedia storage _digitalMedia = idToDigitalMedia[_id]; require(_digitalMedia.creator != address(0), "DigitalMedia not found."); return (_digitalMedia.creator, _digitalMedia.collaborators.length > 0, _digitalMedia.royalty); } /** * Retrieves a Digital Media Release (i.e a token) */ function getDigitalMediaRelease(uint256 _id) external view returns (DigitalMediaRelease memory) { require(_exists(_id), "release does not exist"); DigitalMediaRelease storage digitalMediaRelease = tokenIdToDigitalMediaRelease[_id]; return digitalMediaRelease; } /** * Creates a new digital media object and mints it's first digital media release token. * The onchainid and creator has to be signed by signerAddress in order to create. * No creations of any kind are allowed when the contract is paused. */ function createDigitalMediaAndReleases( DigitalMediaCreateRequest memory request, bytes calldata signature) external whenNotPaused { require(request.creator == msg.sender, "msgSender != creator"); ChainSignatureRequest memory signatureRequest = ChainSignatureRequest(request.onchainId, request.creator); _verifyReleaseRequestSignature(signatureRequest, signature); uint256 digitalMediaId = _createDigitalMedia(msg.sender, request.onchainId, request.totalSupply, request.metadataPath, request.collaborators, request.royalty, request.immutableMedia); _createDigitalMediaReleases(msg.sender, digitalMediaId, request.releaseIds); } /** * Creates a new digital media release (token) for a given digital media id. * This request needs to be signed by the authorized signerAccount to prevent * from user stealing media & release ids on chain and frontrunning. * No creations of any kind are allowed when the contract is paused. */ function createDigitalMediaReleases( DigitalMediaReleaseCreateRequest memory request) external whenNotPaused { // require(request.owner == msg.sender, "owner != msg.sender"); require(signerAddress != address(0), "signer not set"); _createDigitalMediaReleases(msg.sender, request.digitalMediaId, request.releaseIds); } /** * Creates a new digital media object and mints it's digital media release tokens. * Called on behalf of the _owner. Pass count to mint `n` number of tokens. * * Only approved creators are allowed to create Obo. * * No creations of any kind are allowed when the contract is paused. */ function oboCreateDigitalMediaAndReleases( DigitalMediaCreateRequest memory request) external whenNotPaused isApprovedOBO { uint256 digitalMediaId = _createDigitalMedia(request.creator, request.onchainId, request.totalSupply, request.metadataPath, request.collaborators, request.royalty, request.immutableMedia); _createDigitalMediaReleases(request.creator, digitalMediaId, request.releaseIds); } /** * Create many digital medias in one call. */ function oboCreateManyDigitalMedias( DigitalMediaCreateRequest[] memory requests) external whenNotPaused isApprovedOBO { for (uint32 i=0; i < requests.length; i++) { DigitalMediaCreateRequest memory request = requests[i]; _createDigitalMedia(request.creator, request.onchainId, request.totalSupply, request.metadataPath, request.collaborators, request.royalty, request.immutableMedia); } } /** * Creates multiple digital media releases (tokens) for a given digital media id. * Called on behalf of the _owner. * * Only approved creators are allowed to create Obo. * * No creations of any kind are allowed when the contract is paused. */ function oboCreateDigitalMediaReleases( DigitalMediaReleaseCreateRequest memory request) external whenNotPaused isApprovedOBO { _createDigitalMediaReleases(request.owner, request.digitalMediaId, request.releaseIds); } /* * Create multiple digital medias and associated releases (tokens). Called on behalf * of the _owner. Each media should mint atleast 1 token. * No creations of any kind are allowed when the contract is paused. */ function oboCreateManyDigitalMediasAndReleases( DigitalMediaCreateRequest[] memory requests) external whenNotPaused isApprovedOBO { for (uint32 i=0; i < requests.length; i++) { DigitalMediaCreateRequest memory request = requests[i]; uint256 digitalMediaId = _createDigitalMedia(request.creator, request.onchainId, request.totalSupply, request.metadataPath, request.collaborators, request.royalty, request.immutableMedia); _createDigitalMediaReleases(request.creator, digitalMediaId, request.releaseIds); } } /* * Create multiple releases (tokens) associated with existing medias. Called on behalf * of the _owner. * No creations of any kind are allowed when the contract is paused. */ function oboCreateManyReleases( DigitalMediaReleaseCreateRequest[] memory requests) external whenNotPaused isApprovedOBO { for (uint32 i=0; i < requests.length; i++) { DigitalMediaReleaseCreateRequest memory request = requests[i]; DigitalMedia storage _digitalMedia = idToDigitalMedia[request.digitalMediaId]; require(_digitalMedia.creator != address(0), "DigitalMedia not found."); _createDigitalMediaReleases(request.owner, request.digitalMediaId, request.releaseIds); } } /** * Override the isApprovalForAll to check for a special oboApproval list. Reason for this * is that we can can easily remove obo operators if they every become compromised. */ function isApprovedForAll(address _owner, address _operator) public view override registryInitialized returns (bool) { if (creatorRegistryStore.isOperatorApprovedForCustodialAccount(_operator, _owner) == true) { return true; } else { return super.isApprovedForAll(_owner, _operator); } } /** * Changes the creator for the current sender, in the event we * need to be able to mint new tokens from an existing digital media * print production. When changing creator, the old creator will * no longer be able to mint tokens. * * A creator may need to be changed: * 1. If we want to allow a creator to take control over their token minting (i.e go decentralized) * 2. If we want to re-issue private keys due to a compromise. For this reason, we can call this function * when the contract is paused. * @param _creator the creator address * @param _newCreator the new creator address */ function changeCreator(address _creator, address _newCreator) external { address approvedCreator = changedCreators[_creator]; require(msg.sender != address(0) && _creator != address(0), "Creator must be valid non 0x0 address."); require(msg.sender == _creator || msg.sender == approvedCreator, "Unauthorized caller."); if (approvedCreator == address(0)) { changedCreators[msg.sender] = _newCreator; } else { require(msg.sender == approvedCreator, "Unauthorized caller."); changedCreators[_creator] = _newCreator; } emit ChangedCreator(_creator, _newCreator); } // standard ERC721 burn interface function burn(uint256 _tokenId) external { _burnToken(_tokenId, msg.sender); } function burnToken(uint256 _tokenId) external { _burnToken(_tokenId, msg.sender); } /** * Ends the production run of a digital media. Afterwards no more tokens * will be allowed to be printed for each digital media. Used when a creator * makes a mistake and wishes to burn and recreate their digital media. * * When a contract is paused we do not allow new tokens to be created, * so stopping the production of a token doesn't have much purpose. */ function burnDigitalMedia(uint256 _digitalMediaId) external whenNotPaused { _burnDigitalMedia(_digitalMediaId, msg.sender); } /* * Batch transfer multiple tokens from their sources to destination * Owner / ApproveAll user can call this endpoint. */ function safeTransferMany(TokenDestinationRequest[] memory requests) external whenNotPaused { for (uint32 i=0; i < requests.length; i++) { TokenDestinationRequest memory request = requests[i]; safeTransferFrom(ownerOf(request.tokenId), request.destinationAddress, request.tokenId); } } function _updateDigitalMedia(DigitalMediaUpdateRequest memory request, DigitalMedia storage _digitalMedia) internal { require(_digitalMedia.immutableMedia == false, "immutable"); require(_digitalMedia.printIndex <= request.totalSupply, "< currentPrintIndex"); _digitalMedia.totalSupply = request.totalSupply; _digitalMedia.metadataPath = request.metadataPath; _digitalMedia.royalty = request.royalty; delete _digitalMedia.collaborators; _setCollaboratorsOnDigitalMedia(_digitalMedia, request.collaborators); emit DigitalMediaUpdateEvent(request.onchainId, request.totalSupply, request.royalty, request.metadataPath, request.metadataId); } function updateMedia(DigitalMediaUpdateRequest memory request) external { require(request.creator == msg.sender, "msgSender != creator"); DigitalMedia storage _digitalMedia = idToDigitalMedia[request.onchainId]; require(_digitalMedia.creator != address(0) && _digitalMedia.creator == msg.sender, "DM creator issue"); _updateDigitalMedia(request, _digitalMedia); } /* * Update existing digitalMedia's metadata, totalSupply, collaborated, royalty * and immutable attribute. Once a media is immutable you cannot call this function */ function updateManyMedias(DigitalMediaUpdateRequest[] memory requests) external whenNotPaused isApprovedOBO vaultInitialized { for (uint32 i=0; i < requests.length; i++) { DigitalMediaUpdateRequest memory request = requests[i]; DigitalMedia storage _digitalMedia = idToDigitalMedia[request.onchainId]; // Call creator registry to check if the creator gave approveAll to vault require(_digitalMedia.creator != address(0) && _digitalMedia.creator == request.creator, "DM creator"); require(isApprovedForAll(_digitalMedia.creator, address(vaultStore)) == true, "approveall missing"); _updateDigitalMedia(request, _digitalMedia); } } function makeMediaImmutable(uint256 mediaId) external { DigitalMedia storage _digitalMedia = idToDigitalMedia[mediaId]; require(_digitalMedia.creator != address(0) && _digitalMedia.creator == msg.sender, "DM creator"); require(_digitalMedia.immutableMedia == false, "DM immutable"); _digitalMedia.immutableMedia = true; emit MediaImmutableEvent(mediaId); } /* * Once we update media and feel satisfied with the changes, we can render it immutable now. */ function makeMediasImmutable(uint256[] memory mediaIds) external whenNotPaused isApprovedOBO vaultInitialized { for (uint32 i=0; i < mediaIds.length; i++) { uint256 mediaId = mediaIds[i]; DigitalMedia storage _digitalMedia = idToDigitalMedia[mediaId]; require(_digitalMedia.creator != address(0), "DM not found."); require(_digitalMedia.immutableMedia == false, "DM immutable"); require(isApprovedForAll(_digitalMedia.creator, address(vaultStore)) == true, "approveall missing"); _digitalMedia.immutableMedia = true; } emit MediasImmutableEvent(mediaIds); } function _lookUpTokenAndReturnEntries(uint256 _tokenId, uint256 _salePrice, bool _isRoyalty) internal view returns(PayoutInfo[] memory entries) { require(_exists(_tokenId), "no token"); DigitalMediaRelease memory digitalMediaRelease = tokenIdToDigitalMediaRelease[_tokenId]; DigitalMedia memory _digitalMedia = idToDigitalMedia[digitalMediaRelease.digitalMediaId]; uint256 size = _digitalMedia.collaborators.length + 1; entries = new PayoutInfo[](size); uint totalRoyaltyPercentage = 0; for (uint256 index = 0; index < _digitalMedia.collaborators.length; index++) { address payoutAddress = _getRoyaltyAddress(_digitalMedia.collaborators[index].account); if (_isRoyalty == true) { entries[index] = PayoutInfo(payoutAddress, _digitalMedia.collaborators[index].royalty * _digitalMedia.royalty * _salePrice / (10000 * 10000)); totalRoyaltyPercentage = totalRoyaltyPercentage + _digitalMedia.collaborators[index].royalty; } else { entries[index] = PayoutInfo(payoutAddress, _digitalMedia.collaborators[index].value * _salePrice / 10000); totalRoyaltyPercentage = totalRoyaltyPercentage + _digitalMedia.collaborators[index].value; } } address creatorPayoutAddress = _getRoyaltyAddress(_digitalMedia.creator); if (_isRoyalty == true) { entries[size-1]= PayoutInfo(creatorPayoutAddress, _salePrice * (10000 - totalRoyaltyPercentage) * _digitalMedia.royalty / (10000 * 10000)); } else { entries[size-1]= PayoutInfo(creatorPayoutAddress, _salePrice * (10000 - totalRoyaltyPercentage) / 10000); } return entries; } /* * Return royalty for a given Token. Returns an array of PayoutInfo which consists * of address to pay to and amount. * Thank you for posting this gist. Helped me to figure out how to return an array of structs. * https://gist.github.com/minhth1905/4b6208372fc5e7343b5ce1fb6d42c942 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns ( PayoutInfo[] memory) { return _lookUpTokenAndReturnEntries(_tokenId, _salePrice, true); } /* * Given salePrice break down the amount between the creator and collabarators * according to their percentages. */ function saleInfo(uint256 _tokenId, uint256 _totalPayout) external view returns ( PayoutInfo[] memory) { return _lookUpTokenAndReturnEntries(_tokenId, _totalPayout, false); } function pause() external onlyOwner { _pause(); } function unpause() external onlyOwner { _unpause(); } /* * helper to verify signature signed by non-custodial creator. */ function _verifyReleaseRequestSignature( ChainSignatureRequest memory request, bytes calldata signature) internal view { require(enableExternalMinting == true, "ext minting disabled"); bytes32 encodedRequest = keccak256(abi.encode(request)); address addressWhoSigned = encodedRequest.recover(signature); require(addressWhoSigned == signerAddress, "sig error"); } }