- 💡 EIP-1559 Support: Seamlessly handle modern Ethereum transactions with dynamic fee management.
- 🚀 Asynchronous Transaction Queue: Process blockchain transactions safely through Laravel Queues — no blocking, no delays.
- 🔗 Event-driven Workflow: Stay in control with Laravel Events for every step: TxQueued, TxBroadcasted, TxMined, TxFailed.
- 🧠 Smart Nonce & Fee Strategy: Automatic nonce tracking and adaptive fee logic for consistent, reliable execution.
All information on how to use this package can be found on our official documentation website. → Read the Docs
- PHP >= 8.4
- Laravel >= 12
- GMP PHP extension installed and enabled
Install the package via composer:
composer require farbcode/laravel-evmYou can publish the config file with:
php artisan vendor:publish --tag="evm-config"Then set your blockchain RPC URL, chain id and private key in .env:
EVM_CHAIN_ID=137
EVM_RPC_1=https://polygon-mainnet.g.alchemy.com/v2/KEY
EVM_PRIVATE_KEY=0xabc123...64hexuse Farbcode\LaravelEvm\Facades\Evm;
$abi = file_get_contents(storage_path('app/abi/MyContract.abi.json'));
$contract = LaravelEvm::at('0xYourContract', $abi);
// Read call
$balance = $contract->call('balanceOf', ['0xUser']);
// Write (async - enqueued on EVM_QUEUE default:evm-send, see https://laravel-evm.farbcode.net/basic-usage#writes-async-transactions for more information)
$jobId = $contract->sendAsync('transfer', ['0xRecipient', 100]);Wait for a known tx hash:
$receipt = $contract->wait('0xTxHash');use Farbcode\LaravelEvm\Facades\EvmLogs;
use Farbcode\LaravelEvm\Support\LogFilterBuilder;
$abi = file_get_contents(storage_path('app/abi/ERC20.abi.json'));
$logs = EvmLogs::query()
->fromBlock(18_000_000)
->toBlock('latest')
->address('0xToken')
->eventByAbi($abi, 'Transfer')
->topicAny(1, [LogFilterBuilder::padAddress($addrA), LogFilterBuilder::padAddress($addrB)])
->get();
$decoded = array_map(fn($l) => LogFilterBuilder::decodeEvent($abi, $l), $logs);All information on how to use this package can be found on our official documentation website. → Read the Docs
Notable changes to this package are documented in our changelog for every new release.
We welcome contributions to this package.
→ Read our Contribution Guidelines
The MIT License (MIT). See License File for more information.
Made with ❤️ by //farbcode.