Improved samples and documentation

This commit is contained in:
AlexanderBuzz
2023-11-20 14:11:48 +01:00
parent 682e2197cb
commit 06b79a1b4d
6 changed files with 124 additions and 59 deletions

View File

@@ -16,3 +16,11 @@ $wallet = Wallet::generate();
// Fund (and activate) the wallet
fundWallet($client, $wallet);
// print wallet properties
print_r([
'publicKey' => $wallet->getPublicKey(),
'privateKey' => $wallet->getPrivateKey(),
'classicAddress' => $wallet->getAddress(),
'seed' => $wallet->getSeed()
]);