fourclub/tron-api

PHP API for interacting with Tron (Trx)

1.0.0 2023-02-26 15:26 UTC

This package is auto-updated.

Last update: 2024-04-21 09:13:17 UTC


README

PHP 7.4 API for interacting with the Tron Protocol

fork https://github.com/iexbase/tron-api

  • added the setFeeLimit() method in PHP 7.4 support

Example: /examples/send-transaction USDT-TRC20.php

Install

> composer require fourclub/tron-api

Requirements

The following versions of PHP are supported by this version.

  • PHP 7.4

Example Usage

use fourclub\TronAPI\Tron;
use fourclub\TronAPI\Provider\HttpProvider;
use fourclub\TronAPI\Exception\TronException;

$fullNode = new HttpProvider('https://api.trongrid.io');
$solidityNode = new HttpProvider('https://api.trongrid.io');
$eventServer = new HttpProvider('https://api.trongrid.io');

try {
    $tron = new Tron($fullNode, $solidityNode, $eventServer);
} catch (TronException $e) {
    exit($e->getMessage());
}


$this->setAddress('..');
//Balance
$tron->getBalance(null, true);

// Transfer Trx
var_dump($tron->send('to', 1.5));

//Generate Address
var_dump($tron->createAccount());

//Get Last Blocks
var_dump($tron->getLatestBlocks(2));

//Change account name (only once)
var_dump($tron->changeAccountName('address', 'NewName'));


// Contract
$tron->contract('Contract Address');

Testing

$ vendor/bin/phpunit