Fetch all the wallets created by the user.
Code
curl -X GET '${baseUrl}/api/v1/wallet'
-H 'x-api-key: YOUR_CLIENT_API_KEY'
-H 'accept: application/json'
-H 'Authorization: Bearer AUTH_TOKEN'
Response
{
"status": "success",
"data": {
"wallets": [
{
"network_name": "POLYGON_TESTNET",
"address": "0x0342A54DD44E8744FD185579Af57845Cb0ac6cB0",
"success": true
}
]
}
}