mirror of
https://github.com/Instadapp/dsa-connectors-old.git
synced 2024-07-29 22:47:46 +00:00
10 lines
309 B
Solidity
10 lines
309 B
Solidity
|
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;
|
||
|
}
|