n8n-nodes-wax
Version:
n8n Community Node Package for the WAX Blockchain
13 lines (12 loc) • 353 B
TypeScript
export default class BaseCoder {
private readonly ALPHABET;
private readonly BASE;
private readonly BASE_MAP;
private readonly LEADER;
private readonly FACTOR;
private readonly iFACTOR;
constructor(ALPHABET: string);
encode(source: Uint8Array): string;
decode(source: string): Uint8Array;
private decodeUnsafe;
}