Skip to content

Commit d68429a

Browse files
authored
fix: migrate to arbitrum (#45)
1 parent 9be81a5 commit d68429a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+471
-803
lines changed

.vitepress/sidebar.ts

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export function getSidebar() {
88
items: [
99
{ text: '💡 Welcome', link: '/get-started/welcome' },
1010
{
11-
text: '🛠️ Toolkit',
11+
text: 'Toolkit',
1212
link: '/get-started/toolkit',
1313
},
1414
{
@@ -39,15 +39,15 @@ export function getSidebar() {
3939
],
4040
},
4141
{
42-
text: '🚀 Quick Start',
42+
text: 'Quick Start',
4343
link: '/get-started/quick-start',
4444
},
4545
{
46-
text: '📋 Use Cases',
46+
text: 'Use Cases',
4747
link: '/get-started/use-cases',
4848
},
4949
{
50-
text: '🤖 Develop with AI',
50+
text: 'Develop with AI',
5151
link: '/get-started/develop-with-ai',
5252
},
5353
],
@@ -72,7 +72,7 @@ export function getSidebar() {
7272
link: '/get-started/overview/workerpool',
7373
},
7474
{
75-
text: '🪙 RLC Token',
75+
text: 'RLC Token',
7676
link: '/get-started/overview/rlc',
7777
},
7878
],
@@ -202,10 +202,6 @@ export function getSidebar() {
202202
text: 'Advanced',
203203
collapsed: true,
204204
items: [
205-
{
206-
text: 'Overview',
207-
link: '/guides/build-iapp/advanced/overview',
208-
},
209205
{
210206
text: 'Quick Start for Developers',
211207
link: '/guides/build-iapp/advanced/quick-start-for-developers',
@@ -215,17 +211,13 @@ export function getSidebar() {
215211
link: '/guides/build-iapp/advanced/your-first-app',
216212
},
217213
{
218-
text: 'Build your first SGX app (SCONE)',
214+
text: 'Build your first SGX app',
219215
link: '/guides/build-iapp/advanced/create-your-first-sgx-app',
220216
},
221217
{
222218
text: 'End-to-end Encryption',
223219
link: '/guides/build-iapp/advanced/end-to-end-encryption',
224220
},
225-
{
226-
text: 'SGX Encrypted Dataset',
227-
link: '/guides/build-iapp/advanced/sgx-encrypted-dataset',
228-
},
229221
{
230222
text: 'Access Confidential Assets',
231223
link: '/guides/build-iapp/advanced/access-confidential-assets',
@@ -242,11 +234,11 @@ export function getSidebar() {
242234
text: 'USE AN iAPP',
243235
items: [
244236
{
245-
text: '📝 Introduction',
237+
text: 'Introduction',
246238
link: '/guides/use-iapp/introduction',
247239
},
248240
{
249-
text: '🚀 Getting Started',
241+
text: 'Getting Started',
250242
link: '/guides/use-iapp/getting-started',
251243
},
252244
{
@@ -585,7 +577,7 @@ export function getSidebar() {
585577
],
586578
},
587579
{
588-
text: '🔧 iExec SDK',
580+
text: 'iExec SDK',
589581
link: '/references/sdk',
590582
},
591583
{
-110 KB
Binary file not shown.

src/assets/rlc/dune-dashboard.png

-427 KB
Binary file not shown.

src/components/TokenSymbol.vue

Lines changed: 0 additions & 25 deletions
This file was deleted.

src/get-started/overview/rlc.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@ confidential computation requires RLC. Every piece of protected data consumed
1717
requires RLC. Every app execution requires RLC. The more builders use our tools,
1818
the more utility RLC gains in real applications.
1919

20+
::: tip Info
21+
22+
On the iExec sidechain (Bellecour), the RLC token symbol becomes **xRLC**. xRLC
23+
is the native token of the Bellecour chain and is used for all transactions and
24+
payments on this network.
25+
26+
:::
27+
2028
## 🎯 Why RLC Matters
2129

2230
**Stack adoption = token usage.** When developers build with iExec tools, RLC
@@ -82,13 +90,6 @@ ecosystem requires RLC:
8290
- Confidential computations need RLC for execution
8391
- Staking mechanisms lock RLC, reducing circulating supply
8492

85-
<ImageViewer
86-
:image-url-dark="duneDashboard"
87-
image-alt="RLC Token Economics Dashboard"
88-
link-url="https://dune.com/datawarlock/arbitrum-economics"
89-
caption="🔗 Access iExec Dune Dashboard"
90-
/>
91-
9293
## 🔄 Getting RLC
9394

9495
You can acquire RLC tokens through several methods:
@@ -150,10 +151,8 @@ Ready to dive into the iExec ecosystem? Here are the next steps:
150151
monetize your resources
151152

152153
<script setup>
153-
import ImageViewer from '@/components/ImageViewer.vue';
154154
import FeatureCard from '@/components/FeatureCard.vue';
155155

156156
// Assets
157157
import rlcGif from '@/assets/rlc/rlc.gif';
158-
import duneDashboard from '@/assets/rlc/dune-dashboard.png';
159158
</script>

src/get-started/protocol/oracle.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
title: iExec Oracle
23
description: A flexible and secure Oracle Solution
34
---
45

@@ -130,7 +131,7 @@ dApp, and the parameters if applicable. The Oracle result writes in the
130131

131132
```bash
132133
$ cat ${IEXEC_OUT}/computed.json
133-
{ 'callback-data': '0x48656c6c6f2c20776f726c6421'}
134+
{ 'callback-data': '0x456def...'}
134135
```
135136
136137
When the computation ends the worker will send both this `callback-data`

src/get-started/protocol/tee/intel-sgx.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ graph TD
142142

143143
**Ready to build with SGX?** Check out the practical guides:
144144

145-
- **[Build & Deploy](/guides/build-iapp/build-&-deploy)** - Create your first
146-
SGX application
145+
- **[Deploy & Run](/guides/build-iapp/deploy-&-run)** - Create your first SGX
146+
application
147147
- **[Advanced SGX Development](/guides/build-iapp/advanced/create-your-first-sgx-app)** -
148148
Deep dive into SGX development

src/get-started/protocol/tee/intel-tdx.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,5 +144,5 @@ graph TD
144144

145145
**For production applications, use SGX**:
146146

147-
- **[Build & Deploy](/guides/build-iapp/build-&-deploy)** - Create
148-
production-ready SGX applications
147+
- **[Deploy & Run](/guides/build-iapp/deploy-&-run)** - Create production-ready
148+
SGX applications

src/get-started/protocol/tee/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,5 +121,5 @@ TEE technologies have evolved to address different use cases:
121121

122122
- **[Build Intel TDX App (Experimental)](/guides/build-iapp/advanced/create-your-first-tdx-app)** -
123123
Build TDX applications with traditional deployment and iApp Generator
124-
- **[Build & Deploy](/guides/build-iapp/build-&-deploy)** - Create your first
125-
TEE application
124+
- **[Deploy & Run](/guides/build-iapp/deploy-&-run)** - Create your first TEE
125+
application

src/get-started/protocol/tee/sgx-vs-tdx.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,5 +81,5 @@ technology** for advanced use cases.
8181

8282
- **[Build Intel TDX App (Experimental)](/guides/build-iapp/advanced/create-your-first-tdx-app)** -
8383
Build TDX applications with traditional deployment and iApp Generator
84-
- **[Build & Deploy](/guides/build-iapp/build-&-deploy)** - Create your first
85-
TEE application
84+
- **[Deploy & Run](/guides/build-iapp/deploy-&-run)** - Create your first TEE
85+
application

0 commit comments

Comments
 (0)