This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
// A contract that implements Diamond Storage. | |
library LibA { | |
// This struct contains state variables we care about. | |
struct DiamondStorage { | |
address owner; | |
bytes32 dataA; | |
} | |
// Returns the struct from a specified position in contract storage | |
// ds is short for DiamondStorage | |
function diamondStorage() internal pure returns(DiamondStorage storage ds) { | |
// Specifies a random position in contract storage | |
// This can be done with a kaccak256 hash of a unique string as is | |
// done here or other schemes can be used such as this: | |
// bytes32 storagePosition = keccak256(abi.encodePacked(ERC1155.interfaceId, ERC1155.name, address(this))); | |
bytes32 storagePosition = keccak256("diamond.storage.LibA"); | |
// Set the position of our struct in contract storage | |
assembly {ds.slot := storagePosition} | |
} | |
} | |
// Our facet uses the Diamond Storage defined above. | |
contract FacetA { | |
function setDataA(bytes32 _dataA) external { | |
LibA.DiamondStorage storage ds = LibA.diamondStorage(); | |
require(ds.owner == msg.sender, "Must be owner."); | |
ds.dataA = _dataA; | |
} | |
function getDataA() external view returns (bytes32) { | |
return LibA.diamondStorage().dataA; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment