@tronlink/core
Version:
The library serves as a core module within TronLink Extension, which provides low-level wallet functionality for both Tron and Ethereum networks, primary features includes account generation and transaction signing
21 lines (20 loc) • 468 B
TypeScript
export default class axiosFaker {
private defaultOps;
constructor(options: any);
config(options: any): void;
/**
* define FaxiosRequest=>FaxiosResponse
* @param req
*/
request(...req: any): Promise<{
data: null;
status: any;
statusText: any;
headers: any;
config: any;
request: any;
originalResponse: any;
}>;
private transformRequest;
private transformResponse;
}