ReentrancyGuard
Authors: Modified Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/utils/ReentrancyGuard.sol), Modified from OpenZeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/ReentrancyGuard.sol)
Gas optimized reentrancy protection for smart contracts.
uint256 private reentrancyStatus;
function __initReentrancyGuard() internal;
modifier nonReentrant();
error Reentrancy();
Last modified 2mo ago