-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
50 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
description: Build your own ROFL application | ||
--- | ||
|
||
import DocCardList from '@theme/DocCardList'; | ||
import {findSidebarItem} from '@site/src/sidebarUtils'; | ||
|
||
# Build ROFL Application | ||
|
||
Runtime OFf-chain Logic (ROFL) applications are a mechanism to augment the | ||
deterministic on-chain backend with verifiable off-chain applications. These | ||
applications are stateless, have access to the network and can perform expensive | ||
and/or non-deterministic computation. | ||
|
||
ROFL applications run in Trusted Execution Environments (TEEs), similar to the | ||
on-chain confidential runtimes. This enables them to securely authenticate to | ||
the on-chain backend which is handled transparently by the framework. Together | ||
they allow one to implement secure decentralized oracles, bridges, AI agents and | ||
more. | ||
|
||
This chapter will teach you how to build your own ROFL application with | ||
[Oasis Runtime SDK]. | ||
|
||
<DocCardList items={[ | ||
findSidebarItem('/rofl/prerequisites'), | ||
findSidebarItem('/rofl/app'), | ||
]} /> | ||
|
||
[Oasis Runtime SDK]: | ||
https://github.com/oasisprotocol/oasis-sdk/tree/main/runtime-sdk |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
../../external/oasis-sdk/docs/rofl/app.md |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
../../external/oasis-sdk/docs/rofl/prerequisites.md |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
../../external/oasis-sdk/docs/rofl/trust-root.md |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import {SidebarsConfig} from '@docusaurus/plugin-content-docs'; | ||
|
||
export const sidebarROFL: SidebarsConfig = { | ||
rofl: [ | ||
{ | ||
type: 'doc', | ||
label: 'Overview', | ||
id: 'rofl/README', | ||
}, | ||
'rofl/prerequisites', | ||
'rofl/app', | ||
'rofl/trust-root', | ||
], | ||
}; |
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