Skip to content

Commit 7ec9bff

Browse files
committed
Merge remote-tracking branch 'origin/main' into feature/refactor-how-to-pay
2 parents 0ec553d + 9f1b39d commit 7ec9bff

File tree

4 files changed

+28
-9
lines changed

4 files changed

+28
-9
lines changed

.vitepress/sidebar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ export function getSidebar() {
580580
link: '/references/sdk',
581581
},
582582
{
583-
text: '📖 Glossary',
583+
text: '📖 Glossary',
584584
link: '/references/glossary',
585585
},
586586
],

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -253,3 +253,6 @@ for input parameters:
253253
- Rework Advanced iApp building guides. (from "old" protocol doc)
254254
- Rework src\get-started\protocol\oracle.md (transfer to guide or rewrite)
255255
- Talk about iApp secret
256+
- Improve Guide in build-iapp section - be more clear for builder ( how to
257+
process process protectedData, clarify input-output guide)
258+
- refactor iapp generator cli reference

src/guides/build-iapp/inputs-and-outputs.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -613,14 +613,6 @@ report = generate_report(business_data, report_type)
613613
save_report(report)
614614
```
615615

616-
## Output Retrieval
617-
618-
Once your iApp completes execution, users can retrieve and decrypt the results:
619-
620-
**Learn how users get results**: Check our
621-
[How to Get and Decrypt Results](/guides/build-iapp/inputs-and-outputs) guide
622-
for the complete user workflow.
623-
624616
## What's Next?
625617

626618
**You now understand all input types and output requirements!**

src/guides/use-iapp/run-iapp-without-ProtectedData.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,30 @@ iApp's behavior for each specific run. These inputs include Arguments, Input
1414
Files, and Secrets, which allow you to provide additional data, parameters, and
1515
configuration to enable processing and customize functionality.
1616

17+
## Prerequisites
18+
19+
Before you begin, make sure you have the iExec SDK installed.
20+
21+
::: code-group
22+
23+
```sh [npm]
24+
npm install -g iexec
25+
```
26+
27+
```sh [yarn]
28+
yarn global add iexec
29+
```
30+
31+
```sh [pnpm]
32+
pnpm add -g iexec
33+
```
34+
35+
```sh [bun]
36+
bun add -g iexec
37+
```
38+
39+
:::
40+
1741
## Adding Command-Line Arguments
1842

1943
Command-line arguments are passed as a string to the iApp and are visible on the

0 commit comments

Comments
 (0)