Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ops/mainnet/staging/backend/config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ locals {
"6450786" = { confirmations = 50 }
"6778479" = { confirmations = 100 }
"1818848877" = { confirmations = 10 }
"1836016741" = { confirmations = 10 }
}
environment = var.stage
# healthUrls = {
Expand Down
26 changes: 25 additions & 1 deletion ops/mainnet/staging/core/config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,9 @@ locals {
"1818848877" = {
providers = ["https://linea-mainnet.infura.io/v3/${var.infura_key}", "https://rpc.linea.build"]
}
"1836016741" = {
providers = ["https://mainnet.mode.network/", "https://1rpc.io/mode"]
}
}
web3SignerUrl = "https://${module.sequencer_web3signer.service_endpoint}"
relayers = [
Expand Down Expand Up @@ -199,6 +202,12 @@ locals {
limit = 1
queueLimit = 1000000
subscribe = true
},
{
name = "1836016741"
limit = 1
queueLimit = 1000000
subscribe = true
}
]
bindings = [
Expand Down Expand Up @@ -242,6 +251,11 @@ locals {
target = "1818848877"
keys = ["1818848877"]
},
{
exchange = "sequencerX"
target = "1836016741"
keys = ["1836016741"]
},
]
executerTimeout = 300000
prefetch = 1
Expand Down Expand Up @@ -290,6 +304,9 @@ locals {
"1818848877" = {
providers = ["https://linea-mainnet.infura.io/v3/${var.infura_key}", "https://rpc.linea.build"]
}
"1836016741" = {
providers = ["https://mainnet.mode.network/", "https://1rpc.io/mode"]
}
}
cartographerUrl = "https://postgrest.mainnet.connext.ninja"
web3SignerUrl = "https://${module.router_web3signer.service_endpoint}"
Expand Down Expand Up @@ -328,6 +345,9 @@ locals {
"1818848877" = {
providers = ["https://linea-mainnet.infura.io/v3/${var.infura_key}", "https://rpc.linea.build"]
}
"1836016741" = {
providers = ["https://mainnet.mode.network/", "https://1rpc.io/mode"]
}
}
gelatoApiKey = "${var.gelato_api_key}"
environment = var.stage
Expand Down Expand Up @@ -364,7 +384,8 @@ locals {
"1634886255" = 10,
"6450786" = 10,
"6778479" = 10,
"1818848877" = 10
"1818848877" = 10,
"1836016741" = 10
}
messageQueue = {
connection = {
Expand Down Expand Up @@ -413,6 +434,9 @@ locals {
"1818848877" = {
providers = ["https://linea-mainnet.infura.io/v3/${var.infura_key}", "https://rpc.linea.build"]
}
"1836016741" = {
providers = ["https://mainnet.mode.network/", "https://1rpc.io/mode"]
}
}
environment = var.stage
web3SignerUrl = "https://${module.relayer_web3signer.service_endpoint}"
Expand Down
Loading