From 5d383d2f8a0eb69ced6ade6a27b30056a18ec4de Mon Sep 17 00:00:00 2001 From: libaice Date: Tue, 14 Apr 2026 03:11:22 +0800 Subject: [PATCH] chore: update repository URLs to use OrderBookTrade --- Cargo.toml | 4 ++-- docs/ghost-fills-polymarket.md | 4 ++-- ghostguardup | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1e511d0..89e1232 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,8 +4,8 @@ version = "0.1.0" edition = "2021" description = "Detect ghost fills on Polymarket CLOB" license = "MIT" -repository = "https://github.com/libaice/GhostGuard" -homepage = "https://github.com/libaice/GhostGuard" +repository = "https://github.com/OrderBookTrade/GhostGuard" +homepage = "https://github.com/OrderBookTrade/GhostGuard" keywords = ["polymarket", "ghost-fill", "clob", "polygon", "trading"] categories = ["command-line-utilities", "cryptography::cryptocurrencies"] readme = "README.md" diff --git a/docs/ghost-fills-polymarket.md b/docs/ghost-fills-polymarket.md index 8d12e6f..73a7809 100644 --- a/docs/ghost-fills-polymarket.md +++ b/docs/ghost-fills-polymarket.md @@ -176,7 +176,7 @@ The only invariant across all variants: **the on-chain settlement transaction re ## Part 4: GhostGuard -I built [GhostGuard](https://github.com/OrderBookTrade/ghostguard) to detect ghost fills by verifying every CLOB fill on-chain. It doesn't care how the attack happened. It checks whether the fill actually settled. +I built [GhostGuard](https://github.com/OrderBookTrade/GhostGuard) to detect ghost fills by verifying every CLOB fill on-chain. It doesn't care how the attack happened. It checks whether the fill actually settled. ### Core logic @@ -407,7 +407,7 @@ v1 solves the critical problem: knowing that a ghost happened, in time to react. ## Links -- **GhostGuard**: [github.com/OrderBookTrade/ghostguard](https://github.com/OrderBookTrade/ghostguard) +- **GhostGuard**: [github.com/OrderBookTrade/GhostGuard](https://github.com/OrderBookTrade/GhostGuard) - **Known ghost fill tx**: [0x9e3230ab...on Polygonscan](https://polygonscan.com/tx/0x9e3230abde0f569da87511a6f8823076f7b211bb00d10689db3b7c50d6652df0) - **CTF Exchange contract**: [0x4bfb41d5...on Polygonscan](https://polygonscan.com/address/0x4bfb41d5b3570defd03c39a9a4d8de6bd8b8982e) diff --git a/ghostguardup b/ghostguardup index 3a8fe1c..4805b32 100755 --- a/ghostguardup +++ b/ghostguardup @@ -2,9 +2,9 @@ set -euo pipefail # ghostguardup — installer for GhostGuard CLI -# Usage: curl -L https://raw.githubusercontent.com/libaice/GhostGuard/main/ghostguardup | bash +# Usage: curl -L https://raw.githubusercontent.com/OrderBookTrade/GhostGuard/main/ghostguardup | bash -REPO="libaice/GhostGuard" +REPO="OrderBookTrade/GhostGuard" INSTALL_DIR="${GHOSTGUARD_INSTALL_DIR:-$HOME/.ghostguard/bin}" BASE_URL="https://github.com/${REPO}/releases/latest/download"