wallet-api\GenerateAddressInHDWallet.php
<?php

Generate New Address in a HD Wallet

This sample code demonstrate how you can generate new addresses in a hd wallet, as documented here at docs

API used: GET /v1/btc/main/wallets/hd/Wallet-Name/addresses/generate

In samples we are using CreateHDWallet.php sample to get the created instance of wallet. You have to run that sample before running this one or there will be no wallets

require __DIR__ . '/../bootstrap.php'; if (isset($_GET['wallet_name'])) { $walletName = filter_input(INPUT_GET, 'wallet_name', FILTER_SANITIZE_SPECIAL_CHARS); } else { $walletName = 'bob'; // Default hd wallet name for samples } $walletClient = new \BlockCypher\Client\HDWalletClient($apiContexts['BTC.main']); try { /// Generate new address $output = $walletClient->generateAddress($walletName); } catch (Exception $ex) { ResultPrinter::printError("Generate Address in a HDWallet", "HDWalletGenerateAddressResponse", $walletName, null, $ex); exit(1); } ResultPrinter::printResult("Generate Address in a HDWallet", "HDWalletGenerateAddressResponse", $walletName, null, $output); return $output;