This repository has been archived on 2023-08-31. You can view files and clone it, but cannot push or open issues or pull requests.
relay-plugin-registry/src/types.ts

13 lines
293 B
TypeScript

export interface SignedRegistryEntry {
pk: Uint8Array;
// revision number of this entry, maximum is (256^8)-1
revision: number;
// data stored in this entry, can have a maximum length of 48 bytes
data: Uint8Array;
// signature of this registry entry
signature?: Uint8Array;
}