11 lines
330 B
TypeScript
11 lines
330 B
TypeScript
import { ChainId } from '@/types'
|
|
|
|
export const GRAPHQL_LIMIT = 1000
|
|
|
|
/**
|
|
* todo: add support for subgraph on thegraph & API keys
|
|
*/
|
|
export const RELAYER_SUBGRAPH_LIST: Record<number, string> = {
|
|
[ChainId.MAINNET]: process.env.MAINNET_SUBGRAPH ?? 'https://tornadocash-rpc.com/subgraphs/name/tornadocash/tornado-governance',
|
|
}
|