mirror of
https://github.com/logos-messaging/logos-messaging-js.git
synced 2026-01-15 06:23:09 +00:00
@waku packages are expected to (dev)depend on @waku/interfaces to implement them. Hence, to avoid possible cyclic (dev)dependency, define IEnr interface and use it as a type across @waku/packages.
35 lines
721 B
TypeScript
35 lines
721 B
TypeScript
import type { Waku2 } from "@waku/interfaces";
|
|
|
|
export function encodeWaku2(protocols: Waku2): number {
|
|
let byte = 0;
|
|
|
|
if (protocols.lightPush) byte += 1;
|
|
byte = byte << 1;
|
|
if (protocols.filter) byte += 1;
|
|
byte = byte << 1;
|
|
if (protocols.store) byte += 1;
|
|
byte = byte << 1;
|
|
if (protocols.relay) byte += 1;
|
|
|
|
return byte;
|
|
}
|
|
|
|
export function decodeWaku2(byte: number): Waku2 {
|
|
const waku2 = {
|
|
relay: false,
|
|
store: false,
|
|
filter: false,
|
|
lightPush: false,
|
|
};
|
|
|
|
if (byte % 2) waku2.relay = true;
|
|
byte = byte >> 1;
|
|
if (byte % 2) waku2.store = true;
|
|
byte = byte >> 1;
|
|
if (byte % 2) waku2.filter = true;
|
|
byte = byte >> 1;
|
|
if (byte % 2) waku2.lightPush = true;
|
|
|
|
return waku2;
|
|
}
|