oasin/laravel-electrum is a Laravel package for a laravel 5.4+ wrapper for electrum.
It currently has 0 GitHub stars and 4 downloads on Packagist (latest version 0.3.1).
Install it with composer require oasin/laravel-electrum.
Discover more Laravel packages by oasin
or browse all Laravel packages to compare alternatives.
Last updated
Author: Tim Schipper [email protected]
Description: Electrum support for Laravel with optional Vue wallet component.

WARNING: Be safe and never ever put your private keys on a webserver, use a watch only wallet or even better, get and setup a hardware wallet, so your keys and coins will be safe.
Require this package in your composer.json and update composer. This will download the package.
composer require araneadev/laravel-electrum
After updating composer, add the ServiceProvider to the providers array in config/app.php
AraneaDev\Electrum\ElectrumServiceProvider::class,
Download and install Electrum if you haven't done so yet.
electrum create
electrum daemon start
electrum setconfig rpcport 7777
electrum daemon load_wallet
* Included in Laravel 5.4+
npm install clipboard --save-dev
npm install moment --save-dev
npm install vue2-bootstrap-modal --save-dev
npm install vue-qrcode-component --save-dev
php artisan vendor:publish --provider=AraneaDev\Electrum\ElectrumServiceProvider
Enable the Web interface in config/electrum.php.
[
....
'webinterface'=> [
'enabled' => true,
....
]
]
Then add the following line to your app.js:
Vue.component('electrum-wallet', require('./vendor/araneadev/Electrum.vue'));
Electrum's JSON-RPC methods are mapped to artisan commands:
php artisan electrum [METHOD] [--address=ADDRESS] [--txid=TXID] [--key=KEY]