arweave-stream-tx
Version:
[](https://www.npmjs.com/package/arweave-stream-tx) [](https://github.com/CDDelta/arweave-stream-tx/actions?query=workflo
7 lines (6 loc) • 316 B
TypeScript
/// <reference types="node" />
import Transaction from 'arweave/node/lib/transaction';
/**
* Generates the Arweave transaction chunk information from the piped data stream.
*/
export declare function generateTransactionChunksAsync(): (source: AsyncIterable<Buffer>) => Promise<NonNullable<Transaction['chunks']>>;