🍌
NiftyApes: User Docs
HOMECAREERSWHITEPAPER
  • 🍌What is NiftyApes?
    • 📃Whitepaper
    • 🗣️The NiftyApe Manifesto
  • 🔭Overview
    • 🤔How Does NiftyApes Work?
    • ♻️Refinance Guide
    • ⚖️Contracts & Security
      • Liquidity.sol
      • Offers.sol
      • Lending.sol
      • SigLending.sol
    • 😲Loan Default FAQ
  • 💰Lenders dApp Guide
    • 🏃‍♂️Lender Quick-Start Guide
    • 💧Manage Liquidity Page
    • 🤝Create Offers Page
    • 📊Lender Dashboard
      • 🛑Seizing Assets from Loan Defaults
      • 🙅Canceling Offers
  • 🖼️Borrowers dApp Guide
    • 💸Borrow Page
      • 🆗Initiating the Loan
      • 😅Repaying a Loan
      • 😭Defaulting on a Loan
    • 📊Borrower Dashboard
Powered by GitBook
On this page
  1. Overview
  2. Contracts & Security

SigLending.sol

The deployed addresses for SigLending.sol are:

Rinkeby: Mainnet:

ISigLending.sol

Interface of the SigLending.sol contract. Does not include restricted or optional functions. To view the full interface visit: link to interface on github.

Functions

function executeLoanByBorrowerSignature(offer, signature, nftId)

function executeLoanByLenderSignature(offer, signature)

function refinanceByBorrowerSignature(offer, signature, nftId, expectedLastUpdatedTimestamp)

Details

function executeLoanByBorrowerSignature(offer, signature, nftId)

Enables a loan to be executed via a signature based offer

Emits a LoanExecuted() event.

function executeLoanByLenderSignature(offer, signature)

Enables a loan to be executed via a signature based offer

Emits a LoanExecuted() event.

function refinanceByBorrowerSignature(offer, signature, nftId, expectedLastUpdatedTimestamp )

Enables a loan to be refinanced via a signature based offer

Emits Refinance() and AmountDrawn() events.

PreviousLending.solNextLoan Default FAQ

Last updated 2 years ago

🔭
⚖️