-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(world): add WorldProxy and WorldProxyFactory (#2632)
Co-authored-by: alvarius <[email protected]>
- Loading branch information
Showing
19 changed files
with
678 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@latticexyz/world": patch | ||
"@latticexyz/cli": patch | ||
--- | ||
|
||
Added a `deploy.useProxy` option to the MUD config that deploys the World as an upgradable proxy contract. The proxy behaves like a regular World contract, but the underlying implementation can be upgraded by calling `setImplementation`. |
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// SPDX-License-Identifier: MIT | ||
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC1967.sol) | ||
|
||
pragma solidity ^0.8.24; | ||
|
||
/** | ||
* @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC. | ||
*/ | ||
interface IERC1967 { | ||
/** | ||
* @dev Emitted when the implementation is upgraded. | ||
*/ | ||
event Upgraded(address indexed implementation); | ||
|
||
/** | ||
* @dev Emitted when the admin account has changed. | ||
*/ | ||
event AdminChanged(address previousAdmin, address newAdmin); | ||
|
||
/** | ||
* @dev Emitted when the beacon is changed. | ||
*/ | ||
event BeaconUpgraded(address indexed beacon); | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
// SPDX-License-Identifier: MIT | ||
// OpenZeppelin Contracts (last updated v5.0.0) (proxy/Proxy.sol) | ||
|
||
pragma solidity ^0.8.24; | ||
|
||
/** | ||
* @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM | ||
* instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to | ||
* be specified by overriding the virtual {_implementation} function. | ||
* | ||
* Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a | ||
* different contract through the {_delegate} function. | ||
* | ||
* The success and return data of the delegated call will be returned back to the caller of the proxy. | ||
*/ | ||
abstract contract Proxy { | ||
/** | ||
* @dev Delegates the current call to `implementation`. | ||
* | ||
* This function does not return to its internal call site, it will return directly to the external caller. | ||
*/ | ||
function _delegate(address implementation) internal virtual { | ||
assembly { | ||
// Copy msg.data. We take full control of memory in this inline assembly | ||
// block because it will not return to Solidity code. We overwrite the | ||
// Solidity scratch pad at memory position 0. | ||
calldatacopy(0, 0, calldatasize()) | ||
|
||
// Call the implementation. | ||
// out and outsize are 0 because we don't know the size yet. | ||
let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0) | ||
|
||
// Copy the returned data. | ||
returndatacopy(0, 0, returndatasize()) | ||
|
||
switch result | ||
// delegatecall returns 0 on error. | ||
case 0 { | ||
revert(0, returndatasize()) | ||
} | ||
default { | ||
return(0, returndatasize()) | ||
} | ||
} | ||
} | ||
|
||
/** | ||
* @dev This is a virtual function that should be overridden so it returns the address to which the fallback | ||
* function and {_fallback} should delegate. | ||
*/ | ||
function _implementation() internal view virtual returns (address); | ||
|
||
/** | ||
* @dev Delegates the current call to the address returned by `_implementation()`. | ||
* | ||
* This function does not return to its internal call site, it will return directly to the external caller. | ||
*/ | ||
function _fallback() internal virtual { | ||
_delegate(_implementation()); | ||
} | ||
|
||
/** | ||
* @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other | ||
* function in the contract matches the call data. | ||
*/ | ||
fallback() external payable virtual { | ||
_fallback(); | ||
} | ||
} |
Oops, something went wrong.