PHPackages                             eiyaro/core-php - 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. eiyaro/core-php

AbandonedArchivedLibrary[API Development](/categories/api)

eiyaro/core-php
===============

Set of classes to deal with EIYARO's API

v0.1.16(2y ago)124MITPHPPHP &gt;=8.0

Since Apr 15Pushed 2y ago1 watchersCompare

[ Source](https://github.com/EIYARO-Project/core-php)[ Packagist](https://packagist.org/packages/eiyaro/core-php)[ Docs](https://github.com/EIYARO-Project/core-php)[ RSS](/packages/eiyaro-core-php/feed)WikiDiscussions main Synced today

READMEChangelog (8)Dependencies (1)Versions (11)Used By (0)

EIYARO Core-PHP
===============

[](#eiyaro-core-php)

[![Supports Windows](https://camo.githubusercontent.com/6accbd55e0c266113754ef9692c2508e3aaf5531eedfb892b2803d38507cecf6/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f737570706f72742d57696e646f77732d626c75653f6c6f676f3d57696e646f7773)](https://github.com/EIYARO-Project/core-php/releases/latest)[![Supports Linux](https://camo.githubusercontent.com/54a741770ff1c737d9ff3208b172db6d6738180b0b3982b482744ea7bb0aa1ec/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f737570706f72742d4c696e75782d79656c6c6f773f6c6f676f3d4c696e7578)](https://github.com/EIYARO-Project/core-php/releases/latest)[![License](https://camo.githubusercontent.com/16923806ff741482c0e29a3d0c41b2e8e44768addabc6c1c2568e15743a23514/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f45495941524f2d50726f6a6563742f636f7265)](https://github.com/EIYARO-Project/core-php/blob/master/LICENSE)[![Latest Release](https://camo.githubusercontent.com/1686a320fce3038061f89b6bcb303b80142c422640fdb9b0a5d5aee873d141b7/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f762f72656c656173652f45495941524f2d50726f6a6563742f636f72653f6c6162656c3d6c617465737425323072656c65617365)](https://github.com/EIYARO-Project/core-php/releases/latest)[![Downloads](https://camo.githubusercontent.com/cc1302a6825c28f746e02f71575b8e2bd41ff926466072c2bf751c8c71225019/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f646f776e6c6f6164732f45495941524f2d50726f6a6563742f636f72652d7068702f746f74616c)](https://github.com/EIYARO-Project/core-php/releases)

Set of classes to deal with `EIYARO`'s `API`.

Examples
--------

[](#examples)

Common code:

```
include __DIR__ . '/vendor/autoload.php';

$base_uri = 'https://api.eiyaro.com';
$accessToken = null;

use EIYARO\API;

$api = new API($base_uri, $accessToken);
```

### Net Info

[](#net-info)

```
echo "== Net Info ==\n";
$netInfo = $api->getNetInfo();
echo json_encode($netInfo) . "\n";
echo "==============\n\n";
```

### Block Count

[](#block-count)

```
echo "== Block Count ==\n";
$blockCount = $api->getBlockCount();
echo "Height: {$blockCount}\n";
echo "=================\n\n";
```

### Block

[](#block)

```
echo "== Block ==\n";
$block = $api->getBlock($6635);
echo "Block({$blockCount}): {$block->hash}\n";
echo "===========\n\n";
```

### Transaction

[](#transaction)

```
echo "== Transaction ==\n";
try {
    $transaction = $api->getTransaction("fc64be31e56a448879f9984599cafead466ec5b1a985c6ce8e6d45685c55b7d1");
    echo json_encode($transaction, JSON_PRETTY_PRINT) . "\n";
} catch (Exception $e) {
    echo "Error: ". $e->getMessage() ."\n";
}
echo "===========\n\n";
```

### List Pending Transactions

[](#list-pending-transactions)

```
echo "== List Pending Transactions ==\n";
$transactions = $api->getPendingTransactions();
echo json_encode($transactions, JSON_PRETTY_PRINT)."\n";
echo "===========\n\n";
```

### Get Pending Transaction

[](#get-pending-transaction)

```
echo "== Get Pending Transaction ==\n";
$transaction = $api->getPendingTransaction("fc64be31e56a448879f9984599cafead466ec5b1a985c6ce8e6d45685c55b7d1");
echo json_encode($transaction, JSON_PRETTY_PRINT)."\n";
echo "===========\n\n";
```

### List Assets

[](#list-assets)

```
echo "== List Assets ==\n";
$assets = $api->getAssets();
echo json_encode($assets, JSON_PRETTY_PRINT)."\n";
echo "===========\n\n";
```

### Get Asset

[](#get-asset)

```
echo "== Get Asset ==\n";
$asset = $api->getAsset('ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff');
echo json_encode($asset, JSON_PRETTY_PRINT)."\n";
echo "===========\n\n";
```

###  Health Score

21

—

LowBetter than 18% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity43

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 ~2 days

Total

10

Last Release

787d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/81799?v=4)[Gustavo 'Gus' Carreno](/maintainers/gcarreno)[@gcarreno](https://github.com/gcarreno)

---

Top Contributors

[![gcarreno](https://avatars.githubusercontent.com/u/81799?v=4)](https://github.com/gcarreno "gcarreno (25 commits)")

---

Tags

crypto-currencycryptocurrencyeiyaroeiyaro-phpapidatastructuresdata structuresEIYARO

### Embed Badge

![Health badge](/badges/eiyaro-core-php/health.svg)

```
[![Health](https://phpackages.com/badges/eiyaro-core-php/health.svg)](https://phpackages.com/packages/eiyaro-core-php)
```

###  Alternatives

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M47](/packages/tencentcloud-tencentcloud-sdk-php)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

273.0k](/packages/eslazarev-wildberries-sdk)[resend/resend-php

Resend PHP library.

617.2M43](/packages/resend-resend-php)[files.com/files-php-sdk

Files.com PHP SDK

2481.1k](/packages/filescom-files-php-sdk)[checkout/checkout-sdk-php

Checkout.com SDK for PHP

563.6M13](/packages/checkout-checkout-sdk-php)[scriptdevelop/whatsapp-manager

Paquete para manejo de WhatsApp Business API en Laravel

783.8k](/packages/scriptdevelop-whatsapp-manager)

PHPackages © 2026

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