placecodex/ccoincrypto

dev-master 2022-06-08 12:52 UTC

This package is not auto-updated.

Last update: 2024-09-26 00:09:33 UTC


README

一个用于生成比特币、莱特币和狗狗币钱包的 PHP 库

  • BTC *主网 *测试网

  • LTC *主网 *测试网

  • DOGE 即将推出 *主网 *测试网

如何使用

安装

composer require placecodex/ccoincrypto

使用

require('vendor/autoload.php');

use Placecodex\CCoincrypto\Wallet;

print_r($Wallet->btc()); print_r($Wallet->btctestnet());

print_r($Wallet->ltc()); print_r($Wallet->ltctestnet());

响应

Array ( [privatekey] => cU3kKbuaaC82BTQSr8VWyiLuNGzUh2oBeVsgFhp7CjmqpeqtNXMa [coin] => BTC [name] => 比特币 [network] => testnet [address] => mu9fCZczwZ7N7gN8hqc8wFe4wEBFqLB4AF )