kaadon / ethereum-tx
Ethereum transaction library in PHP.
dev-master
2023-03-20 06:58 UTC
Requires
- php: >=8.1
- kornrunner/keccak: ~1
- simplito/elliptic-php: ~1.0.6
- web3p/ethereum-util: ~0.1.3
- web3p/rlp: 0.3.4
Requires (Dev)
- phpunit/phpunit: ~7|~8.0
This package is auto-updated.
Last update: 2024-10-20 10:29:18 UTC
README
Ethereum transaction library in PHP.
Install
composer require web3p/ethereum-tx
Usage
Create a transaction
use Kaadon\EthereumTx\Transaction; // without chainId $transaction = new Transaction([ 'nonce' => '0x01', 'from' => '0xb60e8dd61c5d32be8058bb8eb970870f07233155', 'to' => '0xd46e8dd67c5d32be8058bb8eb970870f07244567', 'gas' => '0x76c0', 'gasPrice' => '0x9184e72a000', 'value' => '0x9184e72a', 'data' => '' ]); // with chainId $transaction = new Transaction([ 'nonce' => '0x01', 'from' => '0xb60e8dd61c5d32be8058bb8eb970870f07233155', 'to' => '0xd46e8dd67c5d32be8058bb8eb970870f07244567', 'gas' => '0x76c0', 'gasPrice' => '0x9184e72a000', 'value' => '0x9184e72a', 'chainId' => 1, 'data' => '0xd46e8dd67c5d32be8d46e8dd67c5d32be8058bb8eb970870f072445675058bb8eb970870f072445675' ]); // hex encoded transaction $transaction = new Transaction('0xf86c098504a817c800825208943535353535353535353535353535353535353535880de0b6b3a76400008025a028ef61340bd939bc2195fe537567866003e1a15d3c71ff63e1590620aa636276a067cbe9d8997f761aecb703304b3800ccf555c9f3dc64214b297fb1966a3b6d83');
Create a EIP1559 transaction
use Kaadon\EthereumTx\EIP1559Transaction; // generate transaction instance with transaction parameters $transaction = new EIP1559Transaction([ 'nonce' => '0x01', 'from' => '0xb60e8dd61c5d32be8058bb8eb970870f07233155', 'to' => '0xd46e8dd67c5d32be8058bb8eb970870f07244567', 'maxPriorityFeePerGas' => '0x9184e72a000', 'maxFeePerGas' => '0x9184e72a000', 'gas' => '0x76c0', 'value' => '0x9184e72a', 'chainId' => 1, // required 'accessList' => [], 'data' => '' ]);
Create a EIP2930 transaction:
use Kaadon\EthereumTx\EIP2930Transaction; // generate transaction instance with transaction parameters $transaction = new EIP2930Transaction([ 'nonce' => '0x01', 'from' => '0xb60e8dd61c5d32be8058bb8eb970870f07233155', 'to' => '0xd46e8dd67c5d32be8058bb8eb970870f07244567', 'gas' => '0x76c0', 'value' => '0x9184e72a', 'chainId' => 1, // required 'accessList' => [], 'data' => '' ]);
Sign a transaction:
use Kaadon\EthereumTx\Transaction; $signedTransaction = $transaction->sign('your private key');
API
https://www.web3p.xyz/ethereumtx.html
License
MIT