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.13; | |
import {Test, console} from "forge-std/Test.sol"; | |
contract MinimalProxyClone { | |
uint256 public a = 10; | |
UUPSProxy public uupsProxy; | |
address public immutable uupsProxyAsImplementation; |
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.22; | |
import {Test, console2, console} from "forge-std/Test.sol"; | |
contract Playground { | |
function play() public view { | |
_verifyLRTYieldCalculation(); |