Skip to content

Commit

Permalink
Merge pull request #164 from taikoxyz/fix-typos
Browse files Browse the repository at this point in the history
fix: typos; chore: documentation to test project adapters
  • Loading branch information
myronrotter authored Nov 18, 2024
2 parents 4ccf22c + 625a785 commit 472111d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/go-fmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- main

jobs:
go-famt:
go-fmt:
runs-on: ubuntu-latest

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- main

jobs:
test:
go-test:
runs-on: ubuntu-latest

steps:
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,14 @@ An example adapter for tracking OrderFulfilled Event on the OKX marketplace can

First, add a new adapter in `cmd/adapter.go`. Second, add adapter to switch case of `cmd/cmd.go`'s function `executeCommand`. Test out the CLI with `go run .` from project root.

### 4. Create a Pull Request
### 4. Add a Test to your Indexer

Add at least one test case to your project's adapter. For an example, see [here](./adapters/projects/okx/order_fulfilled_test.go).

### 5. Create a Pull Request

Create a pull request (PR) on GitHub to merge your changes into the main branch. Provide a clear description of the changes and the protocol added.

### 5. Review and Merge
### 6. Review and Merge

Wait for the PR to be reviewed by the maintainers. Once approved, your changes will be merged, and the protocol info will be added to trailblazers.

0 comments on commit 472111d

Please sign in to comment.