We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69348ba commit d42873dCopy full SHA for d42873d
pdp/contract/addresses.go
@@ -19,14 +19,13 @@ func ContractAddresses() PDPContracts {
19
switch build.BuildType {
20
case build.BuildCalibnet:
21
return PDPContracts{
22
- PDPVerifier: common.HexToAddress("0x5A23b7df87f59A291C26A2A1d684AD03Ce9B68DC"),
+ PDPVerifier: common.HexToAddress("0x4E1e9AB9bf23E9Fe96041E0a2d2f0B99dE27FBb2"),
23
}
24
case build.BuildMainnet:
25
- return PDPContracts{
26
- PDPVerifier: common.HexToAddress("0x9C65E8E57C98cCc040A3d825556832EA1e9f4Df6"),
27
- }
+ // Compatible contract not yet deployed
+ panic("compatible PDP contract not available on mainnet")
28
default:
29
- panic("pdp contracts unknown for this network")
+ panic("PDP contract unknown for this network")
30
31
32
0 commit comments