12345678910111213 |
- <?php
- include_once '../vendor/autoload.php';
- $tron = new \IEXBase\TronAPI\Tron();
- /**
- * WARNING: When sending funds, you should not specify these parameters
- *
- * P.S: In the process of payment are automatically converted
- */
- $from = $tron->toTron(1.15); //11500000
- $to = $tron->fromTron(11500000); //1.15000000
|