You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> _This method is only callable by the Leader node, which for the time being will be Arch. This method is used for internal debugging purposes as we get the Testnet operational._
6
-
>
7
-
> This endpoint is also not available for local validators.
8
-
9
-
**Description:** Resets the network state.
10
-
11
-
**Parameters:**
12
-
None.
13
-
14
-
**Returns:** A success message if the network reset is successful.
15
-
16
-
**Request:**
17
-
```bash
18
-
curl -vL POST -H 'Content-Type: application/json' -d '
19
-
{
20
-
"jsonrpc":"2.0",
21
-
"id":1,
22
-
"method":"reset_network",
23
-
"params":[]
24
-
}' \
25
-
http://localhost:9002/
26
-
```
27
-
28
-
**Response:**
29
-
```json
30
-
{
31
-
"jsonrpc": "2.0",
32
-
"result": "Success!",
33
-
"id": "1"
34
-
}
35
-
```
1
+
# `reset_network` (not currently exposed)
36
2
3
+
This endpoint is not currently exposed by the validator's RPC server. It may appear in older docs but is unavailable in the running node.
> ️️⚠️ Note: This endpoint is not available for local validators.
4
-
5
-
**Description:** Initiates the Distributed Key Generation (DKG) process.
6
-
7
-
**Method:**`POST`
8
-
9
-
**Parameters:**
10
-
None.
11
-
12
-
**Returns:** A success message if the DKG process is initiated.
13
-
14
-
**Request:**
15
-
```bash
16
-
curl -vL POST -H 'Content-Type: application/json' -d '
17
-
{
18
-
"jsonrpc":"2.0",
19
-
"id":1,
20
-
"method":"start_dkg",
21
-
"params":[]
22
-
}' \
23
-
http://localhost:9002/
24
-
```
25
-
26
-
**Response:**
27
-
```json
28
-
{
29
-
"jsonrpc": "2.0",
30
-
"result": "DKG process initiated",
31
-
"id": "1"
32
-
}
33
-
```
3
+
This endpoint is not currently exposed by the validator's RPC server. It may appear in older docs or client stubs but is unavailable in the running node.
34
4
5
+
Use `get_network_pubkey` to retrieve the network verifying key. No replacement RPC exists for starting DKG via public API.
0 commit comments