Get Addresses
curl --request GET \
--url https://api.blockradar.co/v1/wallets/{walletId}/addresses \
--header 'x-api-key: <api-key>'import requests
url = "https://api.blockradar.co/v1/wallets/{walletId}/addresses"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.blockradar.co/v1/wallets/{walletId}/addresses', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.blockradar.co/v1/wallets/{walletId}/addresses",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.blockradar.co/v1/wallets/{walletId}/addresses"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.blockradar.co/v1/wallets/{walletId}/addresses")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.blockradar.co/v1/wallets/{walletId}/addresses")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"analytics": {
"activeAddressesCount": 93,
"addressLimit": -1,
"addressesCount": 94,
"externalAddressesCount": 2,
"inactiveAddressesCount": 1,
"internalAddressesCount": 92
},
"data": [
{
"address": "0x7204855eA98E951a218A9CC69786D7Dc749d170A",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png",
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"enableGaslessWithdraw": false,
"showPrivateKey": false
},
"createdAt": "2024-10-23T10:53:38.622Z",
"derivationPath": "m/44'/60'/0'/0/86",
"id": "259422b2-6c8f-40e0-822f-7d2d23c78323",
"isActive": true,
"metadata": null,
"name": null,
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-23T10:53:38.622Z"
},
{
"address": "0x7DfCf25Ee202f0d564E2951bD4E487391D71F9D4",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"enableGaslessWithdraw": false,
"isActive": false,
"showPrivateKey": false
},
"createdAt": "2024-10-16T05:23:11.095Z",
"derivationPath": "m/44'/60'/0'/0/85",
"id": "87a25d98-f3c4-4521-8d31-e97b97be613f",
"isActive": false,
"metadata": null,
"name": null,
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-16T05:47:51.206Z"
},
{
"address": "0x6B63A4E642929a345deB816418394954C1791e69",
"blockchain": {
"createdAt": "2024-10-07T16:09:49.784Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "1c9ca9df-325f-4b60-a7ec-b28d2235e0b7",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/optimism-ethereum-op-logo_h62d1i.png",
"name": "optimism",
"slug": "optimism",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-22T10:59:00.875Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": true,
"enableGaslessWithdraw": true,
"showPrivateKey": false
},
"createdAt": "2024-10-08T12:44:08.553Z",
"derivationPath": "m/44'/60'/0'/0/84",
"id": "09a13815-1546-4bee-99a9-09e26dae8ef9",
"isActive": true,
"metadata": null,
"name": "gasless wallet 0x010",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-08T12:44:08.553Z"
},
{
"address": "0xcC53d19b7E3233Cf9f6af6f1ec276A1179CC7234",
"blockchain": {
"createdAt": "2024-10-07T16:09:49.760Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "dbd35ce3-8526-45d0-9e35-d80d7141f959",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/arbitrum-arb-logo_x7uvan.png",
"name": "arbitrum",
"slug": "arbitrum",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-22T10:59:00.874Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": true,
"enableGaslessWithdraw": true,
"showPrivateKey": false
},
"createdAt": "2024-10-08T12:25:24.542Z",
"derivationPath": "m/44'/60'/0'/0/83",
"id": "c04286ec-4c15-486c-b169-1ce16fb542da",
"isActive": true,
"metadata": null,
"name": "gasless wallet 0x010",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-08T12:25:24.542Z"
},
{
"address": "0xd82daB14E16BA34BAd79ED580Ee297149f8c7287",
"blockchain": {
"createdAt": "2024-10-07T16:09:49.784Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "1c9ca9df-325f-4b60-a7ec-b28d2235e0b7",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/optimism-ethereum-op-logo_h62d1i.png",
"name": "optimism",
"slug": "optimism",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-22T10:59:00.875Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"enableGaslessWithdraw": false,
"showPrivateKey": false
},
"createdAt": "2024-10-08T12:14:58.397Z",
"derivationPath": "m/44'/60'/0'/0/82",
"id": "e222f053-6071-4488-b16b-ca5ac1643c58",
"isActive": true,
"metadata": null,
"name": "gasless wallet 0x01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-08T12:14:58.397Z"
},
{
"address": "0x7be8f456631eBa70c5451cb7931aa193719c6964",
"blockchain": {
"createdAt": "2024-10-07T16:09:49.784Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "1c9ca9df-325f-4b60-a7ec-b28d2235e0b7",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/optimism-ethereum-op-logo_h62d1i.png",
"name": "optimism",
"slug": "optimism",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-22T10:59:00.875Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": true,
"enableGaslessWithdraw": true,
"showPrivateKey": false
},
"createdAt": "2024-10-08T11:34:02.019Z",
"derivationPath": "m/44'/60'/0'/0/81",
"id": "88bd8816-c69d-4379-a829-f61fbc86f2ef",
"isActive": true,
"metadata": null,
"name": "gasless wallet 0x0",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-08T11:34:02.019Z"
},
{
"address": "0xFa16702231342fB6aa50151eAF0099DBD01cbC0b",
"blockchain": {
"createdAt": "2024-10-07T16:09:49.760Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "dbd35ce3-8526-45d0-9e35-d80d7141f959",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/arbitrum-arb-logo_x7uvan.png",
"name": "arbitrum",
"slug": "arbitrum",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-22T10:59:00.874Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"enableGaslessWithdraw": false,
"showPrivateKey": false
},
"createdAt": "2024-10-08T11:11:32.476Z",
"derivationPath": "m/44'/60'/0'/0/80",
"id": "2ebba786-7ba2-4084-b405-55dfc5cae642",
"isActive": true,
"metadata": null,
"name": "customer wallet 0x0",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-08T11:11:32.476Z"
},
{
"address": "0x6B0207b34f99010284CaDEf2088C46C6B055aA50",
"blockchain": {
"createdAt": "2024-10-07T16:09:49.760Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "dbd35ce3-8526-45d0-9e35-d80d7141f959",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/arbitrum-arb-logo_x7uvan.png",
"name": "arbitrum",
"slug": "arbitrum",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-22T10:59:00.874Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"enableGaslessWithdraw": false,
"showPrivateKey": false
},
"createdAt": "2024-10-07T16:42:56.103Z",
"derivationPath": "m/44'/60'/0'/0/79",
"id": "f401435d-ace1-4b34-a791-5af2b06f18e2",
"isActive": true,
"metadata": null,
"name": "customer wallet 0x",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-07T16:42:56.103Z"
},
{
"address": "0x0801E69537ff102a65cb2e224FFa9321C7D080d5",
"blockchain": {
"createdAt": "2024-10-07T16:09:49.784Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "1c9ca9df-325f-4b60-a7ec-b28d2235e0b7",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/optimism-ethereum-op-logo_h62d1i.png",
"name": "optimism",
"slug": "optimism",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-22T10:59:00.875Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"enableGaslessWithdraw": false,
"showPrivateKey": false
},
"createdAt": "2024-10-07T16:37:53.324Z",
"derivationPath": "m/44'/60'/0'/0/78",
"id": "a9bbcb26-f75d-45a9-a0b4-ba61535f6ea0",
"isActive": true,
"metadata": null,
"name": "customer wallet 0",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-07T16:37:53.324Z"
},
{
"address": "0x3F4ADe653d1D9942025ae412A19e2CDd3e9C2B91",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"enableGaslessWithdraw": false,
"showPrivateKey": false
},
"createdAt": "2024-10-07T14:28:29.471Z",
"derivationPath": "m/44'/60'/0'/0/77",
"id": "bf795648-897c-4fb3-8528-96044409bce8",
"isActive": true,
"metadata": null,
"name": "customer wallet 1",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-07T14:28:29.471Z"
},
{
"address": "0x54B5b79ED02e6164d0F1075Ec3d7FDc081E88e50",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": true,
"enableGaslessWithdraw": true,
"showPrivateKey": true
},
"createdAt": "2024-10-07T11:15:25.902Z",
"derivationPath": "m/44'/60'/0'/0/71",
"id": "b32ad49e-7a71-4ccb-8d80-29f6801ec475",
"isActive": true,
"metadata": null,
"name": "gasless wallet 2",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-07T11:15:25.902Z"
},
{
"address": "0x64964eE1de9633272Bd2fa9E9a6029abB48d824a",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": true,
"enableGaslessWithdraw": true,
"showPrivateKey": true
},
"createdAt": "2024-10-07T09:56:35.889Z",
"derivationPath": "m/44'/60'/0'/0/70",
"id": "c410387b-8900-4dc6-81bf-ff16c194c054",
"isActive": true,
"metadata": null,
"name": "gasless wallet",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-07T09:56:35.889Z"
},
{
"address": "0x57E8c3c24ACdea05F59d773d6b4F325302891Ac3",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"enableGaslessWithdraw": false,
"showPrivateKey": false
},
"createdAt": "2024-10-07T09:53:05.417Z",
"derivationPath": "m/44'/60'/0'/0/69",
"id": "e6172f64-b68d-44b9-8cd4-2f51b17a5184",
"isActive": true,
"metadata": null,
"name": "gasless wallet",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-07T09:53:05.417Z"
},
{
"address": "0x4Ae57965De2061A4E7fC56E5B2f8a0C7CbF1Bf3B",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"enableGaslessWithdraw": false,
"showPrivateKey": false
},
"createdAt": "2024-10-07T07:33:18.503Z",
"derivationPath": "m/44'/60'/0'/0/68",
"id": "7a2ed414-3b50-4bcc-bf32-9c9b19c82b24",
"isActive": true,
"metadata": null,
"name": "recover asset 6",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-07T07:33:18.503Z"
},
{
"address": "0x2589B490b911D10a53f0fe87cc0Ac64A072E02F5",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"showPrivateKey": false
},
"createdAt": "2024-10-07T07:32:20.056Z",
"derivationPath": "m/44'/60'/0'/0/67",
"id": "db883dbd-eb72-4c5e-bd6d-c8b4bc83c355",
"isActive": true,
"metadata": null,
"name": "recover asset 6",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-07T07:32:20.056Z"
},
{
"address": "0xD2017cFB85111fFE94a9f32933ddE73e161d2eEE",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": true,
"showPrivateKey": true
},
"createdAt": "2024-10-06T20:16:51.775Z",
"derivationPath": "m/44'/60'/0'/0/66",
"id": "88df4672-73a0-4f0a-ba92-2b8a377045bc",
"isActive": true,
"metadata": null,
"name": "recover asset 5",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-06T20:16:51.775Z"
},
{
"address": "0x32D2D80D708cb022e9B0b82C2600236914a2460c",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"showPrivateKey": false
},
"createdAt": "2024-10-03T12:40:48.558Z",
"derivationPath": "m/44'/60'/0'/0/65",
"id": "518b91f6-4e28-4e90-9463-ea697e48b5aa",
"isActive": true,
"metadata": null,
"name": "recover asset 4",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-03T12:40:48.558Z"
},
{
"address": "0x96863cb90De5B2FBAD78BB3fD020789b86b148B7",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"showPrivateKey": true
},
"createdAt": "2024-10-03T12:40:25.532Z",
"derivationPath": "m/44'/60'/0'/0/64",
"id": "56f6df07-6de1-4946-bcc1-fb6e78c3d674",
"isActive": true,
"metadata": null,
"name": "recover asset 4",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-03T12:40:25.532Z"
},
{
"address": "0xF16941C64152374a111a58a014be131f5cd05Ba6",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-10-02T10:20:10.391Z",
"derivationPath": "m/44'/60'/0'/0/63",
"id": "d9d90f5a-c3e7-45b1-93d8-a5aaa176366b",
"isActive": true,
"metadata": null,
"name": "recover asset 4",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-02T10:20:10.391Z"
},
{
"address": "0x90a92c1c36069FA3735d7AB93c1C64C62d982Ff9",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-10-01T15:54:05.338Z",
"derivationPath": "m/44'/60'/0'/0/62",
"id": "7e0a46a1-8a94-4425-94ed-09660989e673",
"isActive": true,
"metadata": null,
"name": "recover asset 3",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-01T15:54:05.338Z"
},
{
"address": "0x69eB05c12C3Dad10c342F05848227801c95045F6",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-10-01T06:10:11.236Z",
"derivationPath": "m/44'/60'/0'/0/61",
"id": "0f9f1d8b-3915-4ee0-9e6f-5c07256044c7",
"isActive": true,
"metadata": null,
"name": "recover asset 2",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-01T06:10:11.236Z"
},
{
"address": "0x06b72cC980A8AcB9886c67CAa6B073C7a8363B7d",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png",
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-10-01T04:35:58.951Z",
"derivationPath": "m/44'/60'/0'/0/60",
"id": "a1683e45-63d0-4007-8c82-c9961e87841b",
"isActive": true,
"metadata": null,
"name": "recover asset 2",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-01T04:35:58.951Z"
},
{
"address": "0x32a32fFadFbE4943034d1909c30f3Fe63E419040",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-10-01T04:35:30.611Z",
"derivationPath": "m/44'/60'/0'/0/59",
"id": "2d9c4152-be8b-4ed3-95b4-a5b6d917b862",
"isActive": true,
"metadata": null,
"name": "recover asset 1",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-01T04:35:30.611Z"
},
{
"address": "0xe31bd039b8Bfa0E2B05645c5060dF2E53c6eCb94",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-09-30T08:23:54.649Z",
"derivationPath": "m/44'/60'/0'/0/58",
"id": "ca4f8e87-a801-4880-9877-82913077805c",
"isActive": true,
"metadata": null,
"name": "recover asset",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-09-30T08:23:54.649Z"
},
{
"address": "0x61e5E66224Fe6979032c9Cc3832085BEB889bd1c",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-09-24T03:50:16.679Z",
"derivationPath": "m/44'/60'/0'/0/57",
"id": "94b9eeb7-14c5-47d9-b7f2-c69d01bef821",
"isActive": true,
"metadata": {
"id": "nwq sweep 0x0e012 n10n10"
},
"name": "nwq sweep 0x0e012 n10n10",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-09-24T03:50:16.679Z"
},
{
"address": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-09-24T03:48:41.035Z",
"derivationPath": null,
"id": "c43138c2-bd7b-4820-b61a-ee1a9fada615",
"isActive": true,
"metadata": {
"id": "1010"
},
"name": "External address",
"network": "testnet",
"type": "EXTERNAL",
"updatedAt": "2024-09-24T03:48:41.035Z"
},
{
"address": "0x809456eDF7573aFC4ADE087439aA03e100e7329A",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-09-24T03:28:38.951Z",
"derivationPath": "m/44'/60'/0'/0/56",
"id": "4f30a328-3826-4f52-8466-8d2b9a603ae6",
"isActive": true,
"metadata": {
"user_id": "01"
},
"name": "01 address",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-09-24T03:28:38.951Z"
},
{
"address": "0x1424732d4A8cDa95BFad49F62F78abc6f8A80740",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-09-24T03:28:27.376Z",
"derivationPath": "m/44'/60'/0'/0/55",
"id": "d542ab01-4b44-42e2-9534-0897778136c2",
"isActive": true,
"metadata": {
"id": "sweep 0x0e012 n10n10"
},
"name": "sweep 0x0e012 n10n10",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-09-24T03:28:27.376Z"
},
{
"address": "0x599393d99e2Ec79048598fa299e4B1B249319339",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-09-03T18:07:00.209Z",
"derivationPath": "m/44'/60'/0'/0/54",
"id": "36b1c1ba-c6db-4d63-a794-6c829aaa8fea",
"isActive": true,
"metadata": {
"id": "sweep 0x0e012 n10n10"
},
"name": "sweep 0x0e012 n10n10",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-09-03T18:07:00.209Z"
},
{
"address": "0x9f685fBaC5a57cb144b533237bFB2Be1eD07D373",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png",
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-09-02T17:22:23.946Z",
"derivationPath": "m/44'/60'/0'/0/51",
"id": "b11f69f8-91f8-43bc-b3e2-8891a63bbe80",
"isActive": true,
"metadata": {
"id": "sweep 0x0e012 n10n10"
},
"name": "sweep 0x0e012 n10n10",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-09-02T17:22:23.946Z"
},
{
"address": "0xdCc6D9BbCb7f48C8f411E5dA6654774124948539",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-09-02T17:10:16.416Z",
"derivationPath": "m/44'/60'/0'/0/50",
"id": "5e7644d7-626e-4b4f-8e4f-17402f63f42b",
"isActive": true,
"metadata": {
"id": "sweep 0x0e012 n10n10"
},
"name": "sweep 0x0e012 n10n10",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-09-02T17:10:16.416Z"
},
{
"address": "0x644CBBCe85c85CeF10A23E66DC3fbcFC593b9f5a",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-09-02T16:31:04.815Z",
"derivationPath": "m/44'/60'/0'/0/49",
"id": "aa228398-0697-4f44-b67b-e0e16a14ee8d",
"isActive": true,
"metadata": {
"id": "sweep 0x0e012 n10n1"
},
"name": "sweep 0x0e012 n10n1",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-09-02T16:31:04.815Z"
},
{
"address": "0x491b49C1d0B75eEdDafb77393dE0eed7E12240Db",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png",
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-31T17:40:41.946Z",
"derivationPath": "m/44'/60'/0'/0/40",
"id": "ae15c6c0-553b-4cf6-90c2-69438f3874d4",
"isActive": true,
"metadata": {
"id": "sweep 0x0e012"
},
"name": "sweep 0x0e012",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-31T17:40:41.946Z"
},
{
"address": "0x7eB39FDF0e6a9978222174Cd7792fBc10A800dD2",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-30T14:50:16.906Z",
"derivationPath": "m/44'/60'/0'/0/36",
"id": "bc867980-987c-43ce-886d-07218a97626f",
"isActive": true,
"metadata": {
"id": "slack3 0x0e01 0x0e01"
},
"name": "0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-30T14:50:16.906Z"
},
{
"address": "0xa37Ef275EF04ba2Af833A4d25C88F850E982F7eb",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-30T12:19:59.583Z",
"derivationPath": "m/44'/60'/0'/0/35",
"id": "54f8762c-f6ef-49bb-a2c6-5ea9935fa3be",
"isActive": true,
"metadata": {
"id": "sweep 0x0e012"
},
"name": "sweep 0x0e012",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-30T12:19:59.583Z"
},
{
"address": "0xe7A0ec287cadD70D1F9A26818981f55b5bF6918e",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-29T15:30:58.479Z",
"derivationPath": "m/44'/60'/0'/0/30",
"id": "b098db3a-f144-490c-a208-9a699547a640",
"isActive": true,
"metadata": {
"id": "sweep 0x0e01"
},
"name": "sweep 0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-29T15:30:58.479Z"
},
{
"address": "0x786cEffE9A81f67549E595C616969664abB9aE3D",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-29T15:06:29.102Z",
"derivationPath": "m/44'/60'/0'/0/29",
"id": "e69f50d1-48a3-4c99-b302-1aec9fdf6aea",
"isActive": true,
"metadata": {
"id": "sweep 0x0e01"
},
"name": "sweep 0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-29T15:06:29.102Z"
},
{
"address": "0xA09f61Ff1E26eEa36221A497cF28195742ad1C6c",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-29T14:17:37.531Z",
"derivationPath": "m/44'/60'/0'/0/28",
"id": "436a6178-0871-4fb8-81c9-f2eb860d178d",
"isActive": true,
"metadata": {
"id": "sweep 0x0e01"
},
"name": "sweep 0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-29T14:17:37.531Z"
},
{
"address": "0x1Db0A66a142D5d0bd139B484BF1Aa512434e65C2",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-29T13:10:30.289Z",
"derivationPath": "m/44'/60'/0'/0/27",
"id": "b3a7f648-3630-48be-8e70-554cd000671b",
"isActive": true,
"metadata": {
"id": "sweep 0x0e01"
},
"name": "sweep 0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-29T13:10:30.289Z"
},
{
"address": "0x99C79Cb0423ce8eCd66312c94675F292A37ABc9F",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png",
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-28T09:39:39.973Z",
"derivationPath": "m/44'/60'/0'/0/24",
"id": "61c63253-94bc-46ba-bc0d-e1c3cc62c807",
"isActive": true,
"metadata": {
"id": "0x0e01 0x0e01"
},
"name": "0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-28T09:39:39.973Z"
},
{
"address": "0xa2188919aeBb2fDdF93C247Cc416dE805C0d822B",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png",
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-27T16:10:43.623Z",
"derivationPath": "m/44'/60'/0'/0/23",
"id": "9c99d340-cd72-45cc-90c3-4225c6d4b2b2",
"isActive": true,
"metadata": {
"id": "0x0e01 0x0e01"
},
"name": "0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-27T16:10:43.623Z"
},
{
"address": "0x127ba18Fc9C40B0875C8DF748fb1BC799131444d",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png",
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-27T16:07:29.531Z",
"derivationPath": "m/44'/60'/0'/0/22",
"id": "4a59fcbc-d6c0-4b12-a79b-faa976005839",
"isActive": true,
"metadata": {
"id": "0x0e01 0x0e01"
},
"name": "0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-27T16:07:29.531Z"
},
{
"address": "0xaE6c8112ad885a4ec39dFfD554dD79BcDc1Ba880",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-27T07:27:47.346Z",
"derivationPath": "m/44'/60'/0'/0/8",
"id": "7622e5d5-af8b-4ca5-ad92-7d2d804af4b6",
"isActive": true,
"metadata": {
"id": "slack3 0x0e01 0x0e01"
},
"name": "slack3 0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-27T07:27:47.346Z"
},
{
"address": "0x0aeCD526016eCd202A605749B5AD680e2F686E1d",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-26T20:19:20.826Z",
"derivationPath": "m/44'/60'/0'/0/7",
"id": "afc7afe8-b21a-4451-9e0f-c8cbf40fe4e7",
"isActive": true,
"metadata": {
"id": "slack3 0x0e01 0x0e01"
},
"name": "slack3 0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-26T20:19:20.826Z"
},
{
"address": "0xEB25AB55eA626855B72089cd7085312c8e95dA6b",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-24T13:32:44.577Z",
"derivationPath": "m/44'/60'/0'/0/6",
"id": "d9a1d5b0-71bc-4936-b1ef-16117054374f",
"isActive": true,
"metadata": {
"id": "slack3 0x0e01 0x0e01"
},
"name": "slack3 0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-24T13:32:44.577Z"
},
{
"address": "0xA7f998E545A34EC623E7210461fdE226091C875B",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png",
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-22T23:00:47.108Z",
"derivationPath": "m/44'/60'/0'/0/5",
"id": "d220077d-a0df-4097-b04d-295e667cd20f",
"isActive": true,
"metadata": {
"id": "0x0e01 0x0e01"
},
"name": "0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-22T23:00:47.108Z"
},
{
"address": "0xCc90acbbf363A33C5c4586964075D0768C60B00A",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png",
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-22T20:12:07.903Z",
"derivationPath": "m/44'/60'/0'/0/4",
"id": "8a145277-4531-41ce-97c8-78235931b655",
"isActive": true,
"metadata": {
"id": "0x0e01 0x0e01"
},
"name": "0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-22T20:12:07.903Z"
},
{
"address": "0xa9902778E9a5F5753510d7D5aeB779150895E01f",
"blockchain": {
"createdAt": "2024-05-27T08:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/Base_Network_Logo_vqyh7r.png",
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-22T10:59:00.872Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-22T10:25:23.342Z",
"derivationPath": "m/44'/60'/0'/0/2",
"id": "2784c630-9796-4ed1-b732-bfece82f93d2",
"isActive": true,
"metadata": {
"id": "0x"
},
"name": "0x",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-22T10:25:23.342Z"
},
{
"address": "0xD2b37A41A692f62F72705509cfE26D0BF2Af27fc",
"blockchain": {
"createdAt": "2024-05-27T08:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/Base_Network_Logo_vqyh7r.png",
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-22T10:59:00.872Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-22T10:22:29.463Z",
"derivationPath": "m/44'/60'/0'/0/1",
"id": "3def8cb6-bd10-4324-8350-49d84651daa1",
"isActive": true,
"metadata": {
"id": "0x"
},
"name": "0x",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-22T10:22:29.463Z"
}
],
"message": "Addresses fetched successfully",
"meta": {
"currentPage": 1,
"itemCount": 49,
"itemsPerPage": 100,
"totalItems": 49,
"totalPages": 1
},
"statusCode": 200
}Get Addresses
This endpoint retrieves the addresses associated with a specific wallet.
GET
/
v1
/
wallets
/
{walletId}
/
addresses
Get Addresses
curl --request GET \
--url https://api.blockradar.co/v1/wallets/{walletId}/addresses \
--header 'x-api-key: <api-key>'import requests
url = "https://api.blockradar.co/v1/wallets/{walletId}/addresses"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.blockradar.co/v1/wallets/{walletId}/addresses', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.blockradar.co/v1/wallets/{walletId}/addresses",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.blockradar.co/v1/wallets/{walletId}/addresses"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.blockradar.co/v1/wallets/{walletId}/addresses")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.blockradar.co/v1/wallets/{walletId}/addresses")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"analytics": {
"activeAddressesCount": 93,
"addressLimit": -1,
"addressesCount": 94,
"externalAddressesCount": 2,
"inactiveAddressesCount": 1,
"internalAddressesCount": 92
},
"data": [
{
"address": "0x7204855eA98E951a218A9CC69786D7Dc749d170A",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png",
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"enableGaslessWithdraw": false,
"showPrivateKey": false
},
"createdAt": "2024-10-23T10:53:38.622Z",
"derivationPath": "m/44'/60'/0'/0/86",
"id": "259422b2-6c8f-40e0-822f-7d2d23c78323",
"isActive": true,
"metadata": null,
"name": null,
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-23T10:53:38.622Z"
},
{
"address": "0x7DfCf25Ee202f0d564E2951bD4E487391D71F9D4",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"enableGaslessWithdraw": false,
"isActive": false,
"showPrivateKey": false
},
"createdAt": "2024-10-16T05:23:11.095Z",
"derivationPath": "m/44'/60'/0'/0/85",
"id": "87a25d98-f3c4-4521-8d31-e97b97be613f",
"isActive": false,
"metadata": null,
"name": null,
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-16T05:47:51.206Z"
},
{
"address": "0x6B63A4E642929a345deB816418394954C1791e69",
"blockchain": {
"createdAt": "2024-10-07T16:09:49.784Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "1c9ca9df-325f-4b60-a7ec-b28d2235e0b7",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/optimism-ethereum-op-logo_h62d1i.png",
"name": "optimism",
"slug": "optimism",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-22T10:59:00.875Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": true,
"enableGaslessWithdraw": true,
"showPrivateKey": false
},
"createdAt": "2024-10-08T12:44:08.553Z",
"derivationPath": "m/44'/60'/0'/0/84",
"id": "09a13815-1546-4bee-99a9-09e26dae8ef9",
"isActive": true,
"metadata": null,
"name": "gasless wallet 0x010",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-08T12:44:08.553Z"
},
{
"address": "0xcC53d19b7E3233Cf9f6af6f1ec276A1179CC7234",
"blockchain": {
"createdAt": "2024-10-07T16:09:49.760Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "dbd35ce3-8526-45d0-9e35-d80d7141f959",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/arbitrum-arb-logo_x7uvan.png",
"name": "arbitrum",
"slug": "arbitrum",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-22T10:59:00.874Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": true,
"enableGaslessWithdraw": true,
"showPrivateKey": false
},
"createdAt": "2024-10-08T12:25:24.542Z",
"derivationPath": "m/44'/60'/0'/0/83",
"id": "c04286ec-4c15-486c-b169-1ce16fb542da",
"isActive": true,
"metadata": null,
"name": "gasless wallet 0x010",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-08T12:25:24.542Z"
},
{
"address": "0xd82daB14E16BA34BAd79ED580Ee297149f8c7287",
"blockchain": {
"createdAt": "2024-10-07T16:09:49.784Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "1c9ca9df-325f-4b60-a7ec-b28d2235e0b7",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/optimism-ethereum-op-logo_h62d1i.png",
"name": "optimism",
"slug": "optimism",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-22T10:59:00.875Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"enableGaslessWithdraw": false,
"showPrivateKey": false
},
"createdAt": "2024-10-08T12:14:58.397Z",
"derivationPath": "m/44'/60'/0'/0/82",
"id": "e222f053-6071-4488-b16b-ca5ac1643c58",
"isActive": true,
"metadata": null,
"name": "gasless wallet 0x01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-08T12:14:58.397Z"
},
{
"address": "0x7be8f456631eBa70c5451cb7931aa193719c6964",
"blockchain": {
"createdAt": "2024-10-07T16:09:49.784Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "1c9ca9df-325f-4b60-a7ec-b28d2235e0b7",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/optimism-ethereum-op-logo_h62d1i.png",
"name": "optimism",
"slug": "optimism",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-22T10:59:00.875Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": true,
"enableGaslessWithdraw": true,
"showPrivateKey": false
},
"createdAt": "2024-10-08T11:34:02.019Z",
"derivationPath": "m/44'/60'/0'/0/81",
"id": "88bd8816-c69d-4379-a829-f61fbc86f2ef",
"isActive": true,
"metadata": null,
"name": "gasless wallet 0x0",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-08T11:34:02.019Z"
},
{
"address": "0xFa16702231342fB6aa50151eAF0099DBD01cbC0b",
"blockchain": {
"createdAt": "2024-10-07T16:09:49.760Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "dbd35ce3-8526-45d0-9e35-d80d7141f959",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/arbitrum-arb-logo_x7uvan.png",
"name": "arbitrum",
"slug": "arbitrum",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-22T10:59:00.874Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"enableGaslessWithdraw": false,
"showPrivateKey": false
},
"createdAt": "2024-10-08T11:11:32.476Z",
"derivationPath": "m/44'/60'/0'/0/80",
"id": "2ebba786-7ba2-4084-b405-55dfc5cae642",
"isActive": true,
"metadata": null,
"name": "customer wallet 0x0",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-08T11:11:32.476Z"
},
{
"address": "0x6B0207b34f99010284CaDEf2088C46C6B055aA50",
"blockchain": {
"createdAt": "2024-10-07T16:09:49.760Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "dbd35ce3-8526-45d0-9e35-d80d7141f959",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/arbitrum-arb-logo_x7uvan.png",
"name": "arbitrum",
"slug": "arbitrum",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-22T10:59:00.874Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"enableGaslessWithdraw": false,
"showPrivateKey": false
},
"createdAt": "2024-10-07T16:42:56.103Z",
"derivationPath": "m/44'/60'/0'/0/79",
"id": "f401435d-ace1-4b34-a791-5af2b06f18e2",
"isActive": true,
"metadata": null,
"name": "customer wallet 0x",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-07T16:42:56.103Z"
},
{
"address": "0x0801E69537ff102a65cb2e224FFa9321C7D080d5",
"blockchain": {
"createdAt": "2024-10-07T16:09:49.784Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "1c9ca9df-325f-4b60-a7ec-b28d2235e0b7",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/optimism-ethereum-op-logo_h62d1i.png",
"name": "optimism",
"slug": "optimism",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-22T10:59:00.875Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"enableGaslessWithdraw": false,
"showPrivateKey": false
},
"createdAt": "2024-10-07T16:37:53.324Z",
"derivationPath": "m/44'/60'/0'/0/78",
"id": "a9bbcb26-f75d-45a9-a0b4-ba61535f6ea0",
"isActive": true,
"metadata": null,
"name": "customer wallet 0",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-07T16:37:53.324Z"
},
{
"address": "0x3F4ADe653d1D9942025ae412A19e2CDd3e9C2B91",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"enableGaslessWithdraw": false,
"showPrivateKey": false
},
"createdAt": "2024-10-07T14:28:29.471Z",
"derivationPath": "m/44'/60'/0'/0/77",
"id": "bf795648-897c-4fb3-8528-96044409bce8",
"isActive": true,
"metadata": null,
"name": "customer wallet 1",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-07T14:28:29.471Z"
},
{
"address": "0x54B5b79ED02e6164d0F1075Ec3d7FDc081E88e50",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": true,
"enableGaslessWithdraw": true,
"showPrivateKey": true
},
"createdAt": "2024-10-07T11:15:25.902Z",
"derivationPath": "m/44'/60'/0'/0/71",
"id": "b32ad49e-7a71-4ccb-8d80-29f6801ec475",
"isActive": true,
"metadata": null,
"name": "gasless wallet 2",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-07T11:15:25.902Z"
},
{
"address": "0x64964eE1de9633272Bd2fa9E9a6029abB48d824a",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": true,
"enableGaslessWithdraw": true,
"showPrivateKey": true
},
"createdAt": "2024-10-07T09:56:35.889Z",
"derivationPath": "m/44'/60'/0'/0/70",
"id": "c410387b-8900-4dc6-81bf-ff16c194c054",
"isActive": true,
"metadata": null,
"name": "gasless wallet",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-07T09:56:35.889Z"
},
{
"address": "0x57E8c3c24ACdea05F59d773d6b4F325302891Ac3",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"enableGaslessWithdraw": false,
"showPrivateKey": false
},
"createdAt": "2024-10-07T09:53:05.417Z",
"derivationPath": "m/44'/60'/0'/0/69",
"id": "e6172f64-b68d-44b9-8cd4-2f51b17a5184",
"isActive": true,
"metadata": null,
"name": "gasless wallet",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-07T09:53:05.417Z"
},
{
"address": "0x4Ae57965De2061A4E7fC56E5B2f8a0C7CbF1Bf3B",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"enableGaslessWithdraw": false,
"showPrivateKey": false
},
"createdAt": "2024-10-07T07:33:18.503Z",
"derivationPath": "m/44'/60'/0'/0/68",
"id": "7a2ed414-3b50-4bcc-bf32-9c9b19c82b24",
"isActive": true,
"metadata": null,
"name": "recover asset 6",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-07T07:33:18.503Z"
},
{
"address": "0x2589B490b911D10a53f0fe87cc0Ac64A072E02F5",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"showPrivateKey": false
},
"createdAt": "2024-10-07T07:32:20.056Z",
"derivationPath": "m/44'/60'/0'/0/67",
"id": "db883dbd-eb72-4c5e-bd6d-c8b4bc83c355",
"isActive": true,
"metadata": null,
"name": "recover asset 6",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-07T07:32:20.056Z"
},
{
"address": "0xD2017cFB85111fFE94a9f32933ddE73e161d2eEE",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": true,
"showPrivateKey": true
},
"createdAt": "2024-10-06T20:16:51.775Z",
"derivationPath": "m/44'/60'/0'/0/66",
"id": "88df4672-73a0-4f0a-ba92-2b8a377045bc",
"isActive": true,
"metadata": null,
"name": "recover asset 5",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-06T20:16:51.775Z"
},
{
"address": "0x32D2D80D708cb022e9B0b82C2600236914a2460c",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"showPrivateKey": false
},
"createdAt": "2024-10-03T12:40:48.558Z",
"derivationPath": "m/44'/60'/0'/0/65",
"id": "518b91f6-4e28-4e90-9463-ea697e48b5aa",
"isActive": true,
"metadata": null,
"name": "recover asset 4",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-03T12:40:48.558Z"
},
{
"address": "0x96863cb90De5B2FBAD78BB3fD020789b86b148B7",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
},
"disableAutoSweep": false,
"showPrivateKey": true
},
"createdAt": "2024-10-03T12:40:25.532Z",
"derivationPath": "m/44'/60'/0'/0/64",
"id": "56f6df07-6de1-4946-bcc1-fb6e78c3d674",
"isActive": true,
"metadata": null,
"name": "recover asset 4",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-03T12:40:25.532Z"
},
{
"address": "0xF16941C64152374a111a58a014be131f5cd05Ba6",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-10-02T10:20:10.391Z",
"derivationPath": "m/44'/60'/0'/0/63",
"id": "d9d90f5a-c3e7-45b1-93d8-a5aaa176366b",
"isActive": true,
"metadata": null,
"name": "recover asset 4",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-02T10:20:10.391Z"
},
{
"address": "0x90a92c1c36069FA3735d7AB93c1C64C62d982Ff9",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-10-01T15:54:05.338Z",
"derivationPath": "m/44'/60'/0'/0/62",
"id": "7e0a46a1-8a94-4425-94ed-09660989e673",
"isActive": true,
"metadata": null,
"name": "recover asset 3",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-01T15:54:05.338Z"
},
{
"address": "0x69eB05c12C3Dad10c342F05848227801c95045F6",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-10-01T06:10:11.236Z",
"derivationPath": "m/44'/60'/0'/0/61",
"id": "0f9f1d8b-3915-4ee0-9e6f-5c07256044c7",
"isActive": true,
"metadata": null,
"name": "recover asset 2",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-01T06:10:11.236Z"
},
{
"address": "0x06b72cC980A8AcB9886c67CAa6B073C7a8363B7d",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png",
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-10-01T04:35:58.951Z",
"derivationPath": "m/44'/60'/0'/0/60",
"id": "a1683e45-63d0-4007-8c82-c9961e87841b",
"isActive": true,
"metadata": null,
"name": "recover asset 2",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-01T04:35:58.951Z"
},
{
"address": "0x32a32fFadFbE4943034d1909c30f3Fe63E419040",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-10-01T04:35:30.611Z",
"derivationPath": "m/44'/60'/0'/0/59",
"id": "2d9c4152-be8b-4ed3-95b4-a5b6d917b862",
"isActive": true,
"metadata": null,
"name": "recover asset 1",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-10-01T04:35:30.611Z"
},
{
"address": "0xe31bd039b8Bfa0E2B05645c5060dF2E53c6eCb94",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-09-30T08:23:54.649Z",
"derivationPath": "m/44'/60'/0'/0/58",
"id": "ca4f8e87-a801-4880-9877-82913077805c",
"isActive": true,
"metadata": null,
"name": "recover asset",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-09-30T08:23:54.649Z"
},
{
"address": "0x61e5E66224Fe6979032c9Cc3832085BEB889bd1c",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-09-24T03:50:16.679Z",
"derivationPath": "m/44'/60'/0'/0/57",
"id": "94b9eeb7-14c5-47d9-b7f2-c69d01bef821",
"isActive": true,
"metadata": {
"id": "nwq sweep 0x0e012 n10n10"
},
"name": "nwq sweep 0x0e012 n10n10",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-09-24T03:50:16.679Z"
},
{
"address": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-09-24T03:48:41.035Z",
"derivationPath": null,
"id": "c43138c2-bd7b-4820-b61a-ee1a9fada615",
"isActive": true,
"metadata": {
"id": "1010"
},
"name": "External address",
"network": "testnet",
"type": "EXTERNAL",
"updatedAt": "2024-09-24T03:48:41.035Z"
},
{
"address": "0x809456eDF7573aFC4ADE087439aA03e100e7329A",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-09-24T03:28:38.951Z",
"derivationPath": "m/44'/60'/0'/0/56",
"id": "4f30a328-3826-4f52-8466-8d2b9a603ae6",
"isActive": true,
"metadata": {
"user_id": "01"
},
"name": "01 address",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-09-24T03:28:38.951Z"
},
{
"address": "0x1424732d4A8cDa95BFad49F62F78abc6f8A80740",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-09-24T03:28:27.376Z",
"derivationPath": "m/44'/60'/0'/0/55",
"id": "d542ab01-4b44-42e2-9534-0897778136c2",
"isActive": true,
"metadata": {
"id": "sweep 0x0e012 n10n10"
},
"name": "sweep 0x0e012 n10n10",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-09-24T03:28:27.376Z"
},
{
"address": "0x599393d99e2Ec79048598fa299e4B1B249319339",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-09-03T18:07:00.209Z",
"derivationPath": "m/44'/60'/0'/0/54",
"id": "36b1c1ba-c6db-4d63-a794-6c829aaa8fea",
"isActive": true,
"metadata": {
"id": "sweep 0x0e012 n10n10"
},
"name": "sweep 0x0e012 n10n10",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-09-03T18:07:00.209Z"
},
{
"address": "0x9f685fBaC5a57cb144b533237bFB2Be1eD07D373",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png",
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-09-02T17:22:23.946Z",
"derivationPath": "m/44'/60'/0'/0/51",
"id": "b11f69f8-91f8-43bc-b3e2-8891a63bbe80",
"isActive": true,
"metadata": {
"id": "sweep 0x0e012 n10n10"
},
"name": "sweep 0x0e012 n10n10",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-09-02T17:22:23.946Z"
},
{
"address": "0xdCc6D9BbCb7f48C8f411E5dA6654774124948539",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-09-02T17:10:16.416Z",
"derivationPath": "m/44'/60'/0'/0/50",
"id": "5e7644d7-626e-4b4f-8e4f-17402f63f42b",
"isActive": true,
"metadata": {
"id": "sweep 0x0e012 n10n10"
},
"name": "sweep 0x0e012 n10n10",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-09-02T17:10:16.416Z"
},
{
"address": "0x644CBBCe85c85CeF10A23E66DC3fbcFC593b9f5a",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-09-02T16:31:04.815Z",
"derivationPath": "m/44'/60'/0'/0/49",
"id": "aa228398-0697-4f44-b67b-e0e16a14ee8d",
"isActive": true,
"metadata": {
"id": "sweep 0x0e012 n10n1"
},
"name": "sweep 0x0e012 n10n1",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-09-02T16:31:04.815Z"
},
{
"address": "0x491b49C1d0B75eEdDafb77393dE0eed7E12240Db",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png",
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-31T17:40:41.946Z",
"derivationPath": "m/44'/60'/0'/0/40",
"id": "ae15c6c0-553b-4cf6-90c2-69438f3874d4",
"isActive": true,
"metadata": {
"id": "sweep 0x0e012"
},
"name": "sweep 0x0e012",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-31T17:40:41.946Z"
},
{
"address": "0x7eB39FDF0e6a9978222174Cd7792fBc10A800dD2",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-30T14:50:16.906Z",
"derivationPath": "m/44'/60'/0'/0/36",
"id": "bc867980-987c-43ce-886d-07218a97626f",
"isActive": true,
"metadata": {
"id": "slack3 0x0e01 0x0e01"
},
"name": "0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-30T14:50:16.906Z"
},
{
"address": "0xa37Ef275EF04ba2Af833A4d25C88F850E982F7eb",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-30T12:19:59.583Z",
"derivationPath": "m/44'/60'/0'/0/35",
"id": "54f8762c-f6ef-49bb-a2c6-5ea9935fa3be",
"isActive": true,
"metadata": {
"id": "sweep 0x0e012"
},
"name": "sweep 0x0e012",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-30T12:19:59.583Z"
},
{
"address": "0xe7A0ec287cadD70D1F9A26818981f55b5bF6918e",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-29T15:30:58.479Z",
"derivationPath": "m/44'/60'/0'/0/30",
"id": "b098db3a-f144-490c-a208-9a699547a640",
"isActive": true,
"metadata": {
"id": "sweep 0x0e01"
},
"name": "sweep 0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-29T15:30:58.479Z"
},
{
"address": "0x786cEffE9A81f67549E595C616969664abB9aE3D",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-29T15:06:29.102Z",
"derivationPath": "m/44'/60'/0'/0/29",
"id": "e69f50d1-48a3-4c99-b302-1aec9fdf6aea",
"isActive": true,
"metadata": {
"id": "sweep 0x0e01"
},
"name": "sweep 0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-29T15:06:29.102Z"
},
{
"address": "0xA09f61Ff1E26eEa36221A497cF28195742ad1C6c",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-29T14:17:37.531Z",
"derivationPath": "m/44'/60'/0'/0/28",
"id": "436a6178-0871-4fb8-81c9-f2eb860d178d",
"isActive": true,
"metadata": {
"id": "sweep 0x0e01"
},
"name": "sweep 0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-29T14:17:37.531Z"
},
{
"address": "0x1Db0A66a142D5d0bd139B484BF1Aa512434e65C2",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-29T13:10:30.289Z",
"derivationPath": "m/44'/60'/0'/0/27",
"id": "b3a7f648-3630-48be-8e70-554cd000671b",
"isActive": true,
"metadata": {
"id": "sweep 0x0e01"
},
"name": "sweep 0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-29T13:10:30.289Z"
},
{
"address": "0x99C79Cb0423ce8eCd66312c94675F292A37ABc9F",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png",
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-28T09:39:39.973Z",
"derivationPath": "m/44'/60'/0'/0/24",
"id": "61c63253-94bc-46ba-bc0d-e1c3cc62c807",
"isActive": true,
"metadata": {
"id": "0x0e01 0x0e01"
},
"name": "0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-28T09:39:39.973Z"
},
{
"address": "0xa2188919aeBb2fDdF93C247Cc416dE805C0d822B",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png",
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-27T16:10:43.623Z",
"derivationPath": "m/44'/60'/0'/0/23",
"id": "9c99d340-cd72-45cc-90c3-4225c6d4b2b2",
"isActive": true,
"metadata": {
"id": "0x0e01 0x0e01"
},
"name": "0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-27T16:10:43.623Z"
},
{
"address": "0x127ba18Fc9C40B0875C8DF748fb1BC799131444d",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png",
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-27T16:07:29.531Z",
"derivationPath": "m/44'/60'/0'/0/22",
"id": "4a59fcbc-d6c0-4b12-a79b-faa976005839",
"isActive": true,
"metadata": {
"id": "0x0e01 0x0e01"
},
"name": "0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-27T16:07:29.531Z"
},
{
"address": "0xaE6c8112ad885a4ec39dFfD554dD79BcDc1Ba880",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-27T07:27:47.346Z",
"derivationPath": "m/44'/60'/0'/0/8",
"id": "7622e5d5-af8b-4ca5-ad92-7d2d804af4b6",
"isActive": true,
"metadata": {
"id": "slack3 0x0e01 0x0e01"
},
"name": "slack3 0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-27T07:27:47.346Z"
},
{
"address": "0x0aeCD526016eCd202A605749B5AD680e2F686E1d",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-26T20:19:20.826Z",
"derivationPath": "m/44'/60'/0'/0/7",
"id": "afc7afe8-b21a-4451-9e0f-c8cbf40fe4e7",
"isActive": true,
"metadata": {
"id": "slack3 0x0e01 0x0e01"
},
"name": "slack3 0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-26T20:19:20.826Z"
},
{
"address": "0xEB25AB55eA626855B72089cd7085312c8e95dA6b",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.106Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png",
"name": "BNB smart chain",
"slug": "bnb-smart-chain",
"symbol": "bnb",
"tokenStandard": "BEP20",
"updatedAt": "2024-06-14T22:36:43.716Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-24T13:32:44.577Z",
"derivationPath": "m/44'/60'/0'/0/6",
"id": "d9a1d5b0-71bc-4936-b1ef-16117054374f",
"isActive": true,
"metadata": {
"id": "slack3 0x0e01 0x0e01"
},
"name": "slack3 0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-24T13:32:44.577Z"
},
{
"address": "0xA7f998E545A34EC623E7210461fdE226091C875B",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png",
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-22T23:00:47.108Z",
"derivationPath": "m/44'/60'/0'/0/5",
"id": "d220077d-a0df-4097-b04d-295e667cd20f",
"isActive": true,
"metadata": {
"id": "0x0e01 0x0e01"
},
"name": "0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-22T23:00:47.108Z"
},
{
"address": "0xCc90acbbf363A33C5c4586964075D0768C60B00A",
"blockchain": {
"createdAt": "2024-05-14T11:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png",
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-06-14T22:32:11.983Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-22T20:12:07.903Z",
"derivationPath": "m/44'/60'/0'/0/4",
"id": "8a145277-4531-41ce-97c8-78235931b655",
"isActive": true,
"metadata": {
"id": "0x0e01 0x0e01"
},
"name": "0x0e01",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-22T20:12:07.903Z"
},
{
"address": "0xa9902778E9a5F5753510d7D5aeB779150895E01f",
"blockchain": {
"createdAt": "2024-05-27T08:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/Base_Network_Logo_vqyh7r.png",
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-22T10:59:00.872Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-22T10:25:23.342Z",
"derivationPath": "m/44'/60'/0'/0/2",
"id": "2784c630-9796-4ed1-b732-bfece82f93d2",
"isActive": true,
"metadata": {
"id": "0x"
},
"name": "0x",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-22T10:25:23.342Z"
},
{
"address": "0xD2b37A41A692f62F72705509cfE26D0BF2Af27fc",
"blockchain": {
"createdAt": "2024-05-27T08:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/Base_Network_Logo_vqyh7r.png",
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-10-22T10:59:00.872Z"
},
"configurations": {
"aml": {
"message": "Address is not sanctioned",
"provider": "ofac",
"status": "success"
}
},
"createdAt": "2024-08-22T10:22:29.463Z",
"derivationPath": "m/44'/60'/0'/0/1",
"id": "3def8cb6-bd10-4324-8350-49d84651daa1",
"isActive": true,
"metadata": {
"id": "0x"
},
"name": "0x",
"network": "testnet",
"type": "INTERNAL",
"updatedAt": "2024-08-22T10:22:29.463Z"
}
],
"message": "Addresses fetched successfully",
"meta": {
"currentPage": 1,
"itemCount": 49,
"itemsPerPage": 100,
"totalItems": 49,
"totalPages": 1
},
"statusCode": 200
}Authorizations
Path Parameters
Example:
"YOUR_WALLET_ID"
Response
200 - application/json
200
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Example:
[ { "address": "0x7204855eA98E951a218A9CC69786D7Dc749d170A", "blockchain": { "createdAt": "2024-05-14T11:53:33.095Z", "derivationPath": "m/44'/60'/0'/0", "id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png", "name": "ethereum", "slug": "ethereum", "symbol": "eth", "tokenStandard": "ERC20", "updatedAt": "2024-06-14T22:32:11.983Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" }, "disableAutoSweep": false, "enableGaslessWithdraw": false, "showPrivateKey": false }, "createdAt": "2024-10-23T10:53:38.622Z", "derivationPath": "m/44'/60'/0'/0/86", "id": "259422b2-6c8f-40e0-822f-7d2d23c78323", "isActive": true, "metadata": null, "name": null, "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-23T10:53:38.622Z" }, { "address": "0x7DfCf25Ee202f0d564E2951bD4E487391D71F9D4", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" }, "disableAutoSweep": false, "enableGaslessWithdraw": false, "isActive": false, "showPrivateKey": false }, "createdAt": "2024-10-16T05:23:11.095Z", "derivationPath": "m/44'/60'/0'/0/85", "id": "87a25d98-f3c4-4521-8d31-e97b97be613f", "isActive": false, "metadata": null, "name": null, "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-16T05:47:51.206Z" }, { "address": "0x6B63A4E642929a345deB816418394954C1791e69", "blockchain": { "createdAt": "2024-10-07T16:09:49.784Z", "derivationPath": "m/44'/60'/0'/0", "id": "1c9ca9df-325f-4b60-a7ec-b28d2235e0b7", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/optimism-ethereum-op-logo_h62d1i.png", "name": "optimism", "slug": "optimism", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-10-22T10:59:00.875Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" }, "disableAutoSweep": true, "enableGaslessWithdraw": true, "showPrivateKey": false }, "createdAt": "2024-10-08T12:44:08.553Z", "derivationPath": "m/44'/60'/0'/0/84", "id": "09a13815-1546-4bee-99a9-09e26dae8ef9", "isActive": true, "metadata": null, "name": "gasless wallet 0x010", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-08T12:44:08.553Z" }, { "address": "0xcC53d19b7E3233Cf9f6af6f1ec276A1179CC7234", "blockchain": { "createdAt": "2024-10-07T16:09:49.760Z", "derivationPath": "m/44'/60'/0'/0", "id": "dbd35ce3-8526-45d0-9e35-d80d7141f959", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/arbitrum-arb-logo_x7uvan.png", "name": "arbitrum", "slug": "arbitrum", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-10-22T10:59:00.874Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" }, "disableAutoSweep": true, "enableGaslessWithdraw": true, "showPrivateKey": false }, "createdAt": "2024-10-08T12:25:24.542Z", "derivationPath": "m/44'/60'/0'/0/83", "id": "c04286ec-4c15-486c-b169-1ce16fb542da", "isActive": true, "metadata": null, "name": "gasless wallet 0x010", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-08T12:25:24.542Z" }, { "address": "0xd82daB14E16BA34BAd79ED580Ee297149f8c7287", "blockchain": { "createdAt": "2024-10-07T16:09:49.784Z", "derivationPath": "m/44'/60'/0'/0", "id": "1c9ca9df-325f-4b60-a7ec-b28d2235e0b7", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/optimism-ethereum-op-logo_h62d1i.png", "name": "optimism", "slug": "optimism", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-10-22T10:59:00.875Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" }, "disableAutoSweep": false, "enableGaslessWithdraw": false, "showPrivateKey": false }, "createdAt": "2024-10-08T12:14:58.397Z", "derivationPath": "m/44'/60'/0'/0/82", "id": "e222f053-6071-4488-b16b-ca5ac1643c58", "isActive": true, "metadata": null, "name": "gasless wallet 0x01", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-08T12:14:58.397Z" }, { "address": "0x7be8f456631eBa70c5451cb7931aa193719c6964", "blockchain": { "createdAt": "2024-10-07T16:09:49.784Z", "derivationPath": "m/44'/60'/0'/0", "id": "1c9ca9df-325f-4b60-a7ec-b28d2235e0b7", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/optimism-ethereum-op-logo_h62d1i.png", "name": "optimism", "slug": "optimism", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-10-22T10:59:00.875Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" }, "disableAutoSweep": true, "enableGaslessWithdraw": true, "showPrivateKey": false }, "createdAt": "2024-10-08T11:34:02.019Z", "derivationPath": "m/44'/60'/0'/0/81", "id": "88bd8816-c69d-4379-a829-f61fbc86f2ef", "isActive": true, "metadata": null, "name": "gasless wallet 0x0", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-08T11:34:02.019Z" }, { "address": "0xFa16702231342fB6aa50151eAF0099DBD01cbC0b", "blockchain": { "createdAt": "2024-10-07T16:09:49.760Z", "derivationPath": "m/44'/60'/0'/0", "id": "dbd35ce3-8526-45d0-9e35-d80d7141f959", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/arbitrum-arb-logo_x7uvan.png", "name": "arbitrum", "slug": "arbitrum", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-10-22T10:59:00.874Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" }, "disableAutoSweep": false, "enableGaslessWithdraw": false, "showPrivateKey": false }, "createdAt": "2024-10-08T11:11:32.476Z", "derivationPath": "m/44'/60'/0'/0/80", "id": "2ebba786-7ba2-4084-b405-55dfc5cae642", "isActive": true, "metadata": null, "name": "customer wallet 0x0", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-08T11:11:32.476Z" }, { "address": "0x6B0207b34f99010284CaDEf2088C46C6B055aA50", "blockchain": { "createdAt": "2024-10-07T16:09:49.760Z", "derivationPath": "m/44'/60'/0'/0", "id": "dbd35ce3-8526-45d0-9e35-d80d7141f959", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/arbitrum-arb-logo_x7uvan.png", "name": "arbitrum", "slug": "arbitrum", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-10-22T10:59:00.874Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" }, "disableAutoSweep": false, "enableGaslessWithdraw": false, "showPrivateKey": false }, "createdAt": "2024-10-07T16:42:56.103Z", "derivationPath": "m/44'/60'/0'/0/79", "id": "f401435d-ace1-4b34-a791-5af2b06f18e2", "isActive": true, "metadata": null, "name": "customer wallet 0x", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-07T16:42:56.103Z" }, { "address": "0x0801E69537ff102a65cb2e224FFa9321C7D080d5", "blockchain": { "createdAt": "2024-10-07T16:09:49.784Z", "derivationPath": "m/44'/60'/0'/0", "id": "1c9ca9df-325f-4b60-a7ec-b28d2235e0b7", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1728312943/crypto-assets/optimism-ethereum-op-logo_h62d1i.png", "name": "optimism", "slug": "optimism", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-10-22T10:59:00.875Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" }, "disableAutoSweep": false, "enableGaslessWithdraw": false, "showPrivateKey": false }, "createdAt": "2024-10-07T16:37:53.324Z", "derivationPath": "m/44'/60'/0'/0/78", "id": "a9bbcb26-f75d-45a9-a0b4-ba61535f6ea0", "isActive": true, "metadata": null, "name": "customer wallet 0", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-07T16:37:53.324Z" }, { "address": "0x3F4ADe653d1D9942025ae412A19e2CDd3e9C2B91", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" }, "disableAutoSweep": false, "enableGaslessWithdraw": false, "showPrivateKey": false }, "createdAt": "2024-10-07T14:28:29.471Z", "derivationPath": "m/44'/60'/0'/0/77", "id": "bf795648-897c-4fb3-8528-96044409bce8", "isActive": true, "metadata": null, "name": "customer wallet 1", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-07T14:28:29.471Z" }, { "address": "0x54B5b79ED02e6164d0F1075Ec3d7FDc081E88e50", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" }, "disableAutoSweep": true, "enableGaslessWithdraw": true, "showPrivateKey": true }, "createdAt": "2024-10-07T11:15:25.902Z", "derivationPath": "m/44'/60'/0'/0/71", "id": "b32ad49e-7a71-4ccb-8d80-29f6801ec475", "isActive": true, "metadata": null, "name": "gasless wallet 2", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-07T11:15:25.902Z" }, { "address": "0x64964eE1de9633272Bd2fa9E9a6029abB48d824a", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" }, "disableAutoSweep": true, "enableGaslessWithdraw": true, "showPrivateKey": true }, "createdAt": "2024-10-07T09:56:35.889Z", "derivationPath": "m/44'/60'/0'/0/70", "id": "c410387b-8900-4dc6-81bf-ff16c194c054", "isActive": true, "metadata": null, "name": "gasless wallet", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-07T09:56:35.889Z" }, { "address": "0x57E8c3c24ACdea05F59d773d6b4F325302891Ac3", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" }, "disableAutoSweep": false, "enableGaslessWithdraw": false, "showPrivateKey": false }, "createdAt": "2024-10-07T09:53:05.417Z", "derivationPath": "m/44'/60'/0'/0/69", "id": "e6172f64-b68d-44b9-8cd4-2f51b17a5184", "isActive": true, "metadata": null, "name": "gasless wallet", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-07T09:53:05.417Z" }, { "address": "0x4Ae57965De2061A4E7fC56E5B2f8a0C7CbF1Bf3B", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" }, "disableAutoSweep": false, "enableGaslessWithdraw": false, "showPrivateKey": false }, "createdAt": "2024-10-07T07:33:18.503Z", "derivationPath": "m/44'/60'/0'/0/68", "id": "7a2ed414-3b50-4bcc-bf32-9c9b19c82b24", "isActive": true, "metadata": null, "name": "recover asset 6", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-07T07:33:18.503Z" }, { "address": "0x2589B490b911D10a53f0fe87cc0Ac64A072E02F5", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" }, "disableAutoSweep": false, "showPrivateKey": false }, "createdAt": "2024-10-07T07:32:20.056Z", "derivationPath": "m/44'/60'/0'/0/67", "id": "db883dbd-eb72-4c5e-bd6d-c8b4bc83c355", "isActive": true, "metadata": null, "name": "recover asset 6", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-07T07:32:20.056Z" }, { "address": "0xD2017cFB85111fFE94a9f32933ddE73e161d2eEE", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" }, "disableAutoSweep": true, "showPrivateKey": true }, "createdAt": "2024-10-06T20:16:51.775Z", "derivationPath": "m/44'/60'/0'/0/66", "id": "88df4672-73a0-4f0a-ba92-2b8a377045bc", "isActive": true, "metadata": null, "name": "recover asset 5", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-06T20:16:51.775Z" }, { "address": "0x32D2D80D708cb022e9B0b82C2600236914a2460c", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" }, "disableAutoSweep": false, "showPrivateKey": false }, "createdAt": "2024-10-03T12:40:48.558Z", "derivationPath": "m/44'/60'/0'/0/65", "id": "518b91f6-4e28-4e90-9463-ea697e48b5aa", "isActive": true, "metadata": null, "name": "recover asset 4", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-03T12:40:48.558Z" }, { "address": "0x96863cb90De5B2FBAD78BB3fD020789b86b148B7", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" }, "disableAutoSweep": false, "showPrivateKey": true }, "createdAt": "2024-10-03T12:40:25.532Z", "derivationPath": "m/44'/60'/0'/0/64", "id": "56f6df07-6de1-4946-bcc1-fb6e78c3d674", "isActive": true, "metadata": null, "name": "recover asset 4", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-03T12:40:25.532Z" }, { "address": "0xF16941C64152374a111a58a014be131f5cd05Ba6", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-10-02T10:20:10.391Z", "derivationPath": "m/44'/60'/0'/0/63", "id": "d9d90f5a-c3e7-45b1-93d8-a5aaa176366b", "isActive": true, "metadata": null, "name": "recover asset 4", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-02T10:20:10.391Z" }, { "address": "0x90a92c1c36069FA3735d7AB93c1C64C62d982Ff9", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-10-01T15:54:05.338Z", "derivationPath": "m/44'/60'/0'/0/62", "id": "7e0a46a1-8a94-4425-94ed-09660989e673", "isActive": true, "metadata": null, "name": "recover asset 3", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-01T15:54:05.338Z" }, { "address": "0x69eB05c12C3Dad10c342F05848227801c95045F6", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-10-01T06:10:11.236Z", "derivationPath": "m/44'/60'/0'/0/61", "id": "0f9f1d8b-3915-4ee0-9e6f-5c07256044c7", "isActive": true, "metadata": null, "name": "recover asset 2", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-01T06:10:11.236Z" }, { "address": "0x06b72cC980A8AcB9886c67CAa6B073C7a8363B7d", "blockchain": { "createdAt": "2024-05-14T11:53:33.095Z", "derivationPath": "m/44'/60'/0'/0", "id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png", "name": "ethereum", "slug": "ethereum", "symbol": "eth", "tokenStandard": "ERC20", "updatedAt": "2024-06-14T22:32:11.983Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-10-01T04:35:58.951Z", "derivationPath": "m/44'/60'/0'/0/60", "id": "a1683e45-63d0-4007-8c82-c9961e87841b", "isActive": true, "metadata": null, "name": "recover asset 2", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-01T04:35:58.951Z" }, { "address": "0x32a32fFadFbE4943034d1909c30f3Fe63E419040", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-10-01T04:35:30.611Z", "derivationPath": "m/44'/60'/0'/0/59", "id": "2d9c4152-be8b-4ed3-95b4-a5b6d917b862", "isActive": true, "metadata": null, "name": "recover asset 1", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-10-01T04:35:30.611Z" }, { "address": "0xe31bd039b8Bfa0E2B05645c5060dF2E53c6eCb94", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-09-30T08:23:54.649Z", "derivationPath": "m/44'/60'/0'/0/58", "id": "ca4f8e87-a801-4880-9877-82913077805c", "isActive": true, "metadata": null, "name": "recover asset", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-09-30T08:23:54.649Z" }, { "address": "0x61e5E66224Fe6979032c9Cc3832085BEB889bd1c", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-09-24T03:50:16.679Z", "derivationPath": "m/44'/60'/0'/0/57", "id": "94b9eeb7-14c5-47d9-b7f2-c69d01bef821", "isActive": true, "metadata": { "id": "nwq sweep 0x0e012 n10n10" }, "name": "nwq sweep 0x0e012 n10n10", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-09-24T03:50:16.679Z" }, { "address": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-09-24T03:48:41.035Z", "derivationPath": null, "id": "c43138c2-bd7b-4820-b61a-ee1a9fada615", "isActive": true, "metadata": { "id": "1010" }, "name": "External address", "network": "testnet", "type": "EXTERNAL", "updatedAt": "2024-09-24T03:48:41.035Z" }, { "address": "0x809456eDF7573aFC4ADE087439aA03e100e7329A", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-09-24T03:28:38.951Z", "derivationPath": "m/44'/60'/0'/0/56", "id": "4f30a328-3826-4f52-8466-8d2b9a603ae6", "isActive": true, "metadata": { "user_id": "01" }, "name": "01 address", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-09-24T03:28:38.951Z" }, { "address": "0x1424732d4A8cDa95BFad49F62F78abc6f8A80740", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-09-24T03:28:27.376Z", "derivationPath": "m/44'/60'/0'/0/55", "id": "d542ab01-4b44-42e2-9534-0897778136c2", "isActive": true, "metadata": { "id": "sweep 0x0e012 n10n10" }, "name": "sweep 0x0e012 n10n10", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-09-24T03:28:27.376Z" }, { "address": "0x599393d99e2Ec79048598fa299e4B1B249319339", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-09-03T18:07:00.209Z", "derivationPath": "m/44'/60'/0'/0/54", "id": "36b1c1ba-c6db-4d63-a794-6c829aaa8fea", "isActive": true, "metadata": { "id": "sweep 0x0e012 n10n10" }, "name": "sweep 0x0e012 n10n10", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-09-03T18:07:00.209Z" }, { "address": "0x9f685fBaC5a57cb144b533237bFB2Be1eD07D373", "blockchain": { "createdAt": "2024-05-14T11:53:33.095Z", "derivationPath": "m/44'/60'/0'/0", "id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png", "name": "ethereum", "slug": "ethereum", "symbol": "eth", "tokenStandard": "ERC20", "updatedAt": "2024-06-14T22:32:11.983Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-09-02T17:22:23.946Z", "derivationPath": "m/44'/60'/0'/0/51", "id": "b11f69f8-91f8-43bc-b3e2-8891a63bbe80", "isActive": true, "metadata": { "id": "sweep 0x0e012 n10n10" }, "name": "sweep 0x0e012 n10n10", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-09-02T17:22:23.946Z" }, { "address": "0xdCc6D9BbCb7f48C8f411E5dA6654774124948539", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-09-02T17:10:16.416Z", "derivationPath": "m/44'/60'/0'/0/50", "id": "5e7644d7-626e-4b4f-8e4f-17402f63f42b", "isActive": true, "metadata": { "id": "sweep 0x0e012 n10n10" }, "name": "sweep 0x0e012 n10n10", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-09-02T17:10:16.416Z" }, { "address": "0x644CBBCe85c85CeF10A23E66DC3fbcFC593b9f5a", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-09-02T16:31:04.815Z", "derivationPath": "m/44'/60'/0'/0/49", "id": "aa228398-0697-4f44-b67b-e0e16a14ee8d", "isActive": true, "metadata": { "id": "sweep 0x0e012 n10n1" }, "name": "sweep 0x0e012 n10n1", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-09-02T16:31:04.815Z" }, { "address": "0x491b49C1d0B75eEdDafb77393dE0eed7E12240Db", "blockchain": { "createdAt": "2024-05-14T11:53:33.095Z", "derivationPath": "m/44'/60'/0'/0", "id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png", "name": "ethereum", "slug": "ethereum", "symbol": "eth", "tokenStandard": "ERC20", "updatedAt": "2024-06-14T22:32:11.983Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-08-31T17:40:41.946Z", "derivationPath": "m/44'/60'/0'/0/40", "id": "ae15c6c0-553b-4cf6-90c2-69438f3874d4", "isActive": true, "metadata": { "id": "sweep 0x0e012" }, "name": "sweep 0x0e012", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-08-31T17:40:41.946Z" }, { "address": "0x7eB39FDF0e6a9978222174Cd7792fBc10A800dD2", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-08-30T14:50:16.906Z", "derivationPath": "m/44'/60'/0'/0/36", "id": "bc867980-987c-43ce-886d-07218a97626f", "isActive": true, "metadata": { "id": "slack3 0x0e01 0x0e01" }, "name": "0x0e01", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-08-30T14:50:16.906Z" }, { "address": "0xa37Ef275EF04ba2Af833A4d25C88F850E982F7eb", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-08-30T12:19:59.583Z", "derivationPath": "m/44'/60'/0'/0/35", "id": "54f8762c-f6ef-49bb-a2c6-5ea9935fa3be", "isActive": true, "metadata": { "id": "sweep 0x0e012" }, "name": "sweep 0x0e012", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-08-30T12:19:59.583Z" }, { "address": "0xe7A0ec287cadD70D1F9A26818981f55b5bF6918e", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-08-29T15:30:58.479Z", "derivationPath": "m/44'/60'/0'/0/30", "id": "b098db3a-f144-490c-a208-9a699547a640", "isActive": true, "metadata": { "id": "sweep 0x0e01" }, "name": "sweep 0x0e01", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-08-29T15:30:58.479Z" }, { "address": "0x786cEffE9A81f67549E595C616969664abB9aE3D", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-08-29T15:06:29.102Z", "derivationPath": "m/44'/60'/0'/0/29", "id": "e69f50d1-48a3-4c99-b302-1aec9fdf6aea", "isActive": true, "metadata": { "id": "sweep 0x0e01" }, "name": "sweep 0x0e01", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-08-29T15:06:29.102Z" }, { "address": "0xA09f61Ff1E26eEa36221A497cF28195742ad1C6c", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-08-29T14:17:37.531Z", "derivationPath": "m/44'/60'/0'/0/28", "id": "436a6178-0871-4fb8-81c9-f2eb860d178d", "isActive": true, "metadata": { "id": "sweep 0x0e01" }, "name": "sweep 0x0e01", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-08-29T14:17:37.531Z" }, { "address": "0x1Db0A66a142D5d0bd139B484BF1Aa512434e65C2", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-08-29T13:10:30.289Z", "derivationPath": "m/44'/60'/0'/0/27", "id": "b3a7f648-3630-48be-8e70-554cd000671b", "isActive": true, "metadata": { "id": "sweep 0x0e01" }, "name": "sweep 0x0e01", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-08-29T13:10:30.289Z" }, { "address": "0x99C79Cb0423ce8eCd66312c94675F292A37ABc9F", "blockchain": { "createdAt": "2024-05-14T11:53:33.095Z", "derivationPath": "m/44'/60'/0'/0", "id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png", "name": "ethereum", "slug": "ethereum", "symbol": "eth", "tokenStandard": "ERC20", "updatedAt": "2024-06-14T22:32:11.983Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-08-28T09:39:39.973Z", "derivationPath": "m/44'/60'/0'/0/24", "id": "61c63253-94bc-46ba-bc0d-e1c3cc62c807", "isActive": true, "metadata": { "id": "0x0e01 0x0e01" }, "name": "0x0e01", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-08-28T09:39:39.973Z" }, { "address": "0xa2188919aeBb2fDdF93C247Cc416dE805C0d822B", "blockchain": { "createdAt": "2024-05-14T11:53:33.095Z", "derivationPath": "m/44'/60'/0'/0", "id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png", "name": "ethereum", "slug": "ethereum", "symbol": "eth", "tokenStandard": "ERC20", "updatedAt": "2024-06-14T22:32:11.983Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-08-27T16:10:43.623Z", "derivationPath": "m/44'/60'/0'/0/23", "id": "9c99d340-cd72-45cc-90c3-4225c6d4b2b2", "isActive": true, "metadata": { "id": "0x0e01 0x0e01" }, "name": "0x0e01", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-08-27T16:10:43.623Z" }, { "address": "0x127ba18Fc9C40B0875C8DF748fb1BC799131444d", "blockchain": { "createdAt": "2024-05-14T11:53:33.095Z", "derivationPath": "m/44'/60'/0'/0", "id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png", "name": "ethereum", "slug": "ethereum", "symbol": "eth", "tokenStandard": "ERC20", "updatedAt": "2024-06-14T22:32:11.983Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-08-27T16:07:29.531Z", "derivationPath": "m/44'/60'/0'/0/22", "id": "4a59fcbc-d6c0-4b12-a79b-faa976005839", "isActive": true, "metadata": { "id": "0x0e01 0x0e01" }, "name": "0x0e01", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-08-27T16:07:29.531Z" }, { "address": "0xaE6c8112ad885a4ec39dFfD554dD79BcDc1Ba880", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-08-27T07:27:47.346Z", "derivationPath": "m/44'/60'/0'/0/8", "id": "7622e5d5-af8b-4ca5-ad92-7d2d804af4b6", "isActive": true, "metadata": { "id": "slack3 0x0e01 0x0e01" }, "name": "slack3 0x0e01", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-08-27T07:27:47.346Z" }, { "address": "0x0aeCD526016eCd202A605749B5AD680e2F686E1d", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-08-26T20:19:20.826Z", "derivationPath": "m/44'/60'/0'/0/7", "id": "afc7afe8-b21a-4451-9e0f-c8cbf40fe4e7", "isActive": true, "metadata": { "id": "slack3 0x0e01 0x0e01" }, "name": "slack3 0x0e01", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-08-26T20:19:20.826Z" }, { "address": "0xEB25AB55eA626855B72089cd7085312c8e95dA6b", "blockchain": { "createdAt": "2024-05-14T11:53:33.106Z", "derivationPath": "m/44'/60'/0'/0", "id": "b80d3d5e-16f1-4d99-be5e-6dfcd27f89aa", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/bnb-bnb-logo_e4qdyk.png", "name": "BNB smart chain", "slug": "bnb-smart-chain", "symbol": "bnb", "tokenStandard": "BEP20", "updatedAt": "2024-06-14T22:36:43.716Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-08-24T13:32:44.577Z", "derivationPath": "m/44'/60'/0'/0/6", "id": "d9a1d5b0-71bc-4936-b1ef-16117054374f", "isActive": true, "metadata": { "id": "slack3 0x0e01 0x0e01" }, "name": "slack3 0x0e01", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-08-24T13:32:44.577Z" }, { "address": "0xA7f998E545A34EC623E7210461fdE226091C875B", "blockchain": { "createdAt": "2024-05-14T11:53:33.095Z", "derivationPath": "m/44'/60'/0'/0", "id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png", "name": "ethereum", "slug": "ethereum", "symbol": "eth", "tokenStandard": "ERC20", "updatedAt": "2024-06-14T22:32:11.983Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-08-22T23:00:47.108Z", "derivationPath": "m/44'/60'/0'/0/5", "id": "d220077d-a0df-4097-b04d-295e667cd20f", "isActive": true, "metadata": { "id": "0x0e01 0x0e01" }, "name": "0x0e01", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-08-22T23:00:47.108Z" }, { "address": "0xCc90acbbf363A33C5c4586964075D0768C60B00A", "blockchain": { "createdAt": "2024-05-14T11:53:33.095Z", "derivationPath": "m/44'/60'/0'/0", "id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800081/crypto-assets/ethereum-eth-logo_idraq2.png", "name": "ethereum", "slug": "ethereum", "symbol": "eth", "tokenStandard": "ERC20", "updatedAt": "2024-06-14T22:32:11.983Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-08-22T20:12:07.903Z", "derivationPath": "m/44'/60'/0'/0/4", "id": "8a145277-4531-41ce-97c8-78235931b655", "isActive": true, "metadata": { "id": "0x0e01 0x0e01" }, "name": "0x0e01", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-08-22T20:12:07.903Z" }, { "address": "0xa9902778E9a5F5753510d7D5aeB779150895E01f", "blockchain": { "createdAt": "2024-05-27T08:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/Base_Network_Logo_vqyh7r.png", "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-10-22T10:59:00.872Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-08-22T10:25:23.342Z", "derivationPath": "m/44'/60'/0'/0/2", "id": "2784c630-9796-4ed1-b732-bfece82f93d2", "isActive": true, "metadata": { "id": "0x" }, "name": "0x", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-08-22T10:25:23.342Z" }, { "address": "0xD2b37A41A692f62F72705509cfE26D0BF2Af27fc", "blockchain": { "createdAt": "2024-05-27T08:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "logoUrl": "https://res.cloudinary.com/blockradar/image/upload/v1716800080/crypto-assets/Base_Network_Logo_vqyh7r.png", "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-10-22T10:59:00.872Z" }, "configurations": { "aml": { "message": "Address is not sanctioned", "provider": "ofac", "status": "success" } }, "createdAt": "2024-08-22T10:22:29.463Z", "derivationPath": "m/44'/60'/0'/0/1", "id": "3def8cb6-bd10-4324-8350-49d84651daa1", "isActive": true, "metadata": { "id": "0x" }, "name": "0x", "network": "testnet", "type": "INTERNAL", "updatedAt": "2024-08-22T10:22:29.463Z" } ]
Example:
"Addresses fetched successfully"
Show child attributes
Show child attributes
Example:
200
⌘I

