ISP-SDK 0.2.3

easy to use isp tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
type CertifiedLog = record {
  context : text;
  cert : vec nat8;
  time : nat64;
  witness : vec nat8;
  index : nat64;
};
type Log = record { context : text };
service : {
  addAdmin : (principal) -> (bool);
  changeAdmin : (vec principal) -> (bool);
  getLogs : (nat64, nat64) -> (opt vec CertifiedLog) query;
  put : (Log) -> ();
}