44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import { randomBytes } from 'crypto';
|
|
import { JsonRpcResponse, RPCRequest } from './types';
|
|
|
|
export default class RPCClient {
|
|
public endpoint: string;
|
|
public headers: object;
|
|
constructor(endpoint: string, headers: object = {}) {
|
|
this.endpoint = endpoint;
|
|
this.headers = headers;
|
|
}
|
|
|
|
public id(): string {
|
|
return randomBytes(16).toString('hex');
|
|
}
|
|
|
|
public decorateRequest = (req: RPCRequest) => ({
|
|
...req,
|
|
id: this.id(),
|
|
jsonrpc: '2.0'
|
|
});
|
|
|
|
public call = (request: RPCRequest | any): Promise<JsonRpcResponse> => {
|
|
return fetch(this.endpoint, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
...this.headers,
|
|
},
|
|
body: JSON.stringify(this.decorateRequest(request))
|
|
}).then(r => r.json());
|
|
};
|
|
|
|
public batch = (requests: RPCRequest[] | any): Promise<JsonRpcResponse[]> => {
|
|
return fetch(this.endpoint, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
...this.headers,
|
|
},
|
|
body: JSON.stringify(requests.map(this.decorateRequest))
|
|
}).then(r => r.json());
|
|
};
|
|
}
|