This repository contains TON full node and Toncenter API builds unified into one Compose definition - to run as a service on any host machine.
This setup can be deployed on your host without any external dependencies: just clone this repo and run bootstrap.sh
. Then wait for your full node to sync with the chain.
Many thanks to EmelyanenkoK and neodiX42 for the TON node build which is used here without major changes, as well as dungeon-master-666 for TON HTTP API.
This setup has been created with the use of these sources.
TON node works in the full mode by default.
The API service can be configured to work in two modes:
- one-to-one (
onetoone
) - interacting with your node only; - one-to-many (
onetomany
) - interacting with a set of nodes including your node.
To bootstrap and run the node, you have to install Docker and Docker Compose on your host.
For node system requirements, refer to the official requirements.
For MacOS, install gnu-sed
to run the bootstrap script adequately:
brew install gnu-sed
Then, use gsed
instead of sed
in bootstrap.sh
.
NB: The
TON_NODE_IP
environment variable is fetched via an external resource. In case you need anything different, just remove theexport TON_NODE_IP
definition frombootstrap.sh
and setTON_NODE_IP
manually instead.
Both node and API are configured via the .env
file.
In the node part of the file, you will find following parameters:
Variable | Description | Default value |
---|---|---|
NODE_VERSION |
Release version of the TON node - consider specifying the latest version | 2023.12 |
NODE_CONF_VOLUME |
External volume to store node configuration files | ${PWD}/config/node-config |
NODE_LOG_VOLUME |
External volume to store node logs | ${PWD}/logs |
NODE_STATE_VOLUME |
External volume to store the node DB | ${PWD}/db |
NODE_CONFIG_URL |
Node config URL to download (find current config versions for Testnet and Mainnet below) | Testnet config |
NODE_PUBLIC_IP |
External public IP of your host to advertise the node on. This IP can be fetched automatically by bootstrap.sh |
TON_NODE_IP environment variable |
NODE_LITESERVER |
Enable liteserver mode | true |
NODE_LITESERVER_PORT |
Node liteserver port | 43679 |
NODE_CONSOLE_PORT |
Node control plane port | 43678 |
In the API part of the file, you can set following HTTP API parameters:
Variable | Description | Default value |
---|---|---|
API_VERSION |
Release version of TON HTTP API | 2.0.31 |
API_NETWORK |
API network corresponding with your node | testnet |
API_MODE |
API interaction mode as above: onetoone or onetomany |
onetoone |
API_CONF_VOLUME |
External volume to store API configs | ${PWD}/config/api-config |
API_CACHE_ENABLED |
Set 1 to enable API cache |
0 |
API_LOGS_JSONIFY |
Set 1 to get logs in the JSON format |
0 |
API_LOGS_LEVEL |
API log level | ERROR |
API_TONLIB_LITESERVER_CONFIG |
Internal config path, fetched automatically from API_NETWORK and API_MODE variables |
/conf/${API_NETWORK}-config-${API_MODE}.json |
API_TONLIB_PARALLEL_REQUESTS_PER_LITESERVER |
Maximal number of parallel request per liteserver | 50 |
API_TONLIB_REQUEST_TIMEOUT |
Timeout time of a request in milliseconds | 10000 |
API_GET_METHODS_ENABLED |
Set 1 to enable GET API methods |
1 |
API_JSON_RPC_ENABLED |
Set 1 to enable JSON RPC |
1 |
API_ROOT_PATH |
API root path after your hostname or IP | "/" |
To run the full node and API, change environment variables needed in the .env
configuration and run the bootstrap.sh
script.
This script will perform following operations:
- Set your static IP as the
TON_NODE_IP
environment variable - to be used in the.env
file further. - Apply
.env
variables to your shell environment. - Build local node and API images.
- Run the node container. The node will bootstrap additionally with the use of the
./config/node-config/init.sh
script. - Run the standard
python
Docker image to set theNODE_API_KEY
variable containing the generated HTTP API key of the node. - Add the obtained node API key to the desired API config.
- Run the HTTP API container.
Then, just wait until your node is synchronised with the chain.
To interact with the API, refer to the Toncenter API reference.
Just lift the release version in the NODE_VERSION
variable of the .env
file.
- Failed to parse config
ton-node
logs:
[ 1][t 1][2023-12-24 23:20:03.489683013][validator-engine.cpp:3517][!validator-engine] failed to parse config: [Error : 0 : failed to parse json: Unexpected symbol while parsing JSON Object]
If you see this error, check the downloaded and initialised config.json
for syntax glitches. Change the file itself or the init.sh
script accordingly. After this, you can either restart the node via Compose or bootstrap it again: in case you changed init.sh
, remove the existing config and allow to reinitialise it via the script.
- No nodes in the network
ton-node
logs:
[ 2][t 6][2023-12-24 23:56:21.137193799][manager-init.cpp:86][!downloadproofreq] failed to download proof link: [Error : 651 : no nodes]
This warning always appears during initial node start. Just wait until the node starts to sync.
- Dead workers in
onetomany
mode
ton-api
logs:
2023-12-25 10:49:47.910 | ERROR | pyTON.manager:check_children_alive:232 - TonlibWorker #XXX is dead!!! Exit code: 12
2023-12-25 10:49:57.968 | ERROR | pyTON.worker:report_last_block:118 - TonlibWorker #000 report_last_block exception of type LiteServerTimeout: LITE_SERVER_NETWORKadnl query timeout
If you see that some of workers other than 000
(your node) are dead - this means, these nodes are not accessible. This situation is not critical, so far there are accessible workers in the list including your node. Still, consider updating API configs from time to time.
This setup works correctly with following software:
- Docker Compose v2.15.1
- Docker v20.10.23, build 7155243
- MacOS Sonoma 14.0 (Apple M1)