Content: php-tron.it-healer.com.zip (1.42 MB)
Uploaded: 25.05.2026

Positive responses: 0
Negative responses: 0

Sold: 0
Refunds: 0

$59
PHP Tron is a ready-to-use PHP library for working with the TRON blockchain (TRX) and TRC-20 tokens (USDT and any other). Create HD wallets, derive unlimited addresses, check balances and resources, preview fees and send TRX and tokens, monitor incoming deposits via signed webhooks, and keep encrypted backups — all in pure PHP, with no framework and no database.

Demo: https://php-tron.it-healer.com/playground.php?lang=en

Drop it into any project — plain PHP, an existing API, a CMS, Laravel/Symfony, a Telegram bot or a custom backend — and start accepting and sending crypto in minutes.

FEATURES
- Pure PHP, framework-agnostic; installs via Composer.
- HD wallets (BIP39 / BIP44) — mnemonics and unlimited deterministic addresses from a single seed, no external service.
- Full TRX support — balances, account info, bandwidth/energy, fee preview, send and "send all".
- Full TRC-20 support (USDT and any token) — contract metadata, balances, preview and send transfers.
- Deposit monitoring with webhooks — a signed HMAC-SHA256 HTTP callback for every new incoming TRX/TRC-20 transaction; de-duplicated via SQLite.
- Encrypted storage and portable backups — AES-256-GCM, password protected.
- Transaction history — auto-paginating iterators for TRX and TRC-20 transfers.
- Standalone cURL HTTP client with HTTP/SOCKS proxy support (TronGrid, Shasta testnet or your own node).
- Command-line tool — wallets, payments and the deposit monitor from the terminal.
- Bilingual web playground (RU/EN) — try every feature in the browser.
- Full documentation (Russian and English) + 10 ready-to-run examples + a PHPUnit test suite.

WHAT´S INCLUDED
- The PHP library (PSR-4, Composer-ready)
- Command-line tool (bin/tron.php)
- Bilingual web application (landing + live example + documentation)
- Full API reference in Russian and English + a Webhooks guide
- 10 runnable examples
- Unit tests (known BIP39/BIP44 vectors)

REQUIREMENTS
- PHP 8.1 or newer
- PHP extensions: gmp, ctype, curl, openssl, pdo_sqlite (pdo_sqlite only for the deposit monitor)
- Composer
- A free TronGrid API key is recommended for production
- Works on Linux, macOS and Windows

Why PHP Tron? Clean, commented, tested code with zero framework lock-in and real-world features (webhooks, encrypted backups, CLI). Everything you need to integrate TRON and USDT payments into your PHP project — fast.
Thank you for purchasing PHP Tron!

The archive contains: the library source code (PSR-4), the command-line tool bin/tron.php, the bilingual web application (web/), full documentation in Russian and English (docs/), 10 ready-to-run examples (examples/) and a test suite.

INSTALLATION
1. Unzip the archive.
2. In the project root run: composer install
3. Include the autoloader and use the ItHealer\Tron\Tron class.

QUICK START
require ´vendor/autoload.php´;
use ItHealer\Tron\Tron;

$tron = Tron::make(apiKey: ´your-trongrid-api-key´);
$wallet = $tron->createWallet(´My Wallet´);

echo $wallet->getPrimaryAddress()->address; // T...
echo $tron->getBalance($wallet->getPrimaryAddress()); // TRX balance

// Send TRX or USDT (TRC-20)
$tron->transfer($wallet->getPrimaryAddress(), ´TRECIPIENT...´, 1.5);
$tron->transferTRC20(´TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t´, $from, $to, 100);

Run the web demo locally: php -S localhost:8000 -t web
Full documentation is in the docs/ folder (API.md, API.ru.md, WEBHOOKS.md).
Support contacts are provided in the documentation inside the archive.
No feedback yet