mirror of
https://github.com/logos-messaging/lab.waku.org.git
synced 2026-05-02 09:03:41 +00:00
7 lines
269 B
TypeScript
7 lines
269 B
TypeScript
import { Field, Type } from "protobufjs";
|
|
|
|
export const ProtoSequencedMessage = new Type("SequencedMessage")
|
|
.add(new Field("hash", 1, "string"))
|
|
.add(new Field("total", 2, "uint64"))
|
|
.add(new Field("index", 3, "uint64"))
|
|
.add(new Field("sender", 4, "string")); |