-
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.
Merge pull request #865 from oasisprotocol/kostko/rofl
docs: Add ROFL
- Loading branch information
Showing
11 changed files
with
68 additions
and
3 deletions.
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
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 app | ||
--- | ||
|
||
import DocCardList from '@theme/DocCardList'; | ||
import {findSidebarItem} from '@site/src/sidebarUtils'; | ||
|
||
# Build ROFL App | ||
|
||
Runtime OFf-chain Logic (ROFL) apps 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 apps 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 app with the help of the | ||
[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/rofl.svg |
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
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
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