-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsonrpc.js
43 lines (32 loc) · 1.18 KB
/
jsonrpc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Dependencies
const axios = require('axios');
const jsonrpc = require('jsonrpc-lite');
let requestIdCounter = 0;
async function doJsonrpcCall(endpoint, engineCall, jwtToken) {
try {
requestIdCounter++;
const request = jsonrpc.request(requestIdCounter, engineCall.method, engineCall.params);
const headers = {
'Content-Type': 'application/json',
'Authorization': `Bearer ${jwtToken}`
};
console.log(`[${endpoint}] calling ${engineCall.method}`);
const response = await axios.post(endpoint, request, { headers });
if (response.status !== 200) {
console.error('Error in JSON-RPC call:', response.status);
return;
}
const { result, error } = response.data;
if (error) {
console.error(`[${endpoint}] ${engineCall.method} error:`, error);
} else {
console.log(`[${endpoint}] ${engineCall.method} result:`, result);
}
} catch (error) {
console.error(`[${endpoint}] an error occurred during ${engineCall.method} call:`, error.cause);
}
}
// Rest of the code remains the same
module.exports = {
doJsonrpcCall
};