定制 hopekelldev/laravel-tatum 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

hopekelldev/laravel-tatum

最新稳定版本:1.0.0

Composer 安装命令:

composer require hopekelldev/laravel-tatum

包简介

A Laravel 10 package for interacting with Tatum.io API endpoints.

README 文档

README



Latest Version Total Downloads Scrutinizer Code Quality Requirements Laravel

Table of Contents

Welcome!

This is Laravel wrapper for Tatum.io API endpoints version 1.0.0 based on API version 4.0.

What is Tatum?

Tatum offers a flexible framework to build, run, and scale blockchain apps fast. To learn more about the Tatum blockchain development framework, visit our website.

The Tatum API features powerful endpoints that simplify a complex blockchain into single API requests. Code for all supported blockchains using unified API calls.

Getting Started

You can install the package via Composer:

composer require hopekelldev/laravel-tatum

The package will automatically register its service provider and facade.

You'll need to add the service provider to your config/app.php file:

'providers' => [
    // Other Service Providers
    HopekellDev\LaravelTatum\TatumServiceProvider::class,
],

Add alias too:

'aliases' => [
    // Other Aliases
    'Tatum' => HopekellDev\LaravelTatum\Facades\Tatum::class,
],

You can also publish the configuration file if you want to customize it:

php artisan vendor:publish --provider="HopekellDev\LaravelTatum\TatumServiceProvider" --tag="config"

You'll need to add your Tatum.io API credentials to your .env file:

TATUM_API_KEY=your-api-key
TATUM_ACCOUNT_ID=your-account-id

##Testing

use Tatum;

// Example usage
$balance = Tatum::getAccountBalance();

统计信息

  • 总下载量: 20
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-05-01