feat: add storage-safe bank V2

This commit is contained in:
golem
2026-08-21 14:58:24 -06:00
parent eb2fd5245a
commit ca6a99b913
6 changed files with 419 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
// SPDX-License-Identifier: MIT
pragma solidity 0.8.35;
contract NonUUPSImplementation {
function contractVersion() external pure returns (uint256) {
return 2;
}
}