Skip to content
Permalink
73cd8b3e98
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
17 lines (13 sloc) 324 Bytes
package namesys.pb;
message IpnsEntry {
enum ValidityType {
// setting an EOL says "this record is valid until..."
EOL = 0;
}
required bytes value = 1;
required bytes signature = 2;
optional ValidityType validityType = 3;
optional bytes validity = 4;
optional uint64 sequence = 5;
optional uint64 ttl = 6;
}