diff --git a/apps/furo/config.ts b/apps/furo/config.ts index b99f06d323..a714968fc5 100644 --- a/apps/furo/config.ts +++ b/apps/furo/config.ts @@ -12,6 +12,7 @@ export const SUPPORTED_CHAINS = [ ChainId.MOONRIVER, ChainId.OPTIMISM, ChainId.POLYGON, + ChainId.BTTC ] export type SupportedChainId = (typeof SUPPORTED_CHAINS)[number] diff --git a/config/graph/src/index.ts b/config/graph/src/index.ts index 603b259012..efb66b63b8 100644 --- a/config/graph/src/index.ts +++ b/config/graph/src/index.ts @@ -323,6 +323,7 @@ export const FURO_ENABLED_NETWORKS = [ ChainId.MOONRIVER, ChainId.OPTIMISM, ChainId.POLYGON, + ChainId.BTTC ] as const // TODO: Make typesafe @@ -339,6 +340,7 @@ export const FURO_SUBGRAPH_NAME: Record = { [ChainId.MOONRIVER]: 'sushi-subgraphs/furo-moonriver', [ChainId.OPTIMISM]: 'sushi-subgraphs/furo-optimism', [ChainId.POLYGON]: 'sushi-subgraphs/furo-polygon', + [ChainId.BTTC]: 'sushi-subgraphs/furo-bttc' } as const export const KASHI_SUBGRAPH_NAME: Record = { diff --git a/config/hardhat/src/index.ts b/config/hardhat/src/index.ts index 51bd6e9529..7d7df7f8d3 100644 --- a/config/hardhat/src/index.ts +++ b/config/hardhat/src/index.ts @@ -169,6 +169,14 @@ export const defaultConfig: HardhatUserConfig = { browserURL: 'https://andromeda-explorer.metis.io', }, }, + { + network: 'bttc', + chainId: 199, + urls: { + apiURL: 'https://api.bttcscan.com/api', + browserURL: 'https://bttcscan.com', + }, + }, ], apiKey: { mainnet: process.env.ETHERSCAN_API_KEY || '',