1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00

Update links to global configs (#398)

* Fix the document

* Add link to ton.org/docs to FullNode howto

* Update links to config fullnode

* Another link update (fullnode docs)

* Update links to config (TonSites)

* Update config links (Validator docs)

* Update config links (lite-client docs)

Co-authored-by: EmelyanenkoK <emelyanenko.kirill@gmail.com>
This commit is contained in:
Doge 2022-08-15 23:29:02 +08:00 committed by GitHub
parent 9640a2794a
commit 36fbe3a2ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 21 additions and 19 deletions

View file

@ -28,18 +28,18 @@ You might also build some extra utilities useful for smart-contract development:
cmake --build . --target fift
cmake --build . --target func
4) Download the newest configuration file from https://test.ton.org/ton-lite-client-test1.config.json :
4) Download the newest configuration file from https://ton.org/global-config.json :
wget https://test.ton.org/ton-lite-client-test1.config.json
wget https://ton.org/global-config.json
5) Run the Lite Client:
./lite-client/lite-client -C ton-lite-client-test1.config.json
./lite-client/lite-client -C global-config.json
If everything was installed successfully, the Lite Client will connect to a special server (a full node for the TON Blockchain Test Network #1) and will send some queries to the server.
If you indicate a writeable "database" directory as an extra argument to the client, it will download and save the block and the state corresponding to the newest masterchain block:
./lite-client/lite-client -C ton-lite-client-test1.config.json -D ~/ton-db-dir
./lite-client/lite-client -C global-config.json -D ~/ton-db-dir
Basic help info can be obtained by typing "help" into the Lite Client. Type "quit" or press Ctrl-C to exit.
@ -47,4 +47,4 @@ Basic help info can be obtained by typing "help" into the Lite Client. Type "qui
More details on these activities, including step-by-step instructions for creating a simple wallet smart contract (along with its source code), may be found in the HOWTO file included in this archive.
7) Some documentation on the TON Blockchain and TON Virtual Machine may be found at the download page https://test.ton.org/download . Be aware that this documentation may not be completely in sync with the version currently employed by the Test Network, because some minor implementation details are likely to be changed during the final development and testing phases.
7) Some documentation on the TON Blockchain and TON Virtual Machine may be found at the download page https://ton.org/docs/ . Be aware that this documentation may not be completely in sync with the version currently employed by the Test Network, because some minor implementation details are likely to be changed during the final development and testing phases.