Skip to content

Commit d79d999

Browse files
committed
fix: update default chain in ChainSelector to Arbitrum and improve documentation layout in helloWorld
1 parent d54e900 commit d79d999

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

src/components/ChainSelector.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ if (!userStore.chainId) {
7777
userStore.setSelectedChain(walletChain);
7878
}
7979
} else {
80-
// Otherwise, use Bellecour as default
81-
const defaultChain = getChainById(0x86); // Bellecour
80+
// Otherwise, use Arbitrum as default
81+
const defaultChain = getChainById(42161); // Arbitrum
8282
if (defaultChain) {
8383
userStore.setSelectedChain(defaultChain);
8484
}

src/get-started/helloWorld.md

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,9 @@ import ChainSelector from '@/components/ChainSelector.vue'
1414

1515
> Reading time 🕒 2 mins
1616
17-
<div class="mb-6 p-4 bg-[var(--vp-c-bg-soft)] rounded-lg border border-[var(--vp-c-divider)]">
18-
<div class="flex items-center gap-3 mb-3">
19-
<span class="text-lg">🌐</span>
20-
<h3 class="m-0 text-lg font-medium">Select Your Network</h3>
21-
</div>
22-
<div class="flex items-center gap-3">
23-
<span class="text-sm font-medium">Network:</span>
17+
<div class="mb-0 p-6 bg-[var(--vp-c-bg-soft)] rounded-lg border border-[var(--vp-c-divider)]">
18+
<div class="flex">
19+
<h3 class="m-0! py-2 text-lg font-medium">🌐 Select Your Network :</h3>
2420
<ChainSelector />
2521
</div>
2622
</div>
@@ -100,29 +96,29 @@ Before you begin, make sure you have:
10096
<div class="flex flex-col gap-2 my-4 pl-0">
10197
<div class="flex items-center gap-4 text-left">
10298
<div class="flex items-center gap-1 flex-1 text-sm font-medium">
103-
🦊 Ethereum Wallet
99+
🦊 Ethereum Wallet
104100
<InfoIcon tooltip="Required to interact with iExec sidechain Bellecour features, manage your data access permissions, and handle transactions on the iExec platform" />
105101
</div>
106102
<a target="_blank" href="https://chromewebstore.google.com/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn" class="no-underline! text-sm ml-auto hover:underline!">Metamask Download →</a>
107103
</div>
108104
<div class="flex items-center gap-4 text-left">
109105
<div class="flex items-center gap-1 flex-1 text-sm font-medium">
110-
📦 Node.js v20+
106+
📦 Node.js v20+
111107
<InfoIcon tooltip="Required runtime environment for running JavaScript code and managing project dependencies" />
112108
</div>
113109
<a target="_blank" href="https://nodejs.org/en/" class="no-underline! text-sm ml-auto hover:underline!">Download →</a>
114110
</div>
115111
<div class="flex items-center gap-4 text-left">
116112
<div class="flex items-center gap-1 flex-1 text-sm font-medium">
117-
🐳 Docker installed
113+
🐳 Docker installed
118114
<InfoIcon tooltip="Docker is essential for creating isolated containers that package your iExec applications with all dependencies. This ensures consistent and secure execution across different environments, especially in TEEs (Trusted Execution Environments)" />
119115
</div>
120116
<a target="_blank" href="https://docker.com/" class="no-underline! text-sm ml-auto hover:underline!">Download →</a>
121117
</div>
122118

123119
<div class="flex items-center gap-4 text-left">
124120
<div class="flex items-center gap-1 flex-1 text-sm font-medium">
125-
🐳 DockerHub Account
121+
🐳 DockerHub Account
126122
<InfoIcon tooltip="Needed to publish and manage your iExec applications in containers for secure deployment" />
127123
</div>
128124
<a target="_blank" href="https://hub.docker.com/" class="no-underline! text-sm ml-auto hover:underline!">Sign Up →</a>

0 commit comments

Comments
 (0)