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.

Last updated