Last updated 9 months ago
Lists all of the wallets that kmd is aware of.
APIV1GETWalletsRequest is the request for GET /v1/wallets
GET /v1/wallets
Response to GET /v1/wallets
const response = await fetch('https://algo.nownodes.io/v1/wallets', { method: 'GET', headers: { "Content-Type": "application/json" }, }); const data = await response.json();
{ "error": false, "message": "text", "wallets": [ { "driver_name": "text", "driver_version": 0, "id": "text", "mnemonic_ux": false, "name": "text", "supported_txs": [ "text" ] } ] }