rlp.js 315 B

123456789
  1. /**
  2. * The [[link-rlp]] (RLP) encoding is used throughout Ethereum
  3. * to serialize nested structures of Arrays and data.
  4. *
  5. * @_subsection api/utils:Recursive-Length Prefix [about-rlp]
  6. */
  7. export { decodeRlp } from "./rlp-decode.js";
  8. export { encodeRlp } from "./rlp-encode.js";
  9. //# sourceMappingURL=rlp.js.map