Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add missing emily api keys for devenv #1089

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/sbtc/signer/signer-config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# Environment: SIGNER_EMILY__ENDPOINTS
# Environment Example: '"https://[email protected]",..'
endpoints = [
"http://emily-server:3031",
"http://testApiKey@emily-server:3031",
Jiloc marked this conversation as resolved.
Show resolved Hide resolved
]

# !! ==============================================================================
Expand Down
2 changes: 1 addition & 1 deletion envs/signer-1.env
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion envs/signer-2.env
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion envs/signer-3.env
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion signer/src/config/default.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# Environment: SIGNER_EMILY__ENDPOINTS
# Environment Example: '"https://[email protected]",..'
endpoints = [
"http://localhost:3031",
"http://testApiKey@localhost:3031",
]

# !! ==============================================================================
Expand Down
Loading