In the py_builder_relayer_client/builder/safe.py file, transaction is a dictionary. There is a syntax error in getting the value of
transaction.to
transaction.value
transaction.data
transaction.operation.
It should be:
transaction['to']
transaction['value']
transaction['data']
transaction.get('operation', 0)
In the py_builder_relayer_client/builder/safe.py file, transaction is a dictionary. There is a syntax error in getting the value of
transaction.to
transaction.value
transaction.data
transaction.operation.
It should be:
transaction['to']
transaction['value']
transaction['data']
transaction.get('operation', 0)