From fab011e6e36ca716a55d5c72f4a25f95586b42ed Mon Sep 17 00:00:00 2001 From: Kieran Prasch Date: Tue, 11 Jan 2022 13:35:33 -0800 Subject: [PATCH] SubscriptionManager constants --- nucypher/blockchain/eth/agents.py | 1 + nucypher/blockchain/eth/constants.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/nucypher/blockchain/eth/agents.py b/nucypher/blockchain/eth/agents.py index 2603a96ba..3833acc90 100644 --- a/nucypher/blockchain/eth/agents.py +++ b/nucypher/blockchain/eth/agents.py @@ -44,6 +44,7 @@ from nucypher.blockchain.eth.constants import ( NUCYPHER_TOKEN_CONTRACT_NAME, NULL_ADDRESS, POLICY_MANAGER_CONTRACT_NAME, + SUBSCRIPTION_MANAGER_CONTRACT_NAME, STAKING_ESCROW_CONTRACT_NAME, TOKEN_MANAGER_CONTRACT_NAME, VOTING_CONTRACT_NAME, diff --git a/nucypher/blockchain/eth/constants.py b/nucypher/blockchain/eth/constants.py index ee9afb94f..f170dd864 100644 --- a/nucypher/blockchain/eth/constants.py +++ b/nucypher/blockchain/eth/constants.py @@ -30,6 +30,7 @@ ADJUDICATOR_CONTRACT_NAME = 'Adjudicator' WORKLOCK_CONTRACT_NAME = 'WorkLock' MULTISIG_CONTRACT_NAME = 'MultiSig' PRE_APPLICATION_CONTRACT_NAME = 'SimplePREApplication' # TODO: Use the real PREApplication +SUBSCRIPTION_MANAGER_CONTRACT_NAME = 'SubscriptionManager' NUCYPHER_CONTRACT_NAMES = ( NUCYPHER_TOKEN_CONTRACT_NAME, @@ -42,6 +43,7 @@ NUCYPHER_CONTRACT_NAMES = ( WORKLOCK_CONTRACT_NAME, MULTISIG_CONTRACT_NAME, PRE_APPLICATION_CONTRACT_NAME, + SUBSCRIPTION_MANAGER_CONTRACT_NAME )