PHPackages                             waves/client - 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. [API Development](/categories/api)
4. /
5. waves/client

ActiveLibrary[API Development](/categories/api)

waves/client
============

PHP client library for interacting with Waves blockchain platform

v1.0.4(1y ago)9102↓50%6MITPHPPHP &gt;=7.4

Since Aug 1Pushed 1y ago4 watchersCompare

[ Source](https://github.com/wavesplatform/waves-php)[ Packagist](https://packagist.org/packages/waves/client)[ Docs](https://github.com/wavesplatform/waves-php)[ RSS](/packages/waves-client/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (5)Dependencies (5)Versions (7)Used By (0)

Waves-PHP
=========

[](#waves-php)

[![packagist](https://camo.githubusercontent.com/ca2ea3a596d819aa21d58f968b43b17079965dc77d41bbadc196522bb00bb20b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f77617665732f636c69656e742e737667)](https://packagist.org/packages/waves/client)[![php-version](https://camo.githubusercontent.com/d03c7b595dda266d8fc7c4d13564e1108e2621994ad91d45eede8ded96754874/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f77617665732f636c69656e742e737667)](https://packagist.org/packages/waves/client)[![codecov](https://camo.githubusercontent.com/a66d50c66f87ccf0f136a28680d30cf161160162260f6f39f9da00e2b56033b7/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636f762f632f6769746875622f7761766573706c6174666f726d2f77617665732d706870)](https://app.codecov.io/gh/wavesplatform/waves-php)[![phpstan](https://camo.githubusercontent.com/1bc07920f0d36e55c17e1d38b1caa132cc605f51a82b388c962870b9a747b898/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048505374616e2d6c6576656c253230392d627269676874677265656e2e737667)](https://github.com/wavesplatform/waves-php/blob/main/.github/workflows/phpstan.yml#L35)[![codecov](https://camo.githubusercontent.com/003f66208a4b0f581e5c5321d40528abeeafc3199b46a91d6c8e811b19989c8a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7761766573706c6174666f726d2f77617665732d7068702f636f6465636f762e796d6c3f6272616e63683d6d61696e266c6162656c3d436f6465636f76)](https://github.com/wavesplatform/waves-php/actions/workflows/codecov.yml)[![phpstan](https://camo.githubusercontent.com/6d02822ac8886e2db0d36640340d6da6c771e9eee00ba5cb9a207ff9e0e8635e/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7761766573706c6174666f726d2f77617665732d7068702f7068707374616e2e796d6c3f6272616e63683d6d61696e266c6162656c3d5048505374616e)](https://github.com/wavesplatform/waves-php/actions/workflows/phpstan.yml)[![phpstan](https://camo.githubusercontent.com/0f278c8498ffd9a3e7274c69af739198befdd6efd46625e836fa391e95ad0b7b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f7761766573706c6174666f726d2f77617665732d7068702f706870756e69742e796d6c3f6272616e63683d6d61696e266c6162656c3d504850556e6974)](https://github.com/wavesplatform/waves-php/actions/workflows/phpunit.yml)

PHP client library for interacting with Waves blockchain platform.

Installation
------------

[](#installation)

```
composer require waves/client
```

Usage
-----

[](#usage)

See [`example.php`](example.php) for full code examples.

- New account:

```
$account = PrivateKey::fromSeed( 'your mnemonic seed phrase' );
$sender = $account->publicKey();
echo 'address = ' . $sender->address()->toString() . PHP_EOL;
```

- Node basics:

```
$nodeChainId = $node->chainId();
echo 'node chainId = ' . $nodeChainId->asString() . PHP_EOL;
$nodeVersion = $node->getVersion();
echo 'node version = ' . $nodeVersion . PHP_EOL;
$nodeHeight = $node->getHeight();
echo 'node height = ' . $nodeHeight . PHP_EOL;
```

- Transfer transaction:

```
$amount = Amount::of( 1 ); // 0.00000001 Waves
$recipient = Recipient::fromAddressOrAlias( 'test' ); // from alias
$recipient = Recipient::fromAddressOrAlias( '3N9WtaPoD1tMrDZRG26wA142Byd35tLhnLU' ); // from address

$transferTx = TransferTransaction::build( $sender, $recipient, $amount );
$transferTxSigned = $transferTx->addProof( $account );
$transferTxBroadcasted = $node->broadcast( $transferTxSigned );
$transferTxConfirmed = $node->waitForTransaction( $transferTxBroadcasted->id() );
```

- DApp invocation transaction:

```
$dApp = Recipient::fromAddressOrAlias( '3N7uoMNjqNt1jf9q9f9BSr7ASk1QtzJABEY' );
$functionCall = FunctionCall::as( 'retransmit', [
    Arg::as( Arg::STRING, Value::as( $sender->address()->toString() ) ),
    Arg::as( Arg::INTEGER, Value::as( 1 ) ),
    Arg::as( Arg::BINARY, Value::as( hash( 'sha256', $sender->address()->toString(), true ) ) ),
    Arg::as( Arg::BOOLEAN, Value::as( true ) ),
] );
$payments = [
    Amount::of( 1000 ),
];

$invokeTx = InvokeScriptTransaction::build( $sender, $dApp, $functionCall, $payments );
$invokeTxSigned = $invokeTx->addProof( $account );
$invokeTxBroadcasted = $node->broadcast( $invokeTxSigned );
$invokeTxConfirmed = $node->waitForTransaction( $invokeTxBroadcasted->id() );
```

Requirements
------------

[](#requirements)

- [PHP](http://php.net) &gt;= 7.4

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance34

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~186 days

Total

5

Last Release

641d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/10706633?v=4)[Dmitrii Pichulin](/maintainers/deemru)[@deemru](https://github.com/deemru)

---

Top Contributors

[![deemru](https://avatars.githubusercontent.com/u/10706633?v=4)](https://github.com/deemru "deemru (21 commits)")

---

Tags

clientblockchainwavesplatformwaves

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/waves-client/health.svg)

```
[![Health](https://phpackages.com/badges/waves-client/health.svg)](https://phpackages.com/packages/waves-client)
```

###  Alternatives

[openai-php/client

OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API

5.8k22.6M232](/packages/openai-php-client)[openai-php/laravel

OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API

3.7k7.6M74](/packages/openai-php-laravel)[algolia/algoliasearch-client-php

API powering the features of Algolia.

69433.0M114](/packages/algolia-algoliasearch-client-php)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

74513.7M114](/packages/meilisearch-meilisearch-php)[resend/resend-php

Resend PHP library.

574.7M21](/packages/resend-resend-php)[hardcastle/xrpl_php

PHP SDK / Client for the XRP Ledger

129.7k5](/packages/hardcastle-xrpl-php)

PHPackages © 2026

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