From b56bb7f2265c004cd3d4d1e45036fe94417666ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Stuczy=C5=84ski?= Date: Thu, 24 Jun 2021 10:46:02 +0100 Subject: [PATCH] Updated typescript models --- clients/validator/src/types.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/clients/validator/src/types.ts b/clients/validator/src/types.ts index e2f5f75a23..201fac8943 100644 --- a/clients/validator/src/types.ts +++ b/clients/validator/src/types.ts @@ -9,6 +9,9 @@ export type MixNodeBond = { // TODO: change name to MixNodeBond export type MixNode = { host: string, + mix_port: number, + verloc_port: number, + http_api_port: number, layer: number, location: string, sphinx_key: string, // TODO: camelCase this later once everything else works @@ -23,8 +26,9 @@ export type GatewayBond = { } export type Gateway = { - mix_host: string, - clients_host: string, + host: string, + mix_port: number, + clients_port: number, location: string, sphinx_key: string, identity_key: string,