You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Returns the event logs from an address, with optional filtering by block range.",
10
+
parameters: z.object({
11
+
address: z.string().describe("the `string` representing the address to check for logs"),
12
+
fromBlock: z.string().optional().describe("the `integer` block number to start searching for logs eg. `12878196`"),
13
+
toBlock: z.string().optional().describe("the `integer` block number to stop searching for logs eg. `12879196`"),
14
+
page: z.string().optional().describe("the `integer` page number, if pagination is enabled"),
15
+
offset: z.string().optional().describe("the number of transactions displayed per page limited to **1000 records** per query, use the `page` parameter for subsequent records")
description: "Returns the events log in a block range, filtered by topics.",
27
+
parameters: z.object({
28
+
fromBlock: z.string().describe("the `integer` block number to start searching for logs eg. `12878196`"),
29
+
toBlock: z.string().describe("the `integer` block number to stop searching for logs eg. `12879196`"),
30
+
topic0: z.string().optional().describe("the topic numbers to search for limited to`topic0`, `topic1`, `topic2`, `topic3`"),
31
+
topic1: z.string().optional().describe("the topic numbers to search for limited to`topic0`, `topic1`, `topic2`, `topic3`"),
32
+
topic2: z.string().optional().describe("the topic numbers to search for limited to`topic0`, `topic1`, `topic2`, `topic3`"),
33
+
topic3: z.string().optional().describe("the topic numbers to search for limited to`topic0`, `topic1`, `topic2`, `topic3`"),
34
+
topic0_1_opr: z.string().optional().describe("the topic operator when multiple topic combinations are used limited to `and` or `or`"),
35
+
topic1_2_opr: z.string().optional().describe("the topic operator when multiple topic combinations are used limited to `and` or `or`"),
36
+
topic2_3_opr: z.string().optional().describe("the topic operator when multiple topic combinations are used limited to `and` or `or`"),
37
+
topic0_2_opr: z.string().optional().describe("the topic operator when multiple topic combinations are used limited to `and` or `or`"),
38
+
topic0_3_opr: z.string().optional().describe("the topic operator when multiple topic combinations are used limited to `and` or `or`"),
39
+
topic1_3_opr: z.string().optional().describe("the topic operator when multiple topic combinations are used limited to `and` or `or`"),
40
+
page: z.string().optional().describe("the `integer` page number, if pagination is enabled"),
41
+
offset: z.string().optional().describe("the number of transactions displayed per page limited to **1000 records** per query, use the `page` parameter for subsequent records")
description: "Returns the event logs from an address, filtered by topics and block range.",
53
+
parameters: z.object({
54
+
fromBlock: z.string().describe("the `integer` block number to start searching for logs eg. `12878196`"),
55
+
toBlock: z.string().describe("the `integer` block number to stop searching for logs eg. `12879196`"),
56
+
address: z.string().describe("the `string` representing the address to check for logs"),
57
+
topic0: z.string().optional().describe("the topic numbers to search for limited to`topic0`, `topic1`, `topic2`, `topic3`"),
58
+
topic1: z.string().optional().describe("the topic numbers to search for limited to`topic0`, `topic1`, `topic2`, `topic3`"),
59
+
topic2: z.string().optional().describe("the topic numbers to search for limited to`topic0`, `topic1`, `topic2`, `topic3`"),
60
+
topic3: z.string().optional().describe("the topic numbers to search for limited to`topic0`, `topic1`, `topic2`, `topic3`"),
61
+
topic0_1_opr: z.string().optional().describe("the topic operator when multiple topic combinations are used limited to `and` or `or`"),
62
+
topic1_2_opr: z.string().optional().describe("the topic operator when multiple topic combinations are used limited to `and` or `or`"),
63
+
topic2_3_opr: z.string().optional().describe("the topic operator when multiple topic combinations are used limited to `and` or `or`"),
64
+
topic0_2_opr: z.string().optional().describe("the topic operator when multiple topic combinations are used limited to `and` or `or`"),
65
+
topic0_3_opr: z.string().optional().describe("the topic operator when multiple topic combinations are used limited to `and` or `or`"),
66
+
topic1_3_opr: z.string().optional().describe("the topic operator when multiple topic combinations are used limited to `and` or `or`"),
67
+
page: z.string().optional().describe("the `integer` page number, if pagination is enabled"),
68
+
offset: z.string().optional().describe("the number of transactions displayed per page limited to **1000 records** per query, use the `page` parameter for subsequent records")
0 commit comments