const response = await fetch(
"https://autopay.shakesco.com/buss_delegate_address",
{
method: "POST",
headers: {
Authorization: `Bearer ${API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
smart_wallet: "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb4",
}),
}
);
const { test_delegate_address } = await response.json();