You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
351 B
19 lines
351 B
pragma solidity ^0.7.4;
|
|
pragma experimental ABIEncoderV2;
|
|
|
|
address constant LENDING_POOL = 0xB53C1a33016B2DC2fF3653530bfF1848a515c8c5;
|
|
address constant CHAINLINK = 0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419;
|
|
|
|
function _addFive(uint x)
|
|
pure
|
|
returns (uint)
|
|
{
|
|
return x + 5;
|
|
}
|
|
|
|
function _addSeven(uint x)
|
|
pure
|
|
returns (uint)
|
|
{
|
|
return x + 7;
|
|
}
|
|
|