Skip to content

Commit 29979d7

Browse files
committed
Change mainnet references
1 parent c262bea commit 29979d7

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/deploy-fisherman-network.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,10 +123,10 @@ jobs:
123123
echo "USE_NETWORK_CONFIG=true" >> $GITHUB_ENV
124124
elif [[ "${{ inputs.l1_network }}" == "mainnet" ]]; then
125125
echo "NETWORK=mainnet" >> $GITHUB_ENV
126-
echo "NAMESPACE=ignition-fisherman-mainnet" >> $GITHUB_ENV
126+
echo "NAMESPACE=mainnet" >> $GITHUB_ENV
127127
echo "ETHEREUM_CHAIN_ID=1" >> $GITHUB_ENV
128128
echo "L1_NETWORK=mainnet" >> $GITHUB_ENV
129-
echo "SNAPSHOT_BUCKET_DIRECTORY=ignition-mainnet" >> $GITHUB_ENV
129+
echo "SNAPSHOT_BUCKET_DIRECTORY=mainnet" >> $GITHUB_ENV
130130
echo "USE_NETWORK_CONFIG=true" >> $GITHUB_ENV
131131
fi
132132

spartan/metrics/values.tmp.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ grafana:
123123
NEXT_SCENARIO_REGEX: "v[0-9]+-scenario|next-scenario"
124124
NEXT_NEXT_REGEX: "next-net"
125125
TESTNET_NAMESPACES_REGEX: "testnet|v[0-9]+-testnet"
126-
MAINNET_NAMESPACES_REGEX: "mainnet|v[0-9]+-mainnet|ignition|ignition-fisherman-mainnet"
126+
MAINNET_NAMESPACES_REGEX: "mainnet|v[0-9]+-mainnet|ignition"
127127
SLACK_WEBHOOK_URL: "http://127.0.0.1" # dummy value
128128
SLACK_WEBHOOK_STAGING_PUBLIC_URL: "http://127.0.0.1" # dummy value
129129
SLACK_WEBHOOK_STAGING_IGNITION_URL: "http://127.0.0.1" # dummy value

spartan/terraform/gke-cluster/auto-updater-config.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ resource "google_storage_bucket_object" "testnet" {
7575
})
7676
}
7777

78-
resource "google_storage_bucket_object" "ignition-mainnet" {
78+
resource "google_storage_bucket_object" "mainnet" {
7979
bucket = google_storage_managed_folder.aztec_mainnet_auto_update_folder.bucket
80-
name = "${google_storage_managed_folder.aztec_mainnet_auto_update_folder.name}ignition-mainnet.json"
80+
name = "${google_storage_managed_folder.aztec_mainnet_auto_update_folder.name}mainnet.json"
8181
content_type = "application/json"
8282
cache_control = "no-store"
8383
content = jsonencode({

yarn-project/cli/src/config/chain_l2_config.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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') {

yarn-project/foundation/src/config/network_name.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export type NetworkNames =
33
| 'staging-ignition'
44
| 'staging-public'
55
| 'testnet'
6-
| 'ignition'
6+
| 'mainnet'
77
| 'next-net'
88
| 'devnet';
99

@@ -17,8 +17,8 @@ export function getActiveNetworkName(name?: string): NetworkNames {
1717
return network;
1818
} else if (network === 'testnet' || network === 'alpha-testnet') {
1919
return 'testnet';
20-
} else if (network === 'ignition') {
21-
return 'ignition';
20+
} else if (network === 'mainnet') {
21+
return 'mainnet';
2222
} else if (network === 'next-net') {
2323
return 'next-net';
2424
} else if (network === 'devnet') {

0 commit comments

Comments
 (0)