Modern Laravel SDK for selected Tatum.io APIs.
hopekelldev/laravel-tatum-io is a Laravel package for modern laravel sdk for selected tatum.io apis..
It currently has 0 GitHub stars and 0 downloads on Packagist (latest version v1.0.0).
Install it with composer require hopekelldev/laravel-tatum-io.
Discover more Laravel packages by hopekelldev
or browse all Laravel packages to compare alternatives.
Last updated

HopekellDev Laravel Tatum.io is a modern, lightweight, and developer-friendly Laravel SDK for selected Tatum.io APIs.
Built specifically for:
This package provides a clean Laravel-style fluent API structure for interacting with Tatum blockchain infrastructure.
composer require hopekelldev/laravel-tatum-io
Publish config:
php artisan vendor:publish --tag=tatum-config
Add your Tatum credentials to .env
TATUM_API_KEY=your_api_key
TATUM_BASE_URL=https://api.tatum.io
TATUM_TIMEOUT=30
TATUM_THROW_EXCEPTIONS=true
use HopekellDev\Tatum\Facades\Tatum;
$response = Tatum::blockchainRpc()
->bitcoin()
->generateWallet();
return $response;
Supported chains:
Tatum::blockchainRpc()
->bitcoin()
->generateWallet();
Tatum::blockchainRpc()
->ethereum()
->getBalance($address);
Tatum::smartContracts()
->nft()
->mint($data);
Tatum::smartContracts()
->fungibleTokens()
->transfer($data);
Tatum::smartContracts()
->marketplace()
->createListing($data);
Tatum::virtualAccounts()
->account()
->create($data);
Tatum::virtualAccounts()
->customer()
->create($data);
Tatum::virtualAccounts()
->withdrawal()
->create($data);
Tatum::blockchainNotifications()
->subscriptions()
->all();
Tatum::security()
->keyManagementSystem()
->sign($data);
Tatum::utils()
->blockchainUtils()
->broadcast($data);
use HopekellDev\Tatum\Facades\Tatum;
use HopekellDev\Tatum\Exceptions\TatumException;
try {
$wallet = Tatum::blockchainRpc()
->bitcoin()
->generateWallet();
} catch (TatumException $e) {
return $e->getMessage();
}
Tatum
βββ Services
β βββ BlockchainNotifications
β βββ BlockchainRpc
β βββ SmartContracts
β βββ Security
β βββ VirtualAccounts
β βββ Utils
βββ Helpers
β βββ Http Client
β βββ Response Formatter
βββ Exceptions
Contributions are welcome.
You can help by:
This package is open-sourced software licensed under the MIT License.
HopekellDev
Building scalable fintech, blockchain, SaaS, and backend systems.
If this package helps you, please support it by:
Built for Laravel developers who need a clean, modern, and extendable Tatum.io SDK.