@usherlabs/ccxt
Version:
A JavaScript cryptocurrency trading library with support for 100+ exchanges + optional Verity zkTLS proof of data source.
17 lines (16 loc) • 554 B
TypeScript
/**
* The [[link-rlp]] (RLP) encoding is used throughout Ethereum
* to serialize nested structures of Arrays and data.
*
* @_subsection api/utils:Recursive-Length Prefix [about-rlp]
*/
export { decodeRlp } from "./rlp-decode.js";
export { encodeRlp } from "./rlp-encode.js";
/**
* An RLP-encoded structure.
*/
export declare type RlpStructuredData = string | Array<RlpStructuredData>;
/**
* An RLP-encoded structure, which allows Uint8Array.
*/
export declare type RlpStructuredDataish = string | Uint8Array | Array<RlpStructuredDataish>;