testweave-sdk
Version:
This is the SDK of TestWeave. TestWeave is the testing environment of the Arweave.
16 lines (14 loc) • 461 B
text/typescript
import { AxiosRequestConfig, AxiosResponse } from 'axios';
export default interface ITestWeaveTransactionsManager {
resolvePool(): Promise<Array<string>>;
getPost(
endpoint: string,
// eslint-disable-next-line @typescript-eslint/ban-types
body: Buffer | string | object,
config?: AxiosRequestConfig,
): Promise<AxiosResponse>;
getGet(
endpoint: string,
config?: AxiosRequestConfig,
): Promise<AxiosResponse>;
}