Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/willow_utils/src/encoding/types.ts>PrivyEncodingScheme

TypeScript typings and utilities for the Willow protocol.
Latest
type alias PrivyEncodingScheme
import { type PrivyEncodingScheme } from "https://deno.land/x/willow_utils@1.0.0/src/encoding/types.ts";

Type Parameters

ValueType
PrivyType
definition: { encode: (value: ValueType, privy: PrivyType) => Uint8Array; encodedLength: (value: ValueType, privy: PrivyType) => number; decode: (encoded: Uint8Array, privy: PrivyType) => ValueType; decodeStream: (bytes: GrowingBytes, privy: PrivyType) => Promise<ValueType>; }