-
Notifications
You must be signed in to change notification settings - Fork 58
Remove all the mentions of the wordl tutorial #576
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
Conversation
WalkthroughReferences to the "wordle" example chain have been systematically updated to "gm-world" across multiple guides and tutorials. This includes changes to tutorial links, directory and file paths, Docker configurations, rollup IDs, and command-line instructions. Additionally, a method was removed from a documented interface, and one tutorial file was deleted. Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant Docs
participant CLI
User->>Docs: Follow updated tutorial links (gm-world)
User->>CLI: Run updated commands (e.g., gmd start, gmd tendermint unsafe-reset-all)
CLI-->>User: Chain starts/reset using gm-world configs
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Summary of Changes
Hello @pthmas, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!
This pull request primarily serves as a housekeeping effort to remove all references to the deprecated 'wordle' tutorial and replace them with the new 'gm-world' tutorial. This involves updating links, command examples, directory names, and Docker configurations across several documentation files to ensure consistency and accuracy. Additionally, an unrelated change was observed where a function was removed from a DA interface definition.
Highlights
- Documentation Updates: All instances of the 'wordle' tutorial references have been updated to point to the 'gm-world' tutorial across various guides and tutorials.
- Configuration & Command Adjustments: Command examples, directory paths, and Docker configurations (image names, container names, rollup IDs) have been updated to reflect the new 'gm-world' chain naming and associated binaries/directories (e.g.,
.wordle
to.gm
,rollkit
togmd
for certain commands). - Data Directory Structure: The
reset-state.md
guide now includes updated information about the.gm
directory structure, including newcache
andtx_index.db
entries, and adjusts the paths for data deletion. - DA Interface Definition Change: The
MaxBlobSize
function was removed from theDA
interface definition intutorials/da/overview.md
. This change appears to be unrelated to the primary goal of updatingwordle
references.
Using Gemini Code Assist
The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.
Invoking Gemini
You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command>
or @gemini-code-assist <command>
. Below is a summary of the supported commands.
Feature | Command | Description |
---|---|---|
Code Review | /gemini review |
Performs a code review for the current pull request in its current state. |
Pull Request Summary | /gemini summary |
Provides a summary of the current pull request in its current state. |
Comment | @gemini-code-assist | Responds in comments when explicitly tagged, both in issue comments and review comments. |
Help | /gemini help |
Displays a list of available commands. |
Customization
To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/
folder in the base of the repository. Detailed instructions can be found here.
Limitations & Feedback
Gemini Code Assist is currently in preview and may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments to provide feedback.
You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.
Footnotes
-
Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution. ↩
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
The pull request removes mentions of the wordl tutorial and replaces them with the gm-world tutorial. The changes involve updating links, directory names, and commands in the documentation. There are a few typos and inconsistencies that need to be addressed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 3
🧹 Nitpick comments (3)
tutorials/da/overview.md (1)
61-61
: Use a consistent permalink style for internal docsMost pages link to tutorials without the “.md” suffix (e.g.
/tutorials/quick-start
). This line introduces the suffix forgm-world
, which breaks the convention and may create two distinct routes depending on the site generator’s configuration.-You might have noticed that we did not define any DA layer during the [quick start](../quick-start.md) or [build a chain](/tutorials/gm-world.md) tutorials. +You might have noticed that we did not define any DA layer during the [quick start](../quick-start.md) or [build a chain](/tutorials/gm-world) tutorials.Please confirm which style the site expects and apply it consistently.
tutorials/da/local-da.md (1)
12-12
: Align link style with the rest of the docsSame permalink inconsistency as in
overview.md
—consider dropping the “.md” to stay uniform.-Before proceeding, ensure that you have completed the [quick start](/tutorials/quick-start) or [build a chain](/tutorials/gm-world.md) tutorial +Before proceeding, ensure that you have completed the [quick start](/tutorials/quick-start) or [build a chain](/tutorials/gm-world) tutorialguides/reset-state.md (1)
133-134
: Minor style polishComma before “and” avoids a run-on sentence; also drop the second “again” to remove repetition.
-…will be re-created and you will see your chain starting at block height 1 again. +…will be re-created, and you will see your chain starting at block height 1.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (5)
guides/reset-state.md
(2 hunks)learn/building-and-deploying-a-rollup.md
(0 hunks)tutorials/da/local-da.md
(2 hunks)tutorials/da/overview.md
(1 hunks)tutorials/docker-compose.md
(9 hunks)
💤 Files with no reviewable changes (1)
- learn/building-and-deploying-a-rollup.md
🧰 Additional context used
🧠 Learnings (2)
tutorials/docker-compose.md (2)
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/wasmd.Dockerfile:5-6
Timestamp: 2024-10-08T09:18:01.381Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/wasmd.Dockerfile`, the project chooses not to use a `.dockerignore` file during Docker builds.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/wasmd.Dockerfile:5-6
Timestamp: 2024-10-11T19:05:20.591Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/wasmd.Dockerfile`, the project chooses not to use a `.dockerignore` file during Docker builds.
guides/reset-state.md (10)
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml:1-23
Timestamp: 2024-10-11T19:05:20.591Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml`, it's intentional to use the same mnemonic for both "localwasm" and "stride-internal-1" networks.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml:1-23
Timestamp: 2024-10-08T09:26:38.099Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml`, it's intentional to use the same mnemonic for both "localwasm" and "stride-internal-1" networks.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/relayer.json:1-5
Timestamp: 2024-10-08T09:25:31.642Z
Learning: In the file `guides/assets/hyperlane-use-tia-for-gas/relayer.json`, the settings `"allowLocalCheckpointSyncers": "true"` and `"gasPaymentEnforcement": [{ "type": "none" }]` are intentional.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/relayer.json:1-5
Timestamp: 2024-10-11T19:05:20.591Z
Learning: In the file `guides/assets/hyperlane-use-tia-for-gas/relayer.json`, the settings `"allowLocalCheckpointSyncers": "true"` and `"gasPaymentEnforcement": [{ "type": "none" }]` are intentional.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/hyperlane-use-tia-for-gas.md:77-82
Timestamp: 2024-10-11T19:05:20.591Z
Learning: In the 'hyperlane-use-tia-for-gas.md' guide, it is intentional to include the seed phrase directly in the code examples.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/hyperlane-use-tia-for-gas.md:77-82
Timestamp: 2024-10-08T09:29:26.874Z
Learning: In the 'hyperlane-use-tia-for-gas.md' guide, it is intentional to include the seed phrase directly in the code examples.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/hyperlane-config.yaml:1-23
Timestamp: 2024-10-11T19:05:20.591Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/hyperlane-config.yaml`, it's intentional to use the same signer phrase across multiple network configurations (`localwasm` and `stride-internal-1`).
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/hyperlane-config.yaml:1-23
Timestamp: 2024-10-08T09:26:23.244Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/hyperlane-config.yaml`, it's intentional to use the same signer phrase across multiple network configurations (`localwasm` and `stride-internal-1`).
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml:29-37
Timestamp: 2024-10-08T09:27:02.351Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml`, it's intentional to set the multisig threshold to 1 and to only define validators for the `localwasm` network (domain 963).
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml:29-37
Timestamp: 2024-10-11T19:05:20.591Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml`, it's intentional to set the multisig threshold to 1 and to only define validators for the `localwasm` network (domain 963).
🪛 LanguageTool
tutorials/docker-compose.md
[uncategorized] ~150-~150: Possible missing comma found.
Context: ...er Compose file {#docker-compose-file} Next we need to create our compose.yaml
fi...
(AI_HYDRA_LEO_MISSING_COMMA)
guides/reset-state.md
[uncategorized] ~133-~133: Use a comma before ‘and’ if it connects two independent clauses (unless they are closely connected and short).
Context: ...hese data directories will be re-created and you will see your chain starting at blo...
(COMMA_COMPOUND_SENTENCE)
[style] ~133-~133: This sentence contains multiple usages of the word “again”. Consider removing or replacing it.
Context: ...e your chain starting at block height 1 again.
(REPETITION_OF_AGAIN)
🔇 Additional comments (1)
tutorials/da/local-da.md (1)
38-43
: Double-check that the rollup-ID remains the same across all tutorialsHere the rollup is started with
--rollkit.sequencer_rollup_id gmd
.
Intutorials/docker-compose.md
the local sequencer is started with-rollup-id=gm
. A mismatch will prevent the chain from submitting blobs to the sequencer.Make sure both services use the exact same identifier (
gmd
orgm
) everywhere.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (4)
guides/reset-state.md (4)
17-18
: Clarify prerequisite sentence & fix capitalizationMinor readability/grammar touch-ups (capitalize tutorial names, avoid double “completed”).
-In order to complete this guide, you will need to have completed either the [quick start tutorial](/tutorials/quick-start.md) or the [build our chain tutorial](/tutorials/gm-world.md). +In order to complete this guide, you need to have finished either the [Quick Start tutorial](/tutorials/quick-start.md) or the [Build Your Chain tutorial](/tutorials/gm-world.md).
53-56
: Tighten wording in gm-world introSlight grammatical polish and consistent title-casing.
-When you ran your gm-world chain in the [build your chain tutorial](/tutorials/gm-world.md), it created a `.gm` directory in your `$HOME` directory. +When you built and ran the gm-world chain in the [Build Your Chain tutorial](/tutorials/gm-world.md), it created a `.gm` directory in your `$HOME` directory.
117-125
: Trim trailing spaces & drop empty line inside code blockTrailing spaces in code blocks render oddly in some markdown viewers and the blank line after
cache
is unnecessary.$HOME/.gm/data/application.db $HOME/.gm/data/rollkit -$HOME/.gm/data/snapshots -$HOME/.gm/data/cache - +$HOME/.gm/data/snapshots +$HOME/.gm/data/cache
133-134
: Remove duplicate “again” and add comma for compound clause-When you launch your chain again with your `gmd start <flags>` command, these data directories will be re-created and you will see your chain starting at block height 1 again. +After you restart your chain with `gmd start <flags>`, these data directories will be recreated, and you will see the chain start at block height 1.
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
guides/reset-state.md
(2 hunks)
🧰 Additional context used
🧠 Learnings (1)
guides/reset-state.md (10)
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml:1-23
Timestamp: 2024-10-11T19:05:20.591Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml`, it's intentional to use the same mnemonic for both "localwasm" and "stride-internal-1" networks.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml:1-23
Timestamp: 2024-10-08T09:26:38.099Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml`, it's intentional to use the same mnemonic for both "localwasm" and "stride-internal-1" networks.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/relayer.json:1-5
Timestamp: 2024-10-08T09:25:31.642Z
Learning: In the file `guides/assets/hyperlane-use-tia-for-gas/relayer.json`, the settings `"allowLocalCheckpointSyncers": "true"` and `"gasPaymentEnforcement": [{ "type": "none" }]` are intentional.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/relayer.json:1-5
Timestamp: 2024-10-11T19:05:20.591Z
Learning: In the file `guides/assets/hyperlane-use-tia-for-gas/relayer.json`, the settings `"allowLocalCheckpointSyncers": "true"` and `"gasPaymentEnforcement": [{ "type": "none" }]` are intentional.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/hyperlane-use-tia-for-gas.md:77-82
Timestamp: 2024-10-11T19:05:20.591Z
Learning: In the 'hyperlane-use-tia-for-gas.md' guide, it is intentional to include the seed phrase directly in the code examples.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/hyperlane-use-tia-for-gas.md:77-82
Timestamp: 2024-10-08T09:29:26.874Z
Learning: In the 'hyperlane-use-tia-for-gas.md' guide, it is intentional to include the seed phrase directly in the code examples.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/hyperlane-config.yaml:1-23
Timestamp: 2024-10-11T19:05:20.591Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/hyperlane-config.yaml`, it's intentional to use the same signer phrase across multiple network configurations (`localwasm` and `stride-internal-1`).
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/hyperlane-config.yaml:1-23
Timestamp: 2024-10-08T09:26:23.244Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/hyperlane-config.yaml`, it's intentional to use the same signer phrase across multiple network configurations (`localwasm` and `stride-internal-1`).
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml:29-37
Timestamp: 2024-10-08T09:27:02.351Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml`, it's intentional to set the multisig threshold to 1 and to only define validators for the `localwasm` network (domain 963).
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml:29-37
Timestamp: 2024-10-11T19:05:20.591Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml`, it's intentional to set the multisig threshold to 1 and to only define validators for the `localwasm` network (domain 963).
🪛 LanguageTool
guides/reset-state.md
[uncategorized] ~133-~133: Use a comma before ‘and’ if it connects two independent clauses (unless they are closely connected and short).
Context: ...hese data directories will be re-created and you will see your chain starting at blo...
(COMMA_COMPOUND_SENTENCE)
[style] ~133-~133: This sentence contains multiple usages of the word “again”. Consider removing or replacing it.
Context: ...e your chain starting at block height 1 again.
(REPETITION_OF_AGAIN)
74d709b
to
eba488f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
♻️ Duplicate comments (2)
tutorials/docker-compose.md (2)
113-116
:.gm
directory still not created – build will failThe build stage never initialises
$HOME/.gm
, yet the runtime stage copies it.
Docker build will error out with “no such file or directory: /root/.gm”.
124-125
: Rollup-ID mismatch (gmd
vsgm
) will break sequencer ↔ rollup communication
Dockerfile
starts the node with--rollkit.sequencer_rollup_id gmd
compose.yaml
starts the chain & sequencer withgm
.These strings must be identical. Pick one value (e.g.
gmd
) and use it everywhere.-CMD [ "start", "--rollkit.aggregator", "--rollkit.sequencer_rollup_id", "gmd"] +CMD [ "start", "--rollkit.aggregator", "--rollkit.sequencer_rollup_id", "gm"] ... "--rollkit.sequencer_rollup_id", - "gm", + "gmd", ... - command: ["-listen-all", "-rollup-id=gm"] + command: ["-listen-all", "-rollup-id=gmd"]Also applies to: 174-176, 200-201
🧹 Nitpick comments (1)
guides/reset-state.md (1)
17-18
: Grammar nitpick – “build our chain” → “build your chain”-In order to complete this guide, you will need to have completed either the [quick start tutorial](/tutorials/quick-start.md) or the [build our chain tutorial](/tutorials/gm-world.md). +In order to complete this guide, you will need to have completed either the [quick-start tutorial](/tutorials/quick-start.md) or the [build your chain tutorial](/tutorials/gm-world.md).
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (5)
guides/reset-state.md
(2 hunks)learn/building-and-deploying-a-rollup.md
(0 hunks)tutorials/da/local-da.md
(2 hunks)tutorials/da/overview.md
(1 hunks)tutorials/docker-compose.md
(9 hunks)
💤 Files with no reviewable changes (1)
- learn/building-and-deploying-a-rollup.md
🚧 Files skipped from review as they are similar to previous changes (2)
- tutorials/da/local-da.md
- tutorials/da/overview.md
🧰 Additional context used
🧠 Learnings (2)
guides/reset-state.md (10)
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml:1-23
Timestamp: 2024-10-11T19:05:20.591Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml`, it's intentional to use the same mnemonic for both "localwasm" and "stride-internal-1" networks.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml:1-23
Timestamp: 2024-10-08T09:26:38.099Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml`, it's intentional to use the same mnemonic for both "localwasm" and "stride-internal-1" networks.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/relayer.json:1-5
Timestamp: 2024-10-08T09:25:31.642Z
Learning: In the file `guides/assets/hyperlane-use-tia-for-gas/relayer.json`, the settings `"allowLocalCheckpointSyncers": "true"` and `"gasPaymentEnforcement": [{ "type": "none" }]` are intentional.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/relayer.json:1-5
Timestamp: 2024-10-11T19:05:20.591Z
Learning: In the file `guides/assets/hyperlane-use-tia-for-gas/relayer.json`, the settings `"allowLocalCheckpointSyncers": "true"` and `"gasPaymentEnforcement": [{ "type": "none" }]` are intentional.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/hyperlane-use-tia-for-gas.md:77-82
Timestamp: 2024-10-11T19:05:20.591Z
Learning: In the 'hyperlane-use-tia-for-gas.md' guide, it is intentional to include the seed phrase directly in the code examples.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/hyperlane-use-tia-for-gas.md:77-82
Timestamp: 2024-10-08T09:29:26.874Z
Learning: In the 'hyperlane-use-tia-for-gas.md' guide, it is intentional to include the seed phrase directly in the code examples.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/hyperlane-config.yaml:1-23
Timestamp: 2024-10-11T19:05:20.591Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/hyperlane-config.yaml`, it's intentional to use the same signer phrase across multiple network configurations (`localwasm` and `stride-internal-1`).
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/hyperlane-config.yaml:1-23
Timestamp: 2024-10-08T09:26:23.244Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/hyperlane-config.yaml`, it's intentional to use the same signer phrase across multiple network configurations (`localwasm` and `stride-internal-1`).
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml:29-37
Timestamp: 2024-10-08T09:27:02.351Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml`, it's intentional to set the multisig threshold to 1 and to only define validators for the `localwasm` network (domain 963).
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml:29-37
Timestamp: 2024-10-11T19:05:20.591Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/hyperlane-config-2.yaml`, it's intentional to set the multisig threshold to 1 and to only define validators for the `localwasm` network (domain 963).
tutorials/docker-compose.md (2)
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/wasmd.Dockerfile:5-6
Timestamp: 2024-10-08T09:18:01.381Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/wasmd.Dockerfile`, the project chooses not to use a `.dockerignore` file during Docker builds.
Learnt from: assafmo
PR: rollkit/docs#390
File: guides/assets/hyperlane-use-tia-for-gas/wasmd.Dockerfile:5-6
Timestamp: 2024-10-11T19:05:20.591Z
Learning: In `guides/assets/hyperlane-use-tia-for-gas/wasmd.Dockerfile`, the project chooses not to use a `.dockerignore` file during Docker builds.
🪛 LanguageTool
guides/reset-state.md
[uncategorized] ~133-~133: Use a comma before ‘and’ if it connects two independent clauses (unless they are closely connected and short).
Context: ...hese data directories will be re-created and you will see your chain starting at blo...
(COMMA_COMPOUND_SENTENCE)
[style] ~133-~133: This sentence contains multiple usages of the word “again”. Consider removing or replacing it.
Context: ...e your chain starting at block height 1 again.
(REPETITION_OF_AGAIN)
tutorials/docker-compose.md
[uncategorized] ~150-~150: Possible missing comma found.
Context: ...er Compose file {#docker-compose-file} Next we need to create our compose.yaml
fi...
(AI_HYDRA_LEO_MISSING_COMMA)
Overview
Since the wordl tutorial is removed of the repo we needed to do some housekeeping to point to the right tutorial.
Summary by CodeRabbit