diff --git a/docs/redoc/crawler.html b/docs/redoc/crawler.html index 7f4a8a7..4824328 100644 --- a/docs/redoc/crawler.html +++ b/docs/redoc/crawler.html @@ -364,7 +364,7 @@ -

Chia RPC (2.4.0)

Download OpenAPI specification:Download

Chia RPC (2.4.3)

Download OpenAPI specification:Download

The Chia node and services come with a JSON RPC API server that allows you to access information and control the services. These are accessible via HTTPS, WebSockets, or via client SDKs. The ports can be configured in ~/.chia/mainnet/config/config.yaml. The RPC ports should not be exposed to the internet. TLS certificates are used to secure the communication using mutualTLS. The crawler uses port 8561 by default.

@@ -396,7 +396,7 @@ " class="sc-eeDSqt sc-eBMFzZ bSgSrX cWARBq sc-dCFGXG gKOXES">

OK response without return values

Request samples

Content type
application/json
{ }

Response samples

Content type
application/json
{
  • "success": true,
  • "error": "string"
}

Add a connection to another node.

https://localhost:8561/stop_node

Request samples

Content type
application/json
{ }

Response samples

Content type
application/json
{
  • "success": true,
  • "error": "string"
}

Add a connection to another node.

Add a connection to another node.

Authorizations:
bearerAuth
Request Body schema: application/json
required

the address of the connection

@@ -404,7 +404,7 @@ " class="sc-eeDSqt sc-eBMFzZ bSgSrX cWARBq sc-dCFGXG gKOXES">

OK response without return values

Request samples

Content type
application/json
{
  • "ip": "string",
  • "port": 0
}

Response samples

Content type
application/json
{
  • "success": true,
  • "error": "string"
}

Removes a connection.

https://localhost:8561/open_connection

Request samples

Content type
application/json
{
  • "ip": "string",
  • "port": 0
}

Response samples

Content type
application/json
{
  • "success": true,
  • "error": "string"
}

Removes a connection.

Removes a connection.

Authorizations:
bearerAuth
Request Body schema: application/json
required

the node id of the connection

@@ -412,7 +412,7 @@ " class="sc-eeDSqt sc-eBMFzZ bSgSrX cWARBq sc-dCFGXG gKOXES">

OK response without return values

Request samples

Content type
application/json
{
  • "node_id": "string"
}

Response samples

Content type
application/json
{
  • "success": true,
  • "error": "string"
}

Retrieve the list of connections.

https://localhost:8561/close_connection

Request samples

Content type
application/json
{
  • "node_id": "string"
}

Response samples

Content type
application/json
{
  • "success": true,
  • "error": "string"
}

Retrieve the list of connections.

Retrieve the list of connections.

Authorizations:
bearerAuth
Request Body schema: application/json
required

Empty request body

@@ -420,7 +420,7 @@ " class="sc-eeDSqt sc-eBMFzZ bSgSrX cWARBq sc-dCFGXG gKOXES">

OK

Request samples

Content type
application/json
{ }

Response samples

Content type
application/json
{
  • "connections": [
    ],
  • "success": true,
  • "error": "string"
}

Heartbeat.

https://localhost:8561/get_connections

Request samples

Content type
application/json
{ }

Response samples

Content type
application/json
{
  • "connections": [
    ],
  • "success": true,
  • "error": "string"
}

Heartbeat.

Heartbeat.

Authorizations:
bearerAuth
Request Body schema: application/json
required

Empty request body

@@ -428,7 +428,7 @@ " class="sc-eeDSqt sc-eBMFzZ bSgSrX cWARBq sc-dCFGXG gKOXES">

OK

Request samples

Content type
application/json
{ }

Response samples

Content type
application/json
{
  • "success": true,
  • "error": "string"
}

Retrieve the list of routes exposed by the service.

https://localhost:8561/healthz

Request samples

Content type
application/json
{ }

Response samples

Content type
application/json
{
  • "success": true,
  • "error": "string"
}

Retrieve the list of routes exposed by the service.

Retrieve the list of routes/endpoints exposed by the service.

Authorizations:
bearerAuth
Request Body schema: application/json
required

Empty request body

@@ -436,7 +436,7 @@ " class="sc-eeDSqt sc-eBMFzZ bSgSrX cWARBq sc-dCFGXG gKOXES">

OK

Request samples

Content type
application/json
{ }

Response samples

Content type
application/json
{
  • "routes": [
    ],
  • "success": true,
  • "error": "string"
}

Retrieves some information about the current network.

https://localhost:8561/get_routes

Request samples

Content type
application/json
{ }

Response samples

Content type
application/json
{
  • "routes": [
    ],
  • "success": true,
  • "error": "string"
}

Retrieves some information about the current network.

Retrieves some information about the current network.

Authorizations:
bearerAuth
Request Body schema: application/json
required

Empty request body

@@ -444,7 +444,15 @@ " class="sc-eeDSqt sc-eBMFzZ bSgSrX cWARBq sc-dCFGXG gKOXES">

OK

Request samples

Content type
application/json
{ }

Response samples

Content type
application/json
{
  • "network_name": "mainnet",
  • "network_prefix": "xch",
  • "genesis_challenge": "f4c0c9d5b3cd59d6f7c76ecd780e646a2c55064367d0ddbb42b2b6462a4674b2",
  • "success": true,
  • "error": "string"
}

Crawler

https://localhost:8561/get_network_info

Request samples

Content type
application/json
{ }

Response samples

Content type
application/json
{
  • "network_name": "mainnet",
  • "network_prefix": "xch",
  • "genesis_challenge": "f4c0c9d5b3cd59d6f7c76ecd780e646a2c55064367d0ddbb42b2b6462a4674b2",
  • "success": true,
  • "error": "string"
}

Get the installed version of chia at the endpoint.

Get the installed version of chia at the endpoint.

+
Authorizations:
bearerAuth
Request Body schema: application/json
required

Empty request body

+
object

Responses

Request samples

Content type
application/json
{ }

Response samples

Content type
application/json
{
  • "version": "string",
  • "success": true,
  • "error": "string"
}

Crawler

The crawler RPC API is exposed, by default, on port 8561 and contains peer metrics.

Retrieves aggregate information about peers.

Retrieves aggregate information about peers.

@@ -470,7 +478,7 @@ " class="sc-eeDSqt sc-eBMFzZ bSgSrX gayXgA">

Crawler RPC

https://localhost:8561/get_ips_after_timestamp

Request samples

Content type
application/json
{
  • "after": 0,
  • "offset": 0,
  • "limit": 10000
}

Response samples

Content type
application/json
{
  • "ips": [
    ],
  • "total": 0,
  • "success": true,
  • "error": "string"
}
+
+ + + + + + +

Responses

+

Status: 200 - OK

+ + + +
+
+
+ +
+ +
+
+
diff --git a/docs/static/daemon.html b/docs/static/daemon.html index 54d3861..6e50d31 100644 --- a/docs/static/daemon.html +++ b/docs/static/daemon.html @@ -1444,9 +1444,6 @@ - @@ -1543,6 +1540,9 @@ +
@@ -1556,7 +1556,7 @@

Chia RPC

- - -
-
-
-

getVersion

-

Get the installed version of chia at the endpoint.

-
-

Get the installed version of chia at the endpoint.

-

websocket

-

RPC payload

-
{
-  'ack': False, 
-  'command': '/get_version', 
-  'data': {}, 
-  'destination': 'daemon', 
-  'origin': 'client_app_id', 
-  'request_id': 'unique message correlation id'
-}
-

Parameters

- - - -
Body parameters
- - - - - - - - -
NameDescription
body * - - - -
-
- - - -

Responses

-

Status: 200 - OK

- - - -
-
-
- -
- -
-
-
@@ -5404,6 +5285,125 @@

Status: 200 - OK

+ + +
+
+
+

getVersion

+

Get the installed version of chia at the endpoint.

+
+

Get the installed version of chia at the endpoint.

+

websocket

+

RPC payload

+
{
+  'ack': False, 
+  'command': '/get_version', 
+  'data': {}, 
+  'destination': 'daemon', 
+  'origin': 'client_app_id', 
+  'request_id': 'unique message correlation id'
+}
+

Parameters

+ + + +
Body parameters
+ + + + + + + + +
NameDescription
body * + + + +
+
+ + + +

Responses

+

Status: 200 - OK

+ + + +
+
+
+ +
+ +
+
+
diff --git a/docs/static/data_layer.html b/docs/static/data_layer.html index 92ad901..5afea5d 100644 --- a/docs/static/data_layer.html +++ b/docs/static/data_layer.html @@ -1478,6 +1478,18 @@ }, { "$ref" : "#/components/schemas/apiResponse" } ] +}; + defs["inline_response_200_24"] = { + "allOf" : [ { + "type" : "object", + "properties" : { + "version" : { + "type" : "string" + } + } + }, { + "$ref" : "#/components/schemas/apiResponse" + } ] }; defs["inline_response_200_3"] = { "allOf" : [ { @@ -2390,6 +2402,9 @@ + @@ -2433,7 +2448,7 @@

Chia RPC

+ + +
+
+
+

getVersion

+

Get the installed version of chia at the endpoint.

+
+

Get the installed version of chia at the endpoint.

+

post

+
/get_version
+ +

Usage

+
+
+
curl -X POST --insecure \
+--cert ~/.chia/mainnet/config/ssl/data_layer/private_data_layer.crt \
+--key ~/.chia/mainnet/config/ssl/data_layer/private_data_layer.key  \
+-H "Accept: application/json" \
+-H "Content-Type: application/json" \
+"https://localhost:8562/get_version" \
+-d "{}"
+

Parameters

+ + + +
Body parameters
+ + + + + + + + +
NameDescription
body * + + + +
+
+ + + +

Responses

+

Status: 200 - OK

+ + + +
+
+
+ +
+ +
+
+
diff --git a/docs/static/farmer.html b/docs/static/farmer.html index 3229a37..3ee4f87 100644 --- a/docs/static/farmer.html +++ b/docs/static/farmer.html @@ -945,6 +945,18 @@ }, { "$ref" : "#/components/schemas/apiResponse" } ] +}; + defs["inline_response_200_11"] = { + "allOf" : [ { + "type" : "object", + "properties" : { + "version" : { + "type" : "string" + } + } + }, { + "$ref" : "#/components/schemas/apiResponse" + } ] }; defs["inline_response_200_2"] = { "allOf" : [ { @@ -1454,6 +1466,9 @@ + @@ -1476,7 +1491,7 @@

Chia RPC

+ +
+
+
+
+

getVersion

+

Get the installed version of chia at the endpoint.

+
+

Get the installed version of chia at the endpoint.

+

post

+
/get_version
+ +

Usage

+
+
+
curl -X POST --insecure \
+--cert ~/.chia/mainnet/config/ssl/farmer/private_farmer.crt \
+--key ~/.chia/mainnet/config/ssl/farmer/private_farmer.key  \
+-H "Accept: application/json" \
+-H "Content-Type: application/json" \
+"https://localhost:8559/get_version" \
+-d "{}"
+

Parameters

+ + + +
Body parameters
+ + + + + + + + +
NameDescription
body * + + + +
+
+ + + +

Responses

+

Status: 200 - OK

+ + + +
+
+
+ +
+ +
+
+
diff --git a/docs/static/full_node.html b/docs/static/full_node.html index 2cc299a..75fcf29 100644 --- a/docs/static/full_node.html +++ b/docs/static/full_node.html @@ -1823,6 +1823,18 @@ }, { "$ref" : "#/components/schemas/apiResponse" } ] +}; + defs["inline_response_200_25"] = { + "allOf" : [ { + "type" : "object", + "properties" : { + "version" : { + "type" : "string" + } + } + }, { + "$ref" : "#/components/schemas/apiResponse" + } ] }; defs["inline_response_200_2_metrics"] = { "type" : "object", @@ -2589,6 +2601,9 @@ + @@ -2611,7 +2626,7 @@

Chia RPC

+ +
+
+
+
+

getVersion

+

Get the installed version of chia at the endpoint.

+
+

Get the installed version of chia at the endpoint.

+

post

+
/get_version
+ +

Usage

+
+
+
curl -X POST --insecure \
+--cert ~/.chia/mainnet/config/ssl/full_node/private_full_node.crt \
+--key ~/.chia/mainnet/config/ssl/full_node/private_full_node.key  \
+-H "Accept: application/json" \
+-H "Content-Type: application/json" \
+"https://localhost:8555/get_version" \
+-d "{}"
+

Parameters

+ + + +
Body parameters
+ + + + + + + + +
NameDescription
body * + + + +
+
+ + + +

Responses

+

Status: 200 - OK

+ + + +
+
+
+ +
+ +
+
+
diff --git a/docs/static/harvester.html b/docs/static/harvester.html index 9c643e6..e52a2a6 100644 --- a/docs/static/harvester.html +++ b/docs/static/harvester.html @@ -853,6 +853,18 @@ }, { "$ref" : "#/components/schemas/apiResponse" } ] +}; + defs["inline_response_200_6"] = { + "allOf" : [ { + "type" : "object", + "properties" : { + "version" : { + "type" : "string" + } + } + }, { + "$ref" : "#/components/schemas/apiResponse" + } ] }; defs["k_size"] = { "type" : "integer", @@ -995,6 +1007,9 @@ + @@ -1017,7 +1032,7 @@

Chia RPC

+ +
+
+
+
+

getVersion

+

Get the installed version of chia at the endpoint.

+
+

Get the installed version of chia at the endpoint.

+

post

+
/get_version
+ +

Usage

+
+
+
curl -X POST --insecure \
+--cert ~/.chia/mainnet/config/ssl/harvester/private_harvester.crt \
+--key ~/.chia/mainnet/config/ssl/harvester/private_harvester.key  \
+-H "Accept: application/json" \
+-H "Content-Type: application/json" \
+"https://localhost:8560/get_version" \
+-d "{}"
+

Parameters

+ + + +
Body parameters
+ + + + + + + + +
NameDescription
body * + + + +
+
+ + + +

Responses

+

Status: 200 - OK

+ + + +
+
+
+ +
+ +
+
+
diff --git a/docs/static/wallet.html b/docs/static/wallet.html index 1b78089..4e0cbc7 100644 --- a/docs/static/wallet.html +++ b/docs/static/wallet.html @@ -2130,6 +2130,19 @@ "default" : 0 } } +}; + defs["execute_signing_instructions_body"] = { + "required" : [ "signing_instructions" ], + "type" : "object", + "properties" : { + "partial_allowed" : { + "type" : "boolean", + "default" : false + }, + "signing_instructions" : { + "$ref" : "#/components/schemas/signing_instructions" + } + } }; defs["extend_derivation_index_body"] = { "required" : [ "index" ], @@ -2569,6 +2582,33 @@ }, { "$ref" : "#/components/schemas/apiResponse" } ] +}; + defs["inline_response_200_100"] = { + "allOf" : [ { + "type" : "object", + "properties" : { + "version" : { + "type" : "string" + } + } + }, { + "$ref" : "#/components/schemas/apiResponse" + } ] +}; + defs["inline_response_200_101"] = { + "allOf" : [ { + "type" : "object", + "properties" : { + "signing_responses" : { + "type" : "array", + "items" : { + "$ref" : "#/components/schemas/signing_response" + } + } + } + }, { + "$ref" : "#/components/schemas/apiResponse" + } ] }; defs["inline_response_200_11"] = { "allOf" : [ { @@ -7101,6 +7141,9 @@ + @@ -7119,6 +7162,9 @@ + @@ -7249,7 +7295,7 @@

Chia RPC

+ +
+
+
+
+

getVersion

+

Get the installed version of chia at the endpoint.

+
+

Get the installed version of chia at the endpoint.

+

post

+
/get_version
+ +

Usage

+
+
+
curl -X POST --insecure \
+--cert ~/.chia/mainnet/config/ssl/wallet/private_wallet.crt \
+--key ~/.chia/mainnet/config/ssl/wallet/private_wallet.key  \
+-H "Accept: application/json" \
+-H "Content-Type: application/json" \
+"https://localhost:9256/get_version" \
+-d "{}"
+

Parameters

+ + + +
Body parameters
+ + + + + + + + +
NameDescription
body * + + + +
+
+ + + +

Responses

+

Status: 200 - OK

+ + + +
+
+
+ +
+ +
+
+
@@ -20283,6 +20451,127 @@

Status: 200 - OK

+ + +
+
+
+

executeSigningInstructions

+

Executes signing instructions.

+
+

Executes signing instructions.

+

post

+
/execute_signing_instructions
+ +

Usage

+
+
+
curl -X POST --insecure \
+--cert ~/.chia/mainnet/config/ssl/wallet/private_wallet.crt \
+--key ~/.chia/mainnet/config/ssl/wallet/private_wallet.key  \
+-H "Accept: application/json" \
+-H "Content-Type: application/json" \
+"https://localhost:9256/execute_signing_instructions" \
+-d "{}"
+

Parameters

+ + + +
Body parameters
+ + + + + + + + +
NameDescription
body * + + + +
+
+ + + +

Responses

+

Status: 200 - OK

+ + + +
+
+
+ +
+ +
+
+
diff --git a/package-lock.json b/package-lock.json index da8fe93..ab28b42 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "version": "1.3.1", "license": "Apache License 2.0", "dependencies": { - "@redocly/cli": "^1.20.1", + "@redocly/cli": "^1.21.0", "redoc-cli": "^0.13.21" }, "devDependencies": { @@ -84,11 +84,12 @@ } }, "node_modules/@redocly/cli": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/@redocly/cli/-/cli-1.20.1.tgz", - "integrity": "sha512-Gm4dJJci6+9oBJq/mktGtYPvXCoCB0V/3t275Ug/tM/KlzphLTyOmLOG2346T9GPCMiI3gobrZPQRddLyc8XYQ==", + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/@redocly/cli/-/cli-1.21.0.tgz", + "integrity": "sha512-KPCHWrTXnIV01rgpgwnyQuwKhSol5pnNor20f6/szVrUcZ+vRCqKeZDR1CSMBYIXEsi0AknLV7WR8BCYyfYbog==", + "license": "MIT", "dependencies": { - "@redocly/openapi-core": "1.20.1", + "@redocly/openapi-core": "1.21.0", "abort-controller": "^3.0.0", "chokidar": "^3.5.1", "colorette": "^1.2.0", @@ -137,9 +138,10 @@ "integrity": "sha512-rRd0pSiPC68AQGud2VbrHqUov1VHospfcYE2pFYmGYfZhzZfHBSiVaeiTY+CZmrhf5RB9aVdOHRCm25Vb6GFkQ==" }, "node_modules/@redocly/openapi-core": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.20.1.tgz", - "integrity": "sha512-ZbIJRelAAkXuOnKgEyAuzS2Th24ZY4qnJY62ddbAaAn6NworI6BrnoMq/MqkilQWBKhbVTy/XeXc9jWDXLwkRA==", + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.21.0.tgz", + "integrity": "sha512-8KwL/0jiQBSJMNp1lSMLM1UeV2FW9DdqcjO0J9s5w7yL7ZN+SNh11MTp0zU4om/pGYExQ64hxLM/+7VdjznHRQ==", + "license": "MIT", "dependencies": { "@redocly/ajv": "^8.11.0", "@redocly/config": "^0.9.0", @@ -6308,11 +6310,11 @@ } }, "@redocly/cli": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/@redocly/cli/-/cli-1.20.1.tgz", - "integrity": "sha512-Gm4dJJci6+9oBJq/mktGtYPvXCoCB0V/3t275Ug/tM/KlzphLTyOmLOG2346T9GPCMiI3gobrZPQRddLyc8XYQ==", + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/@redocly/cli/-/cli-1.21.0.tgz", + "integrity": "sha512-KPCHWrTXnIV01rgpgwnyQuwKhSol5pnNor20f6/szVrUcZ+vRCqKeZDR1CSMBYIXEsi0AknLV7WR8BCYyfYbog==", "requires": { - "@redocly/openapi-core": "1.20.1", + "@redocly/openapi-core": "1.21.0", "abort-controller": "^3.0.0", "chokidar": "^3.5.1", "colorette": "^1.2.0", @@ -6349,9 +6351,9 @@ "integrity": "sha512-rRd0pSiPC68AQGud2VbrHqUov1VHospfcYE2pFYmGYfZhzZfHBSiVaeiTY+CZmrhf5RB9aVdOHRCm25Vb6GFkQ==" }, "@redocly/openapi-core": { - "version": "1.20.1", - "resolved": "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.20.1.tgz", - "integrity": "sha512-ZbIJRelAAkXuOnKgEyAuzS2Th24ZY4qnJY62ddbAaAn6NworI6BrnoMq/MqkilQWBKhbVTy/XeXc9jWDXLwkRA==", + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/@redocly/openapi-core/-/openapi-core-1.21.0.tgz", + "integrity": "sha512-8KwL/0jiQBSJMNp1lSMLM1UeV2FW9DdqcjO0J9s5w7yL7ZN+SNh11MTp0zU4om/pGYExQ64hxLM/+7VdjznHRQ==", "requires": { "@redocly/ajv": "^8.11.0", "@redocly/config": "^0.9.0", diff --git a/package.json b/package.json index 9ee3817..15748ed 100644 --- a/package.json +++ b/package.json @@ -20,11 +20,11 @@ }, "homepage": "https://github.com/dkackman/chia-api#readme", "dependencies": { - "@redocly/cli": "^1.20.1", + "@redocly/cli": "^1.21.0", "redoc-cli": "^0.13.21" }, "devDependencies": { "js-yaml": "^4.1.0", "lodash": "^4.17.21" } -} +} \ No newline at end of file diff --git a/src/crawler.yaml b/src/crawler.yaml index 11c5b4b..7a43c14 100644 --- a/src/crawler.yaml +++ b/src/crawler.yaml @@ -7,7 +7,7 @@ info: [using mutualTLS](https://github.com/dkackman/chia-api/wiki/Mutual-TLS). The crawler uses port 8561 by default. - version: 2.4.0 + version: 2.4.3 title: Chia RPC termsOfService: https://www.chia.net/assets/legal/Guidelines-for-Using-Chia-Network.pdf contact: diff --git a/src/daemon.yaml b/src/daemon.yaml index 7e0edc0..36aba8a 100644 --- a/src/daemon.yaml +++ b/src/daemon.yaml @@ -7,7 +7,7 @@ info: [using mutualTLS](https://github.com/dkackman/chia-api/wiki/Mutual-TLS). The daemon uses port 55400 by default. - version: 2.4.0 + version: 2.4.3 title: Chia RPC termsOfService: https://www.chia.net/assets/legal/Guidelines-for-Using-Chia-Network.pdf contact: diff --git a/src/data_layer.yaml b/src/data_layer.yaml index acfd76c..7ce7729 100644 --- a/src/data_layer.yaml +++ b/src/data_layer.yaml @@ -7,7 +7,7 @@ info: [using mutualTLS](https://github.com/dkackman/chia-api/wiki/Mutual-TLS). The data layer uses port 8562 by default. - version: 2.4.0 + version: 2.4.3 title: Chia RPC termsOfService: https://www.chia.net/assets/legal/Guidelines-for-Using-Chia-Network.pdf contact: diff --git a/src/farmer.yaml b/src/farmer.yaml index 7c829a1..1f7ec23 100644 --- a/src/farmer.yaml +++ b/src/farmer.yaml @@ -7,7 +7,7 @@ info: [using mutualTLS](https://github.com/dkackman/chia-api/wiki/Mutual-TLS). The farmer uses port 8559 by default. - version: 2.4.0 + version: 2.4.3 title: Chia RPC termsOfService: https://www.chia.net/assets/legal/Guidelines-for-Using-Chia-Network.pdf contact: diff --git a/src/full_node.yaml b/src/full_node.yaml index d363f1b..3595b76 100644 --- a/src/full_node.yaml +++ b/src/full_node.yaml @@ -7,7 +7,7 @@ info: [using mutualTLS](https://github.com/dkackman/chia-api/wiki/Mutual-TLS). The full node uses port 8555 by default. - version: 2.4.0 + version: 2.4.3 title: Chia RPC termsOfService: https://www.chia.net/assets/legal/Guidelines-for-Using-Chia-Network.pdf contact: diff --git a/src/harvester.yaml b/src/harvester.yaml index a5ef936..b2cb176 100644 --- a/src/harvester.yaml +++ b/src/harvester.yaml @@ -7,7 +7,7 @@ info: [using mutualTLS](https://github.com/dkackman/chia-api/wiki/Mutual-TLS). The harvester uses port 8560 by default. - version: 2.4.0 + version: 2.4.3 title: Chia RPC termsOfService: https://www.chia.net/assets/legal/Guidelines-for-Using-Chia-Network.pdf contact: diff --git a/src/wallet.yaml b/src/wallet.yaml index f55db04..f9fb0e6 100644 --- a/src/wallet.yaml +++ b/src/wallet.yaml @@ -7,7 +7,7 @@ info: [using mutualTLS](https://github.com/dkackman/chia-api/wiki/Mutual-TLS). The wallet uses port 9256 by default. - version: 2.4.0 + version: 2.4.3 title: Chia RPC termsOfService: https://www.chia.net/assets/legal/Guidelines-for-Using-Chia-Network.pdf contact: