changed functions into constant variables

This commit is contained in:
Samyak Jain 2021-02-07 23:01:30 +05:30
parent ac505457cd
commit 81e54d6841

View File

@ -1,6 +1,6 @@
pragma solidity ^0.7.0; pragma solidity ^0.7.0;
import { MemoryInterface } from "./interfaces.sol"; import { MemoryInterface, InstaMapping } from "./interfaces.sol";
abstract contract Stores { abstract contract Stores {
@ -8,36 +8,30 @@ abstract contract Stores {
/** /**
* @dev Return ethereum address * @dev Return ethereum address
*/ */
function getEthAddr() internal pure returns (address) { address constant internal ethAddr = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE;
return 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; // ETH Address
}
/** /**
* @dev Return memory variable address * @dev Return memory variable address
*/ */
function getMemoryAddr() internal pure returns (address) { MemoryInterface constant internal instaMemory = MemoryInterface(0x8a5419CfC711B2343c17a6ABf4B2bAFaBb06957F);
return 0x8a5419CfC711B2343c17a6ABf4B2bAFaBb06957F; // InstaMemory Address
}
/** /**
* @dev Return InstaDApp Mapping Addresses * @dev Return InstaDApp Mapping Addresses
*/ */
function getMappingAddr() internal pure returns (address) { InstaMapping constant internal instaMapping = InstaMapping(0xe81F70Cc7C0D46e12d70efc60607F16bbD617E88);
return 0xe81F70Cc7C0D46e12d70efc60607F16bbD617E88; // InstaMapping Address
}
/** /**
* @dev Get Uint value from InstaMemory Contract. * @dev Get Uint value from InstaMemory Contract.
*/ */
function getUint(uint getId, uint val) internal returns (uint returnVal) { function getUint(uint getId, uint val) internal returns (uint returnVal) {
returnVal = getId == 0 ? val : MemoryInterface(getMemoryAddr()).getUint(getId); returnVal = getId == 0 ? val : instaMemory.getUint(getId);
} }
/** /**
* @dev Set Uint value in InstaMemory Contract. * @dev Set Uint value in InstaMemory Contract.
*/ */
function setUint(uint setId, uint val) virtual internal { function setUint(uint setId, uint val) virtual internal {
if (setId != 0) MemoryInterface(getMemoryAddr()).setUint(setId, val); if (setId != 0) instaMemory.setUint(setId, val);
} }
} }