|
| 1 | +[indexer] |
| 2 | +indexer_address = "${INDEXER_SERVICE_INDEXER_ADDRESS}" |
| 3 | +operator_mnemonic = "${INDEXER_SERVICE_MNEMONIC}" |
| 4 | + |
| 5 | +[database] |
| 6 | +host = "${INDEXER_SERVICE_POSTGRES_HOST}" |
| 7 | +user = "${INDEXER_SERVICE_POSTGRES_USERNAME}" |
| 8 | +password = "${INDEXER_SERVICE_POSTGRES_PASSWORD}" |
| 9 | +database = "${INDEXER_SERVICE_POSTGRES_DATABASE}" |
| 10 | + |
| 11 | +[graph_node] |
| 12 | +# URL to your graph-node's query endpoint |
| 13 | +query_url = "${INDEXER_SERVICE_GRAPH_NODE_QUERY_ENDPOINT}" |
| 14 | +# URL to your graph-node's status endpoint |
| 15 | +status_url = "${INDEXER_SERVICE_GRAPH_NODE_STATUS_ENDPOINT}" |
| 16 | + |
| 17 | +[subgraphs.network] |
| 18 | +# Query URL for the Graph Network subgraph. |
| 19 | +query_url = "${INDEXER_SERVICE_NETWORK_SUBGRAPH_ENDPOINT}" |
| 20 | +deployment_id = "${INDEXER_SERVICE_NETWORK_SUBGRAPH_DEPLOYMENT}" |
| 21 | + |
| 22 | +# [subgraphs.escrow] |
| 23 | +# INDEXER_SUBGRAPHS__ESCROW__QUERY_URL |
| 24 | +# query_url = "" |
| 25 | +# INDEXER_SUBGRAPHS__ESCROW__DEPLOYMENT_ID |
| 26 | +# deployment_id = "" |
| 27 | + |
| 28 | +[blockchain] |
| 29 | +chain_id = 42161 |
| 30 | +# Contract address of TAP's receipt aggregate voucher (RAV) verifier. |
| 31 | +receipts_verifier_address = "0x33f9E93266ce0E108fc85DdE2f71dab555A0F05a" |
| 32 | + |
| 33 | +############################################## |
| 34 | +# Specific configurations to indexer-service # |
| 35 | +############################################## |
| 36 | +[service] |
| 37 | +# Host and port to serve the indexer-service query endpoint. This one should have a |
| 38 | +# public ingress. |
| 39 | +host_and_port = "0.0.0.0:${INDEXER_SERVICE_PORT}" |
| 40 | +# Serve the network subgraph on `common.server.host_and_port`/network |
| 41 | +# INDEXER_SERVICE__SERVE_NETWORK_SUBGRAPH |
| 42 | +# serve_network_subgraph = false |
| 43 | +# Serve the escrow subgraph on `common.server.host_and_port`/escrow |
| 44 | +# INDEXER_SERVICE__SERVE_ESCROW_SUBGRAPH |
| 45 | +# serve_escrow_subgraph = false |
| 46 | + |
| 47 | +free_query_auth_token = "${INDEXER_SERVICE_FREE_QUERY_AUTH_TOKEN}" |
| 48 | + |
| 49 | +######################################## |
| 50 | +# Specific configurations to tap-agent # |
| 51 | +######################################## |
| 52 | +[tap.sender_aggregator_endpoints] |
| 53 | +# Key-Value of all senders and their aggregator endpoints |
| 54 | +0xDDE4cfFd3D9052A9cb618fC05a1Cd02be1f2F467 = "https://tap-aggregator.network.thegraph.com" |
0 commit comments