(self)
| 186 | public_key: str |
| 187 | |
| 188 | def decode_signature(self) -> bytes: |
| 189 | return bytes.fromhex(self.signature) |
| 190 | |
| 191 | def decode_signature_chain(self) -> List[bytes]: |
| 192 | return [bytes.fromhex(chain) for chain in self.signature_chain] |
no outgoing calls