westwallet/westwallet-php-api
最新稳定版本:v1.8.3
Composer 安装命令:
composer require westwallet/westwallet-php-api
包简介
WestWallet API library
README 文档
README
westwallet-php-api is a WestWallet Public API wrapper for PHP programming language. Use it for building payment solutions.
Installing
Install from composer:
composer require westwallet/westwallet-php-api
Create withdrawal example
<?php require_once 'vendor/autoload.php'; use WestWallet\WestWallet\Client; use WestWallet\WestWallet\InsufficientFundsException; $client = new Client("your_public_key", "your_private_key"); // Send 0.1 ETH to 0x57689002367b407f031f1BB5Ef2923F103015A32 try { $tx = $client->createWithdrawal("ETH", "0.1", "0x57689002367b407f031f1BB5Ef2923F103015A32"); print(implode("|", $tx)."\n"); } catch(InsufficientFundsException $e) { print("You don't have enough funds to make this withdrawal"."\n"); }
Generate address example
<?php require_once 'vendor/autoload.php'; use WestWallet\WestWallet\Client; use WestWallet\WestWallet\CurrencyNotFoundException; $client = new Client("your_public_key", "your_private_key"); // Send 0.1 ETH to 0x57689002367b407f031f1BB5Ef2923F103015A32 try { $address = $client->generateAddress("BTC"); print($address['address'])."\n"); } catch(CurrencyNotFoundException $e) { print("This currency doesn't exist!"."\n"); }
Documentation
Other languages
统计信息
- 总下载量: 1.48k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2019-09-05