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
  • Events
  • AssetCreated
  • AssetBurned
  • TransferGovernor
  1. Contract Documentation
  2. interfaces

IReceivableEvent

PreviousIReceivableNextIWithdrawalManager

Last updated 5 months ago

Events

AssetCreated

Emitted when mint a new receivable.

event AssetCreated(
    address indexed buyer_,
    address indexed seller_,
    uint256 indexed tokenId_,
    uint256 faceAmount_,
    uint256 repaymentTimestamp_
);

Parameters

Name
Type
Description

buyer_

address

The address of the buyer that's expected to pay for this receivable.

seller_

address

The address of the seller that's expected to receive payment for this receivable.

tokenId_

uint256

The id of the receivable.

faceAmount_

uint256

The amount of the receivable.

repaymentTimestamp_

uint256

The timestamp when the receivable is expected to be repaid.

AssetBurned

Emitted when burn a receivable.

event AssetBurned(uint256 indexed tokenId_);

Parameters

Name
Type
Description

tokenId_

uint256

The id of the receivable.

TransferGovernor

Emitted when the governor is transferred.

event TransferGovernor(address indexed oldGovernor, address indexed newGovernor);

Parameters

Name
Type
Description

oldGovernor

address

The address of the old governor.

newGovernor

address

The address of the new governor.

Git Source