Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add world.toml explanation docs #802

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/cardinal/game/configuration/evm.mdx
rmrt1n marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ CHAIN_KEY_MNEMONIC = 'enact adjust liberty squirrel bulk ticket invest tissue an

### DA_AUTH_TOKEN
zulkhair marked this conversation as resolved.
Show resolved Hide resolved

An authentication token obtained from the Celestia client, which is used to interact with Celestia’s Data Availability layer.
An authentication token obtained from the Celestia client, which is used to interact with Celestia’s Data Availability layer.
For more details, you can visit this <a href='https://docs.celestia.org/developers/node-tutorial#auth-token' target='_blank'>link</a>
zulkhair marked this conversation as resolved.
Show resolved Hide resolved

**Example**
```
Expand Down
4 changes: 2 additions & 2 deletions docs/cardinal/game/configuration/nakama.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: 'This section configures Nakama, including allowlist, metrics, and

```
[nakama]
ENABLE_ALLOWLIST = "false"
ENABLE_ALLOWLIST = false
OUTGOING_QUEUE_SIZE = 64
NAKAMA_TRACE_ENABLED = true
NAKAMA_METRICS_ENABLED = true
Expand All @@ -19,7 +19,7 @@ Enables Nakama’s allowlist feature, which allows for beta keys. This is useful

**Example**
```
ENABLE_ALLOWLIST = 'false'
ENABLE_ALLOWLIST = false
```

### OUTGOING_QUEUE_SIZE
Expand Down
Loading