wwtc / sdk
A PHP wrapper for wwtc API
Installs: 15
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/wwtc/sdk
Requires
- php: >=5.3.0
- guzzlehttp/guzzle: ^6.2
This package is not auto-updated.
Last update: 2025-10-06 12:02:40 UTC
README
getnewaddress
$wtc = new wwtc();
$wtc->setsecret('secret','apikey');
$address = $wtc->getnewaddress();
listtransactions
$wtc = new wwtc();
$wtc->setsecret('secret','apikey');
$listtransactions = $wtc->listtransactions($limit,$offset);
sendcoin
$wtc = new wwtc();
$wtc->setsecret('secret','apikey');
$send = $wtc->sendcoin('address here',amount here);