mirror of
https://github.com/Instadapp/dsa-connectors-2.0.git
synced 2024-07-29 21:57:39 +00:00
53 lines
1.5 KiB
Solidity
53 lines
1.5 KiB
Solidity
|
//SPDX-License-Identifier: MIT
|
||
|
pragma solidity ^0.8.2;
|
||
|
|
||
|
import { MemoryInterface, InstaMapping, ListInterface, InstaConnectors } from "./interfaces.sol";
|
||
|
|
||
|
|
||
|
abstract contract Stores {
|
||
|
|
||
|
/**
|
||
|
* @dev Return ethereum address
|
||
|
*/
|
||
|
address constant internal ethAddr = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;
|
||
|
|
||
|
/**
|
||
|
* @dev Return Wrapped ETH address
|
||
|
*/
|
||
|
address constant internal wethAddr = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
|
||
|
|
||
|
/**
|
||
|
* @dev Return memory variable address
|
||
|
*/
|
||
|
MemoryInterface constant internal instaMemory = MemoryInterface(0x8a5419CfC711B2343c17a6ABf4B2bAFaBb06957F);
|
||
|
|
||
|
/**
|
||
|
* @dev Return InstaDApp Mapping Addresses
|
||
|
*/
|
||
|
InstaMapping constant internal instaMapping = InstaMapping(0xe81F70Cc7C0D46e12d70efc60607F16bbD617E88);
|
||
|
|
||
|
/**
|
||
|
* @dev Return InstaList Address
|
||
|
*/
|
||
|
ListInterface internal constant instaList = ListInterface(0x4c8a1BEb8a87765788946D6B19C6C6355194AbEb);
|
||
|
|
||
|
/**
|
||
|
* @dev Return connectors registry address
|
||
|
*/
|
||
|
InstaConnectors internal constant instaConnectors = InstaConnectors(0x97b0B3A8bDeFE8cB9563a3c610019Ad10DB8aD11);
|
||
|
|
||
|
/**
|
||
|
* @dev Get Uint value from InstaMemory Contract.
|
||
|
*/
|
||
|
function getUint(uint getId, uint val) internal returns (uint returnVal) {
|
||
|
returnVal = getId == 0 ? val : instaMemory.getUint(getId);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @dev Set Uint value in InstaMemory Contract.
|
||
|
*/
|
||
|
function setUint(uint setId, uint val) virtual internal {
|
||
|
if (setId != 0) instaMemory.setUint(setId, val);
|
||
|
}
|
||
|
|
||
|
}
|