Skip to content

Commit

Permalink
Merge pull request #559 from lidofinance/fix/linea-new-addresses
Browse files Browse the repository at this point in the history
fix(linea): update L2 Bridge admin address (after planned Linea upgrade)
  • Loading branch information
arwer13 authored Jun 11, 2024
2 parents a842199 + d7dd12c commit 55b3e7e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions l2-bridge-linea/src/agent.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ describe('agent-linea e2e tests', () => {
test('should process handleBlocks', async () => {
const app = await App.getInstance()

const blocksDto = await app.LineaClient.fetchBlocks(2476530, 2476540)
const blocksDto = await app.LineaClient.fetchBlocks(5348550, 5348560)

const agentMeta = await app.proxyWatcher.initialize(2476540)
const agentMeta = await app.proxyWatcher.initialize(5348560)
if (E.isLeft(agentMeta)) {
throw agentMeta
}

const monitorWithdrawalsInitResp = await app.monitorWithdrawals.initialize(2476540)
const monitorWithdrawalsInitResp = await app.monitorWithdrawals.initialize(5348560)
if (E.isLeft(monitorWithdrawalsInitResp)) {
throw monitorWithdrawalsInitResp
}
Expand Down
4 changes: 2 additions & 2 deletions l2-bridge-linea/src/utils/constants.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import BigNumber from 'bignumber.js'

const LINEA_BRIDGE_EXECUTOR = '0x74Be82F00CC867614803ffd7f36A2a4aF0405670'
const LINEA_BRIDGE_EXECUTOR = '0x74be82f00cc867614803ffd7f36a2a4af0405670'
const LINEA_L2_TOKEN_BRIDGE = '0x353012dc4a9a6cf55c941badc267f82004a8ceb9'
const ADMIN_OF_LINEA_L2_TOKEN_BRIDGE = '0xa11ba93afbd6d18e26fefdb2c6311da6c9b370d6'
const ADMIN_OF_LINEA_L2_TOKEN_BRIDGE = '0x1e1f6f22f97b4a7522d8b62e983953639239774e'
const LINEA_WST_CUSTOM_BRIDGED_TOKEN = '0xB5beDd42000b71FddE22D3eE8a79Bd49A568fC8F'
const LINEA_PROXY_ADMIN_FOR_WSTETH = '0xF951d7592e03eDB0Bab3D533935e678Ce64Eb927'
const LINEA_L1_TOKEN_BRIDGE = '0x051f1d88f0af5763fb888ec4378b4d8b29ea3319'
Expand Down

0 comments on commit 55b3e7e

Please sign in to comment.