7
7
def vrf (items , k ):
8
8
weights = []
9
9
for i in items :
10
- weights .append (float (i [' stake' ]))
10
+ weights .append (float (i [" stake" ]))
11
11
weighted_indices = random .choices (range (len (items )), weights = weights , k = k * 10 )
12
12
unique_indices = set ()
13
13
random .shuffle (weighted_indices )
@@ -20,12 +20,14 @@ def vrf(items, k):
20
20
return [items [i ] for i in unique_indices ]
21
21
22
22
23
- def get_contract_state (contract_address : str ) -> dict : # that should be on the rpc and cli maybe
23
+ def get_contract_state (
24
+ contract_address : str ,
25
+ ) -> dict : # that should be on the rpc and cli maybe
24
26
connection = get_genlayer_db_connection ()
25
27
cursor = connection .cursor ()
26
28
27
29
try :
28
- #TODO: This needs to be better
30
+ # TODO: This needs to be better
29
31
cursor .execute (
30
32
"SELECT data FROM current_state WHERE id = (%s);" , (contract_address ,)
31
33
)
@@ -41,38 +43,50 @@ def get_contract_state(contract_address: str) -> dict: # that should be on the r
41
43
cursor .close ()
42
44
connection .close ()
43
45
46
+
44
47
def build_icontract (
45
- contract_code :str ,
46
- contract_state :str ,
47
- run_by :str ,
48
- class_name :str ,
49
- function_name :str ,
50
- args_str :str
48
+ contract_code : str ,
49
+ contract_state : str ,
50
+ run_by : str ,
51
+ class_name : str ,
52
+ function_name : str ,
53
+ args_str : str ,
51
54
) -> str :
52
55
return f"""
53
56
{ contract_code }
54
57
55
58
async def main():
56
59
current_contract = { class_name } (**{ contract_state } )
60
+
57
61
current_contract.mode = "{ run_by } "
58
- await current_contract.{ function_name } ({ args_str } )
62
+
63
+ if current_contract.mode == "validator":
64
+ current_contract.load_leader_eq_outputs()
65
+
66
+ if asyncio.iscoroutinefunction(current_contract.{ function_name } ):
67
+ await current_contract.{ function_name } ({ args_str } )
68
+ else:
69
+ current_contract.{ function_name } ({ args_str } )
70
+
71
+ current_contract._write_receipt('{ function_name } ', [{ args_str } ])
59
72
60
73
if __name__=="__main__":
61
74
import asyncio
62
75
asyncio.run(main())
63
76
"""
64
77
78
+
65
79
def get_nodes_config (logger = None ) -> str :
66
80
if logger :
67
81
logger ("Checking the nodes.json config file has been created..." )
68
82
cwd = os .path .abspath (os .getcwd ())
69
- nodes_file = cwd + ' /consensus/nodes/nodes.json'
83
+ nodes_file = cwd + " /consensus/nodes/nodes.json"
70
84
if not os .path .exists (nodes_file ):
71
- raise Exception (' Create a configuratrion file for the nodes' )
85
+ raise Exception (" Create a configuratrion file for the nodes" )
72
86
return json .load (open (nodes_file ))
73
87
74
88
75
- def get_validators (nodes_config :dict , logger = None ) -> list :
89
+ def get_validators (nodes_config : dict , logger = None ) -> list :
76
90
if logger :
77
91
logger ("Selecting validators with VRF..." )
78
92
# Select validators
@@ -84,13 +98,26 @@ def get_validators(nodes_config:dict, logger=None) -> list:
84
98
connection .close ()
85
99
86
100
if len (nodes_config ) < len (validator_data ):
87
- raise Exception ('Nodes in database (' + str (len (validator_data ))+ '). Nodes configured (' + str (len (nodes_config ))+ ')' )
101
+ raise Exception (
102
+ "Nodes in database ("
103
+ + str (len (validator_data ))
104
+ + "). Nodes configured ("
105
+ + str (len (nodes_config ))
106
+ + ")"
107
+ )
88
108
89
109
# Prepare validators and their stakes
90
110
all_validators = [row [0 ] for row in validator_data ]
91
111
validators_stakes = [float (row [1 ]) for row in validator_data ]
92
112
93
113
return all_validators , validators_stakes
94
114
115
+
95
116
def genvm_url ():
96
- return os .environ ['GENVMPROTOCOL' ]+ '://' + os .environ ['GENVMHOST' ]+ ':' + os .environ ['GENVMPORT' ]
117
+ return (
118
+ os .environ ["GENVMPROTOCOL" ]
119
+ + "://"
120
+ + os .environ ["GENVMHOST" ]
121
+ + ":"
122
+ + os .environ ["GENVMPORT" ]
123
+ )
0 commit comments