You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Initial plan for issue
* docs: add passthrough command documentation for consensus nodes
Add comprehensive documentation for the passthrough command introduced in celestia-app v4.0.0. This command allows users to invoke queries on historical app versions, which is useful for querying data from before major version upgrades.
Co-authored-by: jcstein <[email protected]>
* fix: configure CodeQL to scan only JavaScript/TypeScript languages
Co-authored-by: jcstein <[email protected]>
* fix: update CodeQL configuration to include Go language scanning
Co-authored-by: jcstein <[email protected]>
* Remove unrelated CodeQL configuration files
Co-authored-by: jcstein <[email protected]>
* Apply suggestions from code review
* Apply suggestions from code review
---------
Co-authored-by: copilot-swe-agent[bot] <[email protected]>
Co-authored-by: jcstein <[email protected]>
Copy file name to clipboardExpand all lines: how-to-guides/consensus-node.md
+64Lines changed: 64 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -529,3 +529,67 @@ To reduce the log level, you can modify the `log_level` field in your `config.to
529
529
-log_level = "info"
530
530
+log_level = "*:error,p2p:info,state:info"
531
531
```
532
+
533
+
### Passthrough command for historical queries
534
+
535
+
Starting with celestia-app v4 the `passthrough` command allows you to invoke queries on historical app versions. This is particularly useful when you need to query data from before a major version upgrade occurred.
536
+
537
+
#### When to use the passthrough command
538
+
539
+
The passthrough command is useful in scenarios where:
540
+
541
+
- You need to query state or transactions that existed before a major app version upgrade
542
+
- You're running a post-upgrade node but need to access data using the query format from a previous version
543
+
- You're debugging issues related to version compatibility after an upgrade
0 commit comments