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

[VEN-1868]: Risk Parameters Update #61

Merged
merged 3 commits into from
Aug 25, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
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
1,339 changes: 1,339 additions & 0 deletions simulations/vip-161/vip-161-testnet/abi/COMPTROLLER_ABI.json

Large diffs are not rendered by default.

118 changes: 118 additions & 0 deletions simulations/vip-161/vip-161-testnet/abi/INTEREST_RATE_MODEL_ABI.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
[
{
"inputs": [
{ "internalType": "uint256", "name": "baseRatePerYear", "type": "uint256" },
{ "internalType": "uint256", "name": "multiplierPerYear", "type": "uint256" },
{ "internalType": "uint256", "name": "jumpMultiplierPerYear", "type": "uint256" },
{ "internalType": "uint256", "name": "kink_", "type": "uint256" }
],
"payable": false,
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{ "indexed": false, "internalType": "uint256", "name": "baseRatePerBlock", "type": "uint256" },
{ "indexed": false, "internalType": "uint256", "name": "multiplierPerBlock", "type": "uint256" },
{ "indexed": false, "internalType": "uint256", "name": "jumpMultiplierPerBlock", "type": "uint256" },
{ "indexed": false, "internalType": "uint256", "name": "kink", "type": "uint256" }
],
"name": "NewInterestParams",
"type": "event"
},
{
"constant": true,
"inputs": [],
"name": "baseRatePerBlock",
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "blocksPerYear",
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [
{ "internalType": "uint256", "name": "cash", "type": "uint256" },
{ "internalType": "uint256", "name": "borrows", "type": "uint256" },
{ "internalType": "uint256", "name": "reserves", "type": "uint256" }
],
"name": "getBorrowRate",
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [
{ "internalType": "uint256", "name": "cash", "type": "uint256" },
{ "internalType": "uint256", "name": "borrows", "type": "uint256" },
{ "internalType": "uint256", "name": "reserves", "type": "uint256" },
{ "internalType": "uint256", "name": "reserveFactorMantissa", "type": "uint256" }
],
"name": "getSupplyRate",
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "isInterestRateModel",
"outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "jumpMultiplierPerBlock",
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "kink",
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "multiplierPerBlock",
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [
{ "internalType": "uint256", "name": "cash", "type": "uint256" },
{ "internalType": "uint256", "name": "borrows", "type": "uint256" },
{ "internalType": "uint256", "name": "reserves", "type": "uint256" }
],
"name": "utilizationRate",
"outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
"payable": false,
"stateMutability": "pure",
"type": "function"
}
]
Loading
Loading