From ee48d4006b82e88a3aabccbac97ea13b62a59b9f Mon Sep 17 00:00:00 2001 From: Jacob Evans Date: Tue, 17 Jan 2023 18:54:37 +1000 Subject: [PATCH] chore: Update rollback script (#580) --- contracts/zero-ex/scripts/rollback.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contracts/zero-ex/scripts/rollback.ts b/contracts/zero-ex/scripts/rollback.ts index eb83c0c817..29423e3a24 100644 --- a/contracts/zero-ex/scripts/rollback.ts +++ b/contracts/zero-ex/scripts/rollback.ts @@ -10,7 +10,7 @@ import * as prompts from 'prompts'; import * as wrappers from '../src/wrappers'; -const SUBGRAPH_URL = 'https://api.thegraph.com/subgraphs/name/mzhu25/zeroex-migrations'; +const SUBGRAPH_URL = 'https://api.thegraph.com/subgraphs/name/0xeng/zeroex-features-mainnet'; const ownableFeature = new wrappers.OwnableFeatureContract(constants.NULL_ADDRESS, new Web3ProviderEngine()); const simpleFunctionRegistryFeature = new wrappers.SimpleFunctionRegistryFeatureContract( @@ -18,6 +18,7 @@ const simpleFunctionRegistryFeature = new wrappers.SimpleFunctionRegistryFeature new Web3ProviderEngine(), ); const DO_NOT_ROLLBACK = [ + ownableFeature.getSelector('owner'), ownableFeature.getSelector('migrate'), ownableFeature.getSelector('transferOwnership'), simpleFunctionRegistryFeature.getSelector('rollback'),