-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathconfig_controller.py
141 lines (109 loc) · 5.22 KB
/
config_controller.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# -*- coding: utf-8 -*-
#
# This file is part of SKALE.py
#
# Copyright (C) 2019-Present SKALE Labs
#
# SKALE.py is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# SKALE.py is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with SKALE.py. If not, see <https://www.gnu.org/licenses/>.
from skale.contracts.base_contract import BaseContract, transaction_method
from eth_typing import ChecksumAddress
from skale.transactions.result import TxRes
class ConfigController(BaseContract):
"""Config controller contract"""
def default_admin_role(self) -> bytes:
return self.contract.functions.DEFAULT_ADMIN_ROLE().call()
def deployer_admin_role(self) -> bytes:
return self.contract.functions.DEPLOYER_ADMIN_ROLE().call()
def deployer_role(self) -> bytes:
return self.contract.functions.DEPLOYER_ROLE().call()
def mtm_admin_role(self) -> bytes:
return self.contract.functions.MTM_ADMIN_ROLE().call()
def allowed_origin_role(self, deployer: ChecksumAddress) -> bytes:
return self.contract.functions.allowedOriginRole(deployer).call()
def allowed_origin_role_admin(self, deployer: ChecksumAddress) -> bytes:
return self.contract.functions.allowedOriginRoleAdmin(deployer).call()
def has_role(self, role: bytes, address: ChecksumAddress) -> bool:
return bool(self.contract.functions.hasRole(role, address).call())
def get_role_admin(self, role: bytes) -> bytes:
return self.contract.functions.getRoleAdmin(role).call()
def get_role_member(self, role: bytes, index: int) -> bytes:
return self.contract.functions.getRoleMember(role, index).call()
def get_role_member_count(self, role: bytes) -> int:
return self.contract.functions.getRoleMemberCount(role).call()
def is_address_whitelisted(self, address: ChecksumAddress) -> bool:
return bool(self.contract.functions.isAddressWhitelisted(address).call())
def is_deployment_allowed(
self, transaction_origin: ChecksumAddress, deployer: ChecksumAddress
) -> bool:
return bool(
self.contract.functions.isDeploymentAllowed(
transaction_origin, deployer
).call()
)
@transaction_method
def grant_role(self, role: bytes, address: ChecksumAddress) -> TxRes:
return self.contract.functions.grantRole(role, address)
@transaction_method
def add_allowed_origin_role_admin(
self, role: bytes, address: ChecksumAddress
) -> TxRes:
return self.contract.functions.addAllowedOriginRoleAdmin(role, address)
@transaction_method
def allow_origin(
self, transaction_origin: ChecksumAddress, deployer: ChecksumAddress
) -> TxRes:
return self.contract.functions.allowOrigin(transaction_origin, deployer)
@transaction_method
def add_to_whitelist(self, address: ChecksumAddress) -> TxRes:
return self.contract.functions.addToWhitelist(address)
@transaction_method
def revoke_role(self, role: bytes, address: ChecksumAddress) -> TxRes:
return self.contract.functions.revokeRole(role, address)
@transaction_method
def renounce_role(self, role: bytes, address: ChecksumAddress) -> TxRes:
return self.contract.functions.renounceRole(role, address)
@transaction_method
def remove_allowed_origin_role_admin(
self, role: bytes, address: ChecksumAddress
) -> TxRes:
return self.contract.functions.removeAllowedOriginRoleAdmin(role, address)
@transaction_method
def forbid_origin(
self, transaction_origin: ChecksumAddress, deployer: ChecksumAddress
) -> TxRes:
return self.contract.functions.forbidOrigin(transaction_origin, deployer)
@transaction_method
def remove_from_whitelist(self, address: ChecksumAddress) -> TxRes:
return self.contract.functions.removeFromWhitelist(address)
@transaction_method
def enable_free_contract_deployment(self) -> TxRes:
return self.contract.functions.enableFreeContractDeployment()
@transaction_method
def disable_free_contract_deployment(self) -> TxRes:
return self.contract.functions.disableFreeContractDeployment()
def is_fcd_enabled(self) -> str:
return self.contract.functions.isFCDEnabled().call()
@transaction_method
def enable_mtm(self) -> TxRes:
return self.contract.functions.enableMTM()
@transaction_method
def disable_mtm(self) -> TxRes:
return self.contract.functions.disableMTM()
def is_mtm_enabled(self) -> str:
return self.contract.functions.isMTMEnabled().call()
def get_version(self) -> str:
return self.contract.functions.version().call()
@transaction_method
def set_version(self, new_version) -> TxRes:
return self.contract.functions.setVersion(new_version)