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
  • Functions
  • latestConfigId
  • exitCycleId
  • lockedShares
  • totalCycleShares
  1. Contract Documentation
  2. interfaces

IWithdrawalManagerStorage

PreviousIWithdrawalManagerNextlibraries

Last updated 8 months ago

Functions

latestConfigId

Gets the id of the latest config.

function latestConfigId() external view returns (uint256 configId_);

Returns

Name
Type
Description

configId_

uint256

The id of the latest config.

exitCycleId

Gets the exit cycle id of an account.

function exitCycleId(address account_) external view returns (uint256 cycleId_);

Parameters

Name
Type
Description

account_

address

The address of the account.

Returns

Name
Type
Description

cycleId_

uint256

The id of the exit cycle.

lockedShares

Gets the locked shares of an account.

function lockedShares(address account_) external view returns (uint256 lockedShares_);

Parameters

Name
Type
Description

account_

address

The address of the account.

Returns

Name
Type
Description

lockedShares_

uint256

The amount of locked shares under the account.

totalCycleShares

Gets the total locked shares of a cycle.

function totalCycleShares(uint256 cycleId_) external view returns (uint256 totalCycleShares_);

Parameters

Name
Type
Description

cycleId_

uint256

The id of the cycle.

Returns

Name
Type
Description

totalCycleShares_

uint256

The total amount of locked shares under the cycle.

Git Source