Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(linea): update L2 Bridge admin address (after planned Linea upgrade) #559

Merged
merged 2 commits into from
Jun 11, 2024
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
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
Loading