- Minimum PHP 8.1;
ext-hash
;ext-sodium
required as default cryptographic implementation;- any httplug-compatible HTTP client (
php-http/client-common
), see Documentation; ext-bcmath
not required, but strongly recommended for performance reasons.
composer require olifanton/ton
See examples
directory.
- Clone repository and install with development dependencies;
- Get own testnet API key for Toncenter from Telegram bot;
- Copy
.env.dist
to.env
; - Put API key and seed phrase variables to
.env
file; - Run examples in console.
To use the SDK via Toncenter API, an HTTP client implementation is required. For the example, Guzzle will be used. If you are using another HTTP client supplied by your framework, refer to your framework's documentation and the httplug
documentation for additional information.
- Install http components via Composer:
composer require guzzlehttp/guzzle http-interop/http-factory-guzzle php-http/guzzle7-adapter
- Setup Toncenter transport:
<?php
use Http\Client\Common\HttpMethodsClient;
use Http\Discovery\Psr18ClientDiscovery;
use Http\Discovery\Psr17FactoryDiscovery;
use Olifanton\Ton\Transports\Toncenter\ToncenterHttpV2Client;
use Olifanton\Ton\Transports\Toncenter\ClientOptions;
use Olifanton\Ton\Transports\Toncenter\ToncenterTransport;
$isMainnet = false;
$toncenterApiKey = "..."; // Request API key from https://t.me/tontestnetapibot or https://t.me/tonapibot
// HTTP client initialization
$httpClient = new HttpMethodsClient(
Psr18ClientDiscovery::find(),
Psr17FactoryDiscovery::findRequestFactory(),
Psr17FactoryDiscovery::findStreamFactory(),
);
// Toncenter API client initialization
$toncenter = new ToncenterHttpV2Client(
$httpClient,
new ClientOptions(
$isMainnet ? "https://toncenter.com/api/v2" : "https://testnet.toncenter.com/api/v2",
$toncenterApiKey,
),
);
// Transport initialization
$toncenterTransport = new ToncenterTransport($toncenter);
// ...
// Now you can use Toncenter transport as access point to blockchain
$toncenterTransport->send($someBoc);
See examples/common.php
for complex Toncenter example.
To read description of primitives (Address, Cell, Slice, Builder, Hashmap), refer to documentation in the olifanton/interop
repository.
- First of all, use the latest version of PHP, despite the fact that the minimum version is 8.1
- Install the
bcmath
extension for PHP. This dramatically speeds up the work with large integers, which is necessary for interacting with TVM - Disable
xdebug
(or other debuggers) in your production. BoC serialisation/deserialisation speedup can be up to 5 times withXDEBUG_MODE=off
Please make sure to read the Olifanton contribution guide before making a pull request.
composer run test:unit
MIT