ipfs storage for images and other nontext items. for use with etica - runs on etica network and currencys
https://collect.etica-stats.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
542 B
20 lines
542 B
/** |
|
* 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 type RlpStructuredData = string | Array<RlpStructuredData>; |
|
|
|
/** |
|
* An RLP-encoded structure, which allows Uint8Array. |
|
*/ |
|
export type RlpStructuredDataish = string | Uint8Array | Array<RlpStructuredDataish>; |
|
|
|
|