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

feat(bridge): change pending message for l2 to l1 #486

Merged
merged 1 commit into from
Dec 26, 2022
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
72 changes: 0 additions & 72 deletions packages/bridge-ui/src/components/ERC20Faucet.svelte

This file was deleted.

6 changes: 3 additions & 3 deletions packages/bridge-ui/src/components/Transaction.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@

<td>
{#if !processable}
Pending...
Pending {fromChain.id === CHAIN_TKO.id ? '(2-3hrs)': ''}...
{:else if !transaction.receipt && transaction.status === MessageStatus.New}
<div class="inline-block">
<LottiePlayer
Expand All @@ -150,14 +150,14 @@
</div>
{:else if transaction.receipt && transaction.status === MessageStatus.New}
<span
class="cursor-pointer"
class="cursor-pointer border rounded p-1"
on:click={async () => await claim(transaction)}
>
Claim
</span>
{:else if transaction.status === MessageStatus.Retriable}
<span
class="cursor-pointer"
class="cursor-pointer border rounded p-1"
on:click={async () => await claim(transaction)}
>
Retry
Expand Down