testweave-sdk
Version:
This is the SDK of TestWeave. TestWeave is the testing environment of the Arweave.
9 lines (7 loc) • 453 B
text/typescript
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>>;
}