ethers.js/src.ts/utils/rlp.ts
2022-09-09 03:37:38 -04:00

9 lines
197 B
TypeScript

/**
* An RLP-encoded structure.
*/
export type RlpStructuredData = string | Array<RlpStructuredData>;
export { decodeRlp } from "./rlp-decode.js";
export { encodeRlp } from "./rlp-encode.js";