mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-02 13:53:12 +00:00
* regen lockfile * commit new proto code * chore: upgrade protons-runtime to 5.4.0 * chore: have src/generated as a dedicated directory for generated proto code * chore: ignore unused vars in proto * chore: update lockfile * fix: eslint errors * chore: handle flaky tests edge case * chore: update playright docker image * rm: only * rm: console * chore: regen lockfile * chore: update playright docker image
809 lines
20 KiB
TypeScript
809 lines
20 KiB
TypeScript
/* eslint-disable import/export */
|
|
/* eslint-disable complexity */
|
|
/* eslint-disable @typescript-eslint/no-namespace */
|
|
/* eslint-disable @typescript-eslint/no-unnecessary-boolean-literal-compare */
|
|
/* eslint-disable @typescript-eslint/no-empty-interface */
|
|
|
|
import { type Codec, CodeError, decodeMessage, type DecodeOptions, encodeMessage, enumeration, message } from 'protons-runtime'
|
|
import { alloc as uint8ArrayAlloc } from 'uint8arrays/alloc'
|
|
import type { Uint8ArrayList } from 'uint8arraylist'
|
|
|
|
export interface Index {
|
|
digest: Uint8Array
|
|
receiverTime: bigint
|
|
senderTime: bigint
|
|
pubsubTopic: string
|
|
}
|
|
|
|
export namespace Index {
|
|
let _codec: Codec<Index>
|
|
|
|
export const codec = (): Codec<Index> => {
|
|
if (_codec == null) {
|
|
_codec = message<Index>((obj, w, opts = {}) => {
|
|
if (opts.lengthDelimited !== false) {
|
|
w.fork()
|
|
}
|
|
|
|
if ((obj.digest != null && obj.digest.byteLength > 0)) {
|
|
w.uint32(10)
|
|
w.bytes(obj.digest)
|
|
}
|
|
|
|
if ((obj.receiverTime != null && obj.receiverTime !== 0n)) {
|
|
w.uint32(16)
|
|
w.sint64(obj.receiverTime)
|
|
}
|
|
|
|
if ((obj.senderTime != null && obj.senderTime !== 0n)) {
|
|
w.uint32(24)
|
|
w.sint64(obj.senderTime)
|
|
}
|
|
|
|
if ((obj.pubsubTopic != null && obj.pubsubTopic !== '')) {
|
|
w.uint32(34)
|
|
w.string(obj.pubsubTopic)
|
|
}
|
|
|
|
if (opts.lengthDelimited !== false) {
|
|
w.ldelim()
|
|
}
|
|
}, (reader, length, opts = {}) => {
|
|
const obj: any = {
|
|
digest: uint8ArrayAlloc(0),
|
|
receiverTime: 0n,
|
|
senderTime: 0n,
|
|
pubsubTopic: ''
|
|
}
|
|
|
|
const end = length == null ? reader.len : reader.pos + length
|
|
|
|
while (reader.pos < end) {
|
|
const tag = reader.uint32()
|
|
|
|
switch (tag >>> 3) {
|
|
case 1: {
|
|
obj.digest = reader.bytes()
|
|
break
|
|
}
|
|
case 2: {
|
|
obj.receiverTime = reader.sint64()
|
|
break
|
|
}
|
|
case 3: {
|
|
obj.senderTime = reader.sint64()
|
|
break
|
|
}
|
|
case 4: {
|
|
obj.pubsubTopic = reader.string()
|
|
break
|
|
}
|
|
default: {
|
|
reader.skipType(tag & 7)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
return obj
|
|
})
|
|
}
|
|
|
|
return _codec
|
|
}
|
|
|
|
export const encode = (obj: Partial<Index>): Uint8Array => {
|
|
return encodeMessage(obj, Index.codec())
|
|
}
|
|
|
|
export const decode = (buf: Uint8Array | Uint8ArrayList, opts?: DecodeOptions<Index>): Index => {
|
|
return decodeMessage(buf, Index.codec(), opts)
|
|
}
|
|
}
|
|
|
|
export interface PagingInfo {
|
|
pageSize?: bigint
|
|
cursor?: Index
|
|
direction?: PagingInfo.Direction
|
|
}
|
|
|
|
export namespace PagingInfo {
|
|
export enum Direction {
|
|
BACKWARD = 'BACKWARD',
|
|
FORWARD = 'FORWARD'
|
|
}
|
|
|
|
enum __DirectionValues {
|
|
BACKWARD = 0,
|
|
FORWARD = 1
|
|
}
|
|
|
|
export namespace Direction {
|
|
export const codec = (): Codec<Direction> => {
|
|
return enumeration<Direction>(__DirectionValues)
|
|
}
|
|
}
|
|
|
|
let _codec: Codec<PagingInfo>
|
|
|
|
export const codec = (): Codec<PagingInfo> => {
|
|
if (_codec == null) {
|
|
_codec = message<PagingInfo>((obj, w, opts = {}) => {
|
|
if (opts.lengthDelimited !== false) {
|
|
w.fork()
|
|
}
|
|
|
|
if (obj.pageSize != null) {
|
|
w.uint32(8)
|
|
w.uint64(obj.pageSize)
|
|
}
|
|
|
|
if (obj.cursor != null) {
|
|
w.uint32(18)
|
|
Index.codec().encode(obj.cursor, w)
|
|
}
|
|
|
|
if (obj.direction != null) {
|
|
w.uint32(24)
|
|
PagingInfo.Direction.codec().encode(obj.direction, w)
|
|
}
|
|
|
|
if (opts.lengthDelimited !== false) {
|
|
w.ldelim()
|
|
}
|
|
}, (reader, length, opts = {}) => {
|
|
const obj: any = {}
|
|
|
|
const end = length == null ? reader.len : reader.pos + length
|
|
|
|
while (reader.pos < end) {
|
|
const tag = reader.uint32()
|
|
|
|
switch (tag >>> 3) {
|
|
case 1: {
|
|
obj.pageSize = reader.uint64()
|
|
break
|
|
}
|
|
case 2: {
|
|
obj.cursor = Index.codec().decode(reader, reader.uint32(), {
|
|
limits: opts.limits?.cursor
|
|
})
|
|
break
|
|
}
|
|
case 3: {
|
|
obj.direction = PagingInfo.Direction.codec().decode(reader)
|
|
break
|
|
}
|
|
default: {
|
|
reader.skipType(tag & 7)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
return obj
|
|
})
|
|
}
|
|
|
|
return _codec
|
|
}
|
|
|
|
export const encode = (obj: Partial<PagingInfo>): Uint8Array => {
|
|
return encodeMessage(obj, PagingInfo.codec())
|
|
}
|
|
|
|
export const decode = (buf: Uint8Array | Uint8ArrayList, opts?: DecodeOptions<PagingInfo>): PagingInfo => {
|
|
return decodeMessage(buf, PagingInfo.codec(), opts)
|
|
}
|
|
}
|
|
|
|
export interface ContentFilter {
|
|
contentTopic: string
|
|
}
|
|
|
|
export namespace ContentFilter {
|
|
let _codec: Codec<ContentFilter>
|
|
|
|
export const codec = (): Codec<ContentFilter> => {
|
|
if (_codec == null) {
|
|
_codec = message<ContentFilter>((obj, w, opts = {}) => {
|
|
if (opts.lengthDelimited !== false) {
|
|
w.fork()
|
|
}
|
|
|
|
if ((obj.contentTopic != null && obj.contentTopic !== '')) {
|
|
w.uint32(10)
|
|
w.string(obj.contentTopic)
|
|
}
|
|
|
|
if (opts.lengthDelimited !== false) {
|
|
w.ldelim()
|
|
}
|
|
}, (reader, length, opts = {}) => {
|
|
const obj: any = {
|
|
contentTopic: ''
|
|
}
|
|
|
|
const end = length == null ? reader.len : reader.pos + length
|
|
|
|
while (reader.pos < end) {
|
|
const tag = reader.uint32()
|
|
|
|
switch (tag >>> 3) {
|
|
case 1: {
|
|
obj.contentTopic = reader.string()
|
|
break
|
|
}
|
|
default: {
|
|
reader.skipType(tag & 7)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
return obj
|
|
})
|
|
}
|
|
|
|
return _codec
|
|
}
|
|
|
|
export const encode = (obj: Partial<ContentFilter>): Uint8Array => {
|
|
return encodeMessage(obj, ContentFilter.codec())
|
|
}
|
|
|
|
export const decode = (buf: Uint8Array | Uint8ArrayList, opts?: DecodeOptions<ContentFilter>): ContentFilter => {
|
|
return decodeMessage(buf, ContentFilter.codec(), opts)
|
|
}
|
|
}
|
|
|
|
export interface HistoryQuery {
|
|
pubsubTopic?: string
|
|
contentFilters: ContentFilter[]
|
|
pagingInfo?: PagingInfo
|
|
startTime?: bigint
|
|
endTime?: bigint
|
|
}
|
|
|
|
export namespace HistoryQuery {
|
|
let _codec: Codec<HistoryQuery>
|
|
|
|
export const codec = (): Codec<HistoryQuery> => {
|
|
if (_codec == null) {
|
|
_codec = message<HistoryQuery>((obj, w, opts = {}) => {
|
|
if (opts.lengthDelimited !== false) {
|
|
w.fork()
|
|
}
|
|
|
|
if (obj.pubsubTopic != null) {
|
|
w.uint32(18)
|
|
w.string(obj.pubsubTopic)
|
|
}
|
|
|
|
if (obj.contentFilters != null) {
|
|
for (const value of obj.contentFilters) {
|
|
w.uint32(26)
|
|
ContentFilter.codec().encode(value, w)
|
|
}
|
|
}
|
|
|
|
if (obj.pagingInfo != null) {
|
|
w.uint32(34)
|
|
PagingInfo.codec().encode(obj.pagingInfo, w)
|
|
}
|
|
|
|
if (obj.startTime != null) {
|
|
w.uint32(40)
|
|
w.sint64(obj.startTime)
|
|
}
|
|
|
|
if (obj.endTime != null) {
|
|
w.uint32(48)
|
|
w.sint64(obj.endTime)
|
|
}
|
|
|
|
if (opts.lengthDelimited !== false) {
|
|
w.ldelim()
|
|
}
|
|
}, (reader, length, opts = {}) => {
|
|
const obj: any = {
|
|
contentFilters: []
|
|
}
|
|
|
|
const end = length == null ? reader.len : reader.pos + length
|
|
|
|
while (reader.pos < end) {
|
|
const tag = reader.uint32()
|
|
|
|
switch (tag >>> 3) {
|
|
case 2: {
|
|
obj.pubsubTopic = reader.string()
|
|
break
|
|
}
|
|
case 3: {
|
|
if (opts.limits?.contentFilters != null && obj.contentFilters.length === opts.limits.contentFilters) {
|
|
throw new CodeError('decode error - map field "contentFilters" had too many elements', 'ERR_MAX_LENGTH')
|
|
}
|
|
|
|
obj.contentFilters.push(ContentFilter.codec().decode(reader, reader.uint32(), {
|
|
limits: opts.limits?.contentFilters$
|
|
}))
|
|
break
|
|
}
|
|
case 4: {
|
|
obj.pagingInfo = PagingInfo.codec().decode(reader, reader.uint32(), {
|
|
limits: opts.limits?.pagingInfo
|
|
})
|
|
break
|
|
}
|
|
case 5: {
|
|
obj.startTime = reader.sint64()
|
|
break
|
|
}
|
|
case 6: {
|
|
obj.endTime = reader.sint64()
|
|
break
|
|
}
|
|
default: {
|
|
reader.skipType(tag & 7)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
return obj
|
|
})
|
|
}
|
|
|
|
return _codec
|
|
}
|
|
|
|
export const encode = (obj: Partial<HistoryQuery>): Uint8Array => {
|
|
return encodeMessage(obj, HistoryQuery.codec())
|
|
}
|
|
|
|
export const decode = (buf: Uint8Array | Uint8ArrayList, opts?: DecodeOptions<HistoryQuery>): HistoryQuery => {
|
|
return decodeMessage(buf, HistoryQuery.codec(), opts)
|
|
}
|
|
}
|
|
|
|
export interface HistoryResponse {
|
|
messages: WakuMessage[]
|
|
pagingInfo?: PagingInfo
|
|
error: HistoryResponse.HistoryError
|
|
}
|
|
|
|
export namespace HistoryResponse {
|
|
export enum HistoryError {
|
|
NONE = 'NONE',
|
|
INVALID_CURSOR = 'INVALID_CURSOR'
|
|
}
|
|
|
|
enum __HistoryErrorValues {
|
|
NONE = 0,
|
|
INVALID_CURSOR = 1
|
|
}
|
|
|
|
export namespace HistoryError {
|
|
export const codec = (): Codec<HistoryError> => {
|
|
return enumeration<HistoryError>(__HistoryErrorValues)
|
|
}
|
|
}
|
|
|
|
let _codec: Codec<HistoryResponse>
|
|
|
|
export const codec = (): Codec<HistoryResponse> => {
|
|
if (_codec == null) {
|
|
_codec = message<HistoryResponse>((obj, w, opts = {}) => {
|
|
if (opts.lengthDelimited !== false) {
|
|
w.fork()
|
|
}
|
|
|
|
if (obj.messages != null) {
|
|
for (const value of obj.messages) {
|
|
w.uint32(18)
|
|
WakuMessage.codec().encode(value, w)
|
|
}
|
|
}
|
|
|
|
if (obj.pagingInfo != null) {
|
|
w.uint32(26)
|
|
PagingInfo.codec().encode(obj.pagingInfo, w)
|
|
}
|
|
|
|
if (obj.error != null && __HistoryErrorValues[obj.error] !== 0) {
|
|
w.uint32(32)
|
|
HistoryResponse.HistoryError.codec().encode(obj.error, w)
|
|
}
|
|
|
|
if (opts.lengthDelimited !== false) {
|
|
w.ldelim()
|
|
}
|
|
}, (reader, length, opts = {}) => {
|
|
const obj: any = {
|
|
messages: [],
|
|
error: HistoryError.NONE
|
|
}
|
|
|
|
const end = length == null ? reader.len : reader.pos + length
|
|
|
|
while (reader.pos < end) {
|
|
const tag = reader.uint32()
|
|
|
|
switch (tag >>> 3) {
|
|
case 2: {
|
|
if (opts.limits?.messages != null && obj.messages.length === opts.limits.messages) {
|
|
throw new CodeError('decode error - map field "messages" had too many elements', 'ERR_MAX_LENGTH')
|
|
}
|
|
|
|
obj.messages.push(WakuMessage.codec().decode(reader, reader.uint32(), {
|
|
limits: opts.limits?.messages$
|
|
}))
|
|
break
|
|
}
|
|
case 3: {
|
|
obj.pagingInfo = PagingInfo.codec().decode(reader, reader.uint32(), {
|
|
limits: opts.limits?.pagingInfo
|
|
})
|
|
break
|
|
}
|
|
case 4: {
|
|
obj.error = HistoryResponse.HistoryError.codec().decode(reader)
|
|
break
|
|
}
|
|
default: {
|
|
reader.skipType(tag & 7)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
return obj
|
|
})
|
|
}
|
|
|
|
return _codec
|
|
}
|
|
|
|
export const encode = (obj: Partial<HistoryResponse>): Uint8Array => {
|
|
return encodeMessage(obj, HistoryResponse.codec())
|
|
}
|
|
|
|
export const decode = (buf: Uint8Array | Uint8ArrayList, opts?: DecodeOptions<HistoryResponse>): HistoryResponse => {
|
|
return decodeMessage(buf, HistoryResponse.codec(), opts)
|
|
}
|
|
}
|
|
|
|
export interface HistoryRpc {
|
|
requestId: string
|
|
query?: HistoryQuery
|
|
response?: HistoryResponse
|
|
}
|
|
|
|
export namespace HistoryRpc {
|
|
let _codec: Codec<HistoryRpc>
|
|
|
|
export const codec = (): Codec<HistoryRpc> => {
|
|
if (_codec == null) {
|
|
_codec = message<HistoryRpc>((obj, w, opts = {}) => {
|
|
if (opts.lengthDelimited !== false) {
|
|
w.fork()
|
|
}
|
|
|
|
if ((obj.requestId != null && obj.requestId !== '')) {
|
|
w.uint32(10)
|
|
w.string(obj.requestId)
|
|
}
|
|
|
|
if (obj.query != null) {
|
|
w.uint32(18)
|
|
HistoryQuery.codec().encode(obj.query, w)
|
|
}
|
|
|
|
if (obj.response != null) {
|
|
w.uint32(26)
|
|
HistoryResponse.codec().encode(obj.response, w)
|
|
}
|
|
|
|
if (opts.lengthDelimited !== false) {
|
|
w.ldelim()
|
|
}
|
|
}, (reader, length, opts = {}) => {
|
|
const obj: any = {
|
|
requestId: ''
|
|
}
|
|
|
|
const end = length == null ? reader.len : reader.pos + length
|
|
|
|
while (reader.pos < end) {
|
|
const tag = reader.uint32()
|
|
|
|
switch (tag >>> 3) {
|
|
case 1: {
|
|
obj.requestId = reader.string()
|
|
break
|
|
}
|
|
case 2: {
|
|
obj.query = HistoryQuery.codec().decode(reader, reader.uint32(), {
|
|
limits: opts.limits?.query
|
|
})
|
|
break
|
|
}
|
|
case 3: {
|
|
obj.response = HistoryResponse.codec().decode(reader, reader.uint32(), {
|
|
limits: opts.limits?.response
|
|
})
|
|
break
|
|
}
|
|
default: {
|
|
reader.skipType(tag & 7)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
return obj
|
|
})
|
|
}
|
|
|
|
return _codec
|
|
}
|
|
|
|
export const encode = (obj: Partial<HistoryRpc>): Uint8Array => {
|
|
return encodeMessage(obj, HistoryRpc.codec())
|
|
}
|
|
|
|
export const decode = (buf: Uint8Array | Uint8ArrayList, opts?: DecodeOptions<HistoryRpc>): HistoryRpc => {
|
|
return decodeMessage(buf, HistoryRpc.codec(), opts)
|
|
}
|
|
}
|
|
|
|
export interface RateLimitProof {
|
|
proof: Uint8Array
|
|
merkleRoot: Uint8Array
|
|
epoch: Uint8Array
|
|
shareX: Uint8Array
|
|
shareY: Uint8Array
|
|
nullifier: Uint8Array
|
|
rlnIdentifier: Uint8Array
|
|
}
|
|
|
|
export namespace RateLimitProof {
|
|
let _codec: Codec<RateLimitProof>
|
|
|
|
export const codec = (): Codec<RateLimitProof> => {
|
|
if (_codec == null) {
|
|
_codec = message<RateLimitProof>((obj, w, opts = {}) => {
|
|
if (opts.lengthDelimited !== false) {
|
|
w.fork()
|
|
}
|
|
|
|
if ((obj.proof != null && obj.proof.byteLength > 0)) {
|
|
w.uint32(10)
|
|
w.bytes(obj.proof)
|
|
}
|
|
|
|
if ((obj.merkleRoot != null && obj.merkleRoot.byteLength > 0)) {
|
|
w.uint32(18)
|
|
w.bytes(obj.merkleRoot)
|
|
}
|
|
|
|
if ((obj.epoch != null && obj.epoch.byteLength > 0)) {
|
|
w.uint32(26)
|
|
w.bytes(obj.epoch)
|
|
}
|
|
|
|
if ((obj.shareX != null && obj.shareX.byteLength > 0)) {
|
|
w.uint32(34)
|
|
w.bytes(obj.shareX)
|
|
}
|
|
|
|
if ((obj.shareY != null && obj.shareY.byteLength > 0)) {
|
|
w.uint32(42)
|
|
w.bytes(obj.shareY)
|
|
}
|
|
|
|
if ((obj.nullifier != null && obj.nullifier.byteLength > 0)) {
|
|
w.uint32(50)
|
|
w.bytes(obj.nullifier)
|
|
}
|
|
|
|
if ((obj.rlnIdentifier != null && obj.rlnIdentifier.byteLength > 0)) {
|
|
w.uint32(58)
|
|
w.bytes(obj.rlnIdentifier)
|
|
}
|
|
|
|
if (opts.lengthDelimited !== false) {
|
|
w.ldelim()
|
|
}
|
|
}, (reader, length, opts = {}) => {
|
|
const obj: any = {
|
|
proof: uint8ArrayAlloc(0),
|
|
merkleRoot: uint8ArrayAlloc(0),
|
|
epoch: uint8ArrayAlloc(0),
|
|
shareX: uint8ArrayAlloc(0),
|
|
shareY: uint8ArrayAlloc(0),
|
|
nullifier: uint8ArrayAlloc(0),
|
|
rlnIdentifier: uint8ArrayAlloc(0)
|
|
}
|
|
|
|
const end = length == null ? reader.len : reader.pos + length
|
|
|
|
while (reader.pos < end) {
|
|
const tag = reader.uint32()
|
|
|
|
switch (tag >>> 3) {
|
|
case 1: {
|
|
obj.proof = reader.bytes()
|
|
break
|
|
}
|
|
case 2: {
|
|
obj.merkleRoot = reader.bytes()
|
|
break
|
|
}
|
|
case 3: {
|
|
obj.epoch = reader.bytes()
|
|
break
|
|
}
|
|
case 4: {
|
|
obj.shareX = reader.bytes()
|
|
break
|
|
}
|
|
case 5: {
|
|
obj.shareY = reader.bytes()
|
|
break
|
|
}
|
|
case 6: {
|
|
obj.nullifier = reader.bytes()
|
|
break
|
|
}
|
|
case 7: {
|
|
obj.rlnIdentifier = reader.bytes()
|
|
break
|
|
}
|
|
default: {
|
|
reader.skipType(tag & 7)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
return obj
|
|
})
|
|
}
|
|
|
|
return _codec
|
|
}
|
|
|
|
export const encode = (obj: Partial<RateLimitProof>): Uint8Array => {
|
|
return encodeMessage(obj, RateLimitProof.codec())
|
|
}
|
|
|
|
export const decode = (buf: Uint8Array | Uint8ArrayList, opts?: DecodeOptions<RateLimitProof>): RateLimitProof => {
|
|
return decodeMessage(buf, RateLimitProof.codec(), opts)
|
|
}
|
|
}
|
|
|
|
export interface WakuMessage {
|
|
payload: Uint8Array
|
|
contentTopic: string
|
|
version?: number
|
|
timestamp?: bigint
|
|
meta?: Uint8Array
|
|
rateLimitProof?: RateLimitProof
|
|
ephemeral?: boolean
|
|
}
|
|
|
|
export namespace WakuMessage {
|
|
let _codec: Codec<WakuMessage>
|
|
|
|
export const codec = (): Codec<WakuMessage> => {
|
|
if (_codec == null) {
|
|
_codec = message<WakuMessage>((obj, w, opts = {}) => {
|
|
if (opts.lengthDelimited !== false) {
|
|
w.fork()
|
|
}
|
|
|
|
if ((obj.payload != null && obj.payload.byteLength > 0)) {
|
|
w.uint32(10)
|
|
w.bytes(obj.payload)
|
|
}
|
|
|
|
if ((obj.contentTopic != null && obj.contentTopic !== '')) {
|
|
w.uint32(18)
|
|
w.string(obj.contentTopic)
|
|
}
|
|
|
|
if (obj.version != null) {
|
|
w.uint32(24)
|
|
w.uint32(obj.version)
|
|
}
|
|
|
|
if (obj.timestamp != null) {
|
|
w.uint32(80)
|
|
w.sint64(obj.timestamp)
|
|
}
|
|
|
|
if (obj.meta != null) {
|
|
w.uint32(90)
|
|
w.bytes(obj.meta)
|
|
}
|
|
|
|
if (obj.rateLimitProof != null) {
|
|
w.uint32(170)
|
|
RateLimitProof.codec().encode(obj.rateLimitProof, w)
|
|
}
|
|
|
|
if (obj.ephemeral != null) {
|
|
w.uint32(248)
|
|
w.bool(obj.ephemeral)
|
|
}
|
|
|
|
if (opts.lengthDelimited !== false) {
|
|
w.ldelim()
|
|
}
|
|
}, (reader, length, opts = {}) => {
|
|
const obj: any = {
|
|
payload: uint8ArrayAlloc(0),
|
|
contentTopic: ''
|
|
}
|
|
|
|
const end = length == null ? reader.len : reader.pos + length
|
|
|
|
while (reader.pos < end) {
|
|
const tag = reader.uint32()
|
|
|
|
switch (tag >>> 3) {
|
|
case 1: {
|
|
obj.payload = reader.bytes()
|
|
break
|
|
}
|
|
case 2: {
|
|
obj.contentTopic = reader.string()
|
|
break
|
|
}
|
|
case 3: {
|
|
obj.version = reader.uint32()
|
|
break
|
|
}
|
|
case 10: {
|
|
obj.timestamp = reader.sint64()
|
|
break
|
|
}
|
|
case 11: {
|
|
obj.meta = reader.bytes()
|
|
break
|
|
}
|
|
case 21: {
|
|
obj.rateLimitProof = RateLimitProof.codec().decode(reader, reader.uint32(), {
|
|
limits: opts.limits?.rateLimitProof
|
|
})
|
|
break
|
|
}
|
|
case 31: {
|
|
obj.ephemeral = reader.bool()
|
|
break
|
|
}
|
|
default: {
|
|
reader.skipType(tag & 7)
|
|
break
|
|
}
|
|
}
|
|
}
|
|
|
|
return obj
|
|
})
|
|
}
|
|
|
|
return _codec
|
|
}
|
|
|
|
export const encode = (obj: Partial<WakuMessage>): Uint8Array => {
|
|
return encodeMessage(obj, WakuMessage.codec())
|
|
}
|
|
|
|
export const decode = (buf: Uint8Array | Uint8ArrayList, opts?: DecodeOptions<WakuMessage>): WakuMessage => {
|
|
return decodeMessage(buf, WakuMessage.codec(), opts)
|
|
}
|
|
}
|