Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add LoanV3 artifacts #19

Merged
merged 22 commits into from
Jul 18, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add vanilla localhost artifacts
  • Loading branch information
callum-hyland committed Jul 13, 2022
commit aa113023ba42963db5ae4c863935581e5713282c
130 changes: 130 additions & 0 deletions artifacts/localhost/abis/LoanV3.abi.js
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,136 @@ module.exports = [
"name": "Upgraded",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "collateralRequired_",
"type": "uint256"
}
],
"name": "CollateralRequiredSet",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "earlyFeeRate_",
"type": "uint256"
}
],
"name": "EarlyFeeRateSet",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "endingPrincipal_",
"type": "uint256"
}
],
"name": "EndingPrincipalSet",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "gracePeriod_",
"type": "uint256"
}
],
"name": "GracePeriodSet",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "interestRate_",
"type": "uint256"
}
],
"name": "InterestRateSet",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "lateFeeRate_",
"type": "uint256"
}
],
"name": "LateFeeRateSet",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "lateInterestPremium_",
"type": "uint256"
}
],
"name": "LateInterestPremiumSet",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "paymentInterval_",
"type": "uint256"
}
],
"name": "PaymentIntervalSet",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "paymentsRemaining_",
"type": "uint256"
}
],
"name": "PaymentsRemainingSet",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "increasedBy_",
"type": "uint256"
}
],
"name": "PrincipalIncreased",
"type": "event"
},
{
"inputs": [],
"name": "acceptBorrower",
Expand Down
Loading