rules.py (320B)
1 rules_address_args = [ 2 'input', 3 'output', 4 'exec', 5 'address', 6 ] 7 8 rules_data_args = [ 9 'data', 10 'data_in', 11 ] 12 13 rules_txhash_args = [ 14 'txhash', 15 ] 16 17 18 def to_config_names(v): 19 v = v.upper() 20 return ('ETHMONITOR_' + v, 'ETHMONITOR_X_' + v)