Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/ponder/ponder.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default createConfig({
blocks: {
ProviderStatusSync: {
chain: networkName,
startBlock: network.START_BLOCK,
startBlock: network.ENDORSEMENT_SET_START_BLOCK,
interval: 480,
},
},
Expand Down
3 changes: 3 additions & 0 deletions apps/ponder/src/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export const MAINNET = {
PDP_VERIFIER: '0xBADd0B92C1c71d02E7d520f64c0876538fa2557F',
SP_REGISTRY: '0xf55dDbf63F1b55c3F1D4FA7e339a68AB7b64A5eB',
ENDORSEMENT_SET: '0x59eFa2e8324E1551d46010d7B0B140eE2F5c726b',
ENDORSEMENT_SET_START_BLOCK: 5_664_991,
START_BLOCK: 5_459_607,
} as const

Expand All @@ -13,6 +14,7 @@ export const CALIBNET = {
PDP_VERIFIER: '0x85e366Cf9DD2c0aE37E963d9556F5f4718d6417C',
SP_REGISTRY: '0x839e5c9988e4e9977d40708d0094103c0839Ac9D',
ENDORSEMENT_SET: '0xAA2f7CfC7ecAc616EC9C1f6d700fAd19087FAC84',
ENDORSEMENT_SET_START_BLOCK: 3_364_286,
START_BLOCK: 3_141_266,
} as const

Expand All @@ -29,6 +31,7 @@ export const NETWORKS = {
PDP_VERIFIER: `0x${string}`
SP_REGISTRY: `0x${string}`
ENDORSEMENT_SET: `0x${string}`
ENDORSEMENT_SET_START_BLOCK: number
START_BLOCK: number
}
>
Loading