(domain, messageTypes, message)
| 1496 | |
| 1497 | @staticmethod |
| 1498 | def eth_encode_structured_data(domain, messageTypes, message): |
| 1499 | encodedData = account.messages.encode_typed_data(domain, messageTypes, message) |
| 1500 | return Exchange.binary_concat(b"\x19\x01", encodedData.header, encodedData.body) |
| 1501 | |
| 1502 | @staticmethod |
| 1503 | def eth_get_address_from_private_key(private_key): |
no test coverage detected