wallet-api\ListWalletAddresses.php
<?php

Get All Wallet Addresses

Use this call to list all the wallet addresses, as documented here at: http://dev.blockcypher.com/#wallets

API used: GET /v1/btc/main/wallets//addresses?token=

In samples we are using CreateWallet.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 = 'alice'; // Default wallet name for samples } try { $output = \BlockCypher\Api\Wallet::getOnlyAddresses($walletName, array(), $apiContexts['BTC.main']); } catch (Exception $ex) { ResultPrinter::printError("List all Wallet addresses", "Wallet", $walletName, null, $ex); exit(1); } ResultPrinter::printResult("List all Wallet addresses", "Wallet", $walletName, null, $output); return $output;