PHPackages                             towoju5/bitpowr - 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. towoju5/bitpowr

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

towoju5/bitpowr
===============

Bitpowr Laravel package for wallet address

0136PHP

Since Nov 25Pushed 3y ago1 watchersCompare

[ Source](https://github.com/towoju5/BitPower-Laravel-Package)[ Packagist](https://packagist.org/packages/towoju5/bitpowr)[ RSS](/packages/towoju5-bitpowr/feed)WikiDiscussions main Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

Very short description of the package
=====================================

[](#very-short-description-of-the-package)

[![Latest Version on Packagist](https://camo.githubusercontent.com/4a18eceaf8625d09d1e87e6139599195238c50a9b9eb9c69bc50ec67db28e08c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f746f776f6a75352f626974706f77722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/towoju5/bitpowr)[![Total Downloads](https://camo.githubusercontent.com/ea1b78aa9f6a1c40afa49dc49187dee674190f8bda63c90cc53859cc4e979de0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f746f776f6a75352f626974706f77722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/towoju5/bitpowr)[![GitHub Actions](https://github.com/towoju5/bitpowr/actions/workflows/main.yml/badge.svg)](https://github.com/towoju5/bitpowr/actions/workflows/main.yml/badge.svg)

Authentication Authentication is handled using your public/secret key token or API key included in the Authorization header of each request. Please create an account or contact bitpowr support to get your keys.

📘 All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail. The Authorization header must be sent for every request unless stated otherwise. Not doing so will result in an unauthorized response.

Using Public and Secret Key This uses the public and secret keys of your account to gain access to your account using the API. To use this, you would need to concat them in this format {public\_key:secret\_key} and encode it to base64 encoding before passing it to the header. This method gives you admin access to your account and won't be able to restrict keys

Authorization: Bearer &lt;ENCODED\_TOKEN&gt;

Mode/Network The mode and network of the account basically depend on the keys you are using to authorize. To connect to the mainnet environment, ensure your keys are for LIVE mode and if you want to test use the TEST keys. In Production, ensure you are using the LIVE keys which make your account interact with the mainnet Network.

Rate Limiting If too many requests are received using the same access token, that access token will be throttled. Throttled requests will receive a response with a status code of 429 and will contain a Retry-After header that indicates how many seconds the user should wait before making additional requests. Please design your client to adhere to the Retry-After header, and not the current rate limit.

Supported Blockchains We currently support 11 public blockchains to be used right from your API and dashboard. We are continuously adding new blockchains every day.

```
Supported Chains

Bitcoin	BITCOIN (BTC)	BTC	MAINNET, TESTNET	Available
Litecoin	            LITECOIN (LTC)	LTC	MAINNET, TESTNET	Available
Bitcoin Cash	        BITCOINCASH (BCH)	BCH	MAINNET, TESTNET	Available
Dogecoin	            DOGECOIN (DOGE)	DOGE	MAINNET, TESTNET	In Progress
Ethereum	            ETHEREUM (ETH)	ETH, ERC20 (USDC, BUSD, USDT, DAI, LINK)	MAINNET, TESTNET (ETH only)	Available
Polygon	                POLYGON (MATIC)	MATIC, ERC20 (USDC_MATIC, USDT_MATIC)	MAINNET, TESTNET (MATIC only)	Available
Binance                 Smart Chain	BSC (BNB)	BNB, ERC20 (USDC_BSC, BUSD_BSC)	MAINNET, TESTNET (BNB only)	Available
Tron	                TRON (TRX)	TRX, ERC20 (USDT_TRON)	MAINNET, TESTNET (TRX only)	Available
Solana	                SOLANA (SOL)	SOL, SPL tokens	MAINNET, TESTNET (SOL only)	Available
Terra	                TERRA (LUNA)	LUNA, UST	MAINNET, TESTNET (LUNA only)	Under Maintainance
Ripple	                RIPPLE (XRP)	XRP	MAINNET	Comming Soon
Stellar	                STELLAR (XLM)	XLM	MAINNET	Available
Fantom	                FANTOM (FTM)	FTM	MAINNET, TESTNET	Comming Soon
Ronin	                RONIN (RON)	RON, SLP	MAINNET, TESTNET (RON only)	Comming Soon
Celo	                CELO (CELO)	CELO, cUSD, cEUR	MAINNET, TESTNET (CELO only)	In Progress
Bantu	                BANTU (XBN)	XBN	MAINNET, TESTNET	Available

```

```
Supported Assets

BTC	            BITCOIN	MAINNET, TESTNET Available
LTC	            LITECOIN MAINNET, TESTNET Available
BCH	            BITCOINCASH	MAINNET, TESTNET Available
ETH	            ETHEREUM MAINNET, TESTNET	Available
USDC	        ETHEREUM MAINNET Available
USDT	        ETHEREUM AINNET	Available
BUSD	        ETHEREUM MAINNET Available
LINK	        ETHEREUM MAINNET Available
MATIC	        POLYGON	MAINNET, TESTNET	Available
USDC_MATIC	    POLYGON	MAINNET	Available
USDT_MATIC	    POLYGON	MAINNET	Available
BSC (BNB)	    BSC	MAINNET, TESTNET Available
USDC_BSC	    BSC	MAINNET	Available
BUSD_BSC	    BSC	MAINNET	Available
TRON (TRX)	    TRON MAINNET, TESTNET Available
USDT_TRON	    TRON AINNET	Available
SOL	SOLANA	    MAINNET, TESTNET Available
LUNA	        TERRA MAINNET
XBN	BANTU	    MAINNET, TESTNET Available

```

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

[](#installation)

You can install the package via composer:

```
composer require towoju5/bitpowr
```

Usage
-----

[](#usage)

Using via Facede:

```
    app('bitpowr');
```

Via namespace

```
    use Towoju5\Bitpowr\Bitpowr;
    $bearerToken =
    $bitpowr = new Bitpowr($bearerToken);
```

### Testing

[](#testing)

```
composer test
```

### Changelog

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

### Security

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [EMMANUEL TOWOJU](https://github.com/towoju5)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

Laravel Package Boilerplate
---------------------------

[](#laravel-package-boilerplate)

This package was generated using the [Laravel Package Boilerplate](https://laravelpackageboilerplate.com).

###  Health Score

16

—

LowBetter than 4% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity24

Early-stage or recently created project

 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/10d0b6560e7895f8e4b30e120cc5fca9e6a6472ce741a9c54779ba6f1ac6b158?d=identicon)[Towoju5](/maintainers/Towoju5)

---

Top Contributors

[![towoju5](https://avatars.githubusercontent.com/u/40261626?v=4)](https://github.com/towoju5 "towoju5 (9 commits)")

### Embed Badge

![Health badge](/badges/towoju5-bitpowr/health.svg)

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

###  Alternatives

[kozz/emoji-regex

Emoji regex parser

31175.5k](/packages/kozz-emoji-regex)[activecampaign/module-integration

ActiveCampaign extension for Magento 2.3 and 2.4

1163.7k](/packages/activecampaign-module-integration)[politriukas/avataaars

PHP SVG avatar generator based on https://github.com/fangpenlin/avataaars-generator

112.0k](/packages/politriukas-avataaars)

PHPackages © 2026

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