├── .env ├── .gitignore ├── FAQ.md ├── README.md ├── identity └── .gitkeep └── logs └── .gitkeep /.env: -------------------------------------------------------------------------------- 1 | INDEXER_LOGGER_FILE=./logs/indexer -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainbowprotocol-xyz/rbo_indexer_testnet/HEAD/.gitignore -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainbowprotocol-xyz/rbo_indexer_testnet/HEAD/FAQ.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rainbowprotocol-xyz/rbo_indexer_testnet/HEAD/README.md -------------------------------------------------------------------------------- /identity/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------