Gelato-automations/contracts/constants/CDebtBridge.sol
Twin Fish a8877205af
change gas cost constants (#89)
* increase debt bridge gas cost constants and premium
2020-11-30 11:13:40 +01:00

10 lines
277 B
Solidity

// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.7.4;
function GAS_COSTS_FOR_FULL_REFINANCE() pure returns (uint256[4] memory) {
return [uint256(2519000), 3140500, 3971000, 4345000];
}
uint256 constant PREMIUM = 30;
uint256 constant VAULT_CREATION_COST = 200000;