import { Avalanche } from "@avalanche-sdk/chainkit";
const avalanche = new Avalanche();
async function run() {
const result = await avalanche.webhooks.addresses.list({
pageSize: 10,
id: "f33de69c-d13b-4691-908f-870d6e2e6b04",
});
for await (const page of result) {
console.log(page);
}
}
run();{
"addresses": [
"<string>"
],
"totalAddresses": 123,
"nextPageToken": "<string>"
}List adresses by webhook. Only valid for EVM activity webhooks.
import { Avalanche } from "@avalanche-sdk/chainkit";
const avalanche = new Avalanche();
async function run() {
const result = await avalanche.webhooks.addresses.list({
pageSize: 10,
id: "f33de69c-d13b-4691-908f-870d6e2e6b04",
});
for await (const page of result) {
console.log(page);
}
}
run();{
"addresses": [
"<string>"
],
"totalAddresses": 123,
"nextPageToken": "<string>"
}Api keys provide higher access to rate limits. To obtain an api key, sign up for an account at https://avacloud.io/.
The webhook identifier.
A page token, received from a previous list call. Provide this to retrieve the subsequent page.
The maximum number of items to return. The minimum page size is 1. The maximum pageSize is 100.
1 <= x <= 100Was this page helpful?