Skip to main content
Version: 1.x

node.v1

Node methods check connectivity and read the node configuration and supported assets. Send requests with the compact envelope described in Interaction Model: [1, requestId, method, payload, timestamp].

ping

Simple connectivity check.

SDK wrapper: Client.ping().

Request: empty payload. Response: empty payload. Errors: none declared in docs/api.yaml.

[1, 5001, "node.v1.ping", {}, 1741344819012]

get_config

Retrieve broker configuration and supported networks.

SDK wrapper: Client.getConfig().

Request: empty payload.

Response fieldTypeDescription
node_addressstringNode wallet address.
node_versionstringNode software version.
blockchainsarray<blockchain_info>Supported networks.

Errors: none declared in docs/api.yaml.

[1, 5002, "node.v1.get_config", {}, 1741344819012]

get_assets

Retrieve all supported assets with optional blockchain filter.

SDK wrapper: Client.getAssets(blockchainId?).

Request fieldTypePresenceDescription
blockchain_idstringoptionalFilter by blockchain network ID.
Response fieldTypeDescription
assetsarray<asset>Supported assets, filtered by blockchain if provided.

Errors: none declared in docs/api.yaml.

[1, 5003, "node.v1.get_assets", { "blockchain_id": "11155111" }, 1741344819012]