Skip to content

Commit 21fe686

Browse files
committed
feat: gnosis chain deployed
1 parent 7fc0772 commit 21fe686

File tree

7 files changed

+3099
-1
lines changed

7 files changed

+3099
-1
lines changed

packages/contracts/cli/config/domains.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,14 @@
166166
"environments": ["MainnetProduction"],
167167
"realm": "spoke"
168168
},
169+
{
170+
"name": "Gnosis",
171+
"id": 100,
172+
"rpc": "https://gnosis-rpc.publicnode.com",
173+
"verifierUrl": "https://api.gnosisscan.io/api",
174+
"environments": ["MainnetProduction"],
175+
"realm": "spoke"
176+
},
169177
{
170178
"name": "Scroll Sepolia",
171179
"id": 534351,

packages/contracts/cli/config/spoke.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,5 +148,11 @@
148148
"domainName": "Ronin",
149149
"domainId": 2020,
150150
"environment": "MainnetProduction"
151+
},
152+
{
153+
"address": "0xe0F010e465f15dcD42098dF9b99F1038c11B3056",
154+
"domainName": "Gnosis",
155+
"domainId": 100,
156+
"environment": "MainnetProduction"
151157
}
152158
]

packages/contracts/deployments/index.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@ import ProductionSpokeGatewayMode from './production/34443/SpokeGateway.json';
110110
import ProductionEverclearSpokeUnichain from './production/130/EverclearSpoke.json';
111111
import ProductionSpokeGatewayUnichain from './production/130/SpokeGateway.json';
112112

113+
import ProductionEverclearSpokeGnosis from './production/100/EverclearSpoke.json';
114+
import ProductionSpokeGatewayGnosis from './production/100/SpokeGateway.json';
115+
113116
export const Deployments = {
114117
local: {},
115118
production: {
@@ -209,6 +212,10 @@ export const Deployments = {
209212
everclear: ProductionEverclearSpokeUnichain,
210213
gateway: ProductionSpokeGatewayUnichain,
211214
},
215+
100: {
216+
everclear: ProductionEverclearSpokeGnosis,
217+
gateway: ProductionSpokeGatewayGnosis,
218+
},
212219
},
213220
staging: {
214221
//////// Testnet Staging Deployments ////////

0 commit comments

Comments
 (0)