()
| 13 | } |
| 14 | |
| 15 | export const createTorConfig = (): TorConfig => { |
| 16 | return { |
| 17 | host: process.env.TOR_HOST, |
| 18 | port: process.env.TOR_CONTROL_PORT ? Number(process.env.TOR_CONTROL_PORT) : 9051, |
| 19 | password: process.env.TOR_PASSWORD, |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | type OnionResult = { ServiceID?: string; PrivateKey?: string } |
| 24 |
no outgoing calls
no test coverage detected