-
Notifications
You must be signed in to change notification settings - Fork 2
/
ponder.config.ts
65 lines (64 loc) · 1.65 KB
/
ponder.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import type { PonderConfig } from "@ponder/core";
export const config: PonderConfig = {
networks: [
{
name: "sepolia",
chainId: 11155111,
rpcUrl: process.env.PONDER_RPC_URL_11155111,
},
// {
// name: "mainnet",
// chainId: 1,
// rpcUrl: process.env.PONDER_RPC_URL_1,
// },
// {
// name: "arbitrum",
// chainId: 42161,
// rpcUrl: process.env.PONDER_RPC_URL_42161,
// },
],
contracts: [
{
name: "EAS",
network: "sepolia",
abi: "./abis/EAS.json",
address: "0xc2679fbd37d54388ce493f1db75320d236e1815e",
startBlock: 2958571,
},
{
name: "SchemaRegistry",
network: "sepolia",
abi: "./abis/SchemaRegistry.json",
address: "0x0a7e2ff54e76b8e6659aedc9103fb21c038050d0",
startBlock: 2958571,
},
// {
// name: "SchemaRegistry",
// network: "mainnet",
// abi: "./abis/SchemaRegistry.json",
// address: "0xa7b39296258348c78294f95b872b282326a97bdf",
// startBlock: 16756726,
// },
// {
// name: "EAS",
// network: "mainnet",
// abi: "./abis/EAS.json",
// address: "0xa1207f3bba224e2c9c3c6d5af63d0eb1582ce587",
// startBlock: 16756728,
// },
// {
// name: "SchemaRegistry",
// network: "arbitrum",
// abi: "./abis/SchemaRegistry.json",
// address: "0xA310da9c5B885E7fb3fbA9D66E9Ba6Df512b78eB",
// startBlock: 64528381,
// },
// {
// name: "EAS",
// network: "arbitrum",
// abi: "./abis/EAS.json",
// address: "0xbD75f629A22Dc1ceD33dDA0b68c546A1c035c458",
// startBlock: 64528381,
// },
],
};