Isle Finance
  • Introduction
    • What is Isle Finance?
    • What is Supply Chain Finance?
  • How Isle Finance Works
    • Glossary of Key Terms
    • Pool Admins
    • Buyers
    • Sellers
    • Liquidity Providers
    • Governance
    • Fees
  • Contract Documentation
    • Smart Contract Overview
    • Diagrams
    • Loan Accounting
    • Withdrawal Management
    • Upgradability
    • IsleGlobals
    • LoanManager
    • LoanManagerStorage
    • Pool
    • PoolAddressesProvider
    • PoolConfigurator
    • PoolConfiguratorStorage
    • Receivable
    • ReceivableStorage
    • WithdrawalManager
    • WithdrawalManagerStorage
    • abstracts
      • Governable
    • interfaces
      • IGovernable
      • IIsleGlobals
      • IIsleGlobalsEvents
      • ILoanManager
      • ILoanManagerEvents
      • ILoanManagerStorage
      • IPool
      • IPoolAddressesProvider
      • IPoolConfigurator
      • IPoolConfiguratorEvents
      • IPoolConfiguratorStorage
      • IReceivable
      • IReceivableEvent
      • IWithdrawalManager
      • IWithdrawalManagerStorage
    • libraries
      • Errors
      • PoolDeployer
      • ReentrancyGuardUpgradeable
      • types
        • PoolConfigurator
        • Loan
        • Receivable
        • WithdrawalManager
      • upgradability
        • UUPSProxy
        • VersionedInitializable
Powered by GitBook
On this page
  • State Variables
  • NOT_ENTERED
  • ENTERED
  • ReentrancyGuardStorageLocation
  • Functions
  • _getReentrancyGuardStorage
  • __ReentrancyGuard_init
  • nonReentrant
  • Structs
  • ReentrancyGuardStorage
  1. Contract Documentation
  2. libraries

ReentrancyGuardUpgradeable

PreviousPoolDeployerNexttypes

Last updated 5 months ago

Inherits:

State Variables

NOT_ENTERED

uint256 private constant NOT_ENTERED = 1;

ENTERED

uint256 private constant ENTERED = 2;

ReentrancyGuardStorageLocation

bytes32 private constant ReentrancyGuardStorageLocation =
    0x9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00;

Functions

_getReentrancyGuardStorage

function _getReentrancyGuardStorage() private pure returns (ReentrancyGuardStorage storage $);

__ReentrancyGuard_init

function __ReentrancyGuard_init() internal onlyInitializing;

nonReentrant

modifier nonReentrant();

Structs

ReentrancyGuardStorage

struct ReentrancyGuardStorage {
    uint256 _status;
}
Git Source
VersionedInitializable