mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 20:27:58 -05:00
fix: update l2 to L1 bridge estimated time (#935)
* fix: update l2 to L1 bridge estimated time * fix: remove amr64 build for the bridge UI
This commit is contained in:
2
.github/workflows/bridge-ui-publish.yml
vendored
2
.github/workflows/bridge-ui-publish.yml
vendored
@@ -54,7 +54,7 @@ jobs:
|
||||
with:
|
||||
context: .
|
||||
file: ./bridge-ui/Dockerfile
|
||||
platforms: linux/amd64,linux/arm64
|
||||
platforms: linux/amd64
|
||||
push: ${{ env.DOCKERHUB_USERNAME != '' && env.DOCKERHUB_TOKEN != '' }}
|
||||
tags: consensys/linea-bridge-ui:${{ env.DOCKER_TAG }}
|
||||
build-args: |
|
||||
|
||||
@@ -38,11 +38,11 @@ const faqList = [
|
||||
},
|
||||
{
|
||||
title: "How long does the bridging take?",
|
||||
content: `<div><p>This depends on the direction of your bridge:</p><ul><li>Deposit (L1 -> L2): Approximately 20 minutes.</li><li>Withdrawal (L2 -> L1): Between 8 and 32 hours. The L2 transaction must be finalized on Ethereum Mainnet before you can claim your funds.</li></ul></div>`,
|
||||
content: `<div><p>This depends on the direction of your bridge:</p><ul><li>Deposit (L1 -> L2): Approximately 20 minutes.</li><li>Withdrawal (L2 -> L1): Between 2 and 16 hours. The L2 transaction must be finalized on Ethereum Mainnet before you can claim your funds.</li></ul></div>`,
|
||||
},
|
||||
{
|
||||
title: "Can I speed up my transaction?",
|
||||
content: `<div><p>Yes, although it's not a method we recommend for beginners. <a rel="noopener noreferrer" target="_blank" href="https://support.linea.build/bridging/can-i-speed-up-bridge-transfers-on-the-linea-bridge">View the guide on the MetaMask Help Center</a>.</p><p>Note that this only speeds up your submission of the bridge transaction. It does not actually speed up the bridging process itself that you initiate with this transaction — you cannot speed up the 8-32 hour waiting time for a withdrawal.</p></div>`,
|
||||
content: `<div><p>Yes, although it's not a method we recommend for beginners. <a rel="noopener noreferrer" target="_blank" href="https://support.linea.build/bridging/can-i-speed-up-bridge-transfers-on-the-linea-bridge">View the guide on the MetaMask Help Center</a>.</p><p>Note that this only speeds up your submission of the bridge transaction. It does not actually speed up the bridging process itself that you initiate with this transaction — you cannot speed up the 2-16 hour waiting time for a withdrawal.</p></div>`,
|
||||
},
|
||||
{
|
||||
title: "Where can I access support?",
|
||||
|
||||
@@ -75,5 +75,5 @@ export const getEstimatedTimeText = (fromChain: Chain, token: Token, opts: GetEs
|
||||
if (fromChain.layer === ChainLayer.L1) {
|
||||
return `20 ${minuteUnit}`;
|
||||
}
|
||||
return `8${spaceChar}-${spaceChar}32 ${hourUnit}`;
|
||||
return `2${spaceChar}-${spaceChar}16 ${hourUnit}`;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user