Bump dep
This commit is contained in:
parent
4b0ff00f20
commit
99dce60a97
@ -1 +1 @@
|
|||||||
chainlib-eth>=0.1.0b1,<0.2.0
|
chainlib-eth~=0.4.7
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
name = cic-contracts
|
name = cic-contracts
|
||||||
version = 0.1.0
|
version = 0.2.0
|
||||||
description = CIC network smart contract interfaces
|
description = CIC network smart contract interfaces
|
||||||
author = Louis Holbrook
|
author = Louis Holbrook
|
||||||
author_email = dev@holbrook.no
|
author_email = dev@holbrook.no
|
||||||
|
@ -5,6 +5,11 @@ pragma solidity >=0.6.12;
|
|||||||
// File-version: 1
|
// File-version: 1
|
||||||
|
|
||||||
interface Writer {
|
interface Writer {
|
||||||
|
event WriterAdded(address _writer);
|
||||||
|
event WriterRemoved(address _writer);
|
||||||
|
|
||||||
function addWriter(address _writer) external returns (bool);
|
function addWriter(address _writer) external returns (bool);
|
||||||
function deleteWriter(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);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user