@multiversx/sdk-dapp-swap
Version:
A library to hold the main logic for swapping between tokens on the MultiversX blockchain
17 lines • 414 B
TypeScript
export interface GraphqlErrorsResponseType {
message: string;
extensions: {
code: string;
};
}
export interface AuthorizationHeadersRequestParamsType {
url: string;
params?: Record<string, any>;
body: {
query?: string;
operationName?: string;
variables?: Record<string, any>;
};
method?: 'POST' | 'post';
}
//# sourceMappingURL=network.types.d.ts.map