2022-03-22 14:58:59 +00:00
|
|
|
//SPDX-License-Identifier: MIT
|
2022-03-12 15:34:42 +00:00
|
|
|
pragma solidity ^0.7.0;
|
|
|
|
|
|
|
|
import { MemoryInterface } from "./interfaces.sol";
|
|
|
|
|
|
|
|
abstract contract Stores {
|
|
|
|
/**
|
|
|
|
* @dev Return FTM address
|
|
|
|
*/
|
|
|
|
address internal constant ftmAddr =
|
|
|
|
0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Return Wrapped FTM address
|
|
|
|
*/
|
|
|
|
address internal constant wftmAddr =
|
|
|
|
0x21be370D5312f44cB42ce377BC9b8a0cEF1A4C83;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Return memory variable address
|
|
|
|
*/
|
|
|
|
MemoryInterface internal constant instaMemory =
|
|
|
|
MemoryInterface(0x56439117379A53bE3CC2C55217251e2481B7a1C8);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Get Uint value from InstaMemory Contract.
|
|
|
|
*/
|
|
|
|
function getUint(uint256 getId, uint256 val)
|
|
|
|
internal
|
|
|
|
returns (uint256 returnVal)
|
|
|
|
{
|
|
|
|
returnVal = getId == 0 ? val : instaMemory.getUint(getId);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dev Set Uint value in InstaMemory Contract.
|
|
|
|
*/
|
|
|
|
function setUint(uint256 setId, uint256 val) internal virtual {
|
|
|
|
if (setId != 0) instaMemory.setUint(setId, val);
|
|
|
|
}
|
|
|
|
}
|