From 626e1edf3032e723dcabfd22aae73761f86ec026 Mon Sep 17 00:00:00 2001 From: Sam MacPherson Date: Fri, 1 Nov 2024 07:18:45 -0400 Subject: [PATCH] add base support --- src/config/index.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/config/index.ts b/src/config/index.ts index 33ffd0d..ba0d139 100644 --- a/src/config/index.ts +++ b/src/config/index.ts @@ -1,5 +1,5 @@ import { type Address, zeroAddress } from 'viem' -import { gnosis, mainnet } from 'viem/chains' +import { base, gnosis, mainnet } from 'viem/chains' export interface Config { tenderly: TenderlyConfig @@ -38,6 +38,11 @@ export function getConfig(getEnvVariable: (key: string) => string, spellsRepoPat chainId: gnosis.id, sparkSpellExecutor: '0xc4218C1127cB24a0D6c1e7D25dc34e10f2625f5A', }, + [base.id]: { + name: 'base', + chainId: base.id, + sparkSpellExecutor: '0xF93B7122450A50AF3e5A76E1d546e95Ac1d0F579', + }, }, deployer: zeroAddress, spellsRepoPath,