-
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.
fix(bridge-ui): transaction and pendingTransaction refactor (#13307)
Co-authored-by: jeff <[email protected]>
- Loading branch information
1 parent
8dcccc0
commit 9d215cf
Showing
3 changed files
with
56 additions
and
30 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,32 @@ | ||
/// <reference types="svelte" /> | ||
/// <reference types="vite/client" /> | ||
/// <reference types="vite/client" /> | ||
|
||
interface ImportMetaEnv { | ||
readonly VITE_L1_RPC_URL: string; | ||
readonly VITE_L1_RPC_URL: string; | ||
readonly VITE_L2_RPC_URL: string; | ||
readonly VITE_L1_EXPLORER_URL: string; | ||
readonly VITE_L2_EXPLORER_URL: string; | ||
readonly VITE_RELAYER_URL: string; | ||
readonly VITE_TEST_ERC20_ADDRESS_MAINNET: string; | ||
readonly VITE_TEST_ERC20_SYMBOL_MAINNET: string; | ||
readonly VITE_TEST_ERC20_NAME_MAINNET: string; | ||
readonly VITE_MAINNET_CHAIN_ID: string; | ||
readonly VITE_TAIKO_CHAIN_ID: string; | ||
readonly VITE_MAINNET_CHAIN_NAME: string; | ||
readonly VITE_TAIKO_CHAIN_NAME: string; | ||
readonly VITE_MAINNET_TOKEN_VAULT_ADDRESS: string; | ||
readonly VITE_TAIKO_TOKEN_VAULT_ADDRESS: string; | ||
readonly VITE_MAINNET_HEADER_SYNC_ADDRESS: string; | ||
readonly VITE_TAIKO_HEADER_SYNC_ADDRESS: string; | ||
readonly VITE_MAINNET_BRIDGE_ADDRESS: string; | ||
readonly VITE_TAIKO_BRIDGE_ADDRESS: string; | ||
readonly VITE_MAINNET_SIGNAL_SERVICE_ADDRESS: string; | ||
readonly VITE_TAIKO_SIGNAL_SERVICE_ADDRESS: string; | ||
readonly VITE_TEST_ERC20: string; | ||
} | ||
|
||
interface ImportMeta { | ||
readonly env: ImportMetaEnv; | ||
} |