Skip to content

Commit

Permalink
feat: 5384 bridge test to x1 testnet via fast path (#5448)
Browse files Browse the repository at this point in the history
* feat: x1 testnet config

* feat: subgraph network id for x1 testnet

* feat: x1 testnet deployments

* fix: init config for x1 testnet

* feat: x1 testnet subgraph config

* feat: downgrade graph-cli version to 0.20.1

* fix: subgraph apiVersion to 0.0.4

* Revert "fix: subgraph apiVersion to 0.0.4"

This reverts commit cd9c3c9.

* Revert "feat: downgrade graph-cli version to 0.20.1"

This reverts commit 51551a4.

* chore: yarn.lock

* feat: x1 testnet graph client

* feat: x1 testnet ops

* fix: x1 testnet subgraph

* feat: hh task for admin connector

* chore: fix conflict

* chore: delete test code

* chore: delete base subgraph template
  • Loading branch information
liu-zhipeng authored Jan 5, 2024
1 parent 6816748 commit 6278f48
Show file tree
Hide file tree
Showing 62 changed files with 236,475 additions and 263,598 deletions.
4 changes: 4 additions & 0 deletions ops/testnet/prod/backend/config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ locals {
"1650553703" = {
providers = ["https://goerli.base.org"]
}
"2016506996" = {
providers = ["https://testrpc.x1.tech", "https://x1testrpc.okx.com/"]
}
}

# The following are defined in variables.tf and don't map to the
Expand Down Expand Up @@ -71,6 +74,7 @@ locals {
"1735353714" = { confirmations = 10 }
"9991" = { confirmations = 200 }
"1650553703" = { confirmations = 10 }
"2016506996" = { confirmations = 10 }
}
environment = var.stage
healthUrls = {
Expand Down
26 changes: 25 additions & 1 deletion ops/testnet/prod/core/config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ locals {
"1650553703" = {
providers = ["https://base-goerli.g.alchemy.com/v2/${var.basegoerli_alchemy_key_0}", "https://lb.drpc.org/ogrpc?network=base-goerli&dkey=${var.drpc_key}", "https://goerli.base.org"]
}
"2016506996" = {
providers = ["https://testrpc.x1.tech", "https://x1testrpc.okx.com/"]
}
}
web3SignerUrl = "https://${module.sequencer_web3signer.service_endpoint}"
relayers = [
Expand Down Expand Up @@ -178,6 +181,12 @@ locals {
limit = 1
queueLimit = 1000000
subscribe = true
},
{
name = "2016506996"
limit = 1
queueLimit = 1000000
subscribe = true
}
# {
# name = "2053862260"
Expand Down Expand Up @@ -216,6 +225,11 @@ locals {
exchange = "sequencerX"
target = "1650553703"
keys = ["1650553703"]
},
{
exchange = "sequencerX"
target = "2016506996"
keys = ["2016506996"]
}
# {
# exchange = "sequencerX"
Expand Down Expand Up @@ -264,6 +278,9 @@ locals {
"1650553703" = {
providers = ["https://base-goerli.g.alchemy.com/v2/${var.basegoerli_alchemy_key_0}", "https://lb.drpc.org/ogrpc?network=base-goerli&dkey=${var.drpc_key}", "https://goerli.base.org"]
}
"2016506996" = {
providers = ["https://testrpc.x1.tech", "https://x1testrpc.okx.com/"]
}
}
cartographerUrl = "https://postgrest.testnet.connext.ninja"
web3SignerUrl = "https://${module.router_web3signer.service_endpoint}"
Expand Down Expand Up @@ -298,6 +315,9 @@ locals {
"1650553703" = {
providers = ["https://base-goerli.g.alchemy.com/v2/${var.basegoerli_alchemy_key_0}", "https://lb.drpc.org/ogrpc?network=base-goerli&dkey=${var.drpc_key}", "https://goerli.base.org"]
}
"2016506996" = {
providers = ["https://testrpc.x1.tech", "https://x1testrpc.okx.com/"]
}
}
gelatoApiKey = "${var.gelato_api_key}"
environment = var.stage
Expand Down Expand Up @@ -333,7 +353,8 @@ locals {
"1735353714" = 10,
# "2053862260" = 10,
"1735356532" = 10,
"1650553703" = 10
"1650553703" = 10,
"2016506996" = 10
}
messageQueue = {
connection = {
Expand Down Expand Up @@ -379,6 +400,9 @@ locals {
"1650553703" = {
providers = ["https://base-goerli.g.alchemy.com/v2/${var.basegoerli_alchemy_key_0}", "https://lb.drpc.org/ogrpc?network=base-goerli&dkey=${var.drpc_key}", "https://goerli.base.org"]
}
"2016506996" = {
providers = ["https://testrpc.x1.tech", "https://x1testrpc.okx.com/"]
}
}
environment = var.stage
web3SignerUrl = "https://${module.relayer_web3signer.service_endpoint}"
Expand Down
116,949 changes: 60,465 additions & 56,484 deletions packages/adapters/subgraph/.graphclient/index.ts

Large diffs are not rendered by default.

101,365 changes: 52,509 additions & 48,856 deletions packages/adapters/subgraph/.graphclient/schema.graphql

Large diffs are not rendered by default.

Loading

0 comments on commit 6278f48

Please sign in to comment.