From 02639690400c8b958bcc524a03b7abed120d37e8 Mon Sep 17 00:00:00 2001 From: jacksmithinsulander <666.jack.smith@protonmail.com> Date: Tue, 31 Dec 2024 12:58:42 +0100 Subject: [PATCH] fixed address --- fees/blazingbot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fees/blazingbot.ts b/fees/blazingbot.ts index 53b5883ee7..86601db828 100644 --- a/fees/blazingbot.ts +++ b/fees/blazingbot.ts @@ -3,7 +3,7 @@ import { CHAIN } from "../helpers/chains"; import { getSolanaReceived } from "../helpers/token"; const fethcFeesSolana = async (options: FetchOptions) => { - const dailyFees = await getSolanaReceived({ options, target: '47hEzz83VFR23rLTEeVm9A7eFzjJwjvdupPPmX3cePqF' }) + const dailyFees = await getSolanaReceived({ options, target: '4TTaKEKLjh1WJZttu1kvDtZt9N4G854C6ZKPAprZFRuy' }) return { dailyFees, dailyRevenue: dailyFees, } }