From 7d112fb93c53fcf7de4ba07117e664a9195976ed Mon Sep 17 00:00:00 2001 From: Matteo Almanza Date: Tue, 10 Dec 2024 12:35:48 +0100 Subject: [PATCH] fix: add missing emily api keys for devenv --- docker/sbtc/signer/signer-config.toml | 2 +- envs/signer-1.env | 2 +- envs/signer-2.env | 2 +- envs/signer-3.env | 2 +- signer/src/config/default.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docker/sbtc/signer/signer-config.toml b/docker/sbtc/signer/signer-config.toml index 30dc3c761..5254af7cd 100644 --- a/docker/sbtc/signer/signer-config.toml +++ b/docker/sbtc/signer/signer-config.toml @@ -26,7 +26,7 @@ # Environment: SIGNER_EMILY__ENDPOINTS # Environment Example: '"https://1234567890abcdef@api.emilyexample.com",..' endpoints = [ - "http://emily-server:3031", + "http://testApiKey@emily-server:3031", ] # !! ============================================================================== diff --git a/envs/signer-1.env b/envs/signer-1.env index 4e9b3cf4f..9b58725d1 100644 --- a/envs/signer-1.env +++ b/envs/signer-1.env @@ -3,7 +3,7 @@ export SIGNER_BITCOIN__RPC_ENDPOINTS=http://devnet:devnet@localhost:18443 export SIGNER_BITCOIN__BLOCK_HASH_STREAM_ENDPOINTS=tcp://localhost:28332 export SIGNER_STACKS__ENDPOINTS=http://localhost:20443 export SIGNER_SIGNER__EVENT_OBSERVER__BIND=0.0.0.0:8801 -export SIGNER_EMILY__ENDPOINTS=http://localhost:3031 +export SIGNER_EMILY__ENDPOINTS=http://testApiKey@localhost:3031 export SIGNER_SIGNER__DB_ENDPOINT=postgresql://postgres:postgres@localhost:5432/signer export SIGNER_SIGNER__PRIVATE_KEY=41634762d89dfa09133a4a8e9c1378d0161d29cd0a9433b51f1e3d32947a73dc export SIGNER_SIGNER__P2P__LISTEN_ON=tcp://127.0.0.1:41221 diff --git a/envs/signer-2.env b/envs/signer-2.env index fa230e729..d8f134fde 100644 --- a/envs/signer-2.env +++ b/envs/signer-2.env @@ -3,7 +3,7 @@ export SIGNER_BITCOIN__RPC_ENDPOINTS=http://devnet:devnet@localhost:18443 export SIGNER_BITCOIN__BLOCK_HASH_STREAM_ENDPOINTS=tcp://localhost:28332 export SIGNER_STACKS__ENDPOINTS=http://localhost:20443 export SIGNER_SIGNER__EVENT_OBSERVER__BIND=0.0.0.0:8802 -export SIGNER_EMILY__ENDPOINTS=http://localhost:3031 +export SIGNER_EMILY__ENDPOINTS=http://testApiKey@localhost:3031 export SIGNER_SIGNER__DB_ENDPOINT=postgresql://postgres:postgres@localhost:5433/signer export SIGNER_SIGNER__PRIVATE_KEY=9bfecf16c9c12792589dd2b843f850d5b89b81a04f8ab91c083bdf6709fbefee01 export SIGNER_SIGNER__P2P__LISTEN_ON=tcp://127.0.0.1:41222 diff --git a/envs/signer-3.env b/envs/signer-3.env index 7c31a686d..620d8c55c 100644 --- a/envs/signer-3.env +++ b/envs/signer-3.env @@ -3,7 +3,7 @@ export SIGNER_BITCOIN__RPC_ENDPOINTS=http://devnet:devnet@localhost:18443 export SIGNER_BITCOIN__BLOCK_HASH_STREAM_ENDPOINTS=tcp://localhost:28332 export SIGNER_STACKS__ENDPOINTS=http://localhost:20443 export SIGNER_SIGNER__EVENT_OBSERVER__BIND=0.0.0.0:8803 -export SIGNER_EMILY__ENDPOINTS=http://localhost:3031 +export SIGNER_EMILY__ENDPOINTS=http://testApiKey@localhost:3031 export SIGNER_SIGNER__DB_ENDPOINT=postgresql://postgres:postgres@localhost:5434/signer export SIGNER_SIGNER__PRIVATE_KEY=3ec0ca5770a356d6cd1a9bfcbf6cd151eb1bd85c388cc00648ec4ef5853fdb7401 export SIGNER_SIGNER__P2P__LISTEN_ON=tcp://127.0.0.1:41223 diff --git a/signer/src/config/default.toml b/signer/src/config/default.toml index 228ec0403..e2d2f7bc6 100644 --- a/signer/src/config/default.toml +++ b/signer/src/config/default.toml @@ -29,7 +29,7 @@ # Environment: SIGNER_EMILY__ENDPOINTS # Environment Example: '"https://1234567890abcdef@api.emilyexample.com",..' endpoints = [ - "http://localhost:3031", + "http://testApiKey@localhost:3031", ] # !! ==============================================================================