mirror of
https://github.com/exchanges-lab/tradesync.git
synced 2026-08-06 05:34:49 +08:00
feat: implement HyperliquidMonitor for position opening and migrate dependencies to git repository urls
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
use alloy::primitives::address;
|
||||
use nosync::HyperliquidMonitor;
|
||||
use tokio::sync::mpsc;
|
||||
use tokio::time::{Duration, timeout};
|
||||
|
||||
#[tokio::test]
|
||||
async fn test_monitor_initialization() {
|
||||
// Standard test wallet address
|
||||
let wallet = address!("0xc64cc00b46101bd40aa1c3121195e85c0b0918d8");
|
||||
let monitor = HyperliquidMonitor::new(wallet, true);
|
||||
|
||||
let (tx, _rx) = mpsc::unbounded_channel();
|
||||
|
||||
// Verify it connects and runs within a timeout (since it runs an infinite reconnect loop)
|
||||
let run_result = timeout(Duration::from_secs(3), monitor.run(tx)).await;
|
||||
|
||||
// Timeout should occur if the connection is successful and continues running
|
||||
assert!(run_result.is_err(), "Monitor should have timed out");
|
||||
}
|
||||
Reference in New Issue
Block a user