Skip to content

Commit

Permalink
[bugfix] add missing event on microcredit abi (#966)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bernardo Vieira authored Oct 16, 2023
1 parent 4078ffd commit 5f2c534
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions packages/core/src/contracts/MicrocreditABI.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,55 @@
],
"anonymous": false
},
{
"type": "event",
"name": "LoanAdded",
"inputs": [
{
"type": "address",
"name": "userAddress",
"internalType": "address",
"indexed": true
},
{
"type": "address",
"name": "tokenAddress",
"internalType": "address",
"indexed": true
},
{
"type": "uint256",
"name": "loanId",
"internalType": "uint256",
"indexed": false
},
{
"type": "uint256",
"name": "amount",
"internalType": "uint256",
"indexed": false
},
{
"type": "uint256",
"name": "period",
"internalType": "uint256",
"indexed": false
},
{
"type": "uint256",
"name": "dailyInterest",
"internalType": "uint256",
"indexed": false
},
{
"type": "uint256",
"name": "claimDeadline",
"internalType": "uint256",
"indexed": false
}
],
"anonymous": false
},
{
"type": "event",
"name": "LoanClaimed",
Expand Down

0 comments on commit 5f2c534

Please sign in to comment.