Skip to content

Commit 0a8eeef

Browse files
authored
Merge branch 'master' into perf/1-lighthouse-setup
2 parents c1f20e6 + 0af51d0 commit 0a8eeef

27 files changed

+769
-91
lines changed

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@
3232
"**/react-syntax-highlighter/refractor/prismjs": "1.30.0",
3333
"**/@babel/runtime": "7.26.10",
3434
"**/tar-fs": "2.1.3",
35-
"sharp/tar-fs": "3.0.9"
35+
"sharp/tar-fs": "3.0.9",
36+
"**/form-data": "4.0.4",
37+
"**/axios": "1.11.0"
3638
},
3739
"keywords": [],
3840
"author": "",

packages/arb-token-bridge-ui/.env.local.sample

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,24 @@ NEXT_PUBLIC_INFURA_KEY_BASE_SEPOLIA=
2424

2525
# ----- Alchemy -----
2626

27+
# Default Alchemy key. If no network-specific keys are set, it will fallback to this key.
2728
NEXT_PUBLIC_ALCHEMY_KEY=
2829

30+
# L1 Mainnet
31+
NEXT_PUBLIC_ALCHEMY_KEY_ETHEREUM=
32+
33+
# L1 Testnet
34+
NEXT_PUBLIC_ALCHEMY_KEY_SEPOLIA=
35+
36+
# L2 Mainnet
37+
NEXT_PUBLIC_ALCHEMY_KEY_ARBITRUM_ONE=
38+
NEXT_PUBLIC_ALCHEMY_KEY_ARBITRUM_NOVA=
39+
NEXT_PUBLIC_ALCHEMY_KEY_BASE=
40+
41+
# L2 Testnet
42+
NEXT_PUBLIC_ALCHEMY_KEY_ARBITRUM_SEPOLIA=
43+
NEXT_PUBLIC_ALCHEMY_KEY_BASE_SEPOLIA=
44+
2945
# ----- Custom RPCs -----
3046

3147
# L1 Mainnet

packages/arb-token-bridge-ui/docs/rpc-configuration.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,15 @@ The Alchemy key is provided through the following environment variable:
3636

3737
- `NEXT_PUBLIC_ALCHEMY_KEY`
3838

39-
The key will be used for all chains.
39+
The key will be used for all chains. However, if you need to have different keys for each chain, you can do so through the following environment variables:
40+
41+
- `NEXT_PUBLIC_ALCHEMY_KEY_ETHEREUM`
42+
- `NEXT_PUBLIC_ALCHEMY_KEY_SEPOLIA`
43+
- `NEXT_PUBLIC_ALCHEMY_KEY_ARBITRUM_ONE`
44+
- `NEXT_PUBLIC_ALCHEMY_KEY_ARBITRUM_NOVA`
45+
- `NEXT_PUBLIC_ALCHEMY_KEY_BASE`
46+
- `NEXT_PUBLIC_ALCHEMY_KEY_ARBITRUM_SEPOLIA`
47+
- `NEXT_PUBLIC_ALCHEMY_KEY_BASE_SEPOLIA`
4048

4149
## Custom RPCs
4250

packages/arb-token-bridge-ui/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
"@unstoppabledomains/resolution": "^8.3.3",
2323
"ajv": "^8.17.1",
2424
"ajv-formats": "^2.1.1",
25-
"axios": "^1.8.4",
25+
"apollo-link-timeout": "^5.0.2",
26+
"axios": "^1.11.0",
2627
"boring-avatars": "^1.11.2",
2728
"cheerio": "^1.0.0",
2829
"dayjs": "^1.11.13",
Lines changed: 1 addition & 0 deletions
Loading
93 KB
Loading
93 KB
Loading
15.2 KB
Loading
6.89 KB
Loading
18.4 KB
Loading

0 commit comments

Comments
 (0)