mirror of
https://github.com/Instadapp/dsa-governance.git
synced 2024-07-29 22:27:52 +00:00
fix
This commit is contained in:
parent
baf9ec7e44
commit
5b7585584f
|
@ -549,7 +549,7 @@ contract PayloadIGP15 {
|
|||
IFluidVaultT1(vault_).updateCoreSettings(
|
||||
100 * 1e2, // 1x supplyRateMagnifier
|
||||
100 * 1e2, // 1x borrowRateMagnifier
|
||||
88 * 1e2, // 88% collateralFactor
|
||||
88 * 1e2, // 88% collateralFactor
|
||||
90 * 1e2, // 90% liquidationThreshold
|
||||
95 * 1e2, // 95% liquidationMaxLimit
|
||||
5 * 1e2, // 5% withdrawGap
|
||||
|
|
1
deployments/mainnet_1/PayloadIGP15.json
Normal file
1
deployments/mainnet_1/PayloadIGP15.json
Normal file
File diff suppressed because one or more lines are too long
22
scripts/deployIGP15.js
Normal file
22
scripts/deployIGP15.js
Normal file
|
@ -0,0 +1,22 @@
|
|||
const hre = require("hardhat");
|
||||
const { ethers } = hre;
|
||||
|
||||
async function main() {
|
||||
const PayloadIGP15 = await ethers.getContractFactory("PayloadIGP15")
|
||||
const payloadIGP15 = await PayloadIGP15.deploy()
|
||||
await payloadIGP15.deployed()
|
||||
|
||||
console.log("PayloadIGP15: ", payloadIGP15.address)
|
||||
|
||||
await hre.run("verify:verify", {
|
||||
address: payloadIGP15.address,
|
||||
constructorArguments: []
|
||||
})
|
||||
}
|
||||
|
||||
main()
|
||||
.then(() => process.exit(0))
|
||||
.catch(error => {
|
||||
console.error(error);
|
||||
process.exit(1);
|
||||
});
|
Loading…
Reference in New Issue
Block a user