-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(bridge): add invalid chain balance section in dropdown * feat(bridge): add invalid chain icon and fix mobile view * fix(bridge): open faucet in new tab * fix(bridge): metamask icon * fix(bridge): transaction list mobile view * fix(bridge): transaction detail mobile view * feat(bridge): move message status tooltip into component * Update HeaderAnnouncement.svelte * fix(bridge): invalid chain icon alignment * fix(bridge): status alignment Co-authored-by: dave | d1onys1us <13951458+d1onys1us@users.noreply.github.com>
- Loading branch information
1 parent
4ac12a4
commit 6c080cb
Showing
11 changed files
with
108 additions
and
213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
packages/bridge-ui/src/components/MessageStatusTooltip.svelte
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<script lang="ts"> | ||
import TooltipModal from "./modals/TooltipModal.svelte"; | ||
import { showMessageStatusTooltip } from '../store/transactions'; | ||
</script> | ||
|
||
<TooltipModal title="Message Status" bind:isOpen={$showMessageStatusTooltip}> | ||
<span slot="body"> | ||
<div class="text-left"> | ||
A bridge message will pass through various states: | ||
<br /><br /> | ||
<ul class="list-disc ml-4"> | ||
<li class="mb-2"> | ||
<strong>Pending</strong>: Your asset is not ready to be bridged. Taiko | ||
A1 => Ethereum A1 bridging can take several hours before being ready. | ||
Ethereum A1 => Taiko A1 should be available to claim within minutes. | ||
</li> | ||
<li class="mb-2"> | ||
<strong>Claimable</strong>: Your asset is ready to be claimed on the | ||
destination chain, and requires a transaction. | ||
</li> | ||
<li class="mb-2"> | ||
<strong>Claimed</strong>: Your asset has finished bridging, and is | ||
available to you on the destination chain. | ||
</li> | ||
<li class="mb-2"> | ||
<strong>Retry</strong>: The relayer has failed to process this | ||
message, and you must retry the processing yourself. | ||
</li> | ||
<li class="mb-2"> | ||
<strong>Failed</strong>: Your bridged asset is unable to be processed, | ||
and is available to you on the source chain. | ||
</li> | ||
</ul> | ||
</div> | ||
</span> | ||
</TooltipModal> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.