SubscriptionManager constants

pull/2861/head
Kieran Prasch 2022-01-11 13:35:33 -08:00
parent 846a6295cc
commit fab011e6e3
2 changed files with 3 additions and 0 deletions

View File

@ -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,

View File

@ -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
)