Skip to content
Open
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
82 changes: 0 additions & 82 deletions .claude/commands/bridge-out.md

This file was deleted.

14 changes: 7 additions & 7 deletions .claude/commands/rpc-health-monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

Collects and summarizes:
1) graph status counts
2) instance status counts (bridge-in/out)
2) instance status counts (bridge-in) and swap escrow status counts (bridge-out)
3) node online or offline status
4) overall service health verdict
"""
Expand Down Expand Up @@ -482,7 +482,7 @@ def summarize_once(
"instance_wraps",
timeout,
page_size,
fixed_params={"is_bridge_in": "true"},
fixed_params={},
)
checks.extend(in_checks)
except Exception as err: # pylint: disable=broad-except
Expand All @@ -493,11 +493,11 @@ def summarize_once(
try:
instance_out_items, instance_out_total, out_checks = fetch_pages(
base_url,
"/v1/instances",
"instance_wraps",
"/v1/swaps",
"swaps",
timeout,
page_size,
fixed_params={"is_bridge_in": "false"},
fixed_params={},
)
checks.extend(out_checks)
except Exception as err: # pylint: disable=broad-except
Expand Down Expand Up @@ -562,8 +562,8 @@ def summarize_once(
instance_out_status_counts = count_by(
instance_out_items,
lambda x: (
(x.get("instance") or {}).get("status")
if isinstance(x, dict) and isinstance(x.get("instance"), dict)
(x.get("swap") or {}).get("status")
if isinstance(x, dict) and isinstance(x.get("swap"), dict)
else "MISSING_INSTANCE"
),
)
Expand Down
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,9 @@ circuits/*/*/*.bin.in
**/*.out
**/*/output.data*
proof-builder-rpc/*.ckpt
node/tla/states/
node/tla/states/

local_docs/
scripts/testnet/
scripts/devnet/
*.DS_Store
2 changes: 1 addition & 1 deletion circuits/operator-proof/host/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ pub async fn fetch_target_block_and_watchtower_tx(
esplora_url: &str,
latest_sequencer_commit_txid: &str,
operator_committed_blockhash: &str,
watchtower_challenge_init_txid: &String,
watchtower_challenge_init_txid: &str,
watchtower_challenge_txids: &str,
watchtower_public_keys: &str,
bitcoin_network: Network,
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading