Skip to content

Commit

Permalink
chore(lib/netconf): add portal address to static (#1296)
Browse files Browse the repository at this point in the history
Add portal address to neconf static.

task: none
  • Loading branch information
pavelnikolov authored Jun 27, 2024
1 parent d3c9213 commit 5d048b9
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions lib/netconf/static.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,9 @@ var runid = uuid.New().String()
//nolint:gochecknoglobals // Static addresses
var (
// Address matches lib/contracts. We do not import to avoid cylic dependencies. Equivalence asserted in tests.
omegaAVS = common.HexToAddress("0xa7b2e7830C51728832D33421670DbBE30299fD92")
mainnetAVS = common.HexToAddress("0xed2f4d90b073128ae6769a9A8D51547B1Df766C8")
omegaAVS = common.HexToAddress("0xa7b2e7830C51728832D33421670DbBE30299fD92")
mainnetAVS = common.HexToAddress("0xed2f4d90b073128ae6769a9A8D51547B1Df766C8")
omegaPortal = common.HexToAddress("0x602f8a77337d22DC13EAd94fFf23024f27899Ae9")
)

//nolint:gochecknoglobals // Static mappings.
Expand Down Expand Up @@ -151,7 +152,11 @@ var statics = map[ID]Static{
AVSContractAddress: omegaAVS,
OmniExecutionChainID: evmchain.IDOmniOmega,
MaxValidators: maxValidators,
Portals: []Deployment{},
Portals: []Deployment{
{ChainID: evmchain.IDHolesky, Address: omegaPortal, DeployHeight: 1812518},
{ChainID: evmchain.IDOpSepolia, Address: omegaPortal, DeployHeight: 13805229},
// add arb sepolia when available
},
},
Mainnet: {
Network: Mainnet,
Expand Down

0 comments on commit 5d048b9

Please sign in to comment.