const response = await fetch("https://autopay.shakesco.com/request_sent", {
method: "POST",
headers: {
Authorization: `Bearer ${API_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({
delegate_address: "0xB808ff0E0F4fC24D0cECeED6014f04ecE5bfca36",
auto_address: "0x309E7d835ccE6E74BC72A2E523fa7f79FFC0d413",
network: "137",
}),
});
const { requested } = await response.json();