-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MTG-1242 Fix build search query for Fungible tokens. MTG-1031 Fix tes… (
#379) * MTG-1242 Fix build search query for Fungible tokens. MTG-1031 Fix test for fungible tokens. * MTG-1242_MTG-1031 Fix issue * MTG-1245 Fixed integration api test for Fungible tokens, fixed related bugs. - Fixed integration test_token_type test. - Fixed show_fungible option for SearchAssets requests. - Removed switching TokenType depending on the show_fungible option. * MTG-1245 Rollback some changes * MTG-1245 Rollback some changes * MTG-1245 fix ftm
- Loading branch information
Showing
9 changed files
with
191 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
## Building the Project | ||
|
||
Clone the repository and navigate to the project directory: | ||
|
||
```bash | ||
git clone https://github.com/metaplex-foundation/aura.git | ||
cd nft_ingester | ||
``` | ||
|
||
Build the project using Cargo: | ||
|
||
```bash | ||
cargo build --bin synchronizer | ||
``` | ||
|
||
## Running the Service | ||
|
||
Run to see the full list of available arguments: | ||
|
||
```bash | ||
./target/debug/synchronizer -h | ||
``` | ||
|
||
Run Synchronizer with minimum functionality. | ||
|
||
```bash | ||
./target/debug/synchronizer \ | ||
--pg-database-url postgres://solana:solana@localhost:5432/aura_db | ||
``` | ||
|
||
|
||
## Tips for local debugging/testing | ||
|
||
To increase log verbosity, set the log level to debug: | ||
` --log-level debug` | ||
|
||
To fill the local Redis with messages you can use any other Redis that is available. | ||
There is a script that will copy existing messages from one Redis and forward copies of these messages to another one. | ||
`nft_ingester/scripts/transfer_redis_messages.py` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.