@@ -327,7 +327,7 @@ export const testnetL2ChainConfig: L2ChainConfig = {
327327 ...DefaultNetworkDBMapSizeConfig ,
328328} ;
329329
330- export const ignitionL2ChainConfig : L2ChainConfig = {
330+ export const mainnetL2ChainConfig : L2ChainConfig = {
331331 l1ChainId : 1 ,
332332 testAccounts : false ,
333333 sponsoredFPC : false ,
@@ -336,9 +336,9 @@ export const ignitionL2ChainConfig: L2ChainConfig = {
336336 seqMinTxsPerBlock : 0 ,
337337 seqMaxTxsPerBlock : 0 ,
338338 realProofs : true ,
339- snapshotsUrls : [ `${ SNAPSHOTS_URL } /ignition- mainnet/` ] ,
339+ snapshotsUrls : [ `${ SNAPSHOTS_URL } /mainnet/` ] ,
340340 autoUpdate : 'notify' ,
341- autoUpdateUrl : 'https://storage.googleapis.com/aztec-mainnet/auto-update/ignition- mainnet.json' ,
341+ autoUpdateUrl : 'https://storage.googleapis.com/aztec-mainnet/auto-update/mainnet.json' ,
342342 maxTxPoolSize : 100_000_000 , // 100MB
343343 publicIncludeMetrics,
344344 publicMetricsCollectorUrl : 'https://telemetry.alpha-testnet.aztec-labs.com/v1/metrics' ,
@@ -469,8 +469,8 @@ export function getL2ChainConfig(networkName: NetworkNames): L2ChainConfig | und
469469 config = { ...testnetL2ChainConfig } ;
470470 } else if ( networkName === 'staging-ignition' ) {
471471 config = { ...stagingIgnitionL2ChainConfig } ;
472- } else if ( networkName === 'ignition ' ) {
473- config = { ...ignitionL2ChainConfig } ;
472+ } else if ( networkName === 'mainnet ' ) {
473+ config = { ...mainnetL2ChainConfig } ;
474474 } else if ( networkName === 'next-net' ) {
475475 config = { ...nextNetL2ChainConfig } ;
476476 } else if ( networkName === 'devnet' ) {
0 commit comments