(self)
| 506 | return api_response(result=dict(version=get_system_spec()["raiden"])) |
| 507 | |
| 508 | def get_node_settings(self) -> Response: |
| 509 | pfs_config = self.raiden_api.raiden.config.pfs_config |
| 510 | settings = dict(pathfinding_service_address=pfs_config and pfs_config.info.url) |
| 511 | |
| 512 | return api_response(result=settings) |
| 513 | |
| 514 | def get_contract_versions(self) -> Response: |
| 515 | raiden = self.raiden_api.raiden |