use alchemy_api::{
alchemy::Alchemy,
api::notify::{EmptyResponse, ReplaceWebhookAddresses},
cores::query::Query,
};
#[tokio::main]
async fn main() -> anyhow::Result<()> {
let client = Alchemy::new(&std::env::var("ALCHEMY_TOKEN")?);
// Create a simple endpoint.
let endpoint = ReplaceWebhookAddresses::builder()
.webhook_id(std::env::var("WEBHOOK_ID")?)
.build()?;
// Call the endpoint. The return type decides how to represent the value.
let resp: EmptyResponse = endpoint.query(&client).await?;
println!("replace response: {:?}", resp);
anyhow::Ok(())
}