farbcode/laravel-evm
Composer 安装命令:
composer require farbcode/laravel-evm
包简介
Simple, Reliable Ethereum Integration for Laravel
关键字:
README 文档
README
Laravel EVM (Ethereum Virtual Machine)
Simple, Reliable Ethereum Integration for Laravel
Features
- 💡 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.
Documentation
All information on how to use this package can be found on our official documentation website. → Read the Docs
Requirements
- PHP >= 8.4
- Laravel >= 12
- GMP PHP extension installed and enabled
Installation
Install the package via composer:
composer require farbcode/laravel-evm
You 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...64hex
Usage (Quick Glimpse)
use 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');
Log Filtering & Event Decoding
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
Changelog
Notable changes to this package are documented in our changelog for every new release.
Contributing
We welcome contributions to this package.
→ Read our Contribution Guidelines
License
The MIT License (MIT). See License File for more information.
Made with ❤️ by //farbcode.
farbcode/laravel-evm 适用场景与选型建议
farbcode/laravel-evm 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 559 次下载、GitHub Stars 达 4, 最近一次更新时间为 2025 年 11 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「rpc」 「laravel」 「blockchain」 「Polygon」 「ethereum」 「laravel-package」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 farbcode/laravel-evm 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 farbcode/laravel-evm 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 farbcode/laravel-evm 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Microservice RPC through message queues.
The BlockTrail PHP SDK, for integration of Bitcoin functionality through the BlockTrail API
Solana PHP SDK for interacting with the Solana blockchain
A fast and dynamic Merkle tree implementation
Multichain JSON-RPC Client
Control Nginx as a reverse proxy through plinker RPC
统计信息
- 总下载量: 559
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 29
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-11-04