mirror of
https://github.com/Instadapp/Gelato-automations.git
synced 2024-07-29 22:28:07 +00:00
removed unnecessary contracts
This commit is contained in:
parent
8aedd3e531
commit
7295ad39fe
|
@ -1,66 +0,0 @@
|
||||||
// "SPDX-License-Identifier: MIT"
|
|
||||||
pragma solidity ^0.6.0;
|
|
||||||
|
|
||||||
interface MemoryInterface {
|
|
||||||
function getUint(uint id) external returns (uint num);
|
|
||||||
function setUint(uint id, uint val) external;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface EventInterface {
|
|
||||||
function emitEvent(uint connectorType, uint connectorID, bytes32 eventCode, bytes calldata eventData) external;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
contract Stores {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @dev Return ethereum address
|
|
||||||
*/
|
|
||||||
function getEthAddr() internal pure returns (address) {
|
|
||||||
return 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; // ETH Address
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @dev Return memory variable address
|
|
||||||
*/
|
|
||||||
function getMemoryAddr() internal pure returns (address) {
|
|
||||||
return 0x8a5419CfC711B2343c17a6ABf4B2bAFaBb06957F; // InstaMemory Address
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @dev Return InstaEvent Address.
|
|
||||||
*/
|
|
||||||
function getEventAddr() internal pure returns (address) {
|
|
||||||
return 0x2af7ea6Cb911035f3eb1ED895Cb6692C39ecbA97; // InstaEvent Address
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @dev Get Uint value from InstaMemory Contract.
|
|
||||||
*/
|
|
||||||
function getUint(uint getId, uint val) internal returns (uint returnVal) {
|
|
||||||
returnVal = getId == 0 ? val : MemoryInterface(getMemoryAddr()).getUint(getId);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @dev Set Uint value in InstaMemory Contract.
|
|
||||||
*/
|
|
||||||
function setUint(uint setId, uint val) virtual internal {
|
|
||||||
if (setId != 0) MemoryInterface(getMemoryAddr()).setUint(setId, val);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @dev emit event on event contract
|
|
||||||
*/
|
|
||||||
function emitEvent(bytes32 eventCode, bytes memory eventData) virtual internal {
|
|
||||||
(uint model, uint id) = connectorID();
|
|
||||||
EventInterface(getEventAddr()).emitEvent(model, id, eventCode, eventData);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @dev Connector Details - needs to be changed before deployment
|
|
||||||
*/
|
|
||||||
function connectorID() public view virtual returns(uint model, uint id) {
|
|
||||||
(model, id) = (0, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,66 +0,0 @@
|
||||||
// "SPDX-License-Identifier: MIT"
|
|
||||||
pragma solidity ^0.6.0;
|
|
||||||
|
|
||||||
interface MemoryInterface {
|
|
||||||
function getUint(uint id) external returns (uint num);
|
|
||||||
function setUint(uint id, uint val) external;
|
|
||||||
}
|
|
||||||
|
|
||||||
interface EventInterface {
|
|
||||||
function emitEvent(uint connectorType, uint connectorID, bytes32 eventCode, bytes calldata eventData) external;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
contract Stores {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @dev Return ethereum address
|
|
||||||
*/
|
|
||||||
function getEthAddr() internal pure returns (address) {
|
|
||||||
return 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; // ETH Address
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @dev Return memory variable address
|
|
||||||
*/
|
|
||||||
function getMemoryAddr() internal pure returns (address) {
|
|
||||||
return 0x8a5419CfC711B2343c17a6ABf4B2bAFaBb06957F; // InstaMemory Address
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @dev Return InstaEvent Address.
|
|
||||||
*/
|
|
||||||
function getEventAddr() internal pure returns (address) {
|
|
||||||
return 0x2af7ea6Cb911035f3eb1ED895Cb6692C39ecbA97; // InstaEvent Address
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @dev Get Uint value from InstaMemory Contract.
|
|
||||||
*/
|
|
||||||
function getUint(uint getId, uint val) internal returns (uint returnVal) {
|
|
||||||
returnVal = getId == 0 ? val : MemoryInterface(getMemoryAddr()).getUint(getId);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @dev Set Uint value in InstaMemory Contract.
|
|
||||||
*/
|
|
||||||
function setUint(uint setId, uint val) virtual internal {
|
|
||||||
if (setId != 0) MemoryInterface(getMemoryAddr()).setUint(setId, val);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @dev emit event on event contract
|
|
||||||
*/
|
|
||||||
function emitEvent(bytes32 eventCode, bytes memory eventData) virtual internal {
|
|
||||||
(uint model, uint id) = connectorID();
|
|
||||||
EventInterface(getEventAddr()).emitEvent(model, id, eventCode, eventData);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @dev Connector Details - needs to be changed before deployment
|
|
||||||
*/
|
|
||||||
function connectorID() public view virtual returns(uint model, uint id) {
|
|
||||||
(model, id) = (0, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user