PHPackages                             bobicloudvision/ethereum-wallet - 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. bobicloudvision/ethereum-wallet

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

bobicloudvision/ethereum-wallet
===============================

Ethereum wallet library in PHP.

0.1(2y ago)04MITPHPPHP ^7.1 | ^8.0

Since Aug 10Pushed 2y agoCompare

[ Source](https://github.com/bobicloudvision/ethereum-wallet)[ Packagist](https://packagist.org/packages/bobicloudvision/ethereum-wallet)[ RSS](/packages/bobicloudvision-ethereum-wallet/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (3)Versions (2)Used By (0)

ethereum-wallet
===============

[](#ethereum-wallet)

[![PHP](https://github.com/web3p/ethereum-wallet/actions/workflows/php.yml/badge.svg)](https://github.com/web3p/ethereum-wallet/actions/workflows/php.yml)[![codecov](https://camo.githubusercontent.com/f6958a10b15ac5762d8c96f420d8035e0090c0a987f835d35441e08658cec3b7/68747470733a2f2f636f6465636f762e696f2f67682f77656233702f657468657265756d2d77616c6c65742f6272616e63682f6d61737465722f67726170682f62616467652e737667)](https://codecov.io/gh/web3p/ethereum-wallet)[![Licensed under the MIT License](https://camo.githubusercontent.com/08cef40a9105b6526ca22088bc514fbfdbc9aac1ddbf8d4e6c750e3a88a44dca/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d626c75652e737667)](https://github.com/web3p/ethereum-wallet/blob/master/LICENSE)

Ethereum wallet.

Install
=======

[](#install)

```
composer require bobicloudvision/ethereum-wallet

```

Usage
=====

[](#usage)

Generate a new wallet:

```
use Web3p\EthereumWallet\Wallet;

$wallet = new Wallet();
$mnemonicLength = 15;
$wallet->generate($mnemonicLength);

// $wallet->address;
// danger zone, if the data was leaked, money would be stolen
// $wallet->privateKey;
// $wallet->mnemonic;
```

Recover wallet from mnemonic:

```
use Web3p\EthereumWallet\Wallet;

$wallet = new Wallet();
$mnemonic = '..........';
$wallet->fromMnemonic($mnemonic);

// $wallet->address;
// danger zone, if the data was leaked, money would be stolen
// $wallet->privateKey;
// $wallet->mnemonic;
```

API
===

[](#api)

### Web3p\\EthereumWallet\\Wallet

[](#web3pethereumwalletwallet)

#### setWordlist

[](#setwordlist)

Set different mnemonic wordlist, the default is english.

`setWordlist(WordList $wordlist)`

wordList - \\BitWasp\\Bitcoin\\Mnemonic\\WordList

###### Example

[](#example)

```
use Web3p\EthereumWallet\Wallet;
use Web3p\EthereumWallet\Wordlist\BIP39ChineseTraditionalWordList;

$wallet = new Wallet();
$zh_TW_wordlist = new BIP39ChineseTraditionalWordList;
$wallet->wordlist = $zh_TW_wordlist;
```

#### generate

[](#generate)

Returns a new wallet for the given mnemonic length.

`generate(int $mnemonicLength)`

mnemonicLength - integer.

###### Example

[](#example-1)

- Generate a new wallet with 12 mnemonic.

```
use Web3p\EthereumWallet\Wallet;

$wallet = new Wallet();
$wallet->generate(12);
```

#### fromMnemonic

[](#frommnemonic)

Returns a wallet recover from the mnemonic.

`fromMnemonic(string $mnemonic)`

mnemonic - string.

###### Example

[](#example-2)

- Recover from a wallet.

```
use Web3p\EthereumWallet\Wallet;

$wallet = new Wallet();
$mnemonic = '..........';
$wallet->fromMnemonic($mnemonic);
```

License
=======

[](#license)

MIT

###  Health Score

19

—

LowBetter than 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity38

Early-stage or recently created project

 Bus Factor1

Top contributor holds 90.5% 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

Unknown

Total

1

Last Release

1006d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/54aca816e08a169a1615996a7ebed1c12cd35688999f8573a9c5c677aa9ea597?d=identicon)[bobicloudvision](/maintainers/bobicloudvision)

---

Top Contributors

[![sc0Vu](https://avatars.githubusercontent.com/u/10494397?v=4)](https://github.com/sc0Vu "sc0Vu (19 commits)")[![bobicloudvision](https://avatars.githubusercontent.com/u/69676022?v=4)](https://github.com/bobicloudvision "bobicloudvision (2 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/bobicloudvision-ethereum-wallet/health.svg)

```
[![Health](https://phpackages.com/badges/bobicloudvision-ethereum-wallet/health.svg)](https://phpackages.com/packages/bobicloudvision-ethereum-wallet)
```

###  Alternatives

[mundschenk-at/php-typography

A PHP library for improving your web typography

78945.6k13](/packages/mundschenk-at-php-typography)[btccom/bitwasp-bitcoin-bch-addon

Bridge to bitwasp/bitcoin for bch.

104.1k1](/packages/btccom-bitwasp-bitcoin-bch-addon)

PHPackages © 2026

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