UNPKG

testweave-sdk

Version:

This is the SDK of TestWeave. TestWeave is the testing environment of the Arweave.

8 lines (7 loc) 450 B
import { JWKInterface } from 'arweave/node/lib/wallet'; import TestWeaveTransactionsManager from '../classes/class.testweave-transactions-manager'; export default interface ITestWeaveUtils { getRootJWK(): JWKInterface; dropFromRootAddress(targetAddress: string, winstonBalance: string, transactionsManager: TestWeaveTransactionsManager): Promise<string>; mine(transactionsManager: TestWeaveTransactionsManager): Promise<Array<string>>; }