diff --git a/docs/node/run-your-node/paratime-client-node.mdx b/docs/node/run-your-node/paratime-client-node.mdx index 263076b63c..43e9babe32 100644 --- a/docs/node/run-your-node/paratime-client-node.mdx +++ b/docs/node/run-your-node/paratime-client-node.mdx @@ -200,14 +200,22 @@ runtime: # Paths to ParaTime bundles for all of the supported ParaTimes. paths: - {{ runtime_orc_path }} + # Configure ParaTimes to run outside of a Trusted Execution Environment. + runtimes: + - id: {{ runtime_id }} + components: + - id: ronl + tee: none ``` -Before using this configuration you should collect the following information to replace the variables present in the configuration file:. +Before using this configuration you should collect the following information to replace the variables present in the configuration file:. * `{{ seed_node_address }}`: The seed node address in the form `ID@IP:port`. * You can find the current Oasis Seed Node address in the Network Parameters page ([Mainnet], [Testnet]). * `{{ runtime_orc_path }}`: Path to the [ParaTime bundle](paratime-client-node.mdx#the-paratime-bundle) of the form `/node/runtimes/foo-paratime.orc`. * You can find the current Oasis-supported ParaTimes in the Network Parameters page ([Mainnet], [Testnet]). +* `{{ runtime_id }}`: Runtime identifier of the ParaTime. + * You can find the runtime identifiers for the current Oasis-supported ParaTimes in the Network Parameters page ([Mainnet], [Testnet]). :::caution @@ -216,7 +224,7 @@ accessible on the internet (for `TCP` and `UDP` traffic). ::: -## Configuring TEE Paratime Client Node +## Configuring TEE ParaTime Client Node If your node requires the ability to issue queries that can access confidential data, start by following the [Configuration](#configuration) section to create @@ -229,7 +237,6 @@ runtime: # Paths to ParaTime bundles for all of the supported ParaTimes. paths: - {{ runtime_orc_path }} - environment: sgx sgx_loader: /node/bin/oasis-core-runtime-loader ```