By standardizing on a known minimal bytecode proxy implementation with support for immutable metadata, this standard allows users and third party tools (e.g. Etherscan) to:
(a) simply discover that a contract will always redirect in a known manner and
(b) depend on the behavior of the code at the destination contract as the behavior of the redirecting contract and
(c) verify/view the attached metadata.
Tooling can interrogate the bytecode at a redirecting address to determine the location of the code that will run along with the associated metadata - and can depend on representations about that code (verified source, third-party audits, etc).
This implementation forwards all calls via DELEGATECALL and any (calldata) input plus the metadata at the end of the bytecode to the implementation contract and then relays the return value back to the caller.
In the case where the implementation reverts, the revert is passed back along with the payload data.
Motivation
This standard supports use-cases wherein it is desirable to clone exact contract functionality with different parameters at another address.
wherein the bytes at indices 21 - 41 (inclusive) are replaced with the 20 byte address of the master functionality contract.
Additionally, everything after the MetaProxy bytecode can be arbitrary metadata and the last 32 bytes (one word) of the bytecode must indicate the length of the metadata in bytes.
<54 bytes metaproxy> <arbitrary data> <length in bytes of arbitrary data (uint256)>
Rationale
The goals of this effort have been the following:
a cheap way of storing immutable metadata for each child instead of using storage slots
inexpensive deployment of clones
handles error return bubbling for revert messages
Backwards Compatibility
There are no backwards compatibility issues.
Test Cases
Tested with:
invocation with no arguments
invocation with arguments
invocation with return values
invocation with revert (confirming reverted payload is transferred)
The following code snippets serve only as suggestions and are not a discrete part of this standard.
Proxy construction with bytes from abi.encode
/// @notice MetaProxy construction via abi encoded bytes.
functioncreateFromBytes(addressa,uint256b,uint256[]calldatac)externalpayablereturns(addressproxy){// creates a new proxy where the metadata is the result of abi.encode()
proxy=MetaProxyFactory._metaProxyFromBytes(address(this),abi.encode(a,b,c));require(proxy!=address(0));// optional one-time setup, a constructor() substitute
MyContract(proxy).init{value:msg.value}();}
Proxy construction with bytes from calldata
/// @notice MetaProxy construction via calldata.
functioncreateFromCalldata(addressa,uint256b,uint256[]calldatac)externalpayablereturns(addressproxy){// creates a new proxy where the metadata is everything after the 4th byte from calldata.
proxy=MetaProxyFactory._metaProxyFromCalldata(address(this));require(proxy!=address(0));// optional one-time setup, a constructor() substitute
MyContract(proxy).init{value:msg.value}();}
Retrieving the metadata from calldata and abi.decode
/// @notice Returns the metadata of this (MetaProxy) contract.
/// Only relevant with contracts created via the MetaProxy standard.
/// @dev This function is aimed to be invoked with- & without a call.
functiongetMetadataWithoutCall()publicpurereturns(addressa,uint256b,uint256[]memoryc){bytesmemorydata;assembly{letposOfMetadataSize:=sub(calldatasize(),32)letsize:=calldataload(posOfMetadataSize)letdataPtr:=sub(posOfMetadataSize,size)data:=mload(64)// increment free memory pointer by metadata size + 32 bytes (length)
mstore(64,add(data,add(size,32)))mstore(data,size)letmemPtr:=add(data,32)calldatacopy(memPtr,dataPtr,size)}returnabi.decode(data,(address,uint256,uint256[]));}
Retrieving the metadata via a call to self
/// @notice Returns the metadata of this (MetaProxy) contract.
/// Only relevant with contracts created via the MetaProxy standard.
/// @dev This function is aimed to to be invoked via a call.
functiongetMetadataViaCall()publicpurereturns(addressa,uint256b,uint256[]memoryc){assembly{letposOfMetadataSize:=sub(calldatasize(),32)letsize:=calldataload(posOfMetadataSize)letdataPtr:=sub(posOfMetadataSize,size)calldatacopy(0,dataPtr,size)return(0,size)}}
Apart from the examples above, it is also possible to use Solidity Structures or any custom data encoding.
Security Considerations
This standard only covers the bytecode implementation and does not include any serious side effects of itself.
The reference implementation only serves as a example. It is highly recommended to research side effects depending on how the functionality is used and implemented in any project.