testweave-sdk
Version:
This is the SDK of TestWeave. TestWeave is the testing environment of the Arweave.
8 lines (7 loc) • 391 B
TypeScript
/// <reference types="node" />
import { AxiosRequestConfig, AxiosResponse } from 'axios';
export default interface ITestWeaveTransactionsManager {
resolvePool(): Promise<Array<string>>;
getPost(endpoint: string, body: Buffer | string | object, config?: AxiosRequestConfig): Promise<AxiosResponse>;
getGet(endpoint: string, config?: AxiosRequestConfig): Promise<AxiosResponse>;
}