Bump dep
This commit is contained in:
@@ -5,6 +5,11 @@ pragma solidity >=0.6.12;
|
||||
// File-version: 1
|
||||
|
||||
interface Writer {
|
||||
event WriterAdded(address _writer);
|
||||
event WriterRemoved(address _writer);
|
||||
|
||||
function addWriter(address _writer) external returns (bool);
|
||||
function deleteWriter(address _writer) external returns (bool);
|
||||
function isWriter(address _writer) external returns (bool);
|
||||
function writers(uint256 _idx) external view returns (address);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user