Skip to content

Commit

Permalink
fix read mes (#3168)
Browse files Browse the repository at this point in the history
  • Loading branch information
Defi-Moses authored Sep 22, 2024
1 parent 4cb5d73 commit 1891fed
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 11 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ root
│ ├── <a href="./packages/coverage-aggregator">coverage-aggregator</a>: Javascript coverage aggregator based on <a href="https://www.npmjs.com/package/nyc">nyc</a>
│ ├── <a href="./packages/docs">docs</a>: Docasaurus documentation. Note: this is not yet in use, and docs are still maintained on gitbook
│ ├── <a href="./packages/explorer-ui">explorer-ui</a>: Explorer UI
│ ├── <a href="./packages/rfq-indexer">rfq-indexer</a>: RFQ indexer
│ ├── <a href="./packages/rest-api">rest-api</a>: Rest API
│ ├── <a href="./packages/sdk-router">sdk-router</a>: SDK router
│ ├── <a href="./packages/solidity-devops">solidity-devops</a>: provides a set of tools and scripts to help with the development of Solidity smart contracts
Expand Down
23 changes: 12 additions & 11 deletions packages/rfq-indexer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@ The RFQ (Request for Quote) Indexer is a system designed to index and track brid
- API: Used by front-end applications, other services, or developers to query the indexed data.

## Directory Structure
rfq-indexer/
├── api/ # API service
│ ├── src/ # API source code
│ ├── package.json # API dependencies and scripts
│ └── README.md # API documentation
├── indexer/ # Indexer service
│ ├── src/ # Indexer source code
│ ├── abis/ # Contract ABIs
│ ├── package.json # Indexer dependencies and scripts
│ └── README.md # Indexer documentation
└── README.md # This file
<pre>
rfq-indexer
├── <a href="./api">api</a>: API service
│ ├── src/ : API source code
│ ├── package.json : API dependencies and scripts
│ ├── README.md : API documentation
├── <a href="./indexer">indexer</a>: Indexer service
│ ├── src/ : Indexer source code
│ ├── abis/ : Contract ABIs
│ ├── package.json : Indexer dependencies and scripts
│ ├── README.md : Indexer documentation
</pre>

0 comments on commit 1891fed

Please sign in to comment.