PHPackages                             oasin/laravel-electrum - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. oasin/laravel-electrum

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

oasin/laravel-electrum
======================

A Laravel 5.4+ wrapper for Electrum

0.3.1(5y ago)04MITVuePHP &gt;=7.0.0

Since Sep 13Pushed 5y agoCompare

[ Source](https://github.com/oasin/laravel-electrum)[ Packagist](https://packagist.org/packages/oasin/laravel-electrum)[ RSS](/packages/oasin-laravel-electrum/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (2)Versions (5)Used By (0)

Electrum for Laravel 5.4+
=========================

[](#electrum-for-laravel-54)

Author: Tim Schipper
Description: Electrum support for Laravel with optional Vue wallet component.

[![Wallet Web Interface](https://raw.githubusercontent.com/AraneaDev/laravel-electrum/master/assets/wallet.gif "Wallet Web Interface")](https://raw.githubusercontent.com/AraneaDev/laravel-electrum/master/assets/wallet.gif)

[![Latest Version on Packagist](https://camo.githubusercontent.com/29b2db7faf95b388f36f7d568acc2d267dfb6b281e331883aca4214dc71020a3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f767072652f6172616e65616465762f6c61726176656c2d656c65637472756d2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/araneadev/laravel-electrum)[![Packagist](https://camo.githubusercontent.com/8dea253d830f98e346f77f40a20cf320c14cac46f390dfd989aa2c6cc305d193/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f6172616e65616465762f6c61726176656c2d656c65637472756d2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/araneadev/laravel-electrum)[![Scrutinizer Build](https://camo.githubusercontent.com/0849bb4858a6b358e904796c22f5be8f938fa6c5c488746c1bc5e510024d26df/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f6275696c642f672f4172616e65614465762f6c61726176656c2d656c65637472756d2e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/AraneaDev/laravel-electrum/)[![StyleCI](https://camo.githubusercontent.com/248e8cb41b17d8f2db4b9962bb22b945979db338ce175f75af3f03939b65ff57/68747470733a2f2f7374796c6563692e696f2f7265706f732f3130333431323637312f736869656c643f6272616e63683d6d6173746572)](https://styleci.io/repos/103412671)[![Quality Score](https://camo.githubusercontent.com/8cb4677c66c4a850f16cdb6b9a338bf4e6370248559610358947adc26222fd1f/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6172616e65616465762f6c61726176656c2d656c65637472756d2e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/araneadev/laravel-electrum)[![Total Downloads](https://camo.githubusercontent.com/10d2bcb0ba26c58c45c9ed939909956d62fecf2a2cf7d37b9ad3adfad942f578/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6172616e65616465762f6c61726176656c2d656c65637472756d2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/araneadev/laravel-electrum)

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.

Installation:
-------------

[](#installation)

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,

```

Requirements:
-------------

[](#requirements)

- PHP &gt;=7.0
- Laravel &gt;= 5.4+
- Electrum &gt;= 2.9.3

Setup Electrum
--------------

[](#setup-electrum)

Download and install [Electrum](https://electrum.org/#download) if you haven't done so yet.

```
electrum create
electrum daemon start
electrum setconfig rpcport 7777
electrum daemon load_wallet

```

Optional Web Interface installation
-----------------------------------

[](#optional-web-interface-installation)

### Requirements

[](#requirements-1)

- Clipboard.js &gt;= 1.7.1
- Moment.js &gt;= 2.4.0
- Vue \* &gt;= 2.1.10
- Vue QR Component &gt;= 2.1.1
- Vue2 Bootstrap Modal &gt; 0.1.11
- Axios \* &gt;= 0.16.2
- Lodash \* &gt;= 4.17.4
- Bootstrap \* &gt;= 3.3.7

*\* Included in Laravel 5.4+*

### Install Clipboard.js, Moment.js and Vue QR Component

[](#install-clipboardjs-momentjs-and-vue-qr-component)

```
npm install clipboard --save-dev
npm install moment --save-dev
npm install vue2-bootstrap-modal --save-dev
npm install vue-qrcode-component --save-dev

```

### Publish the assets

[](#publish-the-assets)

```
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'));

```

Available Commands
------------------

[](#available-commands)

Electrum's JSON-RPC methods are mapped to artisan commands:

```
php artisan electrum [METHOD] [--address=ADDRESS] [--txid=TXID] [--key=KEY]

```

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 91.1% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~334 days

Total

4

Last Release

2159d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/db213763c367792600e06c2eb22ed6f722e502edcea7d897b371fd312c894bb8?d=identicon)[oasin](/maintainers/oasin)

---

Top Contributors

[![AraneaDev](https://avatars.githubusercontent.com/u/12177132?v=4)](https://github.com/AraneaDev "AraneaDev (41 commits)")[![oasin](https://avatars.githubusercontent.com/u/31675779?v=4)](https://github.com/oasin "oasin (4 commits)")

### Embed Badge

![Health badge](/badges/oasin-laravel-electrum/health.svg)

```
[![Health](https://phpackages.com/badges/oasin-laravel-electrum/health.svg)](https://phpackages.com/packages/oasin-laravel-electrum)
```

###  Alternatives

[grumpydictator/firefly-iii

Firefly III: a personal finances manager.

22.8k69.3k](/packages/grumpydictator-firefly-iii)[gehrisandro/tailwind-merge-laravel

TailwindMerge for Laravel merges multiple Tailwind CSS classes by automatically resolving conflicts between them

341682.2k18](/packages/gehrisandro-tailwind-merge-laravel)[backpack/basset

Dead-simple way to load CSS or JS assets only once per page, when using Laravel 10+.

202832.4k6](/packages/backpack-basset)[firefly-iii/data-importer

Firefly III Data Import Tool.

7545.8k](/packages/firefly-iii-data-importer)[blair2004/nexopos

The Free Modern Point Of Sale System build with Laravel, TailwindCSS and Vue.js.

1.2k2.3k](/packages/blair2004-nexopos)[nickurt/laravel-akismet

Akismet for Laravel 11.x/12.x/13.x

97139.6k2](/packages/nickurt-laravel-akismet)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
