From 8a9511b3a8129575a720a00aaf23f3988d411ad8 Mon Sep 17 00:00:00 2001 From: Ludovic Levalleux Date: Wed, 29 Jan 2025 13:27:44 +0000 Subject: [PATCH] fix: add missing environment for post subgraph deployment with Ormi (#893) --- packages/subgraph/scripts/post-deploy-on-ormi.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/subgraph/scripts/post-deploy-on-ormi.ts b/packages/subgraph/scripts/post-deploy-on-ormi.ts index 9fe166041..1cb2a2784 100644 --- a/packages/subgraph/scripts/post-deploy-on-ormi.ts +++ b/packages/subgraph/scripts/post-deploy-on-ormi.ts @@ -11,10 +11,13 @@ program .choices([ "testing_amoy", "testing_sepolia", + "testing_base", "staging_amoy", "staging_sepolia", + "staging_base", "production_polygon", - "production_ethereum" + "production_ethereum", + "production_base" ]) ) .parse(process.argv);