From 66a264a2ce4ed9e93afb13047d5002a56279f9de Mon Sep 17 00:00:00 2001 From: Gosuto Inzasheru Date: Thu, 26 Sep 2024 14:38:55 +0200 Subject: [PATCH 1/2] chore: update base gauge and blocks subgraph url --- src/lib/config/base/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/config/base/index.ts b/src/lib/config/base/index.ts index 325f7d03a7..25e0fe2a33 100644 --- a/src/lib/config/base/index.ts +++ b/src/lib/config/base/index.ts @@ -27,18 +27,18 @@ const config: Config = { explorer: 'https://basescan.org', explorerName: 'BaseScan', subgraph: - 'https://gateway.thegraph.com/api/${keys.graph}/subgraphs/id/E7XyutxXVLrp8njmjF16Hh38PCJuHm12RRyMt5ma4ctX', + `https://gateway.thegraph.com/api/${keys.graph}/subgraphs/id/E7XyutxXVLrp8njmjF16Hh38PCJuHm12RRyMt5ma4ctX`, balancerApi: 'https://api.balancer.fi', poolsUrlV2: '', subgraphs: { main: [ - 'https://gateway.thegraph.com/api/${keys.graph}/subgraphs/id/E7XyutxXVLrp8njmjF16Hh38PCJuHm12RRyMt5ma4ctX', + `https://gateway.thegraph.com/api/${keys.graph}/subgraphs/id/E7XyutxXVLrp8njmjF16Hh38PCJuHm12RRyMt5ma4ctX`, ], aave: '', gauge: - 'https://api.studio.thegraph.com/query/24660/balancer-gauges-base/version/latest', + `https://gateway.thegraph.com/api/${keys.graph}/subgraphs/id/CfBvJNYsbKZdxXzaCtNc6dUbHH6TjDupprjKKo9gnmwg`, blocks: - 'https://api.studio.thegraph.com/query/48427/bleu-base-blocks/version/latest', + `https://gateway.thegraph.com/api/${keys.graph}/subgraphs/id/CcK8LjrekkGuvBaic1Wo4xbi7eusGsgwT5cV4qRsKz4Z`, }, bridgeUrl: 'https://bridge.base.org/', supportsEIP1559: false, From f774cfe3e241accfc154d7f5a21da1716f4af6df Mon Sep 17 00:00:00 2001 From: Gosuto Inzasheru Date: Thu, 26 Sep 2024 14:45:59 +0200 Subject: [PATCH 2/2] style: lint --- src/lib/config/base/index.ts | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/lib/config/base/index.ts b/src/lib/config/base/index.ts index 25e0fe2a33..4b8879f34c 100644 --- a/src/lib/config/base/index.ts +++ b/src/lib/config/base/index.ts @@ -26,8 +26,7 @@ const config: Config = { publicRpc: 'https://mainnet.base.org', explorer: 'https://basescan.org', explorerName: 'BaseScan', - subgraph: - `https://gateway.thegraph.com/api/${keys.graph}/subgraphs/id/E7XyutxXVLrp8njmjF16Hh38PCJuHm12RRyMt5ma4ctX`, + subgraph: `https://gateway.thegraph.com/api/${keys.graph}/subgraphs/id/E7XyutxXVLrp8njmjF16Hh38PCJuHm12RRyMt5ma4ctX`, balancerApi: 'https://api.balancer.fi', poolsUrlV2: '', subgraphs: { @@ -35,10 +34,8 @@ const config: Config = { `https://gateway.thegraph.com/api/${keys.graph}/subgraphs/id/E7XyutxXVLrp8njmjF16Hh38PCJuHm12RRyMt5ma4ctX`, ], aave: '', - gauge: - `https://gateway.thegraph.com/api/${keys.graph}/subgraphs/id/CfBvJNYsbKZdxXzaCtNc6dUbHH6TjDupprjKKo9gnmwg`, - blocks: - `https://gateway.thegraph.com/api/${keys.graph}/subgraphs/id/CcK8LjrekkGuvBaic1Wo4xbi7eusGsgwT5cV4qRsKz4Z`, + gauge: `https://gateway.thegraph.com/api/${keys.graph}/subgraphs/id/CfBvJNYsbKZdxXzaCtNc6dUbHH6TjDupprjKKo9gnmwg`, + blocks: `https://gateway.thegraph.com/api/${keys.graph}/subgraphs/id/CcK8LjrekkGuvBaic1Wo4xbi7eusGsgwT5cV4qRsKz4Z`, }, bridgeUrl: 'https://bridge.base.org/', supportsEIP1559: false,