From c5b0c76fbf1afe270a0053ade2b901e341b92653 Mon Sep 17 00:00:00 2001 From: Sebastian Gerske Date: Wed, 21 Nov 2018 10:44:23 +0100 Subject: [PATCH] move to local version of secret store --- src/examples/ExecuteAgreement.ts | 4 ++-- src/examples/InitializeAgreement.ts | 4 ++-- src/examples/RegisterAsset.ts | 4 ++-- src/examples/RegisterServiceAgreementTemplates.ts | 4 ++-- src/examples/Search.ts | 4 ++-- test/config.ts | 4 ++-- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/examples/ExecuteAgreement.ts b/src/examples/ExecuteAgreement.ts index 1dd25cd..fdcff60 100644 --- a/src/examples/ExecuteAgreement.ts +++ b/src/examples/ExecuteAgreement.ts @@ -10,8 +10,8 @@ import {Account, Logger, Ocean, ServiceAgreement} from "../squid" aquariusUri: "http://localhost:5000", brizoUri: "http://localhost:8030", parityUri: "http://localhost:9545", - secretStoreUri: "https://secret-store.dev-ocean.com", - threshold: 2, + secretStoreUri: "http://localhost:12001", + threshold: 0, password: "unittest", address: "0xed243adfb84a6626eba46178ccb567481c6e655d", }) diff --git a/src/examples/InitializeAgreement.ts b/src/examples/InitializeAgreement.ts index 477a1be..bb41da7 100644 --- a/src/examples/InitializeAgreement.ts +++ b/src/examples/InitializeAgreement.ts @@ -10,8 +10,8 @@ import {Account, Logger, Ocean} from "../squid" aquariusUri: "http://localhost:5000", brizoUri: "http://localhost:8030", parityUri: "http://localhost:9545", - secretStoreUri: "https://secret-store.dev-ocean.com", - threshold: 2, + secretStoreUri: "http://localhost:12001", + threshold: 0, password: "unittest", address: "0xed243adfb84a6626eba46178ccb567481c6e655d", }) diff --git a/src/examples/RegisterAsset.ts b/src/examples/RegisterAsset.ts index 6d5389b..292fc6e 100644 --- a/src/examples/RegisterAsset.ts +++ b/src/examples/RegisterAsset.ts @@ -9,8 +9,8 @@ import {Account, Logger, Ocean} from "../squid" aquariusUri: "http://localhost:5000", brizoUri: "http://localhost:8030", parityUri: "http://localhost:9545", - secretStoreUri: "https://secret-store.dev-ocean.com", - threshold: 2, + secretStoreUri: "http://localhost:12001", + threshold: 0, password: "unittest", address: "0xed243adfb84a6626eba46178ccb567481c6e655d", }) diff --git a/src/examples/RegisterServiceAgreementTemplates.ts b/src/examples/RegisterServiceAgreementTemplates.ts index b61c244..6ffb422 100644 --- a/src/examples/RegisterServiceAgreementTemplates.ts +++ b/src/examples/RegisterServiceAgreementTemplates.ts @@ -6,8 +6,8 @@ import {Account, Logger, Ocean, ServiceAgreementTemplate, Templates} from "../sq aquariusUri: "http://localhost:5000", brizoUri: "http://localhost:8030", parityUri: "http://localhost:9545", - secretStoreUri: "https://secret-store.dev-ocean.com", - threshold: 2, + secretStoreUri: "http://localhost:12001", + threshold: 0, password: "unittest", address: "0xed243adfb84a6626eba46178ccb567481c6e655d", }) diff --git a/src/examples/Search.ts b/src/examples/Search.ts index fada9c4..d0f0b06 100644 --- a/src/examples/Search.ts +++ b/src/examples/Search.ts @@ -7,8 +7,8 @@ import {Logger, Ocean} from "../squid" aquariusUri: "http://localhost:5000", brizoUri: "http://localhost:8030", parityUri: "http://localhost:9545", - secretStoreUri: "https://secret-store.dev-ocean.com", - threshold: 2, + secretStoreUri: "http://localhost:12001", + threshold: 0, password: "unittest", address: "0xed243adfb84a6626eba46178ccb567481c6e655d", }) diff --git a/test/config.ts b/test/config.ts index 04b8b3e..375016e 100644 --- a/test/config.ts +++ b/test/config.ts @@ -5,8 +5,8 @@ export default { brizoUri: "http://localhost:3000", nodeUri: "http://localhost:8545", parityUri: "http://localhost:9545", - secretStoreUri: "https://secret-store.dev-ocean.com", - threshold: 2, + secretStoreUri: "http://localhost:12001", + threshold: 0, password: "unittest", address: "0xed243adfb84a6626eba46178ccb567481c6e655d", web3Provider: null,