forked from NethermindEth/juno
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjuno_rpc_api.json
More file actions
28 lines (28 loc) · 769 Bytes
/
Copy pathjuno_rpc_api.json
File metadata and controls
28 lines (28 loc) · 769 Bytes
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
{
"openrpc": "1.3.2",
"info": {
"title": "Juno RPC API",
"version": "0.1",
"description": "Provides additional (Juno specific) methods over and above the Starknet RPC API"
},
"methods": [
{
"name": "juno_version",
"summary": "The version of the Juno node hosting this API.",
"params": [],
"result": {
"name": "Juno node version",
"required": true,
"schema": {
"type": "string",
"description": "A semver-compatible version string"
}
}
}
],
"components": {
"contentDescriptors": {},
"schemas": {},
"errors": {}
}
}