Last active
September 14, 2023 10:12
-
-
Save moodysalem/e569592adc97ad52bd72bb34f4013e32 to your computer and use it in GitHub Desktop.
proxy yul code for using transient storage
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: UNLICENSED | |
pragma solidity =0.8.12; | |
type TransientStorageProxy is address; | |
library TransientStorage { | |
function init() internal returns (TransientStorageProxy proxy) { | |
// initCode == bytecode from `yarn compile-tsp` | |
bytes | |
memory initCode = hex'602980600d600039806000f3fe366020811460135760408114602057600080fd5b600035b360005260206000f35b602035600035b450'; | |
assembly { | |
let size := mload(initCode) | |
proxy := create2(0, add(initCode, 32), size, 0) | |
} | |
} | |
function load(TransientStorageProxy proxy, uint256 slot) internal returns (uint256 value) { | |
assembly { | |
mstore(0, slot) | |
if iszero(delegatecall(gas(), proxy, 0, 32, 0, 32)) { | |
revert(0, 0) | |
} | |
value := mload(0) | |
} | |
} | |
function store( | |
TransientStorageProxy proxy, | |
uint256 slot, | |
uint256 value | |
) internal { | |
assembly { | |
mstore(0, slot) | |
mstore(32, value) | |
if iszero(delegatecall(gas(), proxy, 0, 64, 0, 0)) { | |
revert(0, 0) | |
} | |
} | |
} | |
} |
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
object "TransientStorageProxy" { | |
code { | |
// just creates the runtime code | |
let size := datasize("runtime") | |
datacopy(0, dataoffset("runtime"), size) | |
return(0, size) | |
} | |
object "runtime" { | |
code { | |
switch calldatasize() | |
case 32 { | |
mstore(0, tload(calldataload(0))) | |
return(0, 32) | |
} | |
case 64 { | |
tstore(calldataload(0), calldataload(32)) | |
} | |
default { | |
revert(0, 0) | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment