Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[OZ] N-03 #118

Merged
merged 1 commit into from
Jul 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions src/vault/Vault.sol
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,9 @@ contract Vault is ERC4626, Multicall, AccessControlDefaultAdminRules, Reentrancy

uint8 public immutable DECIMALS_OFFSET;

bytes32 public immutable ION_POOL_SUPPLY_CAP_SLOT =
bytes32 public constant ION_POOL_SUPPLY_CAP_SLOT =
0xceba3d526b4d5afd91d1b752bf1fd37917c20a6daf576bcb41dd1c57c1f67e09;
bytes32 public immutable ION_POOL_LIQUIDITY_SLOT =
0xceba3d526b4d5afd91d1b752bf1fd37917c20a6daf576bcb41dd1c57c1f67e08;
bytes32 public constant ION_POOL_LIQUIDITY_SLOT = 0xceba3d526b4d5afd91d1b752bf1fd37917c20a6daf576bcb41dd1c57c1f67e08;

IERC20 public immutable BASE_ASSET;

Expand Down
Loading