From be234b1c89ccc6ae7bd166cf447fb0718fe36339 Mon Sep 17 00:00:00 2001 From: pharr117 Date: Sat, 13 Apr 2024 03:54:11 -0400 Subject: [PATCH] Fix docs --- docs/README.md | 2 +- docs/reference/custom_indexer_walkthrough.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index 8775690a..f35e2216 100644 --- a/docs/README.md +++ b/docs/README.md @@ -3,6 +3,6 @@ The documentation found here is in-repo documentation intended for use in documenting and explaining workflows. * [Usage](./usage/README.md) - Basic and advanced usage of the indexer -* [Workflow](./application-workflow/README.md) - Workflow documentation on how the indexer works +* [Reference](./reference/README.md) - Reference documentation on how the indexer works and how to use the codebase as an SDK You may find more information in the [Cosmos Indexer Wiki](https://github.com/DefiantLabs/cosmos-indexer/wiki). diff --git a/docs/reference/custom_indexer_walkthrough.md b/docs/reference/custom_indexer_walkthrough.md index e69447d7..a6b98987 100644 --- a/docs/reference/custom_indexer_walkthrough.md +++ b/docs/reference/custom_indexer_walkthrough.md @@ -88,7 +88,9 @@ type IBCTransactionType struct { type IBCTransaction struct { ID uint `gorm:"primaryKey"` SourceChannel string + SourcePort string DestinationChannel string + DestinationPort string MessageID uint `gorm:"uniqueIndex"` Message models.Message IBCMsgType MsgType