placecodex/ccoincrypto

test package

Installs: 13

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/placecodex/ccoincrypto

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

This package is not auto-updated.

Last update: 2025-09-25 05:00:05 UTC


README

A php library for the generation of bitcoin, litecoin and dogecoin wallets

  • BTC *mainnet *testnet

  • LTC *mainnet *testnet

  • DOGE coming soon *mainnet *testnet

How use

install

composer require placecodex/ccoincrypto

use

require('vendor/autoload.php');

use Placecodex\CCoincrypto\Wallet;

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

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

response

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