Skip to content

Commit c1be347

Browse files
committed
move incentives on base
1 parent fe763ef commit c1be347

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/components/c2d/compute_engine_docker.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ import type {
2828
import {
2929
BENCHMARK_MONITORING_ADDRESS,
3030
getConfiguration,
31-
SEPOLIA_CHAIN_ID,
32-
USDC_TOKEN
31+
BASE_CHAIN_ID,
32+
USDC_TOKEN_ON_BASE
3333
} from '../../utils/config.js'
3434
import { C2DEngine } from './compute_engine_base.js'
3535
import { C2DDatabase } from '../database/C2DDatabase.js'
@@ -215,11 +215,11 @@ export class C2DEngineDocker extends C2DEngine {
215215
price: 1
216216
}))
217217

218-
const sepoliaChainId = SEPOLIA_CHAIN_ID
219-
const usdcToken = USDC_TOKEN
218+
const benchmarkEnvId = BASE_CHAIN_ID
219+
const usdcToken = USDC_TOKEN_ON_BASE
220220

221221
const benchmarkFees: ComputeEnvFeesStructure = {
222-
[sepoliaChainId]: [{ feeToken: usdcToken, prices: benchmarkPrices }]
222+
[benchmarkEnvId]: [{ feeToken: usdcToken, prices: benchmarkPrices }]
223223
}
224224

225225
const benchmarkEnv: C2DEnvironmentConfig = {

0 commit comments

Comments
 (0)