Created
June 22, 2022 09:39
-
-
Save yrong/df853cb794b0a2d244069d749b450ce0 to your computer and use it in GitHub Desktop.
Diamond
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; | |
/******************************************************************************\ | |
* Author: Nick Mudge <[email protected]> (https://twitter.com/mudgen) | |
* EIP-2535 Diamonds: https://eips.ethereum.org/EIPS/eip-2535 | |
* | |
* Implementation of a diamond. | |
/******************************************************************************/ | |
import { LibDiamond } from "./libraries/LibDiamond.sol"; | |
import { IDiamondCut } from "./interfaces/IDiamondCut.sol"; | |
contract Diamond { | |
constructor(address _contractOwner, address _diamondCutFacet) payable { | |
LibDiamond.setContractOwner(_contractOwner); | |
// Add the diamondCut external function from the diamondCutFacet | |
IDiamondCut.FacetCut[] memory cut = new IDiamondCut.FacetCut[](1); | |
bytes4[] memory functionSelectors = new bytes4[](1); | |
functionSelectors[0] = IDiamondCut.diamondCut.selector; | |
cut[0] = IDiamondCut.FacetCut({ | |
facetAddress: _diamondCutFacet, | |
action: IDiamondCut.FacetCutAction.Add, | |
functionSelectors: functionSelectors | |
}); | |
LibDiamond.diamondCut(cut, address(0), ""); | |
} | |
// Find facet for function that is called and execute the | |
// function if a facet is found and return any value. | |
fallback() external payable { | |
LibDiamond.DiamondStorage storage ds; | |
bytes32 position = LibDiamond.DIAMOND_STORAGE_POSITION; | |
// get diamond storage | |
assembly { | |
ds.slot := position | |
} | |
// get facet from function selector | |
address facet = ds.facetAddressAndSelectorPosition[msg.sig].facetAddress; | |
require(facet != address(0), "Diamond: Function does not exist"); | |
// Execute external function from facet using delegatecall and return any value. | |
assembly { | |
// copy function selector and any arguments | |
calldatacopy(0, 0, calldatasize()) | |
// execute function call using the facet | |
let result := delegatecall(gas(), facet, 0, calldatasize(), 0, 0) | |
// get any return value | |
returndatacopy(0, 0, returndatasize()) | |
// return any return value or error back to the caller | |
switch result | |
case 0 { | |
revert(0, returndatasize()) | |
} | |
default { | |
return(0, returndatasize()) | |
} | |
} | |
} | |
receive() external payable {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment