Master Wallet Transactions
curl --request GET \
--url https://api.blockradar.co/v1/gateway/Transactions \
--header 'x-api-key: <api-key>'import requests
url = "https://api.blockradar.co/v1/gateway/Transactions"
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/gateway/Transactions', 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/gateway/Transactions",
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/gateway/Transactions"
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/gateway/Transactions")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.blockradar.co/v1/gateway/Transactions")
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{
"data": [
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "6",
"amountPaid": "6",
"amountUSD": "6",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xcce00525f3c682b406ca5d2f1dff94c399d779c7784ac6e5209f9b0a29793f62",
"blockNumber": 29804987,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": 6,
"confirmed": true,
"createdAt": "2025-08-17T03:04:16.901Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000000236577822556",
"gasPrice": "1200062",
"gasUsed": "197138",
"hash": "0xadd04cd5dcca2a43b65f81a68038c5357ad6c61cfe250319ea9a7a29d4a59732",
"id": "9908b8d9-a36b-441a-911c-4b374dda12bb",
"metadata": null,
"network": "testnet",
"note": "Withdrawal of 6 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 8.709136 USDC | Network Fee: 2.022299 USDC | Gasless: false",
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "mkYm5tkjdY",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-17T03:04:33.822Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "5",
"amountPaid": "5",
"amountUSD": "5",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xfdf4bed4203586d0c15af8ab6a52219f6258c2f794edc8b5d2115ddffe654f06",
"blockNumber": 29804652,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": 6,
"confirmed": true,
"createdAt": "2025-08-17T02:53:06.899Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.00000008865458025",
"gasPrice": "1200062",
"gasUsed": "73875",
"hash": "0x6f368af66e136597736d783a223a045eda92e789b85e746ea943e797df435902",
"id": "fc7665db-551b-45c0-8acf-98528896a346",
"metadata": null,
"network": "testnet",
"note": "Deposit of 5 USDC to gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 10.2 USDC | Network Fee: 2.15293522924e-7 USDC | Gasless: false",
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "lh66wgvMb8",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-17T02:53:22.849Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "3",
"amountPaid": "3",
"amountUSD": "3",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xad11b1e6cd5029cdca0155e49ff1fb95459c3e0faf07a4ffca2f7da547d40faf",
"blockNumber": 29804568,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": 6,
"confirmed": true,
"createdAt": "2025-08-17T02:50:16.304Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.00000023724625709",
"gasPrice": "1200062",
"gasUsed": "197695",
"hash": "0x1cb746ab3efee196a10e191f6d2decc682b4dbb37b28b3a782652d79d475c300",
"id": "c023f959-1340-4621-8658-7cdb0aeb6b6d",
"metadata": null,
"network": "testnet",
"note": "Withdrawal of 3 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 11.739202 USDC | Network Fee: 0.031065 USDC | Gasless: false",
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "VwmTCcuWk",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-17T02:50:35.997Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "5",
"amountPaid": "5",
"amountUSD": "5",
"asset": {
"address": "0x5425890298aed601595a70AB815c96711a31Bc65",
"createdAt": "2025-06-13T22:38:16.058Z",
"currency": "USD",
"decimals": 6,
"id": "e097a26e-0df5-4610-95d3-95f6cd1aa5c6",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-06-13T22:38:16.058Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x4fc994c63ef06bbaf4a157aba4e86dab6f83344cad3b8bf1812b50d6e775c0be",
"blockNumber": 44850047,
"blockchain": {
"createdAt": "2025-06-13T22:30:37.053Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "359c81bc-04ac-47a3-be96-775a7d7cae05",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "avalanche",
"slug": "avalanche",
"symbol": "avax",
"tokenStandard": null,
"updatedAt": "2025-06-13T22:30:37.053Z"
},
"chainId": 43113,
"confirmations": 6,
"confirmed": true,
"createdAt": "2025-08-17T02:45:32.188Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.00000000000014775",
"gasPrice": "2",
"gasUsed": "73875",
"hash": "0x9dedb492e2efe226be21943d4a096d59a4a977e925a5bd807793244d97d5daec",
"id": "6f3836f2-3d00-40aa-a85b-e34e989b4c82",
"metadata": null,
"network": "testnet",
"note": "Deposit of 5 USDC to gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 8.2 USDC | Network Fee: 2.99004e-13 USDC | Gasless: false",
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "IsrFHR26J",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": "0x5425890298aed601595a70AB815c96711a31Bc65",
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-17T02:45:47.946Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x5425890298aed601595a70AB815c96711a31Bc65",
"createdAt": "2025-06-13T22:38:16.058Z",
"currency": "USD",
"decimals": 6,
"id": "e097a26e-0df5-4610-95d3-95f6cd1aa5c6",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-06-13T22:38:16.058Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x8d48aff78e4543e8807a5139e145e90d6ba546f950a5b6c96c109796e4451644",
"blockNumber": 44849896,
"blockchain": {
"createdAt": "2025-06-13T22:30:37.053Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "359c81bc-04ac-47a3-be96-775a7d7cae05",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "avalanche",
"slug": "avalanche",
"symbol": "avax",
"tokenStandard": null,
"updatedAt": "2025-06-13T22:30:37.053Z"
},
"chainId": 43113,
"confirmations": 7,
"confirmed": true,
"createdAt": "2025-08-17T02:40:15.542Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.00000000000014775",
"gasPrice": "2",
"gasUsed": "73875",
"hash": "0x880dec6068c91ceae5ca14abaedfe061d00207969d62923fec76e5afe850f54c",
"id": "4094cb92-b169-4a1d-86df-a5e36fd75b06",
"metadata": null,
"network": "testnet",
"note": "Deposit of 1 USDC to gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 9.2 USDC | Network Fee: 2.99004e-13 USDC | Gasless: false",
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "NHMSwR1etv",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": "0x5425890298aed601595a70AB815c96711a31Bc65",
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-17T02:40:31.793Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xbd3da265118ef20c2ddcc4c81753bd0be18460c52091a54ab4df38820d9c8a95",
"blockNumber": 29804083,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": 6,
"confirmed": true,
"createdAt": "2025-08-17T02:33:39.424Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000000162345722703",
"gasPrice": "1200063",
"gasUsed": "135281",
"hash": "0x4528d4d230df36aa9b100f7f902ecab266adbc87c8490748e6b8e234c1b293b6",
"id": "38e5be52-5ffc-40f8-8b9e-85669faaa11d",
"metadata": null,
"network": "testnet",
"note": "Withdrawal of 1 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 6.749202 USDC | Network Fee: 0.01 USDC | Gasless: false",
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "8TWf2C2TjR",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-17T02:34:26.238Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xdfb3335d4e3cc72797d9e9e5735c713298ed2a452c323cb7dd68fa1bd0bc0617",
"blockNumber": 29802947,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": 7,
"confirmed": true,
"createdAt": "2025-08-17T01:54:19.418Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000000161706089124",
"gasPrice": "1200063",
"gasUsed": "134748",
"hash": "0xdf8218b5e8a49ac6964c3b09018a138e2d184b0ad80241ce49033d9c6035366b",
"id": "8265a6d8-dd75-4368-ac10-bf48d45cd7c9",
"metadata": null,
"network": "testnet",
"note": "Withdrawal of 1 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 9.749252 USDC | Network Fee: 2.005999 USDC | Gasless: false",
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "UTe94qImNP",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-17T01:56:36.900Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-17T01:52:04.385Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "7ec622fd-516f-472b-84f1-c83e7f453a2d",
"metadata": null,
"network": "testnet",
"note": "Withdrawal of 1 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 9.749252 USDC | Network Fee: 2.005999 USDC | Gasless: false",
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "VHCKeOh728",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-17T01:52:04.385Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-17T01:48:37.989Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "c5e9ec3c-c7b1-4d84-a76e-056b8246f461",
"metadata": null,
"network": "testnet",
"note": "Withdrawal of 1 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 9.749252 USDC | Network Fee: 2.005999 USDC | Gasless: false",
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "tcApNlezq",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-17T01:48:37.989Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-17T01:42:24.396Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "da15d71c-e889-4660-905e-338a22bf2886",
"metadata": null,
"network": "testnet",
"note": "Withdrawal of 1 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 9.749252 USDC | Network Fee: 2.005999 USDC | Gasless: false",
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "wvYmcgQB",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-17T01:42:24.396Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-17T01:39:37.859Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "57771fc6-529b-4ea4-9ea9-9d9d795c641d",
"metadata": null,
"network": "testnet",
"note": "Withdrawal of 1 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 9.749252 USDC | Network Fee: 2.005999 USDC | Gasless: false",
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "gnHZXDdBT",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-17T01:39:37.859Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "3",
"amountPaid": "3",
"amountUSD": "3",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": true,
"createdAt": "2025-08-16T18:02:21.864Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000296542513245565",
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "72c9f77c-f432-407b-86d5-74b4c9d586ae",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "cuMPXXKkVG",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-16T18:02:21.864Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "2",
"amountPaid": "2",
"amountUSD": "2",
"asset": {
"address": "0x5425890298aed601595a70AB815c96711a31Bc65",
"createdAt": "2025-06-13T22:38:16.058Z",
"currency": "USD",
"decimals": 6,
"id": "e097a26e-0df5-4610-95d3-95f6cd1aa5c6",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-06-13T22:38:16.058Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x5d1eef7435ac4fe41f4358fc06528e7306ccc798792528bdb73abb753cf3ae10",
"blockNumber": 44809016,
"blockchain": {
"createdAt": "2025-06-13T22:30:37.053Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "359c81bc-04ac-47a3-be96-775a7d7cae05",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "avalanche",
"slug": "avalanche",
"symbol": "avax",
"tokenStandard": null,
"updatedAt": "2025-06-13T22:30:37.053Z"
},
"chainId": 43113,
"confirmations": 5,
"confirmed": true,
"createdAt": "2025-08-16T03:42:58.696Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000110812500073875",
"gasPrice": "1500000001",
"gasUsed": "73875",
"hash": "0x79023f3e81ad8a03009a8c7fb39175567b36ec69c9c353a44f56baab0ec4d58d",
"id": "adc4f418-095b-465c-9fdd-d35c2e8b8c77",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "qOGLU8zyB5",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-16T03:42:58.696Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T17:53:33.682Z",
"currency": "USD",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"isNative": false,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:19.921Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xbba7261bbaa12bf3b564d0d781778f0a55963ed2817307c95cd4f251d38d5845",
"blockNumber": 8992340,
"blockchain": {
"createdAt": "2024-05-14T17:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-11-26T20:04:13.936Z"
},
"chainId": 11155111,
"confirmations": 1,
"confirmed": true,
"createdAt": "2025-08-16T03:40:49.583Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.00011226915823725",
"gasPrice": "1519717878",
"gasUsed": "73875",
"hash": "0x27345b965399ec525c8db89f1ecb874b7a496aa0ea693eb72eb5f65dec172875",
"id": "b73a8d07-e3cf-40cd-90e0-3bfa700bdc14",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "aC5uTGPc5",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-16T03:40:49.583Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T17:53:33.682Z",
"currency": "USD",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"isNative": false,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:19.921Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xd58cb1ee47b9bb95e9550a2a4a24184d4009314a821fb0904e619deb692ce20b",
"blockNumber": 8992283,
"blockchain": {
"createdAt": "2024-05-14T17:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-11-26T20:04:13.936Z"
},
"chainId": 11155111,
"confirmations": 1,
"confirmed": true,
"createdAt": "2025-08-16T03:29:28.399Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000112927639725375",
"gasPrice": "1528631333",
"gasUsed": "73875",
"hash": "0x4dd507b1affa36077d52abd966118d30364e00e5e00d31f1d75ed9223fdc6c3c",
"id": "e7095965-a795-4589-b68c-906db95a1d00",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "GMxpryzRRG",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-16T03:29:28.399Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T17:53:33.682Z",
"currency": "USD",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"isNative": false,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:19.921Z"
},
"assetSwept": true,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0xee22199b99736ec449b3771c5b1f328b30b9b91222680904ef125d9ab8a4d668",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-14T17:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-11-26T20:04:13.936Z"
},
"chainId": null,
"confirmations": null,
"confirmed": true,
"createdAt": "2025-08-10T00:42:59.543Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000202104007006272",
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "cd8deb1e-6315-425f-b00b-249da7a5268d",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "MpvBz8M3ak",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": "1",
"toCurrency": "USD",
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-10T00:42:59.543Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T17:53:33.682Z",
"currency": "USD",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"isNative": false,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:19.921Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xeebbecb669f3295ed6a1d057f9cb75d9e237afece64400c932757f827c4184d5",
"blockNumber": 8948620,
"blockchain": {
"createdAt": "2024-05-14T17:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-11-26T20:04:13.936Z"
},
"chainId": 11155111,
"confirmations": 1,
"confirmed": true,
"createdAt": "2025-08-10T00:42:27.509Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000110813092403625",
"gasPrice": "1500008019",
"gasUsed": "73875",
"hash": "0x4bbab88fdb0956cf5303c4ca27dfa68d33899548f3e4007bbb966bbff71ba946",
"id": "af1c249f-cb7e-4279-bcfb-027744219fc0",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "6dLHbDXpC",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-10T00:42:27.509Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "0.1",
"amountPaid": "0.1",
"amountUSD": "0.1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": true,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0xc5ec4bb0905c029bf555c0d098adde8044498bac9183bef878aa3c17f1d974c4",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": true,
"createdAt": "2025-08-09T23:51:01.185Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.00019914000013276",
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "72506338-5d11-43d3-bc0e-3c48e4e79bbd",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "ndiLGmz0q",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": "0.1",
"toCurrency": "USD",
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-09T23:51:01.185Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "0.1",
"amountPaid": "0.1",
"amountUSD": "0.1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x6645099a558121906a85c06a41f5d3f03cf72c58c57cbb6092df00a9de0c799a",
"blockNumber": 29496755,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": 2,
"confirmed": true,
"createdAt": "2025-08-09T23:50:00.636Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000110812503915375",
"gasPrice": "1500000053",
"gasUsed": "73875",
"hash": "0xdf0579e8458b5cfb82c317049f399304c8591d09567121751196e6eefb723699",
"id": "4d63829f-7a3d-4823-a9fc-c43c34a56cdd",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "koTOF4bCgJ",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-09T23:50:00.636Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": true,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0xfe1654ae615918509e8a3ccab68c6868271abb39d366da882a36fe7e34d00cc2",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": true,
"createdAt": "2025-08-09T02:32:19.565Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.00019914000013276",
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "157c737e-263c-4dee-862e-4dcdc69ef20b",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "XCiZpJgXaa",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": "1",
"toCurrency": "USD",
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-09T02:32:19.565Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": true,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0xb3e54c6ce56ac4450a6efbb709294d612decd929ae4447c3619558d45fcc5fc1",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": true,
"createdAt": "2025-08-09T02:32:01.750Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000199122687501892",
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "7bf6a528-cc03-4ec8-88d6-4d44ab85ea22",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "LTnc6ZsPu2",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": "1",
"toCurrency": "USD",
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-09T02:32:01.750Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "0.1",
"amountPaid": "0.1",
"amountUSD": "0.1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xd45e2287406deff51d22e25547a5ee462c3b6229c560722d8130734923b1559a",
"blockNumber": 29458390,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": 2,
"confirmed": true,
"createdAt": "2025-08-09T02:31:10.808Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000110812503915375",
"gasPrice": "1500000053",
"gasUsed": "73875",
"hash": "0xbb15e8cd21e4c19c01e2903df3631ae93a84935beaa5fa56d91ca7022caa9cec",
"id": "cbd71fd3-9316-49d4-b639-cc1e1dd03d8e",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "6z5mx0No",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-09T02:31:10.808Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": true,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0xcd8bc902df1261bb48e21ee7fe0d07884f9c5bfc2c352dafe32379c0f0eb4955",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": true,
"createdAt": "2025-08-09T01:40:35.032Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000202158000134772",
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "59d637b1-9b40-4135-8faa-aa1044e35943",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x17C07a3F1e95A3919d6Bf8B3244A6f0e2bB2568A",
"reference": "uVAdq1yPO0",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": "1",
"toCurrency": "USD",
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-09T01:40:35.032Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "0.5",
"amountPaid": "0.5",
"amountUSD": "0.5",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x5c07e039a26d05e6d0de660012ff054070daa3d347789a18fc465ced1e46cf6f",
"blockNumber": 29456779,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": 2,
"confirmed": true,
"createdAt": "2025-08-09T01:37:28.906Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.0001108125038415",
"gasPrice": "1500000052",
"gasUsed": "73875",
"hash": "0x4aa741d3dacac3cb455a41449108cba89d889a99f9f83ef3b32dfd1bbae46138",
"id": "fbdf1ac9-b77e-4ee7-b964-8a51409ec615",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "7vSK2sptPL",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-09T01:37:28.906Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "5",
"amountPaid": "5",
"amountUSD": "5",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T17:53:33.682Z",
"currency": "USD",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"isNative": false,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:19.921Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x7cc2eb95d578fd5894378620b70388426f28dd8d2e227a7eba18bf6b28e3be8b",
"blockNumber": 8941040,
"blockchain": {
"createdAt": "2024-05-14T17:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-11-26T20:04:13.936Z"
},
"chainId": 11155111,
"confirmations": 1,
"confirmed": true,
"createdAt": "2025-08-08T23:19:04.341Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000110826595571625",
"gasPrice": "1500190803",
"gasUsed": "73875",
"hash": "0x65a298ab51eaf47c0498a5b2d7e9d5225957f2f14b13a91791314a403e72c9df",
"id": "a558c578-9350-4bde-b877-165e4c424d39",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "gl5KVDG43t",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-08T23:19:04.341Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T17:53:33.682Z",
"currency": "USD",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"isNative": false,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:19.921Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xe6428714c993cf691d2420b64c2f71c54d5349158324e371c346db43796a1f7d",
"blockNumber": 8941012,
"blockchain": {
"createdAt": "2024-05-14T17:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-11-26T20:04:13.936Z"
},
"chainId": 11155111,
"confirmations": 1,
"confirmed": true,
"createdAt": "2025-08-08T23:13:33.053Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.0001364843561979",
"gasPrice": "1500240244",
"gasUsed": "90975",
"hash": "0xfb3e76fbc40fe6999f2aad23c211285344cb8e24c5982a1b67bf0620f13aa4d0",
"id": "76ba297b-1a05-4252-b8ce-6fc39a8e312c",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "0hXI0NDiom",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-08T23:13:33.053Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xee10ed3b498e130d040567e2658e6898913bb05605ca61acffe1e28168e7d80a",
"blockNumber": 29452334,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": 2,
"confirmed": true,
"createdAt": "2025-08-08T23:09:19.155Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.00011081250458025",
"gasPrice": "1500000062",
"gasUsed": "73875",
"hash": "0xdf376b2131b207cae01361a6d3ccbf1337d2783694abe7965f540ed841e40679",
"id": "e86bf69e-3691-4ed0-8630-6f00311e8f14",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "Y4wAzTA7W",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-08T23:09:19.155Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": true,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0x308bd9fff7dba8ba91c5e09706be49b5388a07b085daccce3feec3c7c12446cf",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": true,
"createdAt": "2025-08-08T23:07:53.222Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000199921508263422",
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "1f2a155d-c19f-408e-8e74-8826f41d3975",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "oExQ5w0lCv",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": "1",
"toCurrency": "USD",
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-08T23:07:53.222Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": true,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0x09239d944c28cbf4835077e4935855e4697122b682d442033af233ccbf57fc75",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-08T22:52:39.016Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.00019918235339712",
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "ebb35430-8b01-4ed6-8191-8e0ffacfcc5a",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "r2DcVYzZ1m",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": "1",
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-08T22:52:39.016Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x5425890298aed601595a70AB815c96711a31Bc65",
"createdAt": "2025-06-13T22:38:16.058Z",
"currency": "USD",
"decimals": 6,
"id": "e097a26e-0df5-4610-95d3-95f6cd1aa5c6",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-06-13T22:38:16.058Z"
},
"assetSwept": true,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0xe55c4ab9189b73936f47eb1523981fa7b2cb9645b3d5215d17c9d9f0a693ff03",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2025-06-13T22:30:37.053Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "359c81bc-04ac-47a3-be96-775a7d7cae05",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "avalanche",
"slug": "avalanche",
"symbol": "avax",
"tokenStandard": null,
"updatedAt": "2025-06-13T22:30:37.053Z"
},
"chainId": null,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-08T22:40:36.796Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "d4c7ca22-17a1-41d5-bafd-14e6477162af",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "y22kCr1VQm",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-08T22:40:36.796Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "2",
"amountPaid": "2",
"amountUSD": "2",
"asset": {
"address": "0x5425890298aed601595a70AB815c96711a31Bc65",
"createdAt": "2025-06-13T22:38:16.058Z",
"currency": "USD",
"decimals": 6,
"id": "e097a26e-0df5-4610-95d3-95f6cd1aa5c6",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-06-13T22:38:16.058Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2025-06-13T22:30:37.053Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "359c81bc-04ac-47a3-be96-775a7d7cae05",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "avalanche",
"slug": "avalanche",
"symbol": "avax",
"tokenStandard": null,
"updatedAt": "2025-06-13T22:30:37.053Z"
},
"chainId": null,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-08T22:37:37.034Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": "0x857c10e3b8a44cb35c1baa1579efe8268c33188bd92e578792ff43edc775b4fb",
"id": "26419934-cb70-46c6-9b53-8b061188de8c",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "Y1tpZTiQsk",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-08T22:37:37.034Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0xbde87084a082f1484f0c2e1d423f05147915200e8be8223ec1d071c74bb6306b",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-08T22:27:50.074Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": "0xbde87084a082f1484f0c2e1d423f05147915200e8be8223ec1d071c74bb6306b",
"id": "9f1349a1-b4ad-4df9-98c0-3dee3b556137",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "KnRuMQd1dH",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-08T22:27:50.074Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0x079e1ae1aec68d6fbcbbb42db778509cdcdd72f0f691345a3ac91c8a252b962b",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-08T22:24:23.019Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": "0x079e1ae1aec68d6fbcbbb42db778509cdcdd72f0f691345a3ac91c8a252b962b",
"id": "6e603302-51ea-42bf-b1e3-0802556dc96e",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "CPqKQxAcx",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-08T22:24:23.019Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0x5146e9e71dcc94a53c2b8f4606eaa8fb66754634a6948bcb5adfd921ffdf5df0",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-08T22:21:45.102Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": "0x5146e9e71dcc94a53c2b8f4606eaa8fb66754634a6948bcb5adfd921ffdf5df0",
"id": "848c1c61-a9dc-49ca-83fd-6fd3edf13345",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "QTJ504nd9F",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-08T22:21:45.102Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0x20a5e3456769d2a93e8f4ab0f32519e4c7a75d4c84c80ccd5ab3c998b60f3bea",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-08T22:14:52.873Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": "0x20a5e3456769d2a93e8f4ab0f32519e4c7a75d4c84c80ccd5ab3c998b60f3bea",
"id": "620dbbb9-a218-4873-b840-ba1508cd89a5",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "oRHgwcbasV",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-08T22:14:52.873Z"
},
{
"amlScreening": {},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-08T22:06:39.677Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": "0xeb2c4ee28c2d92ce76dfcf254286dc68ceb32384fe8647d434525457c135ba24",
"id": "49c9b4d8-690d-4a26-8901-6e9149dd1328",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "d4-MoXe8I",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-08T22:06:39.677Z"
}
],
"message": "Transactions fetched successfully",
"statusCode": 200
}Master Wallet Transactions
This endpoint retrieves the transactions associated with the gateway
GET
/
v1
/
gateway
/
Transactions
Master Wallet Transactions
curl --request GET \
--url https://api.blockradar.co/v1/gateway/Transactions \
--header 'x-api-key: <api-key>'import requests
url = "https://api.blockradar.co/v1/gateway/Transactions"
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/gateway/Transactions', 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/gateway/Transactions",
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/gateway/Transactions"
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/gateway/Transactions")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.blockradar.co/v1/gateway/Transactions")
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{
"data": [
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "6",
"amountPaid": "6",
"amountUSD": "6",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xcce00525f3c682b406ca5d2f1dff94c399d779c7784ac6e5209f9b0a29793f62",
"blockNumber": 29804987,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": 6,
"confirmed": true,
"createdAt": "2025-08-17T03:04:16.901Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000000236577822556",
"gasPrice": "1200062",
"gasUsed": "197138",
"hash": "0xadd04cd5dcca2a43b65f81a68038c5357ad6c61cfe250319ea9a7a29d4a59732",
"id": "9908b8d9-a36b-441a-911c-4b374dda12bb",
"metadata": null,
"network": "testnet",
"note": "Withdrawal of 6 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 8.709136 USDC | Network Fee: 2.022299 USDC | Gasless: false",
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "mkYm5tkjdY",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-17T03:04:33.822Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "5",
"amountPaid": "5",
"amountUSD": "5",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xfdf4bed4203586d0c15af8ab6a52219f6258c2f794edc8b5d2115ddffe654f06",
"blockNumber": 29804652,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": 6,
"confirmed": true,
"createdAt": "2025-08-17T02:53:06.899Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.00000008865458025",
"gasPrice": "1200062",
"gasUsed": "73875",
"hash": "0x6f368af66e136597736d783a223a045eda92e789b85e746ea943e797df435902",
"id": "fc7665db-551b-45c0-8acf-98528896a346",
"metadata": null,
"network": "testnet",
"note": "Deposit of 5 USDC to gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 10.2 USDC | Network Fee: 2.15293522924e-7 USDC | Gasless: false",
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "lh66wgvMb8",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-17T02:53:22.849Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "3",
"amountPaid": "3",
"amountUSD": "3",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xad11b1e6cd5029cdca0155e49ff1fb95459c3e0faf07a4ffca2f7da547d40faf",
"blockNumber": 29804568,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": 6,
"confirmed": true,
"createdAt": "2025-08-17T02:50:16.304Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.00000023724625709",
"gasPrice": "1200062",
"gasUsed": "197695",
"hash": "0x1cb746ab3efee196a10e191f6d2decc682b4dbb37b28b3a782652d79d475c300",
"id": "c023f959-1340-4621-8658-7cdb0aeb6b6d",
"metadata": null,
"network": "testnet",
"note": "Withdrawal of 3 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 11.739202 USDC | Network Fee: 0.031065 USDC | Gasless: false",
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "VwmTCcuWk",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-17T02:50:35.997Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "5",
"amountPaid": "5",
"amountUSD": "5",
"asset": {
"address": "0x5425890298aed601595a70AB815c96711a31Bc65",
"createdAt": "2025-06-13T22:38:16.058Z",
"currency": "USD",
"decimals": 6,
"id": "e097a26e-0df5-4610-95d3-95f6cd1aa5c6",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-06-13T22:38:16.058Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x4fc994c63ef06bbaf4a157aba4e86dab6f83344cad3b8bf1812b50d6e775c0be",
"blockNumber": 44850047,
"blockchain": {
"createdAt": "2025-06-13T22:30:37.053Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "359c81bc-04ac-47a3-be96-775a7d7cae05",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "avalanche",
"slug": "avalanche",
"symbol": "avax",
"tokenStandard": null,
"updatedAt": "2025-06-13T22:30:37.053Z"
},
"chainId": 43113,
"confirmations": 6,
"confirmed": true,
"createdAt": "2025-08-17T02:45:32.188Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.00000000000014775",
"gasPrice": "2",
"gasUsed": "73875",
"hash": "0x9dedb492e2efe226be21943d4a096d59a4a977e925a5bd807793244d97d5daec",
"id": "6f3836f2-3d00-40aa-a85b-e34e989b4c82",
"metadata": null,
"network": "testnet",
"note": "Deposit of 5 USDC to gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 8.2 USDC | Network Fee: 2.99004e-13 USDC | Gasless: false",
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "IsrFHR26J",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": "0x5425890298aed601595a70AB815c96711a31Bc65",
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-17T02:45:47.946Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x5425890298aed601595a70AB815c96711a31Bc65",
"createdAt": "2025-06-13T22:38:16.058Z",
"currency": "USD",
"decimals": 6,
"id": "e097a26e-0df5-4610-95d3-95f6cd1aa5c6",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-06-13T22:38:16.058Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x8d48aff78e4543e8807a5139e145e90d6ba546f950a5b6c96c109796e4451644",
"blockNumber": 44849896,
"blockchain": {
"createdAt": "2025-06-13T22:30:37.053Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "359c81bc-04ac-47a3-be96-775a7d7cae05",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "avalanche",
"slug": "avalanche",
"symbol": "avax",
"tokenStandard": null,
"updatedAt": "2025-06-13T22:30:37.053Z"
},
"chainId": 43113,
"confirmations": 7,
"confirmed": true,
"createdAt": "2025-08-17T02:40:15.542Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.00000000000014775",
"gasPrice": "2",
"gasUsed": "73875",
"hash": "0x880dec6068c91ceae5ca14abaedfe061d00207969d62923fec76e5afe850f54c",
"id": "4094cb92-b169-4a1d-86df-a5e36fd75b06",
"metadata": null,
"network": "testnet",
"note": "Deposit of 1 USDC to gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 9.2 USDC | Network Fee: 2.99004e-13 USDC | Gasless: false",
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "NHMSwR1etv",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": "0x5425890298aed601595a70AB815c96711a31Bc65",
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-17T02:40:31.793Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xbd3da265118ef20c2ddcc4c81753bd0be18460c52091a54ab4df38820d9c8a95",
"blockNumber": 29804083,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": 6,
"confirmed": true,
"createdAt": "2025-08-17T02:33:39.424Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000000162345722703",
"gasPrice": "1200063",
"gasUsed": "135281",
"hash": "0x4528d4d230df36aa9b100f7f902ecab266adbc87c8490748e6b8e234c1b293b6",
"id": "38e5be52-5ffc-40f8-8b9e-85669faaa11d",
"metadata": null,
"network": "testnet",
"note": "Withdrawal of 1 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 6.749202 USDC | Network Fee: 0.01 USDC | Gasless: false",
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "8TWf2C2TjR",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-17T02:34:26.238Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xdfb3335d4e3cc72797d9e9e5735c713298ed2a452c323cb7dd68fa1bd0bc0617",
"blockNumber": 29802947,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": 7,
"confirmed": true,
"createdAt": "2025-08-17T01:54:19.418Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000000161706089124",
"gasPrice": "1200063",
"gasUsed": "134748",
"hash": "0xdf8218b5e8a49ac6964c3b09018a138e2d184b0ad80241ce49033d9c6035366b",
"id": "8265a6d8-dd75-4368-ac10-bf48d45cd7c9",
"metadata": null,
"network": "testnet",
"note": "Withdrawal of 1 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 9.749252 USDC | Network Fee: 2.005999 USDC | Gasless: false",
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "UTe94qImNP",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-17T01:56:36.900Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-17T01:52:04.385Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "7ec622fd-516f-472b-84f1-c83e7f453a2d",
"metadata": null,
"network": "testnet",
"note": "Withdrawal of 1 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 9.749252 USDC | Network Fee: 2.005999 USDC | Gasless: false",
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "VHCKeOh728",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-17T01:52:04.385Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-17T01:48:37.989Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "c5e9ec3c-c7b1-4d84-a76e-056b8246f461",
"metadata": null,
"network": "testnet",
"note": "Withdrawal of 1 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 9.749252 USDC | Network Fee: 2.005999 USDC | Gasless: false",
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "tcApNlezq",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-17T01:48:37.989Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-17T01:42:24.396Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "da15d71c-e889-4660-905e-338a22bf2886",
"metadata": null,
"network": "testnet",
"note": "Withdrawal of 1 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 9.749252 USDC | Network Fee: 2.005999 USDC | Gasless: false",
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "wvYmcgQB",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-17T01:42:24.396Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-17T01:39:37.859Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "57771fc6-529b-4ea4-9ea9-9d9d795c641d",
"metadata": null,
"network": "testnet",
"note": "Withdrawal of 1 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"rate": null,
"rateUSD": "1",
"reason": "Balance Before: 9.749252 USDC | Network Fee: 2.005999 USDC | Gasless: false",
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "gnHZXDdBT",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-17T01:39:37.859Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "3",
"amountPaid": "3",
"amountUSD": "3",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": true,
"createdAt": "2025-08-16T18:02:21.864Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000296542513245565",
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "72c9f77c-f432-407b-86d5-74b4c9d586ae",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "cuMPXXKkVG",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-16T18:02:21.864Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "2",
"amountPaid": "2",
"amountUSD": "2",
"asset": {
"address": "0x5425890298aed601595a70AB815c96711a31Bc65",
"createdAt": "2025-06-13T22:38:16.058Z",
"currency": "USD",
"decimals": 6,
"id": "e097a26e-0df5-4610-95d3-95f6cd1aa5c6",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-06-13T22:38:16.058Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x5d1eef7435ac4fe41f4358fc06528e7306ccc798792528bdb73abb753cf3ae10",
"blockNumber": 44809016,
"blockchain": {
"createdAt": "2025-06-13T22:30:37.053Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "359c81bc-04ac-47a3-be96-775a7d7cae05",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "avalanche",
"slug": "avalanche",
"symbol": "avax",
"tokenStandard": null,
"updatedAt": "2025-06-13T22:30:37.053Z"
},
"chainId": 43113,
"confirmations": 5,
"confirmed": true,
"createdAt": "2025-08-16T03:42:58.696Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000110812500073875",
"gasPrice": "1500000001",
"gasUsed": "73875",
"hash": "0x79023f3e81ad8a03009a8c7fb39175567b36ec69c9c353a44f56baab0ec4d58d",
"id": "adc4f418-095b-465c-9fdd-d35c2e8b8c77",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "qOGLU8zyB5",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-16T03:42:58.696Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T17:53:33.682Z",
"currency": "USD",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"isNative": false,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:19.921Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xbba7261bbaa12bf3b564d0d781778f0a55963ed2817307c95cd4f251d38d5845",
"blockNumber": 8992340,
"blockchain": {
"createdAt": "2024-05-14T17:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-11-26T20:04:13.936Z"
},
"chainId": 11155111,
"confirmations": 1,
"confirmed": true,
"createdAt": "2025-08-16T03:40:49.583Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.00011226915823725",
"gasPrice": "1519717878",
"gasUsed": "73875",
"hash": "0x27345b965399ec525c8db89f1ecb874b7a496aa0ea693eb72eb5f65dec172875",
"id": "b73a8d07-e3cf-40cd-90e0-3bfa700bdc14",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "aC5uTGPc5",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-16T03:40:49.583Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T17:53:33.682Z",
"currency": "USD",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"isNative": false,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:19.921Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xd58cb1ee47b9bb95e9550a2a4a24184d4009314a821fb0904e619deb692ce20b",
"blockNumber": 8992283,
"blockchain": {
"createdAt": "2024-05-14T17:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-11-26T20:04:13.936Z"
},
"chainId": 11155111,
"confirmations": 1,
"confirmed": true,
"createdAt": "2025-08-16T03:29:28.399Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000112927639725375",
"gasPrice": "1528631333",
"gasUsed": "73875",
"hash": "0x4dd507b1affa36077d52abd966118d30364e00e5e00d31f1d75ed9223fdc6c3c",
"id": "e7095965-a795-4589-b68c-906db95a1d00",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "GMxpryzRRG",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-16T03:29:28.399Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T17:53:33.682Z",
"currency": "USD",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"isNative": false,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:19.921Z"
},
"assetSwept": true,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0xee22199b99736ec449b3771c5b1f328b30b9b91222680904ef125d9ab8a4d668",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-14T17:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-11-26T20:04:13.936Z"
},
"chainId": null,
"confirmations": null,
"confirmed": true,
"createdAt": "2025-08-10T00:42:59.543Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000202104007006272",
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "cd8deb1e-6315-425f-b00b-249da7a5268d",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "MpvBz8M3ak",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": "1",
"toCurrency": "USD",
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-10T00:42:59.543Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T17:53:33.682Z",
"currency": "USD",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"isNative": false,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:19.921Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xeebbecb669f3295ed6a1d057f9cb75d9e237afece64400c932757f827c4184d5",
"blockNumber": 8948620,
"blockchain": {
"createdAt": "2024-05-14T17:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-11-26T20:04:13.936Z"
},
"chainId": 11155111,
"confirmations": 1,
"confirmed": true,
"createdAt": "2025-08-10T00:42:27.509Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000110813092403625",
"gasPrice": "1500008019",
"gasUsed": "73875",
"hash": "0x4bbab88fdb0956cf5303c4ca27dfa68d33899548f3e4007bbb966bbff71ba946",
"id": "af1c249f-cb7e-4279-bcfb-027744219fc0",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "6dLHbDXpC",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-10T00:42:27.509Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "0.1",
"amountPaid": "0.1",
"amountUSD": "0.1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": true,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0xc5ec4bb0905c029bf555c0d098adde8044498bac9183bef878aa3c17f1d974c4",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": true,
"createdAt": "2025-08-09T23:51:01.185Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.00019914000013276",
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "72506338-5d11-43d3-bc0e-3c48e4e79bbd",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "ndiLGmz0q",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": "0.1",
"toCurrency": "USD",
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-09T23:51:01.185Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "0.1",
"amountPaid": "0.1",
"amountUSD": "0.1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x6645099a558121906a85c06a41f5d3f03cf72c58c57cbb6092df00a9de0c799a",
"blockNumber": 29496755,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": 2,
"confirmed": true,
"createdAt": "2025-08-09T23:50:00.636Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000110812503915375",
"gasPrice": "1500000053",
"gasUsed": "73875",
"hash": "0xdf0579e8458b5cfb82c317049f399304c8591d09567121751196e6eefb723699",
"id": "4d63829f-7a3d-4823-a9fc-c43c34a56cdd",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "koTOF4bCgJ",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-09T23:50:00.636Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": true,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0xfe1654ae615918509e8a3ccab68c6868271abb39d366da882a36fe7e34d00cc2",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": true,
"createdAt": "2025-08-09T02:32:19.565Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.00019914000013276",
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "157c737e-263c-4dee-862e-4dcdc69ef20b",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "XCiZpJgXaa",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": "1",
"toCurrency": "USD",
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-09T02:32:19.565Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": true,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0xb3e54c6ce56ac4450a6efbb709294d612decd929ae4447c3619558d45fcc5fc1",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": true,
"createdAt": "2025-08-09T02:32:01.750Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000199122687501892",
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "7bf6a528-cc03-4ec8-88d6-4d44ab85ea22",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "LTnc6ZsPu2",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": "1",
"toCurrency": "USD",
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-09T02:32:01.750Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "0.1",
"amountPaid": "0.1",
"amountUSD": "0.1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xd45e2287406deff51d22e25547a5ee462c3b6229c560722d8130734923b1559a",
"blockNumber": 29458390,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": 2,
"confirmed": true,
"createdAt": "2025-08-09T02:31:10.808Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000110812503915375",
"gasPrice": "1500000053",
"gasUsed": "73875",
"hash": "0xbb15e8cd21e4c19c01e2903df3631ae93a84935beaa5fa56d91ca7022caa9cec",
"id": "cbd71fd3-9316-49d4-b639-cc1e1dd03d8e",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "6z5mx0No",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-09T02:31:10.808Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": true,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0xcd8bc902df1261bb48e21ee7fe0d07884f9c5bfc2c352dafe32379c0f0eb4955",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": true,
"createdAt": "2025-08-09T01:40:35.032Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000202158000134772",
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "59d637b1-9b40-4135-8faa-aa1044e35943",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x17C07a3F1e95A3919d6Bf8B3244A6f0e2bB2568A",
"reference": "uVAdq1yPO0",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": "1",
"toCurrency": "USD",
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-09T01:40:35.032Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "0.5",
"amountPaid": "0.5",
"amountUSD": "0.5",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x5c07e039a26d05e6d0de660012ff054070daa3d347789a18fc465ced1e46cf6f",
"blockNumber": 29456779,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": 2,
"confirmed": true,
"createdAt": "2025-08-09T01:37:28.906Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.0001108125038415",
"gasPrice": "1500000052",
"gasUsed": "73875",
"hash": "0x4aa741d3dacac3cb455a41449108cba89d889a99f9f83ef3b32dfd1bbae46138",
"id": "fbdf1ac9-b77e-4ee7-b964-8a51409ec615",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "7vSK2sptPL",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-09T01:37:28.906Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "5",
"amountPaid": "5",
"amountUSD": "5",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T17:53:33.682Z",
"currency": "USD",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"isNative": false,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:19.921Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0x7cc2eb95d578fd5894378620b70388426f28dd8d2e227a7eba18bf6b28e3be8b",
"blockNumber": 8941040,
"blockchain": {
"createdAt": "2024-05-14T17:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-11-26T20:04:13.936Z"
},
"chainId": 11155111,
"confirmations": 1,
"confirmed": true,
"createdAt": "2025-08-08T23:19:04.341Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000110826595571625",
"gasPrice": "1500190803",
"gasUsed": "73875",
"hash": "0x65a298ab51eaf47c0498a5b2d7e9d5225957f2f14b13a91791314a403e72c9df",
"id": "a558c578-9350-4bde-b877-165e4c424d39",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "gl5KVDG43t",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-08T23:19:04.341Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238",
"createdAt": "2024-05-14T17:53:33.682Z",
"currency": "USD",
"decimals": 6,
"id": "fe04a28c-c615-4e41-8eda-f84c862864f5",
"isActive": true,
"isNative": false,
"name": "USDC Coin",
"network": "testnet",
"standard": "ERC20",
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:19.921Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xe6428714c993cf691d2420b64c2f71c54d5349158324e371c346db43796a1f7d",
"blockNumber": 8941012,
"blockchain": {
"createdAt": "2024-05-14T17:53:33.095Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "ethereum",
"slug": "ethereum",
"symbol": "eth",
"tokenStandard": "ERC20",
"updatedAt": "2024-11-26T20:04:13.936Z"
},
"chainId": 11155111,
"confirmations": 1,
"confirmed": true,
"createdAt": "2025-08-08T23:13:33.053Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.0001364843561979",
"gasPrice": "1500240244",
"gasUsed": "90975",
"hash": "0xfb3e76fbc40fe6999f2aad23c211285344cb8e24c5982a1b67bf0620f13aa4d0",
"id": "76ba297b-1a05-4252-b8ce-6fc39a8e312c",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "0hXI0NDiom",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-08T23:13:33.053Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": "0xee10ed3b498e130d040567e2658e6898913bb05605ca61acffe1e28168e7d80a",
"blockNumber": 29452334,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": 84532,
"confirmations": 2,
"confirmed": true,
"createdAt": "2025-08-08T23:09:19.155Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.00011081250458025",
"gasPrice": "1500000062",
"gasUsed": "73875",
"hash": "0xdf376b2131b207cae01361a6d3ccbf1337d2783694abe7965f540ed841e40679",
"id": "e86bf69e-3691-4ed0-8630-6f00311e8f14",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "Y4wAzTA7W",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-08T23:09:19.155Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": true,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0x308bd9fff7dba8ba91c5e09706be49b5388a07b085daccce3feec3c7c12446cf",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": true,
"createdAt": "2025-08-08T23:07:53.222Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.000199921508263422",
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "1f2a155d-c19f-408e-8e74-8826f41d3975",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "oExQ5w0lCv",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": "1",
"toCurrency": "USD",
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-08T23:07:53.222Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": true,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0x09239d944c28cbf4835077e4935855e4697122b682d442033af233ccbf57fc75",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-08T22:52:39.016Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": "0.00019918235339712",
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "ebb35430-8b01-4ed6-8191-8e0ffacfcc5a",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "r2DcVYzZ1m",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": "1",
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-08T22:52:39.016Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x5425890298aed601595a70AB815c96711a31Bc65",
"createdAt": "2025-06-13T22:38:16.058Z",
"currency": "USD",
"decimals": 6,
"id": "e097a26e-0df5-4610-95d3-95f6cd1aa5c6",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-06-13T22:38:16.058Z"
},
"assetSwept": true,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0xe55c4ab9189b73936f47eb1523981fa7b2cb9645b3d5215d17c9d9f0a693ff03",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2025-06-13T22:30:37.053Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "359c81bc-04ac-47a3-be96-775a7d7cae05",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "avalanche",
"slug": "avalanche",
"symbol": "avax",
"tokenStandard": null,
"updatedAt": "2025-06-13T22:30:37.053Z"
},
"chainId": null,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-08T22:40:36.796Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": null,
"id": "d4c7ca22-17a1-41d5-bafd-14e6477162af",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "y22kCr1VQm",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-08T22:40:36.796Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "2",
"amountPaid": "2",
"amountUSD": "2",
"asset": {
"address": "0x5425890298aed601595a70AB815c96711a31Bc65",
"createdAt": "2025-06-13T22:38:16.058Z",
"currency": "USD",
"decimals": 6,
"id": "e097a26e-0df5-4610-95d3-95f6cd1aa5c6",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-06-13T22:38:16.058Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2025-06-13T22:30:37.053Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "359c81bc-04ac-47a3-be96-775a7d7cae05",
"isActive": true,
"isEvmCompatible": true,
"isL2": false,
"name": "avalanche",
"slug": "avalanche",
"symbol": "avax",
"tokenStandard": null,
"updatedAt": "2025-06-13T22:30:37.053Z"
},
"chainId": null,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-08T22:37:37.034Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": "0x857c10e3b8a44cb35c1baa1579efe8268c33188bd92e578792ff43edc775b4fb",
"id": "26419934-cb70-46c6-9b53-8b061188de8c",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9",
"reference": "Y1tpZTiQsk",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_DEPOSIT",
"updatedAt": "2025-08-08T22:37:37.034Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0xbde87084a082f1484f0c2e1d423f05147915200e8be8223ec1d071c74bb6306b",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-08T22:27:50.074Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": "0xbde87084a082f1484f0c2e1d423f05147915200e8be8223ec1d071c74bb6306b",
"id": "9f1349a1-b4ad-4df9-98c0-3dee3b556137",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "KnRuMQd1dH",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-08T22:27:50.074Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0x079e1ae1aec68d6fbcbbb42db778509cdcdd72f0f691345a3ac91c8a252b962b",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-08T22:24:23.019Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": "0x079e1ae1aec68d6fbcbbb42db778509cdcdd72f0f691345a3ac91c8a252b962b",
"id": "6e603302-51ea-42bf-b1e3-0802556dc96e",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "CPqKQxAcx",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-08T22:24:23.019Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0x5146e9e71dcc94a53c2b8f4606eaa8fb66754634a6948bcb5adfd921ffdf5df0",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-08T22:21:45.102Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": "0x5146e9e71dcc94a53c2b8f4606eaa8fb66754634a6948bcb5adfd921ffdf5df0",
"id": "848c1c61-a9dc-49ca-83fd-6fd3edf13345",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "QTJ504nd9F",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-08T22:21:45.102Z"
},
{
"amlScreening": {
"message": "Address is not sanctioned",
"provider": "ofac, fbi, tether, circle",
"status": "success"
},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": "0x20a5e3456769d2a93e8f4ab0f32519e4c7a75d4c84c80ccd5ab3c998b60f3bea",
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-08T22:14:52.873Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": "0x20a5e3456769d2a93e8f4ab0f32519e4c7a75d4c84c80ccd5ab3c998b60f3bea",
"id": "620dbbb9-a218-4873-b840-ba1508cd89a5",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"reference": "oRHgwcbasV",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-08T22:14:52.873Z"
},
{
"amlScreening": {},
"amount": "1",
"amountPaid": "1",
"amountUSD": "1",
"asset": {
"address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"createdAt": "2024-05-27T14:31:19.442Z",
"currency": "USD",
"decimals": 6,
"id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84",
"isActive": true,
"isNative": false,
"name": "USD Coin",
"network": "testnet",
"standard": null,
"symbol": "USDC",
"updatedAt": "2025-04-17T04:50:20.019Z"
},
"assetSwept": null,
"assetSweptAmount": null,
"assetSweptAt": null,
"assetSweptGasFee": null,
"assetSweptHash": null,
"assetSweptRecipientAddress": null,
"assetSweptSenderAddress": null,
"blockHash": null,
"blockNumber": null,
"blockchain": {
"createdAt": "2024-05-27T14:31:14.966Z",
"derivationPath": "m/44'/60'/0'/0",
"id": "74733889-4ecd-403e-9840-94e87c043f24",
"isActive": true,
"isEvmCompatible": true,
"isL2": true,
"name": "base",
"slug": "base",
"symbol": "eth",
"tokenStandard": null,
"updatedAt": "2024-11-26T20:04:13.945Z"
},
"chainId": null,
"confirmations": null,
"confirmed": false,
"createdAt": "2025-08-08T22:06:39.677Z",
"currency": "USD",
"fee": null,
"feeHash": null,
"gasFee": null,
"gasPrice": null,
"gasUsed": null,
"hash": "0xeb2c4ee28c2d92ce76dfcf254286dc68ceb32384fe8647d434525457c135ba24",
"id": "49c9b4d8-690d-4a26-8901-6e9149dd1328",
"metadata": null,
"network": "testnet",
"note": null,
"rate": null,
"rateUSD": "1",
"reason": null,
"recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22",
"reference": "d4-MoXe8I",
"senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a",
"signedTransaction": null,
"status": "SUCCESS",
"toAmount": null,
"toCurrency": null,
"tokenAddress": null,
"type": "GATEWAY_WITHDRAW",
"updatedAt": "2025-08-08T22:06:39.677Z"
}
],
"message": "Transactions fetched successfully",
"statusCode": 200
}Authorizations
Response
200 - application/json
200
Show child attributes
Show child attributes
Example:
[ { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "6", "amountPaid": "6", "amountUSD": "6", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": "0xcce00525f3c682b406ca5d2f1dff94c399d779c7784ac6e5209f9b0a29793f62", "blockNumber": 29804987, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": 84532, "confirmations": 6, "confirmed": true, "createdAt": "2025-08-17T03:04:16.901Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.000000236577822556", "gasPrice": "1200062", "gasUsed": "197138", "hash": "0xadd04cd5dcca2a43b65f81a68038c5357ad6c61cfe250319ea9a7a29d4a59732", "id": "9908b8d9-a36b-441a-911c-4b374dda12bb", "metadata": null, "network": "testnet", "note": "Withdrawal of 6 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "rate": null, "rateUSD": "1", "reason": "Balance Before: 8.709136 USDC | Network Fee: 2.022299 USDC | Gasless: false", "recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22", "reference": "mkYm5tkjdY", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-17T03:04:33.822Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "5", "amountPaid": "5", "amountUSD": "5", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": "0xfdf4bed4203586d0c15af8ab6a52219f6258c2f794edc8b5d2115ddffe654f06", "blockNumber": 29804652, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": 84532, "confirmations": 6, "confirmed": true, "createdAt": "2025-08-17T02:53:06.899Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.00000008865458025", "gasPrice": "1200062", "gasUsed": "73875", "hash": "0x6f368af66e136597736d783a223a045eda92e789b85e746ea943e797df435902", "id": "fc7665db-551b-45c0-8acf-98528896a346", "metadata": null, "network": "testnet", "note": "Deposit of 5 USDC to gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "rate": null, "rateUSD": "1", "reason": "Balance Before: 10.2 USDC | Network Fee: 2.15293522924e-7 USDC | Gasless: false", "recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "reference": "lh66wgvMb8", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "type": "GATEWAY_DEPOSIT", "updatedAt": "2025-08-17T02:53:22.849Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "3", "amountPaid": "3", "amountUSD": "3", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": "0xad11b1e6cd5029cdca0155e49ff1fb95459c3e0faf07a4ffca2f7da547d40faf", "blockNumber": 29804568, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": 84532, "confirmations": 6, "confirmed": true, "createdAt": "2025-08-17T02:50:16.304Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.00000023724625709", "gasPrice": "1200062", "gasUsed": "197695", "hash": "0x1cb746ab3efee196a10e191f6d2decc682b4dbb37b28b3a782652d79d475c300", "id": "c023f959-1340-4621-8658-7cdb0aeb6b6d", "metadata": null, "network": "testnet", "note": "Withdrawal of 3 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "rate": null, "rateUSD": "1", "reason": "Balance Before: 11.739202 USDC | Network Fee: 0.031065 USDC | Gasless: false", "recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22", "reference": "VwmTCcuWk", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-17T02:50:35.997Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "5", "amountPaid": "5", "amountUSD": "5", "asset": { "address": "0x5425890298aed601595a70AB815c96711a31Bc65", "createdAt": "2025-06-13T22:38:16.058Z", "currency": "USD", "decimals": 6, "id": "e097a26e-0df5-4610-95d3-95f6cd1aa5c6", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-06-13T22:38:16.058Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": "0x4fc994c63ef06bbaf4a157aba4e86dab6f83344cad3b8bf1812b50d6e775c0be", "blockNumber": 44850047, "blockchain": { "createdAt": "2025-06-13T22:30:37.053Z", "derivationPath": "m/44'/60'/0'/0", "id": "359c81bc-04ac-47a3-be96-775a7d7cae05", "isActive": true, "isEvmCompatible": true, "isL2": false, "name": "avalanche", "slug": "avalanche", "symbol": "avax", "tokenStandard": null, "updatedAt": "2025-06-13T22:30:37.053Z" }, "chainId": 43113, "confirmations": 6, "confirmed": true, "createdAt": "2025-08-17T02:45:32.188Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.00000000000014775", "gasPrice": "2", "gasUsed": "73875", "hash": "0x9dedb492e2efe226be21943d4a096d59a4a977e925a5bd807793244d97d5daec", "id": "6f3836f2-3d00-40aa-a85b-e34e989b4c82", "metadata": null, "network": "testnet", "note": "Deposit of 5 USDC to gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "rate": null, "rateUSD": "1", "reason": "Balance Before: 8.2 USDC | Network Fee: 2.99004e-13 USDC | Gasless: false", "recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "reference": "IsrFHR26J", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": "0x5425890298aed601595a70AB815c96711a31Bc65", "type": "GATEWAY_DEPOSIT", "updatedAt": "2025-08-17T02:45:47.946Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x5425890298aed601595a70AB815c96711a31Bc65", "createdAt": "2025-06-13T22:38:16.058Z", "currency": "USD", "decimals": 6, "id": "e097a26e-0df5-4610-95d3-95f6cd1aa5c6", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-06-13T22:38:16.058Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": "0x8d48aff78e4543e8807a5139e145e90d6ba546f950a5b6c96c109796e4451644", "blockNumber": 44849896, "blockchain": { "createdAt": "2025-06-13T22:30:37.053Z", "derivationPath": "m/44'/60'/0'/0", "id": "359c81bc-04ac-47a3-be96-775a7d7cae05", "isActive": true, "isEvmCompatible": true, "isL2": false, "name": "avalanche", "slug": "avalanche", "symbol": "avax", "tokenStandard": null, "updatedAt": "2025-06-13T22:30:37.053Z" }, "chainId": 43113, "confirmations": 7, "confirmed": true, "createdAt": "2025-08-17T02:40:15.542Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.00000000000014775", "gasPrice": "2", "gasUsed": "73875", "hash": "0x880dec6068c91ceae5ca14abaedfe061d00207969d62923fec76e5afe850f54c", "id": "4094cb92-b169-4a1d-86df-a5e36fd75b06", "metadata": null, "network": "testnet", "note": "Deposit of 1 USDC to gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "rate": null, "rateUSD": "1", "reason": "Balance Before: 9.2 USDC | Network Fee: 2.99004e-13 USDC | Gasless: false", "recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "reference": "NHMSwR1etv", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": "0x5425890298aed601595a70AB815c96711a31Bc65", "type": "GATEWAY_DEPOSIT", "updatedAt": "2025-08-17T02:40:31.793Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": "0xbd3da265118ef20c2ddcc4c81753bd0be18460c52091a54ab4df38820d9c8a95", "blockNumber": 29804083, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": 84532, "confirmations": 6, "confirmed": true, "createdAt": "2025-08-17T02:33:39.424Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.000000162345722703", "gasPrice": "1200063", "gasUsed": "135281", "hash": "0x4528d4d230df36aa9b100f7f902ecab266adbc87c8490748e6b8e234c1b293b6", "id": "38e5be52-5ffc-40f8-8b9e-85669faaa11d", "metadata": null, "network": "testnet", "note": "Withdrawal of 1 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "rate": null, "rateUSD": "1", "reason": "Balance Before: 6.749202 USDC | Network Fee: 0.01 USDC | Gasless: false", "recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22", "reference": "8TWf2C2TjR", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-17T02:34:26.238Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": "0xdfb3335d4e3cc72797d9e9e5735c713298ed2a452c323cb7dd68fa1bd0bc0617", "blockNumber": 29802947, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": 84532, "confirmations": 7, "confirmed": true, "createdAt": "2025-08-17T01:54:19.418Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.000000161706089124", "gasPrice": "1200063", "gasUsed": "134748", "hash": "0xdf8218b5e8a49ac6964c3b09018a138e2d184b0ad80241ce49033d9c6035366b", "id": "8265a6d8-dd75-4368-ac10-bf48d45cd7c9", "metadata": null, "network": "testnet", "note": "Withdrawal of 1 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "rate": null, "rateUSD": "1", "reason": "Balance Before: 9.749252 USDC | Network Fee: 2.005999 USDC | Gasless: false", "recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22", "reference": "UTe94qImNP", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-17T01:56:36.900Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": 84532, "confirmations": null, "confirmed": false, "createdAt": "2025-08-17T01:52:04.385Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": null, "gasPrice": null, "gasUsed": null, "hash": null, "id": "7ec622fd-516f-472b-84f1-c83e7f453a2d", "metadata": null, "network": "testnet", "note": "Withdrawal of 1 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "rate": null, "rateUSD": "1", "reason": "Balance Before: 9.749252 USDC | Network Fee: 2.005999 USDC | Gasless: false", "recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22", "reference": "VHCKeOh728", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-17T01:52:04.385Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": 84532, "confirmations": null, "confirmed": false, "createdAt": "2025-08-17T01:48:37.989Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": null, "gasPrice": null, "gasUsed": null, "hash": null, "id": "c5e9ec3c-c7b1-4d84-a76e-056b8246f461", "metadata": null, "network": "testnet", "note": "Withdrawal of 1 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "rate": null, "rateUSD": "1", "reason": "Balance Before: 9.749252 USDC | Network Fee: 2.005999 USDC | Gasless: false", "recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22", "reference": "tcApNlezq", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-17T01:48:37.989Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": 84532, "confirmations": null, "confirmed": false, "createdAt": "2025-08-17T01:42:24.396Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": null, "gasPrice": null, "gasUsed": null, "hash": null, "id": "da15d71c-e889-4660-905e-338a22bf2886", "metadata": null, "network": "testnet", "note": "Withdrawal of 1 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "rate": null, "rateUSD": "1", "reason": "Balance Before: 9.749252 USDC | Network Fee: 2.005999 USDC | Gasless: false", "recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22", "reference": "wvYmcgQB", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-17T01:42:24.396Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": 84532, "confirmations": null, "confirmed": false, "createdAt": "2025-08-17T01:39:37.859Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": null, "gasPrice": null, "gasUsed": null, "hash": null, "id": "57771fc6-529b-4ea4-9ea9-9d9d795c641d", "metadata": null, "network": "testnet", "note": "Withdrawal of 1 USDC from gateway smart wallet 0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "rate": null, "rateUSD": "1", "reason": "Balance Before: 9.749252 USDC | Network Fee: 2.005999 USDC | Gasless: false", "recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22", "reference": "gnHZXDdBT", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-17T01:39:37.859Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "3", "amountPaid": "3", "amountUSD": "3", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": null, "confirmations": null, "confirmed": true, "createdAt": "2025-08-16T18:02:21.864Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.000296542513245565", "gasPrice": null, "gasUsed": null, "hash": null, "id": "72c9f77c-f432-407b-86d5-74b4c9d586ae", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22", "reference": "cuMPXXKkVG", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-16T18:02:21.864Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "2", "amountPaid": "2", "amountUSD": "2", "asset": { "address": "0x5425890298aed601595a70AB815c96711a31Bc65", "createdAt": "2025-06-13T22:38:16.058Z", "currency": "USD", "decimals": 6, "id": "e097a26e-0df5-4610-95d3-95f6cd1aa5c6", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-06-13T22:38:16.058Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": "0x5d1eef7435ac4fe41f4358fc06528e7306ccc798792528bdb73abb753cf3ae10", "blockNumber": 44809016, "blockchain": { "createdAt": "2025-06-13T22:30:37.053Z", "derivationPath": "m/44'/60'/0'/0", "id": "359c81bc-04ac-47a3-be96-775a7d7cae05", "isActive": true, "isEvmCompatible": true, "isL2": false, "name": "avalanche", "slug": "avalanche", "symbol": "avax", "tokenStandard": null, "updatedAt": "2025-06-13T22:30:37.053Z" }, "chainId": 43113, "confirmations": 5, "confirmed": true, "createdAt": "2025-08-16T03:42:58.696Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.000110812500073875", "gasPrice": "1500000001", "gasUsed": "73875", "hash": "0x79023f3e81ad8a03009a8c7fb39175567b36ec69c9c353a44f56baab0ec4d58d", "id": "adc4f418-095b-465c-9fdd-d35c2e8b8c77", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "reference": "qOGLU8zyB5", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_DEPOSIT", "updatedAt": "2025-08-16T03:42:58.696Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238", "createdAt": "2024-05-14T17:53:33.682Z", "currency": "USD", "decimals": 6, "id": "fe04a28c-c615-4e41-8eda-f84c862864f5", "isActive": true, "isNative": false, "name": "USDC Coin", "network": "testnet", "standard": "ERC20", "symbol": "USDC", "updatedAt": "2025-04-17T04:50:19.921Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": "0xbba7261bbaa12bf3b564d0d781778f0a55963ed2817307c95cd4f251d38d5845", "blockNumber": 8992340, "blockchain": { "createdAt": "2024-05-14T17:53:33.095Z", "derivationPath": "m/44'/60'/0'/0", "id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf", "isActive": true, "isEvmCompatible": true, "isL2": false, "name": "ethereum", "slug": "ethereum", "symbol": "eth", "tokenStandard": "ERC20", "updatedAt": "2024-11-26T20:04:13.936Z" }, "chainId": 11155111, "confirmations": 1, "confirmed": true, "createdAt": "2025-08-16T03:40:49.583Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.00011226915823725", "gasPrice": "1519717878", "gasUsed": "73875", "hash": "0x27345b965399ec525c8db89f1ecb874b7a496aa0ea693eb72eb5f65dec172875", "id": "b73a8d07-e3cf-40cd-90e0-3bfa700bdc14", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "reference": "aC5uTGPc5", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_DEPOSIT", "updatedAt": "2025-08-16T03:40:49.583Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238", "createdAt": "2024-05-14T17:53:33.682Z", "currency": "USD", "decimals": 6, "id": "fe04a28c-c615-4e41-8eda-f84c862864f5", "isActive": true, "isNative": false, "name": "USDC Coin", "network": "testnet", "standard": "ERC20", "symbol": "USDC", "updatedAt": "2025-04-17T04:50:19.921Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": "0xd58cb1ee47b9bb95e9550a2a4a24184d4009314a821fb0904e619deb692ce20b", "blockNumber": 8992283, "blockchain": { "createdAt": "2024-05-14T17:53:33.095Z", "derivationPath": "m/44'/60'/0'/0", "id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf", "isActive": true, "isEvmCompatible": true, "isL2": false, "name": "ethereum", "slug": "ethereum", "symbol": "eth", "tokenStandard": "ERC20", "updatedAt": "2024-11-26T20:04:13.936Z" }, "chainId": 11155111, "confirmations": 1, "confirmed": true, "createdAt": "2025-08-16T03:29:28.399Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.000112927639725375", "gasPrice": "1528631333", "gasUsed": "73875", "hash": "0x4dd507b1affa36077d52abd966118d30364e00e5e00d31f1d75ed9223fdc6c3c", "id": "e7095965-a795-4589-b68c-906db95a1d00", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "reference": "GMxpryzRRG", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_DEPOSIT", "updatedAt": "2025-08-16T03:29:28.399Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238", "createdAt": "2024-05-14T17:53:33.682Z", "currency": "USD", "decimals": 6, "id": "fe04a28c-c615-4e41-8eda-f84c862864f5", "isActive": true, "isNative": false, "name": "USDC Coin", "network": "testnet", "standard": "ERC20", "symbol": "USDC", "updatedAt": "2025-04-17T04:50:19.921Z" }, "assetSwept": true, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": "0xee22199b99736ec449b3771c5b1f328b30b9b91222680904ef125d9ab8a4d668", "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2024-05-14T17:53:33.095Z", "derivationPath": "m/44'/60'/0'/0", "id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf", "isActive": true, "isEvmCompatible": true, "isL2": false, "name": "ethereum", "slug": "ethereum", "symbol": "eth", "tokenStandard": "ERC20", "updatedAt": "2024-11-26T20:04:13.936Z" }, "chainId": null, "confirmations": null, "confirmed": true, "createdAt": "2025-08-10T00:42:59.543Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.000202104007006272", "gasPrice": null, "gasUsed": null, "hash": null, "id": "cd8deb1e-6315-425f-b00b-249da7a5268d", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22", "reference": "MpvBz8M3ak", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": "1", "toCurrency": "USD", "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-10T00:42:59.543Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238", "createdAt": "2024-05-14T17:53:33.682Z", "currency": "USD", "decimals": 6, "id": "fe04a28c-c615-4e41-8eda-f84c862864f5", "isActive": true, "isNative": false, "name": "USDC Coin", "network": "testnet", "standard": "ERC20", "symbol": "USDC", "updatedAt": "2025-04-17T04:50:19.921Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": "0xeebbecb669f3295ed6a1d057f9cb75d9e237afece64400c932757f827c4184d5", "blockNumber": 8948620, "blockchain": { "createdAt": "2024-05-14T17:53:33.095Z", "derivationPath": "m/44'/60'/0'/0", "id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf", "isActive": true, "isEvmCompatible": true, "isL2": false, "name": "ethereum", "slug": "ethereum", "symbol": "eth", "tokenStandard": "ERC20", "updatedAt": "2024-11-26T20:04:13.936Z" }, "chainId": 11155111, "confirmations": 1, "confirmed": true, "createdAt": "2025-08-10T00:42:27.509Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.000110813092403625", "gasPrice": "1500008019", "gasUsed": "73875", "hash": "0x4bbab88fdb0956cf5303c4ca27dfa68d33899548f3e4007bbb966bbff71ba946", "id": "af1c249f-cb7e-4279-bcfb-027744219fc0", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "reference": "6dLHbDXpC", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_DEPOSIT", "updatedAt": "2025-08-10T00:42:27.509Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "0.1", "amountPaid": "0.1", "amountUSD": "0.1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": true, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": "0xc5ec4bb0905c029bf555c0d098adde8044498bac9183bef878aa3c17f1d974c4", "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": null, "confirmations": null, "confirmed": true, "createdAt": "2025-08-09T23:51:01.185Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.00019914000013276", "gasPrice": null, "gasUsed": null, "hash": null, "id": "72506338-5d11-43d3-bc0e-3c48e4e79bbd", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "reference": "ndiLGmz0q", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": "0.1", "toCurrency": "USD", "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-09T23:51:01.185Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "0.1", "amountPaid": "0.1", "amountUSD": "0.1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": "0x6645099a558121906a85c06a41f5d3f03cf72c58c57cbb6092df00a9de0c799a", "blockNumber": 29496755, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": 84532, "confirmations": 2, "confirmed": true, "createdAt": "2025-08-09T23:50:00.636Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.000110812503915375", "gasPrice": "1500000053", "gasUsed": "73875", "hash": "0xdf0579e8458b5cfb82c317049f399304c8591d09567121751196e6eefb723699", "id": "4d63829f-7a3d-4823-a9fc-c43c34a56cdd", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "reference": "koTOF4bCgJ", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_DEPOSIT", "updatedAt": "2025-08-09T23:50:00.636Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": true, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": "0xfe1654ae615918509e8a3ccab68c6868271abb39d366da882a36fe7e34d00cc2", "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": null, "confirmations": null, "confirmed": true, "createdAt": "2025-08-09T02:32:19.565Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.00019914000013276", "gasPrice": null, "gasUsed": null, "hash": null, "id": "157c737e-263c-4dee-862e-4dcdc69ef20b", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "reference": "XCiZpJgXaa", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": "1", "toCurrency": "USD", "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-09T02:32:19.565Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": true, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": "0xb3e54c6ce56ac4450a6efbb709294d612decd929ae4447c3619558d45fcc5fc1", "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": null, "confirmations": null, "confirmed": true, "createdAt": "2025-08-09T02:32:01.750Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.000199122687501892", "gasPrice": null, "gasUsed": null, "hash": null, "id": "7bf6a528-cc03-4ec8-88d6-4d44ab85ea22", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "reference": "LTnc6ZsPu2", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": "1", "toCurrency": "USD", "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-09T02:32:01.750Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "0.1", "amountPaid": "0.1", "amountUSD": "0.1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": "0xd45e2287406deff51d22e25547a5ee462c3b6229c560722d8130734923b1559a", "blockNumber": 29458390, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": 84532, "confirmations": 2, "confirmed": true, "createdAt": "2025-08-09T02:31:10.808Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.000110812503915375", "gasPrice": "1500000053", "gasUsed": "73875", "hash": "0xbb15e8cd21e4c19c01e2903df3631ae93a84935beaa5fa56d91ca7022caa9cec", "id": "cbd71fd3-9316-49d4-b639-cc1e1dd03d8e", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "reference": "6z5mx0No", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_DEPOSIT", "updatedAt": "2025-08-09T02:31:10.808Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": true, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": "0xcd8bc902df1261bb48e21ee7fe0d07884f9c5bfc2c352dafe32379c0f0eb4955", "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": null, "confirmations": null, "confirmed": true, "createdAt": "2025-08-09T01:40:35.032Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.000202158000134772", "gasPrice": null, "gasUsed": null, "hash": null, "id": "59d637b1-9b40-4135-8faa-aa1044e35943", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x17C07a3F1e95A3919d6Bf8B3244A6f0e2bB2568A", "reference": "uVAdq1yPO0", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": "1", "toCurrency": "USD", "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-09T01:40:35.032Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "0.5", "amountPaid": "0.5", "amountUSD": "0.5", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": "0x5c07e039a26d05e6d0de660012ff054070daa3d347789a18fc465ced1e46cf6f", "blockNumber": 29456779, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": 84532, "confirmations": 2, "confirmed": true, "createdAt": "2025-08-09T01:37:28.906Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.0001108125038415", "gasPrice": "1500000052", "gasUsed": "73875", "hash": "0x4aa741d3dacac3cb455a41449108cba89d889a99f9f83ef3b32dfd1bbae46138", "id": "fbdf1ac9-b77e-4ee7-b964-8a51409ec615", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "reference": "7vSK2sptPL", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_DEPOSIT", "updatedAt": "2025-08-09T01:37:28.906Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "5", "amountPaid": "5", "amountUSD": "5", "asset": { "address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238", "createdAt": "2024-05-14T17:53:33.682Z", "currency": "USD", "decimals": 6, "id": "fe04a28c-c615-4e41-8eda-f84c862864f5", "isActive": true, "isNative": false, "name": "USDC Coin", "network": "testnet", "standard": "ERC20", "symbol": "USDC", "updatedAt": "2025-04-17T04:50:19.921Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": "0x7cc2eb95d578fd5894378620b70388426f28dd8d2e227a7eba18bf6b28e3be8b", "blockNumber": 8941040, "blockchain": { "createdAt": "2024-05-14T17:53:33.095Z", "derivationPath": "m/44'/60'/0'/0", "id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf", "isActive": true, "isEvmCompatible": true, "isL2": false, "name": "ethereum", "slug": "ethereum", "symbol": "eth", "tokenStandard": "ERC20", "updatedAt": "2024-11-26T20:04:13.936Z" }, "chainId": 11155111, "confirmations": 1, "confirmed": true, "createdAt": "2025-08-08T23:19:04.341Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.000110826595571625", "gasPrice": "1500190803", "gasUsed": "73875", "hash": "0x65a298ab51eaf47c0498a5b2d7e9d5225957f2f14b13a91791314a403e72c9df", "id": "a558c578-9350-4bde-b877-165e4c424d39", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "reference": "gl5KVDG43t", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_DEPOSIT", "updatedAt": "2025-08-08T23:19:04.341Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x1c7D4B196Cb0C7B01d743Fbc6116a902379C7238", "createdAt": "2024-05-14T17:53:33.682Z", "currency": "USD", "decimals": 6, "id": "fe04a28c-c615-4e41-8eda-f84c862864f5", "isActive": true, "isNative": false, "name": "USDC Coin", "network": "testnet", "standard": "ERC20", "symbol": "USDC", "updatedAt": "2025-04-17T04:50:19.921Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": "0xe6428714c993cf691d2420b64c2f71c54d5349158324e371c346db43796a1f7d", "blockNumber": 8941012, "blockchain": { "createdAt": "2024-05-14T17:53:33.095Z", "derivationPath": "m/44'/60'/0'/0", "id": "85ffc132-3972-4c9e-99a5-5cf0ccb688bf", "isActive": true, "isEvmCompatible": true, "isL2": false, "name": "ethereum", "slug": "ethereum", "symbol": "eth", "tokenStandard": "ERC20", "updatedAt": "2024-11-26T20:04:13.936Z" }, "chainId": 11155111, "confirmations": 1, "confirmed": true, "createdAt": "2025-08-08T23:13:33.053Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.0001364843561979", "gasPrice": "1500240244", "gasUsed": "90975", "hash": "0xfb3e76fbc40fe6999f2aad23c211285344cb8e24c5982a1b67bf0620f13aa4d0", "id": "76ba297b-1a05-4252-b8ce-6fc39a8e312c", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "reference": "0hXI0NDiom", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_DEPOSIT", "updatedAt": "2025-08-08T23:13:33.053Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": "0xee10ed3b498e130d040567e2658e6898913bb05605ca61acffe1e28168e7d80a", "blockNumber": 29452334, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": 84532, "confirmations": 2, "confirmed": true, "createdAt": "2025-08-08T23:09:19.155Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.00011081250458025", "gasPrice": "1500000062", "gasUsed": "73875", "hash": "0xdf376b2131b207cae01361a6d3ccbf1337d2783694abe7965f540ed841e40679", "id": "e86bf69e-3691-4ed0-8630-6f00311e8f14", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "reference": "Y4wAzTA7W", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_DEPOSIT", "updatedAt": "2025-08-08T23:09:19.155Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": true, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": "0x308bd9fff7dba8ba91c5e09706be49b5388a07b085daccce3feec3c7c12446cf", "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": null, "confirmations": null, "confirmed": true, "createdAt": "2025-08-08T23:07:53.222Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.000199921508263422", "gasPrice": null, "gasUsed": null, "hash": null, "id": "1f2a155d-c19f-408e-8e74-8826f41d3975", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "reference": "oExQ5w0lCv", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": "1", "toCurrency": "USD", "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-08T23:07:53.222Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": true, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": "0x09239d944c28cbf4835077e4935855e4697122b682d442033af233ccbf57fc75", "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": null, "confirmations": null, "confirmed": false, "createdAt": "2025-08-08T22:52:39.016Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": "0.00019918235339712", "gasPrice": null, "gasUsed": null, "hash": null, "id": "ebb35430-8b01-4ed6-8191-8e0ffacfcc5a", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "reference": "r2DcVYzZ1m", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": "1", "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-08T22:52:39.016Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x5425890298aed601595a70AB815c96711a31Bc65", "createdAt": "2025-06-13T22:38:16.058Z", "currency": "USD", "decimals": 6, "id": "e097a26e-0df5-4610-95d3-95f6cd1aa5c6", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-06-13T22:38:16.058Z" }, "assetSwept": true, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": "0xe55c4ab9189b73936f47eb1523981fa7b2cb9645b3d5215d17c9d9f0a693ff03", "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2025-06-13T22:30:37.053Z", "derivationPath": "m/44'/60'/0'/0", "id": "359c81bc-04ac-47a3-be96-775a7d7cae05", "isActive": true, "isEvmCompatible": true, "isL2": false, "name": "avalanche", "slug": "avalanche", "symbol": "avax", "tokenStandard": null, "updatedAt": "2025-06-13T22:30:37.053Z" }, "chainId": null, "confirmations": null, "confirmed": false, "createdAt": "2025-08-08T22:40:36.796Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": null, "gasPrice": null, "gasUsed": null, "hash": null, "id": "d4c7ca22-17a1-41d5-bafd-14e6477162af", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "reference": "y22kCr1VQm", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-08T22:40:36.796Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "2", "amountPaid": "2", "amountUSD": "2", "asset": { "address": "0x5425890298aed601595a70AB815c96711a31Bc65", "createdAt": "2025-06-13T22:38:16.058Z", "currency": "USD", "decimals": 6, "id": "e097a26e-0df5-4610-95d3-95f6cd1aa5c6", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-06-13T22:38:16.058Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2025-06-13T22:30:37.053Z", "derivationPath": "m/44'/60'/0'/0", "id": "359c81bc-04ac-47a3-be96-775a7d7cae05", "isActive": true, "isEvmCompatible": true, "isL2": false, "name": "avalanche", "slug": "avalanche", "symbol": "avax", "tokenStandard": null, "updatedAt": "2025-06-13T22:30:37.053Z" }, "chainId": null, "confirmations": null, "confirmed": false, "createdAt": "2025-08-08T22:37:37.034Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": null, "gasPrice": null, "gasUsed": null, "hash": "0x857c10e3b8a44cb35c1baa1579efe8268c33188bd92e578792ff43edc775b4fb", "id": "26419934-cb70-46c6-9b53-8b061188de8c", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x0077777d7EBA4688BDeF3E311b846F25870A19B9", "reference": "Y1tpZTiQsk", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_DEPOSIT", "updatedAt": "2025-08-08T22:37:37.034Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": "0xbde87084a082f1484f0c2e1d423f05147915200e8be8223ec1d071c74bb6306b", "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": null, "confirmations": null, "confirmed": false, "createdAt": "2025-08-08T22:27:50.074Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": null, "gasPrice": null, "gasUsed": null, "hash": "0xbde87084a082f1484f0c2e1d423f05147915200e8be8223ec1d071c74bb6306b", "id": "9f1349a1-b4ad-4df9-98c0-3dee3b556137", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "reference": "KnRuMQd1dH", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-08T22:27:50.074Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": "0x079e1ae1aec68d6fbcbbb42db778509cdcdd72f0f691345a3ac91c8a252b962b", "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": null, "confirmations": null, "confirmed": false, "createdAt": "2025-08-08T22:24:23.019Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": null, "gasPrice": null, "gasUsed": null, "hash": "0x079e1ae1aec68d6fbcbbb42db778509cdcdd72f0f691345a3ac91c8a252b962b", "id": "6e603302-51ea-42bf-b1e3-0802556dc96e", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "reference": "CPqKQxAcx", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-08T22:24:23.019Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": "0x5146e9e71dcc94a53c2b8f4606eaa8fb66754634a6948bcb5adfd921ffdf5df0", "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": null, "confirmations": null, "confirmed": false, "createdAt": "2025-08-08T22:21:45.102Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": null, "gasPrice": null, "gasUsed": null, "hash": "0x5146e9e71dcc94a53c2b8f4606eaa8fb66754634a6948bcb5adfd921ffdf5df0", "id": "848c1c61-a9dc-49ca-83fd-6fd3edf13345", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "reference": "QTJ504nd9F", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-08T22:21:45.102Z" }, { "amlScreening": { "message": "Address is not sanctioned", "provider": "ofac, fbi, tether, circle", "status": "success" }, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": "0x20a5e3456769d2a93e8f4ab0f32519e4c7a75d4c84c80ccd5ab3c998b60f3bea", "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": null, "confirmations": null, "confirmed": false, "createdAt": "2025-08-08T22:14:52.873Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": null, "gasPrice": null, "gasUsed": null, "hash": "0x20a5e3456769d2a93e8f4ab0f32519e4c7a75d4c84c80ccd5ab3c998b60f3bea", "id": "620dbbb9-a218-4873-b840-ba1508cd89a5", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "reference": "oRHgwcbasV", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-08T22:14:52.873Z" }, { "amlScreening": {}, "amount": "1", "amountPaid": "1", "amountUSD": "1", "asset": { "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "createdAt": "2024-05-27T14:31:19.442Z", "currency": "USD", "decimals": 6, "id": "0927dc05-7d4e-4c0a-82c6-98ceb170ab84", "isActive": true, "isNative": false, "name": "USD Coin", "network": "testnet", "standard": null, "symbol": "USDC", "updatedAt": "2025-04-17T04:50:20.019Z" }, "assetSwept": null, "assetSweptAmount": null, "assetSweptAt": null, "assetSweptGasFee": null, "assetSweptHash": null, "assetSweptRecipientAddress": null, "assetSweptSenderAddress": null, "blockHash": null, "blockNumber": null, "blockchain": { "createdAt": "2024-05-27T14:31:14.966Z", "derivationPath": "m/44'/60'/0'/0", "id": "74733889-4ecd-403e-9840-94e87c043f24", "isActive": true, "isEvmCompatible": true, "isL2": true, "name": "base", "slug": "base", "symbol": "eth", "tokenStandard": null, "updatedAt": "2024-11-26T20:04:13.945Z" }, "chainId": null, "confirmations": null, "confirmed": false, "createdAt": "2025-08-08T22:06:39.677Z", "currency": "USD", "fee": null, "feeHash": null, "gasFee": null, "gasPrice": null, "gasUsed": null, "hash": "0xeb2c4ee28c2d92ce76dfcf254286dc68ceb32384fe8647d434525457c135ba24", "id": "49c9b4d8-690d-4a26-8901-6e9149dd1328", "metadata": null, "network": "testnet", "note": null, "rate": null, "rateUSD": "1", "reason": null, "recipientAddress": "0x2455eC6700092991Ce0782365A89d5Cd89c8Fa22", "reference": "d4-MoXe8I", "senderAddress": "0x947514e4B803e312C312da0F1B41fEDdbe15ae7a", "signedTransaction": null, "status": "SUCCESS", "toAmount": null, "toCurrency": null, "tokenAddress": null, "type": "GATEWAY_WITHDRAW", "updatedAt": "2025-08-08T22:06:39.677Z" } ]
Example:
"Transactions fetched successfully"
Example:
200
⌘I

