ethers.js/lib.esm/utils/rlp.js

9 lines
315 B
JavaScript
Raw Normal View History

2022-11-30 23:44:23 +03:00
/**
* The [[link-rlp]] (RLP) encoding is used throughout Ethereum
* to serialize nested structures of Arrays and data.
*
2022-12-03 05:27:06 +03:00
* @_subsection api/utils:Recursive-Length Prefix [about-rlp]
2022-11-30 23:44:23 +03:00
*/
2022-09-05 23:57:11 +03:00
export { decodeRlp } from "./rlp-decode.js";
export { encodeRlp } from "./rlp-encode.js";
//# sourceMappingURL=rlp.js.map