├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── Account.php ├── Address.php ├── Api.php ├── Block.php ├── Exceptions │ ├── TransactionException.php │ └── TronErrorException.php ├── Interfaces │ └── WalletInterface.php ├── Support │ ├── Base58.php │ ├── Base58Check.php │ ├── Crypto.php │ └── Hash.php ├── Traits │ └── TronAwareTrait.php ├── Transaction.php └── Wallet.php └── tests ├── integration └── WalletTest.php └── unit ├── AddressTest.php ├── ApiTest.php ├── BlockTest.php ├── TransactionTest.php └── WalletTest.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | vendor 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/src/Account.php -------------------------------------------------------------------------------- /src/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/src/Address.php -------------------------------------------------------------------------------- /src/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/src/Api.php -------------------------------------------------------------------------------- /src/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/src/Block.php -------------------------------------------------------------------------------- /src/Exceptions/TransactionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/src/Exceptions/TransactionException.php -------------------------------------------------------------------------------- /src/Exceptions/TronErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/src/Exceptions/TronErrorException.php -------------------------------------------------------------------------------- /src/Interfaces/WalletInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/src/Interfaces/WalletInterface.php -------------------------------------------------------------------------------- /src/Support/Base58.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/src/Support/Base58.php -------------------------------------------------------------------------------- /src/Support/Base58Check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/src/Support/Base58Check.php -------------------------------------------------------------------------------- /src/Support/Crypto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/src/Support/Crypto.php -------------------------------------------------------------------------------- /src/Support/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/src/Support/Hash.php -------------------------------------------------------------------------------- /src/Traits/TronAwareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/src/Traits/TronAwareTrait.php -------------------------------------------------------------------------------- /src/Transaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/src/Transaction.php -------------------------------------------------------------------------------- /src/Wallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/src/Wallet.php -------------------------------------------------------------------------------- /tests/integration/WalletTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/tests/integration/WalletTest.php -------------------------------------------------------------------------------- /tests/unit/AddressTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/tests/unit/AddressTest.php -------------------------------------------------------------------------------- /tests/unit/ApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/tests/unit/ApiTest.php -------------------------------------------------------------------------------- /tests/unit/BlockTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/tests/unit/BlockTest.php -------------------------------------------------------------------------------- /tests/unit/TransactionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/tests/unit/TransactionTest.php -------------------------------------------------------------------------------- /tests/unit/WalletTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattvb91/tron-trx-php/HEAD/tests/unit/WalletTest.php --------------------------------------------------------------------------------