diff --git a/GEMINI.md b/GEMINI.md new file mode 100644 index 0000000..89eb87c --- /dev/null +++ b/GEMINI.md @@ -0,0 +1,127 @@ +# Project Overview + +This project is a sophisticated, multi-process automated trading bot for the Hyperliquid decentralized exchange. It is written in Python and uses a modular architecture to separate concerns like data fetching, strategy execution, and trade management. + +The bot uses a high-performance data pipeline with SQLite for storing market data. Trading strategies are defined and configured in a JSON file, allowing for easy adjustments without code changes. The system supports multiple, independent trading agents for risk segregation and PNL tracking. A live terminal dashboard provides real-time monitoring of market data, strategy signals, and the status of all background processes. + +## Building and Running + +### 1. Setup + +1. **Create and activate a virtual environment:** + ```bash + # For Windows + python -m venv .venv + .\.venv\Scripts\activate + + # For macOS/Linux + python3 -m venv .venv + source .venv/bin/activate + ``` + +2. **Install dependencies:** + ```bash + pip install -r requirements.txt + ``` + +3. **Configure environment variables:** + Create a `.env` file in the root of the project (you can copy `.env.example`) and add your Hyperliquid wallet private key and any agent keys. + +4. **Configure strategies:** + Edit `_data/strategies.json` to enable and configure your desired trading strategies. + +### 2. Running the Bot + +To run the main application, which includes the dashboard and all background processes, execute the following command: + +```bash +python main_app.py +``` + +## Development Conventions + +* **Modularity:** The project is divided into several scripts, each with a specific responsibility (e.g., `data_fetcher.py`, `trade_executor.py`). +* **Configuration-driven:** Strategies are defined in `_data/strategies.json`, not hardcoded. This allows for easy management of strategies. +* **Multi-processing:** The application uses the `multiprocessing` module to run different components in parallel for performance and stability. +* **Strategies:** Custom strategies should inherit from the `BaseStrategy` class (defined in `strategies/base_strategy.py`) and implement the `calculate_signals` method. +* **Documentation:** The `WIKI/` directory contains detailed documentation for the project. Start with `WIKI/SUMMARY.md`. + +# Project Review and Recommendations + +This review provides an analysis of the current state of the automated trading bot project, proposes specific code improvements, and identifies files that appear to be unused or are one-off utilities that could be reorganized. + +The project is a well-structured, multi-process Python application for crypto trading. It has a clear separation of concerns between data fetching, strategy execution, and trade management. The use of `multiprocessing` and a centralized `main_app.py` orchestrator is a solid architectural choice. + +The following sections detail recommendations for improving configuration management, code structure, and robustness, along with a list of files recommended for cleanup. + +--- + +## Proposed Code Changes + +### 1. Centralize Configuration + +- **Issue:** Key configuration variables like `WATCHED_COINS` and `required_timeframes` are hardcoded in `main_app.py`. This makes them difficult to change without modifying the source code. +- **Proposal:** + - Create a central configuration file, e.g., `_data/config.json`. + - Move `WATCHED_COINS` and `required_timeframes` into this new file. + - Load this configuration in `main_app.py` at startup. +- **Benefit:** Decouples configuration from code, making the application more flexible and easier to manage. + +### 2. Refactor `main_app.py` for Clarity + +- **Issue:** `main_app.py` is long and handles multiple responsibilities: process orchestration, dashboard rendering, and data reading. +- **Proposal:** + - **Abstract Process Management:** The functions for running subprocesses (e.g., `run_live_candle_fetcher`, `run_resampler_job`) contain repetitive logic for logging, shutdown handling, and process looping. This could be abstracted into a generic `ProcessRunner` class. + - **Create a Dashboard Class:** The complex dashboard rendering logic could be moved into a separate `Dashboard` class to improve separation of concerns and make the main application loop cleaner. +- **Benefit:** Improves code readability, reduces duplication, and makes the application easier to maintain and extend. + +### 3. Improve Project Structure + +- **Issue:** The root directory is cluttered with numerous Python scripts, making it difficult to distinguish between core application files, utility scripts, and old/example files. +- **Proposal:** + - Create a `scripts/` directory and move all one-off utility and maintenance scripts into it. + - Consider creating a `src/` or `app/` directory to house the core application source code (`main_app.py`, `trade_executor.py`, etc.), separating it clearly from configuration, data, and documentation. +- **Benefit:** A cleaner, more organized project structure that is easier for new developers to understand. + +### 4. Enhance Robustness and Error Handling + +- **Issue:** The agent loading in `trade_executor.py` relies on discovering environment variables by a naming convention (`_AGENT_PK`). This is clever but can be brittle if environment variables are named incorrectly. +- **Proposal:** + - Explicitly define the agent names and their corresponding environment variable keys in the proposed `_data/config.json` file. The `trade_executor` would then load only the agents specified in the configuration. +- **Benefit:** Makes agent configuration more explicit and less prone to errors from stray environment variables. + +--- + +## Identified Unused/Utility Files + +The following files were identified as likely being unused by the core application, being obsolete, or serving as one-off utilities. It is recommended to **move them to a `scripts/` directory** or **delete them** if they are obsolete. + +### Obsolete / Old Versions: +- `data_fetcher_old.py` +- `market_old.py` +- `base_strategy.py` (The one in the root directory; the one in `strategies/` is used). + +### One-Off Utility Scripts (Recommend moving to `scripts/`): +- `!migrate_to_sqlite.py` +- `import_csv.py` +- `del_market_cap_tables.py` +- `fix_timestamps.py` +- `list_coins.py` +- `create_agent.py` + +### Examples / Unused Code: +- `basic_ws.py` (Appears to be an example file). +- `backtester.py` +- `strategy_sma_cross.py` (A strategy file in the root, not in the `strategies` folder). +- `strategy_template.py` + +### Standalone / Potentially Unused Core Files: +The following files seem to have their logic already integrated into the main multi-process application. They might be remnants of a previous architecture and may not be needed as standalone scripts. +- `address_monitor.py` +- `position_monitor.py` +- `trade_log.py` +- `wallet_data.py` +- `whale_tracker.py` + +### Data / Log Files (Recommend archiving or deleting): +- `hyperliquid_wallet_data_*.json` (These appear to be backups or logs). \ No newline at end of file diff --git a/IMPROVEMENT_ROADMAP.md b/IMPROVEMENT_ROADMAP.md new file mode 100644 index 0000000..503fad1 --- /dev/null +++ b/IMPROVEMENT_ROADMAP.md @@ -0,0 +1,300 @@ +# Improvement Roadmap - Hyperliquid Trading Bot + +## Overview +This document outlines the detailed implementation plan for transforming the trading bot into a production-ready system. + +## Phase 1: Foundation (Weeks 1-2) + +### Week 1: Security & Stability + +#### Day 1-2: Critical Security Fixes +- [ ] **Implement Encrypted Key Storage** + - Create `security/key_manager.py` + - Replace environment variable key access + - Add key rotation mechanism + - **Files**: `trade_executor.py`, `create_agent.py` + +- [ ] **Add Input Validation Framework** + - Create `validation/trading_validator.py` + - Validate all trading parameters + - Add sanitization for user inputs + - **Files**: `position_manager.py`, `trade_executor.py` + +#### Day 3-4: Risk Management +- [ ] **Implement Circuit Breakers** + - Create `risk/circuit_breaker.py` + - Add trading halt conditions + - Implement automatic recovery + - **Files**: `trade_executor.py`, `position_manager.py` + +- [ ] **Fix Import Resolution Issues** + - Update relative imports + - Add `__init__.py` files where missing + - Test all module imports + - **Files**: `main_app.py`, all strategy files + +#### Day 5-7: Code Quality +- [ ] **Refactor Dashboard Display** + - Extract `DashboardRenderer` class + - Split into market/strategy/position components + - Add configuration for display options + - **Files**: `main_app.py` + +### Week 2: Configuration & Error Handling + +#### Day 8-9: Configuration Management +- [ ] **Create Centralized Configuration** + - Create `config/settings.py` + - Move all magic numbers to config + - Add environment-specific configs + - **Files**: All Python files + +- [ ] **Standardize Error Handling** + - Create `utils/error_handlers.py` + - Implement retry decorators + - Add structured exception classes + - **Files**: All core modules + +#### Day 10-12: Database Improvements +- [ ] **Implement Connection Pool** + - Create `database/connection_pool.py` + - Replace direct SQLite connections + - Add connection health monitoring + - **Files**: `base_strategy.py`, all data access files + +- [ ] **Add Database Migrations** + - Create `database/migrations/` + - Version control schema changes + - Add rollback capabilities + - **Files**: Database schema files + +#### Day 13-14: Basic Testing +- [ ] **Create Test Framework** + - Set up `tests/` directory structure + - Add pytest configuration + - Create test fixtures and mocks + - **Files**: New test files + +## Phase 2: Performance & Testing (Weeks 3-4) + +### Week 3: Performance Optimization + +#### Day 15-17: Caching Layer +- [ ] **Implement Redis/Memory Cache** + - Create `cache/cache_manager.py` + - Cache frequently accessed data + - Add cache invalidation logic + - **Files**: `data_fetcher.py`, `base_strategy.py` + +#### Day 18-19: Async Operations +- [ ] **Convert to Async/Await** + - Identify blocking operations + - Convert to async patterns + - Add async context managers + - **Files**: `live_market_utils.py`, API calls + +#### Day 20-21: Batch Processing +- [ ] **Implement Batch Operations** + - Batch database writes + - Bulk API requests + - Optimize data processing + - **Files**: Data processing modules + +### Week 4: Testing Framework + +#### Day 22-24: Unit Tests +- [ ] **Comprehensive Unit Test Suite** + - Test all core classes + - Mock external dependencies + - Achieve >80% coverage + - **Files**: `tests/unit/` + +#### Day 25-26: Integration Tests +- [ ] **End-to-End Testing** + - Test complete workflows + - Mock Hyperliquid API + - Test process communication + - **Files**: `tests/integration/` + +#### Day 27-28: Paper Trading +- [ ] **Paper Trading Mode** + - Create simulation environment + - Mock trade execution + - Add performance tracking + - **Files**: `trade_executor.py`, new simulation files + +## Phase 3: Monitoring & Observability (Weeks 5-6) + +### Week 5: Metrics & Monitoring + +#### Day 29-31: Metrics Collection +- [ ] **Add Prometheus Metrics** + - Create `monitoring/metrics.py` + - Track key performance indicators + - Add custom business metrics + - **Files**: All core modules + +#### Day 32-33: Health Checks +- [ ] **Health Check System** + - Create `monitoring/health_check.py` + - Monitor all system components + - Add dependency checks + - **Files**: `main_app.py`, all processes + +#### Day 34-35: Alerting +- [ ] **Alerting System** + - Create `monitoring/alerts.py` + - Configure alert rules + - Add notification channels + - **Files**: New alerting files + +### Week 6: Documentation & Developer Experience + +#### Day 36-38: API Documentation +- [ ] **Auto-Generated Docs** + - Set up Sphinx/ MkDocs + - Document all public APIs + - Add code examples + - **Files**: `docs/` directory + +#### Day 39-40: Setup Improvements +- [ ] **Interactive Setup** + - Create setup wizard + - Validate configuration + - Add guided configuration + - **Files**: `setup.py`, new setup files + +#### Day 41-42: Examples & Guides +- [ ] **Strategy Examples** + - Create example strategies + - Add development tutorials + - Document best practices + - **Files**: `examples/`, `WIKI/` + +## Phase 4: Advanced Features (Weeks 7-8) + +### Week 7: Advanced Risk Management + +#### Day 43-45: Position Sizing +- [ ] **Dynamic Position Sizing** + - Volatility-based sizing + - Portfolio risk metrics + - Kelly criterion implementation + - **Files**: `position_manager.py`, new risk modules + +#### Day 46-47: Advanced Orders +- [ ] **Advanced Order Types** + - Stop-loss orders + - Take-profit orders + - Conditional orders + - **Files**: `trade_executor.py` + +#### Day 48-49: Portfolio Management +- [ ] **Portfolio Optimization** + - Correlation analysis + - Risk parity allocation + - Rebalancing logic + - **Files**: New portfolio modules + +### Week 8: Production Readiness + +#### Day 50-52: Deployment +- [ ] **Production Deployment** + - Docker containerization + - Kubernetes manifests + - CI/CD pipeline + - **Files**: `docker/`, `.github/workflows/` + +#### Day 53-54: Performance Profiling +- [ ] **Profiling Tools** + - Performance monitoring + - Memory usage tracking + - Bottleneck identification + - **Files**: New profiling modules + +#### Day 55-56: Final Polish +- [ ] **Production Hardening** + - Security audit + - Load testing + - Documentation review + - **Files**: All files + +## Implementation Guidelines + +### Daily Workflow +1. **Morning Standup**: Review progress, identify blockers +2. **Development**: Focus on assigned tasks +3. **Testing**: Write tests alongside code +4. **Code Review**: Peer review all changes +5. **Documentation**: Update docs with changes + +### Quality Gates +- All code must pass linting and formatting +- New features require unit tests +- Integration tests for critical paths +- Security review for sensitive changes + +### Risk Mitigation +- Feature flags for new functionality +- Gradual rollout with monitoring +- Rollback procedures for each change +- Regular backup and recovery testing + +## Success Criteria + +### Phase 1 Success +- [ ] All security vulnerabilities fixed +- [ ] Import resolution issues resolved +- [ ] Basic test framework in place +- [ ] Configuration management implemented + +### Phase 2 Success +- [ ] Performance improvements measured +- [ ] Test coverage >80% +- [ ] Paper trading mode functional +- [ ] Async operations implemented + +### Phase 3 Success +- [ ] Monitoring dashboard operational +- [ ] Alerting system functional +- [ ] Documentation complete +- [ ] Developer experience improved + +### Phase 4 Success +- [ ] Production deployment ready +- [ ] Advanced features working +- [ ] Performance benchmarks met +- [ ] Security audit passed + +## Resource Requirements + +### Development Team +- **Senior Python Developer**: Lead architecture and security +- **Backend Developer**: Performance and database optimization +- **DevOps Engineer**: Deployment and monitoring +- **QA Engineer**: Testing framework and automation + +### Tools & Services +- **Development**: PyCharm/VSCode, Git, Docker +- **Testing**: Pytest, Mock, Coverage tools +- **Monitoring**: Prometheus, Grafana, AlertManager +- **CI/CD**: GitHub Actions, Docker Hub +- **Documentation**: Sphinx/MkDocs, ReadTheDocs + +### Infrastructure +- **Development**: Local development environment +- **Testing**: Staging environment with test data +- **Production**: Cloud deployment with monitoring +- **Backup**: Automated backup and recovery system + +## Timeline Summary + +| Phase | Duration | Key Deliverables | +|-------|----------|------------------| +| Phase 1 | 2 weeks | Security fixes, basic testing, configuration | +| Phase 2 | 2 weeks | Performance optimization, comprehensive testing | +| Phase 3 | 2 weeks | Monitoring, documentation, developer tools | +| Phase 4 | 2 weeks | Advanced features, production deployment | +| **Total** | **8 weeks** | **Production-ready trading system** | + +This roadmap provides a structured approach to transforming the trading bot into a robust, scalable, and maintainable system suitable for production use. \ No newline at end of file diff --git a/PROJECT_REVIEW_AND_PROPOSALS.md b/PROJECT_REVIEW_AND_PROPOSALS.md new file mode 100644 index 0000000..e96a1da --- /dev/null +++ b/PROJECT_REVIEW_AND_PROPOSALS.md @@ -0,0 +1 @@ +"# Comprehensive Project Review and Improvement Proposals" diff --git a/_data/backtesting_conf.json b/_data/backtesting_conf.json index 66c76cf..aec37b7 100644 --- a/_data/backtesting_conf.json +++ b/_data/backtesting_conf.json @@ -1,6 +1,6 @@ { "sma_cross_eth_5m": { - "strategy_name": "sma_cross_2", + "strategy_name": "sma_cross_1", "script": "strategies.ma_cross_strategy.MaCrossStrategy", "optimization_params": { "fast": { diff --git a/_data/coin_id_map.json b/_data/coin_id_map.json new file mode 100644 index 0000000..f6c9d78 --- /dev/null +++ b/_data/coin_id_map.json @@ -0,0 +1,208 @@ +{ + "0G": "zero-gravity", + "2Z": "doublezero", + "AAVE": "aave", + "ACE": "endurance", + "ADA": "ada-the-dog", + "AI": "sleepless-ai", + "AI16Z": "ai16z", + "AIXBT": "aixbt", + "ALGO": "dear-algorithm", + "ALT": "altlayer", + "ANIME": "anime-token", + "APE": "ape-3", + "APEX": "apex-token-2", + "APT": "aptos", + "AR": "arweave", + "ARB": "osmosis-allarb", + "ARK": "ark-3", + "ASTER": "astar", + "ATOM": "lost-bitcoin-layer", + "AVAX": "binance-peg-avalanche", + "AVNT": "avantis", + "BABY": "baby-2", + "BADGER": "badger-dao", + "BANANA": "nforbanana", + "BCH": "bitcoin-cash", + "BERA": "berachain-bera", + "BIGTIME": "big-time", + "BIO": "bio-protocol", + "BLAST": "blast", + "BLUR": "blur", + "BLZ": "bluzelle", + "BNB": "binancecoin", + "BNT": "bancor", + "BOME": "book-of-meme", + "BRETT": "brett", + "BSV": "bitcoin-cash-sv", + "BTC": "bitcoin", + "CAKE": "pancakeswap-token", + "CANTO": "canto", + "CATI": "catizen", + "CELO": "celo", + "CFX": "cosmic-force-token-v2", + "CHILLGUY": "just-a-chill-guy", + "COMP": "compound-governance-token", + "CRV": "curve-dao-token", + "CYBER": "cyberconnect", + "DOGE": "doge-on-pulsechain", + "DOOD": "doodles", + "DOT": "xcdot", + "DYDX": "dydx-chain", + "DYM": "dymension", + "EIGEN": "eigenlayer", + "ENA": "ethena", + "ENS": "ethereum-name-service", + "ETC": "ethereum-classic", + "ETH": "ethereum", + "ETHFI": "ether-fi", + "FARTCOIN": "fartcoin-2", + "FET": "fetch-ai", + "FIL": "filecoin", + "FRIEND": "friend-tech", + "FTM": "fantom", + "FTT": "ftx-token", + "GALA": "gala", + "GAS": "gas", + "GMT": "stepn", + "GMX": "gmx", + "GOAT": "goat", + "GRASS": "grass-3", + "GRIFFAIN": "griffain", + "HBAR": "hedera-hashgraph", + "HEMI": "hemi", + "HMSTR": "hamster-kombat", + "HYPE": "hyperliquid", + "HYPER": "hyper-4", + "ILV": "illuvium", + "IMX": "immutable-x", + "INIT": "initia", + "INJ": "injective-protocol", + "IO": "io", + "IOTA": "iota-2", + "IP": "story-2", + "JELLY": "jelly-time", + "JTO": "jito-governance-token", + "JUP": "jupiter-exchange-solana", + "KAITO": "kaito", + "KAS": "wrapped-kaspa", + "LAUNCHCOIN": "ben-pasternak", + "LAYER": "unilayer", + "LDO": "linea-bridged-ldo-linea", + "LINEA": "linea", + "LINK": "osmosis-alllink", + "LISTA": "lista", + "LOOM": "loom", + "LTC": "litecoin", + "MANTA": "manta-network", + "MATIC": "matic-network", + "MAV": "maverick-protocol", + "MAVIA": "heroes-of-mavia", + "ME": "magic-eden", + "MEGA": "megaeth", + "MELANIA": "melania-meme", + "MEME": "mpx6900", + "MERL": "merlin-chain", + "MET": "metya", + "MEW": "cat-in-a-dogs-world", + "MINA": "mina-protocol", + "MKR": "maker", + "MNT": "mynth", + "MON": "mon-protocol", + "MOODENG": "moo-deng-2", + "MORPHO": "morpho", + "MOVE": "movement", + "MYRO": "myro", + "NEAR": "near", + "NEO": "neo", + "NIL": "nillion", + "NOT": "nothing-3", + "NTRN": "neutron-3", + "NXPC": "nexpace", + "OGN": "origin-protocol", + "OM": "mantra-dao", + "OMNI": "omni-2", + "ONDO": "ondo-finance", + "OP": "optimism", + "ORBS": "orbs", + "ORDI": "ordinals", + "OX": "ox-fun", + "PANDORA": "pandora", + "PAXG": "pax-gold", + "PENDLE": "pendle", + "PENGU": "pudgy-penguins", + "PEOPLE": "constitutiondao-wormhole", + "PIXEL": "pixel-3", + "PNUT": "pnut", + "POL": "proof-of-liquidity", + "POLYX": "polymesh", + "POPCAT": "popcat", + "PROMPT": "wayfinder", + "PROVE": "succinct", + "PUMP": "pump-fun", + "PURR": "purr-2", + "PYTH": "pyth-network", + "RDNT": "radiant-capital", + "RENDER": "render-token", + "REQ": "request-network", + "RESOLV": "resolv", + "REZ": "renzo", + "RLB": "rollbit-coin", + "RSR": "reserve-rights-token", + "RUNE": "thorchain", + "S": "token-s", + "SAGA": "saga-2", + "SAND": "the-sandbox-wormhole", + "SCR": "scroll", + "SEI": "sei-network", + "SHIA": "shiba-saga", + "SKY": "sky", + "SNX": "havven", + "SOL": "solana", + "SOPH": "sophon", + "SPX": "spx6900", + "STBL": "stbl", + "STG": "stargate-finance", + "STRAX": "stratis", + "STRK": "starknet", + "STX": "stox", + "SUI": "sui", + "SUPER": "superfarm", + "SUSHI": "sushi", + "SYRUP": "syrup", + "TAO": "the-anthropic-order", + "TIA": "tia", + "TNSR": "tensorium", + "TON": "tontoken", + "TRB": "tellor", + "TRUMP": "trumpeffect69420", + "TRX": "tron-bsc", + "TST": "test-3", + "TURBO": "turbo", + "UMA": "uma", + "UNI": "uni", + "UNIBOT": "unibot", + "USTC": "wrapped-ust", + "USUAL": "usual", + "VINE": "vine", + "VIRTUAL": "virtual-protocol", + "VVV": "venice-token", + "W": "w", + "WCT": "connect-token-wct", + "WIF": "wif-secondchance", + "WLD": "worldcoin-wld", + "WLFI": "world-liberty-financial", + "XAI": "xai-blockchain", + "XLM": "stellar", + "XPL": "pulse-2", + "XRP": "ripple", + "YGG": "yield-guild-games", + "YZY": "yzy", + "ZEC": "zcash", + "ZEN": "zenith-3", + "ZEREBRO": "zerebro", + "ZETA": "zeta", + "ZK": "zksync", + "ZORA": "zora", + "ZRO": "layerzero" +} \ No newline at end of file diff --git a/_data/coin_precision.json b/_data/coin_precision.json index fb9d0e8..7d927f3 100644 --- a/_data/coin_precision.json +++ b/_data/coin_precision.json @@ -101,6 +101,7 @@ "MAV": 0, "MAVIA": 1, "ME": 1, + "MEGA": 0, "MELANIA": 1, "MEME": 0, "MERL": 0, diff --git a/_data/executor_managed_positions.json b/_data/executor_managed_positions.json deleted file mode 100644 index 4a80fe9..0000000 --- a/_data/executor_managed_positions.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "sma_cross_2": { - "coin": "BTC", - "side": "short", - "size": 0.0001 - } -} \ No newline at end of file diff --git a/_data/market_cap_data.json b/_data/market_cap_data.json index 967c76d..45b1096 100644 --- a/_data/market_cap_data.json +++ b/_data/market_cap_data.json @@ -1,47 +1,1043 @@ { - "BTC_market_cap": { - "datetime_utc": "2025-10-14 19:07:32", - "market_cap": 2254100854707.6426 + "0G_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 266618645.60905194 }, - "ETH_market_cap": { - "datetime_utc": "2025-10-14 19:07:45", - "market_cap": 498260644977.71 + "2Z_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 556733577.2083987 }, - "SOL_market_cap": { - "datetime_utc": "2025-10-14 19:07:54", - "market_cap": 110493585034.85222 + "AAVE_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 3043486983.2528467 }, - "BNB_market_cap": { - "datetime_utc": "2025-10-14 19:08:01", - "market_cap": 169461959349.39044 + "ACE_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 19021793.55897193 }, - "ZEC_market_cap": { - "datetime_utc": "2025-10-14 19:08:32", - "market_cap": 3915238492.7266335 + "ADA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 252519.9851697924 }, - "SUI_market_cap": { - "datetime_utc": "2025-10-14 19:08:51", - "market_cap": 10305847774.680008 + "AI_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 7831210.097665075 }, - "STABLECOINS_market_cap": { - "datetime_utc": "2025-10-14 00:00:00", - "market_cap": 551315140796.8396 + "AI16Z_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 75642873.65855925 + }, + "AIXBT_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 64014261.43038649 + }, + "ALGO_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 15203.326275876343 + }, + "ALT_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 80742549.40336938 + }, + "ANIME_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 60608.99835541969 + }, + "APE_market_cap": { + "datetime_utc": "2025-11-02 00:00:00", + "timestamp_ms": 1762041600000, + "market_cap": 0.0 + }, + "APEX_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 108228391.87106021 + }, + "APT_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 1997332824.5102599 + }, + "AR_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 246076704.36594132 + }, + "ARB_market_cap": { + "datetime_utc": "2025-09-28 00:00:00", + "timestamp_ms": 1759017600000, + "market_cap": 72619.00796098988 + }, + "ARK_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 411547691.74511635 }, "ASTER_market_cap": { - "datetime_utc": "2025-10-14 20:47:18", - "market_cap": 163953008.77347806 + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 122331099.54500043 + }, + "ATOM_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 29172.50856824532 + }, + "AVAX_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 33300889.08351314 + }, + "AVNT_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 140133510.68489558 + }, + "BABY_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 36558.97600941408 + }, + "BADGER_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 15180909.125460342 + }, + "BANANA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 43487.97083739428 + }, + "BCH_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 10073215006.561533 + }, + "BERA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 205588072.4053306 + }, + "BIGTIME_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 51337212.447418235 + }, + "BIO_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 136544057.938857 + }, + "BLAST_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 56400161.83168796 + }, + "BLUR_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 109559269.254535 + }, + "BLZ_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 10064448.528690653 + }, + "BNB_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 136686241889.6909 + }, + "BNT_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 59682479.43158628 + }, + "BOME_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 58354558.41112271 + }, + "BRETT_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 0.0 + }, + "BSV_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 420933092.7541339 + }, + "BTC_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 2122955589451.965 + }, + "CAKE_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 762791857.5600649 + }, + "CANTO_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 1322199.2787484196 + }, + "CATI_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 13552995.092222402 + }, + "CELO_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 135053601.0443175 + }, + "CFX_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 0.0 + }, + "CHILLGUY_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 174042.3083893369 + }, + "COMP_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 315522371.1288435 + }, + "CRV_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 610727599.216157 + }, + "CYBER_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 42360332.624864906 + }, + "DOGE_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 0.0 + }, + "DOOD_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 48649820.43027841 + }, + "DOT_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 0.0 + }, + "DYDX_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 214018887.73670998 + }, + "DYM_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 32110231.189281642 + }, + "EIGEN_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 330085205.96449065 + }, + "ENA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 2376161450.7710357 + }, + "ENS_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 446155832.60514927 + }, + "ETC_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 2313131264.106589 + }, + "ETH_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 434299353161.9843 + }, + "ETHFI_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 485118477.0247199 + }, + "FARTCOIN_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 284376.59519821126 + }, + "FET_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 544489908.0582802 + }, + "FIL_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 1016083740.0190436 + }, + "FRIEND_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 2869341.0552818435 + }, + "FTM_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 0.0 + }, + "FTT_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 0.0 + }, + "GALA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 410214884.087835 + }, + "GAS_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 149857716.9366841 + }, + "GMT_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 68841557.52603114 + }, + "GMX_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 91807230.98538564 + }, + "GOAT_market_cap": { + "datetime_utc": "2025-11-01 00:00:00", + "timestamp_ms": 1761955200000, + "market_cap": 0.0 + }, + "GRASS_market_cap": { + "datetime_utc": "2025-10-28 00:00:00", + "timestamp_ms": 1761609600000, + "market_cap": 38585.3005549229 + }, + "GRIFFAIN_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 17392444.018734735 + }, + "HBAR_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 7432895531.68406 + }, + "HEMI_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 34585774.62743865 + }, + "HMSTR_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 21881457.716577947 }, "HYPE_market_cap": { - "datetime_utc": "2025-10-14 20:55:21", - "market_cap": 10637373991.458858 + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 10744066200.305445 }, - "TOTAL_market_cap_daily": { - "datetime_utc": "2025-10-16 00:00:00", - "market_cap": 3849619103702.8604 + "HYPER_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 0.0 + }, + "ILV_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 89567990.66438538 + }, + "IMX_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 867440139.0762451 + }, + "INIT_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 21128296.434240393 + }, + "INJ_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 659065871.8067399 + }, + "IO_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 62505119.61215299 + }, + "IOTA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 24767325.336265605 + }, + "IP_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 1288944497.962775 + }, + "JELLY_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 14213.078326048195 + }, + "JTO_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 323919252.5143652 + }, + "JUP_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 1165472279.016814 + }, + "KAITO_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 218111601.119164 + }, + "KAS_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 0.0 + }, + "LAUNCHCOIN_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 25018591.623293683 + }, + "LAYER_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 151162.8640712551 + }, + "LDO_market_cap": { + "datetime_utc": "1970-01-01 00:00:00", + "timestamp_ms": 0, + "market_cap": 0.0 + }, + "LINEA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 187698529.9079421 + }, + "LINK_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 142279.72147959325 + }, + "LISTA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 60841645.41038552 + }, + "LOOM_market_cap": { + "datetime_utc": "2025-10-31 00:00:00", + "timestamp_ms": 1761868800000, + "market_cap": 0.0 + }, + "LTC_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 6676039164.434603 + }, + "MANTA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 44172013.01770599 + }, + "MATIC_market_cap": { + "datetime_utc": "2025-10-18 00:00:00", + "timestamp_ms": 1760745600000, + "market_cap": 0.0 + }, + "MAV_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 21911706.62724472 + }, + "MAVIA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 4349810.405317102 + }, + "ME_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 67292619.84739074 + }, + "MEGA_market_cap": { + "datetime_utc": "1970-01-01 00:00:00", + "timestamp_ms": 0, + "market_cap": 0.0 + }, + "MELANIA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 83583412.31513013 + }, + "MEME_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 15763.231214597714 + }, + "MERL_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 319327522.04054844 + }, + "MET_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 32895038.943529557 + }, + "MEW_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 135877052.97681496 + }, + "MINA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 146020322.58194762 + }, + "MKR_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 0.0 + }, + "MNT_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 3696107.9048805744 + }, + "MON_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 9902800.530109076 + }, + "MOODENG_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 4397771.673453087 + }, + "MORPHO_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 969536559.8181872 + }, + "MOVE_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 157221083.89906973 + }, + "MYRO_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 15177548.156639775 + }, + "NEAR_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 2441358181.0741878 + }, + "NEO_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 342951027.6266851 + }, + "NIL_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 48840509.7250443 + }, + "NOT_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 82734.58508245819 + }, + "NTRN_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 23300375.381838094 + }, + "NXPC_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 69995236.7033223 + }, + "OGN_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 27580147.38301667 + }, + "OM_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 103697970.86476313 + }, + "OMNI_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 175528.067636899 + }, + "ONDO_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 1939142073.1196306 + }, + "OP_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 667649627.9813179 + }, + "ORBS_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 55029682.46756348 + }, + "ORDI_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 85185811.81412612 + }, + "OX_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 157634.6740919531 + }, + "PANDORA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 3732534.93769119 + }, + "PAXG_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 1328106155.2408018 + }, + "PENDLE_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 457437840.1263986 + }, + "PENGU_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 965538140.3936106 + }, + "PEOPLE_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 0.0 + }, + "PIXEL_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 17048.083686552345 + }, + "PNUT_market_cap": { + "datetime_utc": "2025-11-01 00:00:00", + "timestamp_ms": 1761955200000, + "market_cap": 41233.07758518409 + }, + "POL_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 0.0 + }, + "POLYX_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 84490920.71016563 + }, + "POPCAT_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 121914452.19243732 + }, + "PROMPT_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 13562717.140439501 + }, + "PROVE_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 116187315.47981949 }, "PUMP_market_cap": { - "datetime_utc": "2025-10-14 21:02:30", - "market_cap": 1454398647.593871 + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 1369591728.1563232 }, - "summary_last_updated_utc": "2025-10-16T00:16:09.640449+00:00" + "PURR_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 65827661.55315251 + }, + "PYTH_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 539864997.208216 + }, + "RDNT_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 17498638.40698302 + }, + "RENDER_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 1034536484.2636255 + }, + "REQ_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 91529547.52464016 + }, + "RESOLV_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 14454926.320095224 + }, + "REZ_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 35173756.487066366 + }, + "RLB_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 118321265.08017306 + }, + "RSR_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 289318202.78928894 + }, + "RUNE_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 273947984.4115854 + }, + "S_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 0.0 + }, + "SAGA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 27144628.5109482 + }, + "SAND_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 0.0 + }, + "SCR_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 32156822.293870974 + }, + "SEI_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 1035086503.8850844 + }, + "SHIA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 197371.205124278 + }, + "SKY_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 1233438036.0145807 + }, + "SNX_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 308463989.3443749 + }, + "SOL_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 91566229600.40993 + }, + "SOPH_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 44742895.41423028 + }, + "SPX_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 679837069.7818836 + }, + "STBL_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 33660031.81704132 + }, + "STG_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 121555604.60671808 + }, + "STRAX_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 53632087.832194604 + }, + "STRK_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 480385612.1404703 + }, + "STX_market_cap": { + "datetime_utc": "2025-10-18 00:00:00", + "timestamp_ms": 1760745600000, + "market_cap": 398553.8861129834 + }, + "SUI_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 7582956962.382049 + }, + "SUPER_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 204583506.78983364 + }, + "SUSHI_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 86457467.04928584 + }, + "SYRUP_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 452516339.28053576 + }, + "TAO_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 21277.096113283824 + }, + "TIA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 829003.4351000187 + }, + "TNSR_market_cap": { + "datetime_utc": "2025-11-03 00:00:00", + "timestamp_ms": 1762128000000, + "market_cap": 17857.56728532014 + }, + "TON_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 2403893.0332234623 + }, + "TRB_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 61551593.46789807 + }, + "TRUMP_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 22832.523567028387 + }, + "TRX_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 0.0 + }, + "TST_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 14465287.743795844 + }, + "TURBO_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 129449187.01694113 + }, + "UMA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 87273593.42946458 + }, + "UNI_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 104652.2631986404 + }, + "UNIBOT_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 2078443.042996259 + }, + "USTC_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 0.0 + }, + "USUAL_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 28390048.92847462 + }, + "VINE_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 39341979.273077086 + }, + "VIRTUAL_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 937625889.5719905 + }, + "VVV_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 57616550.27696967 + }, + "W_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 130075.1315857268 + }, + "WCT_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 22144472.357325494 + }, + "WIF_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 110210.67851447531 + }, + "WLD_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 1643720220.8479671 + }, + "WLFI_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 3142696248.2576 + }, + "XAI_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 39683418.65722079 + }, + "XLM_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 8919546413.962923 + }, + "XPL_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 0.0 + }, + "XRP_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 139177666460.96902 + }, + "YGG_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 72289782.70350341 + }, + "YZY_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 49793986.29032182 + }, + "ZEC_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 6917445577.244665 + }, + "ZEN_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 35095.44531613883 + }, + "ZEREBRO_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 46689984.60393194 + }, + "ZETA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 14461161.692064932 + }, + "ZK_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 373362446.8403737 + }, + "ZORA_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 272850912.0455221 + }, + "ZRO_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 159343859.3580481 + }, + "STABLECOINS_market_cap": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 275682631775.5859 + }, + "TOTAL_market_cap_daily": { + "datetime_utc": "2025-11-04 00:00:00", + "timestamp_ms": 1762214400000, + "market_cap": 3609757629625.9795 + }, + "summary_last_updated_utc": "2025-11-04T00:24:54.992739+00:00" } \ No newline at end of file diff --git a/_data/market_data.db-shm b/_data/market_data.db-shm index 708dc2e..2816b66 100644 Binary files a/_data/market_data.db-shm and b/_data/market_data.db-shm differ diff --git a/_data/opened_positions.json b/_data/opened_positions.json new file mode 100644 index 0000000..254e134 --- /dev/null +++ b/_data/opened_positions.json @@ -0,0 +1,11 @@ +{ + "copy_trader_eth_ETH": { + "strategy": "copy_trader_eth", + "coin": "ETH", + "side": "long", + "open_time_utc": "2025-11-02T20:35:02.988272+00:00", + "open_price": 3854.9, + "amount": 0.0055, + "leverage": 3 + } +} \ No newline at end of file diff --git a/_data/strategies.json b/_data/strategies.json index e4ad53e..8ea4a3a 100644 --- a/_data/strategies.json +++ b/_data/strategies.json @@ -1,12 +1,11 @@ { - "sma_cross_eth_5m": { - "enabled": true, - "script": "strategy_runner.py", + "sma_cross_1": { + "enabled": false, "class": "strategies.ma_cross_strategy.MaCrossStrategy", "agent": "scalper_agent", "parameters": { "coin": "ETH", - "timeframe": "1m", + "timeframe": "15m", "short_ma": 7, "long_ma": 44, "size": 0.0055, @@ -14,19 +13,39 @@ "leverage_short": 5 } }, - "sma_125d_btc": { - "enabled": true, - "script": "strategy_runner.py", + "sma_44d_btc": { + "enabled": false, "class": "strategies.single_sma_strategy.SingleSmaStrategy", - "agent": "swing_agent", "parameters": { + "agent": "swing", "coin": "BTC", "timeframe": "1d", "sma_period": 44, "size": 0.0001, - "leverage_long": 2, + "leverage_long": 3, "leverage_short": 1 } + }, + "copy_trader_eth": { + "enabled": true, + "is_event_driven": true, + "class": "strategies.copy_trader_strategy.CopyTraderStrategy", + "parameters": { + "agent": "scalper", + "target_address": "0x32885a6adac4375858E6edC092EfDDb0Ef46484C", + "coins_to_copy": { + "ETH": { + "size": 0.0055, + "leverage_long": 3, + "leverage_short": 3 + }, + "BTC": { + "size": 0.0002, + "leverage_long": 1, + "leverage_short": 1 + } + } + } } } diff --git a/_data/strategy_state_copy_trader_eth.json b/_data/strategy_state_copy_trader_eth.json new file mode 100644 index 0000000..003ccf3 --- /dev/null +++ b/_data/strategy_state_copy_trader_eth.json @@ -0,0 +1,7 @@ +{ + "ETH": { + "side": "long", + "size": 0.018, + "entry": 3864.2 + } +} \ No newline at end of file diff --git a/_data/strategy_status_copy_trader_eth.json b/_data/strategy_status_copy_trader_eth.json new file mode 100644 index 0000000..c75c89a --- /dev/null +++ b/_data/strategy_status_copy_trader_eth.json @@ -0,0 +1,7 @@ +{ + "strategy_name": "copy_trader_eth", + "current_signal": "WAIT", + "last_signal_change_utc": null, + "signal_price": null, + "last_checked_utc": "2025-11-02T09:55:08.460168+00:00" +} \ No newline at end of file diff --git a/_data/strategy_status_ma_cross_btc.json b/_data/strategy_status_ma_cross_btc.json deleted file mode 100644 index 7882e85..0000000 --- a/_data/strategy_status_ma_cross_btc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "strategy_name": "ma_cross_btc", - "current_signal": "HOLD", - "last_signal_change_utc": "2025-10-12T17:00:00+00:00", - "signal_price": 114286.0, - "last_checked_utc": "2025-10-15T11:48:55.092260+00:00" -} \ No newline at end of file diff --git a/_data/strategy_status_sma_125d_btc.json b/_data/strategy_status_sma_125d_btc.json deleted file mode 100644 index 4932ea0..0000000 --- a/_data/strategy_status_sma_125d_btc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "strategy_name": "sma_125d_btc", - "current_signal": "SELL", - "last_signal_change_utc": "2025-10-14T00:00:00+00:00", - "signal_price": 113026.0, - "last_checked_utc": "2025-10-16T10:42:03.203292+00:00" -} \ No newline at end of file diff --git a/_data/strategy_status_sma_125d_eth.json b/_data/strategy_status_sma_125d_eth.json deleted file mode 100644 index 5c77164..0000000 --- a/_data/strategy_status_sma_125d_eth.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "strategy_name": "sma_125d_eth", - "current_signal": "BUY", - "last_signal_change_utc": "2025-08-26T00:00:00+00:00", - "signal_price": 4600.63, - "last_checked_utc": "2025-10-15T17:35:17.663159+00:00" -} \ No newline at end of file diff --git a/_data/strategy_status_sma_44d_btc.json b/_data/strategy_status_sma_44d_btc.json deleted file mode 100644 index f7966e0..0000000 --- a/_data/strategy_status_sma_44d_btc.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "strategy_name": "sma_44d_btc", - "current_signal": "SELL", - "last_signal_change_utc": "2025-10-14T00:00:00+00:00", - "signal_price": 113026.0, - "last_checked_utc": "2025-10-16T10:42:03.202977+00:00" -} \ No newline at end of file diff --git a/_data/strategy_status_sma_5m_eth.json b/_data/strategy_status_sma_5m_eth.json deleted file mode 100644 index e136da7..0000000 --- a/_data/strategy_status_sma_5m_eth.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "strategy_name": "sma_5m_eth", - "current_signal": "SELL", - "last_signal_change_utc": "2025-10-15T17:30:00+00:00", - "signal_price": 3937.5, - "last_checked_utc": "2025-10-15T17:35:05.035566+00:00" -} \ No newline at end of file diff --git a/_data/strategy_status_sma_cross.json b/_data/strategy_status_sma_cross.json deleted file mode 100644 index f51a39e..0000000 --- a/_data/strategy_status_sma_cross.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "strategy_name": "sma_cross", - "current_signal": "SELL", - "last_signal_change_utc": "2025-10-15T11:45:00+00:00", - "signal_price": 111957.0, - "last_checked_utc": "2025-10-15T12:10:05.048434+00:00" -} \ No newline at end of file diff --git a/_data/strategy_status_sma_cross_1.json b/_data/strategy_status_sma_cross_1.json deleted file mode 100644 index e9a5b44..0000000 --- a/_data/strategy_status_sma_cross_1.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "strategy_name": "sma_cross_1", - "current_signal": "FLAT", - "last_signal_change_utc": "2025-10-18T20:22:00+00:00", - "signal_price": 3893.9, - "last_checked_utc": "2025-10-18T20:30:05.021192+00:00" -} \ No newline at end of file diff --git a/_data/strategy_status_sma_cross_eth_5m.json b/_data/strategy_status_sma_cross_eth_5m.json deleted file mode 100644 index 58400d0..0000000 --- a/_data/strategy_status_sma_cross_eth_5m.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "strategy_name": "sma_cross_eth_5m", - "current_signal": "SELL", - "last_signal_change_utc": "2025-10-15T11:45:00+00:00", - "signal_price": 4106.1, - "last_checked_utc": "2025-10-15T12:05:05.022308+00:00" -} \ No newline at end of file diff --git a/_data/wallets_info.json b/_data/wallets_info.json new file mode 100644 index 0000000..222a8f6 --- /dev/null +++ b/_data/wallets_info.json @@ -0,0 +1,290 @@ +{ + "Whale 1 (BTC Maxi)": { + "address": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "core_state": { + "raw_state": { + "marginSummary": { + "accountValue": "30018881.1193690002", + "totalNtlPos": "182930683.6996490061", + "totalRawUsd": "212949564.8190180063", + "totalMarginUsed": "22969943.9848450013" + }, + "crossMarginSummary": { + "accountValue": "30018881.1193690002", + "totalNtlPos": "182930683.6996490061", + "totalRawUsd": "212949564.8190180063", + "totalMarginUsed": "22969943.9848450013" + }, + "crossMaintenanceMarginUsed": "5420634.4984849999", + "withdrawable": "7043396.1885489998", + "assetPositions": [ + { + "type": "oneWay", + "position": { + "coin": "BTC", + "szi": "-546.94441", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "115183.2", + "positionValue": "62795781.6009199992", + "unrealizedPnl": "203045.067519", + "returnOnEquity": "0.0322299761", + "liquidationPx": "159230.7089577085", + "marginUsed": "6279578.1600919999", + "maxLeverage": 40, + "cumFunding": { + "allTime": "-6923407.0911370004", + "sinceOpen": "-6923407.0970780002", + "sinceChange": "-1574.188052" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "ETH", + "szi": "-13938.989", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "4106.64", + "positionValue": "58064252.5784000009", + "unrealizedPnl": "-821803.895073", + "returnOnEquity": "-0.1435654683", + "liquidationPx": "5895.7059682083", + "marginUsed": "5806425.2578400001", + "maxLeverage": 25, + "cumFunding": { + "allTime": "-6610045.8844170002", + "sinceOpen": "-6610045.8844170002", + "sinceChange": "-730.403023" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "SOL", + "szi": "-75080.68", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "201.3063", + "positionValue": "14975592.4328000005", + "unrealizedPnl": "138627.573942", + "returnOnEquity": "0.0917199656", + "liquidationPx": "519.0933515657", + "marginUsed": "1497559.2432800001", + "maxLeverage": 20, + "cumFunding": { + "allTime": "-792893.154387", + "sinceOpen": "-922.301401", + "sinceChange": "-187.682929" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "DOGE", + "szi": "-109217.0", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "0.279959", + "positionValue": "22081.49306", + "unrealizedPnl": "8494.879599", + "returnOnEquity": "2.7782496288", + "liquidationPx": "213.2654356057", + "marginUsed": "2208.149306", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-1875.469799", + "sinceOpen": "-1875.469799", + "sinceChange": "45.79339" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "INJ", + "szi": "-18747.2", + "leverage": { + "type": "cross", + "value": 3 + }, + "entryPx": "13.01496", + "positionValue": "162200.7744", + "unrealizedPnl": "81793.4435", + "returnOnEquity": "1.005680924", + "liquidationPx": "1208.3529290194", + "marginUsed": "54066.9248", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-539.133533", + "sinceOpen": "-539.133533", + "sinceChange": "-7.367325" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "SUI", + "szi": "-376577.6", + "leverage": { + "type": "cross", + "value": 3 + }, + "entryPx": "3.85881", + "positionValue": "989495.3017599999", + "unrealizedPnl": "463648.956001", + "returnOnEquity": "0.9571980625", + "liquidationPx": "64.3045458208", + "marginUsed": "329831.767253", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-45793.455728", + "sinceOpen": "-45793.450891", + "sinceChange": "-1233.875821" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "XRP", + "szi": "-39691.0", + "leverage": { + "type": "cross", + "value": 20 + }, + "entryPx": "2.468585", + "positionValue": "105486.7707", + "unrealizedPnl": "-7506.1484", + "returnOnEquity": "-1.5321699789", + "liquidationPx": "607.2856858464", + "marginUsed": "5274.338535", + "maxLeverage": 20, + "cumFunding": { + "allTime": "-2645.400002", + "sinceOpen": "-116.036833", + "sinceChange": "-116.036833" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "HYPE", + "szi": "-750315.16", + "leverage": { + "type": "cross", + "value": 5 + }, + "entryPx": "43.3419", + "positionValue": "34957933.6195600033", + "unrealizedPnl": "-2437823.0249080001", + "returnOnEquity": "-0.3748177636", + "liquidationPx": "76.3945326684", + "marginUsed": "6991586.7239119997", + "maxLeverage": 5, + "cumFunding": { + "allTime": "-1881584.4214250001", + "sinceOpen": "-1881584.4214250001", + "sinceChange": "-45247.838743" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "FARTCOIN", + "szi": "-4122236.7999999998", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "0.80127", + "positionValue": "1681584.057824", + "unrealizedPnl": "1621478.3279619999", + "returnOnEquity": "4.9090151459", + "liquidationPx": "6.034656163", + "marginUsed": "168158.405782", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-72941.395024", + "sinceOpen": "-51271.5204", + "sinceChange": "-6504.295598" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "PUMP", + "szi": "-1921732999.0", + "leverage": { + "type": "cross", + "value": 5 + }, + "entryPx": "0.005551", + "positionValue": "9176275.0702250004", + "unrealizedPnl": "1491738.24016", + "returnOnEquity": "0.6991640321", + "liquidationPx": "0.0166674064", + "marginUsed": "1835255.0140450001", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-196004.534539", + "sinceOpen": "-196004.534539", + "sinceChange": "-9892.654861" + } + } + } + ], + "time": 1761595358385 + }, + "account_value": 30018881.119369, + "margin_used": 22969943.984845, + "margin_utilization": 0.765183215640378, + "available_margin": 7048937.134523999, + "total_position_value": 0.0, + "portfolio_leverage": 0.0 + }, + "open_orders": { + "raw_orders": [ + { + "coin": "WLFI", + "side": "B", + "limitPx": "0.10447", + "sz": "2624.0", + "oid": 194029229960, + "timestamp": 1760131688558, + "origSz": "12760.0", + "cloid": "0x00000000000000000000001261000016" + }, + { + "coin": "@166", + "side": "A", + "limitPx": "1.01", + "sz": "103038.77", + "oid": 174787748753, + "timestamp": 1758819420037, + "origSz": "3000000.0" + } + ] + }, + "account_metrics": { + "cumVlm": "2823125892.6900000572", + "nRequestsUsed": 1766294, + "nRequestsCap": 2823135892 + } + } +} \ No newline at end of file diff --git a/_data/wallets_to_track.json b/_data/wallets_to_track.json new file mode 100644 index 0000000..bcb906d --- /dev/null +++ b/_data/wallets_to_track.json @@ -0,0 +1,7 @@ +[ + { + "name": "Whale 1 (BTC Maxi)", + "address": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "tags": ["btc", "high_leverage"] + } +] diff --git a/address_monitor.py b/address_monitor.py index 9bd768a..ced5e44 100644 --- a/address_monitor.py +++ b/address_monitor.py @@ -15,13 +15,13 @@ from logging_utils import setup_logging # --- Configuration --- DEFAULT_ADDRESSES_TO_WATCH = [ #"0xd4c1f7e8d876c4749228d515473d36f919583d1d", - "0x0fd468a73084daa6ea77a9261e40fdec3e67e0c7", + "0x47930c76790c865217472f2ddb4d14c640ee450a", # "0x4d69495d16fab95c3c27b76978affa50301079d0", # "0x09bc1cf4d9f0b59e1425a8fde4d4b1f7d3c9410d", "0xc6ac58a7a63339898aeda32499a8238a46d88e84", "0xa8ef95dbd3db55911d3307930a84b27d6e969526", # "0x4129c62faf652fea61375dcd9ca8ce24b2bb8b95", - "0xbf1935fe7ab6d0aa3ee8d3da47c2f80e215b2a1c", + "0x32885a6adac4375858E6edC092EfDDb0Ef46484C", ] MAX_FILLS_TO_DISPLAY = 10 LOGS_DIR = "_logs" diff --git a/app.py b/app.py deleted file mode 100644 index e69de29..0000000 diff --git a/base_strategy.py b/base_strategy.py new file mode 100644 index 0000000..5f0a001 --- /dev/null +++ b/base_strategy.py @@ -0,0 +1,165 @@ +from abc import ABC, abstractmethod +import pandas as pd +import json +import os +import logging +from datetime import datetime, timezone +import sqlite3 +import multiprocessing +import time + +from logging_utils import setup_logging +from hyperliquid.info import Info +from hyperliquid.utils import constants + +class BaseStrategy(ABC): + """ + An abstract base class that defines the blueprint for all trading strategies. + It provides common functionality like loading data, saving status, and state management. + """ + + def __init__(self, strategy_name: str, params: dict, trade_signal_queue: multiprocessing.Queue = None, shared_status: dict = None): + self.strategy_name = strategy_name + self.params = params + self.trade_signal_queue = trade_signal_queue + # Optional multiprocessing.Manager().dict() to hold live status (avoids file IO) + self.shared_status = shared_status + + self.coin = params.get("coin", "N/A") + self.timeframe = params.get("timeframe", "N/A") + self.db_path = os.path.join("_data", "market_data.db") + self.status_file_path = os.path.join("_data", f"strategy_status_{self.strategy_name}.json") + + self.current_signal = "INIT" + self.last_signal_change_utc = None + self.signal_price = None + + # Note: Logging is set up by the run_strategy function + + def load_data(self) -> pd.DataFrame: + """Loads historical data for the configured coin and timeframe.""" + table_name = f"{self.coin}_{self.timeframe}" + + periods = [v for k, v in self.params.items() if 'period' in k or '_ma' in k or 'slow' in k or 'fast' in k] + limit = max(periods) + 50 if periods else 500 + + try: + with sqlite3.connect(f"file:{self.db_path}?mode=ro", uri=True) as conn: + query = f'SELECT * FROM "{table_name}" ORDER BY datetime_utc DESC LIMIT {limit}' + df = pd.read_sql(query, conn, parse_dates=['datetime_utc']) + if df.empty: return pd.DataFrame() + df.set_index('datetime_utc', inplace=True) + df.sort_index(inplace=True) + return df + except Exception as e: + logging.error(f"Failed to load data from table '{table_name}': {e}") + return pd.DataFrame() + + @abstractmethod + def calculate_signals(self, df: pd.DataFrame) -> pd.DataFrame: + """The core logic of the strategy. Must be implemented by child classes.""" + pass + + def calculate_signals_and_state(self, df: pd.DataFrame) -> bool: + """ + A wrapper that calls the strategy's signal calculation, determines + the last signal change, and returns True if the signal has changed. + """ + df_with_signals = self.calculate_signals(df) + df_with_signals.dropna(inplace=True) + if df_with_signals.empty: + return False + + df_with_signals['position_change'] = df_with_signals['signal'].diff() + + last_signal_int = df_with_signals['signal'].iloc[-1] + new_signal_str = "HOLD" + if last_signal_int == 1: new_signal_str = "BUY" + elif last_signal_int == -1: new_signal_str = "SELL" + + signal_changed = False + if self.current_signal == "INIT": + if new_signal_str == "BUY": self.current_signal = "INIT_BUY" + elif new_signal_str == "SELL": self.current_signal = "INIT_SELL" + else: self.current_signal = "HOLD" + signal_changed = True + elif new_signal_str != self.current_signal: + self.current_signal = new_signal_str + signal_changed = True + + if signal_changed: + last_change_series = df_with_signals[df_with_signals['position_change'] != 0] + if not last_change_series.empty: + last_change_row = last_change_series.iloc[-1] + self.last_signal_change_utc = last_change_row.name.tz_localize('UTC').isoformat() + self.signal_price = last_change_row['close'] + + return signal_changed + + def _save_status(self): + """Saves the current strategy state to its JSON file.""" + status = { + "strategy_name": self.strategy_name, + "current_signal": self.current_signal, + "last_signal_change_utc": self.last_signal_change_utc, + "signal_price": self.signal_price, + "last_checked_utc": datetime.now(timezone.utc).isoformat() + } + # If a shared status dict is provided (Manager.dict()), update it instead of writing files + try: + if self.shared_status is not None: + try: + # store the status under the strategy name for easy lookup + self.shared_status[self.strategy_name] = status + except Exception: + # Manager proxies may not accept nested mutable objects consistently; assign a copy + self.shared_status[self.strategy_name] = dict(status) + else: + with open(self.status_file_path, 'w', encoding='utf-8') as f: + json.dump(status, f, indent=4) + except IOError as e: + logging.error(f"Failed to write status file for {self.strategy_name}: {e}") + + def run_polling_loop(self): + """ + The default execution loop for polling-based strategies (e.g., SMAs). + """ + while True: + df = self.load_data() + if df.empty: + logging.warning("No data loaded. Waiting 1 minute...") + time.sleep(60) + continue + + signal_changed = self.calculate_signals_and_state(df.copy()) + self._save_status() + + if signal_changed or self.current_signal == "INIT_BUY" or self.current_signal == "INIT_SELL": + logging.warning(f"New signal detected: {self.current_signal}") + self.trade_signal_queue.put({ + "strategy_name": self.strategy_name, + "signal": self.current_signal, + "coin": self.coin, + "signal_price": self.signal_price, + "config": {"agent": self.params.get("agent"), "parameters": self.params} + }) + if self.current_signal == "INIT_BUY": self.current_signal = "BUY" + if self.current_signal == "INIT_SELL": self.current_signal = "SELL" + + logging.info(f"Current Signal: {self.current_signal}") + time.sleep(60) + + def run_event_loop(self): + """ + A placeholder for event-driven (WebSocket) strategies. + Child classes must override this. + """ + logging.error("run_event_loop() is not implemented for this strategy.") + time.sleep(3600) # Sleep for an hour to prevent rapid error loops + + def on_fill_message(self, message): + """ + Placeholder for the WebSocket callback. + Child classes must override this. + """ + pass diff --git a/coin_id_map.py b/coin_id_map.py new file mode 100644 index 0000000..91183bc --- /dev/null +++ b/coin_id_map.py @@ -0,0 +1,95 @@ +import os +import json +import logging +import requests +from hyperliquid.info import Info +from hyperliquid.utils import constants + +from logging_utils import setup_logging + +def update_coin_mapping(): + """ + Fetches all assets from Hyperliquid and all coins from CoinGecko, + then creates and saves a mapping from the Hyperliquid symbol to the + CoinGecko ID using a robust matching algorithm. + """ + setup_logging('normal', 'CoinMapUpdater') + logging.info("Starting coin mapping update process...") + + # --- 1. Fetch all assets from Hyperliquid --- + try: + logging.info("Fetching assets from Hyperliquid...") + info = Info(constants.MAINNET_API_URL, skip_ws=True) + meta, asset_contexts = info.meta_and_asset_ctxs() + hyperliquid_assets = meta['universe'] + logging.info(f"Found {len(hyperliquid_assets)} assets on Hyperliquid.") + except Exception as e: + logging.error(f"Failed to fetch assets from Hyperliquid: {e}") + return + + # --- 2. Fetch all coins from CoinGecko --- + try: + logging.info("Fetching coin list from CoinGecko...") + response = requests.get("https://api.coingecko.com/api/v3/coins/list") + response.raise_for_status() + coingecko_coins = response.json() + + # Create more robust lookup tables + cg_symbol_lookup = {coin['symbol'].upper(): coin['id'] for coin in coingecko_coins} + cg_name_lookup = {coin['name'].upper(): coin['id'] for coin in coingecko_coins} + + logging.info(f"Found {len(coingecko_coins)} coins on CoinGecko.") + except requests.exceptions.RequestException as e: + logging.error(f"Failed to fetch coin list from CoinGecko: {e}") + return + + # --- 3. Create the mapping --- + final_mapping = {} + # Use manual overrides for critical coins where symbols are ambiguous + manual_overrides = { + "BTC": "bitcoin", + "ETH": "ethereum", + "SOL": "solana", + "BNB": "binancecoin", + "HYPE": "hyperliquid", + "PUMP": "pump-fun", + "ASTER": "astar", + "ZEC": "zcash", + "SUI": "sui", + "ACE": "endurance", + # Add other important ones you watch here + } + + logging.info("Generating symbol-to-id mapping...") + for asset in hyperliquid_assets: + asset_symbol = asset['name'].upper() + asset_name = asset.get('name', '').upper() # Use full name if available + + # Priority 1: Manual Overrides + if asset_symbol in manual_overrides: + final_mapping[asset_symbol] = manual_overrides[asset_symbol] + continue + + # Priority 2: Exact Name Match + if asset_name in cg_name_lookup: + final_mapping[asset_symbol] = cg_name_lookup[asset_name] + continue + + # Priority 3: Symbol Match + if asset_symbol in cg_symbol_lookup: + final_mapping[asset_symbol] = cg_symbol_lookup[asset_symbol] + else: + logging.warning(f"No match found for '{asset_symbol}' on CoinGecko. It will be excluded.") + + # --- 4. Save the mapping to a file --- + map_file_path = os.path.join("_data", "coin_id_map.json") + try: + with open(map_file_path, 'w', encoding='utf-8') as f: + json.dump(final_mapping, f, indent=4, sort_keys=True) + logging.info(f"Successfully saved new coin mapping with {len(final_mapping)} entries to '{map_file_path}'.") + except IOError as e: + logging.error(f"Failed to write coin mapping file: {e}") + +if __name__ == "__main__": + update_coin_mapping() + diff --git a/dashboard_data_fetcher.py b/dashboard_data_fetcher.py new file mode 100644 index 0000000..789fbeb --- /dev/null +++ b/dashboard_data_fetcher.py @@ -0,0 +1,136 @@ +import logging +import os +import sys +import json +import time +import argparse # <-- THE FIX: Added this import +from datetime import datetime +from eth_account import Account +from hyperliquid.info import Info +from hyperliquid.utils import constants +from dotenv import load_dotenv + +from logging_utils import setup_logging + +# Load .env file +load_dotenv() + +class DashboardDataFetcher: + """ + A dedicated, lightweight process that runs in a loop to fetch and save + the account's state (balances, positions) for the main dashboard to display. + """ + + def __init__(self, log_level: str): + setup_logging(log_level, 'DashboardDataFetcher') + + self.vault_address = os.environ.get("MAIN_WALLET_ADDRESS") + if not self.vault_address: + logging.error("MAIN_WALLET_ADDRESS not set in .env file. Cannot proceed.") + sys.exit(1) + + self.info = Info(constants.MAINNET_API_URL, skip_ws=True) + self.status_file_path = os.path.join("_logs", "trade_executor_status.json") + self.managed_positions_path = os.path.join("_data", "executor_managed_positions.json") + logging.info(f"Dashboard Data Fetcher initialized for vault: {self.vault_address}") + + def load_managed_positions(self) -> dict: + """Loads the state of which strategy manages which position.""" + if os.path.exists(self.managed_positions_path): + try: + with open(self.managed_positions_path, 'r') as f: + data = json.load(f) + # Create a reverse map: {coin: strategy_name} + return {v['coin']: k for k, v in data.items()} + except (IOError, json.JSONDecodeError): + logging.warning("Could not read managed positions file.") + return {} + + def fetch_and_save_status(self): + """Fetches all account data and saves it to the JSON status file.""" + try: + perpetuals_state = self.info.user_state(self.vault_address) + spot_state = self.info.spot_user_state(self.vault_address) + meta, all_market_contexts = self.info.meta_and_asset_ctxs() + coin_to_strategy_map = self.load_managed_positions() + + status = { + "last_updated_utc": datetime.now().isoformat(), + "perpetuals_account": { "balances": {}, "open_positions": [] }, + "spot_account": { "positions": [] } + } + + # 1. Extract Perpetuals Account Data + margin_summary = perpetuals_state.get("marginSummary", {}) + status["perpetuals_account"]["balances"] = { + "account_value": margin_summary.get("accountValue"), + "total_margin_used": margin_summary.get("totalMarginUsed"), + "withdrawable": margin_summary.get("withdrawable") + } + + asset_positions = perpetuals_state.get("assetPositions", []) + for asset_pos in asset_positions: + pos = asset_pos.get('position', {}) + if float(pos.get('szi', 0)) != 0: + coin = pos.get('coin') + position_value = float(pos.get('positionValue', 0)) + margin_used = float(pos.get('marginUsed', 0)) + leverage = position_value / margin_used if margin_used > 0 else 0 + + position_info = { + "coin": coin, + "strategy": coin_to_strategy_map.get(coin, "Unmanaged"), + "size": pos.get('szi'), + "position_value": pos.get('positionValue'), + "entry_price": pos.get('entryPx'), + "mark_price": pos.get('markPx'), + "pnl": pos.get('unrealizedPnl'), + "liq_price": pos.get('liquidationPx'), + "margin": pos.get('marginUsed'), + "funding": pos.get('fundingRate'), + "leverage": f"{leverage:.1f}x" + } + status["perpetuals_account"]["open_positions"].append(position_info) + + # 2. Extract Spot Account Data + price_map = { asset.get("universe", {}).get("name"): asset.get("markPx") for asset in all_market_contexts if asset.get("universe", {}).get("name") } + spot_balances = spot_state.get("balances", []) + for bal in spot_balances: + total_balance = float(bal.get('total', 0)) + if total_balance > 0: + coin = bal.get('coin') + mark_price = float(price_map.get(coin, 0)) + status["spot_account"]["positions"].append({ + "coin": coin, "balance_size": total_balance, + "position_value": total_balance * mark_price, "pnl": "N/A" + }) + + # 3. Write to file + # Use atomic write to prevent partial reads from main_app + temp_file_path = self.status_file_path + ".tmp" + with open(temp_file_path, 'w', encoding='utf-8') as f: + json.dump(status, f, indent=4) + # Rename is atomic + os.replace(temp_file_path, self.status_file_path) + + logging.debug(f"Successfully updated dashboard status file.") + + except Exception as e: + logging.error(f"Failed to fetch or save account status: {e}") + + def run(self): + """Main loop to periodically fetch and save data.""" + while True: + self.fetch_and_save_status() + time.sleep(5) # Update dashboard data every 5 seconds + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Run the Dashboard Data Fetcher.") + parser.add_argument("--log-level", default="normal", choices=['off', 'normal', 'debug']) + args = parser.parse_args() + + fetcher = DashboardDataFetcher(log_level=args.log_level) + try: + fetcher.run() + except KeyboardInterrupt: + logging.info("Dashboard Data Fetcher stopped.") diff --git a/del_market_cap_tables.py b/del_market_cap_tables.py new file mode 100644 index 0000000..d18050c --- /dev/null +++ b/del_market_cap_tables.py @@ -0,0 +1,56 @@ +import sqlite3 +import logging +import os + +from logging_utils import setup_logging + +def cleanup_market_cap_tables(): + """ + Scans the database and drops all tables related to market cap data + to allow for a clean refresh. + """ + setup_logging('normal', 'DBCleanup') + db_path = os.path.join("_data", "market_data.db") + + if not os.path.exists(db_path): + logging.error(f"Database file not found at '{db_path}'. Nothing to clean.") + return + + logging.info(f"Connecting to database at '{db_path}'...") + try: + with sqlite3.connect(db_path) as conn: + cursor = conn.cursor() + + # Find all tables that were created by the market cap fetcher + cursor.execute(""" + SELECT name FROM sqlite_master + WHERE type='table' + AND (name LIKE '%_market_cap' OR name LIKE 'TOTAL_%') + """) + + tables_to_drop = cursor.fetchall() + + if not tables_to_drop: + logging.info("No market cap tables found to clean up. Database is already clean.") + return + + logging.warning(f"Found {len(tables_to_drop)} market cap tables to remove...") + + for table in tables_to_drop: + table_name = table[0] + try: + logging.info(f"Dropping table: {table_name}...") + conn.execute(f'DROP TABLE IF EXISTS "{table_name}"') + except Exception as e: + logging.error(f"Failed to drop table {table_name}: {e}") + + conn.commit() + logging.info("--- Database cleanup complete ---") + + except sqlite3.Error as e: + logging.error(f"A database error occurred: {e}") + except Exception as e: + logging.error(f"An unexpected error occurred: {e}") + +if __name__ == "__main__": + cleanup_market_cap_tables() diff --git a/hyperliquid_wallet_data_0xb83de012_20251026_220802.json b/hyperliquid_wallet_data_0xb83de012_20251026_220802.json new file mode 100644 index 0000000..b374856 --- /dev/null +++ b/hyperliquid_wallet_data_0xb83de012_20251026_220802.json @@ -0,0 +1,46694 @@ +{ + "wallet_address": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "timestamp": "2025-10-26T22:07:48.803578", + "data": { + "user_state": { + "marginSummary": { + "accountValue": "25033828.5842700005", + "totalNtlPos": "59726120.0227459967", + "totalRawUsd": "84759948.6070159972", + "totalMarginUsed": "10633668.9945899993" + }, + "crossMarginSummary": { + "accountValue": "25033828.5842700005", + "totalNtlPos": "59726120.0227459967", + "totalRawUsd": "84759948.6070159972", + "totalMarginUsed": "10633668.9945899993" + }, + "crossMaintenanceMarginUsed": "3346352.2036270001", + "withdrawable": "14394703.1855350006", + "assetPositions": [ + { + "type": "oneWay", + "position": { + "coin": "BTC", + "szi": "-9.2773", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "111481.6", + "positionValue": "1052713.7856000001", + "unrealizedPnl": "-18465.438981", + "returnOnEquity": "-0.1785397003", + "liquidationPx": "2422304.285110943", + "marginUsed": "105271.37856", + "maxLeverage": 40, + "cumFunding": { + "allTime": "-6916690.8522610003", + "sinceOpen": "-6916690.8582020001", + "sinceChange": "-507.085023" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "ETH", + "szi": "-2870.7419", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "3854.16", + "positionValue": "11679039.2717700005", + "unrealizedPnl": "-614712.378103", + "returnOnEquity": "-0.555580456", + "liquidationPx": "11474.8285164535", + "marginUsed": "1167903.9271770001", + "maxLeverage": 25, + "cumFunding": { + "allTime": "-6602429.8642870001", + "sinceOpen": "-6602429.8642870001", + "sinceChange": "-3302.472764" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "SOL", + "szi": "-359.37", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "194.4727", + "positionValue": "70943.2317", + "unrealizedPnl": "-1055.571958", + "returnOnEquity": "-0.1510383896", + "liquidationPx": "59074.092923144", + "marginUsed": "7094.32317", + "maxLeverage": 20, + "cumFunding": { + "allTime": "-792037.43021", + "sinceOpen": "-66.577224", + "sinceChange": "-49.712167" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "DOGE", + "szi": "-109217.0", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "0.279959", + "positionValue": "21963.5387", + "unrealizedPnl": "8612.833959", + "returnOnEquity": "2.8168265919", + "liquidationPx": "189.0359900372", + "marginUsed": "2196.35387", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-1870.350749", + "sinceOpen": "-1870.350749", + "sinceChange": "50.91244" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "INJ", + "szi": "-18747.2", + "leverage": { + "type": "cross", + "value": 3 + }, + "entryPx": "13.01496", + "positionValue": "165190.9528", + "unrealizedPnl": "78803.2651", + "returnOnEquity": "0.9689155642", + "liquidationPx": "1067.3558466468", + "marginUsed": "55063.650933", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-517.598809", + "sinceOpen": "-517.598809", + "sinceChange": "14.167399" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "SUI", + "szi": "-376577.6", + "leverage": { + "type": "cross", + "value": 3 + }, + "entryPx": "3.85881", + "positionValue": "986859.25856", + "unrealizedPnl": "466284.999201", + "returnOnEquity": "0.962640144", + "liquidationPx": "57.2710127936", + "marginUsed": "328953.086186", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-45506.073364", + "sinceOpen": "-45506.068527", + "sinceChange": "-946.493457" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "XRP", + "szi": "-39691.0", + "leverage": { + "type": "cross", + "value": 20 + }, + "entryPx": "2.468585", + "positionValue": "103795.9341", + "unrealizedPnl": "-5815.3118", + "returnOnEquity": "-1.1870330405", + "liquidationPx": "535.6959884153", + "marginUsed": "5189.796705", + "maxLeverage": 20, + "cumFunding": { + "allTime": "-2615.635014", + "sinceOpen": "-86.271845", + "sinceChange": "-86.271845" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "HYPE", + "szi": "-750315.16", + "leverage": { + "type": "cross", + "value": 5 + }, + "entryPx": "43.3419", + "positionValue": "35077233.7299999967", + "unrealizedPnl": "-2557123.1353480001", + "returnOnEquity": "-0.3931602766", + "liquidationPx": "73.0268082932", + "marginUsed": "7015446.7460000003", + "maxLeverage": 5, + "cumFunding": { + "allTime": "-1870235.87934", + "sinceOpen": "-1870235.87934", + "sinceChange": "-33899.296658" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "FARTCOIN", + "szi": "-4122236.7999999998", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "0.80127", + "positionValue": "1681955.059136", + "unrealizedPnl": "1621107.3266499999", + "returnOnEquity": "4.9078919418", + "liquidationPx": "5.392820006", + "marginUsed": "168195.505913", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-71663.182179", + "sinceOpen": "-49993.307555", + "sinceChange": "-5226.082753" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "PUMP", + "szi": "-1921732999.0", + "leverage": { + "type": "cross", + "value": 5 + }, + "entryPx": "0.005551", + "positionValue": "8878406.4553800002", + "unrealizedPnl": "1789606.855005", + "returnOnEquity": "0.8387723201", + "liquidationPx": "0.0151424891", + "marginUsed": "1775681.2910760001", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-193383.578999", + "sinceOpen": "-193383.578999", + "sinceChange": "-7271.699321" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "ASTER", + "szi": "-7075.0", + "leverage": { + "type": "cross", + "value": 3 + }, + "entryPx": "1.820644", + "positionValue": "8018.805", + "unrealizedPnl": "4862.256517", + "returnOnEquity": "1.1324198345", + "liquidationPx": "2787.8312966454", + "marginUsed": "2672.935", + "maxLeverage": 5, + "cumFunding": { + "allTime": "-618894.880123", + "sinceOpen": "-618894.880123", + "sinceChange": "-5.32473" + } + } + } + ], + "time": 1761512869992 + }, + "spot_state": { + "balances": [ + { + "coin": "USDC", + "token": 0, + "total": "85165.03263363", + "hold": "0.0", + "entryNtl": "0.0" + }, + { + "coin": "HYPE", + "token": 150, + "total": "45401.36651867", + "hold": "0.0", + "entryNtl": "1742715.1297323401" + }, + { + "coin": "UBTC", + "token": 197, + "total": "0.0", + "hold": "0.0", + "entryNtl": "0.0" + }, + { + "coin": "LATINA", + "token": 223, + "total": "35470.3668", + "hold": "0.0", + "entryNtl": "0.0" + }, + { + "coin": "USDT0", + "token": 268, + "total": "106501.47093445", + "hold": "103038.77", + "entryNtl": "106521.92756495" + }, + { + "coin": "UFART", + "token": 269, + "total": "4132582.4960630001", + "hold": "0.0", + "entryNtl": "3313065.8106947001" + }, + { + "coin": "UPUMP", + "token": 299, + "total": "358268528.5250939727", + "hold": "0.0", + "entryNtl": "2442751.2693156502" + }, + { + "coin": "LICKO", + "token": 307, + "total": "11189.06185739", + "hold": "0.0", + "entryNtl": "0.06713437" + } + ] + }, + "open_orders": [ + { + "coin": "WLFI", + "side": "B", + "limitPx": "0.10447", + "sz": "2624.0", + "oid": 194029229960, + "timestamp": 1760131688558, + "origSz": "12760.0", + "cloid": "0x00000000000000000000001261000016" + }, + { + "coin": "@166", + "side": "A", + "limitPx": "1.01", + "sz": "103038.77", + "oid": 174787748753, + "timestamp": 1758819420037, + "origSz": "3000000.0" + } + ], + "recent_fills": [ + { + "coin": "ETH", + "px": "3952.4", + "sz": "4.4456", + "side": "A", + "time": 1761431190137, + "startPosition": "-2866.2963", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x205e41af2da9230221d7042e32826a0202300094c8ac41d4c426ed01ecacfcec", + "oid": 212480484440, + "crossed": true, + "fee": "3.689865", + "tid": 874416766660940, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3952.4", + "sz": "4.5544", + "side": "A", + "time": 1761431190137, + "startPosition": "-2861.7419", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x205e41af2da9230221d7042e32826a0202300094c8ac41d4c426ed01ecacfcec", + "oid": 212480484440, + "crossed": true, + "fee": "3.78017", + "tid": 590508408223701, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3929.3", + "sz": "2.545", + "side": "A", + "time": 1761375252759, + "startPosition": "-2859.1969", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb35fe2d490260506b4d9042e27996d02024900ba2b2923d857288e274f29def1", + "oid": 212001147287, + "crossed": true, + "fee": "2.100014", + "tid": 1060683286404896, + "cloid": "0x00000000000000000000000001000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3929.4", + "sz": "2.4944", + "side": "A", + "time": 1761375242272, + "startPosition": "-2856.7025", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1e2305168bd734fd1f9c042e2798f302029e00fc26da53cfc1ebb0694adb0ee7", + "oid": 212001055058, + "crossed": true, + "fee": "2.058314", + "tid": 382559690764395, + "cloid": "0x00000000000000000000000001000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3929.4", + "sz": "0.04", + "side": "A", + "time": 1761375242272, + "startPosition": "-2856.6625", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1e2305168bd734fd1f9c042e2798f302029e00fc26da53cfc1ebb0694adb0ee7", + "oid": 212001055058, + "crossed": true, + "fee": "0.033006", + "tid": 680990066393822, + "cloid": "0x00000000000000000000000001000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3929.5", + "sz": "0.0051", + "side": "A", + "time": 1761375242272, + "startPosition": "-2856.6574", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1e2305168bd734fd1f9c042e2798f302029e00fc26da53cfc1ebb0694adb0ee7", + "oid": 212001055058, + "crossed": true, + "fee": "0.004208", + "tid": 313993243453147, + "cloid": "0x00000000000000000000000001000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3929.7", + "sz": "0.0053", + "side": "A", + "time": 1761375242272, + "startPosition": "-2856.6521", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1e2305168bd734fd1f9c042e2798f302029e00fc26da53cfc1ebb0694adb0ee7", + "oid": 212001055058, + "crossed": true, + "fee": "0.004373", + "tid": 803357215095559, + "cloid": "0x00000000000000000000000001000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3929.8", + "sz": "2.2856", + "side": "A", + "time": 1761375239459, + "startPosition": "-2854.3665", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x57236071b1368de4589d042e2798d302020400574c39acb6faec0bc4703a67ce", + "oid": 212001012339, + "crossed": true, + "fee": "1.886209", + "tid": 67760978140705, + "cloid": "0x00000000000000000000000001000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3929.8", + "sz": "0.2538", + "side": "A", + "time": 1761375239459, + "startPosition": "-2854.1127", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x57236071b1368de4589d042e2798d302020400574c39acb6faec0bc4703a67ce", + "oid": 212001012339, + "crossed": true, + "fee": "0.20945", + "tid": 969760728004810, + "cloid": "0x00000000000000000000000001000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3929.8", + "sz": "0.0051", + "side": "A", + "time": 1761375239459, + "startPosition": "-2854.1076", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x57236071b1368de4589d042e2798d302020400574c39acb6faec0bc4703a67ce", + "oid": 212001012339, + "crossed": true, + "fee": "0.004208", + "tid": 231716707172975, + "cloid": "0x00000000000000000000000001000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3929.9", + "sz": "2.5445", + "side": "A", + "time": 1761375229237, + "startPosition": "-2851.5631", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3de8046a6d78472c3f61042e27986502010e0050087b65fee1b0afbd2c7c2116", + "oid": 212000921901, + "crossed": true, + "fee": "2.099922", + "tid": 405246526585831, + "cloid": "0x00000000000000000000000001000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.5", + "sz": "1.7824", + "side": "A", + "time": 1761375226195, + "startPosition": "-2849.7807", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1e1c4800b3458af61f96042e27984202026200e64e48a9c8c1e4f353724964e0", + "oid": 212000889778, + "crossed": true, + "fee": "1.471201", + "tid": 134858609963816, + "cloid": "0x00000000000000000000000001000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.6", + "sz": "0.5088", + "side": "A", + "time": 1761375226195, + "startPosition": "-2849.2719", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1e1c4800b3458af61f96042e27984202026200e64e48a9c8c1e4f353724964e0", + "oid": 212000889778, + "crossed": true, + "fee": "0.419976", + "tid": 770209955249225, + "cloid": "0x00000000000000000000000001000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.6", + "sz": "0.2529", + "side": "A", + "time": 1761375226195, + "startPosition": "-2849.019", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1e1c4800b3458af61f96042e27984202026200e64e48a9c8c1e4f353724964e0", + "oid": 212000889778, + "crossed": true, + "fee": "0.20875", + "tid": 654505478144414, + "cloid": "0x00000000000000000000000001000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.6", + "sz": "2.5296", + "side": "A", + "time": 1761375223568, + "startPosition": "-2846.4894", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x41e0aec7c9200718435a042e27982002019a00ad642325eae5a95a1a8823e102", + "oid": 212000862053, + "crossed": true, + "fee": "2.087997", + "tid": 1067113669187365, + "cloid": "0x00000000000000000000000001000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.8", + "sz": "0.0144", + "side": "A", + "time": 1761375223568, + "startPosition": "-2846.475", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x41e0aec7c9200718435a042e27982002019a00ad642325eae5a95a1a8823e102", + "oid": 212000862053, + "crossed": true, + "fee": "0.011886", + "tid": 685111852969785, + "cloid": "0x00000000000000000000000001000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.9", + "sz": "1.846", + "side": "A", + "time": 1761375221567, + "startPosition": "-2844.629", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x5312e095054e3bd7548c042e279804020238007aa0415aa9f6db8be7c44215c1", + "oid": 212000833302, + "crossed": true, + "fee": "1.523852", + "tid": 636023104978363, + "cloid": "0x00000000000000000000000001000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.9", + "sz": "0.6753", + "side": "A", + "time": 1761375221567, + "startPosition": "-2843.9537", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x5312e095054e3bd7548c042e279804020238007aa0415aa9f6db8be7c44215c1", + "oid": 212000833302, + "crossed": true, + "fee": "0.557452", + "tid": 802838088007948, + "cloid": "0x00000000000000000000000001000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.9", + "sz": "0.0229", + "side": "A", + "time": 1761375221567, + "startPosition": "-2843.9308", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x5312e095054e3bd7548c042e279804020238007aa0415aa9f6db8be7c44215c1", + "oid": 212000833302, + "crossed": true, + "fee": "0.018903", + "tid": 805299058193029, + "cloid": "0x00000000000000000000000001000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.1", + "sz": "0.9367", + "side": "A", + "time": 1761375215009, + "startPosition": "-2842.9941", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3e489a17bd744d163fc2042e2797b70201f400fd58776be8e211456a7c782700", + "oid": 212000772100, + "crossed": true, + "fee": "0.773078", + "tid": 355660156566958, + "cloid": "0x00000000000000000000000001000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.1", + "sz": "1.6077", + "side": "A", + "time": 1761375215009, + "startPosition": "-2841.3864", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3e489a17bd744d163fc2042e2797b70201f400fd58776be8e211456a7c782700", + "oid": 212000772100, + "crossed": true, + "fee": "1.326868", + "tid": 256573060691513, + "cloid": "0x00000000000000000000000001000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.1", + "sz": "0.3923", + "side": "A", + "time": 1761375213800, + "startPosition": "-2840.9941", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0f343b50e97dfc1e10ad042e2797aa0201b5003684711af0b2fce6a3a871d608", + "oid": 212000757207, + "crossed": true, + "fee": "0.323773", + "tid": 63260909265740, + "cloid": "0x00000000000000000000000001000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.1", + "sz": "2.1522", + "side": "A", + "time": 1761375213800, + "startPosition": "-2838.8419", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0f343b50e97dfc1e10ad042e2797aa0201b5003684711af0b2fce6a3a871d608", + "oid": 212000757207, + "crossed": true, + "fee": "1.776255", + "tid": 1112554988428643, + "cloid": "0x00000000000000000000000001000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.1", + "sz": "2.5445", + "side": "A", + "time": 1761375212669, + "startPosition": "-2836.2974", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc8ea08284f95d029ca63042e27979e0201a3000dea98eefb6cb2b37b0e99aa14", + "oid": 212000743770, + "crossed": true, + "fee": "2.100029", + "tid": 872262789312494, + "cloid": "0x00000000000000000000000001000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.0", + "sz": "1.1675", + "side": "A", + "time": 1761375211474, + "startPosition": "-2835.1299", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x425e9333865d26ec43d8042e27979202012b0019215045bee6273e86455100d6", + "oid": 212000730028, + "crossed": true, + "fee": "0.963537", + "tid": 83290908967248, + "cloid": "0x00000000000000000000000001000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.0", + "sz": "0.5207", + "side": "A", + "time": 1761375211474, + "startPosition": "-2834.6092", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x425e9333865d26ec43d8042e27979202012b0019215045bee6273e86455100d6", + "oid": 212000730028, + "crossed": true, + "fee": "0.429733", + "tid": 554878288314936, + "cloid": "0x00000000000000000000000001000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.0", + "sz": "0.8563", + "side": "A", + "time": 1761375211474, + "startPosition": "-2833.7529", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x425e9333865d26ec43d8042e27979202012b0019215045bee6273e86455100d6", + "oid": 212000730028, + "crossed": true, + "fee": "0.706704", + "tid": 54527226519326, + "cloid": "0x00000000000000000000000001000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.0", + "sz": "2.5446", + "side": "A", + "time": 1761375209731, + "startPosition": "-2831.2083", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf11286188845e892f28c042e27978002037c00fe2349076594db316b4749c27d", + "oid": 212000709007, + "crossed": true, + "fee": "2.100058", + "tid": 916108782497709, + "cloid": "0x00000000000000000000000001000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3929.8", + "sz": "2.5447", + "side": "A", + "time": 1761375208515, + "startPosition": "-2828.6636", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x280362808271dc9b297d042e27976f02022c00661d74fb6dcbcc0dd34175b685", + "oid": 212000694162, + "crossed": true, + "fee": "2.100034", + "tid": 707748797848192, + "cloid": "0x00000000000000000000000001000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3929.8", + "sz": "1.2142", + "side": "A", + "time": 1761375207315, + "startPosition": "-2827.4494", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa3c8cfbf0411834ba542042e2797600201e100a49f14a21d47917b11c3155d36", + "oid": 212000685263, + "crossed": true, + "fee": "1.002028", + "tid": 388729465293368, + "cloid": "0x00000000000000000000000001000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3929.8", + "sz": "1.3305", + "side": "A", + "time": 1761375207315, + "startPosition": "-2826.1189", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa3c8cfbf0411834ba542042e2797600201e100a49f14a21d47917b11c3155d36", + "oid": 212000685263, + "crossed": true, + "fee": "1.098005", + "tid": 1075432215657489, + "cloid": "0x00000000000000000000000001000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3929.8", + "sz": "2.5448", + "side": "A", + "time": 1761375206101, + "startPosition": "-2823.5741", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xda5b5e2e633db74adbd5042e2797530201a40013fe30d61c7e24098122319135", + "oid": 212000676833, + "crossed": true, + "fee": "2.100116", + "tid": 553580285594060, + "cloid": "0x00000000000000000000000001000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3929.8", + "sz": "2.5449", + "side": "A", + "time": 1761375204697, + "startPosition": "-2821.0292", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x9bd298efca854d299d4c042e27974402016c00d565886bfb3f9b444289892714", + "oid": 212000666411, + "crossed": true, + "fee": "2.100199", + "tid": 315952344353249, + "cloid": "0x00000000000000000000000001000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3929.9", + "sz": "2.3244", + "side": "A", + "time": 1761375199633, + "startPosition": "-2818.7048", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x70e9d26a343e3caf7263042e279706020175004fcf315b8114b27dbcf332169a", + "oid": 212000634047, + "crossed": true, + "fee": "1.918278", + "tid": 179226023394287, + "cloid": "0x00000000000000000000000001000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3929.9", + "sz": "0.01", + "side": "A", + "time": 1761375199633, + "startPosition": "-2818.6948", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x70e9d26a343e3caf7263042e279706020175004fcf315b8114b27dbcf332169a", + "oid": 212000634047, + "crossed": true, + "fee": "0.008252", + "tid": 565335391598943, + "cloid": "0x00000000000000000000000001000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3929.9", + "sz": "0.0056", + "side": "A", + "time": 1761375199633, + "startPosition": "-2818.6892", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x70e9d26a343e3caf7263042e279706020175004fcf315b8114b27dbcf332169a", + "oid": 212000634047, + "crossed": true, + "fee": "0.004621", + "tid": 542938114384228, + "cloid": "0x00000000000000000000000001000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.0", + "sz": "0.205", + "side": "A", + "time": 1761375199633, + "startPosition": "-2818.4842", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x70e9d26a343e3caf7263042e279706020175004fcf315b8114b27dbcf332169a", + "oid": 212000634047, + "crossed": true, + "fee": "0.169186", + "tid": 1046414363475851, + "cloid": "0x00000000000000000000000001000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.1", + "sz": "2.2869", + "side": "A", + "time": 1761375191730, + "startPosition": "-2816.1973", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6838346906b6627f69b1042e27969d0202aa004ea1b981510c00dfbbc5ba3c6a", + "oid": 212000569840, + "crossed": true, + "fee": "1.887426", + "tid": 527184210477279, + "cloid": "0x00000000000000000000000001000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.1", + "sz": "0.2576", + "side": "A", + "time": 1761375191730, + "startPosition": "-2815.9397", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6838346906b6627f69b1042e27969d0202aa004ea1b981510c00dfbbc5ba3c6a", + "oid": 212000569840, + "crossed": true, + "fee": "0.212602", + "tid": 401523544935524, + "cloid": "0x00000000000000000000000001000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.1", + "sz": "2.5443", + "side": "A", + "time": 1761375187905, + "startPosition": "-2813.3954", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x629104cbc1ad888e640a042e27967302018300b15ca0a7600659b01e80a16279", + "oid": 212000527875, + "crossed": true, + "fee": "2.099864", + "tid": 118211368190444, + "cloid": "0x00000000000000000000000001000084", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.1", + "sz": "2.5443", + "side": "A", + "time": 1761375177664, + "startPosition": "-2810.8511", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb1613c521a5b89a6b2da042e2795eb01ee005437b55ea8785529e7a4d95f6391", + "oid": 212000437113, + "crossed": true, + "fee": "2.099864", + "tid": 127273192138627, + "cloid": "0x00000000000000000000000001000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.1", + "sz": "2.5443", + "side": "A", + "time": 1761375167713, + "startPosition": "-2808.3068", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa96313adc609cd79aadc042e27957301b9002b93610cec4b4d2bbf00850da764", + "oid": 212000359364, + "crossed": true, + "fee": "2.099864", + "tid": 92564550561807, + "cloid": "0x00000000000000000000000001000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.1", + "sz": "2.5443", + "side": "A", + "time": 1761375157711, + "startPosition": "-2805.7625", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x64d9bb9b3c268cdc6653042e2794ff0201af0080d729abae08a266edfb2a66c7", + "oid": 212000278368, + "crossed": true, + "fee": "2.099864", + "tid": 1017315828635999, + "cloid": "0x00000000000000000000000001000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.1", + "sz": "2.5285", + "side": "A", + "time": 1761375147574, + "startPosition": "-2803.234", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x46d800dbeee21e0c4851042e27947b02034f00c189e53cdeeaa0ac2eade5f7f6", + "oid": 212000196007, + "crossed": true, + "fee": "2.086824", + "tid": 44247167780140, + "cloid": "0x00000000000000000000000001000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.1", + "sz": "0.0158", + "side": "A", + "time": 1761375147574, + "startPosition": "-2803.2182", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x46d800dbeee21e0c4851042e27947b02034f00c189e53cdeeaa0ac2eade5f7f6", + "oid": 212000196007, + "crossed": true, + "fee": "0.01304", + "tid": 708592880721847, + "cloid": "0x00000000000000000000000001000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.3", + "sz": "2.2929", + "side": "A", + "time": 1761375137594, + "startPosition": "-2800.9253", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x5a9f23d73c5018995c18042e2793ee0204bf00bcd753376bfe67cf29fb53f283", + "oid": 212000133193, + "crossed": true, + "fee": "1.892474", + "tid": 380383517867203, + "cloid": "0x00000000000000000000000001000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.3", + "sz": "0.2514", + "side": "A", + "time": 1761375137594, + "startPosition": "-2800.6739", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x5a9f23d73c5018995c18042e2793ee0204bf00bcd753376bfe67cf29fb53f283", + "oid": 212000133193, + "crossed": true, + "fee": "0.207496", + "tid": 397707218616903, + "cloid": "0x00000000000000000000000001000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.3", + "sz": "2.5443", + "side": "A", + "time": 1761375127503, + "startPosition": "-2798.1296", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xbfc814dccc172a4ec141042e2793670201fe00c2671a49206390c02f8b1b0439", + "oid": 212000078970, + "crossed": true, + "fee": "2.099971", + "tid": 548301614803161, + "cloid": "0x00000000000000000000000001000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.3", + "sz": "2.1526", + "side": "A", + "time": 1761375117467, + "startPosition": "-2795.977", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe1b4715095ed40b1e32e042e2792f9020249003630e05f83857d1ca354e11a9c", + "oid": 212000014279, + "crossed": true, + "fee": "1.776676", + "tid": 549356587150879, + "cloid": "0x00000000000000000000000001000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.3", + "sz": "0.3917", + "side": "A", + "time": 1761375117467, + "startPosition": "-2795.5853", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe1b4715095ed40b1e32e042e2792f9020249003630e05f83857d1ca354e11a9c", + "oid": 212000014279, + "crossed": true, + "fee": "0.323294", + "tid": 954307545946831, + "cloid": "0x00000000000000000000000001000077", + "feeToken": "USDC", + "twapId": null + } + ], + "fills_last_7_days": [ + { + "coin": "BTC", + "px": "109291.0", + "sz": "0.16", + "side": "B", + "time": 1761013621896, + "startPosition": "-548.1666", + "dir": "Close Short", + "closedPnl": "557.888", + "hash": "0x1b029b992f3a478d1c7c042de254a9021336007eca3d665fbecb46ebee3e2177", + "oid": 207740694182, + "crossed": true, + "fee": "3.672177", + "tid": 121864653487314, + "cloid": "0x00000000000000000000001585000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109291.0", + "sz": "0.02289", + "side": "B", + "time": 1761013621896, + "startPosition": "-548.0066", + "dir": "Close Short", + "closedPnl": "79.812852", + "hash": "0x1b029b992f3a478d1c7c042de254a9021336007eca3d665fbecb46ebee3e2177", + "oid": 207740694182, + "crossed": true, + "fee": "0.52535", + "tid": 134528839953459, + "cloid": "0x00000000000000000000001585000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109249.0", + "sz": "0.18294", + "side": "B", + "time": 1761013626365, + "startPosition": "-547.98371", + "dir": "Close Short", + "closedPnl": "645.558672", + "hash": "0x97a29b20e4d7b177991c042de254e20208c300067fdad0493b6b4673a3db8b62", + "oid": 207740769598, + "crossed": true, + "fee": "4.197062", + "tid": 579668010071821, + "cloid": "0x00000000000000000000001585000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109249.0", + "sz": "0.18294", + "side": "B", + "time": 1761013629674, + "startPosition": "-547.80077", + "dir": "Close Short", + "closedPnl": "645.558672", + "hash": "0x3a14a40a08a1f7213b8e042de2550f02056700efa3a515f3dddd4f5cc7a5d10b", + "oid": 207740813491, + "crossed": true, + "fee": "4.197062", + "tid": 85394607091306, + "cloid": "0x00000000000000000000001585000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109249.0", + "sz": "0.05948", + "side": "B", + "time": 1761013631001, + "startPosition": "-547.61783", + "dir": "Close Short", + "closedPnl": "209.893024", + "hash": "0xef2538b44eaa169ff09e042de255230205630099e9ad357192ede4070dadf08a", + "oid": 207740840008, + "crossed": true, + "fee": "1.364607", + "tid": 460111736521675, + "cloid": "0x00000000000000000000001585000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109254.0", + "sz": "0.12347", + "side": "B", + "time": 1761013631001, + "startPosition": "-547.55835", + "dir": "Close Short", + "closedPnl": "435.083586", + "hash": "0xef2538b44eaa169ff09e042de255230205630099e9ad357192ede4070dadf08a", + "oid": 207740840008, + "crossed": true, + "fee": "2.832814", + "tid": 1060420780176236, + "cloid": "0x00000000000000000000001585000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109234.0", + "sz": "0.16", + "side": "B", + "time": 1761013632526, + "startPosition": "-547.43488", + "dir": "Close Short", + "closedPnl": "567.008", + "hash": "0xe54d00441bb2819be6c6042de2553902066e0029b6b5a06d8915ab96dab65b86", + "oid": 207740871081, + "crossed": true, + "fee": "3.670262", + "tid": 1019474402734963, + "cloid": "0x00000000000000000000001585000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109257.0", + "sz": "0.00245", + "side": "B", + "time": 1761013632526, + "startPosition": "-547.27488", + "dir": "Close Short", + "closedPnl": "8.62596", + "hash": "0xe54d00441bb2819be6c6042de2553902066e0029b6b5a06d8915ab96dab65b86", + "oid": 207740871081, + "crossed": true, + "fee": "0.056212", + "tid": 677439974278812, + "cloid": "0x00000000000000000000001585000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109257.0", + "sz": "0.00023", + "side": "B", + "time": 1761013632526, + "startPosition": "-547.27243", + "dir": "Close Short", + "closedPnl": "0.809784", + "hash": "0xe54d00441bb2819be6c6042de2553902066e0029b6b5a06d8915ab96dab65b86", + "oid": 207740871081, + "crossed": true, + "fee": "0.005277", + "tid": 1062072128844290, + "cloid": "0x00000000000000000000001585000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109260.0", + "sz": "0.0203", + "side": "B", + "time": 1761013632526, + "startPosition": "-547.2722", + "dir": "Close Short", + "closedPnl": "71.41134", + "hash": "0xe54d00441bb2819be6c6042de2553902066e0029b6b5a06d8915ab96dab65b86", + "oid": 207740871081, + "crossed": true, + "fee": "0.465775", + "tid": 1054812622179758, + "cloid": "0x00000000000000000000001585000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109269.0", + "sz": "0.15911", + "side": "B", + "time": 1761013635320, + "startPosition": "-547.2519", + "dir": "Close Short", + "closedPnl": "558.285168", + "hash": "0x04b169eaad578de1062b042de255590203f800d0485aacb3a87a153d6c5b67cb", + "oid": 207740915119, + "crossed": true, + "fee": "3.651016", + "tid": 630901950407070, + "cloid": "0x00000000000000000000001585000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109269.0", + "sz": "0.02382", + "side": "B", + "time": 1761013635320, + "startPosition": "-547.09279", + "dir": "Close Short", + "closedPnl": "83.579616", + "hash": "0x04b169eaad578de1062b042de255590203f800d0485aacb3a87a153d6c5b67cb", + "oid": 207740915119, + "crossed": true, + "fee": "0.546585", + "tid": 517146122191871, + "cloid": "0x00000000000000000000001585000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109286.0", + "sz": "0.18294", + "side": "B", + "time": 1761013645441, + "startPosition": "-547.06897", + "dir": "Close Short", + "closedPnl": "638.789892", + "hash": "0xfbd047c73efa2916fd4a042de255d7020b2c00acd9fd47e99f98f319fdfe0301", + "oid": 207741074437, + "crossed": true, + "fee": "4.198483", + "tid": 86926251887341, + "cloid": "0x00000000000000000000001585000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109499.0", + "sz": "0.18258", + "side": "B", + "time": 1761013871701, + "startPosition": "-546.88603", + "dir": "Close Short", + "closedPnl": "598.643304", + "hash": "0x7c2a74415d0d37697da4042de260f10205b30026f800563b1ff31f941c011154", + "oid": 207743978051, + "crossed": true, + "fee": "4.198388", + "tid": 71569260066757, + "cloid": "0x00000000000000000000001586000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109491.0", + "sz": "0.18258", + "side": "B", + "time": 1761013876330, + "startPosition": "-546.70345", + "dir": "Close Short", + "closedPnl": "600.103944", + "hash": "0xe3660bbf96bed12ce4df042de2612602073d00a531b1effe872eb71255b2ab17", + "oid": 207744025568, + "crossed": true, + "fee": "4.198082", + "tid": 665289147097451, + "cloid": "0x00000000000000000000001586000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109498.0", + "sz": "0.18258", + "side": "B", + "time": 1761013878430, + "startPosition": "-546.52087", + "dir": "Close Short", + "closedPnl": "598.825884", + "hash": "0xc6bc7b742f0d53e8c836042de261410202430059ca0072ba6a8526c6ee012dd3", + "oid": 207744053446, + "crossed": true, + "fee": "4.19835", + "tid": 989616064084544, + "cloid": "0x00000000000000000000001586000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109496.0", + "sz": "0.18258", + "side": "B", + "time": 1761013880667, + "startPosition": "-546.33829", + "dir": "Close Short", + "closedPnl": "599.191044", + "hash": "0x6dc70065bc3365386f40042de261610202ee004b5736840a118fabb87b373f23", + "oid": 207744082221, + "crossed": true, + "fee": "4.198273", + "tid": 608775279035930, + "cloid": "0x00000000000000000000001586000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109482.0", + "sz": "0.1826", + "side": "B", + "time": 1761013881928, + "startPosition": "-546.15571", + "dir": "Close Short", + "closedPnl": "601.81308", + "hash": "0xeca17997e7ca1d03ee1b042de26173020135007d82cd3bd5906a24eaa6cdf6ee", + "oid": 207744098817, + "crossed": true, + "fee": "4.198196", + "tid": 996371799254541, + "cloid": "0x00000000000000000000001586000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109481.0", + "sz": "0.1826", + "side": "B", + "time": 1761013884775, + "startPosition": "-545.97311", + "dir": "Close Short", + "closedPnl": "601.99568", + "hash": "0x3d5a9047655487a73ed4042de2619a020473002d0057a679e1233b9a24586191", + "oid": 207744133048, + "crossed": true, + "fee": "4.198158", + "tid": 358696844008735, + "cloid": "0x00000000000000000000001586000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109478.0", + "sz": "0.1826", + "side": "B", + "time": 1761013886335, + "startPosition": "-545.79051", + "dir": "Close Short", + "closedPnl": "602.54348", + "hash": "0x43657e6ef5ac9c3644df042de261b102020d005490afbb08e72e29c1b4a07620", + "oid": 207744151109, + "crossed": true, + "fee": "4.198043", + "tid": 852917713221465, + "cloid": "0x00000000000000000000001586000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109476.0", + "sz": "0.1826", + "side": "B", + "time": 1761013889717, + "startPosition": "-545.60791", + "dir": "Close Short", + "closedPnl": "602.90868", + "hash": "0x1a90b4eb1aef61f51c0a042de261da0202f400d0b5e280c7be59603dd9e33bdf", + "oid": 207744187317, + "crossed": true, + "fee": "4.197966", + "tid": 1099053596100912, + "cloid": "0x00000000000000000000001586000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109467.0", + "sz": "0.18262", + "side": "B", + "time": 1761013900450, + "startPosition": "-545.42531", + "dir": "Close Short", + "closedPnl": "604.618296", + "hash": "0xd457fe31ea8c630ad5d1042de2626102011b0017858f81dc7820a984a9803cf5", + "oid": 207744288541, + "crossed": true, + "fee": "4.198081", + "tid": 332115352613273, + "cloid": "0x00000000000000000000001586000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109472.0", + "sz": "0.00014", + "side": "B", + "time": 1761013904636, + "startPosition": "-545.24269", + "dir": "Close Short", + "closedPnl": "0.462812", + "hash": "0x8b8685d41ce940608d00042de2628e02099000b9b7ec5f322f4f3126dbed1a4b", + "oid": 207744346962, + "crossed": true, + "fee": "0.003218", + "tid": 398840101982572, + "cloid": "0x00000000000000000000001586000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109473.0", + "sz": "0.00011", + "side": "B", + "time": 1761013904636, + "startPosition": "-545.24255", + "dir": "Close Short", + "closedPnl": "0.363528", + "hash": "0x8b8685d41ce940608d00042de2628e02099000b9b7ec5f322f4f3126dbed1a4b", + "oid": 207744346962, + "crossed": true, + "fee": "0.002528", + "tid": 803175828971659, + "cloid": "0x00000000000000000000001586000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109474.0", + "sz": "0.00011", + "side": "B", + "time": 1761013904636, + "startPosition": "-545.24244", + "dir": "Close Short", + "closedPnl": "0.363418", + "hash": "0x8b8685d41ce940608d00042de2628e02099000b9b7ec5f322f4f3126dbed1a4b", + "oid": 207744346962, + "crossed": true, + "fee": "0.002528", + "tid": 973244258494350, + "cloid": "0x00000000000000000000001586000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109475.0", + "sz": "0.00011", + "side": "B", + "time": 1761013904636, + "startPosition": "-545.24233", + "dir": "Close Short", + "closedPnl": "0.363308", + "hash": "0x8b8685d41ce940608d00042de2628e02099000b9b7ec5f322f4f3126dbed1a4b", + "oid": 207744346962, + "crossed": true, + "fee": "0.002528", + "tid": 552646777509028, + "cloid": "0x00000000000000000000001586000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109476.0", + "sz": "0.00014", + "side": "B", + "time": 1761013904636, + "startPosition": "-545.24222", + "dir": "Close Short", + "closedPnl": "0.462252", + "hash": "0x8b8685d41ce940608d00042de2628e02099000b9b7ec5f322f4f3126dbed1a4b", + "oid": 207744346962, + "crossed": true, + "fee": "0.003218", + "tid": 98898137516356, + "cloid": "0x00000000000000000000001586000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109476.0", + "sz": "0.05074", + "side": "B", + "time": 1761013904636, + "startPosition": "-545.24208", + "dir": "Close Short", + "closedPnl": "167.533332", + "hash": "0x8b8685d41ce940608d00042de2628e02099000b9b7ec5f322f4f3126dbed1a4b", + "oid": 207744346962, + "crossed": true, + "fee": "1.16651", + "tid": 390034253897713, + "cloid": "0x00000000000000000000001586000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109477.0", + "sz": "0.00011", + "side": "B", + "time": 1761013904636, + "startPosition": "-545.19134", + "dir": "Close Short", + "closedPnl": "0.363088", + "hash": "0x8b8685d41ce940608d00042de2628e02099000b9b7ec5f322f4f3126dbed1a4b", + "oid": 207744346962, + "crossed": true, + "fee": "0.002528", + "tid": 278483867272751, + "cloid": "0x00000000000000000000001586000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109478.0", + "sz": "0.00011", + "side": "B", + "time": 1761013904636, + "startPosition": "-545.19123", + "dir": "Close Short", + "closedPnl": "0.362978", + "hash": "0x8b8685d41ce940608d00042de2628e02099000b9b7ec5f322f4f3126dbed1a4b", + "oid": 207744346962, + "crossed": true, + "fee": "0.002528", + "tid": 1012349896615013, + "cloid": "0x00000000000000000000001586000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109478.0", + "sz": "0.13103", + "side": "B", + "time": 1761013904636, + "startPosition": "-545.19112", + "dir": "Close Short", + "closedPnl": "432.372794", + "hash": "0x8b8685d41ce940608d00042de2628e02099000b9b7ec5f322f4f3126dbed1a4b", + "oid": 207744346962, + "crossed": true, + "fee": "3.012429", + "tid": 1117050102831987, + "cloid": "0x00000000000000000000001586000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109492.0", + "sz": "0.18258", + "side": "B", + "time": 1761013909424, + "startPosition": "-545.06009", + "dir": "Close Short", + "closedPnl": "599.921364", + "hash": "0xf1976a322f17046af311042de262cc0201f50017ca1a233d95601584ee1ade55", + "oid": 207744420329, + "crossed": true, + "fee": "4.19812", + "tid": 414303898386876, + "cloid": "0x00000000000000000000001586000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109511.0", + "sz": "0.00001", + "side": "B", + "time": 1761013911023, + "startPosition": "-544.87751", + "dir": "Close Short", + "closedPnl": "0.032668", + "hash": "0xf2beed1f6b12a9c0f438042de262dd0205a000050615c893968798722a1683ab", + "oid": 207744440833, + "crossed": true, + "fee": "0.000229", + "tid": 409648563300987, + "cloid": "0x00000000000000000000001586000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109511.0", + "sz": "0.18254", + "side": "B", + "time": 1761013911023, + "startPosition": "-544.8775", + "dir": "Close Short", + "closedPnl": "596.321672", + "hash": "0xf2beed1f6b12a9c0f438042de262dd0205a000050615c893968798722a1683ab", + "oid": 207744440833, + "crossed": true, + "fee": "4.197928", + "tid": 444526532334225, + "cloid": "0x00000000000000000000001586000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109511.0", + "sz": "0.18255", + "side": "B", + "time": 1761013916123, + "startPosition": "-544.69496", + "dir": "Close Short", + "closedPnl": "596.35434", + "hash": "0x7778f4646de936a478f2042de2631e020250004a08ec55761b419fb72ced108f", + "oid": 207744494667, + "crossed": true, + "fee": "4.198158", + "tid": 1117793648884096, + "cloid": "0x00000000000000000000001586000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109511.0", + "sz": "0.18254", + "side": "B", + "time": 1761013917951, + "startPosition": "-544.51241", + "dir": "Close Short", + "closedPnl": "596.321672", + "hash": "0x884cf8ab61e70bfc89c6042de263360209180090fcea2ace2c15a3fe20eae5e7", + "oid": 207744512265, + "crossed": true, + "fee": "4.197928", + "tid": 1066290016331496, + "cloid": "0x00000000000000000000001586000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109515.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.32987", + "dir": "Close Short", + "closedPnl": "0.358908", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.002529", + "tid": 286440285662741, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109516.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.32976", + "dir": "Close Short", + "closedPnl": "0.358798", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.002529", + "tid": 99617874796654, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109516.0", + "sz": "0.00066", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.32965", + "dir": "Close Short", + "closedPnl": "2.152788", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.015178", + "tid": 1104423699942237, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109516.0", + "sz": "0.00037", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.32899", + "dir": "Close Short", + "closedPnl": "1.206866", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.008509", + "tid": 300334560155975, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109517.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.32862", + "dir": "Close Short", + "closedPnl": "0.358688", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.002529", + "tid": 1034891691467698, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109517.0", + "sz": "0.00014", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.32851", + "dir": "Close Short", + "closedPnl": "0.456512", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.003219", + "tid": 233510156871378, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109518.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.32837", + "dir": "Close Short", + "closedPnl": "0.358578", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.002529", + "tid": 219147161483777, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109519.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.32826", + "dir": "Close Short", + "closedPnl": "0.358468", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.002529", + "tid": 716770960114888, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109520.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.32815", + "dir": "Close Short", + "closedPnl": "0.358358", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.002529", + "tid": 412307996429804, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109520.0", + "sz": "0.14724", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.32804", + "dir": "Close Short", + "closedPnl": "479.678472", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "3.386402", + "tid": 167557140533090, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109521.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.1808", + "dir": "Close Short", + "closedPnl": "0.358248", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.002529", + "tid": 601437671545599, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109522.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.18069", + "dir": "Close Short", + "closedPnl": "0.358138", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.002529", + "tid": 678729162859784, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109522.0", + "sz": "0.00014", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.18058", + "dir": "Close Short", + "closedPnl": "0.455812", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.003219", + "tid": 895432165363924, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109523.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.18044", + "dir": "Close Short", + "closedPnl": "0.358028", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.002529", + "tid": 992306790490053, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109524.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.18033", + "dir": "Close Short", + "closedPnl": "0.357918", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00253", + "tid": 124229332475438, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109525.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.18022", + "dir": "Close Short", + "closedPnl": "0.357808", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00253", + "tid": 600410383604330, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109526.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.18011", + "dir": "Close Short", + "closedPnl": "0.357698", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00253", + "tid": 69034150616564, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109526.0", + "sz": "0.00014", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.18", + "dir": "Close Short", + "closedPnl": "0.455252", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00322", + "tid": 928948322518100, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109527.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17986", + "dir": "Close Short", + "closedPnl": "0.357588", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00253", + "tid": 79599363855135, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109528.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17975", + "dir": "Close Short", + "closedPnl": "0.357478", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00253", + "tid": 339295673763373, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109529.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17964", + "dir": "Close Short", + "closedPnl": "0.357368", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00253", + "tid": 146469564306614, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109530.0", + "sz": "0.00014", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17953", + "dir": "Close Short", + "closedPnl": "0.454692", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00322", + "tid": 269573587843573, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109530.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17939", + "dir": "Close Short", + "closedPnl": "0.357258", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00253", + "tid": 109990531122402, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109531.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17928", + "dir": "Close Short", + "closedPnl": "0.357148", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00253", + "tid": 580028470965671, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109532.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17917", + "dir": "Close Short", + "closedPnl": "0.357038", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00253", + "tid": 494414722172566, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109533.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17906", + "dir": "Close Short", + "closedPnl": "0.356928", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00253", + "tid": 638803446903871, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109534.0", + "sz": "0.00014", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17895", + "dir": "Close Short", + "closedPnl": "0.454132", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00322", + "tid": 474011362318828, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109534.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17881", + "dir": "Close Short", + "closedPnl": "0.356818", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00253", + "tid": 715939929387617, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109535.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.1787", + "dir": "Close Short", + "closedPnl": "0.356708", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00253", + "tid": 342343551745434, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109535.0", + "sz": "0.00115", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17859", + "dir": "Close Short", + "closedPnl": "3.72922", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.026452", + "tid": 549152862964714, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109536.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17744", + "dir": "Close Short", + "closedPnl": "0.356598", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00253", + "tid": 981244261501314, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109537.0", + "sz": "0.00018", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17733", + "dir": "Close Short", + "closedPnl": "0.583344", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00414", + "tid": 176496612207738, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109537.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17715", + "dir": "Close Short", + "closedPnl": "0.356488", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00253", + "tid": 70006968242860, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109538.0", + "sz": "0.00014", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17704", + "dir": "Close Short", + "closedPnl": "0.453572", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00322", + "tid": 170232691158602, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109538.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.1769", + "dir": "Close Short", + "closedPnl": "0.356378", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00253", + "tid": 717982878183304, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109539.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17679", + "dir": "Close Short", + "closedPnl": "0.356268", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00253", + "tid": 160644920429911, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109540.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17668", + "dir": "Close Short", + "closedPnl": "0.356158", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00253", + "tid": 1123101109413412, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109541.0", + "sz": "0.00011", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17657", + "dir": "Close Short", + "closedPnl": "0.356048", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00253", + "tid": 141352464170537, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109541.0", + "sz": "0.00456", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17646", + "dir": "Close Short", + "closedPnl": "14.759808", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.104896", + "tid": 220375065157904, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109542.0", + "sz": "0.00014", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.1719", + "dir": "Close Short", + "closedPnl": "0.453012", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.00322", + "tid": 968511096107140, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109544.0", + "sz": "0.02443", + "side": "B", + "time": 1761013921387, + "startPosition": "-544.17176", + "dir": "Close Short", + "closedPnl": "79.001734", + "hash": "0x389f21ca35aa9af33a18042de2636002036200afd0adb9c5dc67cd1cf4ae74dd", + "oid": 207744546395, + "crossed": true, + "fee": "0.561993", + "tid": 247917056014129, + "cloid": "0x00000000000000000000001586000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109544.0", + "sz": "0.13672", + "side": "B", + "time": 1761013923157, + "startPosition": "-544.14733", + "dir": "Close Short", + "closedPnl": "442.125136", + "hash": "0xc908603334f9b46bca82042de2637702056c0018cffcd33d6cd10b85f3fd8e56", + "oid": 207744578882, + "crossed": true, + "fee": "3.145139", + "tid": 531049053587831, + "cloid": "0x00000000000000000000001586000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109544.0", + "sz": "0.0458", + "side": "B", + "time": 1761013923157, + "startPosition": "-544.01061", + "dir": "Close Short", + "closedPnl": "148.10804", + "hash": "0xc908603334f9b46bca82042de2637702056c0018cffcd33d6cd10b85f3fd8e56", + "oid": 207744578882, + "crossed": true, + "fee": "1.053594", + "tid": 731265339102788, + "cloid": "0x00000000000000000000001586000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109530.0", + "sz": "0.18251", + "side": "B", + "time": 1761013924568, + "startPosition": "-543.96481", + "dir": "Close Short", + "closedPnl": "592.755978", + "hash": "0xc0ea3bbe503841fec263042de26389020d6600a3eb3b60d064b2e7110f3c1be9", + "oid": 207744603174, + "crossed": true, + "fee": "4.197967", + "tid": 963163973837515, + "cloid": "0x00000000000000000000001586000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109519.0", + "sz": "0.18256", + "side": "B", + "time": 1761013930244, + "startPosition": "-543.7823", + "dir": "Close Short", + "closedPnl": "594.926528", + "hash": "0xb1ab45c5549fc662b325042de263d602075b00aaef92e5345573f1181393a04d", + "oid": 207744686289, + "crossed": true, + "fee": "4.198695", + "tid": 1031979073911977, + "cloid": "0x00000000000000000000001586000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109529.0", + "sz": "0.18255", + "side": "B", + "time": 1761013932523, + "startPosition": "-543.59974", + "dir": "Close Short", + "closedPnl": "593.06844", + "hash": "0xba671d5051c96c7ebbe0042de263f10207df0035eccc8b505e2fc8a310cd4669", + "oid": 207744735660, + "crossed": true, + "fee": "4.198848", + "tid": 889825189869985, + "cloid": "0x00000000000000000000001586000019", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109531.0", + "sz": "0.00011", + "side": "B", + "time": 1761013935038, + "startPosition": "-543.41719", + "dir": "Close Short", + "closedPnl": "0.357148", + "hash": "0x845ec2be0806ef1685d8042de2641202027e00a3a30a0de828276e10c70ac901", + "oid": 207744780176, + "crossed": true, + "fee": "0.00253", + "tid": 994008814492977, + "cloid": "0x00000000000000000000001586000020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109532.0", + "sz": "0.00011", + "side": "B", + "time": 1761013935038, + "startPosition": "-543.41708", + "dir": "Close Short", + "closedPnl": "0.357038", + "hash": "0x845ec2be0806ef1685d8042de2641202027e00a3a30a0de828276e10c70ac901", + "oid": 207744780176, + "crossed": true, + "fee": "0.00253", + "tid": 1040044684589214, + "cloid": "0x00000000000000000000001586000020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109533.0", + "sz": "0.00011", + "side": "B", + "time": 1761013935038, + "startPosition": "-543.41697", + "dir": "Close Short", + "closedPnl": "0.356928", + "hash": "0x845ec2be0806ef1685d8042de2641202027e00a3a30a0de828276e10c70ac901", + "oid": 207744780176, + "crossed": true, + "fee": "0.00253", + "tid": 36926494823367, + "cloid": "0x00000000000000000000001586000020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109534.0", + "sz": "0.00014", + "side": "B", + "time": 1761013935038, + "startPosition": "-543.41686", + "dir": "Close Short", + "closedPnl": "0.454132", + "hash": "0x845ec2be0806ef1685d8042de2641202027e00a3a30a0de828276e10c70ac901", + "oid": 207744780176, + "crossed": true, + "fee": "0.00322", + "tid": 564444734648165, + "cloid": "0x00000000000000000000001586000020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109534.0", + "sz": "0.00011", + "side": "B", + "time": 1761013935038, + "startPosition": "-543.41672", + "dir": "Close Short", + "closedPnl": "0.356818", + "hash": "0x845ec2be0806ef1685d8042de2641202027e00a3a30a0de828276e10c70ac901", + "oid": 207744780176, + "crossed": true, + "fee": "0.00253", + "tid": 166389490085491, + "cloid": "0x00000000000000000000001586000020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109534.0", + "sz": "0.18193", + "side": "B", + "time": 1761013935038, + "startPosition": "-543.41661", + "dir": "Close Short", + "closedPnl": "590.144534", + "hash": "0x845ec2be0806ef1685d8042de2641202027e00a3a30a0de828276e10c70ac901", + "oid": 207744780176, + "crossed": true, + "fee": "4.184779", + "tid": 527652942268025, + "cloid": "0x00000000000000000000001586000020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109521.0", + "sz": "0.06748", + "side": "B", + "time": 1761013936445, + "startPosition": "-543.23468", + "dir": "Close Short", + "closedPnl": "219.768864", + "hash": "0x80260a5221cd80c1819f042de264260207160037bcc09f9323eeb5a4e0c15aac", + "oid": 207744801586, + "crossed": true, + "fee": "1.552", + "tid": 318787913777849, + "cloid": "0x00000000000000000000001586000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109521.0", + "sz": "0.11504", + "side": "B", + "time": 1761013936445, + "startPosition": "-543.1672", + "dir": "Close Short", + "closedPnl": "374.662272", + "hash": "0x80260a5221cd80c1819f042de264260207160037bcc09f9323eeb5a4e0c15aac", + "oid": 207744801586, + "crossed": true, + "fee": "2.645852", + "tid": 1119280666634738, + "cloid": "0x00000000000000000000001586000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109515.0", + "sz": "0.18256", + "side": "B", + "time": 1761013937743, + "startPosition": "-543.05216", + "dir": "Close Short", + "closedPnl": "595.656768", + "hash": "0x7d0a389b3283b86b7e83042de264390206630080cd86d73d20d2e3edf1879256", + "oid": 207744825101, + "crossed": true, + "fee": "4.198542", + "tid": 560642765671138, + "cloid": "0x00000000000000000000001586000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109522.0", + "sz": "0.18255", + "side": "B", + "time": 1761013943570, + "startPosition": "-542.8696", + "dir": "Close Short", + "closedPnl": "594.34629", + "hash": "0x572bd71aff6938b558a5042de2648802029600009a6c5787faf4826dbe6d129f", + "oid": 207744891223, + "crossed": true, + "fee": "4.19858", + "tid": 628098788397239, + "cloid": "0x00000000000000000000001586000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109522.0", + "sz": "0.18254", + "side": "B", + "time": 1761013947755, + "startPosition": "-542.68705", + "dir": "Close Short", + "closedPnl": "594.313732", + "hash": "0xbe3836b803dd3960bfb1042de264bf020622009d9ed058326200e20ac2d1134b", + "oid": 207744922924, + "crossed": true, + "fee": "4.19835", + "tid": 640955490558513, + "cloid": "0x00000000000000000000001586000024", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109521.0", + "sz": "0.17336", + "side": "B", + "time": 1761013955001, + "startPosition": "-542.50451", + "dir": "Close Short", + "closedPnl": "564.598848", + "hash": "0x6d2001569ad577a06e99042de265210203a8003c35d8967210e8aca959d9518b", + "oid": 207745018909, + "crossed": true, + "fee": "3.987177", + "tid": 176394217557615, + "cloid": "0x00000000000000000000001586000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109521.0", + "sz": "0.00917", + "side": "B", + "time": 1761013955001, + "startPosition": "-542.33115", + "dir": "Close Short", + "closedPnl": "29.864856", + "hash": "0x6d2001569ad577a06e99042de265210203a8003c35d8967210e8aca959d9518b", + "oid": 207745018909, + "crossed": true, + "fee": "0.210904", + "tid": 177099490319092, + "cloid": "0x00000000000000000000001586000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109515.0", + "sz": "0.09854", + "side": "B", + "time": 1761013956409, + "startPosition": "-542.32198", + "dir": "Close Short", + "closedPnl": "321.516312", + "hash": "0x6ce450e44dbad9ef6e5e042de265360203dd00c9e8bdf8c110acfc370cbeb3da", + "oid": 207745041939, + "crossed": true, + "fee": "2.266237", + "tid": 569819486958301, + "cloid": "0x00000000000000000000001586000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109515.0", + "sz": "0.08401", + "side": "B", + "time": 1761013956409, + "startPosition": "-542.22344", + "dir": "Close Short", + "closedPnl": "274.107828", + "hash": "0x6ce450e44dbad9ef6e5e042de265360203dd00c9e8bdf8c110acfc370cbeb3da", + "oid": 207745041939, + "crossed": true, + "fee": "1.932074", + "tid": 1055106237915628, + "cloid": "0x00000000000000000000001586000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109515.0", + "sz": "0.01642", + "side": "B", + "time": 1761013957824, + "startPosition": "-542.13943", + "dir": "Close Short", + "closedPnl": "53.575176", + "hash": "0xa9f92d085ae84c5aab72042de265460208d800edf5eb6b2c4dc1d85b19ec2645", + "oid": 207745057740, + "crossed": true, + "fee": "0.377629", + "tid": 543817415549124, + "cloid": "0x00000000000000000000001586000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109515.0", + "sz": "0.16613", + "side": "B", + "time": 1761013957824, + "startPosition": "-542.12301", + "dir": "Close Short", + "closedPnl": "542.048964", + "hash": "0xa9f92d085ae84c5aab72042de265460208d800edf5eb6b2c4dc1d85b19ec2645", + "oid": 207745057740, + "crossed": true, + "fee": "3.820682", + "tid": 871395757441171, + "cloid": "0x00000000000000000000001586000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109514.0", + "sz": "0.13841", + "side": "B", + "time": 1761013959400, + "startPosition": "-541.95688", + "dir": "Close Short", + "closedPnl": "451.742558", + "hash": "0xa010e7ce32c53d6aa18a042de2655902036700b3cdc85c3c43d99320f1c91755", + "oid": 207745083529, + "crossed": true, + "fee": "3.183144", + "tid": 150228861941331, + "cloid": "0x00000000000000000000001586000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109514.0", + "sz": "0.04416", + "side": "B", + "time": 1761013959400, + "startPosition": "-541.81847", + "dir": "Close Short", + "closedPnl": "144.129408", + "hash": "0xa010e7ce32c53d6aa18a042de2655902036700b3cdc85c3c43d99320f1c91755", + "oid": 207745083529, + "crossed": true, + "fee": "1.015589", + "tid": 586245921460191, + "cloid": "0x00000000000000000000001586000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109515.0", + "sz": "0.18256", + "side": "B", + "time": 1761013962221, + "startPosition": "-541.77431", + "dir": "Close Short", + "closedPnl": "595.656768", + "hash": "0x95064b4d63730de69680042de2657c0205bb0032fe762cb838cef6a02276e7d1", + "oid": 207745121356, + "crossed": true, + "fee": "4.198542", + "tid": 973096001181788, + "cloid": "0x00000000000000000000001586000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109515.0", + "sz": "0.18255", + "side": "B", + "time": 1761013965792, + "startPosition": "-541.59175", + "dir": "Close Short", + "closedPnl": "595.62414", + "hash": "0xd788a4bf0aeb33fad902042de265a60201f800a4a5ee52cc7b515011c9ef0de5", + "oid": 207745148777, + "crossed": true, + "fee": "4.198312", + "tid": 994669500071051, + "cloid": "0x00000000000000000000001586000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109515.0", + "sz": "0.00833", + "side": "B", + "time": 1761013967689, + "startPosition": "-541.4092", + "dir": "Close Short", + "closedPnl": "27.179124", + "hash": "0x8ca989c6e4f5b1b38e23042de265bd02028e00ac7ff8d08530723519a3f98b9e", + "oid": 207745159203, + "crossed": true, + "fee": "0.191574", + "tid": 337608858342806, + "cloid": "0x00000000000000000000001586000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109515.0", + "sz": "0.13692", + "side": "B", + "time": 1761013967689, + "startPosition": "-541.40087", + "dir": "Close Short", + "closedPnl": "446.742576", + "hash": "0x8ca989c6e4f5b1b38e23042de265bd02028e00ac7ff8d08530723519a3f98b9e", + "oid": 207745159203, + "crossed": true, + "fee": "3.148906", + "tid": 199156240243639, + "cloid": "0x00000000000000000000001586000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109515.0", + "sz": "0.0373", + "side": "B", + "time": 1761013967689, + "startPosition": "-541.26395", + "dir": "Close Short", + "closedPnl": "121.70244", + "hash": "0x8ca989c6e4f5b1b38e23042de265bd02028e00ac7ff8d08530723519a3f98b9e", + "oid": 207745159203, + "crossed": true, + "fee": "0.85783", + "tid": 583087117859100, + "cloid": "0x00000000000000000000001586000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109519.0", + "sz": "0.00008", + "side": "B", + "time": 1761013972578, + "startPosition": "-541.22665", + "dir": "Close Short", + "closedPnl": "0.260704", + "hash": "0x2453d06abdb161b525cd042de265f40202a7005058b48087c81c7bbd7cb53b9f", + "oid": 207745210643, + "crossed": true, + "fee": "0.001839", + "tid": 710978329483422, + "cloid": "0x00000000000000000000001586000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109520.0", + "sz": "0.00011", + "side": "B", + "time": 1761013972578, + "startPosition": "-541.22657", + "dir": "Close Short", + "closedPnl": "0.358358", + "hash": "0x2453d06abdb161b525cd042de265f40202a7005058b48087c81c7bbd7cb53b9f", + "oid": 207745210643, + "crossed": true, + "fee": "0.002529", + "tid": 800747166304688, + "cloid": "0x00000000000000000000001586000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109520.0", + "sz": "0.00031", + "side": "B", + "time": 1761013972578, + "startPosition": "-541.22646", + "dir": "Close Short", + "closedPnl": "1.009918", + "hash": "0x2453d06abdb161b525cd042de265f40202a7005058b48087c81c7bbd7cb53b9f", + "oid": 207745210643, + "crossed": true, + "fee": "0.007129", + "tid": 803517013914560, + "cloid": "0x00000000000000000000001586000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109521.0", + "sz": "0.00011", + "side": "B", + "time": 1761013972578, + "startPosition": "-541.22615", + "dir": "Close Short", + "closedPnl": "0.358248", + "hash": "0x2453d06abdb161b525cd042de265f40202a7005058b48087c81c7bbd7cb53b9f", + "oid": 207745210643, + "crossed": true, + "fee": "0.002529", + "tid": 742463435478437, + "cloid": "0x00000000000000000000001586000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109522.0", + "sz": "0.00014", + "side": "B", + "time": 1761013972578, + "startPosition": "-541.22604", + "dir": "Close Short", + "closedPnl": "0.455812", + "hash": "0x2453d06abdb161b525cd042de265f40202a7005058b48087c81c7bbd7cb53b9f", + "oid": 207745210643, + "crossed": true, + "fee": "0.003219", + "tid": 892997428986944, + "cloid": "0x00000000000000000000001586000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109522.0", + "sz": "0.00011", + "side": "B", + "time": 1761013972578, + "startPosition": "-541.2259", + "dir": "Close Short", + "closedPnl": "0.358138", + "hash": "0x2453d06abdb161b525cd042de265f40202a7005058b48087c81c7bbd7cb53b9f", + "oid": 207745210643, + "crossed": true, + "fee": "0.002529", + "tid": 352029643480069, + "cloid": "0x00000000000000000000001586000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109522.0", + "sz": "0.00037", + "side": "B", + "time": 1761013972578, + "startPosition": "-541.22579", + "dir": "Close Short", + "closedPnl": "1.204646", + "hash": "0x2453d06abdb161b525cd042de265f40202a7005058b48087c81c7bbd7cb53b9f", + "oid": 207745210643, + "crossed": true, + "fee": "0.008509", + "tid": 11681073369859, + "cloid": "0x00000000000000000000001586000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109523.0", + "sz": "0.00011", + "side": "B", + "time": 1761013972578, + "startPosition": "-541.22542", + "dir": "Close Short", + "closedPnl": "0.358028", + "hash": "0x2453d06abdb161b525cd042de265f40202a7005058b48087c81c7bbd7cb53b9f", + "oid": 207745210643, + "crossed": true, + "fee": "0.002529", + "tid": 882732222685585, + "cloid": "0x00000000000000000000001586000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109523.0", + "sz": "0.03599", + "side": "B", + "time": 1761013972578, + "startPosition": "-541.22531", + "dir": "Close Short", + "closedPnl": "117.140252", + "hash": "0x2453d06abdb161b525cd042de265f40202a7005058b48087c81c7bbd7cb53b9f", + "oid": 207745210643, + "crossed": true, + "fee": "0.827763", + "tid": 268988641393837, + "cloid": "0x00000000000000000000001586000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109524.0", + "sz": "0.00011", + "side": "B", + "time": 1761013972578, + "startPosition": "-541.18932", + "dir": "Close Short", + "closedPnl": "0.357918", + "hash": "0x2453d06abdb161b525cd042de265f40202a7005058b48087c81c7bbd7cb53b9f", + "oid": 207745210643, + "crossed": true, + "fee": "0.00253", + "tid": 829852489724488, + "cloid": "0x00000000000000000000001586000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109525.0", + "sz": "0.00011", + "side": "B", + "time": 1761013972578, + "startPosition": "-541.18921", + "dir": "Close Short", + "closedPnl": "0.357808", + "hash": "0x2453d06abdb161b525cd042de265f40202a7005058b48087c81c7bbd7cb53b9f", + "oid": 207745210643, + "crossed": true, + "fee": "0.00253", + "tid": 407185847834760, + "cloid": "0x00000000000000000000001586000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109525.0", + "sz": "0.145", + "side": "B", + "time": 1761013972578, + "startPosition": "-541.1891", + "dir": "Close Short", + "closedPnl": "471.656", + "hash": "0x2453d06abdb161b525cd042de265f40202a7005058b48087c81c7bbd7cb53b9f", + "oid": 207745210643, + "crossed": true, + "fee": "3.335036", + "tid": 1061174451176390, + "cloid": "0x00000000000000000000001586000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109529.0", + "sz": "0.00011", + "side": "B", + "time": 1761013977223, + "startPosition": "-541.0441", + "dir": "Close Short", + "closedPnl": "0.357368", + "hash": "0x3632f40db01dd00537ac042de2662d0201e000f34b10eed7d9fb9f606f11a9ef", + "oid": 207745243214, + "crossed": true, + "fee": "0.00253", + "tid": 1089171376256429, + "cloid": "0x00000000000000000000001586000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109530.0", + "sz": "0.00011", + "side": "B", + "time": 1761013977223, + "startPosition": "-541.04399", + "dir": "Close Short", + "closedPnl": "0.357258", + "hash": "0x3632f40db01dd00537ac042de2662d0201e000f34b10eed7d9fb9f606f11a9ef", + "oid": 207745243214, + "crossed": true, + "fee": "0.00253", + "tid": 51759749975386, + "cloid": "0x00000000000000000000001586000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109530.0", + "sz": "0.00014", + "side": "B", + "time": 1761013977223, + "startPosition": "-541.04388", + "dir": "Close Short", + "closedPnl": "0.454692", + "hash": "0x3632f40db01dd00537ac042de2662d0201e000f34b10eed7d9fb9f606f11a9ef", + "oid": 207745243214, + "crossed": true, + "fee": "0.00322", + "tid": 520034582316540, + "cloid": "0x00000000000000000000001586000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109531.0", + "sz": "0.00011", + "side": "B", + "time": 1761013977223, + "startPosition": "-541.04374", + "dir": "Close Short", + "closedPnl": "0.357148", + "hash": "0x3632f40db01dd00537ac042de2662d0201e000f34b10eed7d9fb9f606f11a9ef", + "oid": 207745243214, + "crossed": true, + "fee": "0.00253", + "tid": 566214083477915, + "cloid": "0x00000000000000000000001586000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109532.0", + "sz": "0.00011", + "side": "B", + "time": 1761013977223, + "startPosition": "-541.04363", + "dir": "Close Short", + "closedPnl": "0.357038", + "hash": "0x3632f40db01dd00537ac042de2662d0201e000f34b10eed7d9fb9f606f11a9ef", + "oid": 207745243214, + "crossed": true, + "fee": "0.00253", + "tid": 916889748418314, + "cloid": "0x00000000000000000000001586000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109533.0", + "sz": "0.00011", + "side": "B", + "time": 1761013977223, + "startPosition": "-541.04352", + "dir": "Close Short", + "closedPnl": "0.356928", + "hash": "0x3632f40db01dd00537ac042de2662d0201e000f34b10eed7d9fb9f606f11a9ef", + "oid": 207745243214, + "crossed": true, + "fee": "0.00253", + "tid": 251187464043781, + "cloid": "0x00000000000000000000001586000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109534.0", + "sz": "0.00014", + "side": "B", + "time": 1761013977223, + "startPosition": "-541.04341", + "dir": "Close Short", + "closedPnl": "0.454132", + "hash": "0x3632f40db01dd00537ac042de2662d0201e000f34b10eed7d9fb9f606f11a9ef", + "oid": 207745243214, + "crossed": true, + "fee": "0.00322", + "tid": 478323359960037, + "cloid": "0x00000000000000000000001586000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109534.0", + "sz": "0.00011", + "side": "B", + "time": 1761013977223, + "startPosition": "-541.04327", + "dir": "Close Short", + "closedPnl": "0.356818", + "hash": "0x3632f40db01dd00537ac042de2662d0201e000f34b10eed7d9fb9f606f11a9ef", + "oid": 207745243214, + "crossed": true, + "fee": "0.00253", + "tid": 118957034283873, + "cloid": "0x00000000000000000000001586000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109535.0", + "sz": "0.00011", + "side": "B", + "time": 1761013977223, + "startPosition": "-541.04316", + "dir": "Close Short", + "closedPnl": "0.356708", + "hash": "0x3632f40db01dd00537ac042de2662d0201e000f34b10eed7d9fb9f606f11a9ef", + "oid": 207745243214, + "crossed": true, + "fee": "0.00253", + "tid": 1055269580357707, + "cloid": "0x00000000000000000000001586000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109536.0", + "sz": "0.00155", + "side": "B", + "time": 1761013977223, + "startPosition": "-541.04305", + "dir": "Close Short", + "closedPnl": "5.02479", + "hash": "0x3632f40db01dd00537ac042de2662d0201e000f34b10eed7d9fb9f606f11a9ef", + "oid": 207745243214, + "crossed": true, + "fee": "0.035653", + "tid": 980055944922237, + "cloid": "0x00000000000000000000001586000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109536.0", + "sz": "0.00011", + "side": "B", + "time": 1761013977223, + "startPosition": "-541.0415", + "dir": "Close Short", + "closedPnl": "0.356598", + "hash": "0x3632f40db01dd00537ac042de2662d0201e000f34b10eed7d9fb9f606f11a9ef", + "oid": 207745243214, + "crossed": true, + "fee": "0.00253", + "tid": 576211069078529, + "cloid": "0x00000000000000000000001586000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109537.0", + "sz": "0.00011", + "side": "B", + "time": 1761013977223, + "startPosition": "-541.04139", + "dir": "Close Short", + "closedPnl": "0.356488", + "hash": "0x3632f40db01dd00537ac042de2662d0201e000f34b10eed7d9fb9f606f11a9ef", + "oid": 207745243214, + "crossed": true, + "fee": "0.00253", + "tid": 481774065791301, + "cloid": "0x00000000000000000000001586000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109538.0", + "sz": "0.00014", + "side": "B", + "time": 1761013977223, + "startPosition": "-541.04128", + "dir": "Close Short", + "closedPnl": "0.453572", + "hash": "0x3632f40db01dd00537ac042de2662d0201e000f34b10eed7d9fb9f606f11a9ef", + "oid": 207745243214, + "crossed": true, + "fee": "0.00322", + "tid": 146875172512051, + "cloid": "0x00000000000000000000001586000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109538.0", + "sz": "0.00011", + "side": "B", + "time": 1761013977223, + "startPosition": "-541.04114", + "dir": "Close Short", + "closedPnl": "0.356378", + "hash": "0x3632f40db01dd00537ac042de2662d0201e000f34b10eed7d9fb9f606f11a9ef", + "oid": 207745243214, + "crossed": true, + "fee": "0.00253", + "tid": 1101820396679822, + "cloid": "0x00000000000000000000001586000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109539.0", + "sz": "0.00011", + "side": "B", + "time": 1761013977223, + "startPosition": "-541.04103", + "dir": "Close Short", + "closedPnl": "0.356268", + "hash": "0x3632f40db01dd00537ac042de2662d0201e000f34b10eed7d9fb9f606f11a9ef", + "oid": 207745243214, + "crossed": true, + "fee": "0.00253", + "tid": 608975876331481, + "cloid": "0x00000000000000000000001586000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109539.0", + "sz": "0.17933", + "side": "B", + "time": 1761013977223, + "startPosition": "-541.04092", + "dir": "Close Short", + "closedPnl": "580.814004", + "hash": "0x3632f40db01dd00537ac042de2662d0201e000f34b10eed7d9fb9f606f11a9ef", + "oid": 207745243214, + "crossed": true, + "fee": "4.125162", + "tid": 471727898328305, + "cloid": "0x00000000000000000000001586000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109519.0", + "sz": "0.18253", + "side": "B", + "time": 1761013980950, + "startPosition": "-540.86159", + "dir": "Close Short", + "closedPnl": "594.828764", + "hash": "0x1b8650a19e59fdaf1d00042de2665b020cfe0087395d1c81bf4efbf45d5dd799", + "oid": 207745306173, + "crossed": true, + "fee": "4.198005", + "tid": 481936039540244, + "cloid": "0x00000000000000000000001586000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109517.0", + "sz": "0.11684", + "side": "B", + "time": 1761013990565, + "startPosition": "-540.67906", + "dir": "Close Short", + "closedPnl": "380.991872", + "hash": "0xb924b2dfccef9118ba9e042de266da02021400c567e2afea5ced5e328be36b03", + "oid": 207745401593, + "crossed": true, + "fee": "2.687152", + "tid": 96681684393648, + "cloid": "0x00000000000000000000001586000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109517.0", + "sz": "0.06571", + "side": "B", + "time": 1761013990565, + "startPosition": "-540.56222", + "dir": "Close Short", + "closedPnl": "214.267168", + "hash": "0xb924b2dfccef9118ba9e042de266da02021400c567e2afea5ced5e328be36b03", + "oid": 207745401593, + "crossed": true, + "fee": "1.511236", + "tid": 458160501732419, + "cloid": "0x00000000000000000000001586000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109537.0", + "sz": "0.04891", + "side": "B", + "time": 1761013996336, + "startPosition": "-540.49651", + "dir": "Close Short", + "closedPnl": "158.507528", + "hash": "0x21b8be63fec3eae02332042de26729020917004999c709b2c58169b6bdc7c4ca", + "oid": 207745473427, + "crossed": true, + "fee": "1.125065", + "tid": 1091795979137330, + "cloid": "0x00000000000000000000001586000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109537.0", + "sz": "0.00011", + "side": "B", + "time": 1761013996336, + "startPosition": "-540.4476", + "dir": "Close Short", + "closedPnl": "0.356488", + "hash": "0x21b8be63fec3eae02332042de26729020917004999c709b2c58169b6bdc7c4ca", + "oid": 207745473427, + "crossed": true, + "fee": "0.00253", + "tid": 30783343519600, + "cloid": "0x00000000000000000000001586000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109538.0", + "sz": "0.00014", + "side": "B", + "time": 1761013996336, + "startPosition": "-540.44749", + "dir": "Close Short", + "closedPnl": "0.453572", + "hash": "0x21b8be63fec3eae02332042de26729020917004999c709b2c58169b6bdc7c4ca", + "oid": 207745473427, + "crossed": true, + "fee": "0.00322", + "tid": 303754094509349, + "cloid": "0x00000000000000000000001586000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109538.0", + "sz": "0.00011", + "side": "B", + "time": 1761013996336, + "startPosition": "-540.44735", + "dir": "Close Short", + "closedPnl": "0.356378", + "hash": "0x21b8be63fec3eae02332042de26729020917004999c709b2c58169b6bdc7c4ca", + "oid": 207745473427, + "crossed": true, + "fee": "0.00253", + "tid": 186123235803101, + "cloid": "0x00000000000000000000001586000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109538.0", + "sz": "0.03599", + "side": "B", + "time": 1761013996336, + "startPosition": "-540.44724", + "dir": "Close Short", + "closedPnl": "116.600402", + "hash": "0x21b8be63fec3eae02332042de26729020917004999c709b2c58169b6bdc7c4ca", + "oid": 207745473427, + "crossed": true, + "fee": "0.827877", + "tid": 995216310747433, + "cloid": "0x00000000000000000000001586000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109538.0", + "sz": "0.09728", + "side": "B", + "time": 1761013996336, + "startPosition": "-540.41125", + "dir": "Close Short", + "closedPnl": "315.167744", + "hash": "0x21b8be63fec3eae02332042de26729020917004999c709b2c58169b6bdc7c4ca", + "oid": 207745473427, + "crossed": true, + "fee": "2.237729", + "tid": 988606915347749, + "cloid": "0x00000000000000000000001586000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109525.0", + "sz": "0.18254", + "side": "B", + "time": 1761013998962, + "startPosition": "-540.31397", + "dir": "Close Short", + "closedPnl": "593.766112", + "hash": "0xf0e1891371745a31f25b042de267490201da00f90c77790494aa34663078341c", + "oid": 207745512268, + "crossed": true, + "fee": "4.198465", + "tid": 1123246465681085, + "cloid": "0x00000000000000000000001586000037", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109524.0", + "sz": "0.09407", + "side": "B", + "time": 1761014000732, + "startPosition": "-540.13143", + "dir": "Close Short", + "closedPnl": "306.084966", + "hash": "0xfa91f5a7c8a22511fc0b042de2676102064d008d63a543e49e5aa0fa87a5fefc", + "oid": 207745538416, + "crossed": true, + "fee": "2.163613", + "tid": 100892751578225, + "cloid": "0x00000000000000000000001586000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109524.0", + "sz": "0.07651", + "side": "B", + "time": 1761014000732, + "startPosition": "-540.03736", + "dir": "Close Short", + "closedPnl": "248.948238", + "hash": "0xfa91f5a7c8a22511fc0b042de2676102064d008d63a543e49e5aa0fa87a5fefc", + "oid": 207745538416, + "crossed": true, + "fee": "1.759733", + "tid": 636968180188526, + "cloid": "0x00000000000000000000001586000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109524.0", + "sz": "0.01197", + "side": "B", + "time": 1761014000732, + "startPosition": "-539.96085", + "dir": "Close Short", + "closedPnl": "38.947986", + "hash": "0xfa91f5a7c8a22511fc0b042de2676102064d008d63a543e49e5aa0fa87a5fefc", + "oid": 207745538416, + "crossed": true, + "fee": "0.27531", + "tid": 468731741005616, + "cloid": "0x00000000000000000000001586000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109524.0", + "sz": "0.18253", + "side": "B", + "time": 1761014003672, + "startPosition": "-539.94888", + "dir": "Close Short", + "closedPnl": "593.916114", + "hash": "0x52f4bc86dd5a12d5546e042de26786020d57006c785d31a7f6bd67d99c5decbf", + "oid": 207745579056, + "crossed": true, + "fee": "4.198197", + "tid": 607088021944980, + "cloid": "0x00000000000000000000001586000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109550.0", + "sz": "0.15892", + "side": "B", + "time": 1761014005057, + "startPosition": "-539.76635", + "dir": "Close Short", + "closedPnl": "512.961976", + "hash": "0x4dbecfa47de0e6494f38042de267960202f8008a18e4051bf1877af73ce4c033", + "oid": 207745611494, + "crossed": true, + "fee": "3.656034", + "tid": 184006240569306, + "cloid": "0x00000000000000000000001586000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109550.0", + "sz": "0.02358", + "side": "B", + "time": 1761014005057, + "startPosition": "-539.60743", + "dir": "Close Short", + "closedPnl": "76.111524", + "hash": "0x4dbecfa47de0e6494f38042de267960202f8008a18e4051bf1877af73ce4c033", + "oid": 207745611494, + "crossed": true, + "fee": "0.542469", + "tid": 1125086519506340, + "cloid": "0x00000000000000000000001586000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109545.0", + "sz": "0.1825", + "side": "B", + "time": 1761014006674, + "startPosition": "-539.58385", + "dir": "Close Short", + "closedPnl": "589.986", + "hash": "0xec9e538a1ca23ba2ee18042de267ab020a9b006fb7a55a749066fedcdba6158d", + "oid": 207745640092, + "crossed": true, + "fee": "4.198312", + "tid": 997707770245780, + "cloid": "0x00000000000000000000001586000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109545.0", + "sz": "0.05878", + "side": "B", + "time": 1761014008002, + "startPosition": "-539.40135", + "dir": "Close Short", + "closedPnl": "190.023984", + "hash": "0x1d1f71a2450a88261e99042de267bb0204c10087e00da6f8c0e81cf5040e6210", + "oid": 207745662434, + "crossed": true, + "fee": "1.352201", + "tid": 834450145643759, + "cloid": "0x00000000000000000000001586000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109545.0", + "sz": "0.05469", + "side": "B", + "time": 1761014008002, + "startPosition": "-539.34257", + "dir": "Close Short", + "closedPnl": "176.801832", + "hash": "0x1d1f71a2450a88261e99042de267bb0204c10087e00da6f8c0e81cf5040e6210", + "oid": 207745662434, + "crossed": true, + "fee": "1.258113", + "tid": 388341250243585, + "cloid": "0x00000000000000000000001586000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109545.0", + "sz": "0.06906", + "side": "B", + "time": 1761014008002, + "startPosition": "-539.28788", + "dir": "Close Short", + "closedPnl": "223.257168", + "hash": "0x1d1f71a2450a88261e99042de267bb0204c10087e00da6f8c0e81cf5040e6210", + "oid": 207745662434, + "crossed": true, + "fee": "1.588687", + "tid": 184451756294977, + "cloid": "0x00000000000000000000001586000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109542.0", + "sz": "0.18253", + "side": "B", + "time": 1761014010949, + "startPosition": "-539.21882", + "dir": "Close Short", + "closedPnl": "590.630574", + "hash": "0xd2c88dbc0eae5691d442042de267db0201cb00a1a9a175637691390ecda2307c", + "oid": 207745691328, + "crossed": true, + "fee": "4.198887", + "tid": 1035715232925679, + "cloid": "0x00000000000000000000001586000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109542.0", + "sz": "0.18253", + "side": "B", + "time": 1761014015476, + "startPosition": "-539.03629", + "dir": "Close Short", + "closedPnl": "590.630574", + "hash": "0xeb5a8c26797cd90becd4042de2680a0208d5000c147ff7dd8f2337793870b2f6", + "oid": 207745743346, + "crossed": true, + "fee": "4.198887", + "tid": 28755267080417, + "cloid": "0x00000000000000000000001586000044", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109540.0", + "sz": "0.11884", + "side": "B", + "time": 1761014016779, + "startPosition": "-538.85376", + "dir": "Close Short", + "closedPnl": "384.780152", + "hash": "0x2bae5eaf0196fec12d28042de268180201e100949c9a1d93cf770a01c09ad8ab", + "oid": 207745761714, + "crossed": true, + "fee": "2.733724", + "tid": 536373413288966, + "cloid": "0x00000000000000000000001586000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109540.0", + "sz": "0.0637", + "side": "B", + "time": 1761014016779, + "startPosition": "-538.73492", + "dir": "Close Short", + "closedPnl": "206.24786", + "hash": "0x2bae5eaf0196fec12d28042de268180201e100949c9a1d93cf770a01c09ad8ab", + "oid": 207745761714, + "crossed": true, + "fee": "1.465316", + "tid": 563496893051756, + "cloid": "0x00000000000000000000001586000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109531.0", + "sz": "0.18255", + "side": "B", + "time": 1761014022256, + "startPosition": "-538.67122", + "dir": "Close Short", + "closedPnl": "592.70334", + "hash": "0x57079e8c1d65213b5881042de2686002023e0071b868400dfad049dedc68fb25", + "oid": 207745815920, + "crossed": true, + "fee": "4.198925", + "tid": 741577525522397, + "cloid": "0x00000000000000000000001586000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109522.0", + "sz": "0.18255", + "side": "B", + "time": 1761014023717, + "startPosition": "-538.48867", + "dir": "Close Short", + "closedPnl": "594.34629", + "hash": "0x72951185ee3f93e5740e042de268760202e5006b8932b2b7165dbcd8ad336dd0", + "oid": 207745829233, + "crossed": true, + "fee": "4.19858", + "tid": 346560253500272, + "cloid": "0x00000000000000000000001586000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109519.0", + "sz": "0.18255", + "side": "B", + "time": 1761014034601, + "startPosition": "-538.30612", + "dir": "Close Short", + "closedPnl": "594.89394", + "hash": "0x1bdd7c928b790c181d57042de2690a0201f50078267c2aeabfa627e54a7ce602", + "oid": 207745911675, + "crossed": true, + "fee": "4.198465", + "tid": 201927975834547, + "cloid": "0x00000000000000000000001586000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109519.0", + "sz": "0.18255", + "side": "B", + "time": 1761014044385, + "startPosition": "-538.12357", + "dir": "Close Short", + "closedPnl": "594.89394", + "hash": "0xcbe5a0552753f382cd5f042de269810201d0003ac25712546fae4ba7e657cd6d", + "oid": 207745965987, + "crossed": true, + "fee": "4.198465", + "tid": 764087265000793, + "cloid": "0x00000000000000000000001586000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109517.0", + "sz": "0.17137", + "side": "B", + "time": 1761014050952, + "startPosition": "-537.94102", + "dir": "Close Short", + "closedPnl": "558.803296", + "hash": "0xce2de06c5a0886f3cfa7042de269d70207050051f50ba5c571f68bbf190c60de", + "oid": 207746041440, + "crossed": true, + "fee": "3.941264", + "tid": 534613500654286, + "cloid": "0x00000000000000000000001586000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109517.0", + "sz": "0.01119", + "side": "B", + "time": 1761014050952, + "startPosition": "-537.76965", + "dir": "Close Short", + "closedPnl": "36.488352", + "hash": "0xce2de06c5a0886f3cfa7042de269d70207050051f50ba5c571f68bbf190c60de", + "oid": 207746041440, + "crossed": true, + "fee": "0.257353", + "tid": 991258040930263, + "cloid": "0x00000000000000000000001586000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109512.0", + "sz": "0.12561", + "side": "B", + "time": 1761014052296, + "startPosition": "-537.75846", + "dir": "Close Short", + "closedPnl": "410.217138", + "hash": "0x5e4e4e3863a2d4e45fc8042de269e6020e24001dfea5f3b60216f98b22a6aecf", + "oid": 207746074574, + "crossed": true, + "fee": "2.888718", + "tid": 817435609029980, + "cloid": "0x00000000000000000000001586000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109512.0", + "sz": "0.05694", + "side": "B", + "time": 1761014052296, + "startPosition": "-537.63285", + "dir": "Close Short", + "closedPnl": "185.954652", + "hash": "0x5e4e4e3863a2d4e45fc8042de269e6020e24001dfea5f3b60216f98b22a6aecf", + "oid": 207746074574, + "crossed": true, + "fee": "1.309478", + "tid": 345070359894826, + "cloid": "0x00000000000000000000001586000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109512.0", + "sz": "0.18257", + "side": "B", + "time": 1761014054014, + "startPosition": "-537.57591", + "dir": "Close Short", + "closedPnl": "596.237106", + "hash": "0x6a67c017de1d84da6be1042de269fa0205ff00fd7910a3ac0e306b6a9d115ec5", + "oid": 207746100693, + "crossed": true, + "fee": "4.198657", + "tid": 288663571149511, + "cloid": "0x00000000000000000000001586000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109512.0", + "sz": "0.18256", + "side": "B", + "time": 1761014055373, + "startPosition": "-537.39334", + "dir": "Close Short", + "closedPnl": "596.204448", + "hash": "0x8e35b17942b7a7fb8faf042de26a0f0203b0005eddbac6cd31fe5ccc01bb81e6", + "oid": 207746117729, + "crossed": true, + "fee": "4.198427", + "tid": 561671115993237, + "cloid": "0x00000000000000000000001586000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109507.0", + "sz": "0.18257", + "side": "B", + "time": 1761014056645, + "startPosition": "-537.21078", + "dir": "Close Short", + "closedPnl": "597.149956", + "hash": "0xb2a88111736f0c7bb422042de26a1d02032d00f70e622b4d56712c643262e666", + "oid": 207746133454, + "crossed": true, + "fee": "4.198465", + "tid": 492616600614795, + "cloid": "0x00000000000000000000001586000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109505.0", + "sz": "0.00585", + "side": "B", + "time": 1761014067115, + "startPosition": "-537.02821", + "dir": "Close Short", + "closedPnl": "19.14588", + "hash": "0xb546902674e72724b6c0042de26a9802015e000c0fea45f6590f3b7933eb010f", + "oid": 207746195696, + "crossed": true, + "fee": "0.134526", + "tid": 797922643989147, + "cloid": "0x00000000000000000000001586000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109505.0", + "sz": "0.13461", + "side": "B", + "time": 1761014067115, + "startPosition": "-537.02236", + "dir": "Close Short", + "closedPnl": "440.551608", + "hash": "0xb546902674e72724b6c0042de26a9802015e000c0fea45f6590f3b7933eb010f", + "oid": 207746195696, + "crossed": true, + "fee": "3.095498", + "tid": 970163477544618, + "cloid": "0x00000000000000000000001586000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109505.0", + "sz": "0.04211", + "side": "B", + "time": 1761014067115, + "startPosition": "-536.88775", + "dir": "Close Short", + "closedPnl": "137.817608", + "hash": "0xb546902674e72724b6c0042de26a9802015e000c0fea45f6590f3b7933eb010f", + "oid": 207746195696, + "crossed": true, + "fee": "0.968363", + "tid": 1001644032611215, + "cloid": "0x00000000000000000000001586000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109505.0", + "sz": "0.12546", + "side": "B", + "time": 1761014068337, + "startPosition": "-536.84564", + "dir": "Close Short", + "closedPnl": "410.605488", + "hash": "0x062b28b47af5436607a4042de26aa701dc00409a15f86238a9f3d40739f91d50", + "oid": 207746205468, + "crossed": true, + "fee": "2.885084", + "tid": 793171016952277, + "cloid": "0x00000000000000000000001586000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109505.0", + "sz": "0.04137", + "side": "B", + "time": 1761014068337, + "startPosition": "-536.72018", + "dir": "Close Short", + "closedPnl": "135.395736", + "hash": "0x062b28b47af5436607a4042de26aa701dc00409a15f86238a9f3d40739f91d50", + "oid": 207746205468, + "crossed": true, + "fee": "0.951346", + "tid": 162984050855912, + "cloid": "0x00000000000000000000001586000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109505.0", + "sz": "0.01574", + "side": "B", + "time": 1761014068337, + "startPosition": "-536.67881", + "dir": "Close Short", + "closedPnl": "51.513872", + "hash": "0x062b28b47af5436607a4042de26aa701dc00409a15f86238a9f3d40739f91d50", + "oid": 207746205468, + "crossed": true, + "fee": "0.361957", + "tid": 844570745454193, + "cloid": "0x00000000000000000000001586000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109505.0", + "sz": "0.00998", + "side": "B", + "time": 1761014069532, + "startPosition": "-536.66307", + "dir": "Close Short", + "closedPnl": "32.662544", + "hash": "0xcd1fcbc3a24794b2ce99042de26ab502015300a93d4ab38470e87716614b6e9d", + "oid": 207746218659, + "crossed": true, + "fee": "0.2295", + "tid": 790439432358866, + "cloid": "0x00000000000000000000001586000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109505.0", + "sz": "0.1125", + "side": "B", + "time": 1761014069532, + "startPosition": "-536.65309", + "dir": "Close Short", + "closedPnl": "368.19", + "hash": "0xcd1fcbc3a24794b2ce99042de26ab502015300a93d4ab38470e87716614b6e9d", + "oid": 207746218659, + "crossed": true, + "fee": "2.587055", + "tid": 157771637089319, + "cloid": "0x00000000000000000000001586000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109505.0", + "sz": "0.05789", + "side": "B", + "time": 1761014069532, + "startPosition": "-536.54059", + "dir": "Close Short", + "closedPnl": "189.462392", + "hash": "0xcd1fcbc3a24794b2ce99042de26ab502015300a93d4ab38470e87716614b6e9d", + "oid": 207746218659, + "crossed": true, + "fee": "1.331241", + "tid": 324635279978569, + "cloid": "0x00000000000000000000001586000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109505.0", + "sz": "0.0022", + "side": "B", + "time": 1761014069532, + "startPosition": "-536.4827", + "dir": "Close Short", + "closedPnl": "7.20016", + "hash": "0xcd1fcbc3a24794b2ce99042de26ab502015300a93d4ab38470e87716614b6e9d", + "oid": 207746218659, + "crossed": true, + "fee": "0.050591", + "tid": 946502090915639, + "cloid": "0x00000000000000000000001586000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109501.0", + "sz": "0.08066", + "side": "B", + "time": 1761014070714, + "startPosition": "-536.4805", + "dir": "Close Short", + "closedPnl": "264.306688", + "hash": "0x2ab023ab9613f9dd2c29042de26ac30201d20091311718afce78cefe5517d3c7", + "oid": 207746234439, + "crossed": true, + "fee": "1.854793", + "tid": 852592464381873, + "cloid": "0x00000000000000000000001586000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109501.0", + "sz": "0.10192", + "side": "B", + "time": 1761014070714, + "startPosition": "-536.39984", + "dir": "Close Short", + "closedPnl": "333.971456", + "hash": "0x2ab023ab9613f9dd2c29042de26ac30201d20091311718afce78cefe5517d3c7", + "oid": 207746234439, + "crossed": true, + "fee": "2.343671", + "tid": 687649769020368, + "cloid": "0x00000000000000000000001586000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109501.0", + "sz": "0.18258", + "side": "B", + "time": 1761014077504, + "startPosition": "-536.29792", + "dir": "Close Short", + "closedPnl": "598.278144", + "hash": "0x81003b649410525e8279042de26b110202ac004a2f13713024c8e6b753142c49", + "oid": 207746279718, + "crossed": true, + "fee": "4.198465", + "tid": 221613977573948, + "cloid": "0x00000000000000000000001586000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109501.0", + "sz": "0.00913", + "side": "B", + "time": 1761014078667, + "startPosition": "-536.11534", + "dir": "Close Short", + "closedPnl": "29.917184", + "hash": "0x1f3949a5af4656ea20b3042de26b220201c2008b4a4975bcc301f4f86e4a30d4", + "oid": 207746286759, + "crossed": true, + "fee": "0.209946", + "tid": 506808524389152, + "cloid": "0x00000000000000000000001586000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109501.0", + "sz": "0.17345", + "side": "B", + "time": 1761014078667, + "startPosition": "-536.10621", + "dir": "Close Short", + "closedPnl": "568.36096", + "hash": "0x1f3949a5af4656ea20b3042de26b220201c2008b4a4975bcc301f4f86e4a30d4", + "oid": 207746286759, + "crossed": true, + "fee": "3.988519", + "tid": 219685770940456, + "cloid": "0x00000000000000000000001586000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109502.0", + "sz": "0.00029", + "side": "B", + "time": 1761014089243, + "startPosition": "-535.93276", + "dir": "Close Short", + "closedPnl": "0.949982", + "hash": "0xa5a5065d86f62e35a71e042de26bb8020487004321f94d07496db1b045fa0820", + "oid": 207746344188, + "crossed": true, + "fee": "0.006668", + "tid": 234558298112805, + "cloid": "0x00000000000000000000001586000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109502.0", + "sz": "0.00035", + "side": "B", + "time": 1761014089243, + "startPosition": "-535.93247", + "dir": "Close Short", + "closedPnl": "1.14653", + "hash": "0xa5a5065d86f62e35a71e042de26bb8020487004321f94d07496db1b045fa0820", + "oid": 207746344188, + "crossed": true, + "fee": "0.008048", + "tid": 231821842397936, + "cloid": "0x00000000000000000000001586000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109502.0", + "sz": "0.00011", + "side": "B", + "time": 1761014089243, + "startPosition": "-535.93212", + "dir": "Close Short", + "closedPnl": "0.360338", + "hash": "0xa5a5065d86f62e35a71e042de26bb8020487004321f94d07496db1b045fa0820", + "oid": 207746344188, + "crossed": true, + "fee": "0.002529", + "tid": 577134889267037, + "cloid": "0x00000000000000000000001586000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109502.0", + "sz": "0.00033", + "side": "B", + "time": 1761014089243, + "startPosition": "-535.93201", + "dir": "Close Short", + "closedPnl": "1.081014", + "hash": "0xa5a5065d86f62e35a71e042de26bb8020487004321f94d07496db1b045fa0820", + "oid": 207746344188, + "crossed": true, + "fee": "0.007588", + "tid": 910429403224482, + "cloid": "0x00000000000000000000001586000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109503.0", + "sz": "0.00011", + "side": "B", + "time": 1761014089243, + "startPosition": "-535.93168", + "dir": "Close Short", + "closedPnl": "0.360228", + "hash": "0xa5a5065d86f62e35a71e042de26bb8020487004321f94d07496db1b045fa0820", + "oid": 207746344188, + "crossed": true, + "fee": "0.002529", + "tid": 295862092512215, + "cloid": "0x00000000000000000000001586000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109504.0", + "sz": "0.00041", + "side": "B", + "time": 1761014089243, + "startPosition": "-535.93157", + "dir": "Close Short", + "closedPnl": "1.342258", + "hash": "0xa5a5065d86f62e35a71e042de26bb8020487004321f94d07496db1b045fa0820", + "oid": 207746344188, + "crossed": true, + "fee": "0.009428", + "tid": 874105328539628, + "cloid": "0x00000000000000000000001586000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109504.0", + "sz": "0.00011", + "side": "B", + "time": 1761014089243, + "startPosition": "-535.93116", + "dir": "Close Short", + "closedPnl": "0.360118", + "hash": "0xa5a5065d86f62e35a71e042de26bb8020487004321f94d07496db1b045fa0820", + "oid": 207746344188, + "crossed": true, + "fee": "0.002529", + "tid": 804374619466603, + "cloid": "0x00000000000000000000001586000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109504.0", + "sz": "0.00042", + "side": "B", + "time": 1761014089243, + "startPosition": "-535.93105", + "dir": "Close Short", + "closedPnl": "1.374996", + "hash": "0xa5a5065d86f62e35a71e042de26bb8020487004321f94d07496db1b045fa0820", + "oid": 207746344188, + "crossed": true, + "fee": "0.009658", + "tid": 709499020753536, + "cloid": "0x00000000000000000000001586000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109505.0", + "sz": "0.00011", + "side": "B", + "time": 1761014089243, + "startPosition": "-535.93063", + "dir": "Close Short", + "closedPnl": "0.360008", + "hash": "0xa5a5065d86f62e35a71e042de26bb8020487004321f94d07496db1b045fa0820", + "oid": 207746344188, + "crossed": true, + "fee": "0.002529", + "tid": 756821439551867, + "cloid": "0x00000000000000000000001586000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109506.0", + "sz": "0.00041", + "side": "B", + "time": 1761014089243, + "startPosition": "-535.93052", + "dir": "Close Short", + "closedPnl": "1.341438", + "hash": "0xa5a5065d86f62e35a71e042de26bb8020487004321f94d07496db1b045fa0820", + "oid": 207746344188, + "crossed": true, + "fee": "0.009428", + "tid": 64668182421906, + "cloid": "0x00000000000000000000001586000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109506.0", + "sz": "0.00011", + "side": "B", + "time": 1761014089243, + "startPosition": "-535.93011", + "dir": "Close Short", + "closedPnl": "0.359898", + "hash": "0xa5a5065d86f62e35a71e042de26bb8020487004321f94d07496db1b045fa0820", + "oid": 207746344188, + "crossed": true, + "fee": "0.002529", + "tid": 127461861582604, + "cloid": "0x00000000000000000000001586000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109506.0", + "sz": "0.17982", + "side": "B", + "time": 1761014089243, + "startPosition": "-535.93", + "dir": "Close Short", + "closedPnl": "588.335076", + "hash": "0xa5a5065d86f62e35a71e042de26bb8020487004321f94d07496db1b045fa0820", + "oid": 207746344188, + "crossed": true, + "fee": "4.135187", + "tid": 568742662333033, + "cloid": "0x00000000000000000000001586000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109506.0", + "sz": "0.18257", + "side": "B", + "time": 1761014090627, + "startPosition": "-535.75018", + "dir": "Close Short", + "closedPnl": "597.332526", + "hash": "0x8c70252ff96ebebb8de9042de26bcb0201a700159461dd8d3038d082b86298a6", + "oid": 207746369504, + "crossed": true, + "fee": "4.198427", + "tid": 311121641352361, + "cloid": "0x00000000000000000000001586000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109504.0", + "sz": "0.18258", + "side": "B", + "time": 1761014091838, + "startPosition": "-535.56761", + "dir": "Close Short", + "closedPnl": "597.730404", + "hash": "0x29e34f21b2106eff2b5d042de26bdd02069000074d138dd1cdabfa74711448e9", + "oid": 207746380313, + "crossed": true, + "fee": "4.19858", + "tid": 687784055214724, + "cloid": "0x00000000000000000000001586000063", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109506.0", + "sz": "0.18257", + "side": "B", + "time": 1761014098428, + "startPosition": "-535.38503", + "dir": "Close Short", + "closedPnl": "597.332526", + "hash": "0x785c38016aab2cde79d5042de26c3a02097000e705ae4bb01c24e35429af06c9", + "oid": 207746424876, + "crossed": true, + "fee": "4.198427", + "tid": 866882204144644, + "cloid": "0x00000000000000000000001586000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109515.0", + "sz": "0.18255", + "side": "B", + "time": 1761014100969, + "startPosition": "-535.20246", + "dir": "Close Short", + "closedPnl": "595.62414", + "hash": "0xd521e3f958fcfdeed69b042de26c5802038700def3f01cc078ea8f4c17f0d7d9", + "oid": 207746468404, + "crossed": true, + "fee": "4.198312", + "tid": 544749794644433, + "cloid": "0x00000000000000000000001586000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109526.0", + "sz": "0.18255", + "side": "B", + "time": 1761014102750, + "startPosition": "-535.01991", + "dir": "Close Short", + "closedPnl": "593.61609", + "hash": "0x5f2ce7d7e032989b60a6042de26c6e02092d00bd7b35b76d02f5932a9f367286", + "oid": 207746499763, + "crossed": true, + "fee": "4.198733", + "tid": 381446370897865, + "cloid": "0x00000000000000000000001586000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109527.0", + "sz": "0.07625", + "side": "B", + "time": 1761014105803, + "startPosition": "-534.83736", + "dir": "Close Short", + "closedPnl": "247.8735", + "hash": "0xf037d444c016c30ff1b1042de26c98020789002a5b19e1e294007f977f1a9cfa", + "oid": 207746559595, + "crossed": true, + "fee": "1.753801", + "tid": 928126078342422, + "cloid": "0x00000000000000000000001586000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109527.0", + "sz": "0.10628", + "side": "B", + "time": 1761014105803, + "startPosition": "-534.76111", + "dir": "Close Short", + "closedPnl": "345.495024", + "hash": "0xf037d444c016c30ff1b1042de26c98020789002a5b19e1e294007f977f1a9cfa", + "oid": 207746559595, + "crossed": true, + "fee": "2.444511", + "tid": 146975376093555, + "cloid": "0x00000000000000000000001586000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109513.0", + "sz": "0.01299", + "side": "B", + "time": 1761014116983, + "startPosition": "-534.65483", + "dir": "Close Short", + "closedPnl": "42.409752", + "hash": "0xd9f0b8fec1fe51a3db6a042de26d2a0204fd00e45cf170757db9645180f22b8e", + "oid": 207746660384, + "crossed": true, + "fee": "0.29874", + "tid": 1056939734013434, + "cloid": "0x00000000000000000000001586000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109513.0", + "sz": "0.0066", + "side": "B", + "time": 1761014116983, + "startPosition": "-534.64184", + "dir": "Close Short", + "closedPnl": "21.54768", + "hash": "0xd9f0b8fec1fe51a3db6a042de26d2a0204fd00e45cf170757db9645180f22b8e", + "oid": 207746660384, + "crossed": true, + "fee": "0.151785", + "tid": 1069657285149469, + "cloid": "0x00000000000000000000001586000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109513.0", + "sz": "0.04565", + "side": "B", + "time": 1761014116983, + "startPosition": "-534.63524", + "dir": "Close Short", + "closedPnl": "149.03812", + "hash": "0xd9f0b8fec1fe51a3db6a042de26d2a0204fd00e45cf170757db9645180f22b8e", + "oid": 207746660384, + "crossed": true, + "fee": "1.049846", + "tid": 139676921107498, + "cloid": "0x00000000000000000000001586000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109513.0", + "sz": "0.00013", + "side": "B", + "time": 1761014116983, + "startPosition": "-534.58959", + "dir": "Close Short", + "closedPnl": "0.424424", + "hash": "0xd9f0b8fec1fe51a3db6a042de26d2a0204fd00e45cf170757db9645180f22b8e", + "oid": 207746660384, + "crossed": true, + "fee": "0.002989", + "tid": 695880807555726, + "cloid": "0x00000000000000000000001586000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109513.0", + "sz": "0.04565", + "side": "B", + "time": 1761014116983, + "startPosition": "-534.58946", + "dir": "Close Short", + "closedPnl": "149.03812", + "hash": "0xd9f0b8fec1fe51a3db6a042de26d2a0204fd00e45cf170757db9645180f22b8e", + "oid": 207746660384, + "crossed": true, + "fee": "1.049846", + "tid": 233169166381393, + "cloid": "0x00000000000000000000001586000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109513.0", + "sz": "0.00011", + "side": "B", + "time": 1761014116983, + "startPosition": "-534.54381", + "dir": "Close Short", + "closedPnl": "0.359128", + "hash": "0xd9f0b8fec1fe51a3db6a042de26d2a0204fd00e45cf170757db9645180f22b8e", + "oid": 207746660384, + "crossed": true, + "fee": "0.002529", + "tid": 895312813878461, + "cloid": "0x00000000000000000000001586000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109513.0", + "sz": "0.00014", + "side": "B", + "time": 1761014116983, + "startPosition": "-534.5437", + "dir": "Close Short", + "closedPnl": "0.457072", + "hash": "0xd9f0b8fec1fe51a3db6a042de26d2a0204fd00e45cf170757db9645180f22b8e", + "oid": 207746660384, + "crossed": true, + "fee": "0.003219", + "tid": 353736165271374, + "cloid": "0x00000000000000000000001586000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109514.0", + "sz": "0.00014", + "side": "B", + "time": 1761014116983, + "startPosition": "-534.54356", + "dir": "Close Short", + "closedPnl": "0.456932", + "hash": "0xd9f0b8fec1fe51a3db6a042de26d2a0204fd00e45cf170757db9645180f22b8e", + "oid": 207746660384, + "crossed": true, + "fee": "0.003219", + "tid": 871063275768434, + "cloid": "0x00000000000000000000001586000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109514.0", + "sz": "0.00011", + "side": "B", + "time": 1761014116983, + "startPosition": "-534.54342", + "dir": "Close Short", + "closedPnl": "0.359018", + "hash": "0xd9f0b8fec1fe51a3db6a042de26d2a0204fd00e45cf170757db9645180f22b8e", + "oid": 207746660384, + "crossed": true, + "fee": "0.002529", + "tid": 941109437507684, + "cloid": "0x00000000000000000000001586000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109514.0", + "sz": "0.07104", + "side": "B", + "time": 1761014116983, + "startPosition": "-534.54331", + "dir": "Close Short", + "closedPnl": "231.860352", + "hash": "0xd9f0b8fec1fe51a3db6a042de26d2a0204fd00e45cf170757db9645180f22b8e", + "oid": 207746660384, + "crossed": true, + "fee": "1.633773", + "tid": 317868853537949, + "cloid": "0x00000000000000000000001586000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109512.0", + "sz": "0.18256", + "side": "B", + "time": 1761014127170, + "startPosition": "-534.47227", + "dir": "Close Short", + "closedPnl": "596.204448", + "hash": "0xd706c23641f3a002d880042de26da6020191001bdcf6bed47acf6d8900f779ed", + "oid": 207746730480, + "crossed": true, + "fee": "4.198427", + "tid": 264115498318253, + "cloid": "0x00000000000000000000001586000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109514.0", + "sz": "0.18256", + "side": "B", + "time": 1761014132882, + "startPosition": "-534.28971", + "dir": "Close Short", + "closedPnl": "595.839328", + "hash": "0x9a185a0d8264980b9b92042de26ded02028d00f31d67b6dd3de10560416871f6", + "oid": 207746787783, + "crossed": true, + "fee": "4.198503", + "tid": 1123045296447456, + "cloid": "0x00000000000000000000001586000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109531.0", + "sz": "0.18255", + "side": "B", + "time": 1761014135231, + "startPosition": "-534.10715", + "dir": "Close Short", + "closedPnl": "592.70334", + "hash": "0x14f7a6476b3172f01671042de26e09020616002d063491c2b8c0519a2a354cda", + "oid": 207746828223, + "crossed": true, + "fee": "4.198925", + "tid": 776143747026643, + "cloid": "0x00000000000000000000001586000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109531.0", + "sz": "0.00011", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.9246", + "dir": "Close Short", + "closedPnl": "0.357148", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00253", + "tid": 607431793601313, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109532.0", + "sz": "0.00011", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92449", + "dir": "Close Short", + "closedPnl": "0.357038", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00253", + "tid": 143650993614975, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109533.0", + "sz": "0.00011", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92438", + "dir": "Close Short", + "closedPnl": "0.356928", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00253", + "tid": 419194330257029, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109533.0", + "sz": "0.001", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92427", + "dir": "Close Short", + "closedPnl": "3.2448", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.023001", + "tid": 202709433569261, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109534.0", + "sz": "0.00014", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92327", + "dir": "Close Short", + "closedPnl": "0.454132", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00322", + "tid": 881464647243246, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109534.0", + "sz": "0.00011", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92313", + "dir": "Close Short", + "closedPnl": "0.356818", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00253", + "tid": 485299546408455, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109535.0", + "sz": "0.00011", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92302", + "dir": "Close Short", + "closedPnl": "0.356708", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00253", + "tid": 240524779547799, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109536.0", + "sz": "0.00011", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92291", + "dir": "Close Short", + "closedPnl": "0.356598", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00253", + "tid": 622789851725424, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109536.0", + "sz": "0.00022", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.9228", + "dir": "Close Short", + "closedPnl": "0.713196", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00506", + "tid": 387620650911437, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109537.0", + "sz": "0.00011", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92258", + "dir": "Close Short", + "closedPnl": "0.356488", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00253", + "tid": 941493543665851, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109538.0", + "sz": "0.00014", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92247", + "dir": "Close Short", + "closedPnl": "0.453572", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00322", + "tid": 614286412930986, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109538.0", + "sz": "0.00011", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92233", + "dir": "Close Short", + "closedPnl": "0.356378", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00253", + "tid": 1032098638830195, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109539.0", + "sz": "0.00015", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92222", + "dir": "Close Short", + "closedPnl": "0.48582", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00345", + "tid": 336809537332643, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109539.0", + "sz": "0.00011", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92207", + "dir": "Close Short", + "closedPnl": "0.356268", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00253", + "tid": 873815058577667, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109540.0", + "sz": "0.00011", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92196", + "dir": "Close Short", + "closedPnl": "0.356158", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00253", + "tid": 863658456404824, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109541.0", + "sz": "0.00011", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92185", + "dir": "Close Short", + "closedPnl": "0.356048", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00253", + "tid": 892618540700677, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109542.0", + "sz": "0.00014", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92174", + "dir": "Close Short", + "closedPnl": "0.453012", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00322", + "tid": 293068443253231, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109542.0", + "sz": "0.00011", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.9216", + "dir": "Close Short", + "closedPnl": "0.355938", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00253", + "tid": 691731926768238, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109542.0", + "sz": "0.00091", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92149", + "dir": "Close Short", + "closedPnl": "2.944578", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.020933", + "tid": 700471955919697, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109543.0", + "sz": "0.00011", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92058", + "dir": "Close Short", + "closedPnl": "0.355828", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00253", + "tid": 189183883439881, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109544.0", + "sz": "0.00011", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92047", + "dir": "Close Short", + "closedPnl": "0.355718", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00253", + "tid": 822058602356516, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109545.0", + "sz": "0.00011", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92036", + "dir": "Close Short", + "closedPnl": "0.355608", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00253", + "tid": 557038424219663, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109546.0", + "sz": "0.00011", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92025", + "dir": "Close Short", + "closedPnl": "0.355498", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00253", + "tid": 249427521783436, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109547.0", + "sz": "0.00014", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92014", + "dir": "Close Short", + "closedPnl": "0.452312", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00322", + "tid": 782414252154640, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109547.0", + "sz": "0.00011", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.92", + "dir": "Close Short", + "closedPnl": "0.355388", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.00253", + "tid": 571571234573599, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109547.0", + "sz": "0.00127", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.91989", + "dir": "Close Short", + "closedPnl": "4.103116", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "0.029216", + "tid": 1122331946997255, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109547.0", + "sz": "0.17653", + "side": "B", + "time": 1761014140089, + "startPosition": "-533.91862", + "dir": "Close Short", + "closedPnl": "570.333124", + "hash": "0x1113d054a7bb6cc2128d042de26e42021841003a42be8b94b4dc7ba766bf46ac", + "oid": 207746903592, + "crossed": true, + "fee": "4.061049", + "tid": 10869294978627, + "cloid": "0x00000000000000000000001586000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109547.0", + "sz": "0.006", + "side": "B", + "time": 1761014142784, + "startPosition": "-533.74209", + "dir": "Close Short", + "closedPnl": "19.3848", + "hash": "0xd688dc73084a6ea9d802042de26e64020a080058a34d8d7b7a5187c5c74e4894", + "oid": 207746950650, + "crossed": true, + "fee": "0.138029", + "tid": 282544485292432, + "cloid": "0x00000000000000000000001586000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109548.0", + "sz": "0.00011", + "side": "B", + "time": 1761014142784, + "startPosition": "-533.73609", + "dir": "Close Short", + "closedPnl": "0.355278", + "hash": "0xd688dc73084a6ea9d802042de26e64020a080058a34d8d7b7a5187c5c74e4894", + "oid": 207746950650, + "crossed": true, + "fee": "0.00253", + "tid": 1084858479956933, + "cloid": "0x00000000000000000000001586000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109550.0", + "sz": "0.00011", + "side": "B", + "time": 1761014142784, + "startPosition": "-533.73598", + "dir": "Close Short", + "closedPnl": "0.355058", + "hash": "0xd688dc73084a6ea9d802042de26e64020a080058a34d8d7b7a5187c5c74e4894", + "oid": 207746950650, + "crossed": true, + "fee": "0.00253", + "tid": 749145648599297, + "cloid": "0x00000000000000000000001586000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109551.0", + "sz": "0.00014", + "side": "B", + "time": 1761014142784, + "startPosition": "-533.73587", + "dir": "Close Short", + "closedPnl": "0.451752", + "hash": "0xd688dc73084a6ea9d802042de26e64020a080058a34d8d7b7a5187c5c74e4894", + "oid": 207746950650, + "crossed": true, + "fee": "0.00322", + "tid": 671511674179301, + "cloid": "0x00000000000000000000001586000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109551.0", + "sz": "0.00011", + "side": "B", + "time": 1761014142784, + "startPosition": "-533.73573", + "dir": "Close Short", + "closedPnl": "0.354948", + "hash": "0xd688dc73084a6ea9d802042de26e64020a080058a34d8d7b7a5187c5c74e4894", + "oid": 207746950650, + "crossed": true, + "fee": "0.00253", + "tid": 7030146831937, + "cloid": "0x00000000000000000000001586000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109552.0", + "sz": "0.00011", + "side": "B", + "time": 1761014142784, + "startPosition": "-533.73562", + "dir": "Close Short", + "closedPnl": "0.354838", + "hash": "0xd688dc73084a6ea9d802042de26e64020a080058a34d8d7b7a5187c5c74e4894", + "oid": 207746950650, + "crossed": true, + "fee": "0.00253", + "tid": 891445056101461, + "cloid": "0x00000000000000000000001586000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109552.0", + "sz": "0.00029", + "side": "B", + "time": 1761014142784, + "startPosition": "-533.73551", + "dir": "Close Short", + "closedPnl": "0.935482", + "hash": "0xd688dc73084a6ea9d802042de26e64020a080058a34d8d7b7a5187c5c74e4894", + "oid": 207746950650, + "crossed": true, + "fee": "0.006671", + "tid": 1044775201418676, + "cloid": "0x00000000000000000000001586000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109553.0", + "sz": "0.00011", + "side": "B", + "time": 1761014142784, + "startPosition": "-533.73522", + "dir": "Close Short", + "closedPnl": "0.354728", + "hash": "0xd688dc73084a6ea9d802042de26e64020a080058a34d8d7b7a5187c5c74e4894", + "oid": 207746950650, + "crossed": true, + "fee": "0.00253", + "tid": 440740258526924, + "cloid": "0x00000000000000000000001586000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109554.0", + "sz": "0.00011", + "side": "B", + "time": 1761014142784, + "startPosition": "-533.73511", + "dir": "Close Short", + "closedPnl": "0.354618", + "hash": "0xd688dc73084a6ea9d802042de26e64020a080058a34d8d7b7a5187c5c74e4894", + "oid": 207746950650, + "crossed": true, + "fee": "0.00253", + "tid": 156934733794074, + "cloid": "0x00000000000000000000001586000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109554.0", + "sz": "0.1754", + "side": "B", + "time": 1761014142784, + "startPosition": "-533.735", + "dir": "Close Short", + "closedPnl": "565.45452", + "hash": "0xd688dc73084a6ea9d802042de26e64020a080058a34d8d7b7a5187c5c74e4894", + "oid": 207746950650, + "crossed": true, + "fee": "4.035312", + "tid": 384346801053611, + "cloid": "0x00000000000000000000001586000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109568.0", + "sz": "0.18248", + "side": "B", + "time": 1761014149077, + "startPosition": "-533.5596", + "dir": "Close Short", + "closedPnl": "585.724304", + "hash": "0xc6e46eb83a7936d9c85e042de26eb90203ba009dd57c55ab6aad1a0af97d10c4", + "oid": 207747035592, + "crossed": true, + "fee": "4.198733", + "tid": 235769575793949, + "cloid": "0x00000000000000000000001586000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109573.0", + "sz": "0.18246", + "side": "B", + "time": 1761014151025, + "startPosition": "-533.37712", + "dir": "Close Short", + "closedPnl": "584.747808", + "hash": "0x0e855caf459aa13c0fff042de26ed40205750094e09dc00eb24e0802049e7b26", + "oid": 207747067452, + "crossed": true, + "fee": "4.198464", + "tid": 15855882078594, + "cloid": "0x00000000000000000000001586000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109573.0", + "sz": "0.18246", + "side": "B", + "time": 1761014152227, + "startPosition": "-533.19466", + "dir": "Close Short", + "closedPnl": "584.747808", + "hash": "0xb64378c77b6242b5b7bd042de26ee50201c500ad166561875a0c241a3a661ca0", + "oid": 207747079139, + "crossed": true, + "fee": "4.198464", + "tid": 369506329319209, + "cloid": "0x00000000000000000000001586000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109573.0", + "sz": "0.03733", + "side": "B", + "time": 1761014153448, + "startPosition": "-533.0122", + "dir": "Close Short", + "closedPnl": "119.635184", + "hash": "0xa13a72174de4e682a2b4042de26ef702015300fce8e8055445031d6a0ce8c06d", + "oid": 207747085310, + "crossed": true, + "fee": "0.858975", + "tid": 62910490539715, + "cloid": "0x00000000000000000000001586000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109573.0", + "sz": "0.14514", + "side": "B", + "time": 1761014153448, + "startPosition": "-532.97487", + "dir": "Close Short", + "closedPnl": "465.144672", + "hash": "0xa13a72174de4e682a2b4042de26ef702015300fce8e8055445031d6a0ce8c06d", + "oid": 207747085310, + "crossed": true, + "fee": "3.339719", + "tid": 1097326148595255, + "cloid": "0x00000000000000000000001586000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109573.0", + "sz": "0.05209", + "side": "B", + "time": 1761014154747, + "startPosition": "-532.82973", + "dir": "Close Short", + "closedPnl": "166.938032", + "hash": "0x14b4c35e7a3ccbe0162e042de26f070203100044153feab2b87d6eb13930a5ca", + "oid": 207747096256, + "crossed": true, + "fee": "1.198608", + "tid": 1017912352185546, + "cloid": "0x00000000000000000000001586000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109573.0", + "sz": "0.13037", + "side": "B", + "time": 1761014154747, + "startPosition": "-532.77764", + "dir": "Close Short", + "closedPnl": "417.809776", + "hash": "0x14b4c35e7a3ccbe0162e042de26f070203100044153feab2b87d6eb13930a5ca", + "oid": 207747096256, + "crossed": true, + "fee": "2.999856", + "tid": 456525249959925, + "cloid": "0x00000000000000000000001586000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109573.0", + "sz": "0.18247", + "side": "B", + "time": 1761014155938, + "startPosition": "-532.64727", + "dir": "Close Short", + "closedPnl": "584.779856", + "hash": "0x9bfeaf45cff9e8ec9d78042de26f16020241002b6afd07be3fc75a988efdc2d7", + "oid": 207747108457, + "crossed": true, + "fee": "4.198694", + "tid": 791615746339587, + "cloid": "0x00000000000000000000001586000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109566.0", + "sz": "0.13364", + "side": "B", + "time": 1761014157147, + "startPosition": "-532.4648", + "dir": "Close Short", + "closedPnl": "429.224952", + "hash": "0x7c5b216666db2a457dd4042de26f25020554004c01de49172023ccb925df0430", + "oid": 207747125499, + "crossed": true, + "fee": "3.074904", + "tid": 535418506480720, + "cloid": "0x00000000000000000000001586000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109566.0", + "sz": "0.04885", + "side": "B", + "time": 1761014157147, + "startPosition": "-532.33116", + "dir": "Close Short", + "closedPnl": "156.89643", + "hash": "0x7c5b216666db2a457dd4042de26f25020554004c01de49172023ccb925df0430", + "oid": 207747125499, + "crossed": true, + "fee": "1.123982", + "tid": 1043476757280461, + "cloid": "0x00000000000000000000001586000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109565.0", + "sz": "0.12119", + "side": "B", + "time": 1761014158354, + "startPosition": "-532.28231", + "dir": "Close Short", + "closedPnl": "389.359232", + "hash": "0x9d8fa38b29cf163e9f09042de26f3502020b0070c4c2351041584edde8c2f029", + "oid": 207747143230, + "crossed": true, + "fee": "2.788418", + "tid": 950932165023575, + "cloid": "0x00000000000000000000001586000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109565.0", + "sz": "0.0613", + "side": "B", + "time": 1761014158354, + "startPosition": "-532.16112", + "dir": "Close Short", + "closedPnl": "196.94464", + "hash": "0x9d8fa38b29cf163e9f09042de26f3502020b0070c4c2351041584edde8c2f029", + "oid": 207747143230, + "crossed": true, + "fee": "1.41043", + "tid": 738466256612052, + "cloid": "0x00000000000000000000001586000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109561.0", + "sz": "0.08208", + "side": "B", + "time": 1761014159353, + "startPosition": "-532.09982", + "dir": "Close Short", + "closedPnl": "264.034944", + "hash": "0x13f161a9feca9493156b042de26f43020315008f99cdb365b7ba0cfcbdce6e7d", + "oid": 207747155061, + "crossed": true, + "fee": "1.888481", + "tid": 203967319408208, + "cloid": "0x00000000000000000000001586000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109561.0", + "sz": "0.10041", + "side": "B", + "time": 1761014159353, + "startPosition": "-532.01774", + "dir": "Close Short", + "closedPnl": "322.998888", + "hash": "0x13f161a9feca9493156b042de26f43020315008f99cdb365b7ba0cfcbdce6e7d", + "oid": 207747155061, + "crossed": true, + "fee": "2.310214", + "tid": 320161788496454, + "cloid": "0x00000000000000000000001586000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109559.0", + "sz": "0.1125", + "side": "B", + "time": 1761014160692, + "startPosition": "-531.91733", + "dir": "Close Short", + "closedPnl": "362.115", + "hash": "0x95c3764797abd168973d042de26f56020434002d32aef03a398c219a56afab53", + "oid": 207747174407, + "crossed": true, + "fee": "2.588331", + "tid": 1088456127123269, + "cloid": "0x00000000000000000000001586000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109559.0", + "sz": "0.02755", + "side": "B", + "time": 1761014160692, + "startPosition": "-531.80483", + "dir": "Close Short", + "closedPnl": "88.67794", + "hash": "0x95c3764797abd168973d042de26f56020434002d32aef03a398c219a56afab53", + "oid": 207747174407, + "crossed": true, + "fee": "0.633853", + "tid": 505028479686524, + "cloid": "0x00000000000000000000001586000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109559.0", + "sz": "0.04245", + "side": "B", + "time": 1761014160692, + "startPosition": "-531.77728", + "dir": "Close Short", + "closedPnl": "136.63806", + "hash": "0x95c3764797abd168973d042de26f56020434002d32aef03a398c219a56afab53", + "oid": 207747174407, + "crossed": true, + "fee": "0.976663", + "tid": 357165905608125, + "cloid": "0x00000000000000000000001586000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109548.0", + "sz": "0.18252", + "side": "B", + "time": 1761014162451, + "startPosition": "-531.73483", + "dir": "Close Short", + "closedPnl": "589.503096", + "hash": "0x2836c31211fed52b29b0042de26f6d02096e00f7acf1f3fdcbff6e64d0f2af15", + "oid": 207747205309, + "crossed": true, + "fee": "4.198887", + "tid": 539202148583879, + "cloid": "0x00000000000000000000001586000084", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109528.0", + "sz": "0.06208", + "side": "B", + "time": 1761014163662, + "startPosition": "-531.55231", + "dir": "Close Short", + "closedPnl": "201.747584", + "hash": "0x9b1a89b4e07b717f9c94042de26f7c020c0b009a7b7e90513ee335079f7f4b6a", + "oid": 207747223428, + "crossed": true, + "fee": "1.427894", + "tid": 798196927646786, + "cloid": "0x00000000000000000000001586000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109528.0", + "sz": "0.12046", + "side": "B", + "time": 1761014163662, + "startPosition": "-531.49023", + "dir": "Close Short", + "closedPnl": "391.470908", + "hash": "0x9b1a89b4e07b717f9c94042de26f7c020c0b009a7b7e90513ee335079f7f4b6a", + "oid": 207747223428, + "crossed": true, + "fee": "2.770686", + "tid": 820889741020272, + "cloid": "0x00000000000000000000001586000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109528.0", + "sz": "0.18255", + "side": "B", + "time": 1761014165081, + "startPosition": "-531.36977", + "dir": "Close Short", + "closedPnl": "593.25099", + "hash": "0xe6089fd90550155ae782042de26f8d02077400bea053342c89d14b2bc453ef45", + "oid": 207747235702, + "crossed": true, + "fee": "4.19881", + "tid": 492585454283570, + "cloid": "0x00000000000000000000001586000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109517.0", + "sz": "0.18255", + "side": "B", + "time": 1761014166539, + "startPosition": "-531.18722", + "dir": "Close Short", + "closedPnl": "595.25904", + "hash": "0x6dd19c3dedbd210b6f4b042de26f9e0203d5002388b03fdd119a4790acb0faf6", + "oid": 207747256371, + "crossed": true, + "fee": "4.198388", + "tid": 423772534597704, + "cloid": "0x00000000000000000000001586000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109530.0", + "sz": "0.026", + "side": "B", + "time": 1761014167770, + "startPosition": "-531.00467", + "dir": "Close Short", + "closedPnl": "84.4428", + "hash": "0xb7c19166ed51e79eb93b042de26fab0204de004c885506705b8a3cb9ac55c189", + "oid": 207747276445, + "crossed": true, + "fee": "0.598033", + "tid": 93378376914531, + "cloid": "0x00000000000000000000001586000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109534.0", + "sz": "0.0361", + "side": "B", + "time": 1761014167770, + "startPosition": "-530.97867", + "dir": "Close Short", + "closedPnl": "117.10118", + "hash": "0xb7c19166ed51e79eb93b042de26fab0204de004c885506705b8a3cb9ac55c189", + "oid": 207747276445, + "crossed": true, + "fee": "0.830377", + "tid": 72139087299107, + "cloid": "0x00000000000000000000001586000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109534.0", + "sz": "0.12045", + "side": "B", + "time": 1761014167770, + "startPosition": "-530.94257", + "dir": "Close Short", + "closedPnl": "390.71571", + "hash": "0xb7c19166ed51e79eb93b042de26fab0204de004c885506705b8a3cb9ac55c189", + "oid": 207747276445, + "crossed": true, + "fee": "2.770607", + "tid": 712539120145911, + "cloid": "0x00000000000000000000001586000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109550.0", + "sz": "0.18252", + "side": "B", + "time": 1761014174153, + "startPosition": "-530.82212", + "dir": "Close Short", + "closedPnl": "589.138056", + "hash": "0xe6ea7c5dc3663561e864042de270010203b900435e6954338ab327b0826a0f4c", + "oid": 207747367813, + "crossed": true, + "fee": "4.198963", + "tid": 1035851696514669, + "cloid": "0x00000000000000000000001586000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109600.0", + "sz": "0.01", + "side": "B", + "time": 1761014178839, + "startPosition": "-530.6396", + "dir": "Close Short", + "closedPnl": "31.778", + "hash": "0xe00f705d00e8009ee189042de27039020a3900429beb1f7083d81bafbfebda89", + "oid": 207747468106, + "crossed": true, + "fee": "0.230159", + "tid": 684528589979280, + "cloid": "0x00000000000000000000001586000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109600.0", + "sz": "0.01373", + "side": "B", + "time": 1761014178839, + "startPosition": "-530.6296", + "dir": "Close Short", + "closedPnl": "43.631194", + "hash": "0xe00f705d00e8009ee189042de27039020a3900429beb1f7083d81bafbfebda89", + "oid": 207747468106, + "crossed": true, + "fee": "0.316009", + "tid": 328228902823341, + "cloid": "0x00000000000000000000001586000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109600.0", + "sz": "0.00014", + "side": "B", + "time": 1761014178839, + "startPosition": "-530.61587", + "dir": "Close Short", + "closedPnl": "0.444892", + "hash": "0xe00f705d00e8009ee189042de27039020a3900429beb1f7083d81bafbfebda89", + "oid": 207747468106, + "crossed": true, + "fee": "0.003222", + "tid": 1105303867687705, + "cloid": "0x00000000000000000000001586000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109600.0", + "sz": "0.15856", + "side": "B", + "time": 1761014178839, + "startPosition": "-530.61573", + "dir": "Close Short", + "closedPnl": "503.871968", + "hash": "0xe00f705d00e8009ee189042de27039020a3900429beb1f7083d81bafbfebda89", + "oid": 207747468106, + "crossed": true, + "fee": "3.649416", + "tid": 1084062514136146, + "cloid": "0x00000000000000000000001586000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109598.0", + "sz": "0.04671", + "side": "B", + "time": 1761014180647, + "startPosition": "-530.45717", + "dir": "Close Short", + "closedPnl": "148.528458", + "hash": "0x04fa26a98d1657980673042de2704d020590008f2819766aa8c2d1fc4c1a3182", + "oid": 207747497989, + "crossed": true, + "fee": "1.075057", + "tid": 398974683271920, + "cloid": "0x00000000000000000000001586000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109598.0", + "sz": "0.05473", + "side": "B", + "time": 1761014180647, + "startPosition": "-530.41046", + "dir": "Close Short", + "closedPnl": "174.030454", + "hash": "0x04fa26a98d1657980673042de2704d020590008f2819766aa8c2d1fc4c1a3182", + "oid": 207747497989, + "crossed": true, + "fee": "1.259642", + "tid": 401025822474095, + "cloid": "0x00000000000000000000001586000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109598.0", + "sz": "0.081", + "side": "B", + "time": 1761014180647, + "startPosition": "-530.35573", + "dir": "Close Short", + "closedPnl": "257.5638", + "hash": "0x04fa26a98d1657980673042de2704d020590008f2819766aa8c2d1fc4c1a3182", + "oid": 207747497989, + "crossed": true, + "fee": "1.864261", + "tid": 72341987488256, + "cloid": "0x00000000000000000000001586000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109605.0", + "sz": "0.00014", + "side": "B", + "time": 1761014182969, + "startPosition": "-530.27473", + "dir": "Close Short", + "closedPnl": "0.444192", + "hash": "0x47c135580f270b45493a042de270690203cd003daa2a2a17eb89e0aace2ae52f", + "oid": 207747514146, + "crossed": true, + "fee": "0.003222", + "tid": 619008640925206, + "cloid": "0x00000000000000000000001586000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109605.0", + "sz": "0.00011", + "side": "B", + "time": 1761014182969, + "startPosition": "-530.27459", + "dir": "Close Short", + "closedPnl": "0.349008", + "hash": "0x47c135580f270b45493a042de270690203cd003daa2a2a17eb89e0aace2ae52f", + "oid": 207747514146, + "crossed": true, + "fee": "0.002531", + "tid": 491622713390545, + "cloid": "0x00000000000000000000001586000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109605.0", + "sz": "0.13681", + "side": "B", + "time": 1761014182969, + "startPosition": "-530.27448", + "dir": "Close Short", + "closedPnl": "434.070768", + "hash": "0x47c135580f270b45493a042de270690203cd003daa2a2a17eb89e0aace2ae52f", + "oid": 207747514146, + "crossed": true, + "fee": "3.148962", + "tid": 740234400570845, + "cloid": "0x00000000000000000000001586000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109606.0", + "sz": "0.00011", + "side": "B", + "time": 1761014182969, + "startPosition": "-530.13767", + "dir": "Close Short", + "closedPnl": "0.348898", + "hash": "0x47c135580f270b45493a042de270690203cd003daa2a2a17eb89e0aace2ae52f", + "oid": 207747514146, + "crossed": true, + "fee": "0.002531", + "tid": 365721857354635, + "cloid": "0x00000000000000000000001586000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109606.0", + "sz": "0.04527", + "side": "B", + "time": 1761014182969, + "startPosition": "-530.13756", + "dir": "Close Short", + "closedPnl": "143.587386", + "hash": "0x47c135580f270b45493a042de270690203cd003daa2a2a17eb89e0aace2ae52f", + "oid": 207747514146, + "crossed": true, + "fee": "1.041991", + "tid": 342459302817717, + "cloid": "0x00000000000000000000001586000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109602.0", + "sz": "0.18241", + "side": "B", + "time": 1761014189813, + "startPosition": "-530.09229", + "dir": "Close Short", + "closedPnl": "579.297678", + "hash": "0x835da2fd103e18f184d7042de270b902037600e2ab3137c327264e4fcf31f2dc", + "oid": 207747578110, + "crossed": true, + "fee": "4.198425", + "tid": 1019921513086336, + "cloid": "0x00000000000000000000001586000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109603.0", + "sz": "0.00011", + "side": "B", + "time": 1761014191281, + "startPosition": "-529.90988", + "dir": "Close Short", + "closedPnl": "0.349228", + "hash": "0x90a3a2fe0881925d921d042de270cf02055500e3a384b12f346c4e50c7856c48", + "oid": 207747603737, + "crossed": true, + "fee": "0.002531", + "tid": 441477809587062, + "cloid": "0x00000000000000000000001586000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109604.0", + "sz": "0.00011", + "side": "B", + "time": 1761014191281, + "startPosition": "-529.90977", + "dir": "Close Short", + "closedPnl": "0.349118", + "hash": "0x90a3a2fe0881925d921d042de270cf02055500e3a384b12f346c4e50c7856c48", + "oid": 207747603737, + "crossed": true, + "fee": "0.002531", + "tid": 9393911327739, + "cloid": "0x00000000000000000000001586000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109605.0", + "sz": "0.00011", + "side": "B", + "time": 1761014191281, + "startPosition": "-529.90966", + "dir": "Close Short", + "closedPnl": "0.349008", + "hash": "0x90a3a2fe0881925d921d042de270cf02055500e3a384b12f346c4e50c7856c48", + "oid": 207747603737, + "crossed": true, + "fee": "0.002531", + "tid": 1077867658885287, + "cloid": "0x00000000000000000000001586000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109606.0", + "sz": "0.00011", + "side": "B", + "time": 1761014191281, + "startPosition": "-529.90955", + "dir": "Close Short", + "closedPnl": "0.348898", + "hash": "0x90a3a2fe0881925d921d042de270cf02055500e3a384b12f346c4e50c7856c48", + "oid": 207747603737, + "crossed": true, + "fee": "0.002531", + "tid": 241513513370358, + "cloid": "0x00000000000000000000001586000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109607.0", + "sz": "0.00011", + "side": "B", + "time": 1761014191281, + "startPosition": "-529.90944", + "dir": "Close Short", + "closedPnl": "0.348788", + "hash": "0x90a3a2fe0881925d921d042de270cf02055500e3a384b12f346c4e50c7856c48", + "oid": 207747603737, + "crossed": true, + "fee": "0.002531", + "tid": 951095092471401, + "cloid": "0x00000000000000000000001586000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109608.0", + "sz": "0.00011", + "side": "B", + "time": 1761014191281, + "startPosition": "-529.90933", + "dir": "Close Short", + "closedPnl": "0.348678", + "hash": "0x90a3a2fe0881925d921d042de270cf02055500e3a384b12f346c4e50c7856c48", + "oid": 207747603737, + "crossed": true, + "fee": "0.002531", + "tid": 788436156892255, + "cloid": "0x00000000000000000000001586000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109609.0", + "sz": "0.00011", + "side": "B", + "time": 1761014191281, + "startPosition": "-529.90922", + "dir": "Close Short", + "closedPnl": "0.348568", + "hash": "0x90a3a2fe0881925d921d042de270cf02055500e3a384b12f346c4e50c7856c48", + "oid": 207747603737, + "crossed": true, + "fee": "0.002531", + "tid": 816887368735503, + "cloid": "0x00000000000000000000001586000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109609.0", + "sz": "0.18164", + "side": "B", + "time": 1761014191281, + "startPosition": "-529.90911", + "dir": "Close Short", + "closedPnl": "575.580832", + "hash": "0x90a3a2fe0881925d921d042de270cf02055500e3a384b12f346c4e50c7856c48", + "oid": 207747603737, + "crossed": true, + "fee": "4.180969", + "tid": 917081227603833, + "cloid": "0x00000000000000000000001586000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109615.0", + "sz": "0.11128", + "side": "B", + "time": 1761014201494, + "startPosition": "-529.72747", + "dir": "Close Short", + "closedPnl": "351.956384", + "hash": "0x054f879c80d67b2706c9042de2715702057a00821bd999f9a91832ef3fda5511", + "oid": 207747722814, + "crossed": true, + "fee": "2.561571", + "tid": 576574539289502, + "cloid": "0x00000000000000000000001586000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109615.0", + "sz": "0.07111", + "side": "B", + "time": 1761014201494, + "startPosition": "-529.61619", + "dir": "Close Short", + "closedPnl": "224.906708", + "hash": "0x054f879c80d67b2706c9042de2715702057a00821bd999f9a91832ef3fda5511", + "oid": 207747722814, + "crossed": true, + "fee": "1.636891", + "tid": 161295766183956, + "cloid": "0x00000000000000000000001586000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109611.0", + "sz": "0.08353", + "side": "B", + "time": 1761014202723, + "startPosition": "-529.54508", + "dir": "Close Short", + "closedPnl": "264.522804", + "hash": "0x099e4333cdbc95140b17042de27167020128001968bfb3e6ad66ee868cb06efe", + "oid": 207747734416, + "crossed": true, + "fee": "1.922719", + "tid": 47803741862405, + "cloid": "0x00000000000000000000001586000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109611.0", + "sz": "0.09886", + "side": "B", + "time": 1761014202723, + "startPosition": "-529.46155", + "dir": "Close Short", + "closedPnl": "313.069848", + "hash": "0x099e4333cdbc95140b17042de27167020128001968bfb3e6ad66ee868cb06efe", + "oid": 207747734416, + "crossed": true, + "fee": "2.27559", + "tid": 859542147533222, + "cloid": "0x00000000000000000000001586000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109611.0", + "sz": "0.08588", + "side": "B", + "time": 1761014203868, + "startPosition": "-529.36269", + "dir": "Close Short", + "closedPnl": "271.964784", + "hash": "0xf49c664cd758350bf616042de2717502020c0032725b53de9865119f965c0ef6", + "oid": 207747745022, + "crossed": true, + "fee": "1.976812", + "tid": 472066601746105, + "cloid": "0x00000000000000000000001586000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109611.0", + "sz": "0.09652", + "side": "B", + "time": 1761014203868, + "startPosition": "-529.27681", + "dir": "Close Short", + "closedPnl": "305.659536", + "hash": "0xf49c664cd758350bf616042de2717502020c0032725b53de9865119f965c0ef6", + "oid": 207747745022, + "crossed": true, + "fee": "2.221727", + "tid": 1069133511810347, + "cloid": "0x00000000000000000000001586000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109610.0", + "sz": "0.06738", + "side": "B", + "time": 1761014205907, + "startPosition": "-529.18029", + "dir": "Close Short", + "closedPnl": "213.446364", + "hash": "0x015524079e3539a502ce042de2719102011e00ed39385877a51dcf5a5d39138f", + "oid": 207747765973, + "crossed": true, + "fee": "1.550959", + "tid": 972963808398302, + "cloid": "0x00000000000000000000001586000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109610.0", + "sz": "0.04316", + "side": "B", + "time": 1761014205907, + "startPosition": "-529.11291", + "dir": "Close Short", + "closedPnl": "136.722248", + "hash": "0x015524079e3539a502ce042de2719102011e00ed39385877a51dcf5a5d39138f", + "oid": 207747765973, + "crossed": true, + "fee": "0.993461", + "tid": 610809395854710, + "cloid": "0x00000000000000000000001586000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109610.0", + "sz": "0.07188", + "side": "B", + "time": 1761014205907, + "startPosition": "-529.06975", + "dir": "Close Short", + "closedPnl": "227.701464", + "hash": "0x015524079e3539a502ce042de2719102011e00ed39385877a51dcf5a5d39138f", + "oid": 207747765973, + "crossed": true, + "fee": "1.654541", + "tid": 1018067684170039, + "cloid": "0x00000000000000000000001586000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109610.0", + "sz": "0.13075", + "side": "B", + "time": 1761014206914, + "startPosition": "-528.99787", + "dir": "Close Short", + "closedPnl": "414.18985", + "hash": "0x7aae9f5baff6af2a7c28042de271a002020f00414af9cdfc1e774aae6efa8915", + "oid": 207747773650, + "crossed": true, + "fee": "3.009616", + "tid": 77476028339415, + "cloid": "0x00000000000000000000001586000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109610.0", + "sz": "0.04807", + "side": "B", + "time": 1761014206914, + "startPosition": "-528.86712", + "dir": "Close Short", + "closedPnl": "152.276146", + "hash": "0x7aae9f5baff6af2a7c28042de271a002020f00414af9cdfc1e774aae6efa8915", + "oid": 207747773650, + "crossed": true, + "fee": "1.10648", + "tid": 1024540545745693, + "cloid": "0x00000000000000000000001586000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109610.0", + "sz": "0.00361", + "side": "B", + "time": 1761014206914, + "startPosition": "-528.81905", + "dir": "Close Short", + "closedPnl": "11.435758", + "hash": "0x7aae9f5baff6af2a7c28042de271a002020f00414af9cdfc1e774aae6efa8915", + "oid": 207747773650, + "crossed": true, + "fee": "0.083095", + "tid": 1049869879594715, + "cloid": "0x00000000000000000000001586000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109501.0", + "sz": "0.13706", + "side": "B", + "time": 1761014209047, + "startPosition": "-528.81544", + "dir": "Close Short", + "closedPnl": "449.118208", + "hash": "0x18334bbb45e676a219ad042de271c002172600a0e0e99574bbfbf70e04ea508c", + "oid": 207747813967, + "crossed": true, + "fee": "3.151723", + "tid": 885249108320290, + "cloid": "0x00000000000000000000001586000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109505.0", + "sz": "0.03756", + "side": "B", + "time": 1761014209047, + "startPosition": "-528.67838", + "dir": "Close Short", + "closedPnl": "122.926368", + "hash": "0x18334bbb45e676a219ad042de271c002172600a0e0e99574bbfbf70e04ea508c", + "oid": 207747813967, + "crossed": true, + "fee": "0.863731", + "tid": 300538895075893, + "cloid": "0x00000000000000000000001586000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "109505.0", + "sz": "0.00793", + "side": "B", + "time": 1761014209047, + "startPosition": "-528.64082", + "dir": "Close Short", + "closedPnl": "25.953304", + "hash": "0x18334bbb45e676a219ad042de271c002172600a0e0e99574bbfbf70e04ea508c", + "oid": 207747813967, + "crossed": true, + "fee": "0.182358", + "tid": 73018067909563, + "cloid": "0x00000000000000000000001586000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107844.0", + "sz": "0.00011", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.63289", + "dir": "Close Short", + "closedPnl": "0.542718", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "0.002491", + "tid": 337479063705671, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107845.0", + "sz": "0.00014", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.63278", + "dir": "Close Short", + "closedPnl": "0.690592", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "0.00317", + "tid": 23049441124045, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107845.0", + "sz": "0.00011", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.63264", + "dir": "Close Short", + "closedPnl": "0.542608", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "0.002491", + "tid": 540989989340271, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107846.0", + "sz": "0.00011", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.63253", + "dir": "Close Short", + "closedPnl": "0.542498", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "0.002491", + "tid": 363101956685267, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107847.0", + "sz": "0.00011", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.63242", + "dir": "Close Short", + "closedPnl": "0.542388", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "0.002491", + "tid": 122424049111441, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107848.0", + "sz": "0.00011", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.63231", + "dir": "Close Short", + "closedPnl": "0.542278", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "0.002491", + "tid": 641943820110383, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107849.0", + "sz": "0.00014", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.6322", + "dir": "Close Short", + "closedPnl": "0.690032", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "0.00317", + "tid": 910472168180788, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107849.0", + "sz": "0.00011", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.63206", + "dir": "Close Short", + "closedPnl": "0.542168", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "0.002491", + "tid": 693510131032098, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107850.0", + "sz": "0.00011", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.63195", + "dir": "Close Short", + "closedPnl": "0.542058", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "0.002491", + "tid": 191949640478774, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107850.0", + "sz": "0.00012", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.63184", + "dir": "Close Short", + "closedPnl": "0.591336", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "0.002717", + "tid": 84317700480162, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107851.0", + "sz": "0.00011", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.63172", + "dir": "Close Short", + "closedPnl": "0.541948", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "0.002491", + "tid": 626548575351453, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107852.0", + "sz": "0.00011", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.63161", + "dir": "Close Short", + "closedPnl": "0.541838", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "0.002491", + "tid": 437039323274758, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107852.0", + "sz": "0.13903", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.6315", + "dir": "Close Short", + "closedPnl": "684.833974", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "3.148879", + "tid": 810091478525441, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107853.0", + "sz": "0.00014", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.49247", + "dir": "Close Short", + "closedPnl": "0.689472", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "0.00317", + "tid": 374628589649059, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107853.0", + "sz": "0.00011", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.49233", + "dir": "Close Short", + "closedPnl": "0.541728", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "0.002491", + "tid": 937172782852504, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107853.0", + "sz": "0.03599", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.49222", + "dir": "Close Short", + "closedPnl": "177.243552", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "0.815142", + "tid": 489272528771553, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107854.0", + "sz": "0.00002", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.45623", + "dir": "Close Short", + "closedPnl": "0.098476", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "0.000452", + "tid": 869451673756568, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107854.0", + "sz": "0.00011", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.45621", + "dir": "Close Short", + "closedPnl": "0.541618", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "0.002491", + "tid": 1099245420172360, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107854.0", + "sz": "0.00854", + "side": "B", + "time": 1761021563543, + "startPosition": "-528.4561", + "dir": "Close Short", + "closedPnl": "42.049252", + "hash": "0xaada944249e2bda8ac54042de3d7e90202d90027e4e5dc7a4ea33f9508e69793", + "oid": 207839193300, + "crossed": true, + "fee": "0.193425", + "tid": 218920509292048, + "cloid": "0x00000000000000000000001587000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107864.0", + "sz": "0.18529", + "side": "B", + "time": 1761021566320, + "startPosition": "-528.44756", + "dir": "Close Short", + "closedPnl": "910.478002", + "hash": "0xc121210b1a086ac9c29a042de3d80c02073c00f0b50b899b64e9cc5dd90c44b4", + "oid": 207839253777, + "crossed": true, + "fee": "4.197085", + "tid": 128571748413557, + "cloid": "0x00000000000000000000001587000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107882.0", + "sz": "0.10083", + "side": "B", + "time": 1761021576281, + "startPosition": "-528.26227", + "dir": "Close Short", + "closedPnl": "493.643514", + "hash": "0xb05550d5632aee45b1cf042de3d88002025a00bafe2e0d17541dfc28222ec830", + "oid": 207839395910, + "crossed": true, + "fee": "2.284325", + "tid": 312047030895149, + "cloid": "0x00000000000000000000001587000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107882.0", + "sz": "0.00423", + "side": "B", + "time": 1761021576281, + "startPosition": "-528.16144", + "dir": "Close Short", + "closedPnl": "20.709234", + "hash": "0xb05550d5632aee45b1cf042de3d88002025a00bafe2e0d17541dfc28222ec830", + "oid": 207839395910, + "crossed": true, + "fee": "0.095831", + "tid": 1061893736740079, + "cloid": "0x00000000000000000000001587000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107882.0", + "sz": "0.08024", + "side": "B", + "time": 1761021576281, + "startPosition": "-528.15721", + "dir": "Close Short", + "closedPnl": "392.838992", + "hash": "0xb05550d5632aee45b1cf042de3d88002025a00bafe2e0d17541dfc28222ec830", + "oid": 207839395910, + "crossed": true, + "fee": "1.817854", + "tid": 461765415687582, + "cloid": "0x00000000000000000000001587000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107863.0", + "sz": "0.18531", + "side": "B", + "time": 1761021577586, + "startPosition": "-528.07697", + "dir": "Close Short", + "closedPnl": "910.761588", + "hash": "0xadaee1e06bd9e9e8af28042de3d88e020b5700c606dd08ba51778d332addc3d3", + "oid": 207839425690, + "crossed": true, + "fee": "4.197499", + "tid": 1106803449692865, + "cloid": "0x00000000000000000000001587000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107855.0", + "sz": "0.02954", + "side": "B", + "time": 1761021579042, + "startPosition": "-527.89166", + "dir": "Close Short", + "closedPnl": "145.419512", + "hash": "0xde18423e2a2ff7b8df91042de3d89f02096f0023c523168a81e0ed90e923d1a3", + "oid": 207839451422, + "crossed": true, + "fee": "0.669067", + "tid": 778526939979005, + "cloid": "0x00000000000000000000001587000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107855.0", + "sz": "0.15581", + "side": "B", + "time": 1761021579042, + "startPosition": "-527.86212", + "dir": "Close Short", + "closedPnl": "767.021468", + "hash": "0xde18423e2a2ff7b8df91042de3d89f02096f0023c523168a81e0ed90e923d1a3", + "oid": 207839451422, + "crossed": true, + "fee": "3.529026", + "tid": 695807152696843, + "cloid": "0x00000000000000000000001587000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107845.0", + "sz": "0.07275", + "side": "B", + "time": 1761021581192, + "startPosition": "-527.70631", + "dir": "Close Short", + "closedPnl": "358.8612", + "hash": "0x18ce4df9ec8578551a48042de3d8ba0202be00df87889727bc96f94cab89523f", + "oid": 207839485480, + "crossed": true, + "fee": "1.647601", + "tid": 709858410569675, + "cloid": "0x00000000000000000000001587000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107845.0", + "sz": "0.1126", + "side": "B", + "time": 1761021581192, + "startPosition": "-527.63356", + "dir": "Close Short", + "closedPnl": "555.43328", + "hash": "0x18ce4df9ec8578551a48042de3d8ba0202be00df87889727bc96f94cab89523f", + "oid": 207839485480, + "crossed": true, + "fee": "2.550102", + "tid": 242561235799833, + "cloid": "0x00000000000000000000001587000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107857.0", + "sz": "0.00011", + "side": "B", + "time": 1761021584461, + "startPosition": "-527.52096", + "dir": "Close Short", + "closedPnl": "0.541288", + "hash": "0x47197674a313d27b4893042de3d8e2020647005a3e16f14deae221c76217ac65", + "oid": 207839546329, + "crossed": true, + "fee": "0.002491", + "tid": 169078587532956, + "cloid": "0x00000000000000000000001587000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107858.0", + "sz": "0.00011", + "side": "B", + "time": 1761021584461, + "startPosition": "-527.52085", + "dir": "Close Short", + "closedPnl": "0.541178", + "hash": "0x47197674a313d27b4893042de3d8e2020647005a3e16f14deae221c76217ac65", + "oid": 207839546329, + "crossed": true, + "fee": "0.002491", + "tid": 142392496824093, + "cloid": "0x00000000000000000000001587000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107859.0", + "sz": "0.00011", + "side": "B", + "time": 1761021584461, + "startPosition": "-527.52074", + "dir": "Close Short", + "closedPnl": "0.541068", + "hash": "0x47197674a313d27b4893042de3d8e2020647005a3e16f14deae221c76217ac65", + "oid": 207839546329, + "crossed": true, + "fee": "0.002491", + "tid": 994960283528289, + "cloid": "0x00000000000000000000001587000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107860.0", + "sz": "0.00011", + "side": "B", + "time": 1761021584461, + "startPosition": "-527.52063", + "dir": "Close Short", + "closedPnl": "0.540958", + "hash": "0x47197674a313d27b4893042de3d8e2020647005a3e16f14deae221c76217ac65", + "oid": 207839546329, + "crossed": true, + "fee": "0.002491", + "tid": 901444123283625, + "cloid": "0x00000000000000000000001587000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107861.0", + "sz": "0.00011", + "side": "B", + "time": 1761021584461, + "startPosition": "-527.52052", + "dir": "Close Short", + "closedPnl": "0.540848", + "hash": "0x47197674a313d27b4893042de3d8e2020647005a3e16f14deae221c76217ac65", + "oid": 207839546329, + "crossed": true, + "fee": "0.002491", + "tid": 493556722516375, + "cloid": "0x00000000000000000000001587000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107861.0", + "sz": "0.00014", + "side": "B", + "time": 1761021584461, + "startPosition": "-527.52041", + "dir": "Close Short", + "closedPnl": "0.688352", + "hash": "0x47197674a313d27b4893042de3d8e2020647005a3e16f14deae221c76217ac65", + "oid": 207839546329, + "crossed": true, + "fee": "0.003171", + "tid": 1113150804762306, + "cloid": "0x00000000000000000000001587000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107862.0", + "sz": "0.00011", + "side": "B", + "time": 1761021584461, + "startPosition": "-527.52027", + "dir": "Close Short", + "closedPnl": "0.540738", + "hash": "0x47197674a313d27b4893042de3d8e2020647005a3e16f14deae221c76217ac65", + "oid": 207839546329, + "crossed": true, + "fee": "0.002491", + "tid": 320049094299309, + "cloid": "0x00000000000000000000001587000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107862.0", + "sz": "0.18453", + "side": "B", + "time": 1761021584461, + "startPosition": "-527.52016", + "dir": "Close Short", + "closedPnl": "907.112574", + "hash": "0x47197674a313d27b4893042de3d8e2020647005a3e16f14deae221c76217ac65", + "oid": 207839546329, + "crossed": true, + "fee": "4.179792", + "tid": 335272852053839, + "cloid": "0x00000000000000000000001587000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107869.0", + "sz": "0.093", + "side": "B", + "time": 1761021588110, + "startPosition": "-527.33563", + "dir": "Close Short", + "closedPnl": "456.5184", + "hash": "0x482d78d15f84e93449a7042de3d90a0203de00b6fa880806ebf624241e88c31e", + "oid": 207839607923, + "crossed": true, + "fee": "2.106681", + "tid": 548111311927514, + "cloid": "0x00000000000000000000001587000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107869.0", + "sz": "0.00927", + "side": "B", + "time": 1761021588110, + "startPosition": "-527.24263", + "dir": "Close Short", + "closedPnl": "45.504576", + "hash": "0x482d78d15f84e93449a7042de3d90a0203de00b6fa880806ebf624241e88c31e", + "oid": 207839607923, + "crossed": true, + "fee": "0.209988", + "tid": 709178759313756, + "cloid": "0x00000000000000000000001587000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107869.0", + "sz": "0.08305", + "side": "B", + "time": 1761021588110, + "startPosition": "-527.23336", + "dir": "Close Short", + "closedPnl": "407.67584", + "hash": "0x482d78d15f84e93449a7042de3d90a0203de00b6fa880806ebf624241e88c31e", + "oid": 207839607923, + "crossed": true, + "fee": "1.881289", + "tid": 488243647144350, + "cloid": "0x00000000000000000000001587000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107869.0", + "sz": "0.1853", + "side": "B", + "time": 1761021589524, + "startPosition": "-527.15031", + "dir": "Close Short", + "closedPnl": "909.60064", + "hash": "0xad21127488ecc24fae9a042de3d919020259005a23efe12150e9bdc747e09c3a", + "oid": 207839629212, + "crossed": true, + "fee": "4.197506", + "tid": 1078673767320546, + "cloid": "0x00000000000000000000001587000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107869.0", + "sz": "0.18532", + "side": "B", + "time": 1761021593770, + "startPosition": "-526.96501", + "dir": "Close Short", + "closedPnl": "909.698816", + "hash": "0x5513d5a827a565f1568d042de3d949020235008dc2a884c3f8dc80fae6a93fdb", + "oid": 207839663025, + "crossed": true, + "fee": "4.197959", + "tid": 374605572622734, + "cloid": "0x00000000000000000000001587000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107881.0", + "sz": "0.1853", + "side": "B", + "time": 1761021596995, + "startPosition": "-526.77969", + "dir": "Close Short", + "closedPnl": "907.37704", + "hash": "0xdbeb284b8623876ddd64042de3d973020e0b00312126a63f7fb3d39e45276158", + "oid": 207839709608, + "crossed": true, + "fee": "4.197973", + "tid": 605410444436963, + "cloid": "0x00000000000000000000001587000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107882.0", + "sz": "0.00011", + "side": "B", + "time": 1761021600671, + "startPosition": "-526.59439", + "dir": "Close Short", + "closedPnl": "0.538538", + "hash": "0xc2e40803c94b023ec45d042de3d9a902077f00e9644e211066acb356884edc29", + "oid": 207839774805, + "crossed": true, + "fee": "0.002492", + "tid": 491737228975520, + "cloid": "0x00000000000000000000001587000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107882.0", + "sz": "0.00014", + "side": "B", + "time": 1761021600671, + "startPosition": "-526.59428", + "dir": "Close Short", + "closedPnl": "0.685412", + "hash": "0xc2e40803c94b023ec45d042de3d9a902077f00e9644e211066acb356884edc29", + "oid": 207839774805, + "crossed": true, + "fee": "0.003171", + "tid": 656801294234384, + "cloid": "0x00000000000000000000001587000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107883.0", + "sz": "0.00011", + "side": "B", + "time": 1761021600671, + "startPosition": "-526.59414", + "dir": "Close Short", + "closedPnl": "0.538428", + "hash": "0xc2e40803c94b023ec45d042de3d9a902077f00e9644e211066acb356884edc29", + "oid": 207839774805, + "crossed": true, + "fee": "0.002492", + "tid": 737729546450776, + "cloid": "0x00000000000000000000001587000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107884.0", + "sz": "0.00011", + "side": "B", + "time": 1761021600671, + "startPosition": "-526.59403", + "dir": "Close Short", + "closedPnl": "0.538318", + "hash": "0xc2e40803c94b023ec45d042de3d9a902077f00e9644e211066acb356884edc29", + "oid": 207839774805, + "crossed": true, + "fee": "0.002492", + "tid": 525015925103258, + "cloid": "0x00000000000000000000001587000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.00011", + "side": "B", + "time": 1761021600671, + "startPosition": "-526.59392", + "dir": "Close Short", + "closedPnl": "0.538208", + "hash": "0xc2e40803c94b023ec45d042de3d9a902077f00e9644e211066acb356884edc29", + "oid": 207839774805, + "crossed": true, + "fee": "0.002492", + "tid": 956316455811753, + "cloid": "0x00000000000000000000001587000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.03599", + "side": "B", + "time": 1761021600671, + "startPosition": "-526.59381", + "dir": "Close Short", + "closedPnl": "176.091872", + "hash": "0xc2e40803c94b023ec45d042de3d9a902077f00e9644e211066acb356884edc29", + "oid": 207839774805, + "crossed": true, + "fee": "0.815384", + "tid": 1037684532598085, + "cloid": "0x00000000000000000000001587000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107886.0", + "sz": "0.00011", + "side": "B", + "time": 1761021600671, + "startPosition": "-526.55782", + "dir": "Close Short", + "closedPnl": "0.538098", + "hash": "0xc2e40803c94b023ec45d042de3d9a902077f00e9644e211066acb356884edc29", + "oid": 207839774805, + "crossed": true, + "fee": "0.002492", + "tid": 961179556157305, + "cloid": "0x00000000000000000000001587000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107886.0", + "sz": "0.00014", + "side": "B", + "time": 1761021600671, + "startPosition": "-526.55771", + "dir": "Close Short", + "closedPnl": "0.684852", + "hash": "0xc2e40803c94b023ec45d042de3d9a902077f00e9644e211066acb356884edc29", + "oid": 207839774805, + "crossed": true, + "fee": "0.003171", + "tid": 808301125438786, + "cloid": "0x00000000000000000000001587000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107887.0", + "sz": "0.00011", + "side": "B", + "time": 1761021600671, + "startPosition": "-526.55757", + "dir": "Close Short", + "closedPnl": "0.537988", + "hash": "0xc2e40803c94b023ec45d042de3d9a902077f00e9644e211066acb356884edc29", + "oid": 207839774805, + "crossed": true, + "fee": "0.002492", + "tid": 800501797722281, + "cloid": "0x00000000000000000000001587000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107888.0", + "sz": "0.00011", + "side": "B", + "time": 1761021600671, + "startPosition": "-526.55746", + "dir": "Close Short", + "closedPnl": "0.537878", + "hash": "0xc2e40803c94b023ec45d042de3d9a902077f00e9644e211066acb356884edc29", + "oid": 207839774805, + "crossed": true, + "fee": "0.002492", + "tid": 679143273648998, + "cloid": "0x00000000000000000000001587000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107889.0", + "sz": "0.00011", + "side": "B", + "time": 1761021600671, + "startPosition": "-526.55735", + "dir": "Close Short", + "closedPnl": "0.537768", + "hash": "0xc2e40803c94b023ec45d042de3d9a902077f00e9644e211066acb356884edc29", + "oid": 207839774805, + "crossed": true, + "fee": "0.002492", + "tid": 472910114342064, + "cloid": "0x00000000000000000000001587000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107889.0", + "sz": "0.001", + "side": "B", + "time": 1761021600671, + "startPosition": "-526.55724", + "dir": "Close Short", + "closedPnl": "4.8888", + "hash": "0xc2e40803c94b023ec45d042de3d9a902077f00e9644e211066acb356884edc29", + "oid": 207839774805, + "crossed": true, + "fee": "0.022656", + "tid": 99869022433946, + "cloid": "0x00000000000000000000001587000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107889.0", + "sz": "0.14714", + "side": "B", + "time": 1761021600671, + "startPosition": "-526.55624", + "dir": "Close Short", + "closedPnl": "719.338032", + "hash": "0xc2e40803c94b023ec45d042de3d9a902077f00e9644e211066acb356884edc29", + "oid": 207839774805, + "crossed": true, + "fee": "3.333705", + "tid": 575746153723360, + "cloid": "0x00000000000000000000001587000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107895.0", + "sz": "0.18527", + "side": "B", + "time": 1761021607586, + "startPosition": "-526.4091", + "dir": "Close Short", + "closedPnl": "904.636356", + "hash": "0xecaeb46ca2eaa23aee28042de3da0d02053500523dedc10c90775fbf61ee7c25", + "oid": 207839876745, + "crossed": true, + "fee": "4.197838", + "tid": 172863200676495, + "cloid": "0x00000000000000000000001587000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107913.0", + "sz": "0.02376", + "side": "B", + "time": 1761021616919, + "startPosition": "-526.22383", + "dir": "Close Short", + "closedPnl": "115.587648", + "hash": "0x659c12adf01004f36715042de3da880208d900938b1323c50964be00af13dede", + "oid": 207839992767, + "crossed": true, + "fee": "0.538442", + "tid": 654914424726349, + "cloid": "0x00000000000000000000001587000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107914.0", + "sz": "0.00011", + "side": "B", + "time": 1761021616919, + "startPosition": "-526.20007", + "dir": "Close Short", + "closedPnl": "0.535018", + "hash": "0x659c12adf01004f36715042de3da880208d900938b1323c50964be00af13dede", + "oid": 207839992767, + "crossed": true, + "fee": "0.002492", + "tid": 174393815099238, + "cloid": "0x00000000000000000000001587000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107915.0", + "sz": "0.00014", + "side": "B", + "time": 1761021616919, + "startPosition": "-526.19996", + "dir": "Close Short", + "closedPnl": "0.680792", + "hash": "0x659c12adf01004f36715042de3da880208d900938b1323c50964be00af13dede", + "oid": 207839992767, + "crossed": true, + "fee": "0.003172", + "tid": 820063992323564, + "cloid": "0x00000000000000000000001587000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107915.0", + "sz": "0.00011", + "side": "B", + "time": 1761021616919, + "startPosition": "-526.19982", + "dir": "Close Short", + "closedPnl": "0.534908", + "hash": "0x659c12adf01004f36715042de3da880208d900938b1323c50964be00af13dede", + "oid": 207839992767, + "crossed": true, + "fee": "0.002492", + "tid": 705766334444592, + "cloid": "0x00000000000000000000001587000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107916.0", + "sz": "0.00011", + "side": "B", + "time": 1761021616919, + "startPosition": "-526.19971", + "dir": "Close Short", + "closedPnl": "0.534798", + "hash": "0x659c12adf01004f36715042de3da880208d900938b1323c50964be00af13dede", + "oid": 207839992767, + "crossed": true, + "fee": "0.002492", + "tid": 952389903789093, + "cloid": "0x00000000000000000000001587000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107917.0", + "sz": "0.00011", + "side": "B", + "time": 1761021616919, + "startPosition": "-526.1996", + "dir": "Close Short", + "closedPnl": "0.534688", + "hash": "0x659c12adf01004f36715042de3da880208d900938b1323c50964be00af13dede", + "oid": 207839992767, + "crossed": true, + "fee": "0.002492", + "tid": 693024350727740, + "cloid": "0x00000000000000000000001587000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107918.0", + "sz": "0.00011", + "side": "B", + "time": 1761021616919, + "startPosition": "-526.19949", + "dir": "Close Short", + "closedPnl": "0.534578", + "hash": "0x659c12adf01004f36715042de3da880208d900938b1323c50964be00af13dede", + "oid": 207839992767, + "crossed": true, + "fee": "0.002492", + "tid": 194036459564574, + "cloid": "0x00000000000000000000001587000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107919.0", + "sz": "0.00014", + "side": "B", + "time": 1761021616919, + "startPosition": "-526.19938", + "dir": "Close Short", + "closedPnl": "0.680232", + "hash": "0x659c12adf01004f36715042de3da880208d900938b1323c50964be00af13dede", + "oid": 207839992767, + "crossed": true, + "fee": "0.003172", + "tid": 958217373140256, + "cloid": "0x00000000000000000000001587000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107919.0", + "sz": "0.00011", + "side": "B", + "time": 1761021616919, + "startPosition": "-526.19924", + "dir": "Close Short", + "closedPnl": "0.534468", + "hash": "0x659c12adf01004f36715042de3da880208d900938b1323c50964be00af13dede", + "oid": 207839992767, + "crossed": true, + "fee": "0.002492", + "tid": 1043735692419895, + "cloid": "0x00000000000000000000001587000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107919.0", + "sz": "0.04633", + "side": "B", + "time": 1761021616919, + "startPosition": "-526.19913", + "dir": "Close Short", + "closedPnl": "225.108204", + "hash": "0x659c12adf01004f36715042de3da880208d900938b1323c50964be00af13dede", + "oid": 207839992767, + "crossed": true, + "fee": "1.049976", + "tid": 902502731854298, + "cloid": "0x00000000000000000000001587000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107920.0", + "sz": "0.00011", + "side": "B", + "time": 1761021616919, + "startPosition": "-526.1528", + "dir": "Close Short", + "closedPnl": "0.534358", + "hash": "0x659c12adf01004f36715042de3da880208d900938b1323c50964be00af13dede", + "oid": 207839992767, + "crossed": true, + "fee": "0.002492", + "tid": 832884521779004, + "cloid": "0x00000000000000000000001587000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107920.0", + "sz": "0.11413", + "side": "B", + "time": 1761021616919, + "startPosition": "-526.15269", + "dir": "Close Short", + "closedPnl": "554.420714", + "hash": "0x659c12adf01004f36715042de3da880208d900938b1323c50964be00af13dede", + "oid": 207839992767, + "crossed": true, + "fee": "2.586551", + "tid": 387558438388489, + "cloid": "0x00000000000000000000001587000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107920.0", + "sz": "0.00011", + "side": "B", + "time": 1761021620996, + "startPosition": "-526.03856", + "dir": "Close Short", + "closedPnl": "0.534358", + "hash": "0x2f00c1b025d0b3d5307a042de3dabe0209070095c0d3d2a7d2c96d02e4d48dbf", + "oid": 207840041452, + "crossed": true, + "fee": "0.002492", + "tid": 1031406419393124, + "cloid": "0x00000000000000000000001587000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107921.0", + "sz": "0.00011", + "side": "B", + "time": 1761021620996, + "startPosition": "-526.03845", + "dir": "Close Short", + "closedPnl": "0.534248", + "hash": "0x2f00c1b025d0b3d5307a042de3dabe0209070095c0d3d2a7d2c96d02e4d48dbf", + "oid": 207840041452, + "crossed": true, + "fee": "0.002492", + "tid": 167055002258321, + "cloid": "0x00000000000000000000001587000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107922.0", + "sz": "0.00011", + "side": "B", + "time": 1761021620996, + "startPosition": "-526.03834", + "dir": "Close Short", + "closedPnl": "0.534138", + "hash": "0x2f00c1b025d0b3d5307a042de3dabe0209070095c0d3d2a7d2c96d02e4d48dbf", + "oid": 207840041452, + "crossed": true, + "fee": "0.002492", + "tid": 144428536448327, + "cloid": "0x00000000000000000000001587000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107923.0", + "sz": "0.00014", + "side": "B", + "time": 1761021620996, + "startPosition": "-526.03823", + "dir": "Close Short", + "closedPnl": "0.679672", + "hash": "0x2f00c1b025d0b3d5307a042de3dabe0209070095c0d3d2a7d2c96d02e4d48dbf", + "oid": 207840041452, + "crossed": true, + "fee": "0.003172", + "tid": 1066730366085829, + "cloid": "0x00000000000000000000001587000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107923.0", + "sz": "0.00011", + "side": "B", + "time": 1761021620996, + "startPosition": "-526.03809", + "dir": "Close Short", + "closedPnl": "0.534028", + "hash": "0x2f00c1b025d0b3d5307a042de3dabe0209070095c0d3d2a7d2c96d02e4d48dbf", + "oid": 207840041452, + "crossed": true, + "fee": "0.002493", + "tid": 211605206822173, + "cloid": "0x00000000000000000000001587000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107924.0", + "sz": "0.00011", + "side": "B", + "time": 1761021620996, + "startPosition": "-526.03798", + "dir": "Close Short", + "closedPnl": "0.533918", + "hash": "0x2f00c1b025d0b3d5307a042de3dabe0209070095c0d3d2a7d2c96d02e4d48dbf", + "oid": 207840041452, + "crossed": true, + "fee": "0.002493", + "tid": 1030096066852137, + "cloid": "0x00000000000000000000001587000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107925.0", + "sz": "0.00011", + "side": "B", + "time": 1761021620996, + "startPosition": "-526.03787", + "dir": "Close Short", + "closedPnl": "0.533808", + "hash": "0x2f00c1b025d0b3d5307a042de3dabe0209070095c0d3d2a7d2c96d02e4d48dbf", + "oid": 207840041452, + "crossed": true, + "fee": "0.002493", + "tid": 181489897532648, + "cloid": "0x00000000000000000000001587000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107926.0", + "sz": "0.00011", + "side": "B", + "time": 1761021620996, + "startPosition": "-526.03776", + "dir": "Close Short", + "closedPnl": "0.533698", + "hash": "0x2f00c1b025d0b3d5307a042de3dabe0209070095c0d3d2a7d2c96d02e4d48dbf", + "oid": 207840041452, + "crossed": true, + "fee": "0.002493", + "tid": 822480772988032, + "cloid": "0x00000000000000000000001587000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107926.0", + "sz": "0.18432", + "side": "B", + "time": 1761021620996, + "startPosition": "-526.03765", + "dir": "Close Short", + "closedPnl": "894.283776", + "hash": "0x2f00c1b025d0b3d5307a042de3dabe0209070095c0d3d2a7d2c96d02e4d48dbf", + "oid": 207840041452, + "crossed": true, + "fee": "4.177513", + "tid": 263278704393018, + "cloid": "0x00000000000000000000001587000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107930.0", + "sz": "0.01271", + "side": "B", + "time": 1761021623886, + "startPosition": "-525.85333", + "dir": "Close Short", + "closedPnl": "61.615538", + "hash": "0x87d9d7d5de8184a28953042de3dade02052a00bb7984a3742ba283289d855e8d", + "oid": 207840097493, + "crossed": true, + "fee": "0.288075", + "tid": 999647615130420, + "cloid": "0x00000000000000000000001587000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107931.0", + "sz": "0.00014", + "side": "B", + "time": 1761021623886, + "startPosition": "-525.84062", + "dir": "Close Short", + "closedPnl": "0.678552", + "hash": "0x87d9d7d5de8184a28953042de3dade02052a00bb7984a3742ba283289d855e8d", + "oid": 207840097493, + "crossed": true, + "fee": "0.003173", + "tid": 638675661465630, + "cloid": "0x00000000000000000000001587000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107931.0", + "sz": "0.00011", + "side": "B", + "time": 1761021623886, + "startPosition": "-525.84048", + "dir": "Close Short", + "closedPnl": "0.533148", + "hash": "0x87d9d7d5de8184a28953042de3dade02052a00bb7984a3742ba283289d855e8d", + "oid": 207840097493, + "crossed": true, + "fee": "0.002493", + "tid": 189608781252796, + "cloid": "0x00000000000000000000001587000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107933.0", + "sz": "0.00011", + "side": "B", + "time": 1761021623886, + "startPosition": "-525.84037", + "dir": "Close Short", + "closedPnl": "0.532928", + "hash": "0x87d9d7d5de8184a28953042de3dade02052a00bb7984a3742ba283289d855e8d", + "oid": 207840097493, + "crossed": true, + "fee": "0.002493", + "tid": 10431942545307, + "cloid": "0x00000000000000000000001587000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107934.0", + "sz": "0.00011", + "side": "B", + "time": 1761021623886, + "startPosition": "-525.84026", + "dir": "Close Short", + "closedPnl": "0.532818", + "hash": "0x87d9d7d5de8184a28953042de3dade02052a00bb7984a3742ba283289d855e8d", + "oid": 207840097493, + "crossed": true, + "fee": "0.002493", + "tid": 104457661003158, + "cloid": "0x00000000000000000000001587000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107935.0", + "sz": "0.00014", + "side": "B", + "time": 1761021623886, + "startPosition": "-525.84015", + "dir": "Close Short", + "closedPnl": "0.677992", + "hash": "0x87d9d7d5de8184a28953042de3dade02052a00bb7984a3742ba283289d855e8d", + "oid": 207840097493, + "crossed": true, + "fee": "0.003173", + "tid": 372752254285070, + "cloid": "0x00000000000000000000001587000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107935.0", + "sz": "0.00011", + "side": "B", + "time": 1761021623886, + "startPosition": "-525.84001", + "dir": "Close Short", + "closedPnl": "0.532708", + "hash": "0x87d9d7d5de8184a28953042de3dade02052a00bb7984a3742ba283289d855e8d", + "oid": 207840097493, + "crossed": true, + "fee": "0.002493", + "tid": 871304353616924, + "cloid": "0x00000000000000000000001587000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107936.0", + "sz": "0.00011", + "side": "B", + "time": 1761021623886, + "startPosition": "-525.8399", + "dir": "Close Short", + "closedPnl": "0.532598", + "hash": "0x87d9d7d5de8184a28953042de3dade02052a00bb7984a3742ba283289d855e8d", + "oid": 207840097493, + "crossed": true, + "fee": "0.002493", + "tid": 306942875432019, + "cloid": "0x00000000000000000000001587000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107937.0", + "sz": "0.00011", + "side": "B", + "time": 1761021623886, + "startPosition": "-525.83979", + "dir": "Close Short", + "closedPnl": "0.532488", + "hash": "0x87d9d7d5de8184a28953042de3dade02052a00bb7984a3742ba283289d855e8d", + "oid": 207840097493, + "crossed": true, + "fee": "0.002493", + "tid": 751310941973376, + "cloid": "0x00000000000000000000001587000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107938.0", + "sz": "0.00011", + "side": "B", + "time": 1761021623886, + "startPosition": "-525.83968", + "dir": "Close Short", + "closedPnl": "0.532378", + "hash": "0x87d9d7d5de8184a28953042de3dade02052a00bb7984a3742ba283289d855e8d", + "oid": 207840097493, + "crossed": true, + "fee": "0.002493", + "tid": 128630652808985, + "cloid": "0x00000000000000000000001587000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107939.0", + "sz": "0.00014", + "side": "B", + "time": 1761021623886, + "startPosition": "-525.83957", + "dir": "Close Short", + "closedPnl": "0.677432", + "hash": "0x87d9d7d5de8184a28953042de3dade02052a00bb7984a3742ba283289d855e8d", + "oid": 207840097493, + "crossed": true, + "fee": "0.003173", + "tid": 1087799484018550, + "cloid": "0x00000000000000000000001587000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107939.0", + "sz": "0.00011", + "side": "B", + "time": 1761021623886, + "startPosition": "-525.83943", + "dir": "Close Short", + "closedPnl": "0.532268", + "hash": "0x87d9d7d5de8184a28953042de3dade02052a00bb7984a3742ba283289d855e8d", + "oid": 207840097493, + "crossed": true, + "fee": "0.002493", + "tid": 293427343005170, + "cloid": "0x00000000000000000000001587000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107940.0", + "sz": "0.00011", + "side": "B", + "time": 1761021623886, + "startPosition": "-525.83932", + "dir": "Close Short", + "closedPnl": "0.532158", + "hash": "0x87d9d7d5de8184a28953042de3dade02052a00bb7984a3742ba283289d855e8d", + "oid": 207840097493, + "crossed": true, + "fee": "0.002493", + "tid": 808308040734752, + "cloid": "0x00000000000000000000001587000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107941.0", + "sz": "0.00011", + "side": "B", + "time": 1761021623886, + "startPosition": "-525.83921", + "dir": "Close Short", + "closedPnl": "0.532048", + "hash": "0x87d9d7d5de8184a28953042de3dade02052a00bb7984a3742ba283289d855e8d", + "oid": 207840097493, + "crossed": true, + "fee": "0.002493", + "tid": 707217689165725, + "cloid": "0x00000000000000000000001587000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107942.0", + "sz": "0.00011", + "side": "B", + "time": 1761021623886, + "startPosition": "-525.8391", + "dir": "Close Short", + "closedPnl": "0.531938", + "hash": "0x87d9d7d5de8184a28953042de3dade02052a00bb7984a3742ba283289d855e8d", + "oid": 207840097493, + "crossed": true, + "fee": "0.002493", + "tid": 857527373957277, + "cloid": "0x00000000000000000000001587000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107942.0", + "sz": "0.00018", + "side": "B", + "time": 1761021623886, + "startPosition": "-525.83899", + "dir": "Close Short", + "closedPnl": "0.870444", + "hash": "0x87d9d7d5de8184a28953042de3dade02052a00bb7984a3742ba283289d855e8d", + "oid": 207840097493, + "crossed": true, + "fee": "0.00408", + "tid": 442862558386129, + "cloid": "0x00000000000000000000001587000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107942.0", + "sz": "0.17069", + "side": "B", + "time": 1761021623886, + "startPosition": "-525.83881", + "dir": "Close Short", + "closedPnl": "825.422702", + "hash": "0x87d9d7d5de8184a28953042de3dade02052a00bb7984a3742ba283289d855e8d", + "oid": 207840097493, + "crossed": true, + "fee": "3.86917", + "tid": 895476324277460, + "cloid": "0x00000000000000000000001587000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107945.0", + "sz": "0.1852", + "side": "B", + "time": 1761021630255, + "startPosition": "-525.66812", + "dir": "Close Short", + "closedPnl": "895.03456", + "hash": "0xc1c514804f74ed78c33e042de3db3902030a0065ea780c4a658dbfd30e78c763", + "oid": 207840183537, + "crossed": true, + "fee": "4.198196", + "tid": 661245516375279, + "cloid": "0x00000000000000000000001587000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107945.0", + "sz": "0.00011", + "side": "B", + "time": 1761021633754, + "startPosition": "-525.48292", + "dir": "Close Short", + "closedPnl": "0.531608", + "hash": "0xf0467cdba2fe6abaf1c0042de3db5b0208d800c13df1898d940f282e61f244a5", + "oid": 207840241531, + "crossed": true, + "fee": "0.002493", + "tid": 1015787727843574, + "cloid": "0x00000000000000000000001587000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107946.0", + "sz": "0.00011", + "side": "B", + "time": 1761021633754, + "startPosition": "-525.48281", + "dir": "Close Short", + "closedPnl": "0.531498", + "hash": "0xf0467cdba2fe6abaf1c0042de3db5b0208d800c13df1898d940f282e61f244a5", + "oid": 207840241531, + "crossed": true, + "fee": "0.002493", + "tid": 538135276213280, + "cloid": "0x00000000000000000000001587000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107947.0", + "sz": "0.00014", + "side": "B", + "time": 1761021633754, + "startPosition": "-525.4827", + "dir": "Close Short", + "closedPnl": "0.676312", + "hash": "0xf0467cdba2fe6abaf1c0042de3db5b0208d800c13df1898d940f282e61f244a5", + "oid": 207840241531, + "crossed": true, + "fee": "0.003173", + "tid": 551723661642815, + "cloid": "0x00000000000000000000001587000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107947.0", + "sz": "0.11274", + "side": "B", + "time": 1761021633754, + "startPosition": "-525.48256", + "dir": "Close Short", + "closedPnl": "544.624392", + "hash": "0xf0467cdba2fe6abaf1c0042de3db5b0208d800c13df1898d940f282e61f244a5", + "oid": 207840241531, + "crossed": true, + "fee": "2.555688", + "tid": 764615656227858, + "cloid": "0x00000000000000000000001587000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107947.0", + "sz": "0.00011", + "side": "B", + "time": 1761021633754, + "startPosition": "-525.36982", + "dir": "Close Short", + "closedPnl": "0.531388", + "hash": "0xf0467cdba2fe6abaf1c0042de3db5b0208d800c13df1898d940f282e61f244a5", + "oid": 207840241531, + "crossed": true, + "fee": "0.002493", + "tid": 675361431955709, + "cloid": "0x00000000000000000000001587000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107948.0", + "sz": "0.00011", + "side": "B", + "time": 1761021633754, + "startPosition": "-525.36971", + "dir": "Close Short", + "closedPnl": "0.531278", + "hash": "0xf0467cdba2fe6abaf1c0042de3db5b0208d800c13df1898d940f282e61f244a5", + "oid": 207840241531, + "crossed": true, + "fee": "0.002493", + "tid": 778544042019245, + "cloid": "0x00000000000000000000001587000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107949.0", + "sz": "0.00011", + "side": "B", + "time": 1761021633754, + "startPosition": "-525.3696", + "dir": "Close Short", + "closedPnl": "0.531168", + "hash": "0xf0467cdba2fe6abaf1c0042de3db5b0208d800c13df1898d940f282e61f244a5", + "oid": 207840241531, + "crossed": true, + "fee": "0.002493", + "tid": 262513013387420, + "cloid": "0x00000000000000000000001587000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107950.0", + "sz": "0.00011", + "side": "B", + "time": 1761021633754, + "startPosition": "-525.36949", + "dir": "Close Short", + "closedPnl": "0.531058", + "hash": "0xf0467cdba2fe6abaf1c0042de3db5b0208d800c13df1898d940f282e61f244a5", + "oid": 207840241531, + "crossed": true, + "fee": "0.002493", + "tid": 678089247088709, + "cloid": "0x00000000000000000000001587000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107951.0", + "sz": "0.00011", + "side": "B", + "time": 1761021633754, + "startPosition": "-525.36938", + "dir": "Close Short", + "closedPnl": "0.530948", + "hash": "0xf0467cdba2fe6abaf1c0042de3db5b0208d800c13df1898d940f282e61f244a5", + "oid": 207840241531, + "crossed": true, + "fee": "0.002493", + "tid": 87480362593204, + "cloid": "0x00000000000000000000001587000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107952.0", + "sz": "0.00014", + "side": "B", + "time": 1761021633754, + "startPosition": "-525.36927", + "dir": "Close Short", + "closedPnl": "0.675612", + "hash": "0xf0467cdba2fe6abaf1c0042de3db5b0208d800c13df1898d940f282e61f244a5", + "oid": 207840241531, + "crossed": true, + "fee": "0.003173", + "tid": 897664148668426, + "cloid": "0x00000000000000000000001587000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107952.0", + "sz": "0.00011", + "side": "B", + "time": 1761021633754, + "startPosition": "-525.36913", + "dir": "Close Short", + "closedPnl": "0.530838", + "hash": "0xf0467cdba2fe6abaf1c0042de3db5b0208d800c13df1898d940f282e61f244a5", + "oid": 207840241531, + "crossed": true, + "fee": "0.002493", + "tid": 891562464144994, + "cloid": "0x00000000000000000000001587000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107953.0", + "sz": "0.00011", + "side": "B", + "time": 1761021633754, + "startPosition": "-525.36902", + "dir": "Close Short", + "closedPnl": "0.530728", + "hash": "0xf0467cdba2fe6abaf1c0042de3db5b0208d800c13df1898d940f282e61f244a5", + "oid": 207840241531, + "crossed": true, + "fee": "0.002493", + "tid": 777725880472427, + "cloid": "0x00000000000000000000001587000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107954.0", + "sz": "0.00011", + "side": "B", + "time": 1761021633754, + "startPosition": "-525.36891", + "dir": "Close Short", + "closedPnl": "0.530618", + "hash": "0xf0467cdba2fe6abaf1c0042de3db5b0208d800c13df1898d940f282e61f244a5", + "oid": 207840241531, + "crossed": true, + "fee": "0.002493", + "tid": 882823660390980, + "cloid": "0x00000000000000000000001587000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107954.0", + "sz": "0.07107", + "side": "B", + "time": 1761021633754, + "startPosition": "-525.3688", + "dir": "Close Short", + "closedPnl": "342.827466", + "hash": "0xf0467cdba2fe6abaf1c0042de3db5b0208d800c13df1898d940f282e61f244a5", + "oid": 207840241531, + "crossed": true, + "fee": "1.611181", + "tid": 233174547377748, + "cloid": "0x00000000000000000000001587000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107954.0", + "sz": "0.18519", + "side": "B", + "time": 1761021639458, + "startPosition": "-525.29773", + "dir": "Close Short", + "closedPnl": "893.319522", + "hash": "0x85318689a09690d986ab042de3db9602035b006f3b99afab28fa31dc5f9a6ac4", + "oid": 207840318041, + "crossed": true, + "fee": "4.19832", + "tid": 951270515956400, + "cloid": "0x00000000000000000000001587000019", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107944.0", + "sz": "0.18522", + "side": "B", + "time": 1761021648164, + "startPosition": "-525.11254", + "dir": "Close Short", + "closedPnl": "895.316436", + "hash": "0xe2ea92cba6b8aaa9e464042de3dc060201dd00b141bbc97b86b33e1e65bc8494", + "oid": 207840439650, + "crossed": true, + "fee": "4.198611", + "tid": 965202510856761, + "cloid": "0x00000000000000000000001587000020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107919.0", + "sz": "0.03599", + "side": "B", + "time": 1761021650424, + "startPosition": "-524.92732", + "dir": "Close Short", + "closedPnl": "174.868212", + "hash": "0x9cb64104a401b8269e2f042de3dc1e02050200ea3f04d6f8407eec5763059211", + "oid": 207840475462, + "crossed": true, + "fee": "0.815641", + "tid": 936509999253166, + "cloid": "0x00000000000000000000001587000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107919.0", + "sz": "0.0378", + "side": "B", + "time": 1761021650424, + "startPosition": "-524.89133", + "dir": "Close Short", + "closedPnl": "183.66264", + "hash": "0x9cb64104a401b8269e2f042de3dc1e02050200ea3f04d6f8407eec5763059211", + "oid": 207840475462, + "crossed": true, + "fee": "0.856661", + "tid": 658117271727937, + "cloid": "0x00000000000000000000001587000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107919.0", + "sz": "0.11145", + "side": "B", + "time": 1761021650424, + "startPosition": "-524.85353", + "dir": "Close Short", + "closedPnl": "541.51326", + "hash": "0x9cb64104a401b8269e2f042de3dc1e02050200ea3f04d6f8407eec5763059211", + "oid": 207840475462, + "crossed": true, + "fee": "2.52579", + "tid": 706227168270040, + "cloid": "0x00000000000000000000001587000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107925.0", + "sz": "0.18523", + "side": "B", + "time": 1761021656009, + "startPosition": "-524.74208", + "dir": "Close Short", + "closedPnl": "898.884144", + "hash": "0x0b67459cfdb617d20ce1042de3dc62020601008298b936a4af2ff0efbcb9f1bc", + "oid": 207840540159, + "crossed": true, + "fee": "4.198099", + "tid": 904774080940155, + "cloid": "0x00000000000000000000001587000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107926.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55685", + "dir": "Close Short", + "closedPnl": "0.533698", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 193451192426689, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107927.0", + "sz": "0.00014", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55674", + "dir": "Close Short", + "closedPnl": "0.679112", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.003173", + "tid": 470349054367245, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107927.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.5566", + "dir": "Close Short", + "closedPnl": "0.533588", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 747930552432457, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107928.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55649", + "dir": "Close Short", + "closedPnl": "0.533478", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 131958237412010, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107929.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55638", + "dir": "Close Short", + "closedPnl": "0.533368", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 673858637025572, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107930.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55627", + "dir": "Close Short", + "closedPnl": "0.533258", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 225592065848079, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107931.0", + "sz": "0.00014", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55616", + "dir": "Close Short", + "closedPnl": "0.678552", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.003173", + "tid": 13878163895749, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107931.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55602", + "dir": "Close Short", + "closedPnl": "0.533148", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 753572010726, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107932.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55591", + "dir": "Close Short", + "closedPnl": "0.533038", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 752539298480380, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107933.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.5558", + "dir": "Close Short", + "closedPnl": "0.532928", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 149892105231094, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107934.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55569", + "dir": "Close Short", + "closedPnl": "0.532818", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 3299551406066, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107935.0", + "sz": "0.00014", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55558", + "dir": "Close Short", + "closedPnl": "0.677992", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.003173", + "tid": 501063988826400, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107935.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55544", + "dir": "Close Short", + "closedPnl": "0.532708", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 456209183146047, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107936.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55533", + "dir": "Close Short", + "closedPnl": "0.532598", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 944212425173010, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107937.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55522", + "dir": "Close Short", + "closedPnl": "0.532488", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 696652696605061, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107938.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55511", + "dir": "Close Short", + "closedPnl": "0.532378", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 1095844575913351, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107939.0", + "sz": "0.00014", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.555", + "dir": "Close Short", + "closedPnl": "0.677432", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.003173", + "tid": 117703454038243, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107939.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55486", + "dir": "Close Short", + "closedPnl": "0.532268", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 128803373668322, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107940.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55475", + "dir": "Close Short", + "closedPnl": "0.532158", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 781336342059120, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107941.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55464", + "dir": "Close Short", + "closedPnl": "0.532048", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 198767400535128, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107942.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55453", + "dir": "Close Short", + "closedPnl": "0.531938", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 11830426216454, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107943.0", + "sz": "0.00014", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55442", + "dir": "Close Short", + "closedPnl": "0.676872", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.003173", + "tid": 1064455622054244, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107943.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55428", + "dir": "Close Short", + "closedPnl": "0.531828", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 491473541724375, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107944.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55417", + "dir": "Close Short", + "closedPnl": "0.531718", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 793288615631444, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107945.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55406", + "dir": "Close Short", + "closedPnl": "0.531608", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 968767603553363, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107946.0", + "sz": "0.00014", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55395", + "dir": "Close Short", + "closedPnl": "0.676452", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.003173", + "tid": 652306519368906, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107946.0", + "sz": "0.003", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55381", + "dir": "Close Short", + "closedPnl": "14.4954", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.068005", + "tid": 318920192892608, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107946.0", + "sz": "0.0002", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55081", + "dir": "Close Short", + "closedPnl": "0.96636", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.004533", + "tid": 385451045208308, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107946.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55061", + "dir": "Close Short", + "closedPnl": "0.531498", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 881508061730298, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107947.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.5505", + "dir": "Close Short", + "closedPnl": "0.531388", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 884548109070575, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107947.0", + "sz": "0.00014", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55039", + "dir": "Close Short", + "closedPnl": "0.676312", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.003173", + "tid": 1022482067884602, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107947.0", + "sz": "0.03599", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.55025", + "dir": "Close Short", + "closedPnl": "173.860492", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.815852", + "tid": 547087805291483, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107948.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.51426", + "dir": "Close Short", + "closedPnl": "0.531278", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 385661181203916, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107948.0", + "sz": "0.00463", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.51415", + "dir": "Close Short", + "closedPnl": "22.361974", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.104957", + "tid": 367143159403724, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107949.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.50952", + "dir": "Close Short", + "closedPnl": "0.531168", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 856143778249470, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107950.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.50941", + "dir": "Close Short", + "closedPnl": "0.531058", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 1061158408137417, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107951.0", + "sz": "0.00019", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.5093", + "dir": "Close Short", + "closedPnl": "0.917092", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.004307", + "tid": 649842756730813, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107951.0", + "sz": "0.00011", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.50911", + "dir": "Close Short", + "closedPnl": "0.530948", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.002493", + "tid": 125788117020548, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107951.0", + "sz": "0.00927", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.509", + "dir": "Close Short", + "closedPnl": "44.744436", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "0.210148", + "tid": 915060065953500, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107951.0", + "sz": "0.12808", + "side": "B", + "time": 1761021658596, + "startPosition": "-524.49973", + "dir": "Close Short", + "closedPnl": "618.216544", + "hash": "0xf6c042e818026321f839042de3dc8602063a00cdb30581f49a88ee3ad7063d0c", + "oid": 207840580063, + "crossed": true, + "fee": "2.903536", + "tid": 686493015262846, + "cloid": "0x00000000000000000000001587000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107961.0", + "sz": "0.18518", + "side": "B", + "time": 1761021663791, + "startPosition": "-524.37165", + "dir": "Close Short", + "closedPnl": "891.975024", + "hash": "0x6c1d5ddc215231416d97042de3dcc40204e100c1bc5550130fe6092ee0560b2c", + "oid": 207840675214, + "crossed": true, + "fee": "4.198365", + "tid": 720014292154286, + "cloid": "0x00000000000000000000001587000024", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107964.0", + "sz": "0.18517", + "side": "B", + "time": 1761021666645, + "startPosition": "-524.18647", + "dir": "Close Short", + "closedPnl": "891.371346", + "hash": "0x3a0a7c1ccb4331dd3b84042de3dcea02029a0002664650afddd3276f8a470bc7", + "oid": 207840727984, + "crossed": true, + "fee": "4.198255", + "tid": 887584919000417, + "cloid": "0x00000000000000000000001587000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107960.0", + "sz": "0.18515", + "side": "B", + "time": 1761021668569, + "startPosition": "-524.0013", + "dir": "Close Short", + "closedPnl": "892.01567", + "hash": "0x2a820ded4948c17b2bfb042de3dcff02085100d2e44be04dce4ab940084c9b65", + "oid": 207840757989, + "crossed": true, + "fee": "4.197646", + "tid": 35031313811974, + "cloid": "0x00000000000000000000001587000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107968.0", + "sz": "0.18514", + "side": "B", + "time": 1761021678784, + "startPosition": "-523.81615", + "dir": "Close Short", + "closedPnl": "890.486372", + "hash": "0xf26adaa9e883f6ecf3e4042de3dd8f020395008f838715bf963385fca787d0d7", + "oid": 207840884379, + "crossed": true, + "fee": "4.197731", + "tid": 139153567806599, + "cloid": "0x00000000000000000000001587000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107980.0", + "sz": "0.18514", + "side": "B", + "time": 1761021681107, + "startPosition": "-523.63101", + "dir": "Close Short", + "closedPnl": "888.264692", + "hash": "0xe36ac556258e4964e4e4042de3ddad0202cf003bc0816836873370a8e482234f", + "oid": 207840918730, + "crossed": true, + "fee": "4.198197", + "tid": 483763869380981, + "cloid": "0x00000000000000000000001587000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107980.0", + "sz": "0.18513", + "side": "B", + "time": 1761021683822, + "startPosition": "-523.44587", + "dir": "Close Short", + "closedPnl": "888.216714", + "hash": "0xcf5104e771410987d0ca042de3ddcb0205d500cd0c4428597319b03a3044e372", + "oid": 207840949161, + "crossed": true, + "fee": "4.19797", + "tid": 902706998310975, + "cloid": "0x00000000000000000000001587000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107980.0", + "sz": "0.18513", + "side": "B", + "time": 1761021685034, + "startPosition": "-523.26074", + "dir": "Close Short", + "closedPnl": "888.216714", + "hash": "0xf5e5a09b870e9704f75f042de3ddd802049000812201b5d799ae4bee460270ef", + "oid": 207840960172, + "crossed": true, + "fee": "4.19797", + "tid": 360406165395877, + "cloid": "0x00000000000000000000001587000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107974.0", + "sz": "0.128", + "side": "B", + "time": 1761021687839, + "startPosition": "-523.07561", + "dir": "Close Short", + "closedPnl": "614.8864", + "hash": "0xbaa4b36aaad94c69bc1e042de3ddfe020597005045dc6b3b5e6d5ebd69dd2654", + "oid": 207840998169, + "crossed": true, + "fee": "2.902341", + "tid": 689444579264806, + "cloid": "0x00000000000000000000001587000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107974.0", + "sz": "0.05713", + "side": "B", + "time": 1761021687839, + "startPosition": "-522.94761", + "dir": "Close Short", + "closedPnl": "274.441094", + "hash": "0xbaa4b36aaad94c69bc1e042de3ddfe020597005045dc6b3b5e6d5ebd69dd2654", + "oid": 207840998169, + "crossed": true, + "fee": "1.295396", + "tid": 843194227939682, + "cloid": "0x00000000000000000000001587000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107948.0", + "sz": "0.09598", + "side": "B", + "time": 1761021689309, + "startPosition": "-522.89048", + "dir": "Close Short", + "closedPnl": "463.564204", + "hash": "0xac6863d1551c1b1eade2042de3de1002040100b6f01f39f050310f24141ff509", + "oid": 207841025453, + "crossed": true, + "fee": "2.175778", + "tid": 840820608283200, + "cloid": "0x00000000000000000000001587000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107948.0", + "sz": "0.02489", + "side": "B", + "time": 1761021689309, + "startPosition": "-522.7945", + "dir": "Close Short", + "closedPnl": "120.213722", + "hash": "0xac6863d1551c1b1eade2042de3de1002040100b6f01f39f050310f24141ff509", + "oid": 207841025453, + "crossed": true, + "fee": "0.564233", + "tid": 203169451542090, + "cloid": "0x00000000000000000000001587000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107948.0", + "sz": "0.06434", + "side": "B", + "time": 1761021689309, + "startPosition": "-522.76961", + "dir": "Close Short", + "closedPnl": "310.749332", + "hash": "0xac6863d1551c1b1eade2042de3de1002040100b6f01f39f050310f24141ff509", + "oid": 207841025453, + "crossed": true, + "fee": "1.458528", + "tid": 847356981817887, + "cloid": "0x00000000000000000000001587000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107946.0", + "sz": "0.02779", + "side": "B", + "time": 1761021691552, + "startPosition": "-522.70527", + "dir": "Close Short", + "closedPnl": "134.275722", + "hash": "0xdbc74c6ca5b0b934dd41042de3de300202fb005240b3d8067f8ff7bf64b4931f", + "oid": 207841052707, + "crossed": true, + "fee": "0.629962", + "tid": 469696385104010, + "cloid": "0x00000000000000000000001587000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107946.0", + "sz": "0.02283", + "side": "B", + "time": 1761021691552, + "startPosition": "-522.67748", + "dir": "Close Short", + "closedPnl": "110.309994", + "hash": "0xdbc74c6ca5b0b934dd41042de3de300202fb005240b3d8067f8ff7bf64b4931f", + "oid": 207841052707, + "crossed": true, + "fee": "0.517525", + "tid": 850791469954965, + "cloid": "0x00000000000000000000001587000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107946.0", + "sz": "0.13459", + "side": "B", + "time": 1761021691552, + "startPosition": "-522.65465", + "dir": "Close Short", + "closedPnl": "650.311962", + "hash": "0xdbc74c6ca5b0b934dd41042de3de300202fb005240b3d8067f8ff7bf64b4931f", + "oid": 207841052707, + "crossed": true, + "fee": "3.050974", + "tid": 929732023438913, + "cloid": "0x00000000000000000000001587000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107926.0", + "sz": "0.18523", + "side": "B", + "time": 1761021693983, + "startPosition": "-522.52006", + "dir": "Close Short", + "closedPnl": "898.698914", + "hash": "0xf6eee24736001935f868042de3de4e020c32002cd10338089ab78d99f503f320", + "oid": 207841091493, + "crossed": true, + "fee": "4.198137", + "tid": 934706569204096, + "cloid": "0x00000000000000000000001587000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107919.0", + "sz": "0.05172", + "side": "B", + "time": 1761021695361, + "startPosition": "-522.33483", + "dir": "Close Short", + "closedPnl": "251.297136", + "hash": "0x6f6b42b8b8f8c45c70e4042de3de5f020b24009e53fbe32e1333ee0b77fc9e47", + "oid": 207841113717, + "crossed": true, + "fee": "1.172129", + "tid": 802546980476328, + "cloid": "0x00000000000000000000001587000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107919.0", + "sz": "0.05631", + "side": "B", + "time": 1761021695361, + "startPosition": "-522.28311", + "dir": "Close Short", + "closedPnl": "273.599028", + "hash": "0x6f6b42b8b8f8c45c70e4042de3de5f020b24009e53fbe32e1333ee0b77fc9e47", + "oid": 207841113717, + "crossed": true, + "fee": "1.276152", + "tid": 516134934885281, + "cloid": "0x00000000000000000000001587000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107919.0", + "sz": "0.0772", + "side": "B", + "time": 1761021695361, + "startPosition": "-522.2268", + "dir": "Close Short", + "closedPnl": "375.09936", + "hash": "0x6f6b42b8b8f8c45c70e4042de3de5f020b24009e53fbe32e1333ee0b77fc9e47", + "oid": 207841113717, + "crossed": true, + "fee": "1.749582", + "tid": 366691664972507, + "cloid": "0x00000000000000000000001587000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107915.0", + "sz": "0.18523", + "side": "B", + "time": 1761021705358, + "startPosition": "-522.1496", + "dir": "Close Short", + "closedPnl": "900.736444", + "hash": "0xb0a0cffc2fbd97f1b21a042de3dee102036600e1cab0b6c354697b4eeeb171dc", + "oid": 207841226470, + "crossed": true, + "fee": "4.19771", + "tid": 97198985470164, + "cloid": "0x00000000000000000000001587000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107908.0", + "sz": "0.18527", + "side": "B", + "time": 1761021706846, + "startPosition": "-521.96437", + "dir": "Close Short", + "closedPnl": "902.227846", + "hash": "0x7e140abd585740307f8d042de3def602075700a2f35a5f0221dcb610175b1a1b", + "oid": 207841247915, + "crossed": true, + "fee": "4.198344", + "tid": 307427414563541, + "cloid": "0x00000000000000000000001587000037", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107906.0", + "sz": "0.00014", + "side": "B", + "time": 1761021710817, + "startPosition": "-521.7791", + "dir": "Close Short", + "closedPnl": "0.682052", + "hash": "0x5a5ae91f94a1fe285bd4042de3df2a02026000052fa51cfafe23947253a5d812", + "oid": 207841299753, + "crossed": true, + "fee": "0.003172", + "tid": 658166946351117, + "cloid": "0x00000000000000000000001587000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107909.0", + "sz": "0.03599", + "side": "B", + "time": 1761021710817, + "startPosition": "-521.77896", + "dir": "Close Short", + "closedPnl": "175.228112", + "hash": "0x5a5ae91f94a1fe285bd4042de3df2a02026000052fa51cfafe23947253a5d812", + "oid": 207841299753, + "crossed": true, + "fee": "0.815565", + "tid": 129796381966170, + "cloid": "0x00000000000000000000001587000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107911.0", + "sz": "0.00014", + "side": "B", + "time": 1761021710817, + "startPosition": "-521.74297", + "dir": "Close Short", + "closedPnl": "0.681352", + "hash": "0x5a5ae91f94a1fe285bd4042de3df2a02026000052fa51cfafe23947253a5d812", + "oid": 207841299753, + "crossed": true, + "fee": "0.003172", + "tid": 797427463994029, + "cloid": "0x00000000000000000000001587000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107912.0", + "sz": "0.00927", + "side": "B", + "time": 1761021710817, + "startPosition": "-521.74283", + "dir": "Close Short", + "closedPnl": "45.105966", + "hash": "0x5a5ae91f94a1fe285bd4042de3df2a02026000052fa51cfafe23947253a5d812", + "oid": 207841299753, + "crossed": true, + "fee": "0.210072", + "tid": 973893256961429, + "cloid": "0x00000000000000000000001587000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107913.0", + "sz": "0.00011", + "side": "B", + "time": 1761021710817, + "startPosition": "-521.73356", + "dir": "Close Short", + "closedPnl": "0.535128", + "hash": "0x5a5ae91f94a1fe285bd4042de3df2a02026000052fa51cfafe23947253a5d812", + "oid": 207841299753, + "crossed": true, + "fee": "0.002492", + "tid": 399318391108607, + "cloid": "0x00000000000000000000001587000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107914.0", + "sz": "0.00018", + "side": "B", + "time": 1761021710817, + "startPosition": "-521.73345", + "dir": "Close Short", + "closedPnl": "0.875484", + "hash": "0x5a5ae91f94a1fe285bd4042de3df2a02026000052fa51cfafe23947253a5d812", + "oid": 207841299753, + "crossed": true, + "fee": "0.004079", + "tid": 453473636622816, + "cloid": "0x00000000000000000000001587000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107914.0", + "sz": "0.13894", + "side": "B", + "time": 1761021710817, + "startPosition": "-521.73327", + "dir": "Close Short", + "closedPnl": "675.776372", + "hash": "0x5a5ae91f94a1fe285bd4042de3df2a02026000052fa51cfafe23947253a5d812", + "oid": 207841299753, + "crossed": true, + "fee": "3.148649", + "tid": 940310336672862, + "cloid": "0x00000000000000000000001587000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107915.0", + "sz": "0.00014", + "side": "B", + "time": 1761021710817, + "startPosition": "-521.59433", + "dir": "Close Short", + "closedPnl": "0.680792", + "hash": "0x5a5ae91f94a1fe285bd4042de3df2a02026000052fa51cfafe23947253a5d812", + "oid": 207841299753, + "crossed": true, + "fee": "0.003172", + "tid": 959285839503788, + "cloid": "0x00000000000000000000001587000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107915.0", + "sz": "0.00011", + "side": "B", + "time": 1761021710817, + "startPosition": "-521.59419", + "dir": "Close Short", + "closedPnl": "0.534908", + "hash": "0x5a5ae91f94a1fe285bd4042de3df2a02026000052fa51cfafe23947253a5d812", + "oid": 207841299753, + "crossed": true, + "fee": "0.002492", + "tid": 1111170513304224, + "cloid": "0x00000000000000000000001587000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107916.0", + "sz": "0.00011", + "side": "B", + "time": 1761021710817, + "startPosition": "-521.59408", + "dir": "Close Short", + "closedPnl": "0.534798", + "hash": "0x5a5ae91f94a1fe285bd4042de3df2a02026000052fa51cfafe23947253a5d812", + "oid": 207841299753, + "crossed": true, + "fee": "0.002492", + "tid": 690762620961784, + "cloid": "0x00000000000000000000001587000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107916.0", + "sz": "0.00015", + "side": "B", + "time": 1761021710817, + "startPosition": "-521.59397", + "dir": "Close Short", + "closedPnl": "0.72927", + "hash": "0x5a5ae91f94a1fe285bd4042de3df2a02026000052fa51cfafe23947253a5d812", + "oid": 207841299753, + "crossed": true, + "fee": "0.003399", + "tid": 1123153044135345, + "cloid": "0x00000000000000000000001587000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107897.0", + "sz": "0.04081", + "side": "B", + "time": 1761021712965, + "startPosition": "-521.59382", + "dir": "Close Short", + "closedPnl": "199.185448", + "hash": "0xdd920c1e0d0e71c1df0b042de3df440207d40003a8019093815ab770cc024bac", + "oid": 207841341180, + "crossed": true, + "fee": "0.924688", + "tid": 897624048963806, + "cloid": "0x00000000000000000000001587000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107897.0", + "sz": "0.04081", + "side": "B", + "time": 1761021712965, + "startPosition": "-521.55301", + "dir": "Close Short", + "closedPnl": "199.185448", + "hash": "0xdd920c1e0d0e71c1df0b042de3df440207d40003a8019093815ab770cc024bac", + "oid": 207841341180, + "crossed": true, + "fee": "0.924688", + "tid": 1012186373939097, + "cloid": "0x00000000000000000000001587000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107897.0", + "sz": "0.04487", + "side": "B", + "time": 1761021712965, + "startPosition": "-521.5122", + "dir": "Close Short", + "closedPnl": "219.001496", + "hash": "0xdd920c1e0d0e71c1df0b042de3df440207d40003a8019093815ab770cc024bac", + "oid": 207841341180, + "crossed": true, + "fee": "1.016681", + "tid": 413178842291755, + "cloid": "0x00000000000000000000001587000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107897.0", + "sz": "0.04081", + "side": "B", + "time": 1761021712965, + "startPosition": "-521.46733", + "dir": "Close Short", + "closedPnl": "199.185448", + "hash": "0xdd920c1e0d0e71c1df0b042de3df440207d40003a8019093815ab770cc024bac", + "oid": 207841341180, + "crossed": true, + "fee": "0.924688", + "tid": 26206537513149, + "cloid": "0x00000000000000000000001587000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107897.0", + "sz": "0.01796", + "side": "B", + "time": 1761021712965, + "startPosition": "-521.42652", + "dir": "Close Short", + "closedPnl": "87.659168", + "hash": "0xdd920c1e0d0e71c1df0b042de3df440207d40003a8019093815ab770cc024bac", + "oid": 207841341180, + "crossed": true, + "fee": "0.406944", + "tid": 369480849405088, + "cloid": "0x00000000000000000000001587000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107889.0", + "sz": "0.10102", + "side": "B", + "time": 1761021714354, + "startPosition": "-521.40856", + "dir": "Close Short", + "closedPnl": "493.866576", + "hash": "0x497a49263cdfa08b4af4042de3df550204c4000bd7d2bf5ded42f478fbd37a75", + "oid": 207841365607, + "crossed": true, + "fee": "2.288778", + "tid": 197431104738637, + "cloid": "0x00000000000000000000001587000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107889.0", + "sz": "0.08427", + "side": "B", + "time": 1761021714354, + "startPosition": "-521.30754", + "dir": "Close Short", + "closedPnl": "411.979176", + "hash": "0x497a49263cdfa08b4af4042de3df550204c4000bd7d2bf5ded42f478fbd37a75", + "oid": 207841365607, + "crossed": true, + "fee": "1.909279", + "tid": 347514344780556, + "cloid": "0x00000000000000000000001587000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107889.0", + "sz": "0.18529", + "side": "B", + "time": 1761021721152, + "startPosition": "-521.22327", + "dir": "Close Short", + "closedPnl": "905.845752", + "hash": "0xa37b6808f2cdcdc5a4f5042de3dfb601d6007fee8dc0ec974744135bb1c1a7b0", + "oid": 207841451606, + "crossed": true, + "fee": "4.198058", + "tid": 26484957945657, + "cloid": "0x00000000000000000000001587000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.02747", + "side": "B", + "time": 1761021722579, + "startPosition": "-521.03798", + "dir": "Close Short", + "closedPnl": "134.405216", + "hash": "0xc30c420ab73b6054c485042de3dfc902101600f0523e7f2666d4ed5d763f3a3f", + "oid": 207841479582, + "crossed": true, + "fee": "0.622356", + "tid": 990052578244930, + "cloid": "0x00000000000000000000001587000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.15783", + "side": "B", + "time": 1761021722579, + "startPosition": "-521.01051", + "dir": "Close Short", + "closedPnl": "772.230624", + "hash": "0xc30c420ab73b6054c485042de3dfc902101600f0523e7f2666d4ed5d763f3a3f", + "oid": 207841479582, + "crossed": true, + "fee": "3.575772", + "tid": 705132232804788, + "cloid": "0x00000000000000000000001587000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.04119", + "side": "B", + "time": 1761021724202, + "startPosition": "-520.85268", + "dir": "Close Short", + "closedPnl": "201.534432", + "hash": "0xe8e4c8f4d497365bea5e042de3dfde02053300da6f9a552d8cad7447939b1046", + "oid": 207841504447, + "crossed": true, + "fee": "0.933194", + "tid": 335360271083449, + "cloid": "0x00000000000000000000001587000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.01644", + "side": "B", + "time": 1761021724202, + "startPosition": "-520.81149", + "dir": "Close Short", + "closedPnl": "80.437632", + "hash": "0xe8e4c8f4d497365bea5e042de3dfde02053300da6f9a552d8cad7447939b1046", + "oid": 207841504447, + "crossed": true, + "fee": "0.372462", + "tid": 229712266164361, + "cloid": "0x00000000000000000000001587000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.02907", + "side": "B", + "time": 1761021724202, + "startPosition": "-520.79505", + "dir": "Close Short", + "closedPnl": "142.233696", + "hash": "0xe8e4c8f4d497365bea5e042de3dfde02053300da6f9a552d8cad7447939b1046", + "oid": 207841504447, + "crossed": true, + "fee": "0.658605", + "tid": 505295399599680, + "cloid": "0x00000000000000000000001587000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.09861", + "side": "B", + "time": 1761021724202, + "startPosition": "-520.76598", + "dir": "Close Short", + "closedPnl": "482.479008", + "hash": "0xe8e4c8f4d497365bea5e042de3dfde02053300da6f9a552d8cad7447939b1046", + "oid": 207841504447, + "crossed": true, + "fee": "2.234093", + "tid": 790526212823132, + "cloid": "0x00000000000000000000001587000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107888.0", + "sz": "0.1853", + "side": "B", + "time": 1761021726664, + "startPosition": "-520.66737", + "dir": "Close Short", + "closedPnl": "906.07994", + "hash": "0x23934589f1816458250d042de3dffd0205ff006f8c84832ac75bf0dcb0853e42", + "oid": 207841539775, + "crossed": true, + "fee": "4.198245", + "tid": 397220468806597, + "cloid": "0x00000000000000000000001587000044", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107897.0", + "sz": "0.00011", + "side": "B", + "time": 1761021737489, + "startPosition": "-520.48207", + "dir": "Close Short", + "closedPnl": "0.536888", + "hash": "0xe69fd0d5739926bbe819042de3e0830208aa00bb0e9c458d8a687c28329d00a6", + "oid": 207841671592, + "crossed": true, + "fee": "0.002492", + "tid": 309893907703743, + "cloid": "0x00000000000000000000001587000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107898.0", + "sz": "0.00014", + "side": "B", + "time": 1761021737489, + "startPosition": "-520.48196", + "dir": "Close Short", + "closedPnl": "0.683172", + "hash": "0xe69fd0d5739926bbe819042de3e0830208aa00bb0e9c458d8a687c28329d00a6", + "oid": 207841671592, + "crossed": true, + "fee": "0.003172", + "tid": 1099563091186194, + "cloid": "0x00000000000000000000001587000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107898.0", + "sz": "0.00011", + "side": "B", + "time": 1761021737489, + "startPosition": "-520.48182", + "dir": "Close Short", + "closedPnl": "0.536778", + "hash": "0xe69fd0d5739926bbe819042de3e0830208aa00bb0e9c458d8a687c28329d00a6", + "oid": 207841671592, + "crossed": true, + "fee": "0.002492", + "tid": 819570627836912, + "cloid": "0x00000000000000000000001587000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107899.0", + "sz": "0.00011", + "side": "B", + "time": 1761021737489, + "startPosition": "-520.48171", + "dir": "Close Short", + "closedPnl": "0.536668", + "hash": "0xe69fd0d5739926bbe819042de3e0830208aa00bb0e9c458d8a687c28329d00a6", + "oid": 207841671592, + "crossed": true, + "fee": "0.002492", + "tid": 93540405312207, + "cloid": "0x00000000000000000000001587000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107899.0", + "sz": "0.18483", + "side": "B", + "time": 1761021737489, + "startPosition": "-520.4816", + "dir": "Close Short", + "closedPnl": "901.748604", + "hash": "0xe69fd0d5739926bbe819042de3e0830208aa00bb0e9c458d8a687c28329d00a6", + "oid": 207841671592, + "crossed": true, + "fee": "4.188024", + "tid": 281315203609659, + "cloid": "0x00000000000000000000001587000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107904.0", + "sz": "0.00011", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.29677", + "dir": "Close Short", + "closedPnl": "0.536118", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.002492", + "tid": 936934104670619, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107905.0", + "sz": "0.00011", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.29666", + "dir": "Close Short", + "closedPnl": "0.536008", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.002492", + "tid": 607995028945613, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107906.0", + "sz": "0.00011", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.29655", + "dir": "Close Short", + "closedPnl": "0.535898", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.002492", + "tid": 42857642294797, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107906.0", + "sz": "0.00014", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.29644", + "dir": "Close Short", + "closedPnl": "0.682052", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.003172", + "tid": 924975014435192, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107907.0", + "sz": "0.00011", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.2963", + "dir": "Close Short", + "closedPnl": "0.535788", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.002492", + "tid": 400611870197892, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107908.0", + "sz": "0.00011", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.29619", + "dir": "Close Short", + "closedPnl": "0.535678", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.002492", + "tid": 1119877233600207, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107909.0", + "sz": "0.00011", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.29608", + "dir": "Close Short", + "closedPnl": "0.535568", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.002492", + "tid": 500414652136254, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107910.0", + "sz": "0.00011", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.29597", + "dir": "Close Short", + "closedPnl": "0.535458", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.002492", + "tid": 1991638422817, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107911.0", + "sz": "0.00011", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.29586", + "dir": "Close Short", + "closedPnl": "0.535348", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.002492", + "tid": 991250312409584, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107911.0", + "sz": "0.00014", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.29575", + "dir": "Close Short", + "closedPnl": "0.681352", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.003172", + "tid": 841873730946875, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107911.0", + "sz": "0.00018", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.29561", + "dir": "Close Short", + "closedPnl": "0.876024", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.004079", + "tid": 421536375645061, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107912.0", + "sz": "0.00011", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.29543", + "dir": "Close Short", + "closedPnl": "0.535238", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.002492", + "tid": 567266078553098, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107913.0", + "sz": "0.00011", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.29532", + "dir": "Close Short", + "closedPnl": "0.535128", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.002492", + "tid": 638213923632133, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107914.0", + "sz": "0.00011", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.29521", + "dir": "Close Short", + "closedPnl": "0.535018", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.002492", + "tid": 1059096134090557, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107915.0", + "sz": "0.00014", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.2951", + "dir": "Close Short", + "closedPnl": "0.680792", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.003172", + "tid": 654654229591055, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107915.0", + "sz": "0.00011", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.29496", + "dir": "Close Short", + "closedPnl": "0.534908", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.002492", + "tid": 907835279112805, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107916.0", + "sz": "0.00011", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.29485", + "dir": "Close Short", + "closedPnl": "0.534798", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.002492", + "tid": 458195617516339, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107916.0", + "sz": "0.00927", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.29474", + "dir": "Close Short", + "closedPnl": "45.068886", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.21008", + "tid": 1080649758462482, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107917.0", + "sz": "0.00011", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.28547", + "dir": "Close Short", + "closedPnl": "0.534688", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.002492", + "tid": 864094132103795, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107918.0", + "sz": "0.00011", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.28536", + "dir": "Close Short", + "closedPnl": "0.534578", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.002492", + "tid": 339851409103290, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107919.0", + "sz": "0.00014", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.28525", + "dir": "Close Short", + "closedPnl": "0.680232", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.003172", + "tid": 211901258207065, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107919.0", + "sz": "0.00011", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.28511", + "dir": "Close Short", + "closedPnl": "0.534468", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.002492", + "tid": 203259994308298, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107920.0", + "sz": "0.003", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.285", + "dir": "Close Short", + "closedPnl": "14.5734", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.067989", + "tid": 691430771312730, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107920.0", + "sz": "0.00021", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.282", + "dir": "Close Short", + "closedPnl": "1.020138", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.004759", + "tid": 623394455301270, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107920.0", + "sz": "0.02165", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.28179", + "dir": "Close Short", + "closedPnl": "105.17137", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.490658", + "tid": 555772847291042, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107920.0", + "sz": "0.00011", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.26014", + "dir": "Close Short", + "closedPnl": "0.534358", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.002492", + "tid": 932051030810468, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107921.0", + "sz": "0.00011", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.26003", + "dir": "Close Short", + "closedPnl": "0.534248", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.002492", + "tid": 654995578549963, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107921.0", + "sz": "0.00129", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.25992", + "dir": "Close Short", + "closedPnl": "6.265272", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "0.029235", + "tid": 1045676287325339, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107921.0", + "sz": "0.14711", + "side": "B", + "time": 1761021740302, + "startPosition": "-520.25863", + "dir": "Close Short", + "closedPnl": "714.483848", + "hash": "0xbc76494e4d6313f0bdf0042de3e0a80205d60033e86632c2603ef4a10c66eddb", + "oid": 207841742227, + "crossed": true, + "fee": "3.334014", + "tid": 1000003152389281, + "cloid": "0x00000000000000000000001587000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107921.0", + "sz": "0.18524", + "side": "B", + "time": 1761021742621, + "startPosition": "-520.11152", + "dir": "Close Short", + "closedPnl": "899.673632", + "hash": "0xf41cb8509984ec81f596042de3e0c3020621003634880b5497e563a35888c66c", + "oid": 207841783367, + "crossed": true, + "fee": "4.19817", + "tid": 946949458107037, + "cloid": "0x00000000000000000000001587000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107913.0", + "sz": "0.13916", + "side": "B", + "time": 1761021747100, + "startPosition": "-519.92628", + "dir": "Close Short", + "closedPnl": "676.985568", + "hash": "0x771144a72c84aa8d788b042de3e0f6020492008cc787c95f1ad9eff9eb888478", + "oid": 207841836459, + "crossed": true, + "fee": "3.153606", + "tid": 10284065951873, + "cloid": "0x00000000000000000000001587000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107913.0", + "sz": "0.01365", + "side": "B", + "time": 1761021747100, + "startPosition": "-519.78712", + "dir": "Close Short", + "closedPnl": "66.40452", + "hash": "0x771144a72c84aa8d788b042de3e0f6020492008cc787c95f1ad9eff9eb888478", + "oid": 207841836459, + "crossed": true, + "fee": "0.309332", + "tid": 600037355421598, + "cloid": "0x00000000000000000000001587000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107913.0", + "sz": "0.03244", + "side": "B", + "time": 1761021747100, + "startPosition": "-519.77347", + "dir": "Close Short", + "closedPnl": "157.814112", + "hash": "0x771144a72c84aa8d788b042de3e0f6020492008cc787c95f1ad9eff9eb888478", + "oid": 207841836459, + "crossed": true, + "fee": "0.735146", + "tid": 820822574130013, + "cloid": "0x00000000000000000000001587000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107906.0", + "sz": "0.03599", + "side": "B", + "time": 1761021748549, + "startPosition": "-519.74103", + "dir": "Close Short", + "closedPnl": "175.336082", + "hash": "0x09bb14e5e2a9b5ba0b34042de3e10702062f00cb7dacd48cad83c038a1ad8fa4", + "oid": 207841862124, + "crossed": true, + "fee": "0.815542", + "tid": 240592464484397, + "cloid": "0x00000000000000000000001587000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107911.0", + "sz": "0.14926", + "side": "B", + "time": 1761021748549, + "startPosition": "-519.70504", + "dir": "Close Short", + "closedPnl": "726.418568", + "hash": "0x09bb14e5e2a9b5ba0b34042de3e10702062f00cb7dacd48cad83c038a1ad8fa4", + "oid": 207841862124, + "crossed": true, + "fee": "3.382427", + "tid": 1019196348344937, + "cloid": "0x00000000000000000000001587000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107912.0", + "sz": "0.00016", + "side": "B", + "time": 1761021751896, + "startPosition": "-519.55578", + "dir": "Close Short", + "closedPnl": "0.778528", + "hash": "0x39a2349322d7a4833b1b042de3e13002019d0078bddac355dd6adfe5e1db7e6d", + "oid": 207841903558, + "crossed": true, + "fee": "0.003625", + "tid": 1091488498691490, + "cloid": "0x00000000000000000000001587000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107912.0", + "sz": "0.18508", + "side": "B", + "time": 1761021751896, + "startPosition": "-519.55562", + "dir": "Close Short", + "closedPnl": "900.562264", + "hash": "0x39a2349322d7a4833b1b042de3e13002019d0078bddac355dd6adfe5e1db7e6d", + "oid": 207841903558, + "crossed": true, + "fee": "4.194194", + "tid": 604113135778596, + "cloid": "0x00000000000000000000001587000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107917.0", + "sz": "0.00011", + "side": "B", + "time": 1761021762036, + "startPosition": "-519.37054", + "dir": "Close Short", + "closedPnl": "0.534688", + "hash": "0x63d27930219f6155654c042de3e1bc0204ad0015bc928027079b2482e0933b40", + "oid": 207842015938, + "crossed": true, + "fee": "0.002492", + "tid": 159872725233588, + "cloid": "0x00000000000000000000001587000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107917.0", + "sz": "0.00463", + "side": "B", + "time": 1761021762036, + "startPosition": "-519.37043", + "dir": "Close Short", + "closedPnl": "22.505504", + "hash": "0x63d27930219f6155654c042de3e1bc0204ad0015bc928027079b2482e0933b40", + "oid": 207842015938, + "crossed": true, + "fee": "0.104927", + "tid": 784521217191104, + "cloid": "0x00000000000000000000001587000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107919.0", + "sz": "0.00014", + "side": "B", + "time": 1761021762036, + "startPosition": "-519.3658", + "dir": "Close Short", + "closedPnl": "0.680232", + "hash": "0x63d27930219f6155654c042de3e1bc0204ad0015bc928027079b2482e0933b40", + "oid": 207842015938, + "crossed": true, + "fee": "0.003172", + "tid": 444182546351777, + "cloid": "0x00000000000000000000001587000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107919.0", + "sz": "0.00011", + "side": "B", + "time": 1761021762036, + "startPosition": "-519.36566", + "dir": "Close Short", + "closedPnl": "0.534468", + "hash": "0x63d27930219f6155654c042de3e1bc0204ad0015bc928027079b2482e0933b40", + "oid": 207842015938, + "crossed": true, + "fee": "0.002492", + "tid": 315429223397761, + "cloid": "0x00000000000000000000001587000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107920.0", + "sz": "0.00011", + "side": "B", + "time": 1761021762036, + "startPosition": "-519.36555", + "dir": "Close Short", + "closedPnl": "0.534358", + "hash": "0x63d27930219f6155654c042de3e1bc0204ad0015bc928027079b2482e0933b40", + "oid": 207842015938, + "crossed": true, + "fee": "0.002492", + "tid": 129680096503075, + "cloid": "0x00000000000000000000001587000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107920.0", + "sz": "0.18014", + "side": "B", + "time": 1761021762036, + "startPosition": "-519.36544", + "dir": "Close Short", + "closedPnl": "875.084092", + "hash": "0x63d27930219f6155654c042de3e1bc0204ad0015bc928027079b2482e0933b40", + "oid": 207842015938, + "crossed": true, + "fee": "4.082548", + "tid": 55558690850238, + "cloid": "0x00000000000000000000001587000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107913.0", + "sz": "0.18524", + "side": "B", + "time": 1761021765666, + "startPosition": "-519.1853", + "dir": "Close Short", + "closedPnl": "901.155552", + "hash": "0xf15f2a8d5c1dc57bf2d8042de3e1e7020a7e0072f710e44e9527d5e01b119f66", + "oid": 207842063013, + "crossed": true, + "fee": "4.197858", + "tid": 124626121393688, + "cloid": "0x00000000000000000000001587000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107906.0", + "sz": "0.04697", + "side": "B", + "time": 1761021766875, + "startPosition": "-519.00006", + "dir": "Close Short", + "closedPnl": "228.828446", + "hash": "0x7a5c443a67ceed427bd6042de3e1f6020966002002c20c141e24ef8d26c2c72d", + "oid": 207842081647, + "crossed": true, + "fee": "1.064352", + "tid": 868581419441696, + "cloid": "0x00000000000000000000001587000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107906.0", + "sz": "0.13831", + "side": "B", + "time": 1761021766875, + "startPosition": "-518.95309", + "dir": "Close Short", + "closedPnl": "673.818658", + "hash": "0x7a5c443a67ceed427bd6042de3e1f6020966002002c20c141e24ef8d26c2c72d", + "oid": 207842081647, + "crossed": true, + "fee": "3.13414", + "tid": 271882889228405, + "cloid": "0x00000000000000000000001587000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107886.0", + "sz": "0.05654", + "side": "B", + "time": 1761021768329, + "startPosition": "-518.81478", + "dir": "Close Short", + "closedPnl": "276.582372", + "hash": "0xbf727be4adce6f47c0ec042de3e20402040000ca48c18e19633b27376cc24932", + "oid": 207842106577, + "crossed": true, + "fee": "1.280973", + "tid": 775824846374355, + "cloid": "0x00000000000000000000001587000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107886.0", + "sz": "0.04251", + "side": "B", + "time": 1761021768329, + "startPosition": "-518.75824", + "dir": "Close Short", + "closedPnl": "207.950418", + "hash": "0xbf727be4adce6f47c0ec042de3e20402040000ca48c18e19633b27376cc24932", + "oid": 207842106577, + "crossed": true, + "fee": "0.963109", + "tid": 432176442225980, + "cloid": "0x00000000000000000000001587000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107886.0", + "sz": "0.02507", + "side": "B", + "time": 1761021768329, + "startPosition": "-518.71573", + "dir": "Close Short", + "closedPnl": "122.637426", + "hash": "0xbf727be4adce6f47c0ec042de3e20402040000ca48c18e19633b27376cc24932", + "oid": 207842106577, + "crossed": true, + "fee": "0.567987", + "tid": 737674731480533, + "cloid": "0x00000000000000000000001587000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107886.0", + "sz": "0.06117", + "side": "B", + "time": 1761021768329, + "startPosition": "-518.69066", + "dir": "Close Short", + "closedPnl": "299.231406", + "hash": "0xbf727be4adce6f47c0ec042de3e20402040000ca48c18e19633b27376cc24932", + "oid": 207842106577, + "crossed": true, + "fee": "1.385871", + "tid": 611302141917192, + "cloid": "0x00000000000000000000001587000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.14446", + "side": "B", + "time": 1761021772211, + "startPosition": "-518.62949", + "dir": "Close Short", + "closedPnl": "706.813888", + "hash": "0xdd7c0e053691edaadef5042de3e22f020efe00ead1950c7c8144b957f595c795", + "oid": 207842157893, + "crossed": true, + "fee": "3.272864", + "tid": 171570432361407, + "cloid": "0x00000000000000000000001587000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.04085", + "side": "B", + "time": 1761021772211, + "startPosition": "-518.48503", + "dir": "Close Short", + "closedPnl": "199.87088", + "hash": "0xdd7c0e053691edaadef5042de3e22f020efe00ead1950c7c8144b957f595c795", + "oid": 207842157893, + "crossed": true, + "fee": "0.925491", + "tid": 1084053502256266, + "cloid": "0x00000000000000000000001587000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.14501", + "side": "B", + "time": 1761021773552, + "startPosition": "-518.44418", + "dir": "Close Short", + "closedPnl": "709.504928", + "hash": "0xf775c1e430615914f8ef042de3e24002018e00c9cb6477e79b3e6d36ef6532ff", + "oid": 207842175585, + "crossed": true, + "fee": "3.285324", + "tid": 97434910603669, + "cloid": "0x00000000000000000000001587000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.0403", + "side": "B", + "time": 1761021773552, + "startPosition": "-518.29917", + "dir": "Close Short", + "closedPnl": "197.17984", + "hash": "0xf775c1e430615914f8ef042de3e24002018e00c9cb6477e79b3e6d36ef6532ff", + "oid": 207842175585, + "crossed": true, + "fee": "0.91303", + "tid": 603783241301568, + "cloid": "0x00000000000000000000001587000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107864.0", + "sz": "0.18533", + "side": "B", + "time": 1761021774819, + "startPosition": "-518.25887", + "dir": "Close Short", + "closedPnl": "910.674554", + "hash": "0xbd7c728bf71ab92cbef6042de3e24d020b300071921dd7fe61451ddeb61e9317", + "oid": 207842194328, + "crossed": true, + "fee": "4.197991", + "tid": 174717073914187, + "cloid": "0x00000000000000000000001587000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107842.0", + "sz": "0.04812", + "side": "B", + "time": 1761021776087, + "startPosition": "-518.07354", + "dir": "Close Short", + "closedPnl": "237.510696", + "hash": "0x3292bb05ad02332d340c042de3e25e0204d200eb480551ffd65b66586c060d17", + "oid": 207842211687, + "crossed": true, + "fee": "1.089764", + "tid": 470783764961603, + "cloid": "0x00000000000000000000001587000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107842.0", + "sz": "0.03812", + "side": "B", + "time": 1761021776087, + "startPosition": "-518.02542", + "dir": "Close Short", + "closedPnl": "188.152696", + "hash": "0x3292bb05ad02332d340c042de3e25e0204d200eb480551ffd65b66586c060d17", + "oid": 207842211687, + "crossed": true, + "fee": "0.863296", + "tid": 770758534679666, + "cloid": "0x00000000000000000000001587000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107842.0", + "sz": "0.09159", + "side": "B", + "time": 1761021776087, + "startPosition": "-517.9873", + "dir": "Close Short", + "closedPnl": "452.069922", + "hash": "0x3292bb05ad02332d340c042de3e25e0204d200eb480551ffd65b66586c060d17", + "oid": 207842211687, + "crossed": true, + "fee": "2.074222", + "tid": 661211128886300, + "cloid": "0x00000000000000000000001587000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107842.0", + "sz": "0.00753", + "side": "B", + "time": 1761021776087, + "startPosition": "-517.89571", + "dir": "Close Short", + "closedPnl": "37.166574", + "hash": "0x3292bb05ad02332d340c042de3e25e0204d200eb480551ffd65b66586c060d17", + "oid": 207842211687, + "crossed": true, + "fee": "0.17053", + "tid": 742598384302717, + "cloid": "0x00000000000000000000001587000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107866.0", + "sz": "0.18532", + "side": "B", + "time": 1761021778464, + "startPosition": "-517.88818", + "dir": "Close Short", + "closedPnl": "910.254776", + "hash": "0xeaf40c15ea1c0177ec6d042de3e27e02032b00fb851f20498ebcb768a91fdb62", + "oid": 207842259138, + "crossed": true, + "fee": "4.197842", + "tid": 109381829601439, + "cloid": "0x00000000000000000000001587000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107889.0", + "sz": "0.18531", + "side": "B", + "time": 1761021781709, + "startPosition": "-517.70286", + "dir": "Close Short", + "closedPnl": "905.943528", + "hash": "0xb68fc0fc0b66e989b809042de3e2a7020c7b00e1a66a085b5a586c4eca6ac374", + "oid": 207842326522, + "crossed": true, + "fee": "4.198511", + "tid": 743063516593917, + "cloid": "0x00000000000000000000001587000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.18529", + "side": "B", + "time": 1761021783876, + "startPosition": "-517.51755", + "dir": "Close Short", + "closedPnl": "906.586912", + "hash": "0x4dd66c36e4dae2994f50042de3e2c1020528001c7fde016bf19f1789a3debc83", + "oid": 207842358901, + "crossed": true, + "fee": "4.197902", + "tid": 226314257266352, + "cloid": "0x00000000000000000000001587000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107893.0", + "sz": "0.18532", + "side": "B", + "time": 1761021785229, + "startPosition": "-517.33226", + "dir": "Close Short", + "closedPnl": "905.251136", + "hash": "0xc53629870faacc0ec6af042de3e2d3020383006caaadeae068fed4d9ceaea5f9", + "oid": 207842381702, + "crossed": true, + "fee": "4.198893", + "tid": 797507937498136, + "cloid": "0x00000000000000000000001587000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107900.0", + "sz": "0.18529", + "side": "B", + "time": 1761021787968, + "startPosition": "-517.14694", + "dir": "Close Short", + "closedPnl": "903.807562", + "hash": "0x879409c5548ad34b890d042de3e2f90203c300aaef8df21d2b5cb518138ead36", + "oid": 207842427527, + "crossed": true, + "fee": "4.198486", + "tid": 927613272999369, + "cloid": "0x00000000000000000000001587000063", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107921.0", + "sz": "0.00011", + "side": "B", + "time": 1761021792467, + "startPosition": "-516.96165", + "dir": "Close Short", + "closedPnl": "0.534248", + "hash": "0x431fe424e0e6a7324499042de3e32e0204b0000a7be9c604e6e88f779fea811c", + "oid": 207842484958, + "crossed": true, + "fee": "0.002492", + "tid": 818099970576470, + "cloid": "0x00000000000000000000001587000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107921.0", + "sz": "0.18514", + "side": "B", + "time": 1761021792467, + "startPosition": "-516.96154", + "dir": "Close Short", + "closedPnl": "899.187952", + "hash": "0x431fe424e0e6a7324499042de3e32e0204b0000a7be9c604e6e88f779fea811c", + "oid": 207842484958, + "crossed": true, + "fee": "4.195903", + "tid": 444339663520838, + "cloid": "0x00000000000000000000001587000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107937.0", + "sz": "0.17397", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.7764", + "dir": "Close Short", + "closedPnl": "842.153976", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "3.943337", + "tid": 997845973920313, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107937.0", + "sz": "0.00011", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.60243", + "dir": "Close Short", + "closedPnl": "0.532488", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "0.002493", + "tid": 1096049960809690, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107938.0", + "sz": "0.00011", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.60232", + "dir": "Close Short", + "closedPnl": "0.532378", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "0.002493", + "tid": 222026302985761, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107939.0", + "sz": "0.00014", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.60221", + "dir": "Close Short", + "closedPnl": "0.677432", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "0.003173", + "tid": 222149681564733, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107939.0", + "sz": "0.00011", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.60207", + "dir": "Close Short", + "closedPnl": "0.532268", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "0.002493", + "tid": 443832993300650, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107940.0", + "sz": "0.00071", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.60196", + "dir": "Close Short", + "closedPnl": "3.434838", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "0.016093", + "tid": 387047365182501, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107940.0", + "sz": "0.00011", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.60125", + "dir": "Close Short", + "closedPnl": "0.532158", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "0.002493", + "tid": 193877997226808, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107941.0", + "sz": "0.00011", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.60114", + "dir": "Close Short", + "closedPnl": "0.532048", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "0.002493", + "tid": 836478668974858, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107942.0", + "sz": "0.00011", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.60103", + "dir": "Close Short", + "closedPnl": "0.531938", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "0.002493", + "tid": 846423046632780, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107943.0", + "sz": "0.00014", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.60092", + "dir": "Close Short", + "closedPnl": "0.676872", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "0.003173", + "tid": 2631226605656, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107943.0", + "sz": "0.00011", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.60078", + "dir": "Close Short", + "closedPnl": "0.531828", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "0.002493", + "tid": 672776979620913, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107944.0", + "sz": "0.00011", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.60067", + "dir": "Close Short", + "closedPnl": "0.531718", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "0.002493", + "tid": 383118676687429, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107945.0", + "sz": "0.00011", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.60056", + "dir": "Close Short", + "closedPnl": "0.531608", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "0.002493", + "tid": 163142818257975, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107946.0", + "sz": "0.00011", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.60045", + "dir": "Close Short", + "closedPnl": "0.531498", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "0.002493", + "tid": 500158829731553, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107947.0", + "sz": "0.00014", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.60034", + "dir": "Close Short", + "closedPnl": "0.676312", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "0.003173", + "tid": 854900095951419, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107947.0", + "sz": "0.00011", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.6002", + "dir": "Close Short", + "closedPnl": "0.531388", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "0.002493", + "tid": 285916616836255, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107948.0", + "sz": "0.00011", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.60009", + "dir": "Close Short", + "closedPnl": "0.531278", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "0.002493", + "tid": 490800219298083, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107949.0", + "sz": "0.00011", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.59998", + "dir": "Close Short", + "closedPnl": "0.531168", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "0.002493", + "tid": 109247962895925, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107949.0", + "sz": "0.00868", + "side": "B", + "time": 1761021795839, + "startPosition": "-516.59987", + "dir": "Close Short", + "closedPnl": "41.913984", + "hash": "0x611064b0e700bbc1628a042de3e34f0206fd00968203da9304d91003a60495ac", + "oid": 207842545345, + "crossed": true, + "fee": "0.196769", + "tid": 613868681405634, + "cloid": "0x00000000000000000000001587000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107933.0", + "sz": "0.18519", + "side": "B", + "time": 1761021800999, + "startPosition": "-516.59119", + "dir": "Close Short", + "closedPnl": "897.208512", + "hash": "0x6a6a54af6af4ec016be4042de3e39702072c009505f80ad30e33000229f8c5ec", + "oid": 207842619505, + "crossed": true, + "fee": "4.197503", + "tid": 716747592514348, + "cloid": "0x00000000000000000000001587000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107927.0", + "sz": "0.18521", + "side": "B", + "time": 1761021803161, + "startPosition": "-516.406", + "dir": "Close Short", + "closedPnl": "898.416668", + "hash": "0x4810b06e83ac0586498a042de3e3b10203ed00541eaf2458ebd95bc142afdf70", + "oid": 207842648576, + "crossed": true, + "fee": "4.197723", + "tid": 1122091051367462, + "cloid": "0x00000000000000000000001587000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107927.0", + "sz": "0.18521", + "side": "B", + "time": 1761021804462, + "startPosition": "-516.22079", + "dir": "Close Short", + "closedPnl": "898.416668", + "hash": "0x6af83e8f2d188a126c71042de3e3c102034c0074c81ba8e40ec0e9e1ec1c63fd", + "oid": 207842662890, + "crossed": true, + "fee": "4.197723", + "tid": 482223404758040, + "cloid": "0x00000000000000000000001587000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107927.0", + "sz": "0.09408", + "side": "B", + "time": 1761021806965, + "startPosition": "-516.03558", + "dir": "Close Short", + "closedPnl": "456.363264", + "hash": "0x196d2f0526f30b7e1ae6042de3e3de02034900eac1f62a50bd35da57e5f6e568", + "oid": 207842684696, + "crossed": true, + "fee": "2.132292", + "tid": 527841758406330, + "cloid": "0x00000000000000000000001587000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107927.0", + "sz": "0.0724", + "side": "B", + "time": 1761021806965, + "startPosition": "-515.9415", + "dir": "Close Short", + "closedPnl": "351.19792", + "hash": "0x196d2f0526f30b7e1ae6042de3e3de02034900eac1f62a50bd35da57e5f6e568", + "oid": 207842684696, + "crossed": true, + "fee": "1.640922", + "tid": 53548597165437, + "cloid": "0x00000000000000000000001587000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107927.0", + "sz": "0.01874", + "side": "B", + "time": 1761021806965, + "startPosition": "-515.8691", + "dir": "Close Short", + "closedPnl": "90.903992", + "hash": "0x196d2f0526f30b7e1ae6042de3e3de02034900eac1f62a50bd35da57e5f6e568", + "oid": 207842684696, + "crossed": true, + "fee": "0.424735", + "tid": 221240525537450, + "cloid": "0x00000000000000000000001587000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107927.0", + "sz": "0.01486", + "side": "B", + "time": 1761021809200, + "startPosition": "-515.85036", + "dir": "Close Short", + "closedPnl": "72.082888", + "hash": "0xee7c09f7175f22d4eff5042de3e3f902027800dcb25241a69244b549d652fcbf", + "oid": 207842710672, + "crossed": true, + "fee": "0.336796", + "tid": 614729825287559, + "cloid": "0x00000000000000000000001587000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107927.0", + "sz": "0.03061", + "side": "B", + "time": 1761021809200, + "startPosition": "-515.8355", + "dir": "Close Short", + "closedPnl": "148.482988", + "hash": "0xee7c09f7175f22d4eff5042de3e3f902027800dcb25241a69244b549d652fcbf", + "oid": 207842710672, + "crossed": true, + "fee": "0.693765", + "tid": 484545064320888, + "cloid": "0x00000000000000000000001587000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107927.0", + "sz": "0.13975", + "side": "B", + "time": 1761021809200, + "startPosition": "-515.80489", + "dir": "Close Short", + "closedPnl": "677.8993", + "hash": "0xee7c09f7175f22d4eff5042de3e3f902027800dcb25241a69244b549d652fcbf", + "oid": 207842710672, + "crossed": true, + "fee": "3.167387", + "tid": 523443453984, + "cloid": "0x00000000000000000000001587000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107930.0", + "sz": "0.00019", + "side": "B", + "time": 1761021814285, + "startPosition": "-515.66514", + "dir": "Close Short", + "closedPnl": "0.921082", + "hash": "0x8befb9b891428a2f8d69042de3e43b0203a5009e2c45a9012fb8650b5046641a", + "oid": 207842771204, + "crossed": true, + "fee": "0.004306", + "tid": 97918368203738, + "cloid": "0x00000000000000000000001587000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107930.0", + "sz": "0.03022", + "side": "B", + "time": 1761021814285, + "startPosition": "-515.66495", + "dir": "Close Short", + "closedPnl": "146.500516", + "hash": "0x8befb9b891428a2f8d69042de3e43b0203a5009e2c45a9012fb8650b5046641a", + "oid": 207842771204, + "crossed": true, + "fee": "0.684945", + "tid": 365982554834357, + "cloid": "0x00000000000000000000001587000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107930.0", + "sz": "0.15481", + "side": "B", + "time": 1761021814285, + "startPosition": "-515.63473", + "dir": "Close Short", + "closedPnl": "750.487918", + "hash": "0x8befb9b891428a2f8d69042de3e43b0203a5009e2c45a9012fb8650b5046641a", + "oid": 207842771204, + "crossed": true, + "fee": "3.508815", + "tid": 508453357743544, + "cloid": "0x00000000000000000000001587000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107925.0", + "sz": "0.03811", + "side": "B", + "time": 1761021815760, + "startPosition": "-515.47992", + "dir": "Close Short", + "closedPnl": "184.940208", + "hash": "0x9d7951f153b255959ef3042de3e44f02040000d6eeb574674141fd4412b62f80", + "oid": 207842788579, + "crossed": true, + "fee": "0.863734", + "tid": 182135192032046, + "cloid": "0x00000000000000000000001587000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107925.0", + "sz": "0.14712", + "side": "B", + "time": 1761021815760, + "startPosition": "-515.44181", + "dir": "Close Short", + "closedPnl": "713.943936", + "hash": "0x9d7951f153b255959ef3042de3e44f02040000d6eeb574674141fd4412b62f80", + "oid": 207842788579, + "crossed": true, + "fee": "3.334364", + "tid": 411568384526166, + "cloid": "0x00000000000000000000001587000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107925.0", + "sz": "0.03755", + "side": "B", + "time": 1761021816927, + "startPosition": "-515.29469", + "dir": "Close Short", + "closedPnl": "182.22264", + "hash": "0x7894920638f530487a0e042de3e45c02027300ebd3f84f1a1c5d3d58f7f90a33", + "oid": 207842801168, + "crossed": true, + "fee": "0.851042", + "tid": 82189733124664, + "cloid": "0x00000000000000000000001587000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107925.0", + "sz": "0.14768", + "side": "B", + "time": 1761021816927, + "startPosition": "-515.25714", + "dir": "Close Short", + "closedPnl": "716.661504", + "hash": "0x7894920638f530487a0e042de3e45c02027300ebd3f84f1a1c5d3d58f7f90a33", + "oid": 207842801168, + "crossed": true, + "fee": "3.347056", + "tid": 434192148428775, + "cloid": "0x00000000000000000000001587000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107925.0", + "sz": "0.12929", + "side": "B", + "time": 1761021818239, + "startPosition": "-515.10946", + "dir": "Close Short", + "closedPnl": "627.418512", + "hash": "0xf8057412f2ebbef5f97f042de3e46f0202cb00f88deeddc89bce1f65b1ef98e0", + "oid": 207842819567, + "crossed": true, + "fee": "2.93026", + "tid": 472544833302509, + "cloid": "0x00000000000000000000001587000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107925.0", + "sz": "0.05594", + "side": "B", + "time": 1761021818239, + "startPosition": "-514.98017", + "dir": "Close Short", + "closedPnl": "271.465632", + "hash": "0xf8057412f2ebbef5f97f042de3e46f0202cb00f88deeddc89bce1f65b1ef98e0", + "oid": 207842819567, + "crossed": true, + "fee": "1.267838", + "tid": 706309673961732, + "cloid": "0x00000000000000000000001587000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107919.0", + "sz": "0.0284", + "side": "B", + "time": 1761021819352, + "startPosition": "-514.92423", + "dir": "Close Short", + "closedPnl": "137.98992", + "hash": "0xa341007ff17479d3a4ba042de3e47f02094c00658c7798a54709abd2b07853be", + "oid": 207842839331, + "crossed": true, + "fee": "0.643628", + "tid": 931340099670575, + "cloid": "0x00000000000000000000001587000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107919.0", + "sz": "0.06012", + "side": "B", + "time": 1761021819352, + "startPosition": "-514.89583", + "dir": "Close Short", + "closedPnl": "292.111056", + "hash": "0xa341007ff17479d3a4ba042de3e47f02094c00658c7798a54709abd2b07853be", + "oid": 207842839331, + "crossed": true, + "fee": "1.362498", + "tid": 161198485774331, + "cloid": "0x00000000000000000000001587000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107919.0", + "sz": "0.09673", + "side": "B", + "time": 1761021819352, + "startPosition": "-514.83571", + "dir": "Close Short", + "closedPnl": "469.991724", + "hash": "0xa341007ff17479d3a4ba042de3e47f02094c00658c7798a54709abd2b07853be", + "oid": 207842839331, + "crossed": true, + "fee": "2.192191", + "tid": 443631358863080, + "cloid": "0x00000000000000000000001587000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107886.0", + "sz": "0.11706", + "side": "B", + "time": 1761021823268, + "startPosition": "-514.73898", + "dir": "Close Short", + "closedPnl": "572.634108", + "hash": "0xa406e377d77cbc96a580042de3e4ae020b81005d727fdb6847cf8eca96709681", + "oid": 207842893230, + "crossed": true, + "fee": "2.652118", + "tid": 471417273584778, + "cloid": "0x00000000000000000000001587000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107886.0", + "sz": "0.06823", + "side": "B", + "time": 1761021823268, + "startPosition": "-514.62192", + "dir": "Close Short", + "closedPnl": "333.767514", + "hash": "0xa406e377d77cbc96a580042de3e4ae020b81005d727fdb6847cf8eca96709681", + "oid": 207842893230, + "crossed": true, + "fee": "1.545822", + "tid": 827087007597592, + "cloid": "0x00000000000000000000001587000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107886.0", + "sz": "0.18529", + "side": "B", + "time": 1761021824545, + "startPosition": "-514.55369", + "dir": "Close Short", + "closedPnl": "906.401622", + "hash": "0xbc35abd6b145de93bdaf042de3e4c002024c00bc4c48fd655ffe57297049b87e", + "oid": 207842911864, + "crossed": true, + "fee": "4.197941", + "tid": 203306714781367, + "cloid": "0x00000000000000000000001587000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107886.0", + "sz": "0.18529", + "side": "B", + "time": 1761021825790, + "startPosition": "-514.3684", + "dir": "Close Short", + "closedPnl": "906.401622", + "hash": "0xcc134012f4ea9b6acd8c042de3e4d002044600f88fedba3c6fdbeb65b3ee7555", + "oid": 207842927233, + "crossed": true, + "fee": "4.197941", + "tid": 1080066460270627, + "cloid": "0x00000000000000000000001587000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107886.0", + "sz": "0.18529", + "side": "B", + "time": 1761021827415, + "startPosition": "-514.18311", + "dir": "Close Short", + "closedPnl": "906.401622", + "hash": "0xa5b38f0de6f4f463a72d042de3e4e202033500f381f81335497c3a60a5f8ce4e", + "oid": 207842945741, + "crossed": true, + "fee": "4.197941", + "tid": 923428414942644, + "cloid": "0x00000000000000000000001587000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107876.0", + "sz": "0.03153", + "side": "B", + "time": 1761021828842, + "startPosition": "-513.99782", + "dir": "Close Short", + "closedPnl": "154.553754", + "hash": "0x65ebcb63ca9979026765042de3e4f302056a0049659c97d409b476b6899d52ed", + "oid": 207842970944, + "crossed": true, + "fee": "0.714279", + "tid": 300885599232185, + "cloid": "0x00000000000000000000001587000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107876.0", + "sz": "0.0264", + "side": "B", + "time": 1761021828842, + "startPosition": "-513.96629", + "dir": "Close Short", + "closedPnl": "129.40752", + "hash": "0x65ebcb63ca9979026765042de3e4f302056a0049659c97d409b476b6899d52ed", + "oid": 207842970944, + "crossed": true, + "fee": "0.598064", + "tid": 377760839846193, + "cloid": "0x00000000000000000000001587000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107876.0", + "sz": "0.02031", + "side": "B", + "time": 1761021828842, + "startPosition": "-513.93989", + "dir": "Close Short", + "closedPnl": "99.555558", + "hash": "0x65ebcb63ca9979026765042de3e4f302056a0049659c97d409b476b6899d52ed", + "oid": 207842970944, + "crossed": true, + "fee": "0.460101", + "tid": 1089559102080026, + "cloid": "0x00000000000000000000001587000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107876.0", + "sz": "0.10708", + "side": "B", + "time": 1761021828842, + "startPosition": "-513.91958", + "dir": "Close Short", + "closedPnl": "524.884744", + "hash": "0x65ebcb63ca9979026765042de3e4f302056a0049659c97d409b476b6899d52ed", + "oid": 207842970944, + "crossed": true, + "fee": "2.425786", + "tid": 889031807075336, + "cloid": "0x00000000000000000000001587000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107858.0", + "sz": "0.18533", + "side": "B", + "time": 1761021830246, + "startPosition": "-513.8125", + "dir": "Close Short", + "closedPnl": "911.786534", + "hash": "0x60864142c7905ce961ff042de3e5050205e0002862937bbb044eec95869436d4", + "oid": 207842990195, + "crossed": true, + "fee": "4.197757", + "tid": 355400673203332, + "cloid": "0x00000000000000000000001587000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107851.0", + "sz": "0.16264", + "side": "B", + "time": 1761021831788, + "startPosition": "-513.62717", + "dir": "Close Short", + "closedPnl": "801.294752", + "hash": "0x88feda0b800d9da78a78042de3e51b02091100f11b00bc792cc7855e3f017792", + "oid": 207843010527, + "crossed": true, + "fee": "3.683586", + "tid": 390319227266589, + "cloid": "0x00000000000000000000001587000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107851.0", + "sz": "0.02271", + "side": "B", + "time": 1761021831788, + "startPosition": "-513.46453", + "dir": "Close Short", + "closedPnl": "111.887628", + "hash": "0x88feda0b800d9da78a78042de3e51b02091100f11b00bc792cc7855e3f017792", + "oid": 207843010527, + "crossed": true, + "fee": "0.514352", + "tid": 704688884780683, + "cloid": "0x00000000000000000000001587000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107851.0", + "sz": "0.18536", + "side": "B", + "time": 1761021836810, + "startPosition": "-513.44182", + "dir": "Close Short", + "closedPnl": "913.231648", + "hash": "0xc4f0b2a85e11ed9bc66a042de3e560020281008df9150c6d68b95dfb1d15c786", + "oid": 207843072086, + "crossed": true, + "fee": "4.198164", + "tid": 239760810323333, + "cloid": "0x00000000000000000000001587000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107851.0", + "sz": "0.18536", + "side": "B", + "time": 1761021838281, + "startPosition": "-513.25646", + "dir": "Close Short", + "closedPnl": "913.231648", + "hash": "0xd63ac2a25731c1afd7b4042de3e5730204440087f234e0817a036df516359b9a", + "oid": 207843086104, + "crossed": true, + "fee": "4.198164", + "tid": 672706431288369, + "cloid": "0x00000000000000000000001587000084", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107850.0", + "sz": "0.02142", + "side": "B", + "time": 1761021839442, + "startPosition": "-513.0711", + "dir": "Close Short", + "closedPnl": "105.553476", + "hash": "0x93fa524090b03dc19574042de3e5850203c200262bb35c9337c2fd934fb417ac", + "oid": 207843099870, + "crossed": true, + "fee": "0.48513", + "tid": 469733503939325, + "cloid": "0x00000000000000000000001587000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107850.0", + "sz": "0.16395", + "side": "B", + "time": 1761021839442, + "startPosition": "-513.04968", + "dir": "Close Short", + "closedPnl": "807.91281", + "hash": "0x93fa524090b03dc19574042de3e5850203c200262bb35c9337c2fd934fb417ac", + "oid": 207843099870, + "crossed": true, + "fee": "3.713221", + "tid": 472716266466835, + "cloid": "0x00000000000000000000001587000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107849.0", + "sz": "0.13995", + "side": "B", + "time": 1761021843462, + "startPosition": "-512.88573", + "dir": "Close Short", + "closedPnl": "689.78556", + "hash": "0xb28c5f06a7f3f125b406042de3e5b902055200ec42f70ff756550a5966f7cb10", + "oid": 207843155299, + "crossed": true, + "fee": "3.169628", + "tid": 1027487248490908, + "cloid": "0x00000000000000000000001587000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107849.0", + "sz": "0.04542", + "side": "B", + "time": 1761021843462, + "startPosition": "-512.74578", + "dir": "Close Short", + "closedPnl": "223.866096", + "hash": "0xb28c5f06a7f3f125b406042de3e5b902055200ec42f70ff756550a5966f7cb10", + "oid": 207843155299, + "crossed": true, + "fee": "1.028685", + "tid": 1004753138636608, + "cloid": "0x00000000000000000000001587000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107817.0", + "sz": "0.18539", + "side": "B", + "time": 1761021844892, + "startPosition": "-512.70036", + "dir": "Close Short", + "closedPnl": "919.682712", + "hash": "0x818b1ed2f6bf5da68304042de3e5cc02037f00b891b27c782553ca25b5b33791", + "oid": 207843177557, + "crossed": true, + "fee": "4.19752", + "tid": 1065598274677914, + "cloid": "0x00000000000000000000001587000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107783.0", + "sz": "0.02773", + "side": "B", + "time": 1761021846269, + "startPosition": "-512.51497", + "dir": "Close Short", + "closedPnl": "138.505804", + "hash": "0x54b553bf373286f9562f042de3e5de020ced00a4d235a5cbf87dff11f63660e3", + "oid": 207843210454, + "crossed": true, + "fee": "0.627652", + "tid": 762439339458387, + "cloid": "0x00000000000000000000001587000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107784.0", + "sz": "0.02783", + "side": "B", + "time": 1761021846269, + "startPosition": "-512.48724", + "dir": "Close Short", + "closedPnl": "138.977454", + "hash": "0x54b553bf373286f9562f042de3e5de020ced00a4d235a5cbf87dff11f63660e3", + "oid": 207843210454, + "crossed": true, + "fee": "0.629922", + "tid": 989690944502299, + "cloid": "0x00000000000000000000001587000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107785.0", + "sz": "0.02783", + "side": "B", + "time": 1761021846269, + "startPosition": "-512.45941", + "dir": "Close Short", + "closedPnl": "138.949624", + "hash": "0x54b553bf373286f9562f042de3e5de020ced00a4d235a5cbf87dff11f63660e3", + "oid": 207843210454, + "crossed": true, + "fee": "0.629927", + "tid": 625506852786360, + "cloid": "0x00000000000000000000001587000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107786.0", + "sz": "0.02783", + "side": "B", + "time": 1761021846269, + "startPosition": "-512.43158", + "dir": "Close Short", + "closedPnl": "138.921794", + "hash": "0x54b553bf373286f9562f042de3e5de020ced00a4d235a5cbf87dff11f63660e3", + "oid": 207843210454, + "crossed": true, + "fee": "0.629933", + "tid": 1105444266660595, + "cloid": "0x00000000000000000000001587000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107787.0", + "sz": "0.02783", + "side": "B", + "time": 1761021846269, + "startPosition": "-512.40375", + "dir": "Close Short", + "closedPnl": "138.893964", + "hash": "0x54b553bf373286f9562f042de3e5de020ced00a4d235a5cbf87dff11f63660e3", + "oid": 207843210454, + "crossed": true, + "fee": "0.629939", + "tid": 726025871240405, + "cloid": "0x00000000000000000000001587000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107794.0", + "sz": "0.04646", + "side": "B", + "time": 1761021846269, + "startPosition": "-512.37592", + "dir": "Close Short", + "closedPnl": "231.547348", + "hash": "0x54b553bf373286f9562f042de3e5de020ced00a4d235a5cbf87dff11f63660e3", + "oid": 207843210454, + "crossed": true, + "fee": "1.051702", + "tid": 763232063092900, + "cloid": "0x00000000000000000000001587000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107800.0", + "sz": "0.18543", + "side": "B", + "time": 1761021848706, + "startPosition": "-512.32946", + "dir": "Close Short", + "closedPnl": "923.033454", + "hash": "0x767b11c0773db38d77f4042de3e5fe02084d00a61230d25f1a43bd1336318d78", + "oid": 207843263432, + "crossed": true, + "fee": "4.197764", + "tid": 47120756734189, + "cloid": "0x00000000000000000000001587000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107800.0", + "sz": "0.0004", + "side": "B", + "time": 1761021850739, + "startPosition": "-512.14403", + "dir": "Close Short", + "closedPnl": "1.99112", + "hash": "0xf3d3700f7872ed73f54d042de3e6190205ba00f513760c46979c1b623776c75e", + "oid": 207843300599, + "crossed": true, + "fee": "0.009055", + "tid": 625662324744861, + "cloid": "0x00000000000000000000001587000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107801.0", + "sz": "0.00011", + "side": "B", + "time": 1761021850739, + "startPosition": "-512.14363", + "dir": "Close Short", + "closedPnl": "0.547448", + "hash": "0xf3d3700f7872ed73f54d042de3e6190205ba00f513760c46979c1b623776c75e", + "oid": 207843300599, + "crossed": true, + "fee": "0.00249", + "tid": 663952802246156, + "cloid": "0x00000000000000000000001587000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107802.0", + "sz": "0.00011", + "side": "B", + "time": 1761021850739, + "startPosition": "-512.14352", + "dir": "Close Short", + "closedPnl": "0.547338", + "hash": "0xf3d3700f7872ed73f54d042de3e6190205ba00f513760c46979c1b623776c75e", + "oid": 207843300599, + "crossed": true, + "fee": "0.00249", + "tid": 55448798460311, + "cloid": "0x00000000000000000000001587000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107803.0", + "sz": "0.00011", + "side": "B", + "time": 1761021850739, + "startPosition": "-512.14341", + "dir": "Close Short", + "closedPnl": "0.547228", + "hash": "0xf3d3700f7872ed73f54d042de3e6190205ba00f513760c46979c1b623776c75e", + "oid": 207843300599, + "crossed": true, + "fee": "0.00249", + "tid": 169584113869235, + "cloid": "0x00000000000000000000001587000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107804.0", + "sz": "0.00011", + "side": "B", + "time": 1761021850739, + "startPosition": "-512.1433", + "dir": "Close Short", + "closedPnl": "0.547118", + "hash": "0xf3d3700f7872ed73f54d042de3e6190205ba00f513760c46979c1b623776c75e", + "oid": 207843300599, + "crossed": true, + "fee": "0.00249", + "tid": 745155903670885, + "cloid": "0x00000000000000000000001587000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107805.0", + "sz": "0.00011", + "side": "B", + "time": 1761021850739, + "startPosition": "-512.14319", + "dir": "Close Short", + "closedPnl": "0.547008", + "hash": "0xf3d3700f7872ed73f54d042de3e6190205ba00f513760c46979c1b623776c75e", + "oid": 207843300599, + "crossed": true, + "fee": "0.00249", + "tid": 376115888311980, + "cloid": "0x00000000000000000000001587000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107806.0", + "sz": "0.00011", + "side": "B", + "time": 1761021850739, + "startPosition": "-512.14308", + "dir": "Close Short", + "closedPnl": "0.546898", + "hash": "0xf3d3700f7872ed73f54d042de3e6190205ba00f513760c46979c1b623776c75e", + "oid": 207843300599, + "crossed": true, + "fee": "0.00249", + "tid": 204093767208950, + "cloid": "0x00000000000000000000001587000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107807.0", + "sz": "0.00011", + "side": "B", + "time": 1761021850739, + "startPosition": "-512.14297", + "dir": "Close Short", + "closedPnl": "0.546788", + "hash": "0xf3d3700f7872ed73f54d042de3e6190205ba00f513760c46979c1b623776c75e", + "oid": 207843300599, + "crossed": true, + "fee": "0.00249", + "tid": 141976340868918, + "cloid": "0x00000000000000000000001587000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107807.0", + "sz": "0.03599", + "side": "B", + "time": 1761021850739, + "startPosition": "-512.14286", + "dir": "Close Short", + "closedPnl": "178.899092", + "hash": "0xf3d3700f7872ed73f54d042de3e6190205ba00f513760c46979c1b623776c75e", + "oid": 207843300599, + "crossed": true, + "fee": "0.814794", + "tid": 79050633509873, + "cloid": "0x00000000000000000000001587000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107808.0", + "sz": "0.00011", + "side": "B", + "time": 1761021850739, + "startPosition": "-512.10687", + "dir": "Close Short", + "closedPnl": "0.546678", + "hash": "0xf3d3700f7872ed73f54d042de3e6190205ba00f513760c46979c1b623776c75e", + "oid": 207843300599, + "crossed": true, + "fee": "0.00249", + "tid": 572418593491126, + "cloid": "0x00000000000000000000001587000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107809.0", + "sz": "0.00011", + "side": "B", + "time": 1761021850739, + "startPosition": "-512.10676", + "dir": "Close Short", + "closedPnl": "0.546568", + "hash": "0xf3d3700f7872ed73f54d042de3e6190205ba00f513760c46979c1b623776c75e", + "oid": 207843300599, + "crossed": true, + "fee": "0.00249", + "tid": 333291122544150, + "cloid": "0x00000000000000000000001587000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107810.0", + "sz": "0.00011", + "side": "B", + "time": 1761021850739, + "startPosition": "-512.10665", + "dir": "Close Short", + "closedPnl": "0.546458", + "hash": "0xf3d3700f7872ed73f54d042de3e6190205ba00f513760c46979c1b623776c75e", + "oid": 207843300599, + "crossed": true, + "fee": "0.00249", + "tid": 274446040142718, + "cloid": "0x00000000000000000000001587000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107811.0", + "sz": "0.00011", + "side": "B", + "time": 1761021850739, + "startPosition": "-512.10654", + "dir": "Close Short", + "closedPnl": "0.546348", + "hash": "0xf3d3700f7872ed73f54d042de3e6190205ba00f513760c46979c1b623776c75e", + "oid": 207843300599, + "crossed": true, + "fee": "0.00249", + "tid": 155134884443897, + "cloid": "0x00000000000000000000001587000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107812.0", + "sz": "0.00011", + "side": "B", + "time": 1761021850739, + "startPosition": "-512.10643", + "dir": "Close Short", + "closedPnl": "0.546238", + "hash": "0xf3d3700f7872ed73f54d042de3e6190205ba00f513760c46979c1b623776c75e", + "oid": 207843300599, + "crossed": true, + "fee": "0.00249", + "tid": 1091716273955311, + "cloid": "0x00000000000000000000001587000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107812.0", + "sz": "0.14772", + "side": "B", + "time": 1761021850739, + "startPosition": "-512.10632", + "dir": "Close Short", + "closedPnl": "733.547976", + "hash": "0xf3d3700f7872ed73f54d042de3e6190205ba00f513760c46979c1b623776c75e", + "oid": 207843300599, + "crossed": true, + "fee": "3.344457", + "tid": 1116843620787870, + "cloid": "0x00000000000000000000001587000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107817.0", + "sz": "0.18542", + "side": "B", + "time": 1761021852554, + "startPosition": "-511.9586", + "dir": "Close Short", + "closedPnl": "919.831536", + "hash": "0xc2cae448c0a9eba2c444042de3e630020582002e5bad0a7466938f9b7fadc58d", + "oid": 207843340056, + "crossed": true, + "fee": "4.198199", + "tid": 158003449990004, + "cloid": "0x00000000000000000000001587000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107817.0", + "sz": "0.1854", + "side": "B", + "time": 1761021854085, + "startPosition": "-511.77318", + "dir": "Close Short", + "closedPnl": "919.73232", + "hash": "0x57676a8bf602f8db58e1042de3e64202056e0071910617adfb3015deb506d2c5", + "oid": 207843368387, + "crossed": true, + "fee": "4.197747", + "tid": 667612834541460, + "cloid": "0x00000000000000000000001587000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107800.0", + "sz": "0.04768", + "side": "B", + "time": 1761021855905, + "startPosition": "-511.58778", + "dir": "Close Short", + "closedPnl": "237.341504", + "hash": "0x3a1de57434b5ec313b97042de3e6550207f20059cfb90b03dde690c6f3b9c61b", + "oid": 207843393079, + "crossed": true, + "fee": "1.079379", + "tid": 1012153997169410, + "cloid": "0x00000000000000000000001587000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107800.0", + "sz": "0.01856", + "side": "B", + "time": 1761021855905, + "startPosition": "-511.5401", + "dir": "Close Short", + "closedPnl": "92.387968", + "hash": "0x3a1de57434b5ec313b97042de3e6550207f20059cfb90b03dde690c6f3b9c61b", + "oid": 207843393079, + "crossed": true, + "fee": "0.420161", + "tid": 63304569334265, + "cloid": "0x00000000000000000000001587000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107800.0", + "sz": "0.11919", + "side": "B", + "time": 1761021855905, + "startPosition": "-511.52154", + "dir": "Close Short", + "closedPnl": "593.303982", + "hash": "0x3a1de57434b5ec313b97042de3e6550207f20059cfb90b03dde690c6f3b9c61b", + "oid": 207843393079, + "crossed": true, + "fee": "2.698223", + "tid": 531095293772650, + "cloid": "0x00000000000000000000001587000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107800.0", + "sz": "0.0136", + "side": "B", + "time": 1761021857231, + "startPosition": "-511.40235", + "dir": "Close Short", + "closedPnl": "67.69808", + "hash": "0xe018619f511bb28fe192042de3e6630206e20084ec1ed16183e10cf2101f8c7a", + "oid": 207843408259, + "crossed": true, + "fee": "0.307876", + "tid": 203273404023004, + "cloid": "0x00000000000000000000001587000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107800.0", + "sz": "0.14569", + "side": "B", + "time": 1761021857231, + "startPosition": "-511.38875", + "dir": "Close Short", + "closedPnl": "725.215682", + "hash": "0xe018619f511bb28fe192042de3e6630206e20084ec1ed16183e10cf2101f8c7a", + "oid": 207843408259, + "crossed": true, + "fee": "3.29813", + "tid": 405421895468362, + "cloid": "0x00000000000000000000001587000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107800.0", + "sz": "0.02615", + "side": "B", + "time": 1761021857231, + "startPosition": "-511.24306", + "dir": "Close Short", + "closedPnl": "130.16947", + "hash": "0xe018619f511bb28fe192042de3e6630206e20084ec1ed16183e10cf2101f8c7a", + "oid": 207843408259, + "crossed": true, + "fee": "0.591983", + "tid": 211874535654643, + "cloid": "0x00000000000000000000001587000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107805.0", + "sz": "0.18543", + "side": "B", + "time": 1761021861094, + "startPosition": "-511.21691", + "dir": "Close Short", + "closedPnl": "922.106304", + "hash": "0x9da5892969d465269f1f042de3e6910202e8000f04d783f8416e347c28d83f11", + "oid": 207843462708, + "crossed": true, + "fee": "4.197959", + "tid": 46854330235081, + "cloid": "0x00000000000000000000001587000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107800.0", + "sz": "0.05172", + "side": "B", + "time": 1761021862592, + "startPosition": "-511.03148", + "dir": "Close Short", + "closedPnl": "257.451816", + "hash": "0x0e77d40de75d36b80ff1042de3e6a40206e100f38250558ab2407f60a65110a2", + "oid": 207843484098, + "crossed": true, + "fee": "1.170837", + "tid": 456157271937328, + "cloid": "0x00000000000000000000001587000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107800.0", + "sz": "0.05744", + "side": "B", + "time": 1761021862592, + "startPosition": "-510.97976", + "dir": "Close Short", + "closedPnl": "285.924832", + "hash": "0x0e77d40de75d36b80ff1042de3e6a40206e100f38250558ab2407f60a65110a2", + "oid": 207843484098, + "crossed": true, + "fee": "1.300326", + "tid": 733201454160318, + "cloid": "0x00000000000000000000001587000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107800.0", + "sz": "0.07628", + "side": "B", + "time": 1761021862592, + "startPosition": "-510.92232", + "dir": "Close Short", + "closedPnl": "379.706584", + "hash": "0x0e77d40de75d36b80ff1042de3e6a40206e100f38250558ab2407f60a65110a2", + "oid": 207843484098, + "crossed": true, + "fee": "1.726826", + "tid": 477936676862146, + "cloid": "0x00000000000000000000001587000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107794.0", + "sz": "0.09619", + "side": "B", + "time": 1761021865144, + "startPosition": "-510.84604", + "dir": "Close Short", + "closedPnl": "479.391722", + "hash": "0x7b5fc97ef3ec52387cd9042de3e6c40204f200648eef710a1f2874d1b2e02c23", + "oid": 207843528175, + "crossed": true, + "fee": "2.177428", + "tid": 748655826594962, + "cloid": "0x00000000000000000000001587000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107794.0", + "sz": "0.08927", + "side": "B", + "time": 1761021865144, + "startPosition": "-510.74985", + "dir": "Close Short", + "closedPnl": "444.903826", + "hash": "0x7b5fc97ef3ec52387cd9042de3e6c40204f200648eef710a1f2874d1b2e02c23", + "oid": 207843528175, + "crossed": true, + "fee": "2.020781", + "tid": 1018287530491296, + "cloid": "0x00000000000000000000001587000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107778.0", + "sz": "0.09954", + "side": "B", + "time": 1761021867089, + "startPosition": "-510.66058", + "dir": "Close Short", + "closedPnl": "497.680092", + "hash": "0x43046e246a05acd7447e042de3e6dd020467000a0508cba9e6cd1977290986c1", + "oid": 207843562045, + "crossed": true, + "fee": "2.252926", + "tid": 661711060728077, + "cloid": "0x00000000000000000000001587000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107778.0", + "sz": "0.08595", + "side": "B", + "time": 1761021867089, + "startPosition": "-510.56104", + "dir": "Close Short", + "closedPnl": "429.73281", + "hash": "0x43046e246a05acd7447e042de3e6dd020467000a0508cba9e6cd1977290986c1", + "oid": 207843562045, + "crossed": true, + "fee": "1.945339", + "tid": 46043362883092, + "cloid": "0x00000000000000000000001587000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107791.0", + "sz": "0.1855", + "side": "B", + "time": 1761021869810, + "startPosition": "-510.47509", + "dir": "Close Short", + "closedPnl": "925.0514", + "hash": "0x441673b600a65dac4590042de3e6fa020410009b9ba97c7ee7df1f08bfaa3796", + "oid": 207843610446, + "crossed": true, + "fee": "4.198998", + "tid": 613916333370081, + "cloid": "0x00000000000000000000001587000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107794.0", + "sz": "0.18545", + "side": "B", + "time": 1761021872708, + "startPosition": "-510.28959", + "dir": "Close Short", + "closedPnl": "924.24571", + "hash": "0x27dd3af84f0080412956042de3e71f02026d00ddea039f13cba5e64b0e045a2b", + "oid": 207843646478, + "crossed": true, + "fee": "4.197983", + "tid": 199686786912451, + "cloid": "0x00000000000000000000001587000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3857.4", + "sz": "0.25", + "side": "A", + "time": 1761021890339, + "startPosition": "-4120.302", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0ce9de2e4c9ebebf0e63042de3e8050203b00013e791dd91b0b289810b9298a9", + "oid": 207843881795, + "crossed": true, + "fee": "0.202513", + "tid": 879140834021967, + "cloid": "0x00000000000000000000001588000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3856.7", + "sz": "0.25", + "side": "A", + "time": 1761021900541, + "startPosition": "-4120.552", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x68aae5a3f2b8ce156a24042de3e88302036c00898dbbece70c7390f6b1bca800", + "oid": 207843997066, + "crossed": true, + "fee": "0.202476", + "tid": 877270454651716, + "cloid": "0x00000000000000000000001588000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3857.5", + "sz": "0.25", + "side": "A", + "time": 1761021910332, + "startPosition": "-4120.802", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb682a64f8bf0320fb7fc042de3e8fd02063e003526f350e15a4b51a24af40bfa", + "oid": 207844207044, + "crossed": true, + "fee": "0.202518", + "tid": 742814992226238, + "cloid": "0x00000000000000000000001588000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3857.1", + "sz": "0.25", + "side": "A", + "time": 1761021920442, + "startPosition": "-4121.052", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa0308973da896ad7a1aa042de3e97d02038f0059758c89a943f934c6998d44c2", + "oid": 207844370839, + "crossed": true, + "fee": "0.202497", + "tid": 78090426617751, + "cloid": "0x00000000000000000000001588000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107746.0", + "sz": "0.18553", + "side": "B", + "time": 1761023435409, + "startPosition": "-510.10414", + "dir": "Close Short", + "closedPnl": "933.549854", + "hash": "0x09c1674345f0024e0b3b042de433b60201810028e0f32120ad8a129604f3dc38", + "oid": 207865371836, + "crossed": true, + "fee": "4.197924", + "tid": 206212866728366, + "cloid": "0x00000000000000000000001589000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107749.0", + "sz": "0.00011", + "side": "B", + "time": 1761023440172, + "startPosition": "-509.91861", + "dir": "Close Short", + "closedPnl": "0.553168", + "hash": "0x6ca3c76440bee36f6e1d042de433f902037e0049dbb20241106c72b6ffb2bd5a", + "oid": 207865437665, + "crossed": true, + "fee": "0.002489", + "tid": 656364736949893, + "cloid": "0x00000000000000000000001589000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107750.0", + "sz": "0.00011", + "side": "B", + "time": 1761023440172, + "startPosition": "-509.9185", + "dir": "Close Short", + "closedPnl": "0.553058", + "hash": "0x6ca3c76440bee36f6e1d042de433f902037e0049dbb20241106c72b6ffb2bd5a", + "oid": 207865437665, + "crossed": true, + "fee": "0.002489", + "tid": 761615936755157, + "cloid": "0x00000000000000000000001589000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107751.0", + "sz": "0.00011", + "side": "B", + "time": 1761023440172, + "startPosition": "-509.91839", + "dir": "Close Short", + "closedPnl": "0.552948", + "hash": "0x6ca3c76440bee36f6e1d042de433f902037e0049dbb20241106c72b6ffb2bd5a", + "oid": 207865437665, + "crossed": true, + "fee": "0.002489", + "tid": 376901662957944, + "cloid": "0x00000000000000000000001589000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107752.0", + "sz": "0.00011", + "side": "B", + "time": 1761023440172, + "startPosition": "-509.91828", + "dir": "Close Short", + "closedPnl": "0.552838", + "hash": "0x6ca3c76440bee36f6e1d042de433f902037e0049dbb20241106c72b6ffb2bd5a", + "oid": 207865437665, + "crossed": true, + "fee": "0.002489", + "tid": 617808830926915, + "cloid": "0x00000000000000000000001589000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107753.0", + "sz": "0.00011", + "side": "B", + "time": 1761023440172, + "startPosition": "-509.91817", + "dir": "Close Short", + "closedPnl": "0.552728", + "hash": "0x6ca3c76440bee36f6e1d042de433f902037e0049dbb20241106c72b6ffb2bd5a", + "oid": 207865437665, + "crossed": true, + "fee": "0.002489", + "tid": 542552561241937, + "cloid": "0x00000000000000000000001589000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107754.0", + "sz": "0.00011", + "side": "B", + "time": 1761023440172, + "startPosition": "-509.91806", + "dir": "Close Short", + "closedPnl": "0.552618", + "hash": "0x6ca3c76440bee36f6e1d042de433f902037e0049dbb20241106c72b6ffb2bd5a", + "oid": 207865437665, + "crossed": true, + "fee": "0.002489", + "tid": 989432479869766, + "cloid": "0x00000000000000000000001589000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107755.0", + "sz": "0.00014", + "side": "B", + "time": 1761023440172, + "startPosition": "-509.91795", + "dir": "Close Short", + "closedPnl": "0.703192", + "hash": "0x6ca3c76440bee36f6e1d042de433f902037e0049dbb20241106c72b6ffb2bd5a", + "oid": 207865437665, + "crossed": true, + "fee": "0.003167", + "tid": 78478155910981, + "cloid": "0x00000000000000000000001589000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107755.0", + "sz": "0.00011", + "side": "B", + "time": 1761023440172, + "startPosition": "-509.91781", + "dir": "Close Short", + "closedPnl": "0.552508", + "hash": "0x6ca3c76440bee36f6e1d042de433f902037e0049dbb20241106c72b6ffb2bd5a", + "oid": 207865437665, + "crossed": true, + "fee": "0.002489", + "tid": 1016647558403651, + "cloid": "0x00000000000000000000001589000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107755.0", + "sz": "0.1846", + "side": "B", + "time": 1761023440172, + "startPosition": "-509.9177", + "dir": "Close Short", + "closedPnl": "927.20888", + "hash": "0x6ca3c76440bee36f6e1d042de433f902037e0049dbb20241106c72b6ffb2bd5a", + "oid": 207865437665, + "crossed": true, + "fee": "4.17723", + "tid": 1007955784808891, + "cloid": "0x00000000000000000000001589000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107755.0", + "sz": "0.18551", + "side": "B", + "time": 1761023441941, + "startPosition": "-509.7331", + "dir": "Close Short", + "closedPnl": "931.779628", + "hash": "0xa468fc205e9084b7a5e2042de4340f02041e0005f993a3894831a7731d945ea2", + "oid": 207865464788, + "crossed": true, + "fee": "4.197822", + "tid": 850833801101989, + "cloid": "0x00000000000000000000001589000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107755.0", + "sz": "0.18549", + "side": "B", + "time": 1761023443807, + "startPosition": "-509.54759", + "dir": "Close Short", + "closedPnl": "931.679172", + "hash": "0x286d4f014005baeb29e7042de4342402022400e6db08d9bdcc35fa53ff0994d5", + "oid": 207865487254, + "crossed": true, + "fee": "4.197369", + "tid": 433036841307465, + "cloid": "0x00000000000000000000001589000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107758.0", + "sz": "0.18551", + "side": "B", + "time": 1761023446433, + "startPosition": "-509.3621", + "dir": "Close Short", + "closedPnl": "931.223098", + "hash": "0x22e191c9954cf5a2245b042de4343f0206d100af30401474c6aa3d1c5440cf8c", + "oid": 207865525110, + "crossed": true, + "fee": "4.197939", + "tid": 408955858037203, + "cloid": "0x00000000000000000000001589000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107752.0", + "sz": "0.1436", + "side": "B", + "time": 1761023448971, + "startPosition": "-509.17659", + "dir": "Close Short", + "closedPnl": "721.70488", + "hash": "0xd1c5425f8db50777d33e042de4345b020364004528b82649758dedb24cb8e162", + "oid": 207865558520, + "crossed": true, + "fee": "3.249369", + "tid": 659587701831631, + "cloid": "0x00000000000000000000001589000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107752.0", + "sz": "0.04192", + "side": "B", + "time": 1761023448971, + "startPosition": "-509.03299", + "dir": "Close Short", + "closedPnl": "210.681536", + "hash": "0xd1c5425f8db50777d33e042de4345b020364004528b82649758dedb24cb8e162", + "oid": 207865558520, + "crossed": true, + "fee": "0.948562", + "tid": 242499818757004, + "cloid": "0x00000000000000000000001589000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107752.0", + "sz": "0.18552", + "side": "B", + "time": 1761023450276, + "startPosition": "-508.99107", + "dir": "Close Short", + "closedPnl": "932.386416", + "hash": "0xe1ba94563b6c0301e334042de4346a02016c003bd66f21d385833fa8fa6fdcec", + "oid": 207865572891, + "crossed": true, + "fee": "4.197931", + "tid": 187216192268006, + "cloid": "0x00000000000000000000001589000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107752.0", + "sz": "0.10946", + "side": "B", + "time": 1761023460429, + "startPosition": "-508.80555", + "dir": "Close Short", + "closedPnl": "550.124068", + "hash": "0x8e5e378ec1c3c8b58fd7042de434ec0202b800745cc6e7873226e2e180c7a2a0", + "oid": 207865655259, + "crossed": true, + "fee": "2.476852", + "tid": 199175375015355, + "cloid": "0x00000000000000000000001589000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107752.0", + "sz": "0.07606", + "side": "B", + "time": 1761023460429, + "startPosition": "-508.69609", + "dir": "Close Short", + "closedPnl": "382.262348", + "hash": "0x8e5e378ec1c3c8b58fd7042de434ec0202b800745cc6e7873226e2e180c7a2a0", + "oid": 207865655259, + "crossed": true, + "fee": "1.721079", + "tid": 1092597318459344, + "cloid": "0x00000000000000000000001589000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107749.0", + "sz": "0.08264", + "side": "B", + "time": 1761023461878, + "startPosition": "-508.62003", + "dir": "Close Short", + "closedPnl": "415.580032", + "hash": "0xb48d17ed6671b5b0b606042de4350102071200d30174d4825855c34025758f9b", + "oid": 207865680060, + "crossed": true, + "fee": "1.869919", + "tid": 771083524875125, + "cloid": "0x00000000000000000000001589000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107749.0", + "sz": "0.10288", + "side": "B", + "time": 1761023461878, + "startPosition": "-508.53739", + "dir": "Close Short", + "closedPnl": "517.362944", + "hash": "0xb48d17ed6671b5b0b606042de4350102071200d30174d4825855c34025758f9b", + "oid": 207865680060, + "crossed": true, + "fee": "2.327895", + "tid": 894495548374961, + "cloid": "0x00000000000000000000001589000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107737.0", + "sz": "0.18555", + "side": "B", + "time": 1761023463230, + "startPosition": "-508.43451", + "dir": "Close Short", + "closedPnl": "935.32044", + "hash": "0x56c2ea947befa692583c042de435130207a7007a16e2c564fa8b95e73ae3807c", + "oid": 207865706729, + "crossed": true, + "fee": "4.198026", + "tid": 45251706085919, + "cloid": "0x00000000000000000000001589000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107737.0", + "sz": "0.18556", + "side": "B", + "time": 1761023466187, + "startPosition": "-508.24896", + "dir": "Close Short", + "closedPnl": "935.370848", + "hash": "0xf65bfc0234b3bdc1f7d5042de4353a0204b900e7cfb6dc949a24a754f3b797ac", + "oid": 207865747887, + "crossed": true, + "fee": "4.198252", + "tid": 659016515828067, + "cloid": "0x00000000000000000000001589000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107720.0", + "sz": "0.18558", + "side": "B", + "time": 1761023471035, + "startPosition": "-508.0634", + "dir": "Close Short", + "closedPnl": "938.626524", + "hash": "0xc05fd515e77b4f1fc1d9042de43578020f0f00fb827e6df164288068a67f290a", + "oid": 207865825453, + "crossed": true, + "fee": "4.198042", + "tid": 914917416196113, + "cloid": "0x00000000000000000000001589000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107710.0", + "sz": "0.1856", + "side": "B", + "time": 1761023473213, + "startPosition": "-507.87782", + "dir": "Close Short", + "closedPnl": "940.58368", + "hash": "0x040485ce361295c8057e042de4359202038700b3d115b49aa7cd3120f5166fb2", + "oid": 207865860117, + "crossed": true, + "fee": "4.198104", + "tid": 244230245681311, + "cloid": "0x00000000000000000000001589000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107705.0", + "sz": "0.18561", + "side": "B", + "time": 1761023474451, + "startPosition": "-507.69222", + "dir": "Close Short", + "closedPnl": "941.562408", + "hash": "0x42b5375afd742aaf442e042de435a3020358004098774981e67de2adbc780499", + "oid": 207865878556, + "crossed": true, + "fee": "4.198136", + "tid": 941097362293103, + "cloid": "0x00000000000000000000001589000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107704.0", + "sz": "0.18561", + "side": "B", + "time": 1761023475703, + "startPosition": "-507.50661", + "dir": "Close Short", + "closedPnl": "941.748018", + "hash": "0x21079b1a195181be2281042de435b202033b00ffb454a090c4d0466cd8555ba8", + "oid": 207865895531, + "crossed": true, + "fee": "4.198097", + "tid": 370260882022764, + "cloid": "0x00000000000000000000001589000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107703.0", + "sz": "0.18562", + "side": "B", + "time": 1761023477105, + "startPosition": "-507.321", + "dir": "Close Short", + "closedPnl": "941.984376", + "hash": "0xc91c543a75521e79ca96042de435c30208e6002010553d4b6ce4ff8d3455f864", + "oid": 207865917244, + "crossed": true, + "fee": "4.198284", + "tid": 469726751533231, + "cloid": "0x00000000000000000000001589000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107682.0", + "sz": "0.18563", + "side": "B", + "time": 1761023478332, + "startPosition": "-507.13538", + "dir": "Close Short", + "closedPnl": "945.933354", + "hash": "0x8d51ba53c180e5e38ecb042de435d50203c700395c8404b5311a65a68084bfce", + "oid": 207865938059, + "crossed": true, + "fee": "4.197692", + "tid": 80132387867657, + "cloid": "0x00000000000000000000001589000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107682.0", + "sz": "0.18564", + "side": "B", + "time": 1761023479628, + "startPosition": "-506.94975", + "dir": "Close Short", + "closedPnl": "945.984312", + "hash": "0x2af394ff71b266a32c6d042de435e502127200e50cb58575cebc405230b6408d", + "oid": 207865960415, + "crossed": true, + "fee": "4.197918", + "tid": 357800321545081, + "cloid": "0x00000000000000000000001589000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107682.0", + "sz": "0.18564", + "side": "B", + "time": 1761023481845, + "startPosition": "-506.76411", + "dir": "Close Short", + "closedPnl": "945.984312", + "hash": "0x3e41544c8b51d5c03fbb042de435fc02046900322654f492e209ff9f4a55afaa", + "oid": 207865982797, + "crossed": true, + "fee": "4.197918", + "tid": 450083211134130, + "cloid": "0x00000000000000000000001589000019", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107677.0", + "sz": "0.18565", + "side": "B", + "time": 1761023483259, + "startPosition": "-506.57847", + "dir": "Close Short", + "closedPnl": "946.96352", + "hash": "0x96427c8dc682727597bc042de4360f0201f50073618591473a0b27e085864c60", + "oid": 207866004629, + "crossed": true, + "fee": "4.197949", + "tid": 771190583359447, + "cloid": "0x00000000000000000000001589000020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107677.0", + "sz": "0.16319", + "side": "B", + "time": 1761023484524, + "startPosition": "-506.39282", + "dir": "Close Short", + "closedPnl": "832.399552", + "hash": "0x05297eca9ac7227406a3042de4361d02031300b035ca4146a8f22a1d59cafc5e", + "oid": 207866013978, + "crossed": true, + "fee": "3.69008", + "tid": 365921244182843, + "cloid": "0x00000000000000000000001589000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107677.0", + "sz": "0.02247", + "side": "B", + "time": 1761023484524, + "startPosition": "-506.22963", + "dir": "Close Short", + "closedPnl": "114.614976", + "hash": "0x05297eca9ac7227406a3042de4361d02031300b035ca4146a8f22a1d59cafc5e", + "oid": 207866013978, + "crossed": true, + "fee": "0.508095", + "tid": 595446507014399, + "cloid": "0x00000000000000000000001589000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107677.0", + "sz": "0.12655", + "side": "B", + "time": 1761023485668, + "startPosition": "-506.20716", + "dir": "Close Short", + "closedPnl": "645.50624", + "hash": "0x960ff2afd65136d39789042de4362b02016e0095715455a539d89e02955510be", + "oid": 207866018318, + "crossed": true, + "fee": "2.86157", + "tid": 36610953363621, + "cloid": "0x00000000000000000000001589000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107677.0", + "sz": "0.05911", + "side": "B", + "time": 1761023485668, + "startPosition": "-506.08061", + "dir": "Close Short", + "closedPnl": "301.508288", + "hash": "0x960ff2afd65136d39789042de4362b02016e0095715455a539d89e02955510be", + "oid": 207866018318, + "crossed": true, + "fee": "1.336605", + "tid": 319516017887596, + "cloid": "0x00000000000000000000001589000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107676.0", + "sz": "0.12499", + "side": "B", + "time": 1761023487265, + "startPosition": "-506.0215", + "dir": "Close Short", + "closedPnl": "637.673982", + "hash": "0x35b55ae4d796e075372f042de4363f02033e00ca7299ff47d97e0637969aba5f", + "oid": 207866030308, + "crossed": true, + "fee": "2.826268", + "tid": 844447637094360, + "cloid": "0x00000000000000000000001589000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107676.0", + "sz": "0.06067", + "side": "B", + "time": 1761023487265, + "startPosition": "-505.89651", + "dir": "Close Short", + "closedPnl": "309.526206", + "hash": "0x35b55ae4d796e075372f042de4363f02033e00ca7299ff47d97e0637969aba5f", + "oid": 207866030308, + "crossed": true, + "fee": "1.371867", + "tid": 799272610301312, + "cloid": "0x00000000000000000000001589000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107674.0", + "sz": "0.09768", + "side": "B", + "time": 1761023488411, + "startPosition": "-505.83584", + "dir": "Close Short", + "closedPnl": "498.539184", + "hash": "0x0edde4f53d95b91c1057042de4364b02036200dad898d7eeb2a69047fc999306", + "oid": 207866045187, + "crossed": true, + "fee": "2.208695", + "tid": 302991804475750, + "cloid": "0x00000000000000000000001589000024", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107674.0", + "sz": "0.08798", + "side": "B", + "time": 1761023488411, + "startPosition": "-505.73816", + "dir": "Close Short", + "closedPnl": "449.032324", + "hash": "0x0edde4f53d95b91c1057042de4364b02036200dad898d7eeb2a69047fc999306", + "oid": 207866045187, + "crossed": true, + "fee": "1.989363", + "tid": 54909441264354, + "cloid": "0x00000000000000000000001589000024", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107673.0", + "sz": "0.06512", + "side": "B", + "time": 1761023489863, + "startPosition": "-505.65018", + "dir": "Close Short", + "closedPnl": "332.424576", + "hash": "0x034979f4c73c297604c3042de4365a02028100da623f4848a712254786300360", + "oid": 207866060268, + "crossed": true, + "fee": "1.472449", + "tid": 190017647176139, + "cloid": "0x00000000000000000000001589000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107673.0", + "sz": "0.12054", + "side": "B", + "time": 1761023489863, + "startPosition": "-505.58506", + "dir": "Close Short", + "closedPnl": "615.332592", + "hash": "0x034979f4c73c297604c3042de4365a02028100da623f4848a712254786300360", + "oid": 207866060268, + "crossed": true, + "fee": "2.725569", + "tid": 1025531408695076, + "cloid": "0x00000000000000000000001589000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107673.0", + "sz": "0.06674", + "side": "B", + "time": 1761023491287, + "startPosition": "-505.46452", + "dir": "Close Short", + "closedPnl": "340.694352", + "hash": "0x788e94f2441ee6197a08042de436690202f400d7df1204eb1c5740450312c004", + "oid": 207866068702, + "crossed": true, + "fee": "1.50908", + "tid": 1070209329820948, + "cloid": "0x00000000000000000000001589000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107673.0", + "sz": "0.11892", + "side": "B", + "time": 1761023491287, + "startPosition": "-505.39778", + "dir": "Close Short", + "closedPnl": "607.062816", + "hash": "0x788e94f2441ee6197a08042de436690202f400d7df1204eb1c5740450312c004", + "oid": 207866068702, + "crossed": true, + "fee": "2.688939", + "tid": 291162589356017, + "cloid": "0x00000000000000000000001589000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107673.0", + "sz": "0.05204", + "side": "B", + "time": 1761023492805, + "startPosition": "-505.27886", + "dir": "Close Short", + "closedPnl": "265.653792", + "hash": "0xcdaf7a250db4e602cf29042de4367a020289000aa8b804d471782577ccb8bfed", + "oid": 207866087305, + "crossed": true, + "fee": "1.176693", + "tid": 680927380122520, + "cloid": "0x00000000000000000000001589000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107673.0", + "sz": "0.13362", + "side": "B", + "time": 1761023492805, + "startPosition": "-505.22682", + "dir": "Close Short", + "closedPnl": "682.103376", + "hash": "0xcdaf7a250db4e602cf29042de4367a020289000aa8b804d471782577ccb8bfed", + "oid": 207866087305, + "crossed": true, + "fee": "3.021325", + "tid": 282919798920715, + "cloid": "0x00000000000000000000001589000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107673.0", + "sz": "0.18566", + "side": "B", + "time": 1761023494110, + "startPosition": "-505.0932", + "dir": "Close Short", + "closedPnl": "947.757168", + "hash": "0x3504465916076d46367e042de436890201cb003eb10a8c18d8ccf1abd50b4730", + "oid": 207866101054, + "crossed": true, + "fee": "4.198019", + "tid": 787364607676570, + "cloid": "0x00000000000000000000001589000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107673.0", + "sz": "0.03599", + "side": "B", + "time": 1761023495717, + "startPosition": "-504.90754", + "dir": "Close Short", + "closedPnl": "183.721752", + "hash": "0x59de68b46f4c81b75b58042de4369a02026a009a0a4fa089fda714072e405ba1", + "oid": 207866118687, + "crossed": true, + "fee": "0.813781", + "tid": 118234754410799, + "cloid": "0x00000000000000000000001589000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107673.0", + "sz": "0.14967", + "side": "B", + "time": 1761023495717, + "startPosition": "-504.87155", + "dir": "Close Short", + "closedPnl": "764.035416", + "hash": "0x59de68b46f4c81b75b58042de4369a02026a009a0a4fa089fda714072e405ba1", + "oid": 207866118687, + "crossed": true, + "fee": "3.384237", + "tid": 632554985309102, + "cloid": "0x00000000000000000000001589000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107673.0", + "sz": "0.18566", + "side": "B", + "time": 1761023497122, + "startPosition": "-504.72188", + "dir": "Close Short", + "closedPnl": "947.757168", + "hash": "0xe49f0084c4f41271e618042de436ac0201a3006a5ff731438867abd783f7ec5c", + "oid": 207866133710, + "crossed": true, + "fee": "4.198019", + "tid": 646229635343347, + "cloid": "0x00000000000000000000001589000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107673.0", + "sz": "0.18566", + "side": "B", + "time": 1761023498350, + "startPosition": "-504.53622", + "dir": "Close Short", + "closedPnl": "947.757168", + "hash": "0xe65d2fe02e3672f7e7d6042de436be02017d00c5c93991c98a25db32ed3a4ce2", + "oid": 207866149235, + "crossed": true, + "fee": "4.198019", + "tid": 400584263483625, + "cloid": "0x00000000000000000000001589000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107670.0", + "sz": "0.18567", + "side": "B", + "time": 1761023499557, + "startPosition": "-504.35056", + "dir": "Close Short", + "closedPnl": "948.365226", + "hash": "0xd12c1b18029479d7d2a5042de436ce02046300fd9d9798a974f4c66ac19853c2", + "oid": 207866166052, + "crossed": true, + "fee": "4.198128", + "tid": 564526453045708, + "cloid": "0x00000000000000000000001589000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107670.0", + "sz": "0.09305", + "side": "B", + "time": 1761023500965, + "startPosition": "-504.16489", + "dir": "Close Short", + "closedPnl": "475.28079", + "hash": "0x182d9b69f1d81d7019a7042de436e10201d8004f8cdb3c42bbf646bcb0dbf75a", + "oid": 207866177987, + "crossed": true, + "fee": "2.103925", + "tid": 629417424046870, + "cloid": "0x00000000000000000000001589000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107670.0", + "sz": "0.04342", + "side": "B", + "time": 1761023500965, + "startPosition": "-504.07184", + "dir": "Close Short", + "closedPnl": "221.780676", + "hash": "0x182d9b69f1d81d7019a7042de436e10201d8004f8cdb3c42bbf646bcb0dbf75a", + "oid": 207866177987, + "crossed": true, + "fee": "0.981756", + "tid": 957553005211419, + "cloid": "0x00000000000000000000001589000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107670.0", + "sz": "0.04921", + "side": "B", + "time": 1761023500965, + "startPosition": "-504.02842", + "dir": "Close Short", + "closedPnl": "251.354838", + "hash": "0x182d9b69f1d81d7019a7042de436e10201d8004f8cdb3c42bbf646bcb0dbf75a", + "oid": 207866177987, + "crossed": true, + "fee": "1.112672", + "tid": 767314561069763, + "cloid": "0x00000000000000000000001589000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107662.0", + "sz": "0.18569", + "side": "B", + "time": 1761023502225, + "startPosition": "-503.97921", + "dir": "Close Short", + "closedPnl": "949.952902", + "hash": "0xadcf07141547ada6af48042de436f302064d00f9b04acc785197b266d44b8791", + "oid": 207866192300, + "crossed": true, + "fee": "4.198268", + "tid": 805407428672299, + "cloid": "0x00000000000000000000001589000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107662.0", + "sz": "0.04739", + "side": "B", + "time": 1761023503441, + "startPosition": "-503.79352", + "dir": "Close Short", + "closedPnl": "242.437762", + "hash": "0xe7a5d95853988bd8e91f042de437050202a0003dee9baaaa8b6e84ab129c65c3", + "oid": 207866205573, + "crossed": true, + "fee": "1.071441", + "tid": 344250968702047, + "cloid": "0x00000000000000000000001589000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107662.0", + "sz": "0.1383", + "side": "B", + "time": 1761023503441, + "startPosition": "-503.74613", + "dir": "Close Short", + "closedPnl": "707.51514", + "hash": "0xe7a5d95853988bd8e91f042de437050202a0003dee9baaaa8b6e84ab129c65c3", + "oid": 207866205573, + "crossed": true, + "fee": "3.126827", + "tid": 244820383812039, + "cloid": "0x00000000000000000000001589000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107659.0", + "sz": "0.1857", + "side": "B", + "time": 1761023504719, + "startPosition": "-503.60783", + "dir": "Close Short", + "closedPnl": "950.56116", + "hash": "0xe489e5d794e3515be603042de437180204de00bd2fe6702d8852912a53e72b46", + "oid": 207866221584, + "crossed": true, + "fee": "4.198378", + "tid": 1101990244230490, + "cloid": "0x00000000000000000000001589000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107659.0", + "sz": "0.16403", + "side": "B", + "time": 1761023505874, + "startPosition": "-503.42213", + "dir": "Close Short", + "closedPnl": "839.636764", + "hash": "0x3a58cfd5878ff4b33bd2042de4372902058300bb22831385de217b284683ce9d", + "oid": 207866231897, + "crossed": true, + "fee": "3.708454", + "tid": 86136722850911, + "cloid": "0x00000000000000000000001589000037", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107659.0", + "sz": "0.02167", + "side": "B", + "time": 1761023505874, + "startPosition": "-503.2581", + "dir": "Close Short", + "closedPnl": "110.924396", + "hash": "0x3a58cfd5878ff4b33bd2042de4372902058300bb22831385de217b284683ce9d", + "oid": 207866231897, + "crossed": true, + "fee": "0.489923", + "tid": 1031409741101649, + "cloid": "0x00000000000000000000001589000037", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107647.0", + "sz": "0.01899", + "side": "B", + "time": 1761023507164, + "startPosition": "-503.23643", + "dir": "Close Short", + "closedPnl": "97.433892", + "hash": "0xc4b214e2b4a9d57cc62b042de4373802039a00c84facf44e687ac03573adaf67", + "oid": 207866241576, + "crossed": true, + "fee": "0.429285", + "tid": 80222566887004, + "cloid": "0x00000000000000000000001589000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107647.0", + "sz": "0.16671", + "side": "B", + "time": 1761023507164, + "startPosition": "-503.21744", + "dir": "Close Short", + "closedPnl": "855.355668", + "hash": "0xc4b214e2b4a9d57cc62b042de4373802039a00c84facf44e687ac03573adaf67", + "oid": 207866241576, + "crossed": true, + "fee": "3.768624", + "tid": 551743352157476, + "cloid": "0x00000000000000000000001589000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107647.0", + "sz": "0.06996", + "side": "B", + "time": 1761023508361, + "startPosition": "-503.05073", + "dir": "Close Short", + "closedPnl": "358.950768", + "hash": "0x5376bcac0b2dc0df54f0042de437470202b70091a620dfb1f73f67feca219ac9", + "oid": 207866252014, + "crossed": true, + "fee": "1.581506", + "tid": 211980575648109, + "cloid": "0x00000000000000000000001589000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107647.0", + "sz": "0.11574", + "side": "B", + "time": 1761023508361, + "startPosition": "-502.98077", + "dir": "Close Short", + "closedPnl": "593.838792", + "hash": "0x5376bcac0b2dc0df54f0042de437470202b70091a620dfb1f73f67feca219ac9", + "oid": 207866252014, + "crossed": true, + "fee": "2.616403", + "tid": 952049935187777, + "cloid": "0x00000000000000000000001589000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107647.0", + "sz": "0.00464", + "side": "B", + "time": 1761023518751, + "startPosition": "-502.86503", + "dir": "Close Short", + "closedPnl": "23.806912", + "hash": "0xda7a7b03a5379000dbf4042de437b902064600e9403aaed27e432656643b69eb", + "oid": 207866303430, + "crossed": true, + "fee": "0.104891", + "tid": 40186703705349, + "cloid": "0x00000000000000000000001589000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107647.0", + "sz": "0.00011", + "side": "B", + "time": 1761023518751, + "startPosition": "-502.86039", + "dir": "Close Short", + "closedPnl": "0.564388", + "hash": "0xda7a7b03a5379000dbf4042de437b902064600e9403aaed27e432656643b69eb", + "oid": 207866303430, + "crossed": true, + "fee": "0.002486", + "tid": 757906222429602, + "cloid": "0x00000000000000000000001589000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107648.0", + "sz": "0.00011", + "side": "B", + "time": 1761023518751, + "startPosition": "-502.86028", + "dir": "Close Short", + "closedPnl": "0.564278", + "hash": "0xda7a7b03a5379000dbf4042de437b902064600e9403aaed27e432656643b69eb", + "oid": 207866303430, + "crossed": true, + "fee": "0.002486", + "tid": 978691776561099, + "cloid": "0x00000000000000000000001589000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107649.0", + "sz": "0.00011", + "side": "B", + "time": 1761023518751, + "startPosition": "-502.86017", + "dir": "Close Short", + "closedPnl": "0.564168", + "hash": "0xda7a7b03a5379000dbf4042de437b902064600e9403aaed27e432656643b69eb", + "oid": 207866303430, + "crossed": true, + "fee": "0.002486", + "tid": 831159738512267, + "cloid": "0x00000000000000000000001589000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107650.0", + "sz": "0.00011", + "side": "B", + "time": 1761023518751, + "startPosition": "-502.86006", + "dir": "Close Short", + "closedPnl": "0.564058", + "hash": "0xda7a7b03a5379000dbf4042de437b902064600e9403aaed27e432656643b69eb", + "oid": 207866303430, + "crossed": true, + "fee": "0.002486", + "tid": 372511777857096, + "cloid": "0x00000000000000000000001589000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107651.0", + "sz": "0.00011", + "side": "B", + "time": 1761023518751, + "startPosition": "-502.85995", + "dir": "Close Short", + "closedPnl": "0.563948", + "hash": "0xda7a7b03a5379000dbf4042de437b902064600e9403aaed27e432656643b69eb", + "oid": 207866303430, + "crossed": true, + "fee": "0.002486", + "tid": 411323844282791, + "cloid": "0x00000000000000000000001589000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107652.0", + "sz": "0.00014", + "side": "B", + "time": 1761023518751, + "startPosition": "-502.85984", + "dir": "Close Short", + "closedPnl": "0.717612", + "hash": "0xda7a7b03a5379000dbf4042de437b902064600e9403aaed27e432656643b69eb", + "oid": 207866303430, + "crossed": true, + "fee": "0.003164", + "tid": 1079095801137064, + "cloid": "0x00000000000000000000001589000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107652.0", + "sz": "0.00011", + "side": "B", + "time": 1761023518751, + "startPosition": "-502.8597", + "dir": "Close Short", + "closedPnl": "0.563838", + "hash": "0xda7a7b03a5379000dbf4042de437b902064600e9403aaed27e432656643b69eb", + "oid": 207866303430, + "crossed": true, + "fee": "0.002486", + "tid": 971977587873125, + "cloid": "0x00000000000000000000001589000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107653.0", + "sz": "0.00011", + "side": "B", + "time": 1761023518751, + "startPosition": "-502.85959", + "dir": "Close Short", + "closedPnl": "0.563728", + "hash": "0xda7a7b03a5379000dbf4042de437b902064600e9403aaed27e432656643b69eb", + "oid": 207866303430, + "crossed": true, + "fee": "0.002486", + "tid": 53046773623765, + "cloid": "0x00000000000000000000001589000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107654.0", + "sz": "0.00011", + "side": "B", + "time": 1761023518751, + "startPosition": "-502.85948", + "dir": "Close Short", + "closedPnl": "0.563618", + "hash": "0xda7a7b03a5379000dbf4042de437b902064600e9403aaed27e432656643b69eb", + "oid": 207866303430, + "crossed": true, + "fee": "0.002486", + "tid": 1004700363810310, + "cloid": "0x00000000000000000000001589000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107654.0", + "sz": "0.03599", + "side": "B", + "time": 1761023518751, + "startPosition": "-502.85937", + "dir": "Close Short", + "closedPnl": "184.405562", + "hash": "0xda7a7b03a5379000dbf4042de437b902064600e9403aaed27e432656643b69eb", + "oid": 207866303430, + "crossed": true, + "fee": "0.813638", + "tid": 731068083158060, + "cloid": "0x00000000000000000000001589000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107655.0", + "sz": "0.00011", + "side": "B", + "time": 1761023518751, + "startPosition": "-502.82338", + "dir": "Close Short", + "closedPnl": "0.563508", + "hash": "0xda7a7b03a5379000dbf4042de437b902064600e9403aaed27e432656643b69eb", + "oid": 207866303430, + "crossed": true, + "fee": "0.002486", + "tid": 727734974835431, + "cloid": "0x00000000000000000000001589000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107656.0", + "sz": "0.00011", + "side": "B", + "time": 1761023518751, + "startPosition": "-502.82327", + "dir": "Close Short", + "closedPnl": "0.563398", + "hash": "0xda7a7b03a5379000dbf4042de437b902064600e9403aaed27e432656643b69eb", + "oid": 207866303430, + "crossed": true, + "fee": "0.002486", + "tid": 431477912687904, + "cloid": "0x00000000000000000000001589000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107657.0", + "sz": "0.00014", + "side": "B", + "time": 1761023518751, + "startPosition": "-502.82316", + "dir": "Close Short", + "closedPnl": "0.716912", + "hash": "0xda7a7b03a5379000dbf4042de437b902064600e9403aaed27e432656643b69eb", + "oid": 207866303430, + "crossed": true, + "fee": "0.003165", + "tid": 629618279006454, + "cloid": "0x00000000000000000000001589000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107657.0", + "sz": "0.00011", + "side": "B", + "time": 1761023518751, + "startPosition": "-502.82302", + "dir": "Close Short", + "closedPnl": "0.563288", + "hash": "0xda7a7b03a5379000dbf4042de437b902064600e9403aaed27e432656643b69eb", + "oid": 207866303430, + "crossed": true, + "fee": "0.002486", + "tid": 941374302757536, + "cloid": "0x00000000000000000000001589000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107658.0", + "sz": "0.00011", + "side": "B", + "time": 1761023518751, + "startPosition": "-502.82291", + "dir": "Close Short", + "closedPnl": "0.563178", + "hash": "0xda7a7b03a5379000dbf4042de437b902064600e9403aaed27e432656643b69eb", + "oid": 207866303430, + "crossed": true, + "fee": "0.002486", + "tid": 658324409947100, + "cloid": "0x00000000000000000000001589000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107659.0", + "sz": "0.06976", + "side": "B", + "time": 1761023518751, + "startPosition": "-502.8228", + "dir": "Close Short", + "closedPnl": "357.087488", + "hash": "0xda7a7b03a5379000dbf4042de437b902064600e9403aaed27e432656643b69eb", + "oid": 207866303430, + "crossed": true, + "fee": "1.577161", + "tid": 748401456046306, + "cloid": "0x00000000000000000000001589000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107659.0", + "sz": "0.07371", + "side": "B", + "time": 1761023518751, + "startPosition": "-502.75304", + "dir": "Close Short", + "closedPnl": "377.306748", + "hash": "0xda7a7b03a5379000dbf4042de437b902064600e9403aaed27e432656643b69eb", + "oid": 207866303430, + "crossed": true, + "fee": "1.666464", + "tid": 59299847868280, + "cloid": "0x00000000000000000000001589000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107661.0", + "sz": "0.18568", + "side": "B", + "time": 1761023521410, + "startPosition": "-502.67933", + "dir": "Close Short", + "closedPnl": "950.087424", + "hash": "0xa817e271c131ad37a991042de437db0201dc00575c34cc094be08dc480358722", + "oid": 207866334296, + "crossed": true, + "fee": "4.198003", + "tid": 821473815733103, + "cloid": "0x00000000000000000000001589000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107661.0", + "sz": "0.18569", + "side": "B", + "time": 1761023526121, + "startPosition": "-502.49365", + "dir": "Close Short", + "closedPnl": "950.138592", + "hash": "0x28ec7dadc58036032a66042de4381a0201ee0093608354d5ccb5290084840fed", + "oid": 207866368603, + "crossed": true, + "fee": "4.198229", + "tid": 115472185210500, + "cloid": "0x00000000000000000000001589000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107649.0", + "sz": "0.18569", + "side": "B", + "time": 1761023527363, + "startPosition": "-502.30796", + "dir": "Close Short", + "closedPnl": "952.366872", + "hash": "0x452f4105c5e5ba6d46a8042de4382c02020a00eb60e8d93fe8f7ec5884e99457", + "oid": 207866383249, + "crossed": true, + "fee": "4.197761", + "tid": 534707651869426, + "cloid": "0x00000000000000000000001589000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107655.0", + "sz": "0.18569", + "side": "B", + "time": 1761023532165, + "startPosition": "-502.12227", + "dir": "Close Short", + "closedPnl": "951.252732", + "hash": "0x588b30c401df9e345a04042de4386b0201a600a99cd2bd06fc53dc16c0d3781e", + "oid": 207866457403, + "crossed": true, + "fee": "4.197995", + "tid": 551326109847289, + "cloid": "0x00000000000000000000001589000044", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107655.0", + "sz": "0.18569", + "side": "B", + "time": 1761023542173, + "startPosition": "-501.93658", + "dir": "Close Short", + "closedPnl": "951.252732", + "hash": "0x5415d6ba2b2e9a78558f042de438e902010d009fc621b94af7de820cea227462", + "oid": 207866550848, + "crossed": true, + "fee": "4.197995", + "tid": 568293781942653, + "cloid": "0x00000000000000000000001589000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107634.0", + "sz": "0.04598", + "side": "B", + "time": 1761023545225, + "startPosition": "-501.75089", + "dir": "Close Short", + "closedPnl": "236.511924", + "hash": "0x9047e3d65a7ce3a191c1042de4390a020c6500bbf570027334108f291970bd8c", + "oid": 207866592892, + "crossed": true, + "fee": "1.039292", + "tid": 796692960727427, + "cloid": "0x00000000000000000000001589000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107634.0", + "sz": "0.05036", + "side": "B", + "time": 1761023545225, + "startPosition": "-501.70491", + "dir": "Close Short", + "closedPnl": "259.041768", + "hash": "0x9047e3d65a7ce3a191c1042de4390a020c6500bbf570027334108f291970bd8c", + "oid": 207866592892, + "crossed": true, + "fee": "1.138294", + "tid": 1007544257108638, + "cloid": "0x00000000000000000000001589000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107634.0", + "sz": "0.04417", + "side": "B", + "time": 1761023545225, + "startPosition": "-501.65455", + "dir": "Close Short", + "closedPnl": "227.201646", + "hash": "0x9047e3d65a7ce3a191c1042de4390a020c6500bbf570027334108f291970bd8c", + "oid": 207866592892, + "crossed": true, + "fee": "0.99838", + "tid": 499717524617062, + "cloid": "0x00000000000000000000001589000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107634.0", + "sz": "0.04519", + "side": "B", + "time": 1761023545225, + "startPosition": "-501.61038", + "dir": "Close Short", + "closedPnl": "232.448322", + "hash": "0x9047e3d65a7ce3a191c1042de4390a020c6500bbf570027334108f291970bd8c", + "oid": 207866592892, + "crossed": true, + "fee": "1.021435", + "tid": 804299802930367, + "cloid": "0x00000000000000000000001589000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107614.0", + "sz": "0.03631", + "side": "B", + "time": 1761023546568, + "startPosition": "-501.56519", + "dir": "Close Short", + "closedPnl": "187.497578", + "hash": "0x3700f8bdd2c28ff6387a042de4391b02071d00a36dc5aec8dac9a41091c669e0", + "oid": 207866617337, + "crossed": true, + "fee": "0.820567", + "tid": 69449486497985, + "cloid": "0x00000000000000000000001589000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107614.0", + "sz": "0.14946", + "side": "B", + "time": 1761023546568, + "startPosition": "-501.52888", + "dir": "Close Short", + "closedPnl": "771.781548", + "hash": "0x3700f8bdd2c28ff6387a042de4391b02071d00a36dc5aec8dac9a41091c669e0", + "oid": 207866617337, + "crossed": true, + "fee": "3.377637", + "tid": 281836648551366, + "cloid": "0x00000000000000000000001589000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107614.0", + "sz": "0.12937", + "side": "B", + "time": 1761023547786, + "startPosition": "-501.37942", + "dir": "Close Short", + "closedPnl": "668.040806", + "hash": "0x399c64c59a492d023b16042de4392b02060500ab354c4bd4dd651018594d06ec", + "oid": 207866638405, + "crossed": true, + "fee": "2.923624", + "tid": 484326968445270, + "cloid": "0x00000000000000000000001589000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107614.0", + "sz": "0.03889", + "side": "B", + "time": 1761023547786, + "startPosition": "-501.25005", + "dir": "Close Short", + "closedPnl": "200.820182", + "hash": "0x399c64c59a492d023b16042de4392b02060500ab354c4bd4dd651018594d06ec", + "oid": 207866638405, + "crossed": true, + "fee": "0.878872", + "tid": 995024222762401, + "cloid": "0x00000000000000000000001589000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107614.0", + "sz": "0.01751", + "side": "B", + "time": 1761023547786, + "startPosition": "-501.21116", + "dir": "Close Short", + "closedPnl": "90.418138", + "hash": "0x399c64c59a492d023b16042de4392b02060500ab354c4bd4dd651018594d06ec", + "oid": 207866638405, + "crossed": true, + "fee": "0.395707", + "tid": 228728745208698, + "cloid": "0x00000000000000000000001589000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107612.0", + "sz": "0.18578", + "side": "B", + "time": 1761023549070, + "startPosition": "-501.19365", + "dir": "Close Short", + "closedPnl": "959.702324", + "hash": "0xdd4620873b321599debf042de4393c0201d7006cd635346b810ecbd9fa35ef84", + "oid": 207866652510, + "crossed": true, + "fee": "4.198353", + "tid": 1001030931625015, + "cloid": "0x00000000000000000000001589000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107586.0", + "sz": "0.05689", + "side": "B", + "time": 1761023552903, + "startPosition": "-501.00787", + "dir": "Close Short", + "closedPnl": "295.361502", + "hash": "0x419783a7c9cb03984311042de439680217cc008d64ce226ae5602efa88cedd82", + "oid": 207866711364, + "crossed": true, + "fee": "1.285319", + "tid": 312642747166742, + "cloid": "0x00000000000000000000001589000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107588.0", + "sz": "0.01354", + "side": "B", + "time": 1761023552903, + "startPosition": "-500.95098", + "dir": "Close Short", + "closedPnl": "70.269892", + "hash": "0x419783a7c9cb03984311042de439680217cc008d64ce226ae5602efa88cedd82", + "oid": 207866711364, + "crossed": true, + "fee": "0.305915", + "tid": 307838493484465, + "cloid": "0x00000000000000000000001589000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107589.0", + "sz": "0.01845", + "side": "B", + "time": 1761023552903, + "startPosition": "-500.93744", + "dir": "Close Short", + "closedPnl": "95.73336", + "hash": "0x419783a7c9cb03984311042de439680217cc008d64ce226ae5602efa88cedd82", + "oid": 207866711364, + "crossed": true, + "fee": "0.416853", + "tid": 817490915345026, + "cloid": "0x00000000000000000000001589000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107589.0", + "sz": "0.03443", + "side": "B", + "time": 1761023552903, + "startPosition": "-500.91899", + "dir": "Close Short", + "closedPnl": "178.650384", + "hash": "0x419783a7c9cb03984311042de439680217cc008d64ce226ae5602efa88cedd82", + "oid": 207866711364, + "crossed": true, + "fee": "0.7779", + "tid": 916038298445081, + "cloid": "0x00000000000000000000001589000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107590.0", + "sz": "0.01845", + "side": "B", + "time": 1761023552903, + "startPosition": "-500.88456", + "dir": "Close Short", + "closedPnl": "95.71491", + "hash": "0x419783a7c9cb03984311042de439680217cc008d64ce226ae5602efa88cedd82", + "oid": 207866711364, + "crossed": true, + "fee": "0.416857", + "tid": 580996705880191, + "cloid": "0x00000000000000000000001589000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107590.0", + "sz": "0.04406", + "side": "B", + "time": 1761023552903, + "startPosition": "-500.86611", + "dir": "Close Short", + "closedPnl": "228.574468", + "hash": "0x419783a7c9cb03984311042de439680217cc008d64ce226ae5602efa88cedd82", + "oid": 207866711364, + "crossed": true, + "fee": "0.995487", + "tid": 913562224821715, + "cloid": "0x00000000000000000000001589000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107565.0", + "sz": "0.00049", + "side": "B", + "time": 1761023555041, + "startPosition": "-500.82205", + "dir": "Close Short", + "closedPnl": "2.554272", + "hash": "0x77243cdc140fce68789d042de4398002059800c1af02ed3a1aece82ed303a853", + "oid": 207866738111, + "crossed": true, + "fee": "0.011068", + "tid": 286305838761116, + "cloid": "0x00000000000000000000001589000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107565.0", + "sz": "0.01896", + "side": "B", + "time": 1761023555041, + "startPosition": "-500.82156", + "dir": "Close Short", + "closedPnl": "98.834688", + "hash": "0x77243cdc140fce68789d042de4398002059800c1af02ed3a1aece82ed303a853", + "oid": 207866738111, + "crossed": true, + "fee": "0.42828", + "tid": 811909482017995, + "cloid": "0x00000000000000000000001589000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107565.0", + "sz": "0.16639", + "side": "B", + "time": 1761023555041, + "startPosition": "-500.8026", + "dir": "Close Short", + "closedPnl": "867.357792", + "hash": "0x77243cdc140fce68789d042de4398002059800c1af02ed3a1aece82ed303a853", + "oid": 207866738111, + "crossed": true, + "fee": "3.758525", + "tid": 430428184637718, + "cloid": "0x00000000000000000000001589000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107565.0", + "sz": "0.18589", + "side": "B", + "time": 1761023560547, + "startPosition": "-500.63621", + "dir": "Close Short", + "closedPnl": "969.007392", + "hash": "0x7ccebd1e9780395e7e48042de439c00211500004328358302097687156841349", + "oid": 207866800405, + "crossed": true, + "fee": "4.199004", + "tid": 22013129821955, + "cloid": "0x00000000000000000000001589000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107526.0", + "sz": "0.004", + "side": "B", + "time": 1761023561974, + "startPosition": "-500.45032", + "dir": "Close Short", + "closedPnl": "21.0072", + "hash": "0x1827edaeaf7df79319a1042de439cf02099c00944a711665bbf099016e71d17d", + "oid": 207866825805, + "crossed": true, + "fee": "0.090321", + "tid": 204807850753936, + "cloid": "0x00000000000000000000001589000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107526.0", + "sz": "0.17617", + "side": "B", + "time": 1761023561974, + "startPosition": "-500.44632", + "dir": "Close Short", + "closedPnl": "925.209606", + "hash": "0x1827edaeaf7df79319a1042de439cf02099c00944a711665bbf099016e71d17d", + "oid": 207866825805, + "crossed": true, + "fee": "3.977999", + "tid": 388614171807198, + "cloid": "0x00000000000000000000001589000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107526.0", + "sz": "0.00047", + "side": "B", + "time": 1761023561974, + "startPosition": "-500.27015", + "dir": "Close Short", + "closedPnl": "2.468346", + "hash": "0x1827edaeaf7df79319a1042de439cf02099c00944a711665bbf099016e71d17d", + "oid": 207866825805, + "crossed": true, + "fee": "0.010612", + "tid": 1093987144740331, + "cloid": "0x00000000000000000000001589000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107533.0", + "sz": "0.00528", + "side": "B", + "time": 1761023561974, + "startPosition": "-500.26968", + "dir": "Close Short", + "closedPnl": "27.692544", + "hash": "0x1827edaeaf7df79319a1042de439cf02099c00944a711665bbf099016e71d17d", + "oid": 207866825805, + "crossed": true, + "fee": "0.119232", + "tid": 819247071950972, + "cloid": "0x00000000000000000000001589000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107547.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.2644", + "dir": "Close Short", + "closedPnl": "0.575388", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 676540665681686, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107548.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26429", + "dir": "Close Short", + "closedPnl": "0.575278", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 1048809899746034, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107549.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26418", + "dir": "Close Short", + "closedPnl": "0.575168", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 665276863171046, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107550.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26407", + "dir": "Close Short", + "closedPnl": "0.575058", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 904388465003931, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107551.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26396", + "dir": "Close Short", + "closedPnl": "0.574948", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 608552962590887, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107552.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26385", + "dir": "Close Short", + "closedPnl": "0.574838", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 534592895924390, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107553.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26374", + "dir": "Close Short", + "closedPnl": "0.574728", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 79744018732329, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107554.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26363", + "dir": "Close Short", + "closedPnl": "0.574618", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 204238335218986, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107555.0", + "sz": "0.00018", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26352", + "dir": "Close Short", + "closedPnl": "0.940104", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.004065", + "tid": 949981471647907, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107555.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26334", + "dir": "Close Short", + "closedPnl": "0.574508", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 356162550607545, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107556.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26323", + "dir": "Close Short", + "closedPnl": "0.574398", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 961245734615929, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107557.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26312", + "dir": "Close Short", + "closedPnl": "0.574288", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 812654513471234, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107558.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26301", + "dir": "Close Short", + "closedPnl": "0.574178", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 964147766741780, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107559.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.2629", + "dir": "Close Short", + "closedPnl": "0.574068", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 984115487141877, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107560.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26279", + "dir": "Close Short", + "closedPnl": "0.573958", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 940259341126219, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107561.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26268", + "dir": "Close Short", + "closedPnl": "0.573848", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 335679147411511, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107562.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26257", + "dir": "Close Short", + "closedPnl": "0.573738", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 467748220913513, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107563.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26246", + "dir": "Close Short", + "closedPnl": "0.573628", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 1032922756050049, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107564.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26235", + "dir": "Close Short", + "closedPnl": "0.573518", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 115510963690662, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107565.0", + "sz": "0.00019", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26224", + "dir": "Close Short", + "closedPnl": "0.990432", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.004291", + "tid": 213630541893375, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107565.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26205", + "dir": "Close Short", + "closedPnl": "0.573408", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 841876461444584, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107566.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26194", + "dir": "Close Short", + "closedPnl": "0.573298", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 917652198915925, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107567.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26183", + "dir": "Close Short", + "closedPnl": "0.573188", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 664339999905524, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107568.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26172", + "dir": "Close Short", + "closedPnl": "0.573078", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 949283813695135, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107570.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26161", + "dir": "Close Short", + "closedPnl": "0.572858", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 1113805306373340, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107571.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.2615", + "dir": "Close Short", + "closedPnl": "0.572748", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 799263918360517, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107572.0", + "sz": "0.00011", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26139", + "dir": "Close Short", + "closedPnl": "0.572638", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "0.002484", + "tid": 704557558720473, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107573.0", + "sz": "0.18274", + "side": "B", + "time": 1761023564336, + "startPosition": "-500.26128", + "dir": "Close Short", + "closedPnl": "951.125152", + "hash": "0xc04610f7074edaabc1bf042de439e70208a900dca241f97d640ebc49c642b496", + "oid": 207866871228, + "crossed": true, + "fee": "4.128156", + "tid": 362394997136716, + "cloid": "0x00000000000000000000001589000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107573.0", + "sz": "0.02684", + "side": "B", + "time": 1761023575169, + "startPosition": "-500.07854", + "dir": "Close Short", + "closedPnl": "139.696832", + "hash": "0x02518f53d5b37c7503cb042de43a6b020194003970b69b47a61a3aa694b7565f", + "oid": 207866987006, + "crossed": true, + "fee": "0.606324", + "tid": 1085990174892263, + "cloid": "0x00000000000000000000001589000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107573.0", + "sz": "0.02703", + "side": "B", + "time": 1761023575169, + "startPosition": "-500.0517", + "dir": "Close Short", + "closedPnl": "140.685744", + "hash": "0x02518f53d5b37c7503cb042de43a6b020194003970b69b47a61a3aa694b7565f", + "oid": 207866987006, + "crossed": true, + "fee": "0.610616", + "tid": 514888126936137, + "cloid": "0x00000000000000000000001589000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107573.0", + "sz": "0.1125", + "side": "B", + "time": 1761023575169, + "startPosition": "-500.02467", + "dir": "Close Short", + "closedPnl": "585.54", + "hash": "0x02518f53d5b37c7503cb042de43a6b020194003970b69b47a61a3aa694b7565f", + "oid": 207866987006, + "crossed": true, + "fee": "2.541412", + "tid": 1031555149685573, + "cloid": "0x00000000000000000000001589000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107573.0", + "sz": "0.01946", + "side": "B", + "time": 1761023575169, + "startPosition": "-499.91217", + "dir": "Close Short", + "closedPnl": "101.285408", + "hash": "0x02518f53d5b37c7503cb042de43a6b020194003970b69b47a61a3aa694b7565f", + "oid": 207866987006, + "crossed": true, + "fee": "0.439607", + "tid": 774505388083331, + "cloid": "0x00000000000000000000001589000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107574.0", + "sz": "0.00011", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.89271", + "dir": "Close Short", + "closedPnl": "0.572418", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.002484", + "tid": 895710450493396, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107575.0", + "sz": "0.00011", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.8926", + "dir": "Close Short", + "closedPnl": "0.572308", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.002484", + "tid": 328686996044366, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107576.0", + "sz": "0.00011", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.89249", + "dir": "Close Short", + "closedPnl": "0.572198", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.002485", + "tid": 624168078456765, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107577.0", + "sz": "0.00011", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.89238", + "dir": "Close Short", + "closedPnl": "0.572088", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.002485", + "tid": 815677911733529, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107578.0", + "sz": "0.00011", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.89227", + "dir": "Close Short", + "closedPnl": "0.571978", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.002485", + "tid": 134673814882099, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107579.0", + "sz": "0.00011", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.89216", + "dir": "Close Short", + "closedPnl": "0.571868", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.002485", + "tid": 945024097214396, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107579.0", + "sz": "0.00014", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.89205", + "dir": "Close Short", + "closedPnl": "0.727832", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.003162", + "tid": 606699531993353, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107580.0", + "sz": "0.00011", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.89191", + "dir": "Close Short", + "closedPnl": "0.571758", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.002485", + "tid": 644503739477151, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107581.0", + "sz": "0.00011", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.8918", + "dir": "Close Short", + "closedPnl": "0.571648", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.002485", + "tid": 171960013427967, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107582.0", + "sz": "0.00011", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.89169", + "dir": "Close Short", + "closedPnl": "0.571538", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.002485", + "tid": 14469475123559, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107583.0", + "sz": "0.00011", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.89158", + "dir": "Close Short", + "closedPnl": "0.571428", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.002485", + "tid": 832700798721138, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107583.0", + "sz": "0.00014", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.89147", + "dir": "Close Short", + "closedPnl": "0.727272", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.003162", + "tid": 226960111026641, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107584.0", + "sz": "0.00011", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.89133", + "dir": "Close Short", + "closedPnl": "0.571318", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.002485", + "tid": 1052722431091116, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107585.0", + "sz": "0.00011", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.89122", + "dir": "Close Short", + "closedPnl": "0.571208", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.002485", + "tid": 677838366846922, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107586.0", + "sz": "0.00011", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.89111", + "dir": "Close Short", + "closedPnl": "0.571098", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.002485", + "tid": 909350164875246, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107587.0", + "sz": "0.00011", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.891", + "dir": "Close Short", + "closedPnl": "0.570988", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.002485", + "tid": 227946637633882, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107587.0", + "sz": "0.00014", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.89089", + "dir": "Close Short", + "closedPnl": "0.726712", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.003163", + "tid": 667677992948285, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107588.0", + "sz": "0.00018", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.89075", + "dir": "Close Short", + "closedPnl": "0.934164", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.004066", + "tid": 11633084704474, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107588.0", + "sz": "0.00011", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.89057", + "dir": "Close Short", + "closedPnl": "0.570878", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.002485", + "tid": 547424629791892, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107588.0", + "sz": "0.03599", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.89046", + "dir": "Close Short", + "closedPnl": "186.780902", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.813139", + "tid": 242446078915264, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107589.0", + "sz": "0.00011", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.85447", + "dir": "Close Short", + "closedPnl": "0.570768", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.002485", + "tid": 610421373235440, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107590.0", + "sz": "0.00278", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.85436", + "dir": "Close Short", + "closedPnl": "14.422084", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.062811", + "tid": 391156201710573, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107590.0", + "sz": "0.00011", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.85158", + "dir": "Close Short", + "closedPnl": "0.570658", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.002485", + "tid": 547202943995207, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107590.0", + "sz": "0.13937", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.85147", + "dir": "Close Short", + "closedPnl": "723.023686", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "3.148911", + "tid": 536591174159999, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107590.0", + "sz": "0.00521", + "side": "B", + "time": 1761023579668, + "startPosition": "-499.7121", + "dir": "Close Short", + "closedPnl": "27.028438", + "hash": "0x1574bb3f11240ea016ee042de43aa5020cc10024ac272d72b93d6691d027e88a", + "oid": 207867046298, + "crossed": true, + "fee": "0.117714", + "tid": 554176009535039, + "cloid": "0x00000000000000000000001589000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107576.0", + "sz": "0.02522", + "side": "B", + "time": 1761023582270, + "startPosition": "-499.70689", + "dir": "Close Short", + "closedPnl": "131.189396", + "hash": "0xdc645319f6993bccddde042de43ac20206df00ff919c5a9e802cfe6cb59d15b7", + "oid": 207867086386, + "crossed": true, + "fee": "0.569744", + "tid": 455820570698311, + "cloid": "0x00000000000000000000001589000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107576.0", + "sz": "0.14849", + "side": "B", + "time": 1761023582270, + "startPosition": "-499.68167", + "dir": "Close Short", + "closedPnl": "772.415282", + "hash": "0xdc645319f6993bccddde042de43ac20206df00ff919c5a9e802cfe6cb59d15b7", + "oid": 207867086386, + "crossed": true, + "fee": "3.354531", + "tid": 578746362554928, + "cloid": "0x00000000000000000000001589000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107576.0", + "sz": "0.01211", + "side": "B", + "time": 1761023582270, + "startPosition": "-499.53318", + "dir": "Close Short", + "closedPnl": "62.993798", + "hash": "0xdc645319f6993bccddde042de43ac20206df00ff919c5a9e802cfe6cb59d15b7", + "oid": 207867086386, + "crossed": true, + "fee": "0.273576", + "tid": 532629357200571, + "cloid": "0x00000000000000000000001589000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107545.0", + "sz": "0.18585", + "side": "B", + "time": 1761023584595, + "startPosition": "-499.52107", + "dir": "Close Short", + "closedPnl": "972.51588", + "hash": "0xf4657b0552a2d420f5df042de43ae102066d00eaeda5f2f3982e265811a6ae0b", + "oid": 207867117026, + "crossed": true, + "fee": "4.19732", + "tid": 298986524183437, + "cloid": "0x00000000000000000000001589000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107545.0", + "sz": "0.18588", + "side": "B", + "time": 1761023585894, + "startPosition": "-499.33522", + "dir": "Close Short", + "closedPnl": "972.672864", + "hash": "0xe57b26a0d3eeff67e6f4042de43af30203c700866ee21e398943d1f392e2d952", + "oid": 207867135796, + "crossed": true, + "fee": "4.197997", + "tid": 1112985301891956, + "cloid": "0x00000000000000000000001589000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107564.0", + "sz": "0.00011", + "side": "B", + "time": 1761023588449, + "startPosition": "-499.14934", + "dir": "Close Short", + "closedPnl": "0.573518", + "hash": "0xf2ab65b287f0a004f425042de43b15020786009822f3bed79674110546f479ef", + "oid": 207867173738, + "crossed": true, + "fee": "0.002484", + "tid": 638685016178896, + "cloid": "0x00000000000000000000001589000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107565.0", + "sz": "0.00011", + "side": "B", + "time": 1761023588449, + "startPosition": "-499.14923", + "dir": "Close Short", + "closedPnl": "0.573408", + "hash": "0xf2ab65b287f0a004f425042de43b15020786009822f3bed79674110546f479ef", + "oid": 207867173738, + "crossed": true, + "fee": "0.002484", + "tid": 498702590055431, + "cloid": "0x00000000000000000000001589000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107570.0", + "sz": "0.18566", + "side": "B", + "time": 1761023588449, + "startPosition": "-499.14912", + "dir": "Close Short", + "closedPnl": "966.880148", + "hash": "0xf2ab65b287f0a004f425042de43b15020786009822f3bed79674110546f479ef", + "oid": 207867173738, + "crossed": true, + "fee": "4.194003", + "tid": 376326053031219, + "cloid": "0x00000000000000000000001589000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107574.0", + "sz": "0.18583", + "side": "B", + "time": 1761023599785, + "startPosition": "-498.96346", + "dir": "Close Short", + "closedPnl": "967.022154", + "hash": "0xfb6a23de5e02a80bfce3042de43b9b02017100c3f905c6de9f32cf311d0681f6", + "oid": 207867279820, + "crossed": true, + "fee": "4.198", + "tid": 25591957824450, + "cloid": "0x00000000000000000000001589000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107574.0", + "sz": "0.18583", + "side": "B", + "time": 1761023602421, + "startPosition": "-498.77763", + "dir": "Close Short", + "closedPnl": "967.022154", + "hash": "0xffc39d77bf503376013d042de43bbd020324005d5a535249a38c48ca7e540d61", + "oid": 207867293875, + "crossed": true, + "fee": "4.198", + "tid": 930316856829582, + "cloid": "0x00000000000000000000001589000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107614.0", + "sz": "0.18581", + "side": "B", + "time": 1761023605928, + "startPosition": "-498.5918", + "dir": "Close Short", + "closedPnl": "959.485678", + "hash": "0xea702d656823eac7ebe9042de43bec02090e004b032709998e38d8b82727c4b2", + "oid": 207867337342, + "crossed": true, + "fee": "4.199109", + "tid": 258624589201489, + "cloid": "0x00000000000000000000001589000063", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107625.0", + "sz": "0.18572", + "side": "B", + "time": 1761023610570, + "startPosition": "-498.40599", + "dir": "Close Short", + "closedPnl": "956.978016", + "hash": "0x273cbebc40ee48c228b6042de43c24020f6200a1dbe16794cb056a0effe222ac", + "oid": 207867419494, + "crossed": true, + "fee": "4.197504", + "tid": 322409681595625, + "cloid": "0x00000000000000000000001589000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107659.0", + "sz": "0.1857", + "side": "B", + "time": 1761023612438, + "startPosition": "-498.22027", + "dir": "Close Short", + "closedPnl": "950.56116", + "hash": "0x805360559d1eaafd81cd042de43c3a020c2f003b3811c9cf241c0ba85c1284e8", + "oid": 207867470034, + "crossed": true, + "fee": "4.198378", + "tid": 675594957582345, + "cloid": "0x00000000000000000000001589000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107666.0", + "sz": "0.1857", + "side": "B", + "time": 1761023613977, + "startPosition": "-498.03457", + "dir": "Close Short", + "closedPnl": "949.26126", + "hash": "0x990117683a1c49779a7a042de43c4e02031b004dd51f68493cc9c2baf9102362", + "oid": 207867494353, + "crossed": true, + "fee": "4.198651", + "tid": 288148853378500, + "cloid": "0x00000000000000000000001589000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107667.0", + "sz": "0.18567", + "side": "B", + "time": 1761023616226, + "startPosition": "-497.84887", + "dir": "Close Short", + "closedPnl": "948.922236", + "hash": "0xf3c3796a7630d5f3f53d042de43c6802042b00501133f4c6978c24bd3534afde", + "oid": 207867529927, + "crossed": true, + "fee": "4.198011", + "tid": 830220123987920, + "cloid": "0x00000000000000000000001589000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107667.0", + "sz": "0.18567", + "side": "B", + "time": 1761023621674, + "startPosition": "-497.6632", + "dir": "Close Short", + "closedPnl": "948.922236", + "hash": "0xc6959a532bfc5537c80f042de43c9f0202940038c6ff74096a5e45a5eaf02f22", + "oid": 207867581452, + "crossed": true, + "fee": "4.198011", + "tid": 557495243558578, + "cloid": "0x00000000000000000000001589000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107667.0", + "sz": "0.18567", + "side": "B", + "time": 1761023631737, + "startPosition": "-497.47753", + "dir": "Close Short", + "closedPnl": "948.922236", + "hash": "0x8f766fdfaf9ac41e90f0042de43d1202015f00c54a9de2f0333f1b326e9e9e09", + "oid": 207867685160, + "crossed": true, + "fee": "4.198011", + "tid": 46704394640022, + "cloid": "0x00000000000000000000001589000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107676.0", + "sz": "0.18567", + "side": "B", + "time": 1761023641666, + "startPosition": "-497.29186", + "dir": "Close Short", + "closedPnl": "947.251206", + "hash": "0x65bba5c98efa1eb36735042de43d96020b3100af29fd3d850984511c4dfdf89e", + "oid": 207867753960, + "crossed": true, + "fee": "4.198362", + "tid": 575457192525332, + "cloid": "0x00000000000000000000001589000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107677.0", + "sz": "0.18566", + "side": "B", + "time": 1761023645100, + "startPosition": "-497.10619", + "dir": "Close Short", + "closedPnl": "947.014528", + "hash": "0xe93bdcf89be24222eab5042de43db80205ae00de36e560f48d04884b5ae61c0d", + "oid": 207867789961, + "crossed": true, + "fee": "4.198175", + "tid": 263910879879667, + "cloid": "0x00000000000000000000001589000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107654.0", + "sz": "0.1125", + "side": "B", + "time": 1761023654972, + "startPosition": "-496.92053", + "dir": "Close Short", + "closedPnl": "576.4275", + "hash": "0xf35bf382a4b59973f4d5042de43e2f02023000683fb8b84697249ed563b9735e", + "oid": 207867924797, + "crossed": true, + "fee": "2.543325", + "tid": 797037652918138, + "cloid": "0x00000000000000000000001589000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107654.0", + "sz": "0.02363", + "side": "B", + "time": 1761023654972, + "startPosition": "-496.80803", + "dir": "Close Short", + "closedPnl": "121.075394", + "hash": "0xf35bf382a4b59973f4d5042de43e2f02023000683fb8b84697249ed563b9735e", + "oid": 207867924797, + "crossed": true, + "fee": "0.534211", + "tid": 262175721435392, + "cloid": "0x00000000000000000000001589000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107654.0", + "sz": "0.04955", + "side": "B", + "time": 1761023654972, + "startPosition": "-496.7844", + "dir": "Close Short", + "closedPnl": "253.88429", + "hash": "0xf35bf382a4b59973f4d5042de43e2f02023000683fb8b84697249ed563b9735e", + "oid": 207867924797, + "crossed": true, + "fee": "1.120193", + "tid": 941075281585607, + "cloid": "0x00000000000000000000001589000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107653.0", + "sz": "0.12196", + "side": "B", + "time": 1761023656188, + "startPosition": "-496.73485", + "dir": "Close Short", + "closedPnl": "625.020608", + "hash": "0x7a0f32fbcd3bfb507b88042de43e3d02053200e1683f1a221dd7de4e8c3fd53b", + "oid": 207867949024, + "crossed": true, + "fee": "2.757165", + "tid": 185293664697474, + "cloid": "0x00000000000000000000001589000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107653.0", + "sz": "0.06376", + "side": "B", + "time": 1761023656188, + "startPosition": "-496.61289", + "dir": "Close Short", + "closedPnl": "326.757248", + "hash": "0x7a0f32fbcd3bfb507b88042de43e3d02053200e1683f1a221dd7de4e8c3fd53b", + "oid": 207867949024, + "crossed": true, + "fee": "1.44143", + "tid": 543187203545034, + "cloid": "0x00000000000000000000001589000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107649.0", + "sz": "0.07448", + "side": "B", + "time": 1761023657449, + "startPosition": "-496.54913", + "dir": "Close Short", + "closedPnl": "381.993024", + "hash": "0x702df5c10cc6766471a7042de43e4c02040800a6a7c9953613f6a113cbca504f", + "oid": 207867966083, + "crossed": true, + "fee": "1.683716", + "tid": 741012616940639, + "cloid": "0x00000000000000000000001589000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107649.0", + "sz": "0.11125", + "side": "B", + "time": 1761023657449, + "startPosition": "-496.47465", + "dir": "Close Short", + "closedPnl": "570.579", + "hash": "0x702df5c10cc6766471a7042de43e4c02040800a6a7c9953613f6a113cbca504f", + "oid": 207867966083, + "crossed": true, + "fee": "2.514949", + "tid": 52932583695247, + "cloid": "0x00000000000000000000001589000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107646.0", + "sz": "0.18573", + "side": "B", + "time": 1761023658735, + "startPosition": "-496.3634", + "dir": "Close Short", + "closedPnl": "953.129214", + "hash": "0xb5545bff176ce47cb6ce042de43e5d02022d00e4b260034e591d0751d660be67", + "oid": 207867980693, + "crossed": true, + "fee": "4.198549", + "tid": 309922321086286, + "cloid": "0x00000000000000000000001589000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107640.0", + "sz": "0.18573", + "side": "B", + "time": 1761023660117, + "startPosition": "-496.17767", + "dir": "Close Short", + "closedPnl": "954.243594", + "hash": "0x3da34f172aabf6ae3f1d042de43e6c0202f600fcc5af1580e16bfa69e9afd098", + "oid": 207867998363, + "crossed": true, + "fee": "4.198315", + "tid": 116398323317998, + "cloid": "0x00000000000000000000001589000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107640.0", + "sz": "0.18573", + "side": "B", + "time": 1761023661351, + "startPosition": "-495.99194", + "dir": "Close Short", + "closedPnl": "954.243594", + "hash": "0xfd84aad149309bbcfefe042de43e7d0201b200b6e433ba8fa14d5624083475a7", + "oid": 207868018378, + "crossed": true, + "fee": "4.198315", + "tid": 1025728164954719, + "cloid": "0x00000000000000000000001589000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107619.0", + "sz": "0.18574", + "side": "B", + "time": 1761023665653, + "startPosition": "-495.80621", + "dir": "Close Short", + "closedPnl": "958.195512", + "hash": "0xb8da23866935da60ba53042de43eb802034b006c0438f9325ca2ced92839b44b", + "oid": 207868077141, + "crossed": true, + "fee": "4.197722", + "tid": 231056861684282, + "cloid": "0x00000000000000000000001589000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107618.0", + "sz": "0.05576", + "side": "B", + "time": 1761023666935, + "startPosition": "-495.62047", + "dir": "Close Short", + "closedPnl": "287.710448", + "hash": "0xa621ff098690ce1ba79b042de43ec702030600ef2193eced49eaaa5c4594a806", + "oid": 207868094778, + "crossed": true, + "fee": "1.260163", + "tid": 929141406979969, + "cloid": "0x00000000000000000000001589000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107618.0", + "sz": "0.05227", + "side": "B", + "time": 1761023666935, + "startPosition": "-495.56471", + "dir": "Close Short", + "closedPnl": "269.702746", + "hash": "0xa621ff098690ce1ba79b042de43ec702030600ef2193eced49eaaa5c4594a806", + "oid": 207868094778, + "crossed": true, + "fee": "1.18129", + "tid": 830904282937584, + "cloid": "0x00000000000000000000001589000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107618.0", + "sz": "0.02101", + "side": "B", + "time": 1761023666935, + "startPosition": "-495.51244", + "dir": "Close Short", + "closedPnl": "108.407398", + "hash": "0xa621ff098690ce1ba79b042de43ec702030600ef2193eced49eaaa5c4594a806", + "oid": 207868094778, + "crossed": true, + "fee": "0.474821", + "tid": 616283007201560, + "cloid": "0x00000000000000000000001589000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107618.0", + "sz": "0.05672", + "side": "B", + "time": 1761023666935, + "startPosition": "-495.49143", + "dir": "Close Short", + "closedPnl": "292.663856", + "hash": "0xa621ff098690ce1ba79b042de43ec702030600ef2193eced49eaaa5c4594a806", + "oid": 207868094778, + "crossed": true, + "fee": "1.281859", + "tid": 149173052532674, + "cloid": "0x00000000000000000000001589000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107618.0", + "sz": "0.18576", + "side": "B", + "time": 1761023668296, + "startPosition": "-495.43471", + "dir": "Close Short", + "closedPnl": "958.484448", + "hash": "0x2648317470126e8927c1042de43ed60202d3005a0b158d5bca10dcc72f164873", + "oid": 207868112294, + "crossed": true, + "fee": "4.198135", + "tid": 179972718253789, + "cloid": "0x00000000000000000000001589000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107618.0", + "sz": "0.05186", + "side": "B", + "time": 1761023669892, + "startPosition": "-495.24895", + "dir": "Close Short", + "closedPnl": "267.587228", + "hash": "0x58d33c244403332f5a4c042de43ee602031a0009df065201fc9be77703070d19", + "oid": 207868131092, + "crossed": true, + "fee": "1.172024", + "tid": 240445742530135, + "cloid": "0x00000000000000000000001589000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107618.0", + "sz": "0.13389", + "side": "B", + "time": 1761023669892, + "startPosition": "-495.19709", + "dir": "Close Short", + "closedPnl": "690.845622", + "hash": "0x58d33c244403332f5a4c042de43ee602031a0009df065201fc9be77703070d19", + "oid": 207868131092, + "crossed": true, + "fee": "3.025884", + "tid": 472785759953153, + "cloid": "0x00000000000000000000001589000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107618.0", + "sz": "0.02211", + "side": "B", + "time": 1761023671289, + "startPosition": "-495.0632", + "dir": "Close Short", + "closedPnl": "114.083178", + "hash": "0x72e3e302cb403062745d042de43ef602035e00e866434f3416ac8e558a440a4d", + "oid": 207868146613, + "crossed": true, + "fee": "0.499681", + "tid": 496568520546723, + "cloid": "0x00000000000000000000001589000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107618.0", + "sz": "0.1125", + "side": "B", + "time": 1761023671289, + "startPosition": "-495.04109", + "dir": "Close Short", + "closedPnl": "580.4775", + "hash": "0x72e3e302cb403062745d042de43ef602035e00e866434f3416ac8e558a440a4d", + "oid": 207868146613, + "crossed": true, + "fee": "2.542475", + "tid": 17401296323116, + "cloid": "0x00000000000000000000001589000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107618.0", + "sz": "0.01115", + "side": "B", + "time": 1761023671289, + "startPosition": "-494.92859", + "dir": "Close Short", + "closedPnl": "57.53177", + "hash": "0x72e3e302cb403062745d042de43ef602035e00e866434f3416ac8e558a440a4d", + "oid": 207868146613, + "crossed": true, + "fee": "0.251987", + "tid": 1105570398696023, + "cloid": "0x00000000000000000000001589000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107618.0", + "sz": "0.00929", + "side": "B", + "time": 1761023671289, + "startPosition": "-494.91744", + "dir": "Close Short", + "closedPnl": "47.934542", + "hash": "0x72e3e302cb403062745d042de43ef602035e00e866434f3416ac8e558a440a4d", + "oid": 207868146613, + "crossed": true, + "fee": "0.209951", + "tid": 829225073057610, + "cloid": "0x00000000000000000000001589000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107618.0", + "sz": "0.03071", + "side": "B", + "time": 1761023671289, + "startPosition": "-494.90815", + "dir": "Close Short", + "closedPnl": "158.457458", + "hash": "0x72e3e302cb403062745d042de43ef602035e00e866434f3416ac8e558a440a4d", + "oid": 207868146613, + "crossed": true, + "fee": "0.694039", + "tid": 728951778890486, + "cloid": "0x00000000000000000000001589000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107618.0", + "sz": "0.18577", + "side": "B", + "time": 1761023672496, + "startPosition": "-494.87744", + "dir": "Close Short", + "closedPnl": "958.536046", + "hash": "0xd488bd0b2366c095d602042de43f0402016a00f0be69df677851685de26a9a80", + "oid": 207868155946, + "crossed": true, + "fee": "4.198361", + "tid": 921037106355522, + "cloid": "0x00000000000000000000001589000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107618.0", + "sz": "0.18578", + "side": "B", + "time": 1761023673720, + "startPosition": "-494.69167", + "dir": "Close Short", + "closedPnl": "958.587644", + "hash": "0xa821f5ab015e5ea0a99b042de43f1502018c00909c517d724beaa0fdc052388b", + "oid": 207868170197, + "crossed": true, + "fee": "4.198587", + "tid": 765930734805622, + "cloid": "0x00000000000000000000001589000084", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107637.0", + "sz": "0.00011", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.50589", + "dir": "Close Short", + "closedPnl": "0.565488", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "0.002486", + "tid": 21638977476030, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107638.0", + "sz": "0.00011", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.50578", + "dir": "Close Short", + "closedPnl": "0.565378", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "0.002486", + "tid": 1035355164126937, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107639.0", + "sz": "0.00011", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.50567", + "dir": "Close Short", + "closedPnl": "0.565268", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "0.002486", + "tid": 289059277832736, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107640.0", + "sz": "0.00014", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.50556", + "dir": "Close Short", + "closedPnl": "0.719292", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "0.003164", + "tid": 439178463814454, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107640.0", + "sz": "0.00011", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.50542", + "dir": "Close Short", + "closedPnl": "0.565158", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "0.002486", + "tid": 266925226088649, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107641.0", + "sz": "0.00011", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.50531", + "dir": "Close Short", + "closedPnl": "0.565048", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "0.002486", + "tid": 997906627772614, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107642.0", + "sz": "0.00011", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.5052", + "dir": "Close Short", + "closedPnl": "0.564938", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "0.002486", + "tid": 1041933724157977, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107643.0", + "sz": "0.00011", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.50509", + "dir": "Close Short", + "closedPnl": "0.564828", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "0.002486", + "tid": 258334009438678, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107644.0", + "sz": "0.00014", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.50498", + "dir": "Close Short", + "closedPnl": "0.718732", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "0.003164", + "tid": 69126756293086, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107644.0", + "sz": "0.00011", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.50484", + "dir": "Close Short", + "closedPnl": "0.564718", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "0.002486", + "tid": 238579211740083, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107645.0", + "sz": "0.00011", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.50473", + "dir": "Close Short", + "closedPnl": "0.564608", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "0.002486", + "tid": 415713511071583, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107647.0", + "sz": "0.00018", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.50462", + "dir": "Close Short", + "closedPnl": "0.923544", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "0.004069", + "tid": 138588467288235, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107647.0", + "sz": "0.00011", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.50444", + "dir": "Close Short", + "closedPnl": "0.564388", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "0.002486", + "tid": 380464317094154, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107648.0", + "sz": "0.00011", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.50433", + "dir": "Close Short", + "closedPnl": "0.564278", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "0.002486", + "tid": 410802367793722, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107648.0", + "sz": "0.00014", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.50422", + "dir": "Close Short", + "closedPnl": "0.718172", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "0.003164", + "tid": 1033954243202137, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107648.0", + "sz": "0.13583", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.50408", + "dir": "Close Short", + "closedPnl": "696.780734", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "3.070583", + "tid": 676125438251358, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107649.0", + "sz": "0.00011", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.36825", + "dir": "Close Short", + "closedPnl": "0.564168", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "0.002486", + "tid": 908638378637190, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107650.0", + "sz": "0.042", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.36814", + "dir": "Close Short", + "closedPnl": "215.3676", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "0.949472", + "tid": 749805063660075, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107650.0", + "sz": "0.00602", + "side": "B", + "time": 1761023679491, + "startPosition": "-494.32614", + "dir": "Close Short", + "closedPnl": "30.869356", + "hash": "0xe8d6bc88d94a891bea50042de43f65021ad3006e744da7ed8c9f67db984e6306", + "oid": 207868277018, + "crossed": true, + "fee": "0.136091", + "tid": 767670234216283, + "cloid": "0x00000000000000000000001589000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107658.0", + "sz": "0.00465", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.32012", + "dir": "Close Short", + "closedPnl": "23.80707", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "0.105128", + "tid": 755866542354186, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107659.0", + "sz": "0.00011", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.31547", + "dir": "Close Short", + "closedPnl": "0.563068", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "0.002486", + "tid": 593612981547412, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107660.0", + "sz": "0.00011", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.31536", + "dir": "Close Short", + "closedPnl": "0.562958", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "0.002486", + "tid": 123874402924956, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107660.0", + "sz": "0.042", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.31525", + "dir": "Close Short", + "closedPnl": "214.9476", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "0.949561", + "tid": 762751280098663, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107661.0", + "sz": "0.00014", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.27325", + "dir": "Close Short", + "closedPnl": "0.716352", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "0.003165", + "tid": 920243693971372, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107661.0", + "sz": "0.00011", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.27311", + "dir": "Close Short", + "closedPnl": "0.562848", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "0.002486", + "tid": 615910759191810, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107662.0", + "sz": "0.00011", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.273", + "dir": "Close Short", + "closedPnl": "0.562738", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "0.002486", + "tid": 585511664409015, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107663.0", + "sz": "0.00011", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.27289", + "dir": "Close Short", + "closedPnl": "0.562628", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "0.002487", + "tid": 154139311478842, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107664.0", + "sz": "0.00011", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.27278", + "dir": "Close Short", + "closedPnl": "0.562518", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "0.002487", + "tid": 224492524258472, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107665.0", + "sz": "0.00014", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.27267", + "dir": "Close Short", + "closedPnl": "0.715792", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "0.003165", + "tid": 632395686189479, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107665.0", + "sz": "0.00011", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.27253", + "dir": "Close Short", + "closedPnl": "0.562408", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "0.002487", + "tid": 145051727635634, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107666.0", + "sz": "0.00011", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.27242", + "dir": "Close Short", + "closedPnl": "0.562298", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "0.002487", + "tid": 942650212961539, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107666.0", + "sz": "0.03599", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.27231", + "dir": "Close Short", + "closedPnl": "183.973682", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "0.813728", + "tid": 721140977217085, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107667.0", + "sz": "0.00011", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.23632", + "dir": "Close Short", + "closedPnl": "0.562188", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "0.002487", + "tid": 494188115713512, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107668.0", + "sz": "0.00011", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.23621", + "dir": "Close Short", + "closedPnl": "0.562078", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "0.002487", + "tid": 781518289944760, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107669.0", + "sz": "0.00014", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.2361", + "dir": "Close Short", + "closedPnl": "0.715232", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "0.003165", + "tid": 270137055288693, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107669.0", + "sz": "0.00011", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.23596", + "dir": "Close Short", + "closedPnl": "0.561968", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "0.002487", + "tid": 308472808588718, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107670.0", + "sz": "0.00011", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.23585", + "dir": "Close Short", + "closedPnl": "0.561858", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "0.002487", + "tid": 652055309846841, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107671.0", + "sz": "0.1013", + "side": "B", + "time": 1761023681173, + "startPosition": "-494.23574", + "dir": "Close Short", + "closedPnl": "517.31884", + "hash": "0x408ab1e9ea1270ec4204042de43f7f02086600cf85158fbee4535d3ca9164ad6", + "oid": 207868318620, + "crossed": true, + "fee": "2.290485", + "tid": 133393643928773, + "cloid": "0x00000000000000000000001589000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107668.0", + "sz": "0.13927", + "side": "B", + "time": 1761023691567, + "startPosition": "-494.13444", + "dir": "Close Short", + "closedPnl": "711.641846", + "hash": "0x30b57388b3097f10322f042de43ffb020561006e4e0c9de2d47e1edb720d58fa", + "oid": 207868417329, + "crossed": true, + "fee": "3.148933", + "tid": 151111775174773, + "cloid": "0x00000000000000000000001589000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107668.0", + "sz": "0.0464", + "side": "B", + "time": 1761023691567, + "startPosition": "-493.99517", + "dir": "Close Short", + "closedPnl": "237.09472", + "hash": "0x30b57388b3097f10322f042de43ffb020561006e4e0c9de2d47e1edb720d58fa", + "oid": 207868417329, + "crossed": true, + "fee": "1.049116", + "tid": 295559591162804, + "cloid": "0x00000000000000000000001589000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107662.0", + "sz": "0.18567", + "side": "B", + "time": 1761023701540, + "startPosition": "-493.94877", + "dir": "Close Short", + "closedPnl": "949.850586", + "hash": "0x310bc6fec692abda3285042de440800202a900e46195caacd4d47251859685c4", + "oid": 207868487035, + "crossed": true, + "fee": "4.197816", + "tid": 277254667675488, + "cloid": "0x00000000000000000000001589000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107660.0", + "sz": "0.03662", + "side": "B", + "time": 1761023702781, + "startPosition": "-493.7631", + "dir": "Close Short", + "closedPnl": "187.413836", + "hash": "0xb633c50067de2dc2b7ad042de4409002058d00e602d14c9459fc705326d207ad", + "oid": 207868509885, + "crossed": true, + "fee": "0.827926", + "tid": 1031147857834716, + "cloid": "0x00000000000000000000001589000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107660.0", + "sz": "0.04595", + "side": "B", + "time": 1761023702781, + "startPosition": "-493.72648", + "dir": "Close Short", + "closedPnl": "235.16291", + "hash": "0xb633c50067de2dc2b7ad042de4409002058d00e602d14c9459fc705326d207ad", + "oid": 207868509885, + "crossed": true, + "fee": "1.038865", + "tid": 825298246456891, + "cloid": "0x00000000000000000000001589000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107660.0", + "sz": "0.04595", + "side": "B", + "time": 1761023702781, + "startPosition": "-493.68053", + "dir": "Close Short", + "closedPnl": "235.16291", + "hash": "0xb633c50067de2dc2b7ad042de4409002058d00e602d14c9459fc705326d207ad", + "oid": 207868509885, + "crossed": true, + "fee": "1.038865", + "tid": 80354187013492, + "cloid": "0x00000000000000000000001589000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107660.0", + "sz": "0.05718", + "side": "B", + "time": 1761023702781, + "startPosition": "-493.63458", + "dir": "Close Short", + "closedPnl": "292.635804", + "hash": "0xb633c50067de2dc2b7ad042de4409002058d00e602d14c9459fc705326d207ad", + "oid": 207868509885, + "crossed": true, + "fee": "1.292759", + "tid": 969309580311879, + "cloid": "0x00000000000000000000001589000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107639.0", + "sz": "0.01642", + "side": "B", + "time": 1761023704360, + "startPosition": "-493.5774", + "dir": "Close Short", + "closedPnl": "84.379096", + "hash": "0x75200489eea0e5717699042de440a4020c1e006f89a4044318e8afdcada4bf5c", + "oid": 207868539824, + "crossed": true, + "fee": "0.37116", + "tid": 82497697874809, + "cloid": "0x00000000000000000000001589000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107639.0", + "sz": "0.16931", + "side": "B", + "time": 1761023704360, + "startPosition": "-493.56098", + "dir": "Close Short", + "closedPnl": "870.050228", + "hash": "0x75200489eea0e5717699042de440a4020c1e006f89a4044318e8afdcada4bf5c", + "oid": 207868539824, + "crossed": true, + "fee": "3.827115", + "tid": 249135820012561, + "cloid": "0x00000000000000000000001589000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107611.0", + "sz": "0.02711", + "side": "B", + "time": 1761023705942, + "startPosition": "-493.39167", + "dir": "Close Short", + "closedPnl": "140.071948", + "hash": "0x46512463556bbd7747ca042de440b90204410048f06edc49ea19cfb6146f9761", + "oid": 207868570809, + "crossed": true, + "fee": "0.61264", + "tid": 1112166282907386, + "cloid": "0x00000000000000000000001589000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107611.0", + "sz": "0.15865", + "side": "B", + "time": 1761023705942, + "startPosition": "-493.36456", + "dir": "Close Short", + "closedPnl": "819.71282", + "hash": "0x46512463556bbd7747ca042de440b90204410048f06edc49ea19cfb6146f9761", + "oid": 207868570809, + "crossed": true, + "fee": "3.585221", + "tid": 863734856139851, + "cloid": "0x00000000000000000000001589000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107601.0", + "sz": "0.02762", + "side": "B", + "time": 1761023707129, + "startPosition": "-493.20591", + "dir": "Close Short", + "closedPnl": "142.983216", + "hash": "0x8f4bfd5bbd4e96aa90c5042de440c9020d1f00415841b57c3314a8ae7c427095", + "oid": 207868594374, + "crossed": true, + "fee": "0.624107", + "tid": 318909977093972, + "cloid": "0x00000000000000000000001589000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107601.0", + "sz": "0.04513", + "side": "B", + "time": 1761023707129, + "startPosition": "-493.17829", + "dir": "Close Short", + "closedPnl": "233.628984", + "hash": "0x8f4bfd5bbd4e96aa90c5042de440c9020d1f00415841b57c3314a8ae7c427095", + "oid": 207868594374, + "crossed": true, + "fee": "1.019766", + "tid": 980207933913767, + "cloid": "0x00000000000000000000001589000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107601.0", + "sz": "0.11305", + "side": "B", + "time": 1761023707129, + "startPosition": "-493.13316", + "dir": "Close Short", + "closedPnl": "585.23724", + "hash": "0x8f4bfd5bbd4e96aa90c5042de440c9020d1f00415841b57c3314a8ae7c427095", + "oid": 207868594374, + "crossed": true, + "fee": "2.554501", + "tid": 566930453508032, + "cloid": "0x00000000000000000000001589000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107523.0", + "sz": "0.02573", + "side": "B", + "time": 1761023708881, + "startPosition": "-493.02011", + "dir": "Close Short", + "closedPnl": "135.206004", + "hash": "0x69fa9be5993fb8fe6b74042de440e20209f900cb3432d7d00dc34738583392e9", + "oid": 207868629545, + "crossed": true, + "fee": "0.580979", + "tid": 308572865531660, + "cloid": "0x00000000000000000000001589000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107523.0", + "sz": "0.02176", + "side": "B", + "time": 1761023708881, + "startPosition": "-492.99438", + "dir": "Close Short", + "closedPnl": "114.344448", + "hash": "0x69fa9be5993fb8fe6b74042de440e20209f900cb3432d7d00dc34738583392e9", + "oid": 207868629545, + "crossed": true, + "fee": "0.491337", + "tid": 540299410350920, + "cloid": "0x00000000000000000000001589000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107523.0", + "sz": "0.13836", + "side": "B", + "time": 1761023708881, + "startPosition": "-492.97262", + "dir": "Close Short", + "closedPnl": "727.054128", + "hash": "0x69fa9be5993fb8fe6b74042de440e20209f900cb3432d7d00dc34738583392e9", + "oid": 207868629545, + "crossed": true, + "fee": "3.124145", + "tid": 342054210398249, + "cloid": "0x00000000000000000000001589000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107504.0", + "sz": "0.18595", + "side": "B", + "time": 1761023712207, + "startPosition": "-492.83426", + "dir": "Close Short", + "closedPnl": "980.66311", + "hash": "0x1950c29e3cff42b81aca042de441130204e00083d7f2618abd196df0fbf31ca2", + "oid": 207868686015, + "crossed": true, + "fee": "4.197977", + "tid": 59075314174713, + "cloid": "0x00000000000000000000001589000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107521.0", + "sz": "0.18593", + "side": "B", + "time": 1761023720806, + "startPosition": "-492.64831", + "dir": "Close Short", + "closedPnl": "977.396824", + "hash": "0x0631ae0ca716b9ed07ab042de4417f020ab600f24219d8bfa9fa595f661a93d7", + "oid": 207868794257, + "crossed": true, + "fee": "4.198189", + "tid": 1068171402456982, + "cloid": "0x00000000000000000000001589000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107553.0", + "sz": "0.1859", + "side": "B", + "time": 1761023723524, + "startPosition": "-492.46238", + "dir": "Close Short", + "closedPnl": "971.29032", + "hash": "0xb09281bfaaf966c4b20c042de4419c02045300a545fc8596545b2d1269fd40af", + "oid": 207868846597, + "crossed": true, + "fee": "4.198761", + "tid": 936743091719131, + "cloid": "0x00000000000000000000001589000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107547.0", + "sz": "0.14919", + "side": "B", + "time": 1761023725555, + "startPosition": "-492.27648", + "dir": "Close Short", + "closedPnl": "780.383052", + "hash": "0xd790296e703e25c8d909042de441b702080000540b31449a7b58d4c12f31ffb3", + "oid": 207868880074, + "crossed": true, + "fee": "3.369436", + "tid": 34114971177240, + "cloid": "0x00000000000000000000001589000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107547.0", + "sz": "0.03668", + "side": "B", + "time": 1761023725555, + "startPosition": "-492.12729", + "dir": "Close Short", + "closedPnl": "191.865744", + "hash": "0xd790296e703e25c8d909042de441b702080000540b31449a7b58d4c12f31ffb3", + "oid": 207868880074, + "crossed": true, + "fee": "0.828413", + "tid": 25618404415833, + "cloid": "0x00000000000000000000001589000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107589.0", + "sz": "0.17551", + "side": "B", + "time": 1761023728829, + "startPosition": "-492.09061", + "dir": "Close Short", + "closedPnl": "910.686288", + "hash": "0x95e2cfea7d28d632975c042de441e402070600d0182bf50439ab7b3d3c2cb01d", + "oid": 207868928774, + "crossed": true, + "fee": "3.965418", + "tid": 970821543145223, + "cloid": "0x00000000000000000000001589000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107589.0", + "sz": "0.01035", + "side": "B", + "time": 1761023728829, + "startPosition": "-491.9151", + "dir": "Close Short", + "closedPnl": "53.70408", + "hash": "0x95e2cfea7d28d632975c042de441e402070600d0182bf50439ab7b3d3c2cb01d", + "oid": 207868928774, + "crossed": true, + "fee": "0.233844", + "tid": 80521366199860, + "cloid": "0x00000000000000000000001589000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107585.0", + "sz": "0.04114", + "side": "B", + "time": 1761023734489, + "startPosition": "-491.90475", + "dir": "Close Short", + "closedPnl": "213.631792", + "hash": "0xb7417d64b6f1259eb8bb042de4423102036a004a51f444705b0a28b775f4ff89", + "oid": 207868996648, + "crossed": true, + "fee": "0.929469", + "tid": 524032308385820, + "cloid": "0x00000000000000000000001589000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107585.0", + "sz": "0.05693", + "side": "B", + "time": 1761023734489, + "startPosition": "-491.86361", + "dir": "Close Short", + "closedPnl": "295.626104", + "hash": "0xb7417d64b6f1259eb8bb042de4423102036a004a51f444705b0a28b775f4ff89", + "oid": 207868996648, + "crossed": true, + "fee": "1.28621", + "tid": 382325780909213, + "cloid": "0x00000000000000000000001589000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107585.0", + "sz": "0.0093", + "side": "B", + "time": 1761023734489, + "startPosition": "-491.80668", + "dir": "Close Short", + "closedPnl": "48.29304", + "hash": "0xb7417d64b6f1259eb8bb042de4423102036a004a51f444705b0a28b775f4ff89", + "oid": 207868996648, + "crossed": true, + "fee": "0.210113", + "tid": 102982565272133, + "cloid": "0x00000000000000000000001589000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107585.0", + "sz": "0.07844", + "side": "B", + "time": 1761023734489, + "startPosition": "-491.79738", + "dir": "Close Short", + "closedPnl": "407.323232", + "hash": "0xb7417d64b6f1259eb8bb042de4423102036a004a51f444705b0a28b775f4ff89", + "oid": 207868996648, + "crossed": true, + "fee": "1.772183", + "tid": 121470850366686, + "cloid": "0x00000000000000000000001589000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107573.0", + "sz": "0.18581", + "side": "B", + "time": 1761023736593, + "startPosition": "-491.71894", + "dir": "Close Short", + "closedPnl": "967.103888", + "hash": "0xfd1eed38781c270cfe98042de442490204d4001e131f45dfa0e7988b371000f7", + "oid": 207869020864, + "crossed": true, + "fee": "4.197509", + "tid": 715900929201740, + "cloid": "0x00000000000000000000001589000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107718.0", + "sz": "0.18556", + "side": "B", + "time": 1761025777637, + "startPosition": "-491.53313", + "dir": "Close Short", + "closedPnl": "938.896488", + "hash": "0x28b7eb8b8f90c0632a31042de4a73f0205be00712a93df35cc8096de4e949a4d", + "oid": 207895972242, + "crossed": true, + "fee": "4.197511", + "tid": 553748857998312, + "cloid": "0x00000000000000000000001590000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107660.0", + "sz": "0.11954", + "side": "B", + "time": 1761025783264, + "startPosition": "-491.34757", + "dir": "Close Short", + "closedPnl": "611.781812", + "hash": "0xdb085563d1e92568dc82042de4a787021cc300496cec443a7ed100b690ecff53", + "oid": 207896069458, + "crossed": true, + "fee": "2.702632", + "tid": 119949473616874, + "cloid": "0x00000000000000000000001590000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107660.0", + "sz": "0.06614", + "side": "B", + "time": 1761025783264, + "startPosition": "-491.22803", + "dir": "Close Short", + "closedPnl": "338.491292", + "hash": "0xdb085563d1e92568dc82042de4a787021cc300496cec443a7ed100b690ecff53", + "oid": 207896069458, + "crossed": true, + "fee": "1.495332", + "tid": 375834600771654, + "cloid": "0x00000000000000000000001590000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107607.0", + "sz": "0.07785", + "side": "B", + "time": 1761025784772, + "startPosition": "-491.16189", + "dir": "Close Short", + "closedPnl": "402.54678", + "hash": "0x5f5446d15fd76e2a60ce042de4a79902062000b6fada8cfc031cf2241edb4815", + "oid": 207896100035, + "crossed": true, + "fee": "1.759213", + "tid": 967099312021502, + "cloid": "0x00000000000000000000001590000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107607.0", + "sz": "0.10791", + "side": "B", + "time": 1761025784772, + "startPosition": "-491.08404", + "dir": "Close Short", + "closedPnl": "557.981028", + "hash": "0x5f5446d15fd76e2a60ce042de4a79902062000b6fada8cfc031cf2241edb4815", + "oid": 207896100035, + "crossed": true, + "fee": "2.438492", + "tid": 874977461712368, + "cloid": "0x00000000000000000000001590000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107607.0", + "sz": "0.18572", + "side": "B", + "time": 1761025790469, + "startPosition": "-490.97613", + "dir": "Close Short", + "closedPnl": "960.320976", + "hash": "0x8ca98511274e66e68e23042de4a7e902011f00f6c24185b830723063e64240d1", + "oid": 207896159916, + "crossed": true, + "fee": "4.196802", + "tid": 787253394448579, + "cloid": "0x00000000000000000000001590000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107607.0", + "sz": "0.18573", + "side": "B", + "time": 1761025797061, + "startPosition": "-490.79041", + "dir": "Close Short", + "closedPnl": "960.372684", + "hash": "0x8988a6ce79ab68eb8b02042de4a83b02021b00b414ae87bd2d51522138af42d6", + "oid": 207896217742, + "crossed": true, + "fee": "4.197028", + "tid": 518171756511108, + "cloid": "0x00000000000000000000001590000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107604.0", + "sz": "0.18576", + "side": "B", + "time": 1761025798231, + "startPosition": "-490.60468", + "dir": "Close Short", + "closedPnl": "961.085088", + "hash": "0xa0b92c685ec93b79a232042de4a849020177004df9cc5a4b4481d7bb1dcd1564", + "oid": 207896237610, + "crossed": true, + "fee": "4.197588", + "tid": 483776121225915, + "cloid": "0x00000000000000000000001590000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107599.0", + "sz": "0.11067", + "side": "B", + "time": 1761025805015, + "startPosition": "-490.41892", + "dir": "Close Short", + "closedPnl": "573.137796", + "hash": "0xa67f85c567682311a7f9042de4a89e02022800ab026b41e34a483118266bfcfc", + "oid": 207896317310, + "crossed": true, + "fee": "2.500676", + "tid": 688486842584829, + "cloid": "0x00000000000000000000001590000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107599.0", + "sz": "0.07509", + "side": "B", + "time": 1761025805015, + "startPosition": "-490.30825", + "dir": "Close Short", + "closedPnl": "388.876092", + "hash": "0xa67f85c567682311a7f9042de4a89e02022800ab026b41e34a483118266bfcfc", + "oid": 207896317310, + "crossed": true, + "fee": "1.696717", + "tid": 135031263007252, + "cloid": "0x00000000000000000000001590000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107582.0", + "sz": "0.04999", + "side": "B", + "time": 1761025806735, + "startPosition": "-490.23316", + "dir": "Close Short", + "closedPnl": "259.738042", + "hash": "0x77709638c7153b2978ea042de4a8b2020777001e621859fb1b39418b86191514", + "oid": 207896348639, + "crossed": true, + "fee": "1.129385", + "tid": 402183742763685, + "cloid": "0x00000000000000000000001590000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107582.0", + "sz": "0.13578", + "side": "B", + "time": 1761025806735, + "startPosition": "-490.18317", + "dir": "Close Short", + "closedPnl": "705.485724", + "hash": "0x77709638c7153b2978ea042de4a8b2020777001e621859fb1b39418b86191514", + "oid": 207896348639, + "crossed": true, + "fee": "3.067571", + "tid": 1054140474882841, + "cloid": "0x00000000000000000000001590000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107573.0", + "sz": "0.1858", + "side": "B", + "time": 1761025808143, + "startPosition": "-490.04739", + "dir": "Close Short", + "closedPnl": "967.05184", + "hash": "0xb8f0f6e2cd182a54ba6a042de4a8c2020a8700c8681b49265cb9a2358c1c043f", + "oid": 207896377777, + "crossed": true, + "fee": "4.197283", + "tid": 593241266543803, + "cloid": "0x00000000000000000000001590000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107568.0", + "sz": "0.1858", + "side": "B", + "time": 1761025809569, + "startPosition": "-489.86159", + "dir": "Close Short", + "closedPnl": "967.98084", + "hash": "0x52a74a0ac3243c095421042de4a8d40203b600f05e275adbf66ff55d822815f3", + "oid": 207896400782, + "crossed": true, + "fee": "4.197088", + "tid": 1050999025705462, + "cloid": "0x00000000000000000000001590000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107546.0", + "sz": "0.18572", + "side": "B", + "time": 1761025817874, + "startPosition": "-489.67579", + "dir": "Close Short", + "closedPnl": "971.649896", + "hash": "0xd11b16bbda5e5b9cd294042de4a94302023600a175517a6e74e3c20e99523587", + "oid": 207896482185, + "crossed": true, + "fee": "4.194423", + "tid": 627859784387201, + "cloid": "0x00000000000000000000001590000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107546.0", + "sz": "0.00012", + "side": "B", + "time": 1761025817874, + "startPosition": "-489.49007", + "dir": "Close Short", + "closedPnl": "0.627816", + "hash": "0xd11b16bbda5e5b9cd294042de4a94302023600a175517a6e74e3c20e99523587", + "oid": 207896482185, + "crossed": true, + "fee": "0.00271", + "tid": 64060353484995, + "cloid": "0x00000000000000000000001590000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107544.0", + "sz": "0.18585", + "side": "B", + "time": 1761025819871, + "startPosition": "-489.48995", + "dir": "Close Short", + "closedPnl": "972.70173", + "hash": "0xa73f05a87d67e204a8b8042de4a961020979008e186b00d64b07b0fb3c6bbbef", + "oid": 207896508734, + "crossed": true, + "fee": "4.197281", + "tid": 513449090027748, + "cloid": "0x00000000000000000000001590000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107540.0", + "sz": "0.05269", + "side": "B", + "time": 1761025823135, + "startPosition": "-489.3041", + "dir": "Close Short", + "closedPnl": "275.979682", + "hash": "0x9a12e09f67e66dd19b8c042de4a9850206ad008502e98ca33ddb8bf226ea47bc", + "oid": 207896544671, + "crossed": true, + "fee": "1.189919", + "tid": 423985620186006, + "cloid": "0x00000000000000000000001590000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107540.0", + "sz": "0.13316", + "side": "B", + "time": 1761025823135, + "startPosition": "-489.25141", + "dir": "Close Short", + "closedPnl": "697.465448", + "hash": "0x9a12e09f67e66dd19b8c042de4a9850206ad008502e98ca33ddb8bf226ea47bc", + "oid": 207896544671, + "crossed": true, + "fee": "3.007205", + "tid": 1028640926622663, + "cloid": "0x00000000000000000000001590000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107540.0", + "sz": "0.18583", + "side": "B", + "time": 1761025828468, + "startPosition": "-489.11825", + "dir": "Close Short", + "closedPnl": "973.340374", + "hash": "0xb5584c5fa324b058b6d2042de4a9c30202cb00453e27cf2a5920f7b262288a43", + "oid": 207896590302, + "crossed": true, + "fee": "4.196673", + "tid": 571578814864483, + "cloid": "0x00000000000000000000001590000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107540.0", + "sz": "0.18585", + "side": "B", + "time": 1761025829719, + "startPosition": "-488.93242", + "dir": "Close Short", + "closedPnl": "973.44513", + "hash": "0xcf5179175f365326d0cb042de4a9d402011f00fcfa3971f8731a246a1e3a2d11", + "oid": 207896598907, + "crossed": true, + "fee": "4.197124", + "tid": 787527647312796, + "cloid": "0x00000000000000000000001590000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107540.0", + "sz": "0.18585", + "side": "B", + "time": 1761025830966, + "startPosition": "-488.74657", + "dir": "Close Short", + "closedPnl": "973.44513", + "hash": "0x0d3c89e862fa78140eb6042de4a9e601e100a1cdfdfd96e6b105353b21fe51fe", + "oid": 207896606581, + "crossed": true, + "fee": "4.197124", + "tid": 188161594132563, + "cloid": "0x00000000000000000000001590000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107540.0", + "sz": "0.18586", + "side": "B", + "time": 1761025832225, + "startPosition": "-488.56072", + "dir": "Close Short", + "closedPnl": "973.497508", + "hash": "0x8213068fb0bb1674838c042de4a9f60201cd00754bbe354625dbb1e26fbef05f", + "oid": 207896614594, + "crossed": true, + "fee": "4.19735", + "tid": 13159107065787, + "cloid": "0x00000000000000000000001590000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107540.0", + "sz": "0.11758", + "side": "B", + "time": 1761025833391, + "startPosition": "-488.37486", + "dir": "Close Short", + "closedPnl": "615.860524", + "hash": "0x2f70a2ac3330de9d30ea042de4aa050201aa0091ce33fd6fd3394dfef234b887", + "oid": 207896624240, + "crossed": true, + "fee": "2.655356", + "tid": 878091282419684, + "cloid": "0x00000000000000000000001590000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107540.0", + "sz": "0.03093", + "side": "B", + "time": 1761025833391, + "startPosition": "-488.25728", + "dir": "Close Short", + "closedPnl": "162.005154", + "hash": "0x2f70a2ac3330de9d30ea042de4aa050201aa0091ce33fd6fd3394dfef234b887", + "oid": 207896624240, + "crossed": true, + "fee": "0.698504", + "tid": 513871237825560, + "cloid": "0x00000000000000000000001590000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107540.0", + "sz": "0.03734", + "side": "B", + "time": 1761025833391, + "startPosition": "-488.22635", + "dir": "Close Short", + "closedPnl": "195.579452", + "hash": "0x2f70a2ac3330de9d30ea042de4aa050201aa0091ce33fd6fd3394dfef234b887", + "oid": 207896624240, + "crossed": true, + "fee": "0.843264", + "tid": 311221858576793, + "cloid": "0x00000000000000000000001590000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107540.0", + "sz": "0.18586", + "side": "B", + "time": 1761025834597, + "startPosition": "-488.18901", + "dir": "Close Short", + "closedPnl": "973.497508", + "hash": "0x2577c980d8248d2526f1042de4aa1502018100667327abf7c94074d39728670f", + "oid": 207896635226, + "crossed": true, + "fee": "4.19735", + "tid": 300559869126287, + "cloid": "0x00000000000000000000001590000019", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107540.0", + "sz": "0.18587", + "side": "B", + "time": 1761025835860, + "startPosition": "-488.00315", + "dir": "Close Short", + "closedPnl": "973.549886", + "hash": "0x79ab21a9af73f24e7b24042de4aa2502016e008f4a7711201d73ccfc6e77cc39", + "oid": 207896651539, + "crossed": true, + "fee": "4.197576", + "tid": 424112240228583, + "cloid": "0x00000000000000000000001590000020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107523.0", + "sz": "0.08283", + "side": "B", + "time": 1761025844740, + "startPosition": "-487.81728", + "dir": "Close Short", + "closedPnl": "435.255084", + "hash": "0x2ec5832a66968b95303f042de4aaa002020900100199aa67d28e2e7d259a657f", + "oid": 207896734576, + "crossed": true, + "fee": "1.870287", + "tid": 677255615942153, + "cloid": "0x00000000000000000000001590000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107523.0", + "sz": "0.10304", + "side": "B", + "time": 1761025844740, + "startPosition": "-487.73445", + "dir": "Close Short", + "closedPnl": "541.454592", + "hash": "0x2ec5832a66968b95303f042de4aaa002020900100199aa67d28e2e7d259a657f", + "oid": 207896734576, + "crossed": true, + "fee": "2.326625", + "tid": 604794345317344, + "cloid": "0x00000000000000000000001590000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107520.0", + "sz": "0.18588", + "side": "B", + "time": 1761025849801, + "startPosition": "-487.63141", + "dir": "Close Short", + "closedPnl": "977.319864", + "hash": "0x6dee3bdddc6e73976f67042de4aae70202cb00c37761926911b6e7309b624d82", + "oid": 207896778921, + "crossed": true, + "fee": "4.197021", + "tid": 222841434189641, + "cloid": "0x00000000000000000000001590000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107520.0", + "sz": "0.1238", + "side": "B", + "time": 1761025851284, + "startPosition": "-487.44553", + "dir": "Close Short", + "closedPnl": "650.91564", + "hash": "0x4108640027b622fe4282042de4aaf60205bd00e5c2b941d0e4d10f52e6b9fce8", + "oid": 207896803554, + "crossed": true, + "fee": "2.795304", + "tid": 1049692813234032, + "cloid": "0x00000000000000000000001590000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107520.0", + "sz": "0.04749", + "side": "B", + "time": 1761025851284, + "startPosition": "-487.32173", + "dir": "Close Short", + "closedPnl": "249.692922", + "hash": "0x4108640027b622fe4282042de4aaf60205bd00e5c2b941d0e4d10f52e6b9fce8", + "oid": 207896803554, + "crossed": true, + "fee": "1.072286", + "tid": 838105666619927, + "cloid": "0x00000000000000000000001590000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107520.0", + "sz": "0.0146", + "side": "B", + "time": 1761025851284, + "startPosition": "-487.27424", + "dir": "Close Short", + "closedPnl": "76.76388", + "hash": "0x4108640027b622fe4282042de4aaf60205bd00e5c2b941d0e4d10f52e6b9fce8", + "oid": 207896803554, + "crossed": true, + "fee": "0.329656", + "tid": 953812623094526, + "cloid": "0x00000000000000000000001590000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107520.0", + "sz": "0.18589", + "side": "B", + "time": 1761025852816, + "startPosition": "-487.25964", + "dir": "Close Short", + "closedPnl": "977.372442", + "hash": "0x6a7618f977e5511c6bef042de4ab0902011900df12e86fee0e3ec44c36e92b07", + "oid": 207896819686, + "crossed": true, + "fee": "4.197247", + "tid": 847980601534971, + "cloid": "0x00000000000000000000001590000024", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107514.0", + "sz": "0.18591", + "side": "B", + "time": 1761025854023, + "startPosition": "-487.07375", + "dir": "Close Short", + "closedPnl": "978.593058", + "hash": "0xd35604db3807462cd4cf042de4ab1602036a00c0d30a64fe771eb02df70b2017", + "oid": 207896835122, + "crossed": true, + "fee": "4.197464", + "tid": 206892135143873, + "cloid": "0x00000000000000000000001590000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107514.0", + "sz": "0.18591", + "side": "B", + "time": 1761025864623, + "startPosition": "-486.88784", + "dir": "Close Short", + "closedPnl": "978.593058", + "hash": "0xa1da540253f4a78aa354042de4ab9d02019e00e7eef7c65c45a2ff5512f88175", + "oid": 207896949571, + "crossed": true, + "fee": "4.197464", + "tid": 315992125774624, + "cloid": "0x00000000000000000000001590000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107514.0", + "sz": "0.00587", + "side": "B", + "time": 1761025868663, + "startPosition": "-486.70193", + "dir": "Close Short", + "closedPnl": "30.898506", + "hash": "0x922fce1c4546cbe793a9042de4abd10204770001e049eab935f8796f044aa5d2", + "oid": 207896989912, + "crossed": true, + "fee": "0.132532", + "tid": 517441171032540, + "cloid": "0x00000000000000000000001590000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107514.0", + "sz": "0.00023", + "side": "B", + "time": 1761025868663, + "startPosition": "-486.69606", + "dir": "Close Short", + "closedPnl": "1.210674", + "hash": "0x922fce1c4546cbe793a9042de4abd10204770001e049eab935f8796f044aa5d2", + "oid": 207896989912, + "crossed": true, + "fee": "0.005192", + "tid": 703876173380209, + "cloid": "0x00000000000000000000001590000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107514.0", + "sz": "0.17979", + "side": "B", + "time": 1761025868663, + "startPosition": "-486.69583", + "dir": "Close Short", + "closedPnl": "946.378602", + "hash": "0x922fce1c4546cbe793a9042de4abd10204770001e049eab935f8796f044aa5d2", + "oid": 207896989912, + "crossed": true, + "fee": "4.059287", + "tid": 519748092096881, + "cloid": "0x00000000000000000000001590000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107522.0", + "sz": "0.18586", + "side": "B", + "time": 1761025871702, + "startPosition": "-486.51604", + "dir": "Close Short", + "closedPnl": "976.842988", + "hash": "0x36a2bed2872b99cc381c042de4abf702050700b8222eb89eda6b6a25462f73b6", + "oid": 207897028833, + "crossed": true, + "fee": "4.196648", + "tid": 169984538582720, + "cloid": "0x00000000000000000000001590000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107525.0", + "sz": "0.18585", + "side": "B", + "time": 1761025876170, + "startPosition": "-486.33018", + "dir": "Close Short", + "closedPnl": "976.23288", + "hash": "0xee8ad3fcd39b38f7f004042de4ac360202eb00e26e9e57c992537f4f929f12e2", + "oid": 207897087833, + "crossed": true, + "fee": "4.196539", + "tid": 1057493898981373, + "cloid": "0x00000000000000000000001590000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107525.0", + "sz": "0.18586", + "side": "B", + "time": 1761025880398, + "startPosition": "-486.14433", + "dir": "Close Short", + "closedPnl": "976.285408", + "hash": "0xe8070df5447f3a39e980042de4ac6e02041100dadf72590b8bcfb94803731424", + "oid": 207897140768, + "crossed": true, + "fee": "4.196765", + "tid": 963661584853676, + "cloid": "0x00000000000000000000001590000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107525.0", + "sz": "0.18587", + "side": "B", + "time": 1761025881795, + "startPosition": "-485.95847", + "dir": "Close Short", + "closedPnl": "976.337936", + "hash": "0x3fcff98abce44def4149042de4ac7c02016a007057e76cc1e398a4dd7be827d9", + "oid": 207897157463, + "crossed": true, + "fee": "4.196991", + "tid": 1031134611397001, + "cloid": "0x00000000000000000000001590000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107525.0", + "sz": "0.18587", + "side": "B", + "time": 1761025884769, + "startPosition": "-485.7726", + "dir": "Close Short", + "closedPnl": "976.337936", + "hash": "0xb3d43b1b5fbf0595b54d042de4aca002036b0000fab22467579ce66e1eb2df80", + "oid": 207897190482, + "crossed": true, + "fee": "4.196991", + "tid": 706951925916051, + "cloid": "0x00000000000000000000001590000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107527.0", + "sz": "0.18586", + "side": "B", + "time": 1761025886060, + "startPosition": "-485.58673", + "dir": "Close Short", + "closedPnl": "975.913688", + "hash": "0xff703440de2edab700e9042de4acb10202d500267921f98aa338df939d22b4a2", + "oid": 207897216931, + "crossed": true, + "fee": "4.196843", + "tid": 982016457172063, + "cloid": "0x00000000000000000000001590000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107538.0", + "sz": "0.18582", + "side": "B", + "time": 1761025888879, + "startPosition": "-485.40087", + "dir": "Close Short", + "closedPnl": "973.659636", + "hash": "0x952d3571e7d6034296a6042de4acd8020225005782d9221438f5e0c4a6d9dd2d", + "oid": 207897269790, + "crossed": true, + "fee": "4.196369", + "tid": 571172886770891, + "cloid": "0x00000000000000000000001590000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107546.0", + "sz": "0.18581", + "side": "B", + "time": 1761025894921, + "startPosition": "-485.21505", + "dir": "Close Short", + "closedPnl": "972.120758", + "hash": "0xd39206a120f9fce0d50b042de4ad2b0206a80086bbfd1bb2775ab1f3dffdd6cb", + "oid": 207897350841, + "crossed": true, + "fee": "4.196455", + "tid": 674558556037619, + "cloid": "0x00000000000000000000001590000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107551.0", + "sz": "0.18582", + "side": "B", + "time": 1761025897386, + "startPosition": "-485.02924", + "dir": "Close Short", + "closedPnl": "971.243976", + "hash": "0x2adfdb4f526fedba2c59042de4ad4d0202ad0034ed630c8ccea886a21163c7a4", + "oid": 207897376314, + "crossed": true, + "fee": "4.196876", + "tid": 123262212305665, + "cloid": "0x00000000000000000000001590000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107551.0", + "sz": "0.18582", + "side": "B", + "time": 1761025907379, + "startPosition": "-484.84342", + "dir": "Close Short", + "closedPnl": "971.243976", + "hash": "0x3a98481470c86f8f3c12042de4adc602016600fa0bcb8e61de60f3672fcc4979", + "oid": 207897454024, + "crossed": true, + "fee": "4.196876", + "tid": 1070153338432677, + "cloid": "0x00000000000000000000001590000037", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107551.0", + "sz": "0.18583", + "side": "B", + "time": 1761025915797, + "startPosition": "-484.6576", + "dir": "Close Short", + "closedPnl": "971.296244", + "hash": "0x8e8397ac360f93108ffd042de4ae2e0204d20091d102b1e2324c42fef5036cfb", + "oid": 207897515154, + "crossed": true, + "fee": "4.197102", + "tid": 216582464113793, + "cloid": "0x00000000000000000000001590000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107550.0", + "sz": "0.18584", + "side": "B", + "time": 1761025917239, + "startPosition": "-484.47177", + "dir": "Close Short", + "closedPnl": "971.534352", + "hash": "0xbcb3b1c744141d7ebe2d042de4ae410201bc00acdf173c50607c5d1a0317f769", + "oid": 207897535049, + "crossed": true, + "fee": "4.197289", + "tid": 395863925617412, + "cloid": "0x00000000000000000000001590000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107541.0", + "sz": "0.01887", + "side": "B", + "time": 1761025918851, + "startPosition": "-484.28593", + "dir": "Close Short", + "closedPnl": "98.818416", + "hash": "0x354062965b1f26df36ba042de4ae55020148007bf61245b1d9090de91a1300c9", + "oid": 207897550586, + "crossed": true, + "fee": "0.426152", + "tid": 1102133924145197, + "cloid": "0x00000000000000000000001590000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107541.0", + "sz": "0.16698", + "side": "B", + "time": 1761025918851, + "startPosition": "-484.26706", + "dir": "Close Short", + "closedPnl": "874.440864", + "hash": "0x354062965b1f26df36ba042de4ae55020148007bf61245b1d9090de91a1300c9", + "oid": 207897550586, + "crossed": true, + "fee": "3.771011", + "tid": 710549431327944, + "cloid": "0x00000000000000000000001590000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107541.0", + "sz": "0.03628", + "side": "B", + "time": 1761025919857, + "startPosition": "-484.10008", + "dir": "Close Short", + "closedPnl": "189.991104", + "hash": "0x3c8de3624c68c2013e07042de4ae620201240047e76be0d3e0568eb50b6c9beb", + "oid": 207897559057, + "crossed": true, + "fee": "0.819333", + "tid": 399611436738308, + "cloid": "0x00000000000000000000001590000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107541.0", + "sz": "0.1125", + "side": "B", + "time": 1761025919857, + "startPosition": "-484.0638", + "dir": "Close Short", + "closedPnl": "589.14", + "hash": "0x3c8de3624c68c2013e07042de4ae620201240047e76be0d3e0568eb50b6c9beb", + "oid": 207897559057, + "crossed": true, + "fee": "2.540656", + "tid": 24800572466148, + "cloid": "0x00000000000000000000001590000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107541.0", + "sz": "0.03707", + "side": "B", + "time": 1761025919857, + "startPosition": "-483.9513", + "dir": "Close Short", + "closedPnl": "194.128176", + "hash": "0x3c8de3624c68c2013e07042de4ae620201240047e76be0d3e0568eb50b6c9beb", + "oid": 207897559057, + "crossed": true, + "fee": "0.837174", + "tid": 699381050048745, + "cloid": "0x00000000000000000000001590000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107539.0", + "sz": "0.18587", + "side": "B", + "time": 1761025921245, + "startPosition": "-483.91423", + "dir": "Close Short", + "closedPnl": "973.735756", + "hash": "0x56c61131940c9385583f042de4ae740209d400172f0fb257fa8ebc8453006d6f", + "oid": 207897580602, + "crossed": true, + "fee": "4.197537", + "tid": 211394667021257, + "cloid": "0x00000000000000000000001590000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107526.0", + "sz": "0.18589", + "side": "B", + "time": 1761025922480, + "startPosition": "-483.72836", + "dir": "Close Short", + "closedPnl": "976.257102", + "hash": "0xe908d240c07ad30eea82042de4ae8202046d00265b7df1e08cd17d937f7eacf9", + "oid": 207897603353, + "crossed": true, + "fee": "4.197481", + "tid": 581263605970311, + "cloid": "0x00000000000000000000001590000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107518.0", + "sz": "0.11191", + "side": "B", + "time": 1761025924641, + "startPosition": "-483.54247", + "dir": "Close Short", + "closedPnl": "588.624218", + "hash": "0x4992e42916dd954e4b0c042de4ae9c0202c1000eb1d0b420ed5b8f7bd5d16f38", + "oid": 207897635524, + "crossed": true, + "fee": "2.526791", + "tid": 899841659430126, + "cloid": "0x00000000000000000000001590000044", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107518.0", + "sz": "0.07399", + "side": "B", + "time": 1761025924641, + "startPosition": "-483.43056", + "dir": "Close Short", + "closedPnl": "389.172602", + "hash": "0x4992e42916dd954e4b0c042de4ae9c0202c1000eb1d0b420ed5b8f7bd5d16f38", + "oid": 207897635524, + "crossed": true, + "fee": "1.670603", + "tid": 414677048920471, + "cloid": "0x00000000000000000000001590000044", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107510.0", + "sz": "0.17036", + "side": "B", + "time": 1761025935072, + "startPosition": "-483.35657", + "dir": "Close Short", + "closedPnl": "897.422408", + "hash": "0x9eb8476a70da0691a032042de4af2302027e00500bdd25634280f2bd2fdde07c", + "oid": 207897757543, + "crossed": true, + "fee": "3.846234", + "tid": 871354727363536, + "cloid": "0x00000000000000000000001590000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107510.0", + "sz": "0.01554", + "side": "B", + "time": 1761025935072, + "startPosition": "-483.18621", + "dir": "Close Short", + "closedPnl": "81.861612", + "hash": "0x9eb8476a70da0691a032042de4af2302027e00500bdd25634280f2bd2fdde07c", + "oid": 207897757543, + "crossed": true, + "fee": "0.350848", + "tid": 580623460517276, + "cloid": "0x00000000000000000000001590000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107504.0", + "sz": "0.03107", + "side": "B", + "time": 1761025944927, + "startPosition": "-483.17067", + "dir": "Close Short", + "closedPnl": "163.856966", + "hash": "0xa9605172ca5fca47aada042de4afa302015600586552e9194d28fcc58953a432", + "oid": 207897831817, + "crossed": true, + "fee": "0.701431", + "tid": 52524844655067, + "cloid": "0x00000000000000000000001590000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107504.0", + "sz": "0.07162", + "side": "B", + "time": 1761025944927, + "startPosition": "-483.1396", + "dir": "Close Short", + "closedPnl": "377.709556", + "hash": "0xa9605172ca5fca47aada042de4afa302015600586552e9194d28fcc58953a432", + "oid": 207897831817, + "crossed": true, + "fee": "1.616881", + "tid": 932259445942073, + "cloid": "0x00000000000000000000001590000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107504.0", + "sz": "0.03659", + "side": "B", + "time": 1761025944927, + "startPosition": "-483.06798", + "dir": "Close Short", + "closedPnl": "192.968342", + "hash": "0xa9605172ca5fca47aada042de4afa302015600586552e9194d28fcc58953a432", + "oid": 207897831817, + "crossed": true, + "fee": "0.826049", + "tid": 392538079815954, + "cloid": "0x00000000000000000000001590000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107504.0", + "sz": "0.04662", + "side": "B", + "time": 1761025944927, + "startPosition": "-483.03139", + "dir": "Close Short", + "closedPnl": "245.864556", + "hash": "0xa9605172ca5fca47aada042de4afa302015600586552e9194d28fcc58953a432", + "oid": 207897831817, + "crossed": true, + "fee": "1.052485", + "tid": 1076057082213987, + "cloid": "0x00000000000000000000001590000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107504.0", + "sz": "0.0745", + "side": "B", + "time": 1761025952366, + "startPosition": "-482.98477", + "dir": "Close Short", + "closedPnl": "392.8981", + "hash": "0x4bf31b89693e2d074d6c042de4b006020445006f04314bd9efbbc6dc283206f1", + "oid": 207897883871, + "crossed": true, + "fee": "1.6819", + "tid": 1057909560681119, + "cloid": "0x00000000000000000000001590000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107504.0", + "sz": "0.1114", + "side": "B", + "time": 1761025952366, + "startPosition": "-482.91027", + "dir": "Close Short", + "closedPnl": "587.50132", + "hash": "0x4bf31b89693e2d074d6c042de4b006020445006f04314bd9efbbc6dc283206f1", + "oid": 207897883871, + "crossed": true, + "fee": "2.514948", + "tid": 830355961989309, + "cloid": "0x00000000000000000000001590000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107504.0", + "sz": "0.07459", + "side": "B", + "time": 1761025953699, + "startPosition": "-482.79887", + "dir": "Close Short", + "closedPnl": "393.372742", + "hash": "0xd055bc62e5b32343d1cf042de4b017020138004880b64215741e67b5a4b6fd2e", + "oid": 207897892838, + "crossed": true, + "fee": "1.683931", + "tid": 226939619044596, + "cloid": "0x00000000000000000000001590000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107504.0", + "sz": "0.11132", + "side": "B", + "time": 1761025953699, + "startPosition": "-482.72428", + "dir": "Close Short", + "closedPnl": "587.079416", + "hash": "0xd055bc62e5b32343d1cf042de4b017020138004880b64215741e67b5a4b6fd2e", + "oid": 207897892838, + "crossed": true, + "fee": "2.513142", + "tid": 284386121692815, + "cloid": "0x00000000000000000000001590000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107504.0", + "sz": "0.06032", + "side": "B", + "time": 1761025954803, + "startPosition": "-482.61296", + "dir": "Close Short", + "closedPnl": "318.115616", + "hash": "0x3ece20498ad5b4ff4047042de4b0260202cf002f25d8d3d1e296cb9c49d98ee9", + "oid": 207897902886, + "crossed": true, + "fee": "1.361774", + "tid": 653787068729268, + "cloid": "0x00000000000000000000001590000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107504.0", + "sz": "0.12559", + "side": "B", + "time": 1761025954803, + "startPosition": "-482.55264", + "dir": "Close Short", + "closedPnl": "662.336542", + "hash": "0x3ece20498ad5b4ff4047042de4b0260202cf002f25d8d3d1e296cb9c49d98ee9", + "oid": 207897902886, + "crossed": true, + "fee": "2.835299", + "tid": 294574748467238, + "cloid": "0x00000000000000000000001590000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107503.0", + "sz": "0.11572", + "side": "B", + "time": 1761025956121, + "startPosition": "-482.42705", + "dir": "Close Short", + "closedPnl": "610.399856", + "hash": "0x52c036a632c49cdf5439042de4b036020256008bcdc7bbb1f688e1f8f1c876c9", + "oid": 207897912079, + "crossed": true, + "fee": "2.612451", + "tid": 781450145087245, + "cloid": "0x00000000000000000000001590000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107503.0", + "sz": "0.0573", + "side": "B", + "time": 1761025956121, + "startPosition": "-482.31133", + "dir": "Close Short", + "closedPnl": "302.24604", + "hash": "0x52c036a632c49cdf5439042de4b036020256008bcdc7bbb1f688e1f8f1c876c9", + "oid": 207897912079, + "crossed": true, + "fee": "1.293583", + "tid": 637925875185258, + "cloid": "0x00000000000000000000001590000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107503.0", + "sz": "0.0129", + "side": "B", + "time": 1761025956121, + "startPosition": "-482.25403", + "dir": "Close Short", + "closedPnl": "68.04492", + "hash": "0x52c036a632c49cdf5439042de4b036020256008bcdc7bbb1f688e1f8f1c876c9", + "oid": 207897912079, + "crossed": true, + "fee": "0.291225", + "tid": 665618557303294, + "cloid": "0x00000000000000000000001590000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107497.0", + "sz": "0.13077", + "side": "B", + "time": 1761025960957, + "startPosition": "-482.24113", + "dir": "Close Short", + "closedPnl": "690.570216", + "hash": "0x760f7b8ff695164c7789042de4b07902020c00759198351e19d826e2b598f037", + "oid": 207897974022, + "crossed": true, + "fee": "2.95205", + "tid": 870686105891852, + "cloid": "0x00000000000000000000001590000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107497.0", + "sz": "0.05516", + "side": "B", + "time": 1761025960957, + "startPosition": "-482.11036", + "dir": "Close Short", + "closedPnl": "291.288928", + "hash": "0x760f7b8ff695164c7789042de4b07902020c00759198351e19d826e2b598f037", + "oid": 207897974022, + "crossed": true, + "fee": "1.245202", + "tid": 836000730011730, + "cloid": "0x00000000000000000000001590000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107487.0", + "sz": "0.10609", + "side": "B", + "time": 1761025962165, + "startPosition": "-482.0552", + "dir": "Close Short", + "closedPnl": "561.300972", + "hash": "0x755c06331d6ef84976d5042de4b0880203760018b862171b1924b185dc62d234", + "oid": 207897989470, + "crossed": true, + "fee": "2.394692", + "tid": 569783411163449, + "cloid": "0x00000000000000000000001590000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107487.0", + "sz": "0.07987", + "side": "B", + "time": 1761025962165, + "startPosition": "-481.94911", + "dir": "Close Short", + "closedPnl": "422.576196", + "hash": "0x755c06331d6ef84976d5042de4b0880203760018b862171b1924b185dc62d234", + "oid": 207897989470, + "crossed": true, + "fee": "1.802847", + "tid": 236152110164500, + "cloid": "0x00000000000000000000001590000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107481.0", + "sz": "0.00011", + "side": "B", + "time": 1761025972382, + "startPosition": "-481.86924", + "dir": "Close Short", + "closedPnl": "0.582648", + "hash": "0xc14a593863c72e6dc2c4042de4b10802044c001dfeca4d3f6513048b22cb0858", + "oid": 207898087869, + "crossed": true, + "fee": "0.002482", + "tid": 1078794054485943, + "cloid": "0x00000000000000000000001590000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107482.0", + "sz": "0.00011", + "side": "B", + "time": 1761025972382, + "startPosition": "-481.86913", + "dir": "Close Short", + "closedPnl": "0.582538", + "hash": "0xc14a593863c72e6dc2c4042de4b10802044c001dfeca4d3f6513048b22cb0858", + "oid": 207898087869, + "crossed": true, + "fee": "0.002482", + "tid": 77947525287861, + "cloid": "0x00000000000000000000001590000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107483.0", + "sz": "0.00011", + "side": "B", + "time": 1761025972382, + "startPosition": "-481.86902", + "dir": "Close Short", + "closedPnl": "0.582428", + "hash": "0xc14a593863c72e6dc2c4042de4b10802044c001dfeca4d3f6513048b22cb0858", + "oid": 207898087869, + "crossed": true, + "fee": "0.002482", + "tid": 275611524692836, + "cloid": "0x00000000000000000000001590000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107484.0", + "sz": "0.00011", + "side": "B", + "time": 1761025972382, + "startPosition": "-481.86891", + "dir": "Close Short", + "closedPnl": "0.582318", + "hash": "0xc14a593863c72e6dc2c4042de4b10802044c001dfeca4d3f6513048b22cb0858", + "oid": 207898087869, + "crossed": true, + "fee": "0.002482", + "tid": 576428563557259, + "cloid": "0x00000000000000000000001590000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107485.0", + "sz": "0.00014", + "side": "B", + "time": 1761025972382, + "startPosition": "-481.8688", + "dir": "Close Short", + "closedPnl": "0.740992", + "hash": "0xc14a593863c72e6dc2c4042de4b10802044c001dfeca4d3f6513048b22cb0858", + "oid": 207898087869, + "crossed": true, + "fee": "0.00316", + "tid": 608121088039009, + "cloid": "0x00000000000000000000001590000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107485.0", + "sz": "0.00011", + "side": "B", + "time": 1761025972382, + "startPosition": "-481.86866", + "dir": "Close Short", + "closedPnl": "0.582208", + "hash": "0xc14a593863c72e6dc2c4042de4b10802044c001dfeca4d3f6513048b22cb0858", + "oid": 207898087869, + "crossed": true, + "fee": "0.002482", + "tid": 563348256436428, + "cloid": "0x00000000000000000000001590000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107486.0", + "sz": "0.00011", + "side": "B", + "time": 1761025972382, + "startPosition": "-481.86855", + "dir": "Close Short", + "closedPnl": "0.582098", + "hash": "0xc14a593863c72e6dc2c4042de4b10802044c001dfeca4d3f6513048b22cb0858", + "oid": 207898087869, + "crossed": true, + "fee": "0.002482", + "tid": 388516414972163, + "cloid": "0x00000000000000000000001590000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107487.0", + "sz": "0.18516", + "side": "B", + "time": 1761025972382, + "startPosition": "-481.86844", + "dir": "Close Short", + "closedPnl": "979.644528", + "hash": "0xc14a593863c72e6dc2c4042de4b10802044c001dfeca4d3f6513048b22cb0858", + "oid": 207898087869, + "crossed": true, + "fee": "4.179481", + "tid": 444695360873151, + "cloid": "0x00000000000000000000001590000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.18592", + "side": "B", + "time": 1761025977489, + "startPosition": "-481.68328", + "dir": "Close Short", + "closedPnl": "982.921856", + "hash": "0x86ec5b81b8606db68866042de4b14d02040d006753638c882ab506d4776447a1", + "oid": 207898129639, + "crossed": true, + "fee": "4.196792", + "tid": 234136390220501, + "cloid": "0x00000000000000000000001590000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.1859", + "side": "B", + "time": 1761025982041, + "startPosition": "-481.49736", + "dir": "Close Short", + "closedPnl": "982.81612", + "hash": "0x0ecd36135dcf18bc1046042de4b18d02019300f8f8c2378eb295e1661cc2f2a6", + "oid": 207898171298, + "crossed": true, + "fee": "4.196341", + "tid": 767907930603603, + "cloid": "0x00000000000000000000001590000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.1859", + "side": "B", + "time": 1761025992086, + "startPosition": "-481.31146", + "dir": "Close Short", + "closedPnl": "982.81612", + "hash": "0x78651560877d9d2979de042de4b2010202a200462270bbfb1c2dc0b346717714", + "oid": 207898299137, + "crossed": true, + "fee": "4.196341", + "tid": 531420377783817, + "cloid": "0x00000000000000000000001590000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.18593", + "side": "B", + "time": 1761025993389, + "startPosition": "-481.12556", + "dir": "Close Short", + "closedPnl": "982.974724", + "hash": "0x987cb0d05361e32399f6042de4b2120204a400b5ee6501f53c455c231265bd0e", + "oid": 207898316925, + "crossed": true, + "fee": "4.197018", + "tid": 866159616888098, + "cloid": "0x00000000000000000000001590000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.18593", + "side": "B", + "time": 1761026000148, + "startPosition": "-480.93963", + "dir": "Close Short", + "closedPnl": "982.974724", + "hash": "0x9efa5756b16c425fa074042de4b26e0202b8003c4c6f613142c302a970601c4a", + "oid": 207898376701, + "crossed": true, + "fee": "4.197018", + "tid": 614627152237875, + "cloid": "0x00000000000000000000001590000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.01166", + "side": "B", + "time": 1761026001416, + "startPosition": "-480.7537", + "dir": "Close Short", + "closedPnl": "61.644088", + "hash": "0x442f32c60a2498c445a8042de4b27d02019900aba527b796e7f7de18c92872ae", + "oid": 207898391659, + "crossed": true, + "fee": "0.263202", + "tid": 117399955581800, + "cloid": "0x00000000000000000000001590000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.00011", + "side": "B", + "time": 1761026001416, + "startPosition": "-480.74204", + "dir": "Close Short", + "closedPnl": "0.581548", + "hash": "0x442f32c60a2498c445a8042de4b27d02019900aba527b796e7f7de18c92872ae", + "oid": 207898391659, + "crossed": true, + "fee": "0.002483", + "tid": 858990338455360, + "cloid": "0x00000000000000000000001590000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.1395", + "side": "B", + "time": 1761026001416, + "startPosition": "-480.74193", + "dir": "Close Short", + "closedPnl": "737.5086", + "hash": "0x442f32c60a2498c445a8042de4b27d02019900aba527b796e7f7de18c92872ae", + "oid": 207898391659, + "crossed": true, + "fee": "3.148948", + "tid": 1093133030074011, + "cloid": "0x00000000000000000000001590000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.0093", + "side": "B", + "time": 1761026001416, + "startPosition": "-480.60243", + "dir": "Close Short", + "closedPnl": "49.16724", + "hash": "0x442f32c60a2498c445a8042de4b27d02019900aba527b796e7f7de18c92872ae", + "oid": 207898391659, + "crossed": true, + "fee": "0.209929", + "tid": 434992651760827, + "cloid": "0x00000000000000000000001590000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.02536", + "side": "B", + "time": 1761026001416, + "startPosition": "-480.59313", + "dir": "Close Short", + "closedPnl": "134.073248", + "hash": "0x442f32c60a2498c445a8042de4b27d02019900aba527b796e7f7de18c92872ae", + "oid": 207898391659, + "crossed": true, + "fee": "0.572454", + "tid": 896513627700637, + "cloid": "0x00000000000000000000001590000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.18593", + "side": "B", + "time": 1761026002959, + "startPosition": "-480.56777", + "dir": "Close Short", + "closedPnl": "982.974724", + "hash": "0x926bc4f16163a13993e5042de4b28f02035300d6fc66c00b3634704420677b24", + "oid": 207898406530, + "crossed": true, + "fee": "4.197018", + "tid": 184558718276187, + "cloid": "0x00000000000000000000001590000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.18593", + "side": "B", + "time": 1761026005191, + "startPosition": "-480.38184", + "dir": "Close Short", + "closedPnl": "982.974724", + "hash": "0x728acd682430c34b7404042de4b2a80202cb004dbf33e21d165378bae3349d36", + "oid": 207898422535, + "crossed": true, + "fee": "4.197018", + "tid": 27723423813094, + "cloid": "0x00000000000000000000001590000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.18593", + "side": "B", + "time": 1761026006502, + "startPosition": "-480.19591", + "dir": "Close Short", + "closedPnl": "982.974724", + "hash": "0x6a743819e4eaa37e6bed042de4b2b602034800ff7fedc2500e3ce36ca3ee7d69", + "oid": 207898435275, + "crossed": true, + "fee": "4.197018", + "tid": 635862824860437, + "cloid": "0x00000000000000000000001590000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.18593", + "side": "B", + "time": 1761026007816, + "startPosition": "-480.00998", + "dir": "Close Short", + "closedPnl": "982.974724", + "hash": "0x5c7e9a888f9665b05df8042de4b2c50201a0006e2a998482004745db4e9a3f9b", + "oid": 207898449787, + "crossed": true, + "fee": "4.197018", + "tid": 421273388081103, + "cloid": "0x00000000000000000000001590000063", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.18593", + "side": "B", + "time": 1761026009006, + "startPosition": "-479.82405", + "dir": "Close Short", + "closedPnl": "982.974724", + "hash": "0x26e9e980b6d32aab2863042de4b2d602021f006651d6497dcab294d375d70495", + "oid": 207898465603, + "crossed": true, + "fee": "4.197018", + "tid": 906599449767087, + "cloid": "0x00000000000000000000001590000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.18594", + "side": "B", + "time": 1761026010347, + "startPosition": "-479.63812", + "dir": "Close Short", + "closedPnl": "983.027592", + "hash": "0x27aa19aaca4120102923042de4b2e40204a8009065443ee2cb72c4fd8944f9fa", + "oid": 207898485781, + "crossed": true, + "fee": "4.197244", + "tid": 595873116952064, + "cloid": "0x00000000000000000000001590000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.18594", + "side": "B", + "time": 1761026011497, + "startPosition": "-479.45218", + "dir": "Close Short", + "closedPnl": "983.027592", + "hash": "0x8c179ad0f95b80838d91042de4b2f50201ac00b6945e9f552fe04623b85f5a6e", + "oid": 207898504836, + "crossed": true, + "fee": "4.197244", + "tid": 69369246490908, + "cloid": "0x00000000000000000000001590000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.18594", + "side": "B", + "time": 1761026012699, + "startPosition": "-479.26624", + "dir": "Close Short", + "closedPnl": "983.027592", + "hash": "0x556646a7c87f83cd56e0042de4b307020194008d6372a29ff92ef1fa87735db7", + "oid": 207898521627, + "crossed": true, + "fee": "4.197244", + "tid": 96097852223100, + "cloid": "0x00000000000000000000001590000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.12975", + "side": "B", + "time": 1761026013903, + "startPosition": "-479.0803", + "dir": "Close Short", + "closedPnl": "685.9623", + "hash": "0xc0dfc38ff9b3222cc259042de4b3190201ee007594b640fe64a86ee2b8b6fc17", + "oid": 207898535109, + "crossed": true, + "fee": "2.928861", + "tid": 203155922335539, + "cloid": "0x00000000000000000000001590000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.0562", + "side": "B", + "time": 1761026013903, + "startPosition": "-478.95055", + "dir": "Close Short", + "closedPnl": "297.11816", + "hash": "0xc0dfc38ff9b3222cc259042de4b3190201ee007594b640fe64a86ee2b8b6fc17", + "oid": 207898535109, + "crossed": true, + "fee": "1.268608", + "tid": 589977871948209, + "cloid": "0x00000000000000000000001590000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107487.0", + "sz": "0.04491", + "side": "B", + "time": 1761026024393, + "startPosition": "-478.89435", + "dir": "Close Short", + "closedPnl": "237.609828", + "hash": "0x2af142c905d21aa92c6a042de4b39e0202a700aea0d5397bceb9ee1bc4d5f493", + "oid": 207898644527, + "crossed": true, + "fee": "1.01372", + "tid": 372737339544194, + "cloid": "0x00000000000000000000001590000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107487.0", + "sz": "0.14103", + "side": "B", + "time": 1761026024393, + "startPosition": "-478.84944", + "dir": "Close Short", + "closedPnl": "746.161524", + "hash": "0x2af142c905d21aa92c6a042de4b39e0202a700aea0d5397bceb9ee1bc4d5f493", + "oid": 207898644527, + "crossed": true, + "fee": "3.183367", + "tid": 700396126500996, + "cloid": "0x00000000000000000000001590000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107487.0", + "sz": "0.18594", + "side": "B", + "time": 1761026034337, + "startPosition": "-478.70841", + "dir": "Close Short", + "closedPnl": "983.771352", + "hash": "0x6b183ce9f3d940956c91042de4b4190202e000cf8edc5f670ee0e83cb2dd1a80", + "oid": 207898715335, + "crossed": true, + "fee": "4.197087", + "tid": 99759959248865, + "cloid": "0x00000000000000000000001590000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107488.0", + "sz": "0.00011", + "side": "B", + "time": 1761026044417, + "startPosition": "-478.52247", + "dir": "Close Short", + "closedPnl": "0.581878", + "hash": "0x3953bb741a11d66b3acd042de4b4980206290059b514f53ddd1c66c6d915b055", + "oid": 207898759692, + "crossed": true, + "fee": "0.002482", + "tid": 973047679322223, + "cloid": "0x00000000000000000000001590000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107489.0", + "sz": "0.00011", + "side": "B", + "time": 1761026044417, + "startPosition": "-478.52236", + "dir": "Close Short", + "closedPnl": "0.581768", + "hash": "0x3953bb741a11d66b3acd042de4b4980206290059b514f53ddd1c66c6d915b055", + "oid": 207898759692, + "crossed": true, + "fee": "0.002482", + "tid": 136747160875342, + "cloid": "0x00000000000000000000001590000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107490.0", + "sz": "0.00011", + "side": "B", + "time": 1761026044417, + "startPosition": "-478.52225", + "dir": "Close Short", + "closedPnl": "0.581658", + "hash": "0x3953bb741a11d66b3acd042de4b4980206290059b514f53ddd1c66c6d915b055", + "oid": 207898759692, + "crossed": true, + "fee": "0.002483", + "tid": 79262787212926, + "cloid": "0x00000000000000000000001590000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.00011", + "side": "B", + "time": 1761026044417, + "startPosition": "-478.52214", + "dir": "Close Short", + "closedPnl": "0.581548", + "hash": "0x3953bb741a11d66b3acd042de4b4980206290059b514f53ddd1c66c6d915b055", + "oid": 207898759692, + "crossed": true, + "fee": "0.002483", + "tid": 672252681928065, + "cloid": "0x00000000000000000000001590000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107491.0", + "sz": "0.1855", + "side": "B", + "time": 1761026044417, + "startPosition": "-478.52203", + "dir": "Close Short", + "closedPnl": "980.7014", + "hash": "0x3953bb741a11d66b3acd042de4b4980206290059b514f53ddd1c66c6d915b055", + "oid": 207898759692, + "crossed": true, + "fee": "4.187311", + "tid": 536696773485566, + "cloid": "0x00000000000000000000001590000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107506.0", + "sz": "0.18589", + "side": "B", + "time": 1761026050359, + "startPosition": "-478.33653", + "dir": "Close Short", + "closedPnl": "979.974902", + "hash": "0x61d4259f9a553c92634d042de4b4da020403008535585b64059cd0f25959167d", + "oid": 207898817554, + "crossed": true, + "fee": "4.1967", + "tid": 906855646584060, + "cloid": "0x00000000000000000000001590000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107510.0", + "sz": "0.18589", + "side": "B", + "time": 1761026055833, + "startPosition": "-478.15064", + "dir": "Close Short", + "closedPnl": "979.231342", + "hash": "0x30732077e9723a3d31ec042de4b516020199005d8475590fd43bcbcaa8761427", + "oid": 207898844643, + "crossed": true, + "fee": "4.196857", + "tid": 1331955075672, + "cloid": "0x00000000000000000000001590000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107510.0", + "sz": "0.18588", + "side": "B", + "time": 1761026058053, + "startPosition": "-477.96475", + "dir": "Close Short", + "closedPnl": "979.178664", + "hash": "0x2b3ea939721baaf92cb8042de4b53101ec00c11f0d1ec9cbcf07548c311f84e3", + "oid": 207898856633, + "crossed": true, + "fee": "4.196631", + "tid": 993899046709828, + "cloid": "0x00000000000000000000001590000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107510.0", + "sz": "0.18586", + "side": "B", + "time": 1761026063012, + "startPosition": "-477.77887", + "dir": "Close Short", + "closedPnl": "979.073308", + "hash": "0xb7eaedb762dda236b964042de4b578020235009cfdd0c1085bb3990a21d17c21", + "oid": 207898910870, + "crossed": true, + "fee": "4.196179", + "tid": 231965205570628, + "cloid": "0x00000000000000000000001590000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107516.0", + "sz": "0.1157", + "side": "B", + "time": 1761026064894, + "startPosition": "-477.59301", + "dir": "Close Short", + "closedPnl": "608.79026", + "hash": "0xe0347068b578bc03e1ae042de4b590020477004e507bdad583fd1bbb747c95ee", + "oid": 207898934750, + "crossed": true, + "fee": "2.612316", + "tid": 802044876200006, + "cloid": "0x00000000000000000000001590000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107516.0", + "sz": "0.00011", + "side": "B", + "time": 1761026064894, + "startPosition": "-477.47731", + "dir": "Close Short", + "closedPnl": "0.578798", + "hash": "0xe0347068b578bc03e1ae042de4b590020477004e507bdad583fd1bbb747c95ee", + "oid": 207898934750, + "crossed": true, + "fee": "0.002483", + "tid": 1015961803327899, + "cloid": "0x00000000000000000000001590000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107516.0", + "sz": "0.0093", + "side": "B", + "time": 1761026064894, + "startPosition": "-477.4772", + "dir": "Close Short", + "closedPnl": "48.93474", + "hash": "0xe0347068b578bc03e1ae042de4b590020477004e507bdad583fd1bbb747c95ee", + "oid": 207898934750, + "crossed": true, + "fee": "0.209978", + "tid": 580350266365409, + "cloid": "0x00000000000000000000001590000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107516.0", + "sz": "0.06076", + "side": "B", + "time": 1761026064894, + "startPosition": "-477.4679", + "dir": "Close Short", + "closedPnl": "319.706968", + "hash": "0xe0347068b578bc03e1ae042de4b590020477004e507bdad583fd1bbb747c95ee", + "oid": 207898934750, + "crossed": true, + "fee": "1.371861", + "tid": 504332580481024, + "cloid": "0x00000000000000000000001590000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107518.0", + "sz": "0.18588", + "side": "B", + "time": 1761026075705, + "startPosition": "-477.40714", + "dir": "Close Short", + "closedPnl": "977.691624", + "hash": "0x2eed6756f895284c3067042de4b61e020233003c9398471ed2b612a9b7990236", + "oid": 207899051874, + "crossed": true, + "fee": "4.196943", + "tid": 503245410685700, + "cloid": "0x00000000000000000000001590000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107518.0", + "sz": "0.1705", + "side": "B", + "time": 1761026077180, + "startPosition": "-477.22126", + "dir": "Close Short", + "closedPnl": "896.7959", + "hash": "0x9f015d12b904f835a07b042de4b62e02048200f85408170742ca08657808d220", + "oid": 207899072293, + "crossed": true, + "fee": "3.849681", + "tid": 221806466924712, + "cloid": "0x00000000000000000000001590000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107518.0", + "sz": "0.01538", + "side": "B", + "time": 1761026077180, + "startPosition": "-477.05076", + "dir": "Close Short", + "closedPnl": "80.895724", + "hash": "0x9f015d12b904f835a07b042de4b62e02048200f85408170742ca08657808d220", + "oid": 207899072293, + "crossed": true, + "fee": "0.347261", + "tid": 286172898896742, + "cloid": "0x00000000000000000000001590000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107515.0", + "sz": "0.18588", + "side": "B", + "time": 1761026078426, + "startPosition": "-477.03538", + "dir": "Close Short", + "closedPnl": "978.249264", + "hash": "0x5f7921a765f9742660f2042de4b64002054f008d00fc92f80341ccfa24fd4e11", + "oid": 207899096077, + "crossed": true, + "fee": "4.196826", + "tid": 531847901086375, + "cloid": "0x00000000000000000000001590000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107514.0", + "sz": "0.03788", + "side": "B", + "time": 1761026080035, + "startPosition": "-476.8495", + "dir": "Close Short", + "closedPnl": "199.392744", + "hash": "0xc774a71390be3085c8ee042de4b65302073c00f92bb14f576b3d52664fb20a70", + "oid": 207899121079, + "crossed": true, + "fee": "0.855252", + "tid": 650533342001739, + "cloid": "0x00000000000000000000001590000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107514.0", + "sz": "0.08042", + "side": "B", + "time": 1761026080035, + "startPosition": "-476.81162", + "dir": "Close Short", + "closedPnl": "423.314796", + "hash": "0xc774a71390be3085c8ee042de4b65302073c00f92bb14f576b3d52664fb20a70", + "oid": 207899121079, + "crossed": true, + "fee": "1.815717", + "tid": 248661545742792, + "cloid": "0x00000000000000000000001590000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107514.0", + "sz": "0.0676", + "side": "B", + "time": 1761026080035, + "startPosition": "-476.7312", + "dir": "Close Short", + "closedPnl": "355.83288", + "hash": "0xc774a71390be3085c8ee042de4b65302073c00f92bb14f576b3d52664fb20a70", + "oid": 207899121079, + "crossed": true, + "fee": "1.526268", + "tid": 1017172563142655, + "cloid": "0x00000000000000000000001590000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107507.0", + "sz": "0.18591", + "side": "B", + "time": 1761026084523, + "startPosition": "-476.6636", + "dir": "Close Short", + "closedPnl": "979.894428", + "hash": "0x897657ee2fca4fc48af0042de4b68802038c00d3cacd6e962d3f0340eece29af", + "oid": 207899179541, + "crossed": true, + "fee": "4.197191", + "tid": 270086973443929, + "cloid": "0x00000000000000000000001590000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107511.0", + "sz": "0.18573", + "side": "B", + "time": 1761026094671, + "startPosition": "-476.47769", + "dir": "Close Short", + "closedPnl": "978.202764", + "hash": "0xd15b4c32949222d2d2d5042de4b71a02040700182f9541a47523f7855395fcbd", + "oid": 207899276193, + "crossed": true, + "fee": "4.193283", + "tid": 81020096764210, + "cloid": "0x00000000000000000000001590000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107511.0", + "sz": "0.00018", + "side": "B", + "time": 1761026094671, + "startPosition": "-476.29196", + "dir": "Close Short", + "closedPnl": "0.948024", + "hash": "0xd15b4c32949222d2d2d5042de4b71a02040700182f9541a47523f7855395fcbd", + "oid": 207899276193, + "crossed": true, + "fee": "0.004063", + "tid": 760316942976334, + "cloid": "0x00000000000000000000001590000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107515.0", + "sz": "0.1859", + "side": "B", + "time": 1761026096036, + "startPosition": "-476.29178", + "dir": "Close Short", + "closedPnl": "978.35452", + "hash": "0xb11a09e5968f1ef7b293042de4b72c0206a400cb31823dc954e2b5385582f8e2", + "oid": 207899299673, + "crossed": true, + "fee": "4.197278", + "tid": 849485779705530, + "cloid": "0x00000000000000000000001590000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107527.0", + "sz": "0.1859", + "side": "B", + "time": 1761026103278, + "startPosition": "-476.10588", + "dir": "Close Short", + "closedPnl": "976.12372", + "hash": "0xce954821f7afd02fd00f042de4b782020458000792a2ef01725df374b6a3aa1a", + "oid": 207899366214, + "crossed": true, + "fee": "4.197746", + "tid": 928831063430997, + "cloid": "0x00000000000000000000001590000084", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107527.0", + "sz": "0.18588", + "side": "B", + "time": 1761026113344, + "startPosition": "-475.91998", + "dir": "Close Short", + "closedPnl": "976.018704", + "hash": "0x3eb529491e75f1ec402e042de4b804020243002eb97910bee27dd49bdd79cbd6", + "oid": 207899433199, + "crossed": true, + "fee": "4.197294", + "tid": 130799013975763, + "cloid": "0x00000000000000000000001590000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107523.0", + "sz": "0.02948", + "side": "B", + "time": 1761026122216, + "startPosition": "-475.7341", + "dir": "Close Short", + "closedPnl": "154.911504", + "hash": "0x193a84fbba1e9b4f1ab4042de4b8700202f100e15511ba21bd03304e79127539", + "oid": 207899520298, + "crossed": true, + "fee": "0.665653", + "tid": 380476862303160, + "cloid": "0x00000000000000000000001590000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107523.0", + "sz": "0.14945", + "side": "B", + "time": 1761026122216, + "startPosition": "-475.70462", + "dir": "Close Short", + "closedPnl": "785.32986", + "hash": "0x193a84fbba1e9b4f1ab4042de4b8700202f100e15511ba21bd03304e79127539", + "oid": 207899520298, + "crossed": true, + "fee": "3.374555", + "tid": 17890875354223, + "cloid": "0x00000000000000000000001590000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107523.0", + "sz": "0.00695", + "side": "B", + "time": 1761026122216, + "startPosition": "-475.55517", + "dir": "Close Short", + "closedPnl": "36.52086", + "hash": "0x193a84fbba1e9b4f1ab4042de4b8700202f100e15511ba21bd03304e79127539", + "oid": 207899520298, + "crossed": true, + "fee": "0.156929", + "tid": 974138978083719, + "cloid": "0x00000000000000000000001590000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107515.0", + "sz": "0.18575", + "side": "B", + "time": 1761026124049, + "startPosition": "-475.54822", + "dir": "Close Short", + "closedPnl": "977.5651", + "hash": "0x623ec81c1dc1badf63b8042de4b8870205310001b8c4d9b10607736edcc594ca", + "oid": 207899548786, + "crossed": true, + "fee": "4.193891", + "tid": 829978375435662, + "cloid": "0x00000000000000000000001590000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107515.0", + "sz": "0.00016", + "side": "B", + "time": 1761026124049, + "startPosition": "-475.36247", + "dir": "Close Short", + "closedPnl": "0.842048", + "hash": "0x623ec81c1dc1badf63b8042de4b8870205310001b8c4d9b10607736edcc594ca", + "oid": 207899548786, + "crossed": true, + "fee": "0.003612", + "tid": 559649018467928, + "cloid": "0x00000000000000000000001590000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107522.0", + "sz": "0.18591", + "side": "B", + "time": 1761026134992, + "startPosition": "-475.36231", + "dir": "Close Short", + "closedPnl": "977.105778", + "hash": "0xa30e9a0a2376edf2a488042de4b91102031200efbe7a0cc446d7455ce27ac7dd", + "oid": 207899668975, + "crossed": true, + "fee": "4.197777", + "tid": 413610443614059, + "cloid": "0x00000000000000000000001590000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107526.0", + "sz": "0.18588", + "side": "B", + "time": 1761026136678, + "startPosition": "-475.1764", + "dir": "Close Short", + "closedPnl": "976.204584", + "hash": "0x355a1c503e8c391636d3042de4b9260205c20035d98f57e8d922c7a2fd801300", + "oid": 207899692609, + "crossed": true, + "fee": "4.197255", + "tid": 1069180824015170, + "cloid": "0x00000000000000000000001590000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107526.0", + "sz": "0.02746", + "side": "B", + "time": 1761026141896, + "startPosition": "-474.99052", + "dir": "Close Short", + "closedPnl": "144.214428", + "hash": "0xf1a86738a30d4c93f322042de4b974020144001e3e006b669571128b6201267e", + "oid": 207899743308, + "crossed": true, + "fee": "0.620059", + "tid": 551217439521295, + "cloid": "0x00000000000000000000001590000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107526.0", + "sz": "0.07099", + "side": "B", + "time": 1761026141896, + "startPosition": "-474.96306", + "dir": "Close Short", + "closedPnl": "372.825282", + "hash": "0xf1a86738a30d4c93f322042de4b974020144001e3e006b669571128b6201267e", + "oid": 207899743308, + "crossed": true, + "fee": "1.602986", + "tid": 380537580497480, + "cloid": "0x00000000000000000000001590000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107526.0", + "sz": "0.00011", + "side": "B", + "time": 1761026141896, + "startPosition": "-474.89207", + "dir": "Close Short", + "closedPnl": "0.577698", + "hash": "0xf1a86738a30d4c93f322042de4b974020144001e3e006b669571128b6201267e", + "oid": 207899743308, + "crossed": true, + "fee": "0.002483", + "tid": 489690588739333, + "cloid": "0x00000000000000000000001590000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107526.0", + "sz": "0.08732", + "side": "B", + "time": 1761026141896, + "startPosition": "-474.89196", + "dir": "Close Short", + "closedPnl": "458.587176", + "hash": "0xf1a86738a30d4c93f322042de4b974020144001e3e006b669571128b6201267e", + "oid": 207899743308, + "crossed": true, + "fee": "1.971725", + "tid": 817828994247208, + "cloid": "0x00000000000000000000001590000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107526.0", + "sz": "0.18588", + "side": "B", + "time": 1761026143111, + "startPosition": "-474.80464", + "dir": "Close Short", + "closedPnl": "976.204584", + "hash": "0x635810934e35ccd264d1042de4b98502015a0078e938eba40720bbe60d39a6bd", + "oid": 207899750987, + "crossed": true, + "fee": "4.197255", + "tid": 153122766039520, + "cloid": "0x00000000000000000000001590000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107528.0", + "sz": "0.18588", + "side": "B", + "time": 1761026148368, + "startPosition": "-474.61876", + "dir": "Close Short", + "closedPnl": "975.832824", + "hash": "0xbadc675e3ef1b390bc56042de4b9d10201ca0043d9f4d2625ea512b0fdf58d7b", + "oid": 207899785922, + "crossed": true, + "fee": "4.197333", + "tid": 26997843156253, + "cloid": "0x00000000000000000000001590000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107538.0", + "sz": "0.18587", + "side": "B", + "time": 1761026151402, + "startPosition": "-474.43288", + "dir": "Close Short", + "closedPnl": "973.921626", + "hash": "0xc8db8f89e305985dca55042de4b9f90201eb006f7e08b72f6ca43adca2097248", + "oid": 207899816665, + "crossed": true, + "fee": "4.197498", + "tid": 964638294930075, + "cloid": "0x00000000000000000000001590000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107532.0", + "sz": "0.18587", + "side": "B", + "time": 1761026161090, + "startPosition": "-474.24701", + "dir": "Close Short", + "closedPnl": "975.036846", + "hash": "0xf309d75bbbfcef4bf483042de4ba7a02070d004156f00e1e96d282ae7af0c936", + "oid": 207899883737, + "crossed": true, + "fee": "4.197264", + "tid": 952691860786246, + "cloid": "0x00000000000000000000001590000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107526.0", + "sz": "0.18589", + "side": "B", + "time": 1761026162346, + "startPosition": "-474.06114", + "dir": "Close Short", + "closedPnl": "976.257102", + "hash": "0x92483061338bcd4a93c1042de4ba8b0201d90046ce8eec1c3610dbb3f28fa735", + "oid": 207899907926, + "crossed": true, + "fee": "4.197481", + "tid": 583199177447352, + "cloid": "0x00000000000000000000001590000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107526.0", + "sz": "0.02219", + "side": "B", + "time": 1761026163518, + "startPosition": "-473.87525", + "dir": "Close Short", + "closedPnl": "116.537442", + "hash": "0x3445c65c863e352c35bf042de4ba9802023b0042213153fed80e71af45320f16", + "oid": 207899926419, + "crossed": true, + "fee": "0.50106", + "tid": 151795819020070, + "cloid": "0x00000000000000000000001590000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107526.0", + "sz": "0.11559", + "side": "B", + "time": 1761026163518, + "startPosition": "-473.85306", + "dir": "Close Short", + "closedPnl": "607.055562", + "hash": "0x3445c65c863e352c35bf042de4ba9802023b0042213153fed80e71af45320f16", + "oid": 207899926419, + "crossed": true, + "fee": "2.610075", + "tid": 541017899367421, + "cloid": "0x00000000000000000000001590000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107526.0", + "sz": "0.04812", + "side": "B", + "time": 1761026163518, + "startPosition": "-473.73747", + "dir": "Close Short", + "closedPnl": "252.716616", + "hash": "0x3445c65c863e352c35bf042de4ba9802023b0042213153fed80e71af45320f16", + "oid": 207899926419, + "crossed": true, + "fee": "1.086571", + "tid": 1076580367484295, + "cloid": "0x00000000000000000000001590000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107526.0", + "sz": "0.1859", + "side": "B", + "time": 1761026164754, + "startPosition": "-473.68935", + "dir": "Close Short", + "closedPnl": "976.30962", + "hash": "0xf9978c038baed9f8fb11042de4baa902039500e926a1f8cb9d6037564aa2b3e3", + "oid": 207899941723, + "crossed": true, + "fee": "4.197707", + "tid": 939121645457590, + "cloid": "0x00000000000000000000001590000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107513.0", + "sz": "0.1859", + "side": "B", + "time": 1761026166608, + "startPosition": "-473.50345", + "dir": "Close Short", + "closedPnl": "978.72632", + "hash": "0xb25e54d59ae16477b3d8042de4bac102023100bb35e483495627002859e53e62", + "oid": 207899963199, + "crossed": true, + "fee": "4.1972", + "tid": 544217555113087, + "cloid": "0x00000000000000000000001590000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107499.0", + "sz": "0.08396", + "side": "B", + "time": 1761026168077, + "startPosition": "-473.31755", + "dir": "Close Short", + "closedPnl": "443.208048", + "hash": "0xad9fa5b689c5efa1af19042de4bad7020261009c24c90e735168510948c9c98c", + "oid": 207899989877, + "crossed": true, + "fee": "1.895379", + "tid": 403474239039055, + "cloid": "0x00000000000000000000001590000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107499.0", + "sz": "0.10198", + "side": "B", + "time": 1761026168077, + "startPosition": "-473.23359", + "dir": "Close Short", + "closedPnl": "538.332024", + "hash": "0xad9fa5b689c5efa1af19042de4bad7020261009c24c90e735168510948c9c98c", + "oid": 207899989877, + "crossed": true, + "fee": "2.302177", + "tid": 528559552872695, + "cloid": "0x00000000000000000000001590000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107498.0", + "sz": "0.1345", + "side": "B", + "time": 1761026169547, + "startPosition": "-473.13161", + "dir": "Close Short", + "closedPnl": "710.1331", + "hash": "0x98a6ef63f05af1a89a20042de4baec02028900498b5e107a3c6f9ab6af5ecb93", + "oid": 207900014083, + "crossed": true, + "fee": "3.036281", + "tid": 263334490827145, + "cloid": "0x00000000000000000000001590000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107498.0", + "sz": "0.05145", + "side": "B", + "time": 1761026169547, + "startPosition": "-472.99711", + "dir": "Close Short", + "closedPnl": "271.64571", + "hash": "0x98a6ef63f05af1a89a20042de4baec02028900498b5e107a3c6f9ab6af5ecb93", + "oid": 207900014083, + "crossed": true, + "fee": "1.161462", + "tid": 1032359316803091, + "cloid": "0x00000000000000000000001590000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107750.0", + "sz": "0.00941", + "side": "B", + "time": 1761027453493, + "startPosition": "-472.94566", + "dir": "Close Short", + "closedPnl": "47.311598", + "hash": "0x6e2ad05f3cb4b7756fa4042de4f9cc0202df0044d7b7d64711f37bb1fbb89160", + "oid": 207913926641, + "crossed": true, + "fee": "0.212924", + "tid": 45476109539570, + "cloid": "0x00000000000000000000001591000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107750.0", + "sz": "0.00012", + "side": "B", + "time": 1761027453493, + "startPosition": "-472.93625", + "dir": "Close Short", + "closedPnl": "0.603336", + "hash": "0x6e2ad05f3cb4b7756fa4042de4f9cc0202df0044d7b7d64711f37bb1fbb89160", + "oid": 207913926641, + "crossed": true, + "fee": "0.002715", + "tid": 357187773690916, + "cloid": "0x00000000000000000000001591000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107750.0", + "sz": "0.02951", + "side": "B", + "time": 1761027453493, + "startPosition": "-472.93613", + "dir": "Close Short", + "closedPnl": "148.370378", + "hash": "0x6e2ad05f3cb4b7756fa4042de4f9cc0202df0044d7b7d64711f37bb1fbb89160", + "oid": 207913926641, + "crossed": true, + "fee": "0.667737", + "tid": 661040807070376, + "cloid": "0x00000000000000000000001591000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107750.0", + "sz": "0.05372", + "side": "B", + "time": 1761027453493, + "startPosition": "-472.90662", + "dir": "Close Short", + "closedPnl": "270.093416", + "hash": "0x6e2ad05f3cb4b7756fa4042de4f9cc0202df0044d7b7d64711f37bb1fbb89160", + "oid": 207913926641, + "crossed": true, + "fee": "1.215549", + "tid": 228458032713065, + "cloid": "0x00000000000000000000001591000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107750.0", + "sz": "0.06923", + "side": "B", + "time": 1761027455305, + "startPosition": "-472.8529", + "dir": "Close Short", + "closedPnl": "348.074594", + "hash": "0x629840601cb01b8c6411042de4f9e60202dd0045b7b33a5e0660ebb2dbb3f577", + "oid": 207913935964, + "crossed": true, + "fee": "1.566501", + "tid": 501189404850832, + "cloid": "0x00000000000000000000001591000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107750.0", + "sz": "0.02353", + "side": "B", + "time": 1761027455305, + "startPosition": "-472.78367", + "dir": "Close Short", + "closedPnl": "118.304134", + "hash": "0x629840601cb01b8c6411042de4f9e60202dd0045b7b33a5e0660ebb2dbb3f577", + "oid": 207913935964, + "crossed": true, + "fee": "0.532425", + "tid": 279682151933181, + "cloid": "0x00000000000000000000001591000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107751.0", + "sz": "0.00011", + "side": "B", + "time": 1761027460172, + "startPosition": "-472.76014", + "dir": "Close Short", + "closedPnl": "0.552948", + "hash": "0xfd989231cd4182c7ff12042de4fa1a0201ca00176844a19aa1613d848c455cb2", + "oid": 207913988911, + "crossed": true, + "fee": "0.002489", + "tid": 694182252876464, + "cloid": "0x00000000000000000000001591000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107751.0", + "sz": "0.09265", + "side": "B", + "time": 1761027460172, + "startPosition": "-472.76003", + "dir": "Close Short", + "closedPnl": "465.73302", + "hash": "0xfd989231cd4182c7ff12042de4fa1a0201ca00176844a19aa1613d848c455cb2", + "oid": 207913988911, + "crossed": true, + "fee": "2.096457", + "tid": 496902639205760, + "cloid": "0x00000000000000000000001591000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107745.0", + "sz": "0.04475", + "side": "B", + "time": 1761027461461, + "startPosition": "-472.66738", + "dir": "Close Short", + "closedPnl": "225.2178", + "hash": "0x5801f5034f1a57a9597b042de4fa2902046400e8ea1d767bfbcaa0560e1e3193", + "oid": 207914008302, + "crossed": true, + "fee": "1.012533", + "tid": 1024922195630410, + "cloid": "0x00000000000000000000001591000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107745.0", + "sz": "0.04801", + "side": "B", + "time": 1761027461461, + "startPosition": "-472.62263", + "dir": "Close Short", + "closedPnl": "241.624728", + "hash": "0x5801f5034f1a57a9597b042de4fa2902046400e8ea1d767bfbcaa0560e1e3193", + "oid": 207914008302, + "crossed": true, + "fee": "1.086295", + "tid": 773153131359223, + "cloid": "0x00000000000000000000001591000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107745.0", + "sz": "0.07702", + "side": "B", + "time": 1761027463109, + "startPosition": "-472.57462", + "dir": "Close Short", + "closedPnl": "387.626256", + "hash": "0x41959929c90b4648430f042de4fa3f02036d000f640e651ae55e447c880f2032", + "oid": 207914030371, + "crossed": true, + "fee": "1.742689", + "tid": 317835574692609, + "cloid": "0x00000000000000000000001591000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107745.0", + "sz": "0.01574", + "side": "B", + "time": 1761027463109, + "startPosition": "-472.4976", + "dir": "Close Short", + "closedPnl": "79.216272", + "hash": "0x41959929c90b4648430f042de4fa3f02036d000f640e651ae55e447c880f2032", + "oid": 207914030371, + "crossed": true, + "fee": "0.35614", + "tid": 626724874701305, + "cloid": "0x00000000000000000000001591000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107745.0", + "sz": "0.00011", + "side": "B", + "time": 1761027466759, + "startPosition": "-472.48186", + "dir": "Close Short", + "closedPnl": "0.553608", + "hash": "0x7a741f0a841206b77bed042de4fa6e02021b00f01f1525891e3cca5d4315e0a2", + "oid": 207914068080, + "crossed": true, + "fee": "0.002488", + "tid": 554684649703573, + "cloid": "0x00000000000000000000001591000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107746.0", + "sz": "0.00011", + "side": "B", + "time": 1761027466759, + "startPosition": "-472.48175", + "dir": "Close Short", + "closedPnl": "0.553498", + "hash": "0x7a741f0a841206b77bed042de4fa6e02021b00f01f1525891e3cca5d4315e0a2", + "oid": 207914068080, + "crossed": true, + "fee": "0.002488", + "tid": 569890646860029, + "cloid": "0x00000000000000000000001591000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107747.0", + "sz": "0.00011", + "side": "B", + "time": 1761027466759, + "startPosition": "-472.48164", + "dir": "Close Short", + "closedPnl": "0.553388", + "hash": "0x7a741f0a841206b77bed042de4fa6e02021b00f01f1525891e3cca5d4315e0a2", + "oid": 207914068080, + "crossed": true, + "fee": "0.002488", + "tid": 284654902008289, + "cloid": "0x00000000000000000000001591000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107747.0", + "sz": "0.00014", + "side": "B", + "time": 1761027466759, + "startPosition": "-472.48153", + "dir": "Close Short", + "closedPnl": "0.704312", + "hash": "0x7a741f0a841206b77bed042de4fa6e02021b00f01f1525891e3cca5d4315e0a2", + "oid": 207914068080, + "crossed": true, + "fee": "0.003167", + "tid": 1054148750768576, + "cloid": "0x00000000000000000000001591000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107748.0", + "sz": "0.00011", + "side": "B", + "time": 1761027466759, + "startPosition": "-472.48139", + "dir": "Close Short", + "closedPnl": "0.553278", + "hash": "0x7a741f0a841206b77bed042de4fa6e02021b00f01f1525891e3cca5d4315e0a2", + "oid": 207914068080, + "crossed": true, + "fee": "0.002488", + "tid": 310582549674465, + "cloid": "0x00000000000000000000001591000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107749.0", + "sz": "0.00011", + "side": "B", + "time": 1761027466759, + "startPosition": "-472.48128", + "dir": "Close Short", + "closedPnl": "0.553168", + "hash": "0x7a741f0a841206b77bed042de4fa6e02021b00f01f1525891e3cca5d4315e0a2", + "oid": 207914068080, + "crossed": true, + "fee": "0.002489", + "tid": 582418572835365, + "cloid": "0x00000000000000000000001591000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107750.0", + "sz": "0.00011", + "side": "B", + "time": 1761027466759, + "startPosition": "-472.48117", + "dir": "Close Short", + "closedPnl": "0.553058", + "hash": "0x7a741f0a841206b77bed042de4fa6e02021b00f01f1525891e3cca5d4315e0a2", + "oid": 207914068080, + "crossed": true, + "fee": "0.002489", + "tid": 890991345326730, + "cloid": "0x00000000000000000000001591000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107751.0", + "sz": "0.00014", + "side": "B", + "time": 1761027466759, + "startPosition": "-472.48106", + "dir": "Close Short", + "closedPnl": "0.703752", + "hash": "0x7a741f0a841206b77bed042de4fa6e02021b00f01f1525891e3cca5d4315e0a2", + "oid": 207914068080, + "crossed": true, + "fee": "0.003167", + "tid": 595052323757828, + "cloid": "0x00000000000000000000001591000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107751.0", + "sz": "0.00011", + "side": "B", + "time": 1761027466759, + "startPosition": "-472.48092", + "dir": "Close Short", + "closedPnl": "0.552948", + "hash": "0x7a741f0a841206b77bed042de4fa6e02021b00f01f1525891e3cca5d4315e0a2", + "oid": 207914068080, + "crossed": true, + "fee": "0.002489", + "tid": 855789505721398, + "cloid": "0x00000000000000000000001591000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107752.0", + "sz": "0.00011", + "side": "B", + "time": 1761027466759, + "startPosition": "-472.48081", + "dir": "Close Short", + "closedPnl": "0.552838", + "hash": "0x7a741f0a841206b77bed042de4fa6e02021b00f01f1525891e3cca5d4315e0a2", + "oid": 207914068080, + "crossed": true, + "fee": "0.002489", + "tid": 550780165679849, + "cloid": "0x00000000000000000000001591000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107753.0", + "sz": "0.0001", + "side": "B", + "time": 1761027466759, + "startPosition": "-472.4807", + "dir": "Close Short", + "closedPnl": "0.50248", + "hash": "0x7a741f0a841206b77bed042de4fa6e02021b00f01f1525891e3cca5d4315e0a2", + "oid": 207914068080, + "crossed": true, + "fee": "0.002262", + "tid": 137764477490520, + "cloid": "0x00000000000000000000001591000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107753.0", + "sz": "0.00466", + "side": "B", + "time": 1761027466759, + "startPosition": "-472.4806", + "dir": "Close Short", + "closedPnl": "23.415568", + "hash": "0x7a741f0a841206b77bed042de4fa6e02021b00f01f1525891e3cca5d4315e0a2", + "oid": 207914068080, + "crossed": true, + "fee": "0.105447", + "tid": 997537476000478, + "cloid": "0x00000000000000000000001591000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107753.0", + "sz": "0.00466", + "side": "B", + "time": 1761027466759, + "startPosition": "-472.47594", + "dir": "Close Short", + "closedPnl": "23.415568", + "hash": "0x7a741f0a841206b77bed042de4fa6e02021b00f01f1525891e3cca5d4315e0a2", + "oid": 207914068080, + "crossed": true, + "fee": "0.105447", + "tid": 543550646556556, + "cloid": "0x00000000000000000000001591000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107753.0", + "sz": "0.00785", + "side": "B", + "time": 1761027466759, + "startPosition": "-472.47128", + "dir": "Close Short", + "closedPnl": "39.44468", + "hash": "0x7a741f0a841206b77bed042de4fa6e02021b00f01f1525891e3cca5d4315e0a2", + "oid": 207914068080, + "crossed": true, + "fee": "0.17763", + "tid": 614246521108229, + "cloid": "0x00000000000000000000001591000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107753.0", + "sz": "0.00785", + "side": "B", + "time": 1761027466759, + "startPosition": "-472.46343", + "dir": "Close Short", + "closedPnl": "39.44468", + "hash": "0x7a741f0a841206b77bed042de4fa6e02021b00f01f1525891e3cca5d4315e0a2", + "oid": 207914068080, + "crossed": true, + "fee": "0.17763", + "tid": 514853229676351, + "cloid": "0x00000000000000000000001591000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107753.0", + "sz": "0.00011", + "side": "B", + "time": 1761027466759, + "startPosition": "-472.45558", + "dir": "Close Short", + "closedPnl": "0.552728", + "hash": "0x7a741f0a841206b77bed042de4fa6e02021b00f01f1525891e3cca5d4315e0a2", + "oid": 207914068080, + "crossed": true, + "fee": "0.002489", + "tid": 333579910726002, + "cloid": "0x00000000000000000000001591000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107754.0", + "sz": "0.00011", + "side": "B", + "time": 1761027466759, + "startPosition": "-472.45547", + "dir": "Close Short", + "closedPnl": "0.552618", + "hash": "0x7a741f0a841206b77bed042de4fa6e02021b00f01f1525891e3cca5d4315e0a2", + "oid": 207914068080, + "crossed": true, + "fee": "0.002489", + "tid": 626056765565708, + "cloid": "0x00000000000000000000001591000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107754.0", + "sz": "0.06625", + "side": "B", + "time": 1761027466759, + "startPosition": "-472.45536", + "dir": "Close Short", + "closedPnl": "332.82675", + "hash": "0x7a741f0a841206b77bed042de4fa6e02021b00f01f1525891e3cca5d4315e0a2", + "oid": 207914068080, + "crossed": true, + "fee": "1.499127", + "tid": 265790035376978, + "cloid": "0x00000000000000000000001591000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107756.0", + "sz": "0.009", + "side": "B", + "time": 1761027470019, + "startPosition": "-472.38911", + "dir": "Close Short", + "closedPnl": "45.1962", + "hash": "0xfa866b877fb6c212fc00042de4fa940204a7006d1ab9e0e59e4f16da3eba9bfd", + "oid": 207914117344, + "crossed": true, + "fee": "0.203658", + "tid": 882702160646956, + "cloid": "0x00000000000000000000001591000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107756.0", + "sz": "0.01113", + "side": "B", + "time": 1761027470019, + "startPosition": "-472.38011", + "dir": "Close Short", + "closedPnl": "55.892634", + "hash": "0xfa866b877fb6c212fc00042de4fa940204a7006d1ab9e0e59e4f16da3eba9bfd", + "oid": 207914117344, + "crossed": true, + "fee": "0.251858", + "tid": 164150704159199, + "cloid": "0x00000000000000000000001591000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107756.0", + "sz": "0.01397", + "side": "B", + "time": 1761027470019, + "startPosition": "-472.36898", + "dir": "Close Short", + "closedPnl": "70.154546", + "hash": "0xfa866b877fb6c212fc00042de4fa940204a7006d1ab9e0e59e4f16da3eba9bfd", + "oid": 207914117344, + "crossed": true, + "fee": "0.316123", + "tid": 724903114038251, + "cloid": "0x00000000000000000000001591000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107756.0", + "sz": "0.02096", + "side": "B", + "time": 1761027470019, + "startPosition": "-472.35501", + "dir": "Close Short", + "closedPnl": "105.256928", + "hash": "0xfa866b877fb6c212fc00042de4fa940204a7006d1ab9e0e59e4f16da3eba9bfd", + "oid": 207914117344, + "crossed": true, + "fee": "0.474298", + "tid": 534834049297249, + "cloid": "0x00000000000000000000001591000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107757.0", + "sz": "0.00011", + "side": "B", + "time": 1761027470019, + "startPosition": "-472.33405", + "dir": "Close Short", + "closedPnl": "0.552288", + "hash": "0xfa866b877fb6c212fc00042de4fa940204a7006d1ab9e0e59e4f16da3eba9bfd", + "oid": 207914117344, + "crossed": true, + "fee": "0.002489", + "tid": 148708446860912, + "cloid": "0x00000000000000000000001591000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107757.0", + "sz": "0.02795", + "side": "B", + "time": 1761027470019, + "startPosition": "-472.33394", + "dir": "Close Short", + "closedPnl": "140.33136", + "hash": "0xfa866b877fb6c212fc00042de4fa940204a7006d1ab9e0e59e4f16da3eba9bfd", + "oid": 207914117344, + "crossed": true, + "fee": "0.632479", + "tid": 679654136881528, + "cloid": "0x00000000000000000000001591000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107758.0", + "sz": "0.00473", + "side": "B", + "time": 1761027470019, + "startPosition": "-472.30599", + "dir": "Close Short", + "closedPnl": "23.743654", + "hash": "0xfa866b877fb6c212fc00042de4fa940204a7006d1ab9e0e59e4f16da3eba9bfd", + "oid": 207914117344, + "crossed": true, + "fee": "0.107036", + "tid": 195461723686297, + "cloid": "0x00000000000000000000001591000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107758.0", + "sz": "0.00473", + "side": "B", + "time": 1761027470019, + "startPosition": "-472.30126", + "dir": "Close Short", + "closedPnl": "23.743654", + "hash": "0xfa866b877fb6c212fc00042de4fa940204a7006d1ab9e0e59e4f16da3eba9bfd", + "oid": 207914117344, + "crossed": true, + "fee": "0.107036", + "tid": 116804949122855, + "cloid": "0x00000000000000000000001591000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107758.0", + "sz": "0.00011", + "side": "B", + "time": 1761027470019, + "startPosition": "-472.29653", + "dir": "Close Short", + "closedPnl": "0.552178", + "hash": "0xfa866b877fb6c212fc00042de4fa940204a7006d1ab9e0e59e4f16da3eba9bfd", + "oid": 207914117344, + "crossed": true, + "fee": "0.002489", + "tid": 108921434232004, + "cloid": "0x00000000000000000000001591000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107758.0", + "sz": "0.00006", + "side": "B", + "time": 1761027470019, + "startPosition": "-472.29642", + "dir": "Close Short", + "closedPnl": "0.301188", + "hash": "0xfa866b877fb6c212fc00042de4fa940204a7006d1ab9e0e59e4f16da3eba9bfd", + "oid": 207914117344, + "crossed": true, + "fee": "0.001357", + "tid": 980751011660482, + "cloid": "0x00000000000000000000001591000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107760.0", + "sz": "0.08398", + "side": "B", + "time": 1761027475858, + "startPosition": "-472.29636", + "dir": "Close Short", + "closedPnl": "421.394844", + "hash": "0x26fc704fc31918652876042de4fadb0202aa00355e1c3737cac51ba2821cf24f", + "oid": 207914200910, + "crossed": true, + "fee": "1.900433", + "tid": 570447999081799, + "cloid": "0x00000000000000000000001591000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107760.0", + "sz": "0.00011", + "side": "B", + "time": 1761027475858, + "startPosition": "-472.21238", + "dir": "Close Short", + "closedPnl": "0.551958", + "hash": "0x26fc704fc31918652876042de4fadb0202aa00355e1c3737cac51ba2821cf24f", + "oid": 207914200910, + "crossed": true, + "fee": "0.002489", + "tid": 574631086209213, + "cloid": "0x00000000000000000000001591000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107761.0", + "sz": "0.00866", + "side": "B", + "time": 1761027475858, + "startPosition": "-472.21227", + "dir": "Close Short", + "closedPnl": "43.445488", + "hash": "0x26fc704fc31918652876042de4fadb0202aa00355e1c3737cac51ba2821cf24f", + "oid": 207914200910, + "crossed": true, + "fee": "0.195974", + "tid": 218094610569957, + "cloid": "0x00000000000000000000001591000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107770.0", + "sz": "0.07081", + "side": "B", + "time": 1761027478026, + "startPosition": "-472.20361", + "dir": "Close Short", + "closedPnl": "354.602318", + "hash": "0xef8ea1ff2b890dc3f108042de4faf50201c700e4c68c2c9593574d51ea8ce7ae", + "oid": 207914229556, + "crossed": true, + "fee": "1.60255", + "tid": 683733476485141, + "cloid": "0x00000000000000000000001591000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107770.0", + "sz": "0.00011", + "side": "B", + "time": 1761027478026, + "startPosition": "-472.1328", + "dir": "Close Short", + "closedPnl": "0.550858", + "hash": "0xef8ea1ff2b890dc3f108042de4faf50201c700e4c68c2c9593574d51ea8ce7ae", + "oid": 207914229556, + "crossed": true, + "fee": "0.002489", + "tid": 952481832472314, + "cloid": "0x00000000000000000000001591000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107771.0", + "sz": "0.00842", + "side": "B", + "time": 1761027478026, + "startPosition": "-472.13269", + "dir": "Close Short", + "closedPnl": "42.157256", + "hash": "0xef8ea1ff2b890dc3f108042de4faf50201c700e4c68c2c9593574d51ea8ce7ae", + "oid": 207914229556, + "crossed": true, + "fee": "0.19056", + "tid": 884240540186736, + "cloid": "0x00000000000000000000001591000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107771.0", + "sz": "0.00842", + "side": "B", + "time": 1761027478026, + "startPosition": "-472.12427", + "dir": "Close Short", + "closedPnl": "42.157256", + "hash": "0xef8ea1ff2b890dc3f108042de4faf50201c700e4c68c2c9593574d51ea8ce7ae", + "oid": 207914229556, + "crossed": true, + "fee": "0.19056", + "tid": 90123635370684, + "cloid": "0x00000000000000000000001591000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107771.0", + "sz": "0.00014", + "side": "B", + "time": 1761027478026, + "startPosition": "-472.11585", + "dir": "Close Short", + "closedPnl": "0.700952", + "hash": "0xef8ea1ff2b890dc3f108042de4faf50201c700e4c68c2c9593574d51ea8ce7ae", + "oid": 207914229556, + "crossed": true, + "fee": "0.003168", + "tid": 203584628359430, + "cloid": "0x00000000000000000000001591000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107771.0", + "sz": "0.00011", + "side": "B", + "time": 1761027478026, + "startPosition": "-472.11571", + "dir": "Close Short", + "closedPnl": "0.550748", + "hash": "0xef8ea1ff2b890dc3f108042de4faf50201c700e4c68c2c9593574d51ea8ce7ae", + "oid": 207914229556, + "crossed": true, + "fee": "0.002489", + "tid": 1107211760250422, + "cloid": "0x00000000000000000000001591000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107772.0", + "sz": "0.00473", + "side": "B", + "time": 1761027478026, + "startPosition": "-472.1156", + "dir": "Close Short", + "closedPnl": "23.677434", + "hash": "0xef8ea1ff2b890dc3f108042de4faf50201c700e4c68c2c9593574d51ea8ce7ae", + "oid": 207914229556, + "crossed": true, + "fee": "0.107049", + "tid": 1022020229682880, + "cloid": "0x00000000000000000000001591000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107770.0", + "sz": "0.09274", + "side": "B", + "time": 1761027480058, + "startPosition": "-472.11087", + "dir": "Close Short", + "closedPnl": "464.423372", + "hash": "0xeb479600d70da718ecc1042de4fb110203b300e67200c5ea8f10415396018103", + "oid": 207914254684, + "crossed": true, + "fee": "2.098863", + "tid": 631831032297636, + "cloid": "0x00000000000000000000001591000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107774.0", + "sz": "0.05917", + "side": "B", + "time": 1761027490069, + "startPosition": "-472.01813", + "dir": "Close Short", + "closedPnl": "296.074846", + "hash": "0xe8378deb7ebebe6ee9b1042de4fb9602018d00d119b1dd408c00393e3db29859", + "oid": 207914377017, + "crossed": true, + "fee": "1.339167", + "tid": 437140046977421, + "cloid": "0x00000000000000000000001591000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107774.0", + "sz": "0.03357", + "side": "B", + "time": 1761027490069, + "startPosition": "-471.95896", + "dir": "Close Short", + "closedPnl": "167.977566", + "hash": "0xe8378deb7ebebe6ee9b1042de4fb9602018d00d119b1dd408c00393e3db29859", + "oid": 207914377017, + "crossed": true, + "fee": "0.759774", + "tid": 934570592244987, + "cloid": "0x00000000000000000000001591000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107769.0", + "sz": "0.03722", + "side": "B", + "time": 1761027492408, + "startPosition": "-471.92539", + "dir": "Close Short", + "closedPnl": "186.427536", + "hash": "0x9ad858ded8a353219c52042de4fbb20203f800c473a671f33ea1043197a72d0c", + "oid": 207914406295, + "crossed": true, + "fee": "0.842344", + "tid": 65621618773480, + "cloid": "0x00000000000000000000001591000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107769.0", + "sz": "0.05552", + "side": "B", + "time": 1761027492408, + "startPosition": "-471.88817", + "dir": "Close Short", + "closedPnl": "278.088576", + "hash": "0x9ad858ded8a353219c52042de4fbb20203f800c473a671f33ea1043197a72d0c", + "oid": 207914406295, + "crossed": true, + "fee": "1.2565", + "tid": 824870443407828, + "cloid": "0x00000000000000000000001591000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107762.0", + "sz": "0.03501", + "side": "B", + "time": 1761027493950, + "startPosition": "-471.83265", + "dir": "Close Short", + "closedPnl": "175.603158", + "hash": "0x14b0e4b07d04b74b162a042de4fbc302021900961807d61db87990033c089135", + "oid": 207914432298, + "crossed": true, + "fee": "0.792277", + "tid": 725784959080111, + "cloid": "0x00000000000000000000001591000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107762.0", + "sz": "0.05774", + "side": "B", + "time": 1761027493950, + "startPosition": "-471.79764", + "dir": "Close Short", + "closedPnl": "289.612292", + "hash": "0x14b0e4b07d04b74b162a042de4fbc302021900961807d61db87990033c089135", + "oid": 207914432298, + "crossed": true, + "fee": "1.306657", + "tid": 246790680321190, + "cloid": "0x00000000000000000000001591000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107773.0", + "sz": "0.002", + "side": "B", + "time": 1761027495798, + "startPosition": "-471.7399", + "dir": "Close Short", + "closedPnl": "10.0096", + "hash": "0xa636c63ad47c9274a7b0042de4fbd90204ba00206f7fb14649ff718d93706c5f", + "oid": 207914464911, + "crossed": true, + "fee": "0.045264", + "tid": 624004625858930, + "cloid": "0x00000000000000000000001591000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107773.0", + "sz": "0.09074", + "side": "B", + "time": 1761027495798, + "startPosition": "-471.7379", + "dir": "Close Short", + "closedPnl": "454.135552", + "hash": "0xa636c63ad47c9274a7b0042de4fbd90204ba00206f7fb14649ff718d93706c5f", + "oid": 207914464911, + "crossed": true, + "fee": "2.053657", + "tid": 850931350237950, + "cloid": "0x00000000000000000000001591000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107773.0", + "sz": "0.09274", + "side": "B", + "time": 1761027498831, + "startPosition": "-471.64716", + "dir": "Close Short", + "closedPnl": "464.145152", + "hash": "0xc7cd4c5adf3a25f0c947042de4fbfb02021c00407a3d44c26b95f7ad9e3dffdb", + "oid": 207914488326, + "crossed": true, + "fee": "2.098922", + "tid": 686489230450765, + "cloid": "0x00000000000000000000001591000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107773.0", + "sz": "0.09274", + "side": "B", + "time": 1761027504630, + "startPosition": "-471.55442", + "dir": "Close Short", + "closedPnl": "464.145152", + "hash": "0xc38d8a9814c71c12c507042de4fc43020a75007dafca3ae4675635ead3caf5fd", + "oid": 207914572243, + "crossed": true, + "fee": "2.098922", + "tid": 146224831817596, + "cloid": "0x00000000000000000000001591000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107776.0", + "sz": "0.00011", + "side": "B", + "time": 1761027508928, + "startPosition": "-471.46168", + "dir": "Close Short", + "closedPnl": "0.550198", + "hash": "0x60d7730a09ac64ea6251042de4fc78020b2a00efa4af83bc04a01e5cc8a03ed5", + "oid": 207914630707, + "crossed": true, + "fee": "0.002489", + "tid": 1033127267440029, + "cloid": "0x00000000000000000000001591000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107776.0", + "sz": "0.09263", + "side": "B", + "time": 1761027508928, + "startPosition": "-471.46157", + "dir": "Close Short", + "closedPnl": "463.316734", + "hash": "0x60d7730a09ac64ea6251042de4fc78020b2a00efa4af83bc04a01e5cc8a03ed5", + "oid": 207914630707, + "crossed": true, + "fee": "2.096491", + "tid": 304760364354482, + "cloid": "0x00000000000000000000001591000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107776.0", + "sz": "0.09273", + "side": "B", + "time": 1761027510358, + "startPosition": "-471.36894", + "dir": "Close Short", + "closedPnl": "463.816914", + "hash": "0xcee19df7edff2ed7d05b042de4fc8802046700dd88f24da972aa494aacf308c2", + "oid": 207914646049, + "crossed": true, + "fee": "2.098754", + "tid": 746198468353940, + "cloid": "0x00000000000000000000001591000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107761.0", + "sz": "0.03602", + "side": "B", + "time": 1761027511787, + "startPosition": "-471.27621", + "dir": "Close Short", + "closedPnl": "180.705136", + "hash": "0x4359cca6a0a00d2f44d3042de4fc9c020666008c3ba32c01e72277f95fa3e719", + "oid": 207914671760, + "crossed": true, + "fee": "0.815125", + "tid": 637171573951912, + "cloid": "0x00000000000000000000001591000019", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107761.0", + "sz": "0.05674", + "side": "B", + "time": 1761027511787, + "startPosition": "-471.24019", + "dir": "Close Short", + "closedPnl": "284.653232", + "hash": "0x4359cca6a0a00d2f44d3042de4fc9c020666008c3ba32c01e72277f95fa3e719", + "oid": 207914671760, + "crossed": true, + "fee": "1.284015", + "tid": 700890630497614, + "cloid": "0x00000000000000000000001591000019", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107755.0", + "sz": "0.09276", + "side": "B", + "time": 1761027522331, + "startPosition": "-471.18345", + "dir": "Close Short", + "closedPnl": "465.914928", + "hash": "0x52ee03203d194bb85467042de4fd290207440005d81c6a8af6b6ae72fc1d25a2", + "oid": 207914765163, + "crossed": true, + "fee": "2.099024", + "tid": 301602579543708, + "cloid": "0x00000000000000000000001591000020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107759.0", + "sz": "0.03497", + "side": "B", + "time": 1761027524306, + "startPosition": "-471.09069", + "dir": "Close Short", + "closedPnl": "175.507436", + "hash": "0x80791d3aafa522a081f2042de4fd4302055300204aa841722441c88d6ea8fc8b", + "oid": 207914794683, + "crossed": true, + "fee": "0.791349", + "tid": 107257457242818, + "cloid": "0x00000000000000000000001591000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107761.0", + "sz": "0.05778", + "side": "B", + "time": 1761027524306, + "startPosition": "-471.05572", + "dir": "Close Short", + "closedPnl": "289.870704", + "hash": "0x80791d3aafa522a081f2042de4fd4302055300204aa841722441c88d6ea8fc8b", + "oid": 207914794683, + "crossed": true, + "fee": "1.30755", + "tid": 372676618339068, + "cloid": "0x00000000000000000000001591000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107765.0", + "sz": "0.0001", + "side": "B", + "time": 1761027529478, + "startPosition": "-470.99794", + "dir": "Close Short", + "closedPnl": "0.50128", + "hash": "0xdc5ff3c10bb89636ddd9042de4fd880201a300a6a6bbb50880289f13cabc7021", + "oid": 207914845382, + "crossed": true, + "fee": "0.002263", + "tid": 546931690346638, + "cloid": "0x00000000000000000000001591000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107766.0", + "sz": "0.00011", + "side": "B", + "time": 1761027529478, + "startPosition": "-470.99784", + "dir": "Close Short", + "closedPnl": "0.551298", + "hash": "0xdc5ff3c10bb89636ddd9042de4fd880201a300a6a6bbb50880289f13cabc7021", + "oid": 207914845382, + "crossed": true, + "fee": "0.002489", + "tid": 665518397051795, + "cloid": "0x00000000000000000000001591000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107767.0", + "sz": "0.00014", + "side": "B", + "time": 1761027529478, + "startPosition": "-470.99773", + "dir": "Close Short", + "closedPnl": "0.701512", + "hash": "0xdc5ff3c10bb89636ddd9042de4fd880201a300a6a6bbb50880289f13cabc7021", + "oid": 207914845382, + "crossed": true, + "fee": "0.003168", + "tid": 75276268433574, + "cloid": "0x00000000000000000000001591000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107767.0", + "sz": "0.00011", + "side": "B", + "time": 1761027529478, + "startPosition": "-470.99759", + "dir": "Close Short", + "closedPnl": "0.551188", + "hash": "0xdc5ff3c10bb89636ddd9042de4fd880201a300a6a6bbb50880289f13cabc7021", + "oid": 207914845382, + "crossed": true, + "fee": "0.002489", + "tid": 592496481645074, + "cloid": "0x00000000000000000000001591000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107768.0", + "sz": "0.00011", + "side": "B", + "time": 1761027529478, + "startPosition": "-470.99748", + "dir": "Close Short", + "closedPnl": "0.551078", + "hash": "0xdc5ff3c10bb89636ddd9042de4fd880201a300a6a6bbb50880289f13cabc7021", + "oid": 207914845382, + "crossed": true, + "fee": "0.002489", + "tid": 36396738482525, + "cloid": "0x00000000000000000000001591000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107769.0", + "sz": "0.00011", + "side": "B", + "time": 1761027529478, + "startPosition": "-470.99737", + "dir": "Close Short", + "closedPnl": "0.550968", + "hash": "0xdc5ff3c10bb89636ddd9042de4fd880201a300a6a6bbb50880289f13cabc7021", + "oid": 207914845382, + "crossed": true, + "fee": "0.002489", + "tid": 984297512299051, + "cloid": "0x00000000000000000000001591000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107770.0", + "sz": "0.00011", + "side": "B", + "time": 1761027529478, + "startPosition": "-470.99726", + "dir": "Close Short", + "closedPnl": "0.550858", + "hash": "0xdc5ff3c10bb89636ddd9042de4fd880201a300a6a6bbb50880289f13cabc7021", + "oid": 207914845382, + "crossed": true, + "fee": "0.002489", + "tid": 638942971323990, + "cloid": "0x00000000000000000000001591000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107770.0", + "sz": "0.09195", + "side": "B", + "time": 1761027529478, + "startPosition": "-470.99715", + "dir": "Close Short", + "closedPnl": "460.46721", + "hash": "0xdc5ff3c10bb89636ddd9042de4fd880201a300a6a6bbb50880289f13cabc7021", + "oid": 207914845382, + "crossed": true, + "fee": "2.080984", + "tid": 367221363058286, + "cloid": "0x00000000000000000000001591000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107759.0", + "sz": "0.09275", + "side": "B", + "time": 1761027532112, + "startPosition": "-470.9052", + "dir": "Close Short", + "closedPnl": "465.4937", + "hash": "0x0395d81b93b8de3b050f042de4fda802058300012ebbfd0da75e836e52bcb825", + "oid": 207914878136, + "crossed": true, + "fee": "2.098875", + "tid": 71608162562705, + "cloid": "0x00000000000000000000001591000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107768.0", + "sz": "0.09275", + "side": "B", + "time": 1761027539187, + "startPosition": "-470.81245", + "dir": "Close Short", + "closedPnl": "464.65895", + "hash": "0x75e047ed0ab84613775a042de4fe000202bb00d2a5bb64e519a8f33fc9bc1ffe", + "oid": 207914953669, + "crossed": true, + "fee": "2.099051", + "tid": 656516599845835, + "cloid": "0x00000000000000000000001591000024", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107768.0", + "sz": "0.09274", + "side": "B", + "time": 1761027540601, + "startPosition": "-470.7197", + "dir": "Close Short", + "closedPnl": "464.608852", + "hash": "0x0351eaea9cbcda8204cb042de4fe160201ed00d037bff954a71a963d5bb0b46c", + "oid": 207914969213, + "crossed": true, + "fee": "2.098824", + "tid": 990602745166984, + "cloid": "0x00000000000000000000001591000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107772.0", + "sz": "0.00007", + "side": "B", + "time": 1761027543760, + "startPosition": "-470.62696", + "dir": "Close Short", + "closedPnl": "0.350406", + "hash": "0x0d3c90f5dc7694460eb6042de4fe3e02048100db7779b318b1053c489b7a6e30", + "oid": 207915011770, + "crossed": true, + "fee": "0.001584", + "tid": 884896112989619, + "cloid": "0x00000000000000000000001591000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107773.0", + "sz": "0.00011", + "side": "B", + "time": 1761027543760, + "startPosition": "-470.62689", + "dir": "Close Short", + "closedPnl": "0.550528", + "hash": "0x0d3c90f5dc7694460eb6042de4fe3e02048100db7779b318b1053c489b7a6e30", + "oid": 207915011770, + "crossed": true, + "fee": "0.002489", + "tid": 963150667975107, + "cloid": "0x00000000000000000000001591000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107774.0", + "sz": "0.00011", + "side": "B", + "time": 1761027543760, + "startPosition": "-470.62678", + "dir": "Close Short", + "closedPnl": "0.550418", + "hash": "0x0d3c90f5dc7694460eb6042de4fe3e02048100db7779b318b1053c489b7a6e30", + "oid": 207915011770, + "crossed": true, + "fee": "0.002489", + "tid": 496185038390026, + "cloid": "0x00000000000000000000001591000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107775.0", + "sz": "0.00014", + "side": "B", + "time": 1761027543760, + "startPosition": "-470.62667", + "dir": "Close Short", + "closedPnl": "0.700392", + "hash": "0x0d3c90f5dc7694460eb6042de4fe3e02048100db7779b318b1053c489b7a6e30", + "oid": 207915011770, + "crossed": true, + "fee": "0.003168", + "tid": 382045457564023, + "cloid": "0x00000000000000000000001591000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107775.0", + "sz": "0.00011", + "side": "B", + "time": 1761027543760, + "startPosition": "-470.62653", + "dir": "Close Short", + "closedPnl": "0.550308", + "hash": "0x0d3c90f5dc7694460eb6042de4fe3e02048100db7779b318b1053c489b7a6e30", + "oid": 207915011770, + "crossed": true, + "fee": "0.002489", + "tid": 1020652110059849, + "cloid": "0x00000000000000000000001591000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107776.0", + "sz": "0.00011", + "side": "B", + "time": 1761027543760, + "startPosition": "-470.62642", + "dir": "Close Short", + "closedPnl": "0.550198", + "hash": "0x0d3c90f5dc7694460eb6042de4fe3e02048100db7779b318b1053c489b7a6e30", + "oid": 207915011770, + "crossed": true, + "fee": "0.002489", + "tid": 665206580625136, + "cloid": "0x00000000000000000000001591000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107777.0", + "sz": "0.00011", + "side": "B", + "time": 1761027543760, + "startPosition": "-470.62631", + "dir": "Close Short", + "closedPnl": "0.550088", + "hash": "0x0d3c90f5dc7694460eb6042de4fe3e02048100db7779b318b1053c489b7a6e30", + "oid": 207915011770, + "crossed": true, + "fee": "0.002489", + "tid": 538090699909513, + "cloid": "0x00000000000000000000001591000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107778.0", + "sz": "0.00011", + "side": "B", + "time": 1761027543760, + "startPosition": "-470.6262", + "dir": "Close Short", + "closedPnl": "0.549978", + "hash": "0x0d3c90f5dc7694460eb6042de4fe3e02048100db7779b318b1053c489b7a6e30", + "oid": 207915011770, + "crossed": true, + "fee": "0.002489", + "tid": 831543433655658, + "cloid": "0x00000000000000000000001591000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107779.0", + "sz": "0.00011", + "side": "B", + "time": 1761027543760, + "startPosition": "-470.62609", + "dir": "Close Short", + "closedPnl": "0.549868", + "hash": "0x0d3c90f5dc7694460eb6042de4fe3e02048100db7779b318b1053c489b7a6e30", + "oid": 207915011770, + "crossed": true, + "fee": "0.002489", + "tid": 715627500921701, + "cloid": "0x00000000000000000000001591000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107779.0", + "sz": "0.00014", + "side": "B", + "time": 1761027543760, + "startPosition": "-470.62598", + "dir": "Close Short", + "closedPnl": "0.699832", + "hash": "0x0d3c90f5dc7694460eb6042de4fe3e02048100db7779b318b1053c489b7a6e30", + "oid": 207915011770, + "crossed": true, + "fee": "0.003168", + "tid": 744563236737547, + "cloid": "0x00000000000000000000001591000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107780.0", + "sz": "0.05247", + "side": "B", + "time": 1761027543760, + "startPosition": "-470.62584", + "dir": "Close Short", + "closedPnl": "262.234566", + "hash": "0x0d3c90f5dc7694460eb6042de4fe3e02048100db7779b318b1053c489b7a6e30", + "oid": 207915011770, + "crossed": true, + "fee": "1.187595", + "tid": 445071704625296, + "cloid": "0x00000000000000000000001591000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107780.0", + "sz": "0.00011", + "side": "B", + "time": 1761027543760, + "startPosition": "-470.57337", + "dir": "Close Short", + "closedPnl": "0.549758", + "hash": "0x0d3c90f5dc7694460eb6042de4fe3e02048100db7779b318b1053c489b7a6e30", + "oid": 207915011770, + "crossed": true, + "fee": "0.002489", + "tid": 770313348973096, + "cloid": "0x00000000000000000000001591000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107781.0", + "sz": "0.00011", + "side": "B", + "time": 1761027543760, + "startPosition": "-470.57326", + "dir": "Close Short", + "closedPnl": "0.549648", + "hash": "0x0d3c90f5dc7694460eb6042de4fe3e02048100db7779b318b1053c489b7a6e30", + "oid": 207915011770, + "crossed": true, + "fee": "0.002489", + "tid": 1069158782270784, + "cloid": "0x00000000000000000000001591000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107782.0", + "sz": "0.00011", + "side": "B", + "time": 1761027543760, + "startPosition": "-470.57315", + "dir": "Close Short", + "closedPnl": "0.549538", + "hash": "0x0d3c90f5dc7694460eb6042de4fe3e02048100db7779b318b1053c489b7a6e30", + "oid": 207915011770, + "crossed": true, + "fee": "0.002489", + "tid": 24155991296683, + "cloid": "0x00000000000000000000001591000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107783.0", + "sz": "0.03176", + "side": "B", + "time": 1761027543760, + "startPosition": "-470.57304", + "dir": "Close Short", + "closedPnl": "158.634848", + "hash": "0x0d3c90f5dc7694460eb6042de4fe3e02048100db7779b318b1053c489b7a6e30", + "oid": 207915011770, + "crossed": true, + "fee": "0.718869", + "tid": 310785751094314, + "cloid": "0x00000000000000000000001591000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107783.0", + "sz": "0.00504", + "side": "B", + "time": 1761027543760, + "startPosition": "-470.54128", + "dir": "Close Short", + "closedPnl": "25.173792", + "hash": "0x0d3c90f5dc7694460eb6042de4fe3e02048100db7779b318b1053c489b7a6e30", + "oid": 207915011770, + "crossed": true, + "fee": "0.114077", + "tid": 471201941820322, + "cloid": "0x00000000000000000000001591000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107783.0", + "sz": "0.00201", + "side": "B", + "time": 1761027543760, + "startPosition": "-470.53624", + "dir": "Close Short", + "closedPnl": "10.039548", + "hash": "0x0d3c90f5dc7694460eb6042de4fe3e02048100db7779b318b1053c489b7a6e30", + "oid": 207915011770, + "crossed": true, + "fee": "0.045495", + "tid": 726595815963147, + "cloid": "0x00000000000000000000001591000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107787.0", + "sz": "0.01912", + "side": "B", + "time": 1761027547805, + "startPosition": "-470.53423", + "dir": "Close Short", + "closedPnl": "95.424096", + "hash": "0x820fbba06f43901c8389042de4fe680202e400860a46aeee25d866f32e476a07", + "oid": 207915060993, + "crossed": true, + "fee": "0.432786", + "tid": 313780639964602, + "cloid": "0x00000000000000000000001591000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107787.0", + "sz": "0.00011", + "side": "B", + "time": 1761027547805, + "startPosition": "-470.51511", + "dir": "Close Short", + "closedPnl": "0.548988", + "hash": "0x820fbba06f43901c8389042de4fe680202e400860a46aeee25d866f32e476a07", + "oid": 207915060993, + "crossed": true, + "fee": "0.002489", + "tid": 1069612352483521, + "cloid": "0x00000000000000000000001591000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107787.0", + "sz": "0.00026", + "side": "B", + "time": 1761027547805, + "startPosition": "-470.515", + "dir": "Close Short", + "closedPnl": "1.297608", + "hash": "0x820fbba06f43901c8389042de4fe680202e400860a46aeee25d866f32e476a07", + "oid": 207915060993, + "crossed": true, + "fee": "0.005885", + "tid": 59829209468956, + "cloid": "0x00000000000000000000001591000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107787.0", + "sz": "0.07324", + "side": "B", + "time": 1761027547805, + "startPosition": "-470.51474", + "dir": "Close Short", + "closedPnl": "365.526192", + "hash": "0x820fbba06f43901c8389042de4fe680202e400860a46aeee25d866f32e476a07", + "oid": 207915060993, + "crossed": true, + "fee": "1.657807", + "tid": 1012611767709806, + "cloid": "0x00000000000000000000001591000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107789.0", + "sz": "0.00855", + "side": "B", + "time": 1761027549826, + "startPosition": "-470.4415", + "dir": "Close Short", + "closedPnl": "42.65424", + "hash": "0xc8dab87e22b52c4aca54042de4fe810203f60063bdb84b1c6ca363d0e1b90635", + "oid": 207915087210, + "crossed": true, + "fee": "0.193535", + "tid": 462769340233879, + "cloid": "0x00000000000000000000001591000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107789.0", + "sz": "0.08418", + "side": "B", + "time": 1761027549826, + "startPosition": "-470.43295", + "dir": "Close Short", + "closedPnl": "419.957184", + "hash": "0xc8dab87e22b52c4aca54042de4fe810203f60063bdb84b1c6ca363d0e1b90635", + "oid": 207915087210, + "crossed": true, + "fee": "1.905472", + "tid": 493460331599583, + "cloid": "0x00000000000000000000001591000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107789.0", + "sz": "0.00011", + "side": "B", + "time": 1761027554445, + "startPosition": "-470.34877", + "dir": "Close Short", + "closedPnl": "0.548768", + "hash": "0x21b784a6882fe4922331042de4feb70201d7008c23230364c5802ff94723be7c", + "oid": 207915132597, + "crossed": true, + "fee": "0.002489", + "tid": 386180819639965, + "cloid": "0x00000000000000000000001591000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107789.0", + "sz": "0.0001", + "side": "B", + "time": 1761027554445, + "startPosition": "-470.34866", + "dir": "Close Short", + "closedPnl": "0.49888", + "hash": "0x21b784a6882fe4922331042de4feb70201d7008c23230364c5802ff94723be7c", + "oid": 207915132597, + "crossed": true, + "fee": "0.002263", + "tid": 474840407757636, + "cloid": "0x00000000000000000000001591000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107789.0", + "sz": "0.00928", + "side": "B", + "time": 1761027554445, + "startPosition": "-470.34856", + "dir": "Close Short", + "closedPnl": "46.296064", + "hash": "0x21b784a6882fe4922331042de4feb70201d7008c23230364c5802ff94723be7c", + "oid": 207915132597, + "crossed": true, + "fee": "0.210059", + "tid": 913698891455442, + "cloid": "0x00000000000000000000001591000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107789.0", + "sz": "0.01198", + "side": "B", + "time": 1761027554445, + "startPosition": "-470.33928", + "dir": "Close Short", + "closedPnl": "59.765824", + "hash": "0x21b784a6882fe4922331042de4feb70201d7008c23230364c5802ff94723be7c", + "oid": 207915132597, + "crossed": true, + "fee": "0.271175", + "tid": 241089138317037, + "cloid": "0x00000000000000000000001591000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107789.0", + "sz": "0.01797", + "side": "B", + "time": 1761027554445, + "startPosition": "-470.3273", + "dir": "Close Short", + "closedPnl": "89.648736", + "hash": "0x21b784a6882fe4922331042de4feb70201d7008c23230364c5802ff94723be7c", + "oid": 207915132597, + "crossed": true, + "fee": "0.406763", + "tid": 385385428207414, + "cloid": "0x00000000000000000000001591000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107790.0", + "sz": "0.00011", + "side": "B", + "time": 1761027554445, + "startPosition": "-470.30933", + "dir": "Close Short", + "closedPnl": "0.548658", + "hash": "0x21b784a6882fe4922331042de4feb70201d7008c23230364c5802ff94723be7c", + "oid": 207915132597, + "crossed": true, + "fee": "0.002489", + "tid": 966067457106545, + "cloid": "0x00000000000000000000001591000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107790.0", + "sz": "0.05317", + "side": "B", + "time": 1761027554445, + "startPosition": "-470.30922", + "dir": "Close Short", + "closedPnl": "265.201326", + "hash": "0x21b784a6882fe4922331042de4feb70201d7008c23230364c5802ff94723be7c", + "oid": 207915132597, + "crossed": true, + "fee": "1.20355", + "tid": 632001486058328, + "cloid": "0x00000000000000000000001591000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107792.0", + "sz": "0.03377", + "side": "B", + "time": 1761027564598, + "startPosition": "-470.25605", + "dir": "Close Short", + "closedPnl": "168.370466", + "hash": "0x7b30aeb370ef93e27caa042de4ff3f02039b00990be2b2b41ef95a062fe36dcd", + "oid": 207915232209, + "crossed": true, + "fee": "0.764428", + "tid": 806276789177253, + "cloid": "0x00000000000000000000001591000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107792.0", + "sz": "0.01855", + "side": "B", + "time": 1761027564598, + "startPosition": "-470.22228", + "dir": "Close Short", + "closedPnl": "92.48659", + "hash": "0x7b30aeb370ef93e27caa042de4ff3f02039b00990be2b2b41ef95a062fe36dcd", + "oid": 207915232209, + "crossed": true, + "fee": "0.419903", + "tid": 428672843635248, + "cloid": "0x00000000000000000000001591000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107792.0", + "sz": "0.01855", + "side": "B", + "time": 1761027564598, + "startPosition": "-470.20373", + "dir": "Close Short", + "closedPnl": "92.48659", + "hash": "0x7b30aeb370ef93e27caa042de4ff3f02039b00990be2b2b41ef95a062fe36dcd", + "oid": 207915232209, + "crossed": true, + "fee": "0.419903", + "tid": 493102347529650, + "cloid": "0x00000000000000000000001591000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107792.0", + "sz": "0.02185", + "side": "B", + "time": 1761027564598, + "startPosition": "-470.18518", + "dir": "Close Short", + "closedPnl": "108.93973", + "hash": "0x7b30aeb370ef93e27caa042de4ff3f02039b00990be2b2b41ef95a062fe36dcd", + "oid": 207915232209, + "crossed": true, + "fee": "0.494603", + "tid": 384639894129996, + "cloid": "0x00000000000000000000001591000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107793.0", + "sz": "0.00454", + "side": "B", + "time": 1761027568590, + "startPosition": "-470.16333", + "dir": "Close Short", + "closedPnl": "22.630992", + "hash": "0x7c3f407e7d2130067db8042de4ff760203ac006418244ed82007ebd13c2509f1", + "oid": 207915291419, + "crossed": true, + "fee": "0.102769", + "tid": 465267694963794, + "cloid": "0x00000000000000000000001591000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107793.0", + "sz": "0.00011", + "side": "B", + "time": 1761027568590, + "startPosition": "-470.15879", + "dir": "Close Short", + "closedPnl": "0.548328", + "hash": "0x7c3f407e7d2130067db8042de4ff760203ac006418244ed82007ebd13c2509f1", + "oid": 207915291419, + "crossed": true, + "fee": "0.00249", + "tid": 141683514396692, + "cloid": "0x00000000000000000000001591000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107794.0", + "sz": "0.03251", + "side": "B", + "time": 1761027568590, + "startPosition": "-470.15868", + "dir": "Close Short", + "closedPnl": "162.023338", + "hash": "0x7c3f407e7d2130067db8042de4ff760203ac006418244ed82007ebd13c2509f1", + "oid": 207915291419, + "crossed": true, + "fee": "0.73592", + "tid": 943343625660531, + "cloid": "0x00000000000000000000001591000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107794.0", + "sz": "0.00918", + "side": "B", + "time": 1761027568590, + "startPosition": "-470.12617", + "dir": "Close Short", + "closedPnl": "45.751284", + "hash": "0x7c3f407e7d2130067db8042de4ff760203ac006418244ed82007ebd13c2509f1", + "oid": 207915291419, + "crossed": true, + "fee": "0.207805", + "tid": 244546784536366, + "cloid": "0x00000000000000000000001591000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107794.0", + "sz": "0.00918", + "side": "B", + "time": 1761027568590, + "startPosition": "-470.11699", + "dir": "Close Short", + "closedPnl": "45.751284", + "hash": "0x7c3f407e7d2130067db8042de4ff760203ac006418244ed82007ebd13c2509f1", + "oid": 207915291419, + "crossed": true, + "fee": "0.207805", + "tid": 78216095508215, + "cloid": "0x00000000000000000000001591000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107794.0", + "sz": "0.00011", + "side": "B", + "time": 1761027568590, + "startPosition": "-470.10781", + "dir": "Close Short", + "closedPnl": "0.548218", + "hash": "0x7c3f407e7d2130067db8042de4ff760203ac006418244ed82007ebd13c2509f1", + "oid": 207915291419, + "crossed": true, + "fee": "0.00249", + "tid": 994842957583264, + "cloid": "0x00000000000000000000001591000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107795.0", + "sz": "0.03708", + "side": "B", + "time": 1761027568590, + "startPosition": "-470.1077", + "dir": "Close Short", + "closedPnl": "184.762224", + "hash": "0x7c3f407e7d2130067db8042de4ff760203ac006418244ed82007ebd13c2509f1", + "oid": 207915291419, + "crossed": true, + "fee": "0.839378", + "tid": 888817436204218, + "cloid": "0x00000000000000000000001591000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107806.0", + "sz": "0.00306", + "side": "B", + "time": 1761027577421, + "startPosition": "-470.07062", + "dir": "Close Short", + "closedPnl": "15.213708", + "hash": "0xda858f06b4b9bea9dbff042de4ffe00204fb00ec4fbcdd7b7e4e3a5973bd9894", + "oid": 207915401306, + "crossed": true, + "fee": "0.069276", + "tid": 226961546156743, + "cloid": "0x00000000000000000000001591000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107806.0", + "sz": "0.00011", + "side": "B", + "time": 1761027577421, + "startPosition": "-470.06756", + "dir": "Close Short", + "closedPnl": "0.546898", + "hash": "0xda858f06b4b9bea9dbff042de4ffe00204fb00ec4fbcdd7b7e4e3a5973bd9894", + "oid": 207915401306, + "crossed": true, + "fee": "0.00249", + "tid": 807662702371769, + "cloid": "0x00000000000000000000001591000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107806.0", + "sz": "0.00011", + "side": "B", + "time": 1761027577421, + "startPosition": "-470.06745", + "dir": "Close Short", + "closedPnl": "0.546898", + "hash": "0xda858f06b4b9bea9dbff042de4ffe00204fb00ec4fbcdd7b7e4e3a5973bd9894", + "oid": 207915401306, + "crossed": true, + "fee": "0.00249", + "tid": 219970817051325, + "cloid": "0x00000000000000000000001591000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107807.0", + "sz": "0.00011", + "side": "B", + "time": 1761027577421, + "startPosition": "-470.06734", + "dir": "Close Short", + "closedPnl": "0.546788", + "hash": "0xda858f06b4b9bea9dbff042de4ffe00204fb00ec4fbcdd7b7e4e3a5973bd9894", + "oid": 207915401306, + "crossed": true, + "fee": "0.00249", + "tid": 352851493682410, + "cloid": "0x00000000000000000000001591000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107807.0", + "sz": "0.00011", + "side": "B", + "time": 1761027577421, + "startPosition": "-470.06723", + "dir": "Close Short", + "closedPnl": "0.546788", + "hash": "0xda858f06b4b9bea9dbff042de4ffe00204fb00ec4fbcdd7b7e4e3a5973bd9894", + "oid": 207915401306, + "crossed": true, + "fee": "0.00249", + "tid": 1054009938383380, + "cloid": "0x00000000000000000000001591000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107808.0", + "sz": "0.00014", + "side": "B", + "time": 1761027577421, + "startPosition": "-470.06712", + "dir": "Close Short", + "closedPnl": "0.695772", + "hash": "0xda858f06b4b9bea9dbff042de4ffe00204fb00ec4fbcdd7b7e4e3a5973bd9894", + "oid": 207915401306, + "crossed": true, + "fee": "0.003169", + "tid": 261049222626866, + "cloid": "0x00000000000000000000001591000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107808.0", + "sz": "0.00535", + "side": "B", + "time": 1761027577421, + "startPosition": "-470.06698", + "dir": "Close Short", + "closedPnl": "26.58843", + "hash": "0xda858f06b4b9bea9dbff042de4ffe00204fb00ec4fbcdd7b7e4e3a5973bd9894", + "oid": 207915401306, + "crossed": true, + "fee": "0.121122", + "tid": 548888229459844, + "cloid": "0x00000000000000000000001591000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107808.0", + "sz": "0.00535", + "side": "B", + "time": 1761027577421, + "startPosition": "-470.06163", + "dir": "Close Short", + "closedPnl": "26.58843", + "hash": "0xda858f06b4b9bea9dbff042de4ffe00204fb00ec4fbcdd7b7e4e3a5973bd9894", + "oid": 207915401306, + "crossed": true, + "fee": "0.121122", + "tid": 289539519628091, + "cloid": "0x00000000000000000000001591000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107808.0", + "sz": "0.00011", + "side": "B", + "time": 1761027577421, + "startPosition": "-470.05628", + "dir": "Close Short", + "closedPnl": "0.546678", + "hash": "0xda858f06b4b9bea9dbff042de4ffe00204fb00ec4fbcdd7b7e4e3a5973bd9894", + "oid": 207915401306, + "crossed": true, + "fee": "0.00249", + "tid": 530908155061870, + "cloid": "0x00000000000000000000001591000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107808.0", + "sz": "0.00011", + "side": "B", + "time": 1761027577421, + "startPosition": "-470.05617", + "dir": "Close Short", + "closedPnl": "0.546678", + "hash": "0xda858f06b4b9bea9dbff042de4ffe00204fb00ec4fbcdd7b7e4e3a5973bd9894", + "oid": 207915401306, + "crossed": true, + "fee": "0.00249", + "tid": 969173610312780, + "cloid": "0x00000000000000000000001591000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107809.0", + "sz": "0.00011", + "side": "B", + "time": 1761027577421, + "startPosition": "-470.05606", + "dir": "Close Short", + "closedPnl": "0.546568", + "hash": "0xda858f06b4b9bea9dbff042de4ffe00204fb00ec4fbcdd7b7e4e3a5973bd9894", + "oid": 207915401306, + "crossed": true, + "fee": "0.00249", + "tid": 1072877159035489, + "cloid": "0x00000000000000000000001591000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107809.0", + "sz": "0.00011", + "side": "B", + "time": 1761027577421, + "startPosition": "-470.05595", + "dir": "Close Short", + "closedPnl": "0.546568", + "hash": "0xda858f06b4b9bea9dbff042de4ffe00204fb00ec4fbcdd7b7e4e3a5973bd9894", + "oid": 207915401306, + "crossed": true, + "fee": "0.00249", + "tid": 407885776896542, + "cloid": "0x00000000000000000000001591000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107810.0", + "sz": "0.07793", + "side": "B", + "time": 1761027577421, + "startPosition": "-470.05584", + "dir": "Close Short", + "closedPnl": "387.140654", + "hash": "0xda858f06b4b9bea9dbff042de4ffe00204fb00ec4fbcdd7b7e4e3a5973bd9894", + "oid": 207915401306, + "crossed": true, + "fee": "1.764342", + "tid": 242301679398453, + "cloid": "0x00000000000000000000001591000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107823.0", + "sz": "0.001", + "side": "B", + "time": 1761027580517, + "startPosition": "-469.97791", + "dir": "Close Short", + "closedPnl": "4.9548", + "hash": "0x2f71a9fcc97738bf30eb042de50002020bfd00e2647a5791d33a554f887b12a9", + "oid": 207915472901, + "crossed": true, + "fee": "0.022642", + "tid": 955283769079336, + "cloid": "0x00000000000000000000001591000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107823.0", + "sz": "0.00011", + "side": "B", + "time": 1761027580517, + "startPosition": "-469.97691", + "dir": "Close Short", + "closedPnl": "0.545028", + "hash": "0x2f71a9fcc97738bf30eb042de50002020bfd00e2647a5791d33a554f887b12a9", + "oid": 207915472901, + "crossed": true, + "fee": "0.00249", + "tid": 1110900573306586, + "cloid": "0x00000000000000000000001591000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107824.0", + "sz": "0.00014", + "side": "B", + "time": 1761027580517, + "startPosition": "-469.9768", + "dir": "Close Short", + "closedPnl": "0.693532", + "hash": "0x2f71a9fcc97738bf30eb042de50002020bfd00e2647a5791d33a554f887b12a9", + "oid": 207915472901, + "crossed": true, + "fee": "0.00317", + "tid": 661892413427556, + "cloid": "0x00000000000000000000001591000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107824.0", + "sz": "0.00011", + "side": "B", + "time": 1761027580517, + "startPosition": "-469.97666", + "dir": "Close Short", + "closedPnl": "0.544918", + "hash": "0x2f71a9fcc97738bf30eb042de50002020bfd00e2647a5791d33a554f887b12a9", + "oid": 207915472901, + "crossed": true, + "fee": "0.00249", + "tid": 740748906435263, + "cloid": "0x00000000000000000000001591000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107825.0", + "sz": "0.09133", + "side": "B", + "time": 1761027580517, + "startPosition": "-469.97655", + "dir": "Close Short", + "closedPnl": "452.339224", + "hash": "0x2f71a9fcc97738bf30eb042de50002020bfd00e2647a5791d33a554f887b12a9", + "oid": 207915472901, + "crossed": true, + "fee": "2.068008", + "tid": 785499747493558, + "cloid": "0x00000000000000000000001591000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107833.0", + "sz": "0.0697", + "side": "B", + "time": 1761027585367, + "startPosition": "-469.88522", + "dir": "Close Short", + "closedPnl": "344.65256", + "hash": "0x346ef02f0095ad3135e8042de500420204ff00149b98cc03d8379b81bf99871b", + "oid": 207915547963, + "crossed": true, + "fee": "1.578351", + "tid": 215987854658748, + "cloid": "0x00000000000000000000001591000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107833.0", + "sz": "0.02299", + "side": "B", + "time": 1761027585367, + "startPosition": "-469.81552", + "dir": "Close Short", + "closedPnl": "113.680952", + "hash": "0x346ef02f0095ad3135e8042de500420204ff00149b98cc03d8379b81bf99871b", + "oid": 207915547963, + "crossed": true, + "fee": "0.520606", + "tid": 365961360033518, + "cloid": "0x00000000000000000000001591000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107841.0", + "sz": "0.01258", + "side": "B", + "time": 1761027586788, + "startPosition": "-469.79253", + "dir": "Close Short", + "closedPnl": "62.104944", + "hash": "0x2ff714e1bf5e9dff3170042de5005502022c00c75a51bcd1d3bfc0347e5277e9", + "oid": 207915568820, + "crossed": true, + "fee": "0.284894", + "tid": 696285215934296, + "cloid": "0x00000000000000000000001591000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107841.0", + "sz": "0.00014", + "side": "B", + "time": 1761027586788, + "startPosition": "-469.77995", + "dir": "Close Short", + "closedPnl": "0.691152", + "hash": "0x2ff714e1bf5e9dff3170042de5005502022c00c75a51bcd1d3bfc0347e5277e9", + "oid": 207915568820, + "crossed": true, + "fee": "0.00317", + "tid": 83019741267063, + "cloid": "0x00000000000000000000001591000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107841.0", + "sz": "0.07997", + "side": "B", + "time": 1761027586788, + "startPosition": "-469.77981", + "dir": "Close Short", + "closedPnl": "394.795896", + "hash": "0x2ff714e1bf5e9dff3170042de5005502022c00c75a51bcd1d3bfc0347e5277e9", + "oid": 207915568820, + "crossed": true, + "fee": "1.811049", + "tid": 399625445493693, + "cloid": "0x00000000000000000000001591000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107851.0", + "sz": "0.00011", + "side": "B", + "time": 1761027594822, + "startPosition": "-469.69984", + "dir": "Close Short", + "closedPnl": "0.541948", + "hash": "0xa9c720611af7b7d2ab40042de500bf0202640046b5fad6a44d8fcbb3d9fb91bd", + "oid": 207915659296, + "crossed": true, + "fee": "0.002491", + "tid": 152391511540641, + "cloid": "0x00000000000000000000001591000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107852.0", + "sz": "0.00011", + "side": "B", + "time": 1761027594822, + "startPosition": "-469.69973", + "dir": "Close Short", + "closedPnl": "0.541838", + "hash": "0xa9c720611af7b7d2ab40042de500bf0202640046b5fad6a44d8fcbb3d9fb91bd", + "oid": 207915659296, + "crossed": true, + "fee": "0.002491", + "tid": 637489596283072, + "cloid": "0x00000000000000000000001591000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107853.0", + "sz": "0.00014", + "side": "B", + "time": 1761027594822, + "startPosition": "-469.69962", + "dir": "Close Short", + "closedPnl": "0.689472", + "hash": "0xa9c720611af7b7d2ab40042de500bf0202640046b5fad6a44d8fcbb3d9fb91bd", + "oid": 207915659296, + "crossed": true, + "fee": "0.00317", + "tid": 1054101700146187, + "cloid": "0x00000000000000000000001591000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107853.0", + "sz": "0.00011", + "side": "B", + "time": 1761027594822, + "startPosition": "-469.69948", + "dir": "Close Short", + "closedPnl": "0.541728", + "hash": "0xa9c720611af7b7d2ab40042de500bf0202640046b5fad6a44d8fcbb3d9fb91bd", + "oid": 207915659296, + "crossed": true, + "fee": "0.002491", + "tid": 537981645181282, + "cloid": "0x00000000000000000000001591000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107854.0", + "sz": "0.00591", + "side": "B", + "time": 1761027594822, + "startPosition": "-469.69937", + "dir": "Close Short", + "closedPnl": "29.099658", + "hash": "0xa9c720611af7b7d2ab40042de500bf0202640046b5fad6a44d8fcbb3d9fb91bd", + "oid": 207915659296, + "crossed": true, + "fee": "0.133857", + "tid": 877116474152644, + "cloid": "0x00000000000000000000001591000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107854.0", + "sz": "0.00591", + "side": "B", + "time": 1761027594822, + "startPosition": "-469.69346", + "dir": "Close Short", + "closedPnl": "29.099658", + "hash": "0xa9c720611af7b7d2ab40042de500bf0202640046b5fad6a44d8fcbb3d9fb91bd", + "oid": 207915659296, + "crossed": true, + "fee": "0.133857", + "tid": 937969524113180, + "cloid": "0x00000000000000000000001591000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107854.0", + "sz": "0.00011", + "side": "B", + "time": 1761027594822, + "startPosition": "-469.68755", + "dir": "Close Short", + "closedPnl": "0.541618", + "hash": "0xa9c720611af7b7d2ab40042de500bf0202640046b5fad6a44d8fcbb3d9fb91bd", + "oid": 207915659296, + "crossed": true, + "fee": "0.002491", + "tid": 898105438978603, + "cloid": "0x00000000000000000000001591000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107854.0", + "sz": "0.08028", + "side": "B", + "time": 1761027594822, + "startPosition": "-469.68744", + "dir": "Close Short", + "closedPnl": "395.282664", + "hash": "0xa9c720611af7b7d2ab40042de500bf0202640046b5fad6a44d8fcbb3d9fb91bd", + "oid": 207915659296, + "crossed": true, + "fee": "1.818289", + "tid": 451599227928014, + "cloid": "0x00000000000000000000001591000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107856.0", + "sz": "0.05282", + "side": "B", + "time": 1761027596211, + "startPosition": "-469.60716", + "dir": "Close Short", + "closedPnl": "259.969476", + "hash": "0xbf6c648378daaa6cc0e6042de500cf0201a2006913ddc93e63350fd637de8457", + "oid": 207915684311, + "crossed": true, + "fee": "1.19636", + "tid": 841328967829574, + "cloid": "0x00000000000000000000001591000037", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107856.0", + "sz": "0.03664", + "side": "B", + "time": 1761027596211, + "startPosition": "-469.55434", + "dir": "Close Short", + "closedPnl": "180.334752", + "hash": "0xbf6c648378daaa6cc0e6042de500cf0201a2006913ddc93e63350fd637de8457", + "oid": 207915684311, + "crossed": true, + "fee": "0.829887", + "tid": 776257498017468, + "cloid": "0x00000000000000000000001591000037", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107856.0", + "sz": "0.00011", + "side": "B", + "time": 1761027596211, + "startPosition": "-469.5177", + "dir": "Close Short", + "closedPnl": "0.541398", + "hash": "0xbf6c648378daaa6cc0e6042de500cf0201a2006913ddc93e63350fd637de8457", + "oid": 207915684311, + "crossed": true, + "fee": "0.002491", + "tid": 261927699451413, + "cloid": "0x00000000000000000000001591000037", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107856.0", + "sz": "0.00311", + "side": "B", + "time": 1761027596211, + "startPosition": "-469.51759", + "dir": "Close Short", + "closedPnl": "15.306798", + "hash": "0xbf6c648378daaa6cc0e6042de500cf0201a2006913ddc93e63350fd637de8457", + "oid": 207915684311, + "crossed": true, + "fee": "0.07044", + "tid": 479151216997314, + "cloid": "0x00000000000000000000001591000037", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107856.0", + "sz": "0.00011", + "side": "B", + "time": 1761027599249, + "startPosition": "-469.51448", + "dir": "Close Short", + "closedPnl": "0.541398", + "hash": "0xb162bf3a663e1565b2dc042de500f50205aa002001313437552b6a8d2531ef50", + "oid": 207915724076, + "crossed": true, + "fee": "0.002491", + "tid": 15121169206117, + "cloid": "0x00000000000000000000001591000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107857.0", + "sz": "0.06559", + "side": "B", + "time": 1761027599249, + "startPosition": "-469.51437", + "dir": "Close Short", + "closedPnl": "322.755272", + "hash": "0xb162bf3a663e1565b2dc042de500f50205aa002001313437552b6a8d2531ef50", + "oid": 207915724076, + "crossed": true, + "fee": "1.485611", + "tid": 318461440666697, + "cloid": "0x00000000000000000000001591000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107857.0", + "sz": "0.00011", + "side": "B", + "time": 1761027599249, + "startPosition": "-469.44878", + "dir": "Close Short", + "closedPnl": "0.541288", + "hash": "0xb162bf3a663e1565b2dc042de500f50205aa002001313437552b6a8d2531ef50", + "oid": 207915724076, + "crossed": true, + "fee": "0.002491", + "tid": 1033019832261901, + "cloid": "0x00000000000000000000001591000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107858.0", + "sz": "0.00011", + "side": "B", + "time": 1761027599249, + "startPosition": "-469.44867", + "dir": "Close Short", + "closedPnl": "0.541178", + "hash": "0xb162bf3a663e1565b2dc042de500f50205aa002001313437552b6a8d2531ef50", + "oid": 207915724076, + "crossed": true, + "fee": "0.002491", + "tid": 633377436514535, + "cloid": "0x00000000000000000000001591000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107859.0", + "sz": "0.0001", + "side": "B", + "time": 1761027599249, + "startPosition": "-469.44856", + "dir": "Close Short", + "closedPnl": "0.49188", + "hash": "0xb162bf3a663e1565b2dc042de500f50205aa002001313437552b6a8d2531ef50", + "oid": 207915724076, + "crossed": true, + "fee": "0.002265", + "tid": 36283391963862, + "cloid": "0x00000000000000000000001591000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107859.0", + "sz": "0.00598", + "side": "B", + "time": 1761027599249, + "startPosition": "-469.44846", + "dir": "Close Short", + "closedPnl": "29.414424", + "hash": "0xb162bf3a663e1565b2dc042de500f50205aa002001313437552b6a8d2531ef50", + "oid": 207915724076, + "crossed": true, + "fee": "0.135449", + "tid": 721894459486655, + "cloid": "0x00000000000000000000001591000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107859.0", + "sz": "0.00598", + "side": "B", + "time": 1761027599249, + "startPosition": "-469.44248", + "dir": "Close Short", + "closedPnl": "29.414424", + "hash": "0xb162bf3a663e1565b2dc042de500f50205aa002001313437552b6a8d2531ef50", + "oid": 207915724076, + "crossed": true, + "fee": "0.135449", + "tid": 345704729438666, + "cloid": "0x00000000000000000000001591000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107859.0", + "sz": "0.00011", + "side": "B", + "time": 1761027599249, + "startPosition": "-469.4365", + "dir": "Close Short", + "closedPnl": "0.541068", + "hash": "0xb162bf3a663e1565b2dc042de500f50205aa002001313437552b6a8d2531ef50", + "oid": 207915724076, + "crossed": true, + "fee": "0.002491", + "tid": 438338040882480, + "cloid": "0x00000000000000000000001591000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107860.0", + "sz": "0.0001", + "side": "B", + "time": 1761027599249, + "startPosition": "-469.43639", + "dir": "Close Short", + "closedPnl": "0.49178", + "hash": "0xb162bf3a663e1565b2dc042de500f50205aa002001313437552b6a8d2531ef50", + "oid": 207915724076, + "crossed": true, + "fee": "0.002265", + "tid": 29304538198899, + "cloid": "0x00000000000000000000001591000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107860.0", + "sz": "0.00186", + "side": "B", + "time": 1761027599249, + "startPosition": "-469.43629", + "dir": "Close Short", + "closedPnl": "9.147108", + "hash": "0xb162bf3a663e1565b2dc042de500f50205aa002001313437552b6a8d2531ef50", + "oid": 207915724076, + "crossed": true, + "fee": "0.04213", + "tid": 1045948435749815, + "cloid": "0x00000000000000000000001591000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107860.0", + "sz": "0.00144", + "side": "B", + "time": 1761027599249, + "startPosition": "-469.43443", + "dir": "Close Short", + "closedPnl": "7.081632", + "hash": "0xb162bf3a663e1565b2dc042de500f50205aa002001313437552b6a8d2531ef50", + "oid": 207915724076, + "crossed": true, + "fee": "0.032616", + "tid": 1065203616912822, + "cloid": "0x00000000000000000000001591000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107860.0", + "sz": "0.00011", + "side": "B", + "time": 1761027599249, + "startPosition": "-469.43299", + "dir": "Close Short", + "closedPnl": "0.540958", + "hash": "0xb162bf3a663e1565b2dc042de500f50205aa002001313437552b6a8d2531ef50", + "oid": 207915724076, + "crossed": true, + "fee": "0.002491", + "tid": 109820427669388, + "cloid": "0x00000000000000000000001591000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107860.0", + "sz": "0.01107", + "side": "B", + "time": 1761027599249, + "startPosition": "-469.43288", + "dir": "Close Short", + "closedPnl": "54.440046", + "hash": "0xb162bf3a663e1565b2dc042de500f50205aa002001313437552b6a8d2531ef50", + "oid": 207915724076, + "crossed": true, + "fee": "0.250742", + "tid": 197425466616244, + "cloid": "0x00000000000000000000001591000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107869.0", + "sz": "0.09266", + "side": "B", + "time": 1761027601114, + "startPosition": "-469.42181", + "dir": "Close Short", + "closedPnl": "454.849408", + "hash": "0x0625567494c45546079f042de5010a020652005a2fc77418a9ee01c753c82f30", + "oid": 207915751800, + "crossed": true, + "fee": "2.098979", + "tid": 1025103198702938, + "cloid": "0x00000000000000000000001591000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107878.0", + "sz": "0.07194", + "side": "B", + "time": 1761027603293, + "startPosition": "-469.32915", + "dir": "Close Short", + "closedPnl": "352.491612", + "hash": "0xfa3bc40fe04467a5fbb5042de501240205c800f57b4786789e046f629f484190", + "oid": 207915777846, + "crossed": true, + "fee": "1.629756", + "tid": 498549931914750, + "cloid": "0x00000000000000000000001591000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107879.0", + "sz": "0.02071", + "side": "B", + "time": 1761027603293, + "startPosition": "-469.25721", + "dir": "Close Short", + "closedPnl": "101.454148", + "hash": "0xfa3bc40fe04467a5fbb5042de501240205c800f57b4786789e046f629f484190", + "oid": 207915777846, + "crossed": true, + "fee": "0.469176", + "tid": 242501938304838, + "cloid": "0x00000000000000000000001591000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107881.0", + "sz": "0.00011", + "side": "B", + "time": 1761027604821, + "startPosition": "-469.2365", + "dir": "Close Short", + "closedPnl": "0.538648", + "hash": "0x1a13b577137d44271b8d042de50134020c23005cae7062f9bddc60c9d2711e11", + "oid": 207915810561, + "crossed": true, + "fee": "0.002492", + "tid": 442933353711326, + "cloid": "0x00000000000000000000001591000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107882.0", + "sz": "0.00014", + "side": "B", + "time": 1761027604821, + "startPosition": "-469.23639", + "dir": "Close Short", + "closedPnl": "0.685412", + "hash": "0x1a13b577137d44271b8d042de50134020c23005cae7062f9bddc60c9d2711e11", + "oid": 207915810561, + "crossed": true, + "fee": "0.003171", + "tid": 398851548992685, + "cloid": "0x00000000000000000000001591000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107882.0", + "sz": "0.00011", + "side": "B", + "time": 1761027604821, + "startPosition": "-469.23625", + "dir": "Close Short", + "closedPnl": "0.538538", + "hash": "0x1a13b577137d44271b8d042de50134020c23005cae7062f9bddc60c9d2711e11", + "oid": 207915810561, + "crossed": true, + "fee": "0.002492", + "tid": 731667881221970, + "cloid": "0x00000000000000000000001591000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107883.0", + "sz": "0.03851", + "side": "B", + "time": 1761027604821, + "startPosition": "-469.23614", + "dir": "Close Short", + "closedPnl": "188.498748", + "hash": "0x1a13b577137d44271b8d042de50134020c23005cae7062f9bddc60c9d2711e11", + "oid": 207915810561, + "crossed": true, + "fee": "0.87246", + "tid": 637947299068569, + "cloid": "0x00000000000000000000001591000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107883.0", + "sz": "0.00011", + "side": "B", + "time": 1761027604821, + "startPosition": "-469.19763", + "dir": "Close Short", + "closedPnl": "0.538428", + "hash": "0x1a13b577137d44271b8d042de50134020c23005cae7062f9bddc60c9d2711e11", + "oid": 207915810561, + "crossed": true, + "fee": "0.002492", + "tid": 1076171967162328, + "cloid": "0x00000000000000000000001591000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107883.0", + "sz": "0.00464", + "side": "B", + "time": 1761027604821, + "startPosition": "-469.19752", + "dir": "Close Short", + "closedPnl": "22.711872", + "hash": "0x1a13b577137d44271b8d042de50134020c23005cae7062f9bddc60c9d2711e11", + "oid": 207915810561, + "crossed": true, + "fee": "0.105121", + "tid": 98753591387915, + "cloid": "0x00000000000000000000001591000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107884.0", + "sz": "0.00629", + "side": "B", + "time": 1761027604821, + "startPosition": "-469.19288", + "dir": "Close Short", + "closedPnl": "30.782002", + "hash": "0x1a13b577137d44271b8d042de50134020c23005cae7062f9bddc60c9d2711e11", + "oid": 207915810561, + "crossed": true, + "fee": "0.142503", + "tid": 182614788181491, + "cloid": "0x00000000000000000000001591000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107884.0", + "sz": "0.00629", + "side": "B", + "time": 1761027604821, + "startPosition": "-469.18659", + "dir": "Close Short", + "closedPnl": "30.782002", + "hash": "0x1a13b577137d44271b8d042de50134020c23005cae7062f9bddc60c9d2711e11", + "oid": 207915810561, + "crossed": true, + "fee": "0.142503", + "tid": 329019038225044, + "cloid": "0x00000000000000000000001591000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107884.0", + "sz": "0.00011", + "side": "B", + "time": 1761027604821, + "startPosition": "-469.1803", + "dir": "Close Short", + "closedPnl": "0.538318", + "hash": "0x1a13b577137d44271b8d042de50134020c23005cae7062f9bddc60c9d2711e11", + "oid": 207915810561, + "crossed": true, + "fee": "0.002492", + "tid": 703967720561487, + "cloid": "0x00000000000000000000001591000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.00011", + "side": "B", + "time": 1761027604821, + "startPosition": "-469.18019", + "dir": "Close Short", + "closedPnl": "0.538208", + "hash": "0x1a13b577137d44271b8d042de50134020c23005cae7062f9bddc60c9d2711e11", + "oid": 207915810561, + "crossed": true, + "fee": "0.002492", + "tid": 10227336576923, + "cloid": "0x00000000000000000000001591000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107886.0", + "sz": "0.00014", + "side": "B", + "time": 1761027604821, + "startPosition": "-469.18008", + "dir": "Close Short", + "closedPnl": "0.684852", + "hash": "0x1a13b577137d44271b8d042de50134020c23005cae7062f9bddc60c9d2711e11", + "oid": 207915810561, + "crossed": true, + "fee": "0.003171", + "tid": 755950199512385, + "cloid": "0x00000000000000000000001591000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107886.0", + "sz": "0.00011", + "side": "B", + "time": 1761027604821, + "startPosition": "-469.17994", + "dir": "Close Short", + "closedPnl": "0.538098", + "hash": "0x1a13b577137d44271b8d042de50134020c23005cae7062f9bddc60c9d2711e11", + "oid": 207915810561, + "crossed": true, + "fee": "0.002492", + "tid": 728832773617374, + "cloid": "0x00000000000000000000001591000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107886.0", + "sz": "0.03598", + "side": "B", + "time": 1761027604821, + "startPosition": "-469.17983", + "dir": "Close Short", + "closedPnl": "176.006964", + "hash": "0x1a13b577137d44271b8d042de50134020c23005cae7062f9bddc60c9d2711e11", + "oid": 207915810561, + "crossed": true, + "fee": "0.815165", + "tid": 387265535149090, + "cloid": "0x00000000000000000000001591000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107887.0", + "sz": "0.01012", + "side": "B", + "time": 1761027607857, + "startPosition": "-469.14385", + "dir": "Close Short", + "closedPnl": "49.494896", + "hash": "0xca6d2a28edc5416fcbe6042de5015a0204d2000e88c860416e35d57bacc91b5a", + "oid": 207915873569, + "crossed": true, + "fee": "0.229281", + "tid": 68370003225338, + "cloid": "0x00000000000000000000001591000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107887.0", + "sz": "0.00011", + "side": "B", + "time": 1761027607857, + "startPosition": "-469.13373", + "dir": "Close Short", + "closedPnl": "0.537988", + "hash": "0xca6d2a28edc5416fcbe6042de5015a0204d2000e88c860416e35d57bacc91b5a", + "oid": 207915873569, + "crossed": true, + "fee": "0.002492", + "tid": 402803725131319, + "cloid": "0x00000000000000000000001591000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107887.0", + "sz": "0.08241", + "side": "B", + "time": 1761027607857, + "startPosition": "-469.13362", + "dir": "Close Short", + "closedPnl": "403.050828", + "hash": "0xca6d2a28edc5416fcbe6042de5015a0204d2000e88c860416e35d57bacc91b5a", + "oid": 207915873569, + "crossed": true, + "fee": "1.867103", + "tid": 612696449805790, + "cloid": "0x00000000000000000000001591000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107889.0", + "sz": "0.00689", + "side": "B", + "time": 1761027612920, + "startPosition": "-469.05121", + "dir": "Close Short", + "closedPnl": "33.683832", + "hash": "0x1f16ae771d2605f72090042de501950204d1005cb82924c9c2df59c9dc29dfe1", + "oid": 207915951200, + "crossed": true, + "fee": "0.156104", + "tid": 459076945544201, + "cloid": "0x00000000000000000000001591000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107889.0", + "sz": "0.00635", + "side": "B", + "time": 1761027612920, + "startPosition": "-469.04432", + "dir": "Close Short", + "closedPnl": "31.04388", + "hash": "0x1f16ae771d2605f72090042de501950204d1005cb82924c9c2df59c9dc29dfe1", + "oid": 207915951200, + "crossed": true, + "fee": "0.143869", + "tid": 132403400927772, + "cloid": "0x00000000000000000000001591000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107889.0", + "sz": "0.00635", + "side": "B", + "time": 1761027612920, + "startPosition": "-469.03797", + "dir": "Close Short", + "closedPnl": "31.04388", + "hash": "0x1f16ae771d2605f72090042de501950204d1005cb82924c9c2df59c9dc29dfe1", + "oid": 207915951200, + "crossed": true, + "fee": "0.143869", + "tid": 260110366898810, + "cloid": "0x00000000000000000000001591000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107889.0", + "sz": "0.00011", + "side": "B", + "time": 1761027612920, + "startPosition": "-469.03162", + "dir": "Close Short", + "closedPnl": "0.537768", + "hash": "0x1f16ae771d2605f72090042de501950204d1005cb82924c9c2df59c9dc29dfe1", + "oid": 207915951200, + "crossed": true, + "fee": "0.002492", + "tid": 173672908401415, + "cloid": "0x00000000000000000000001591000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107890.0", + "sz": "0.00014", + "side": "B", + "time": 1761027612920, + "startPosition": "-469.03151", + "dir": "Close Short", + "closedPnl": "0.684292", + "hash": "0x1f16ae771d2605f72090042de501950204d1005cb82924c9c2df59c9dc29dfe1", + "oid": 207915951200, + "crossed": true, + "fee": "0.003171", + "tid": 316952884279772, + "cloid": "0x00000000000000000000001591000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107890.0", + "sz": "0.00011", + "side": "B", + "time": 1761027612920, + "startPosition": "-469.03137", + "dir": "Close Short", + "closedPnl": "0.537658", + "hash": "0x1f16ae771d2605f72090042de501950204d1005cb82924c9c2df59c9dc29dfe1", + "oid": 207915951200, + "crossed": true, + "fee": "0.002492", + "tid": 258352124326941, + "cloid": "0x00000000000000000000001591000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107891.0", + "sz": "0.00011", + "side": "B", + "time": 1761027612920, + "startPosition": "-469.03126", + "dir": "Close Short", + "closedPnl": "0.537548", + "hash": "0x1f16ae771d2605f72090042de501950204d1005cb82924c9c2df59c9dc29dfe1", + "oid": 207915951200, + "crossed": true, + "fee": "0.002492", + "tid": 727370173905866, + "cloid": "0x00000000000000000000001591000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107892.0", + "sz": "0.00011", + "side": "B", + "time": 1761027612920, + "startPosition": "-469.03115", + "dir": "Close Short", + "closedPnl": "0.537438", + "hash": "0x1f16ae771d2605f72090042de501950204d1005cb82924c9c2df59c9dc29dfe1", + "oid": 207915951200, + "crossed": true, + "fee": "0.002492", + "tid": 975342908968244, + "cloid": "0x00000000000000000000001591000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107893.0", + "sz": "0.0001", + "side": "B", + "time": 1761027612920, + "startPosition": "-469.03104", + "dir": "Close Short", + "closedPnl": "0.48848", + "hash": "0x1f16ae771d2605f72090042de501950204d1005cb82924c9c2df59c9dc29dfe1", + "oid": 207915951200, + "crossed": true, + "fee": "0.002265", + "tid": 646974572925050, + "cloid": "0x00000000000000000000001591000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107893.0", + "sz": "0.00186", + "side": "B", + "time": 1761027612920, + "startPosition": "-469.03094", + "dir": "Close Short", + "closedPnl": "9.085728", + "hash": "0x1f16ae771d2605f72090042de501950204d1005cb82924c9c2df59c9dc29dfe1", + "oid": 207915951200, + "crossed": true, + "fee": "0.042143", + "tid": 30759259679446, + "cloid": "0x00000000000000000000001591000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107893.0", + "sz": "0.00011", + "side": "B", + "time": 1761027612920, + "startPosition": "-469.02908", + "dir": "Close Short", + "closedPnl": "0.537328", + "hash": "0x1f16ae771d2605f72090042de501950204d1005cb82924c9c2df59c9dc29dfe1", + "oid": 207915951200, + "crossed": true, + "fee": "0.002492", + "tid": 127240800615012, + "cloid": "0x00000000000000000000001591000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107894.0", + "sz": "0.0704", + "side": "B", + "time": 1761027612920, + "startPosition": "-469.02897", + "dir": "Close Short", + "closedPnl": "343.81952", + "hash": "0x1f16ae771d2605f72090042de501950204d1005cb82924c9c2df59c9dc29dfe1", + "oid": 207915951200, + "crossed": true, + "fee": "1.595104", + "tid": 451327112066733, + "cloid": "0x00000000000000000000001591000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107900.0", + "sz": "0.09262", + "side": "B", + "time": 1761027614453, + "startPosition": "-468.95857", + "dir": "Close Short", + "closedPnl": "451.781836", + "hash": "0xdd550aff4a6d8c5edece042de501a902076100e4e560ab30811db65209616649", + "oid": 207915984732, + "crossed": true, + "fee": "2.098676", + "tid": 412188931166399, + "cloid": "0x00000000000000000000001591000044", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107902.0", + "sz": "0.09262", + "side": "B", + "time": 1761027615754, + "startPosition": "-468.86595", + "dir": "Close Short", + "closedPnl": "451.596596", + "hash": "0xb7a35ec5657e88c5b91d042de501bb02076000ab0071a7975b6c0a18247262b0", + "oid": 207916011801, + "crossed": true, + "fee": "2.098715", + "tid": 302460700020366, + "cloid": "0x00000000000000000000001591000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107901.0", + "sz": "0.04881", + "side": "B", + "time": 1761027617456, + "startPosition": "-468.77333", + "dir": "Close Short", + "closedPnl": "238.036608", + "hash": "0xe33ba111895aeb7ae4b5042de501d4020a1100f7245e0a4c87044c64485ec565", + "oid": 207916040065, + "crossed": true, + "fee": "1.105996", + "tid": 355596594171607, + "cloid": "0x00000000000000000000001591000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107901.0", + "sz": "0.04381", + "side": "B", + "time": 1761027617456, + "startPosition": "-468.72452", + "dir": "Close Short", + "closedPnl": "213.652608", + "hash": "0xe33ba111895aeb7ae4b5042de501d4020a1100f7245e0a4c87044c64485ec565", + "oid": 207916040065, + "crossed": true, + "fee": "0.992699", + "tid": 132616881735558, + "cloid": "0x00000000000000000000001591000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107914.0", + "sz": "0.09262", + "side": "B", + "time": 1761027619699, + "startPosition": "-468.68071", + "dir": "Close Short", + "closedPnl": "450.485156", + "hash": "0xf361e420f33901b2f4db042de501ec0209e700068e3c2085972a8f73b23cdb9d", + "oid": 207916083551, + "crossed": true, + "fee": "2.098948", + "tid": 51137289668291, + "cloid": "0x00000000000000000000001591000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107914.0", + "sz": "0.09262", + "side": "B", + "time": 1761027623052, + "startPosition": "-468.58809", + "dir": "Close Short", + "closedPnl": "450.485156", + "hash": "0x35d3cb6b37235766374d042de5021302087b0050d2267638d99c76bdf6273150", + "oid": 207916142207, + "crossed": true, + "fee": "2.098948", + "tid": 378956394692886, + "cloid": "0x00000000000000000000001591000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107914.0", + "sz": "0.09262", + "side": "B", + "time": 1761027624553, + "startPosition": "-468.49547", + "dir": "Close Short", + "closedPnl": "450.485156", + "hash": "0x69f381ba8e2f425d6b6d042de5022802024200a02922612f0dbc2d0d4d231c48", + "oid": 207916162060, + "crossed": true, + "fee": "2.098948", + "tid": 640380549323471, + "cloid": "0x00000000000000000000001591000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107914.0", + "sz": "0.00818", + "side": "B", + "time": 1761027628687, + "startPosition": "-468.40285", + "dir": "Close Short", + "closedPnl": "39.785884", + "hash": "0x458bf5f4332106724705042de5025c02050e00d9ce242544e954a146f224e05c", + "oid": 207916213687, + "crossed": true, + "fee": "0.185374", + "tid": 305949817537617, + "cloid": "0x00000000000000000000001591000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107914.0", + "sz": "0.00082", + "side": "B", + "time": 1761027628687, + "startPosition": "-468.39467", + "dir": "Close Short", + "closedPnl": "3.988316", + "hash": "0x458bf5f4332106724705042de5025c02050e00d9ce242544e954a146f224e05c", + "oid": 207916213687, + "crossed": true, + "fee": "0.018582", + "tid": 187966728930219, + "cloid": "0x00000000000000000000001591000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107914.0", + "sz": "0.01351", + "side": "B", + "time": 1761027628687, + "startPosition": "-468.39385", + "dir": "Close Short", + "closedPnl": "65.709938", + "hash": "0x458bf5f4332106724705042de5025c02050e00d9ce242544e954a146f224e05c", + "oid": 207916213687, + "crossed": true, + "fee": "0.306162", + "tid": 500071853061697, + "cloid": "0x00000000000000000000001591000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107914.0", + "sz": "0.07011", + "side": "B", + "time": 1761027628687, + "startPosition": "-468.38034", + "dir": "Close Short", + "closedPnl": "341.001018", + "hash": "0x458bf5f4332106724705042de5025c02050e00d9ce242544e954a146f224e05c", + "oid": 207916213687, + "crossed": true, + "fee": "1.588828", + "tid": 282952516029092, + "cloid": "0x00000000000000000000001591000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107917.0", + "sz": "0.00877", + "side": "B", + "time": 1761027632298, + "startPosition": "-468.31023", + "dir": "Close Short", + "closedPnl": "42.629216", + "hash": "0xe0fae61c12d48bf0e274042de5028f0203820001add7aac284c3916ed1d865db", + "oid": 207916273790, + "crossed": true, + "fee": "0.19875", + "tid": 1031748991964844, + "cloid": "0x00000000000000000000001591000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107917.0", + "sz": "0.04076", + "side": "B", + "time": 1761027632298, + "startPosition": "-468.30146", + "dir": "Close Short", + "closedPnl": "198.126208", + "hash": "0xe0fae61c12d48bf0e274042de5028f0203820001add7aac284c3916ed1d865db", + "oid": 207916273790, + "crossed": true, + "fee": "0.923726", + "tid": 687583722648940, + "cloid": "0x00000000000000000000001591000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107917.0", + "sz": "0.03599", + "side": "B", + "time": 1761027632298, + "startPosition": "-468.2607", + "dir": "Close Short", + "closedPnl": "174.940192", + "hash": "0xe0fae61c12d48bf0e274042de5028f0203820001add7aac284c3916ed1d865db", + "oid": 207916273790, + "crossed": true, + "fee": "0.815625", + "tid": 1017496338623469, + "cloid": "0x00000000000000000000001591000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107918.0", + "sz": "0.0001", + "side": "B", + "time": 1761027632298, + "startPosition": "-468.22471", + "dir": "Close Short", + "closedPnl": "0.48598", + "hash": "0xe0fae61c12d48bf0e274042de5028f0203820001add7aac284c3916ed1d865db", + "oid": 207916273790, + "crossed": true, + "fee": "0.002266", + "tid": 976980425340336, + "cloid": "0x00000000000000000000001591000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107919.0", + "sz": "0.00673", + "side": "B", + "time": 1761027632298, + "startPosition": "-468.22461", + "dir": "Close Short", + "closedPnl": "32.699724", + "hash": "0xe0fae61c12d48bf0e274042de5028f0203820001add7aac284c3916ed1d865db", + "oid": 207916273790, + "crossed": true, + "fee": "0.152521", + "tid": 894506304776962, + "cloid": "0x00000000000000000000001591000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107919.0", + "sz": "0.00027", + "side": "B", + "time": 1761027632298, + "startPosition": "-468.21788", + "dir": "Close Short", + "closedPnl": "1.311876", + "hash": "0xe0fae61c12d48bf0e274042de5028f0203820001add7aac284c3916ed1d865db", + "oid": 207916273790, + "crossed": true, + "fee": "0.006119", + "tid": 739888820196582, + "cloid": "0x00000000000000000000001591000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107913.0", + "sz": "0.08097", + "side": "B", + "time": 1761027635416, + "startPosition": "-468.21761", + "dir": "Close Short", + "closedPnl": "393.902856", + "hash": "0x54510117bd3d2e0255ca042de502b302076400fd58304cd4f819ac6a7c3107ec", + "oid": 207916310033, + "crossed": true, + "fee": "1.83492", + "tid": 829994457499442, + "cloid": "0x00000000000000000000001591000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107913.0", + "sz": "0.01165", + "side": "B", + "time": 1761027635416, + "startPosition": "-468.13664", + "dir": "Close Short", + "closedPnl": "56.67492", + "hash": "0x54510117bd3d2e0255ca042de502b302076400fd58304cd4f819ac6a7c3107ec", + "oid": 207916310033, + "crossed": true, + "fee": "0.264009", + "tid": 843298485179813, + "cloid": "0x00000000000000000000001591000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107906.0", + "sz": "0.00861", + "side": "B", + "time": 1761027643476, + "startPosition": "-468.12499", + "dir": "Close Short", + "closedPnl": "41.946198", + "hash": "0xe28556da49b1d4d0e3ff042de5031202035100bfe4b4f3a2864e022d08b5aebb", + "oid": 207916395658, + "crossed": true, + "fee": "0.195104", + "tid": 606912219274516, + "cloid": "0x00000000000000000000001591000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107906.0", + "sz": "0.0001", + "side": "B", + "time": 1761027643476, + "startPosition": "-468.11638", + "dir": "Close Short", + "closedPnl": "0.48718", + "hash": "0xe28556da49b1d4d0e3ff042de5031202035100bfe4b4f3a2864e022d08b5aebb", + "oid": 207916395658, + "crossed": true, + "fee": "0.002266", + "tid": 830505857820358, + "cloid": "0x00000000000000000000001591000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107906.0", + "sz": "0.00011", + "side": "B", + "time": 1761027643476, + "startPosition": "-468.11628", + "dir": "Close Short", + "closedPnl": "0.535898", + "hash": "0xe28556da49b1d4d0e3ff042de5031202035100bfe4b4f3a2864e022d08b5aebb", + "oid": 207916395658, + "crossed": true, + "fee": "0.002492", + "tid": 19316810020293, + "cloid": "0x00000000000000000000001591000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107907.0", + "sz": "0.00926", + "side": "B", + "time": 1761027643476, + "startPosition": "-468.11617", + "dir": "Close Short", + "closedPnl": "45.103608", + "hash": "0xe28556da49b1d4d0e3ff042de5031202035100bfe4b4f3a2864e022d08b5aebb", + "oid": 207916395658, + "crossed": true, + "fee": "0.209835", + "tid": 474554682213811, + "cloid": "0x00000000000000000000001591000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107907.0", + "sz": "0.00926", + "side": "B", + "time": 1761027643476, + "startPosition": "-468.10691", + "dir": "Close Short", + "closedPnl": "45.103608", + "hash": "0xe28556da49b1d4d0e3ff042de5031202035100bfe4b4f3a2864e022d08b5aebb", + "oid": 207916395658, + "crossed": true, + "fee": "0.209835", + "tid": 789070186029374, + "cloid": "0x00000000000000000000001591000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107907.0", + "sz": "0.00011", + "side": "B", + "time": 1761027643476, + "startPosition": "-468.09765", + "dir": "Close Short", + "closedPnl": "0.535788", + "hash": "0xe28556da49b1d4d0e3ff042de5031202035100bfe4b4f3a2864e022d08b5aebb", + "oid": 207916395658, + "crossed": true, + "fee": "0.002492", + "tid": 252980145695128, + "cloid": "0x00000000000000000000001591000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107908.0", + "sz": "0.03599", + "side": "B", + "time": 1761027643476, + "startPosition": "-468.09754", + "dir": "Close Short", + "closedPnl": "175.264102", + "hash": "0xe28556da49b1d4d0e3ff042de5031202035100bfe4b4f3a2864e022d08b5aebb", + "oid": 207916395658, + "crossed": true, + "fee": "0.815557", + "tid": 261008572936189, + "cloid": "0x00000000000000000000001591000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107908.0", + "sz": "0.01853", + "side": "B", + "time": 1761027643476, + "startPosition": "-468.06155", + "dir": "Close Short", + "closedPnl": "90.237394", + "hash": "0xe28556da49b1d4d0e3ff042de5031202035100bfe4b4f3a2864e022d08b5aebb", + "oid": 207916395658, + "crossed": true, + "fee": "0.419902", + "tid": 766214569168205, + "cloid": "0x00000000000000000000001591000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107908.0", + "sz": "0.01065", + "side": "B", + "time": 1761027643476, + "startPosition": "-468.04302", + "dir": "Close Short", + "closedPnl": "51.86337", + "hash": "0xe28556da49b1d4d0e3ff042de5031202035100bfe4b4f3a2864e022d08b5aebb", + "oid": 207916395658, + "crossed": true, + "fee": "0.241336", + "tid": 1029998240407990, + "cloid": "0x00000000000000000000001591000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107920.0", + "sz": "0.02539", + "side": "B", + "time": 1761027650551, + "startPosition": "-468.03237", + "dir": "Close Short", + "closedPnl": "123.339542", + "hash": "0x183d29e0b52fd7c019b6042de5037202064000c65022f692bc05d5337423b1aa", + "oid": 207916490745, + "crossed": true, + "fee": "0.575418", + "tid": 865357340586810, + "cloid": "0x00000000000000000000001591000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107921.0", + "sz": "0.00011", + "side": "B", + "time": 1761027650551, + "startPosition": "-468.00698", + "dir": "Close Short", + "closedPnl": "0.534248", + "hash": "0x183d29e0b52fd7c019b6042de5037202064000c65022f692bc05d5337423b1aa", + "oid": 207916490745, + "crossed": true, + "fee": "0.002492", + "tid": 45184768166951, + "cloid": "0x00000000000000000000001591000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107922.0", + "sz": "0.04113", + "side": "B", + "time": 1761027650551, + "startPosition": "-468.00687", + "dir": "Close Short", + "closedPnl": "199.719054", + "hash": "0x183d29e0b52fd7c019b6042de5037202064000c65022f692bc05d5337423b1aa", + "oid": 207916490745, + "crossed": true, + "fee": "0.932154", + "tid": 1058776510814454, + "cloid": "0x00000000000000000000001591000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107922.0", + "sz": "0.00011", + "side": "B", + "time": 1761027650551, + "startPosition": "-467.96574", + "dir": "Close Short", + "closedPnl": "0.534138", + "hash": "0x183d29e0b52fd7c019b6042de5037202064000c65022f692bc05d5337423b1aa", + "oid": 207916490745, + "crossed": true, + "fee": "0.002492", + "tid": 7312356958085, + "cloid": "0x00000000000000000000001591000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107923.0", + "sz": "0.00014", + "side": "B", + "time": 1761027650551, + "startPosition": "-467.96563", + "dir": "Close Short", + "closedPnl": "0.679672", + "hash": "0x183d29e0b52fd7c019b6042de5037202064000c65022f692bc05d5337423b1aa", + "oid": 207916490745, + "crossed": true, + "fee": "0.003172", + "tid": 80317213508624, + "cloid": "0x00000000000000000000001591000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107923.0", + "sz": "0.00011", + "side": "B", + "time": 1761027650551, + "startPosition": "-467.96549", + "dir": "Close Short", + "closedPnl": "0.534028", + "hash": "0x183d29e0b52fd7c019b6042de5037202064000c65022f692bc05d5337423b1aa", + "oid": 207916490745, + "crossed": true, + "fee": "0.002493", + "tid": 1102173579017223, + "cloid": "0x00000000000000000000001591000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107924.0", + "sz": "0.00679", + "side": "B", + "time": 1761027650551, + "startPosition": "-467.96538", + "dir": "Close Short", + "closedPnl": "32.957302", + "hash": "0x183d29e0b52fd7c019b6042de5037202064000c65022f692bc05d5337423b1aa", + "oid": 207916490745, + "crossed": true, + "fee": "0.153888", + "tid": 914630462773008, + "cloid": "0x00000000000000000000001591000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107924.0", + "sz": "0.00679", + "side": "B", + "time": 1761027650551, + "startPosition": "-467.95859", + "dir": "Close Short", + "closedPnl": "32.957302", + "hash": "0x183d29e0b52fd7c019b6042de5037202064000c65022f692bc05d5337423b1aa", + "oid": 207916490745, + "crossed": true, + "fee": "0.153888", + "tid": 1002744663217050, + "cloid": "0x00000000000000000000001591000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107924.0", + "sz": "0.00011", + "side": "B", + "time": 1761027650551, + "startPosition": "-467.9518", + "dir": "Close Short", + "closedPnl": "0.533918", + "hash": "0x183d29e0b52fd7c019b6042de5037202064000c65022f692bc05d5337423b1aa", + "oid": 207916490745, + "crossed": true, + "fee": "0.002493", + "tid": 970541552857177, + "cloid": "0x00000000000000000000001591000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107924.0", + "sz": "0.01193", + "side": "B", + "time": 1761027650551, + "startPosition": "-467.95169", + "dir": "Close Short", + "closedPnl": "57.905834", + "hash": "0x183d29e0b52fd7c019b6042de5037202064000c65022f692bc05d5337423b1aa", + "oid": 207916490745, + "crossed": true, + "fee": "0.270381", + "tid": 874262670132626, + "cloid": "0x00000000000000000000001591000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107942.0", + "sz": "0.00766", + "side": "B", + "time": 1761027658826, + "startPosition": "-467.93976", + "dir": "Close Short", + "closedPnl": "37.042228", + "hash": "0x5c9590da82dbfdaf5e0f042de503dd02037c00c01ddf1c81005e3c2d41dfd79a", + "oid": 207916613743, + "crossed": true, + "fee": "0.173635", + "tid": 120859605014475, + "cloid": "0x00000000000000000000001591000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107943.0", + "sz": "0.00014", + "side": "B", + "time": 1761027658826, + "startPosition": "-467.9321", + "dir": "Close Short", + "closedPnl": "0.676872", + "hash": "0x5c9590da82dbfdaf5e0f042de503dd02037c00c01ddf1c81005e3c2d41dfd79a", + "oid": 207916613743, + "crossed": true, + "fee": "0.003173", + "tid": 249491256767350, + "cloid": "0x00000000000000000000001591000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107943.0", + "sz": "0.00011", + "side": "B", + "time": 1761027658826, + "startPosition": "-467.93196", + "dir": "Close Short", + "closedPnl": "0.531828", + "hash": "0x5c9590da82dbfdaf5e0f042de503dd02037c00c01ddf1c81005e3c2d41dfd79a", + "oid": 207916613743, + "crossed": true, + "fee": "0.002493", + "tid": 62485033715445, + "cloid": "0x00000000000000000000001591000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107944.0", + "sz": "0.04263", + "side": "B", + "time": 1761027658826, + "startPosition": "-467.93185", + "dir": "Close Short", + "closedPnl": "206.064894", + "hash": "0x5c9590da82dbfdaf5e0f042de503dd02037c00c01ddf1c81005e3c2d41dfd79a", + "oid": 207916613743, + "crossed": true, + "fee": "0.966347", + "tid": 956325928803297, + "cloid": "0x00000000000000000000001591000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107944.0", + "sz": "0.00704", + "side": "B", + "time": 1761027658826, + "startPosition": "-467.88922", + "dir": "Close Short", + "closedPnl": "34.029952", + "hash": "0x5c9590da82dbfdaf5e0f042de503dd02037c00c01ddf1c81005e3c2d41dfd79a", + "oid": 207916613743, + "crossed": true, + "fee": "0.159584", + "tid": 1084967310355647, + "cloid": "0x00000000000000000000001591000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107944.0", + "sz": "0.00704", + "side": "B", + "time": 1761027658826, + "startPosition": "-467.88218", + "dir": "Close Short", + "closedPnl": "34.029952", + "hash": "0x5c9590da82dbfdaf5e0f042de503dd02037c00c01ddf1c81005e3c2d41dfd79a", + "oid": 207916613743, + "crossed": true, + "fee": "0.159584", + "tid": 341681523639631, + "cloid": "0x00000000000000000000001591000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107944.0", + "sz": "0.00011", + "side": "B", + "time": 1761027658826, + "startPosition": "-467.87514", + "dir": "Close Short", + "closedPnl": "0.531718", + "hash": "0x5c9590da82dbfdaf5e0f042de503dd02037c00c01ddf1c81005e3c2d41dfd79a", + "oid": 207916613743, + "crossed": true, + "fee": "0.002493", + "tid": 745616330103287, + "cloid": "0x00000000000000000000001591000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107945.0", + "sz": "0.00011", + "side": "B", + "time": 1761027658826, + "startPosition": "-467.87503", + "dir": "Close Short", + "closedPnl": "0.531608", + "hash": "0x5c9590da82dbfdaf5e0f042de503dd02037c00c01ddf1c81005e3c2d41dfd79a", + "oid": 207916613743, + "crossed": true, + "fee": "0.002493", + "tid": 783373614683614, + "cloid": "0x00000000000000000000001591000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107946.0", + "sz": "0.00011", + "side": "B", + "time": 1761027658826, + "startPosition": "-467.87492", + "dir": "Close Short", + "closedPnl": "0.531498", + "hash": "0x5c9590da82dbfdaf5e0f042de503dd02037c00c01ddf1c81005e3c2d41dfd79a", + "oid": 207916613743, + "crossed": true, + "fee": "0.002493", + "tid": 861917832573140, + "cloid": "0x00000000000000000000001591000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107946.0", + "sz": "0.02764", + "side": "B", + "time": 1761027658826, + "startPosition": "-467.87481", + "dir": "Close Short", + "closedPnl": "133.550952", + "hash": "0x5c9590da82dbfdaf5e0f042de503dd02037c00c01ddf1c81005e3c2d41dfd79a", + "oid": 207916613743, + "crossed": true, + "fee": "0.626561", + "tid": 443271570095812, + "cloid": "0x00000000000000000000001591000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107947.0", + "sz": "0.00011", + "side": "B", + "time": 1761027661255, + "startPosition": "-467.84717", + "dir": "Close Short", + "closedPnl": "0.531388", + "hash": "0x515a0340f752b37d52d3042de503f702040200269255d24ff522ae93b6568d67", + "oid": 207916654234, + "crossed": true, + "fee": "0.002493", + "tid": 471675627296332, + "cloid": "0x00000000000000000000001591000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107948.0", + "sz": "0.09248", + "side": "B", + "time": 1761027661255, + "startPosition": "-467.84706", + "dir": "Close Short", + "closedPnl": "446.659904", + "hash": "0x515a0340f752b37d52d3042de503f702040200269255d24ff522ae93b6568d67", + "oid": 207916654234, + "crossed": true, + "fee": "2.096436", + "tid": 584502261662121, + "cloid": "0x00000000000000000000001591000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107976.0", + "sz": "0.00014", + "side": "B", + "time": 1761027662925, + "startPosition": "-467.75458", + "dir": "Close Short", + "closedPnl": "0.672252", + "hash": "0x1b1001daef0466b81c89042de5040c02050c00c08a07858abed8ad2dae0840a2", + "oid": 207916697468, + "crossed": true, + "fee": "0.003174", + "tid": 776281015557727, + "cloid": "0x00000000000000000000001591000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107976.0", + "sz": "0.00011", + "side": "B", + "time": 1761027662925, + "startPosition": "-467.75444", + "dir": "Close Short", + "closedPnl": "0.528198", + "hash": "0x1b1001daef0466b81c89042de5040c02050c00c08a07858abed8ad2dae0840a2", + "oid": 207916697468, + "crossed": true, + "fee": "0.002494", + "tid": 466909236068489, + "cloid": "0x00000000000000000000001591000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107976.0", + "sz": "0.03754", + "side": "B", + "time": 1761027662925, + "startPosition": "-467.75433", + "dir": "Close Short", + "closedPnl": "180.259572", + "hash": "0x1b1001daef0466b81c89042de5040c02050c00c08a07858abed8ad2dae0840a2", + "oid": 207916697468, + "crossed": true, + "fee": "0.851217", + "tid": 562210936714498, + "cloid": "0x00000000000000000000001591000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107976.0", + "sz": "0.00927", + "side": "B", + "time": 1761027662925, + "startPosition": "-467.71679", + "dir": "Close Short", + "closedPnl": "44.512686", + "hash": "0x1b1001daef0466b81c89042de5040c02050c00c08a07858abed8ad2dae0840a2", + "oid": 207916697468, + "crossed": true, + "fee": "0.210196", + "tid": 716940968307229, + "cloid": "0x00000000000000000000001591000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107977.0", + "sz": "0.00011", + "side": "B", + "time": 1761027662925, + "startPosition": "-467.70752", + "dir": "Close Short", + "closedPnl": "0.528088", + "hash": "0x1b1001daef0466b81c89042de5040c02050c00c08a07858abed8ad2dae0840a2", + "oid": 207916697468, + "crossed": true, + "fee": "0.002494", + "tid": 410583443046721, + "cloid": "0x00000000000000000000001591000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107978.0", + "sz": "0.04541", + "side": "B", + "time": 1761027662925, + "startPosition": "-467.70741", + "dir": "Close Short", + "closedPnl": "217.958918", + "hash": "0x1b1001daef0466b81c89042de5040c02050c00c08a07858abed8ad2dae0840a2", + "oid": 207916697468, + "crossed": true, + "fee": "1.029689", + "tid": 843905678389074, + "cloid": "0x00000000000000000000001591000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107986.0", + "sz": "0.07065", + "side": "B", + "time": 1761027665854, + "startPosition": "-467.662", + "dir": "Close Short", + "closedPnl": "338.54067", + "hash": "0xddc43b8dbb3684e8df3d042de5043202148900735639a3ba818ce6e07a3a5ed3", + "oid": 207916762425, + "crossed": true, + "fee": "1.602134", + "tid": 686716782658371, + "cloid": "0x00000000000000000000001591000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107986.0", + "sz": "0.00464", + "side": "B", + "time": 1761027665854, + "startPosition": "-467.59135", + "dir": "Close Short", + "closedPnl": "22.233952", + "hash": "0xddc43b8dbb3684e8df3d042de5043202148900735639a3ba818ce6e07a3a5ed3", + "oid": 207916762425, + "crossed": true, + "fee": "0.105221", + "tid": 1063029479575045, + "cloid": "0x00000000000000000000001591000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107986.0", + "sz": "0.00011", + "side": "B", + "time": 1761027665854, + "startPosition": "-467.58671", + "dir": "Close Short", + "closedPnl": "0.527098", + "hash": "0xddc43b8dbb3684e8df3d042de5043202148900735639a3ba818ce6e07a3a5ed3", + "oid": 207916762425, + "crossed": true, + "fee": "0.002494", + "tid": 214012139004377, + "cloid": "0x00000000000000000000001591000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107986.0", + "sz": "0.00011", + "side": "B", + "time": 1761027665854, + "startPosition": "-467.5866", + "dir": "Close Short", + "closedPnl": "0.527098", + "hash": "0xddc43b8dbb3684e8df3d042de5043202148900735639a3ba818ce6e07a3a5ed3", + "oid": 207916762425, + "crossed": true, + "fee": "0.002494", + "tid": 19118678006428, + "cloid": "0x00000000000000000000001591000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107987.0", + "sz": "0.00011", + "side": "B", + "time": 1761027665854, + "startPosition": "-467.58649", + "dir": "Close Short", + "closedPnl": "0.526988", + "hash": "0xddc43b8dbb3684e8df3d042de5043202148900735639a3ba818ce6e07a3a5ed3", + "oid": 207916762425, + "crossed": true, + "fee": "0.002494", + "tid": 1059470818790971, + "cloid": "0x00000000000000000000001591000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107987.0", + "sz": "0.00011", + "side": "B", + "time": 1761027665854, + "startPosition": "-467.58638", + "dir": "Close Short", + "closedPnl": "0.526988", + "hash": "0xddc43b8dbb3684e8df3d042de5043202148900735639a3ba818ce6e07a3a5ed3", + "oid": 207916762425, + "crossed": true, + "fee": "0.002494", + "tid": 519464505311977, + "cloid": "0x00000000000000000000001591000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107988.0", + "sz": "0.00011", + "side": "B", + "time": 1761027665854, + "startPosition": "-467.58627", + "dir": "Close Short", + "closedPnl": "0.526878", + "hash": "0xddc43b8dbb3684e8df3d042de5043202148900735639a3ba818ce6e07a3a5ed3", + "oid": 207916762425, + "crossed": true, + "fee": "0.002494", + "tid": 949346583209391, + "cloid": "0x00000000000000000000001591000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107989.0", + "sz": "0.01673", + "side": "B", + "time": 1761027665854, + "startPosition": "-467.58616", + "dir": "Close Short", + "closedPnl": "80.116624", + "hash": "0xddc43b8dbb3684e8df3d042de5043202148900735639a3ba818ce6e07a3a5ed3", + "oid": 207916762425, + "crossed": true, + "fee": "0.379397", + "tid": 884015883651577, + "cloid": "0x00000000000000000000001591000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107989.0", + "sz": "0.03515", + "side": "B", + "time": 1761027667659, + "startPosition": "-467.56943", + "dir": "Close Short", + "closedPnl": "168.32632", + "hash": "0x8690eac879cbd40b880a042de5044a0208e200ae14cef2dd2a59961b38cfadf6", + "oid": 207916798814, + "crossed": true, + "fee": "0.79712", + "tid": 1003384212359468, + "cloid": "0x00000000000000000000001591000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107989.0", + "sz": "0.0574", + "side": "B", + "time": 1761027667659, + "startPosition": "-467.53428", + "dir": "Close Short", + "closedPnl": "274.87712", + "hash": "0x8690eac879cbd40b880a042de5044a0208e200ae14cef2dd2a59961b38cfadf6", + "oid": 207916798814, + "crossed": true, + "fee": "1.301699", + "tid": 604600356859534, + "cloid": "0x00000000000000000000001591000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107993.0", + "sz": "0.0652", + "side": "B", + "time": 1761027672432, + "startPosition": "-467.47688", + "dir": "Close Short", + "closedPnl": "311.96896", + "hash": "0xf33f4e5c2e7c29e5f4b9042de5048a0202250041c97f48b89707f9aeed7003d0", + "oid": 207916861952, + "crossed": true, + "fee": "1.47864", + "tid": 47377376422238, + "cloid": "0x00000000000000000000001591000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107993.0", + "sz": "0.00014", + "side": "B", + "time": 1761027672432, + "startPosition": "-467.41168", + "dir": "Close Short", + "closedPnl": "0.669872", + "hash": "0xf33f4e5c2e7c29e5f4b9042de5048a0202250041c97f48b89707f9aeed7003d0", + "oid": 207916861952, + "crossed": true, + "fee": "0.003174", + "tid": 858873635113973, + "cloid": "0x00000000000000000000001591000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107993.0", + "sz": "0.00011", + "side": "B", + "time": 1761027672432, + "startPosition": "-467.41154", + "dir": "Close Short", + "closedPnl": "0.526328", + "hash": "0xf33f4e5c2e7c29e5f4b9042de5048a0202250041c97f48b89707f9aeed7003d0", + "oid": 207916861952, + "crossed": true, + "fee": "0.002494", + "tid": 667798774907217, + "cloid": "0x00000000000000000000001591000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107993.0", + "sz": "0.0271", + "side": "B", + "time": 1761027672432, + "startPosition": "-467.41143", + "dir": "Close Short", + "closedPnl": "129.66808", + "hash": "0xf33f4e5c2e7c29e5f4b9042de5048a0202250041c97f48b89707f9aeed7003d0", + "oid": 207916861952, + "crossed": true, + "fee": "0.614588", + "tid": 543504925428761, + "cloid": "0x00000000000000000000001591000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107994.0", + "sz": "0.09255", + "side": "B", + "time": 1761027674950, + "startPosition": "-467.38433", + "dir": "Close Short", + "closedPnl": "442.74069", + "hash": "0x601fd670650b64ed6199042de504ae0204c20056000e83bf03e881c3240f3ed8", + "oid": 207916890624, + "crossed": true, + "fee": "2.098917", + "tid": 651019624263255, + "cloid": "0x00000000000000000000001591000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107986.0", + "sz": "0.09256", + "side": "B", + "time": 1761027679702, + "startPosition": "-467.29178", + "dir": "Close Short", + "closedPnl": "443.529008", + "hash": "0x248494dd3967261125fe042de504ee0202b800c2d46a44e3c84d402ff86afffb", + "oid": 207916953861, + "crossed": true, + "fee": "2.098988", + "tid": 1100020224470884, + "cloid": "0x00000000000000000000001591000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107984.0", + "sz": "0.09256", + "side": "B", + "time": 1761027681121, + "startPosition": "-467.19922", + "dir": "Close Short", + "closedPnl": "443.714128", + "hash": "0xd821840092cb3227d99b042de5050302019500e62dce50f97bea2f5351cf0c12", + "oid": 207916972117, + "crossed": true, + "fee": "2.098949", + "tid": 1066584386728523, + "cloid": "0x00000000000000000000001591000063", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107986.0", + "sz": "0.00017", + "side": "B", + "time": 1761027684166, + "startPosition": "-467.10666", + "dir": "Close Short", + "closedPnl": "0.814606", + "hash": "0x68a6145cd97affa66a1f042de5052f02045c0042747e1e780c6ebfaf987ed991", + "oid": 207917006135, + "crossed": true, + "fee": "0.003855", + "tid": 317088223863834, + "cloid": "0x00000000000000000000001591000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107986.0", + "sz": "0.00011", + "side": "B", + "time": 1761027684166, + "startPosition": "-467.10649", + "dir": "Close Short", + "closedPnl": "0.527098", + "hash": "0x68a6145cd97affa66a1f042de5052f02045c0042747e1e780c6ebfaf987ed991", + "oid": 207917006135, + "crossed": true, + "fee": "0.002494", + "tid": 5617873087283, + "cloid": "0x00000000000000000000001591000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107987.0", + "sz": "0.00011", + "side": "B", + "time": 1761027684166, + "startPosition": "-467.10638", + "dir": "Close Short", + "closedPnl": "0.526988", + "hash": "0x68a6145cd97affa66a1f042de5052f02045c0042747e1e780c6ebfaf987ed991", + "oid": 207917006135, + "crossed": true, + "fee": "0.002494", + "tid": 549408096306807, + "cloid": "0x00000000000000000000001591000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107988.0", + "sz": "0.00011", + "side": "B", + "time": 1761027684166, + "startPosition": "-467.10627", + "dir": "Close Short", + "closedPnl": "0.526878", + "hash": "0x68a6145cd97affa66a1f042de5052f02045c0042747e1e780c6ebfaf987ed991", + "oid": 207917006135, + "crossed": true, + "fee": "0.002494", + "tid": 741333743961500, + "cloid": "0x00000000000000000000001591000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107989.0", + "sz": "0.00011", + "side": "B", + "time": 1761027684166, + "startPosition": "-467.10616", + "dir": "Close Short", + "closedPnl": "0.526768", + "hash": "0x68a6145cd97affa66a1f042de5052f02045c0042747e1e780c6ebfaf987ed991", + "oid": 207917006135, + "crossed": true, + "fee": "0.002494", + "tid": 634816743259396, + "cloid": "0x00000000000000000000001591000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107990.0", + "sz": "0.00011", + "side": "B", + "time": 1761027684166, + "startPosition": "-467.10605", + "dir": "Close Short", + "closedPnl": "0.526658", + "hash": "0x68a6145cd97affa66a1f042de5052f02045c0042747e1e780c6ebfaf987ed991", + "oid": 207917006135, + "crossed": true, + "fee": "0.002494", + "tid": 738274793666867, + "cloid": "0x00000000000000000000001591000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107991.0", + "sz": "0.01351", + "side": "B", + "time": 1761027684166, + "startPosition": "-467.10594", + "dir": "Close Short", + "closedPnl": "64.669668", + "hash": "0x68a6145cd97affa66a1f042de5052f02045c0042747e1e780c6ebfaf987ed991", + "oid": 207917006135, + "crossed": true, + "fee": "0.306381", + "tid": 451635095845283, + "cloid": "0x00000000000000000000001591000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107991.0", + "sz": "0.00011", + "side": "B", + "time": 1761027684166, + "startPosition": "-467.09243", + "dir": "Close Short", + "closedPnl": "0.526548", + "hash": "0x68a6145cd97affa66a1f042de5052f02045c0042747e1e780c6ebfaf987ed991", + "oid": 207917006135, + "crossed": true, + "fee": "0.002494", + "tid": 740591010370354, + "cloid": "0x00000000000000000000001591000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107992.0", + "sz": "0.00011", + "side": "B", + "time": 1761027684166, + "startPosition": "-467.09232", + "dir": "Close Short", + "closedPnl": "0.526438", + "hash": "0x68a6145cd97affa66a1f042de5052f02045c0042747e1e780c6ebfaf987ed991", + "oid": 207917006135, + "crossed": true, + "fee": "0.002494", + "tid": 476719320639591, + "cloid": "0x00000000000000000000001591000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107993.0", + "sz": "0.00011", + "side": "B", + "time": 1761027684166, + "startPosition": "-467.09221", + "dir": "Close Short", + "closedPnl": "0.526328", + "hash": "0x68a6145cd97affa66a1f042de5052f02045c0042747e1e780c6ebfaf987ed991", + "oid": 207917006135, + "crossed": true, + "fee": "0.002494", + "tid": 400961309434127, + "cloid": "0x00000000000000000000001591000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107993.0", + "sz": "0.00014", + "side": "B", + "time": 1761027684166, + "startPosition": "-467.0921", + "dir": "Close Short", + "closedPnl": "0.669872", + "hash": "0x68a6145cd97affa66a1f042de5052f02045c0042747e1e780c6ebfaf987ed991", + "oid": 207917006135, + "crossed": true, + "fee": "0.003174", + "tid": 728010083029584, + "cloid": "0x00000000000000000000001591000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107994.0", + "sz": "0.00011", + "side": "B", + "time": 1761027684166, + "startPosition": "-467.09196", + "dir": "Close Short", + "closedPnl": "0.526218", + "hash": "0x68a6145cd97affa66a1f042de5052f02045c0042747e1e780c6ebfaf987ed991", + "oid": 207917006135, + "crossed": true, + "fee": "0.002494", + "tid": 393164094913609, + "cloid": "0x00000000000000000000001591000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107994.0", + "sz": "0.07774", + "side": "B", + "time": 1761027684166, + "startPosition": "-467.09185", + "dir": "Close Short", + "closedPnl": "371.892612", + "hash": "0x68a6145cd97affa66a1f042de5052f02045c0042747e1e780c6ebfaf987ed991", + "oid": 207917006135, + "crossed": true, + "fee": "1.763045", + "tid": 657886580787440, + "cloid": "0x00000000000000000000001591000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107987.0", + "sz": "0.02152", + "side": "B", + "time": 1761027693467, + "startPosition": "-467.01411", + "dir": "Close Short", + "closedPnl": "103.098016", + "hash": "0xc8b9079cb7f3594cca32042de505a3020540008252f6781e6c81b2ef76f73337", + "oid": 207917112179, + "crossed": true, + "fee": "0.488014", + "tid": 1017707908761905, + "cloid": "0x00000000000000000000001591000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107987.0", + "sz": "0.07104", + "side": "B", + "time": 1761027693467, + "startPosition": "-466.99259", + "dir": "Close Short", + "closedPnl": "340.338432", + "hash": "0xc8b9079cb7f3594cca32042de505a3020540008252f6781e6c81b2ef76f73337", + "oid": 207917112179, + "crossed": true, + "fee": "1.610993", + "tid": 941195052740339, + "cloid": "0x00000000000000000000001591000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107986.0", + "sz": "0.09256", + "side": "B", + "time": 1761027695042, + "startPosition": "-466.92155", + "dir": "Close Short", + "closedPnl": "443.529008", + "hash": "0x65bdd6cbe069cf9b6737042de505b60204c000b17b6cee6d0986821e9f6da986", + "oid": 207917128120, + "crossed": true, + "fee": "2.098988", + "tid": 218896361065162, + "cloid": "0x00000000000000000000001591000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107977.0", + "sz": "0.07058", + "side": "B", + "time": 1761027698397, + "startPosition": "-466.82899", + "dir": "Close Short", + "closedPnl": "338.840464", + "hash": "0xb45e8b8774be579eb5d8042de505e5020222006d0fb17670582736da33b23189", + "oid": 207917178734, + "crossed": true, + "fee": "1.600413", + "tid": 965844225950226, + "cloid": "0x00000000000000000000001591000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107977.0", + "sz": "0.02198", + "side": "B", + "time": 1761027698397, + "startPosition": "-466.75841", + "dir": "Close Short", + "closedPnl": "105.521584", + "hash": "0xb45e8b8774be579eb5d8042de505e5020222006d0fb17670582736da33b23189", + "oid": 207917178734, + "crossed": true, + "fee": "0.4984", + "tid": 242510263828588, + "cloid": "0x00000000000000000000001591000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107958.0", + "sz": "0.09259", + "side": "B", + "time": 1761027701082, + "startPosition": "-466.73643", + "dir": "Close Short", + "closedPnl": "446.265282", + "hash": "0xc84407893554c8bec9bd042de506080202cd006ed057e7906c0cb2dbf458a2a9", + "oid": 207917211816, + "crossed": true, + "fee": "2.099124", + "tid": 445199417306491, + "cloid": "0x00000000000000000000001591000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107945.0", + "sz": "0.03835", + "side": "B", + "time": 1761027702500, + "startPosition": "-466.64384", + "dir": "Close Short", + "closedPnl": "185.33788", + "hash": "0x21618f5829c742d722db042de5061a0206d2003dc4ca61a9c52a3aaae8cb1cc1", + "oid": 207917233417, + "crossed": true, + "fee": "0.869335", + "tid": 971147500708182, + "cloid": "0x00000000000000000000001591000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107945.0", + "sz": "0.05424", + "side": "B", + "time": 1761027702500, + "startPosition": "-466.60549", + "dir": "Close Short", + "closedPnl": "262.131072", + "hash": "0x21618f5829c742d722db042de5061a0206d2003dc4ca61a9c52a3aaae8cb1cc1", + "oid": 207917233417, + "crossed": true, + "fee": "1.229536", + "tid": 929344693327987, + "cloid": "0x00000000000000000000001591000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107953.0", + "sz": "0.03249", + "side": "B", + "time": 1761027704482, + "startPosition": "-466.55125", + "dir": "Close Short", + "closedPnl": "156.757752", + "hash": "0xb5df2e17bdf51531b758042de5063102095a00fd58f8340359a7d96a7cf8ef1c", + "oid": 207917261403, + "crossed": true, + "fee": "0.736552", + "tid": 834228129758278, + "cloid": "0x00000000000000000000001591000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107953.0", + "sz": "0.02164", + "side": "B", + "time": 1761027704482, + "startPosition": "-466.51876", + "dir": "Close Short", + "closedPnl": "104.408672", + "hash": "0xb5df2e17bdf51531b758042de5063102095a00fd58f8340359a7d96a7cf8ef1c", + "oid": 207917261403, + "crossed": true, + "fee": "0.490581", + "tid": 364415713832036, + "cloid": "0x00000000000000000000001591000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107953.0", + "sz": "0.03846", + "side": "B", + "time": 1761027704482, + "startPosition": "-466.49712", + "dir": "Close Short", + "closedPnl": "185.561808", + "hash": "0xb5df2e17bdf51531b758042de5063102095a00fd58f8340359a7d96a7cf8ef1c", + "oid": 207917261403, + "crossed": true, + "fee": "0.871893", + "tid": 28696176338272, + "cloid": "0x00000000000000000000001591000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107961.0", + "sz": "0.00011", + "side": "B", + "time": 1761027711212, + "startPosition": "-466.45866", + "dir": "Close Short", + "closedPnl": "0.529848", + "hash": "0xce3f29cb765024a5cfb8042de5067c02041900b1115343777207d51e3553fe90", + "oid": 207917330043, + "crossed": true, + "fee": "0.002493", + "tid": 749094106938060, + "cloid": "0x00000000000000000000001591000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107962.0", + "sz": "0.00011", + "side": "B", + "time": 1761027711212, + "startPosition": "-466.45855", + "dir": "Close Short", + "closedPnl": "0.529738", + "hash": "0xce3f29cb765024a5cfb8042de5067c02041900b1115343777207d51e3553fe90", + "oid": 207917330043, + "crossed": true, + "fee": "0.002493", + "tid": 809113646179088, + "cloid": "0x00000000000000000000001591000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107963.0", + "sz": "0.00011", + "side": "B", + "time": 1761027711212, + "startPosition": "-466.45844", + "dir": "Close Short", + "closedPnl": "0.529628", + "hash": "0xce3f29cb765024a5cfb8042de5067c02041900b1115343777207d51e3553fe90", + "oid": 207917330043, + "crossed": true, + "fee": "0.002493", + "tid": 176453807915377, + "cloid": "0x00000000000000000000001591000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107964.0", + "sz": "0.00011", + "side": "B", + "time": 1761027711212, + "startPosition": "-466.45833", + "dir": "Close Short", + "closedPnl": "0.529518", + "hash": "0xce3f29cb765024a5cfb8042de5067c02041900b1115343777207d51e3553fe90", + "oid": 207917330043, + "crossed": true, + "fee": "0.002493", + "tid": 79822843730731, + "cloid": "0x00000000000000000000001591000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107964.0", + "sz": "0.00014", + "side": "B", + "time": 1761027711212, + "startPosition": "-466.45822", + "dir": "Close Short", + "closedPnl": "0.673932", + "hash": "0xce3f29cb765024a5cfb8042de5067c02041900b1115343777207d51e3553fe90", + "oid": 207917330043, + "crossed": true, + "fee": "0.003174", + "tid": 118890418333491, + "cloid": "0x00000000000000000000001591000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107965.0", + "sz": "0.00011", + "side": "B", + "time": 1761027711212, + "startPosition": "-466.45808", + "dir": "Close Short", + "closedPnl": "0.529408", + "hash": "0xce3f29cb765024a5cfb8042de5067c02041900b1115343777207d51e3553fe90", + "oid": 207917330043, + "crossed": true, + "fee": "0.002493", + "tid": 229722878625368, + "cloid": "0x00000000000000000000001591000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107966.0", + "sz": "0.00011", + "side": "B", + "time": 1761027711212, + "startPosition": "-466.45797", + "dir": "Close Short", + "closedPnl": "0.529298", + "hash": "0xce3f29cb765024a5cfb8042de5067c02041900b1115343777207d51e3553fe90", + "oid": 207917330043, + "crossed": true, + "fee": "0.002494", + "tid": 607778437341351, + "cloid": "0x00000000000000000000001591000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107967.0", + "sz": "0.00011", + "side": "B", + "time": 1761027711212, + "startPosition": "-466.45786", + "dir": "Close Short", + "closedPnl": "0.529188", + "hash": "0xce3f29cb765024a5cfb8042de5067c02041900b1115343777207d51e3553fe90", + "oid": 207917330043, + "crossed": true, + "fee": "0.002494", + "tid": 402503529987083, + "cloid": "0x00000000000000000000001591000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107968.0", + "sz": "0.00011", + "side": "B", + "time": 1761027711212, + "startPosition": "-466.45775", + "dir": "Close Short", + "closedPnl": "0.529078", + "hash": "0xce3f29cb765024a5cfb8042de5067c02041900b1115343777207d51e3553fe90", + "oid": 207917330043, + "crossed": true, + "fee": "0.002494", + "tid": 649043531686057, + "cloid": "0x00000000000000000000001591000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107968.0", + "sz": "0.00014", + "side": "B", + "time": 1761027711212, + "startPosition": "-466.45764", + "dir": "Close Short", + "closedPnl": "0.673372", + "hash": "0xce3f29cb765024a5cfb8042de5067c02041900b1115343777207d51e3553fe90", + "oid": 207917330043, + "crossed": true, + "fee": "0.003174", + "tid": 1004552079484836, + "cloid": "0x00000000000000000000001591000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107969.0", + "sz": "0.00011", + "side": "B", + "time": 1761027711212, + "startPosition": "-466.4575", + "dir": "Close Short", + "closedPnl": "0.528968", + "hash": "0xce3f29cb765024a5cfb8042de5067c02041900b1115343777207d51e3553fe90", + "oid": 207917330043, + "crossed": true, + "fee": "0.002494", + "tid": 1115461998933456, + "cloid": "0x00000000000000000000001591000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107970.0", + "sz": "0.00011", + "side": "B", + "time": 1761027711212, + "startPosition": "-466.45739", + "dir": "Close Short", + "closedPnl": "0.528858", + "hash": "0xce3f29cb765024a5cfb8042de5067c02041900b1115343777207d51e3553fe90", + "oid": 207917330043, + "crossed": true, + "fee": "0.002494", + "tid": 611642212453787, + "cloid": "0x00000000000000000000001591000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107971.0", + "sz": "0.00011", + "side": "B", + "time": 1761027711212, + "startPosition": "-466.45728", + "dir": "Close Short", + "closedPnl": "0.528748", + "hash": "0xce3f29cb765024a5cfb8042de5067c02041900b1115343777207d51e3553fe90", + "oid": 207917330043, + "crossed": true, + "fee": "0.002494", + "tid": 883303450576560, + "cloid": "0x00000000000000000000001591000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107972.0", + "sz": "0.00011", + "side": "B", + "time": 1761027711212, + "startPosition": "-466.45717", + "dir": "Close Short", + "closedPnl": "0.528638", + "hash": "0xce3f29cb765024a5cfb8042de5067c02041900b1115343777207d51e3553fe90", + "oid": 207917330043, + "crossed": true, + "fee": "0.002494", + "tid": 804860867925252, + "cloid": "0x00000000000000000000001591000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107972.0", + "sz": "0.00014", + "side": "B", + "time": 1761027711212, + "startPosition": "-466.45706", + "dir": "Close Short", + "closedPnl": "0.672812", + "hash": "0xce3f29cb765024a5cfb8042de5067c02041900b1115343777207d51e3553fe90", + "oid": 207917330043, + "crossed": true, + "fee": "0.003174", + "tid": 966096160375229, + "cloid": "0x00000000000000000000001591000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107973.0", + "sz": "0.00011", + "side": "B", + "time": 1761027711212, + "startPosition": "-466.45692", + "dir": "Close Short", + "closedPnl": "0.528528", + "hash": "0xce3f29cb765024a5cfb8042de5067c02041900b1115343777207d51e3553fe90", + "oid": 207917330043, + "crossed": true, + "fee": "0.002494", + "tid": 819231178730486, + "cloid": "0x00000000000000000000001591000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107973.0", + "sz": "0.08431", + "side": "B", + "time": 1761027711212, + "startPosition": "-466.45681", + "dir": "Close Short", + "closedPnl": "405.092688", + "hash": "0xce3f29cb765024a5cfb8042de5067c02041900b1115343777207d51e3553fe90", + "oid": 207917330043, + "crossed": true, + "fee": "1.911672", + "tid": 1007463152070103, + "cloid": "0x00000000000000000000001591000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107973.0", + "sz": "0.00641", + "side": "B", + "time": 1761027711212, + "startPosition": "-466.3725", + "dir": "Close Short", + "closedPnl": "30.798768", + "hash": "0xce3f29cb765024a5cfb8042de5067c02041900b1115343777207d51e3553fe90", + "oid": 207917330043, + "crossed": true, + "fee": "0.145342", + "tid": 977309296382387, + "cloid": "0x00000000000000000000001591000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107974.0", + "sz": "0.03535", + "side": "B", + "time": 1761027714302, + "startPosition": "-466.36609", + "dir": "Close Short", + "closedPnl": "169.81433", + "hash": "0x62fe4d94f9ae54366478042de5069f020327007a94a1730806c6f8e7b8a22e21", + "oid": 207917375719, + "crossed": true, + "fee": "0.801544", + "tid": 926521337548995, + "cloid": "0x00000000000000000000001591000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107974.0", + "sz": "0.00926", + "side": "B", + "time": 1761027714302, + "startPosition": "-466.33074", + "dir": "Close Short", + "closedPnl": "44.483188", + "hash": "0x62fe4d94f9ae54366478042de5069f020327007a94a1730806c6f8e7b8a22e21", + "oid": 207917375719, + "crossed": true, + "fee": "0.209966", + "tid": 635336061923356, + "cloid": "0x00000000000000000000001591000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107975.0", + "sz": "0.00011", + "side": "B", + "time": 1761027714302, + "startPosition": "-466.32148", + "dir": "Close Short", + "closedPnl": "0.528308", + "hash": "0x62fe4d94f9ae54366478042de5069f020327007a94a1730806c6f8e7b8a22e21", + "oid": 207917375719, + "crossed": true, + "fee": "0.002494", + "tid": 990382305843132, + "cloid": "0x00000000000000000000001591000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107975.0", + "sz": "0.00024", + "side": "B", + "time": 1761027714302, + "startPosition": "-466.32137", + "dir": "Close Short", + "closedPnl": "1.152672", + "hash": "0x62fe4d94f9ae54366478042de5069f020327007a94a1730806c6f8e7b8a22e21", + "oid": 207917375719, + "crossed": true, + "fee": "0.005441", + "tid": 937333156572254, + "cloid": "0x00000000000000000000001591000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107976.0", + "sz": "0.00011", + "side": "B", + "time": 1761027714302, + "startPosition": "-466.32113", + "dir": "Close Short", + "closedPnl": "0.528198", + "hash": "0x62fe4d94f9ae54366478042de5069f020327007a94a1730806c6f8e7b8a22e21", + "oid": 207917375719, + "crossed": true, + "fee": "0.002494", + "tid": 1079576438759307, + "cloid": "0x00000000000000000000001591000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107976.0", + "sz": "0.00014", + "side": "B", + "time": 1761027714302, + "startPosition": "-466.32102", + "dir": "Close Short", + "closedPnl": "0.672252", + "hash": "0x62fe4d94f9ae54366478042de5069f020327007a94a1730806c6f8e7b8a22e21", + "oid": 207917375719, + "crossed": true, + "fee": "0.003174", + "tid": 804260855728083, + "cloid": "0x00000000000000000000001591000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107976.0", + "sz": "0.00138", + "side": "B", + "time": 1761027714302, + "startPosition": "-466.32088", + "dir": "Close Short", + "closedPnl": "6.626484", + "hash": "0x62fe4d94f9ae54366478042de5069f020327007a94a1730806c6f8e7b8a22e21", + "oid": 207917375719, + "crossed": true, + "fee": "0.031291", + "tid": 277820309043010, + "cloid": "0x00000000000000000000001591000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107977.0", + "sz": "0.00011", + "side": "B", + "time": 1761027714302, + "startPosition": "-466.3195", + "dir": "Close Short", + "closedPnl": "0.528088", + "hash": "0x62fe4d94f9ae54366478042de5069f020327007a94a1730806c6f8e7b8a22e21", + "oid": 207917375719, + "crossed": true, + "fee": "0.002494", + "tid": 1100744825273110, + "cloid": "0x00000000000000000000001591000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107977.0", + "sz": "0.04586", + "side": "B", + "time": 1761027714302, + "startPosition": "-466.31939", + "dir": "Close Short", + "closedPnl": "220.164688", + "hash": "0x62fe4d94f9ae54366478042de5069f020327007a94a1730806c6f8e7b8a22e21", + "oid": 207917375719, + "crossed": true, + "fee": "1.039883", + "tid": 952527434889205, + "cloid": "0x00000000000000000000001591000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107985.0", + "sz": "0.09256", + "side": "B", + "time": 1761027717532, + "startPosition": "-466.27353", + "dir": "Close Short", + "closedPnl": "443.621568", + "hash": "0x58f1b04580208fd35a6b042de506c60202cc002b1b23aea5fcba5b983f2469bd", + "oid": 207917432200, + "crossed": true, + "fee": "2.098969", + "tid": 512876578095309, + "cloid": "0x00000000000000000000001591000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107985.0", + "sz": "0.09256", + "side": "B", + "time": 1761027720014, + "startPosition": "-466.18097", + "dir": "Close Short", + "closedPnl": "443.621568", + "hash": "0x46b32bb47ffbf79d482c042de506e6020231009a1aff166fea7bd7073effd187", + "oid": 207917460157, + "crossed": true, + "fee": "2.098969", + "tid": 898167879652243, + "cloid": "0x00000000000000000000001591000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108000.0", + "sz": "0.00528", + "side": "B", + "time": 1761027723898, + "startPosition": "-466.08841", + "dir": "Close Short", + "closedPnl": "25.226784", + "hash": "0xad1186865b6954daae8b042de5071d0204ad006bf66c73ac50da31d91a6d2ec5", + "oid": 207917548885, + "crossed": true, + "fee": "0.11975", + "tid": 172885775478086, + "cloid": "0x00000000000000000000001591000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108000.0", + "sz": "0.00772", + "side": "B", + "time": 1761027723898, + "startPosition": "-466.08313", + "dir": "Close Short", + "closedPnl": "36.884616", + "hash": "0xad1186865b6954daae8b042de5071d0204ad006bf66c73ac50da31d91a6d2ec5", + "oid": 207917548885, + "crossed": true, + "fee": "0.175089", + "tid": 2773040849008, + "cloid": "0x00000000000000000000001591000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108000.0", + "sz": "0.001", + "side": "B", + "time": 1761027723898, + "startPosition": "-466.07541", + "dir": "Close Short", + "closedPnl": "4.7778", + "hash": "0xad1186865b6954daae8b042de5071d0204ad006bf66c73ac50da31d91a6d2ec5", + "oid": 207917548885, + "crossed": true, + "fee": "0.022679", + "tid": 181155241805242, + "cloid": "0x00000000000000000000001591000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108000.0", + "sz": "0.01018", + "side": "B", + "time": 1761027723898, + "startPosition": "-466.07441", + "dir": "Close Short", + "closedPnl": "48.638004", + "hash": "0xad1186865b6954daae8b042de5071d0204ad006bf66c73ac50da31d91a6d2ec5", + "oid": 207917548885, + "crossed": true, + "fee": "0.230882", + "tid": 764440483872406, + "cloid": "0x00000000000000000000001591000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108001.0", + "sz": "0.06837", + "side": "B", + "time": 1761027723898, + "startPosition": "-466.06423", + "dir": "Close Short", + "closedPnl": "326.589816", + "hash": "0xad1186865b6954daae8b042de5071d0204ad006bf66c73ac50da31d91a6d2ec5", + "oid": 207917548885, + "crossed": true, + "fee": "1.550645", + "tid": 586672052266299, + "cloid": "0x00000000000000000000001591000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108018.0", + "sz": "0.04205", + "side": "B", + "time": 1761027725574, + "startPosition": "-465.99586", + "dir": "Close Short", + "closedPnl": "200.14959", + "hash": "0x01657f6a5add767802df042de507330205ce004ff5d0954aa52e2abd19d15062", + "oid": 207917582797, + "crossed": true, + "fee": "0.953852", + "tid": 309289957900358, + "cloid": "0x00000000000000000000001591000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108018.0", + "sz": "0.05048", + "side": "B", + "time": 1761027725574, + "startPosition": "-465.95381", + "dir": "Close Short", + "closedPnl": "240.274704", + "hash": "0x01657f6a5add767802df042de507330205ce004ff5d0954aa52e2abd19d15062", + "oid": 207917582797, + "crossed": true, + "fee": "1.145077", + "tid": 43052084832071, + "cloid": "0x00000000000000000000001591000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108023.0", + "sz": "0.00009", + "side": "B", + "time": 1761027727494, + "startPosition": "-465.90333", + "dir": "Close Short", + "closedPnl": "0.427932", + "hash": "0x1067d3c5660e5cad11e1042de507500206a800ab01017b7fb4307f1825023697", + "oid": 207917621267, + "crossed": true, + "fee": "0.002041", + "tid": 1057256735223834, + "cloid": "0x00000000000000000000001591000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108024.0", + "sz": "0.00186", + "side": "B", + "time": 1761027727494, + "startPosition": "-465.90324", + "dir": "Close Short", + "closedPnl": "8.842068", + "hash": "0x1067d3c5660e5cad11e1042de507500206a800ab01017b7fb4307f1825023697", + "oid": 207917621267, + "crossed": true, + "fee": "0.042194", + "tid": 995851910875332, + "cloid": "0x00000000000000000000001591000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108024.0", + "sz": "0.09058", + "side": "B", + "time": 1761027727494, + "startPosition": "-465.90138", + "dir": "Close Short", + "closedPnl": "430.599204", + "hash": "0x1067d3c5660e5cad11e1042de507500206a800ab01017b7fb4307f1825023697", + "oid": 207917621267, + "crossed": true, + "fee": "2.05481", + "tid": 620443670640473, + "cloid": "0x00000000000000000000001591000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108044.0", + "sz": "0.00186", + "side": "B", + "time": 1761027730821, + "startPosition": "-465.8108", + "dir": "Close Short", + "closedPnl": "8.804868", + "hash": "0x8af21a64e0204bbe8c6b042de50777020797004a7b236a902ebac5b79f2425a9", + "oid": 207917688736, + "crossed": true, + "fee": "0.042201", + "tid": 229177900062383, + "cloid": "0x00000000000000000000001591000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108044.0", + "sz": "0.00011", + "side": "B", + "time": 1761027730821, + "startPosition": "-465.80894", + "dir": "Close Short", + "closedPnl": "0.520718", + "hash": "0x8af21a64e0204bbe8c6b042de50777020797004a7b236a902ebac5b79f2425a9", + "oid": 207917688736, + "crossed": true, + "fee": "0.002495", + "tid": 57008686780385, + "cloid": "0x00000000000000000000001591000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108044.0", + "sz": "0.09055", + "side": "B", + "time": 1761027730821, + "startPosition": "-465.80883", + "dir": "Close Short", + "closedPnl": "428.64559", + "hash": "0x8af21a64e0204bbe8c6b042de50777020797004a7b236a902ebac5b79f2425a9", + "oid": 207917688736, + "crossed": true, + "fee": "2.05451", + "tid": 866428590225611, + "cloid": "0x00000000000000000000001591000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108050.0", + "sz": "0.0925", + "side": "B", + "time": 1761027732473, + "startPosition": "-465.71828", + "dir": "Close Short", + "closedPnl": "437.3215", + "hash": "0x55acfe65c5e881f75726042de5078c020d2a004b60eba0c9f975a9b884ec5be1", + "oid": 207917726647, + "crossed": true, + "fee": "2.098871", + "tid": 963929330931394, + "cloid": "0x00000000000000000000001591000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108050.0", + "sz": "0.0925", + "side": "B", + "time": 1761027734537, + "startPosition": "-465.62578", + "dir": "Close Short", + "closedPnl": "437.3215", + "hash": "0x2c07d6241316663e2d81042de507a40207fd0009ae198510cfd08176d21a4028", + "oid": 207917764580, + "crossed": true, + "fee": "2.098871", + "tid": 645252020099995, + "cloid": "0x00000000000000000000001591000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108050.0", + "sz": "0.0925", + "side": "B", + "time": 1761027741707, + "startPosition": "-465.53328", + "dir": "Close Short", + "closedPnl": "437.3215", + "hash": "0xb4f38c7e17fcc5edb66d042de508050203d60063b2ffe4bf58bc37d0d6f09fd8", + "oid": 207917860799, + "crossed": true, + "fee": "2.098871", + "tid": 39418872644356, + "cloid": "0x00000000000000000000001591000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108044.0", + "sz": "0.05255", + "side": "B", + "time": 1761027743544, + "startPosition": "-465.44078", + "dir": "Close Short", + "closedPnl": "248.76119", + "hash": "0xaa55b3522167c0efabcf042de5081c0204d20037bc6adfc14e1e5ea4e06b9ada", + "oid": 207917899440, + "crossed": true, + "fee": "1.192319", + "tid": 838702165879154, + "cloid": "0x00000000000000000000001591000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108044.0", + "sz": "0.03997", + "side": "B", + "time": 1761027743544, + "startPosition": "-465.38823", + "dir": "Close Short", + "closedPnl": "189.209986", + "hash": "0xaa55b3522167c0efabcf042de5081c0204d20037bc6adfc14e1e5ea4e06b9ada", + "oid": 207917899440, + "crossed": true, + "fee": "0.906888", + "tid": 289980036219800, + "cloid": "0x00000000000000000000001591000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108011.0", + "sz": "0.09254", + "side": "B", + "time": 1761027745130, + "startPosition": "-465.34826", + "dir": "Close Short", + "closedPnl": "441.119672", + "hash": "0x6fcf6547558190827149042de5082f0205c5002cf084af541398109a14856a6d", + "oid": 207917931339, + "crossed": true, + "fee": "2.09902", + "tid": 867180561497922, + "cloid": "0x00000000000000000000001591000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108005.0", + "sz": "0.09255", + "side": "B", + "time": 1761027747207, + "startPosition": "-465.25572", + "dir": "Close Short", + "closedPnl": "441.72264", + "hash": "0xe478c8a263406dd5e5f2042de5084c0203b00087fe438ca7884173f5224447c0", + "oid": 207917976168, + "crossed": true, + "fee": "2.099131", + "tid": 948415383436533, + "cloid": "0x00000000000000000000001591000084", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108004.0", + "sz": "0.00865", + "side": "B", + "time": 1761027748619, + "startPosition": "-465.16317", + "dir": "Close Short", + "closedPnl": "41.29337", + "hash": "0x66a2016f60186e89681b042de5085f0202660054fb1b8d5b0a6aacc21f1c4874", + "oid": 207918001250, + "crossed": true, + "fee": "0.196189", + "tid": 697641958653052, + "cloid": "0x00000000000000000000001591000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108004.0", + "sz": "0.0696", + "side": "B", + "time": 1761027748619, + "startPosition": "-465.15452", + "dir": "Close Short", + "closedPnl": "332.25648", + "hash": "0x66a2016f60186e89681b042de5085f0202660054fb1b8d5b0a6aacc21f1c4874", + "oid": 207918001250, + "crossed": true, + "fee": "1.578586", + "tid": 624340585181868, + "cloid": "0x00000000000000000000001591000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108004.0", + "sz": "0.0143", + "side": "B", + "time": 1761027748619, + "startPosition": "-465.08492", + "dir": "Close Short", + "closedPnl": "68.26534", + "hash": "0x66a2016f60186e89681b042de5085f0202660054fb1b8d5b0a6aacc21f1c4874", + "oid": 207918001250, + "crossed": true, + "fee": "0.324336", + "tid": 593624145645310, + "cloid": "0x00000000000000000000001591000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108004.0", + "sz": "0.09255", + "side": "B", + "time": 1761027752111, + "startPosition": "-465.07062", + "dir": "Close Short", + "closedPnl": "441.81519", + "hash": "0x3527638beece39c436a1042de5089102030f007189c15896d8f00edeadc213ae", + "oid": 207918043123, + "crossed": true, + "fee": "2.099111", + "tid": 128495860804942, + "cloid": "0x00000000000000000000001591000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108001.0", + "sz": "0.04626", + "side": "B", + "time": 1761027755771, + "startPosition": "-464.97807", + "dir": "Close Short", + "closedPnl": "220.974768", + "hash": "0x1087bce3a07fe7001201042de508c00202b700c93b7305d2b45068365f73c0ea", + "oid": 207918090364, + "crossed": true, + "fee": "1.049186", + "tid": 1117815343893238, + "cloid": "0x00000000000000000000001591000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108001.0", + "sz": "0.04454", + "side": "B", + "time": 1761027755771, + "startPosition": "-464.93181", + "dir": "Close Short", + "closedPnl": "212.758672", + "hash": "0x1087bce3a07fe7001201042de508c00202b700c93b7305d2b45068365f73c0ea", + "oid": 207918090364, + "crossed": true, + "fee": "1.010176", + "tid": 548496393291672, + "cloid": "0x00000000000000000000001591000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108001.0", + "sz": "0.00175", + "side": "B", + "time": 1761027755771, + "startPosition": "-464.88727", + "dir": "Close Short", + "closedPnl": "8.3594", + "hash": "0x1087bce3a07fe7001201042de508c00202b700c93b7305d2b45068365f73c0ea", + "oid": 207918090364, + "crossed": true, + "fee": "0.03969", + "tid": 388074269411460, + "cloid": "0x00000000000000000000001591000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108001.0", + "sz": "0.01337", + "side": "B", + "time": 1761027756940, + "startPosition": "-464.88552", + "dir": "Close Short", + "closedPnl": "63.865816", + "hash": "0x2b1e9e08f175cf022c98042de508ce02018100ee8c78edd4cee7495bb079a8ec", + "oid": 207918099377, + "crossed": true, + "fee": "0.303234", + "tid": 556571927983398, + "cloid": "0x00000000000000000000001591000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108001.0", + "sz": "0.07919", + "side": "B", + "time": 1761027756940, + "startPosition": "-464.87215", + "dir": "Close Short", + "closedPnl": "378.274792", + "hash": "0x2b1e9e08f175cf022c98042de508ce02018100ee8c78edd4cee7495bb079a8ec", + "oid": 207918099377, + "crossed": true, + "fee": "1.796045", + "tid": 308729769488526, + "cloid": "0x00000000000000000000001591000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108001.0", + "sz": "0.09256", + "side": "B", + "time": 1761027761965, + "startPosition": "-464.79296", + "dir": "Close Short", + "closedPnl": "442.140608", + "hash": "0x3af56c81efc7d49e3c6f042de5091202015a00678acaf370debe17d4aecbae88", + "oid": 207918133508, + "crossed": true, + "fee": "2.09928", + "tid": 823095822789363, + "cloid": "0x00000000000000000000001591000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108003.0", + "sz": "0.09256", + "side": "B", + "time": 1761027767134, + "startPosition": "-464.7004", + "dir": "Close Short", + "closedPnl": "441.955488", + "hash": "0xab60c8a936893b2eacda042de50952020366008ed18c5a004f2973fbf58d1519", + "oid": 207918184721, + "crossed": true, + "fee": "2.099319", + "tid": 982153872274937, + "cloid": "0x00000000000000000000001591000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108005.0", + "sz": "0.09255", + "side": "B", + "time": 1761027772627, + "startPosition": "-464.60784", + "dir": "Close Short", + "closedPnl": "441.72264", + "hash": "0x18fbee8c00eb7edf1a75042de50993020df700719bee9db1bcc499debfef58c9", + "oid": 207918249732, + "crossed": true, + "fee": "2.099131", + "tid": 1124020734733530, + "cloid": "0x00000000000000000000001591000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108038.0", + "sz": "0.09252", + "side": "B", + "time": 1761027773983, + "startPosition": "-464.51529", + "dir": "Close Short", + "closedPnl": "438.526296", + "hash": "0xf1c66e376ab17bcaf340042de509a302094c001d05b49a9d958f198a29b555b5", + "oid": 207918285753, + "crossed": true, + "fee": "2.099091", + "tid": 151593959248825, + "cloid": "0x00000000000000000000001591000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108051.0", + "sz": "0.0106", + "side": "B", + "time": 1761027776118, + "startPosition": "-464.42277", + "dir": "Close Short", + "closedPnl": "50.10408", + "hash": "0xbf5a8d475a56c4cbc0d4042de509be02088f002cf559e39d6323389a195a9eb6", + "oid": 207918332147, + "crossed": true, + "fee": "0.240521", + "tid": 446718497581674, + "cloid": "0x00000000000000000000001591000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108052.0", + "sz": "0.02475", + "side": "B", + "time": 1761027776118, + "startPosition": "-464.41217", + "dir": "Close Short", + "closedPnl": "116.96355", + "hash": "0xbf5a8d475a56c4cbc0d4042de509be02088f002cf559e39d6323389a195a9eb6", + "oid": 207918332147, + "crossed": true, + "fee": "0.5616", + "tid": 1114529764190359, + "cloid": "0x00000000000000000000001591000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108055.0", + "sz": "0.05715", + "side": "B", + "time": 1761027776118, + "startPosition": "-464.38742", + "dir": "Close Short", + "closedPnl": "269.90802", + "hash": "0xbf5a8d475a56c4cbc0d4042de509be02088f002cf559e39d6323389a195a9eb6", + "oid": 207918332147, + "crossed": true, + "fee": "1.296822", + "tid": 1110401130123793, + "cloid": "0x00000000000000000000001591000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108058.0", + "sz": "0.09249", + "side": "B", + "time": 1761027778902, + "startPosition": "-464.33027", + "dir": "Close Short", + "closedPnl": "436.534302", + "hash": "0x2e4501f33c7e77f62fbe042de509e202114d00d8d77196c8d20dad45fb7251e0", + "oid": 207918371606, + "crossed": true, + "fee": "2.098799", + "tid": 1101609538279257, + "cloid": "0x00000000000000000000001591000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108078.0", + "sz": "0.09246", + "side": "B", + "time": 1761027781011, + "startPosition": "-464.23778", + "dir": "Close Short", + "closedPnl": "434.543508", + "hash": "0x20e7ca079b5a76ee2261042de509fd020fa400ed365d95c0c4b0755a5a5e50d8", + "oid": 207918418464, + "crossed": true, + "fee": "2.098507", + "tid": 546613091802752, + "cloid": "0x00000000000000000000001591000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108153.0", + "sz": "0.08393", + "side": "B", + "time": 1761027782710, + "startPosition": "-464.14532", + "dir": "Close Short", + "closedPnl": "388.159464", + "hash": "0x5fd11d9d93c9eb4a614a042de50a130206d500832ecd0a1c0399c8f052cdc535", + "oid": 207918458281, + "crossed": true, + "fee": "1.906229", + "tid": 997073141021752, + "cloid": "0x00000000000000000000001591000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108154.0", + "sz": "0.00852", + "side": "B", + "time": 1761027782710, + "startPosition": "-464.06139", + "dir": "Close Short", + "closedPnl": "39.394776", + "hash": "0x5fd11d9d93c9eb4a614a042de50a130206d500832ecd0a1c0399c8f052cdc535", + "oid": 207918458281, + "crossed": true, + "fee": "0.193509", + "tid": 6062141271701, + "cloid": "0x00000000000000000000001591000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108136.0", + "sz": "0.09243", + "side": "B", + "time": 1761027784570, + "startPosition": "-464.05287", + "dir": "Close Short", + "closedPnl": "429.041574", + "hash": "0x5c27e7d6a3ae3bfa5da1042de50a2c02064600bc3ea15accfff0932962a215e4", + "oid": 207918490272, + "crossed": true, + "fee": "2.098952", + "tid": 212962618010069, + "cloid": "0x00000000000000000000001591000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108115.0", + "sz": "0.09245", + "side": "B", + "time": 1761027786083, + "startPosition": "-463.96044", + "dir": "Close Short", + "closedPnl": "431.07586", + "hash": "0x6502851b7297aacd667c042de50a4202071f00010d9ac99f08cb306e319b84b8", + "oid": 207918519647, + "crossed": true, + "fee": "2.098998", + "tid": 40241438983157, + "cloid": "0x00000000000000000000001591000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108106.0", + "sz": "0.03239", + "side": "B", + "time": 1761027787412, + "startPosition": "-463.86799", + "dir": "Close Short", + "closedPnl": "151.319602", + "hash": "0x30f93754f08ac1e33272042de50a510204cb003a8b8de0b5d4c1e2a7af8e9bcd", + "oid": 207918542229, + "crossed": true, + "fee": "0.735326", + "tid": 44852323451993, + "cloid": "0x00000000000000000000001591000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108106.0", + "sz": "0.06008", + "side": "B", + "time": 1761027787412, + "startPosition": "-463.8356", + "dir": "Close Short", + "closedPnl": "280.681744", + "hash": "0x30f93754f08ac1e33272042de50a510204cb003a8b8de0b5d4c1e2a7af8e9bcd", + "oid": 207918542229, + "crossed": true, + "fee": "1.363951", + "tid": 420121352555849, + "cloid": "0x00000000000000000000001591000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108097.0", + "sz": "0.03966", + "side": "B", + "time": 1761027794661, + "startPosition": "-463.77552", + "dir": "Close Short", + "closedPnl": "185.640528", + "hash": "0xd7c694d8cc0786b4d940042de50aab02040100be670aa5867b8f402b8b0b609f", + "oid": 207918619209, + "crossed": true, + "fee": "0.900296", + "tid": 371744531361261, + "cloid": "0x00000000000000000000001591000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108097.0", + "sz": "0.04757", + "side": "B", + "time": 1761027794661, + "startPosition": "-463.73586", + "dir": "Close Short", + "closedPnl": "222.665656", + "hash": "0xd7c694d8cc0786b4d940042de50aab02040100be670aa5867b8f402b8b0b609f", + "oid": 207918619209, + "crossed": true, + "fee": "1.079856", + "tid": 584421456905000, + "cloid": "0x00000000000000000000001591000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108097.0", + "sz": "0.00524", + "side": "B", + "time": 1761027794661, + "startPosition": "-463.68829", + "dir": "Close Short", + "closedPnl": "24.527392", + "hash": "0xd7c694d8cc0786b4d940042de50aab02040100be670aa5867b8f402b8b0b609f", + "oid": 207918619209, + "crossed": true, + "fee": "0.118949", + "tid": 136833283752819, + "cloid": "0x00000000000000000000001591000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108109.0", + "sz": "0.09248", + "side": "B", + "time": 1761027800348, + "startPosition": "-463.68305", + "dir": "Close Short", + "closedPnl": "431.770624", + "hash": "0x9ceb3fdc14fa58ef9e64042de50af9020a6200c1affd77c140b3eb2ed3fe32da", + "oid": 207918712782, + "crossed": true, + "fee": "2.099563", + "tid": 681657655125264, + "cloid": "0x00000000000000000000001591000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108123.0", + "sz": "0.09246", + "side": "B", + "time": 1761027803113, + "startPosition": "-463.59057", + "dir": "Close Short", + "closedPnl": "430.382808", + "hash": "0x12ba8eb6a736cc2a1434042de50b1c020537009c4239eafcb6833a09663aa614", + "oid": 207918761292, + "crossed": true, + "fee": "2.099381", + "tid": 88694918464179, + "cloid": "0x00000000000000000000001591000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108116.0", + "sz": "0.0363", + "side": "B", + "time": 1761027806225, + "startPosition": "-463.49811", + "dir": "Close Short", + "closedPnl": "169.22334", + "hash": "0x054ee16ec86560a506c8042de50b3f0203d3005463687f77a9178cc187693a8f", + "oid": 207918793576, + "crossed": true, + "fee": "0.824168", + "tid": 953554787477877, + "cloid": "0x00000000000000000000001591000103", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108116.0", + "sz": "0.05615", + "side": "B", + "time": 1761027806225, + "startPosition": "-463.46181", + "dir": "Close Short", + "closedPnl": "261.76007", + "hash": "0x054ee16ec86560a506c8042de50b3f0203d3005463687f77a9178cc187693a8f", + "oid": 207918793576, + "crossed": true, + "fee": "1.274849", + "tid": 147093593617496, + "cloid": "0x00000000000000000000001591000103", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108123.0", + "sz": "0.09245", + "side": "B", + "time": 1761027812698, + "startPosition": "-463.40566", + "dir": "Close Short", + "closedPnl": "430.33626", + "hash": "0x848ba0d85e2092bc8605042de50b930204eb00bdf923b18e28544c2b1d246ca7", + "oid": 207918890071, + "crossed": true, + "fee": "2.099153", + "tid": 726848639321444, + "cloid": "0x00000000000000000000001591000104", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108123.0", + "sz": "0.09244", + "side": "B", + "time": 1761027814693, + "startPosition": "-463.31321", + "dir": "Close Short", + "closedPnl": "430.289712", + "hash": "0x7e41b041c5ca3df27fbb042de50bab0204fd002760cd5cc4220a5b9484ce17dd", + "oid": 207918919359, + "crossed": true, + "fee": "2.098926", + "tid": 1025559044194652, + "cloid": "0x00000000000000000000001591000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108123.0", + "sz": "0.09245", + "side": "B", + "time": 1761027816181, + "startPosition": "-463.22077", + "dir": "Close Short", + "closedPnl": "430.33626", + "hash": "0x95537021d92847c996cd042de50bbe0204040007742b669b391c1b74982c21b4", + "oid": 207918941045, + "crossed": true, + "fee": "2.099153", + "tid": 263902562295400, + "cloid": "0x00000000000000000000001591000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108061.0", + "sz": "0.02577", + "side": "B", + "time": 1761027817908, + "startPosition": "-463.12832", + "dir": "Close Short", + "closedPnl": "121.551936", + "hash": "0x6f89c299eb40212f7103042de50bd1020dd7007f8643400113526decaa43fb1a", + "oid": 207918979317, + "crossed": true, + "fee": "0.584793", + "tid": 68798250660374, + "cloid": "0x00000000000000000000001591000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108089.0", + "sz": "0.04383", + "side": "B", + "time": 1761027817908, + "startPosition": "-463.10255", + "dir": "Close Short", + "closedPnl": "205.510104", + "hash": "0x6f89c299eb40212f7103042de50bd1020dd7007f8643400113526decaa43fb1a", + "oid": 207918979317, + "crossed": true, + "fee": "0.994883", + "tid": 1021826653849869, + "cloid": "0x00000000000000000000001591000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108089.0", + "sz": "0.02289", + "side": "B", + "time": 1761027817908, + "startPosition": "-463.05872", + "dir": "Close Short", + "closedPnl": "107.326632", + "hash": "0x6f89c299eb40212f7103042de50bd1020dd7007f8643400113526decaa43fb1a", + "oid": 207918979317, + "crossed": true, + "fee": "0.519573", + "tid": 539261569413879, + "cloid": "0x00000000000000000000001591000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108037.0", + "sz": "0.09252", + "side": "B", + "time": 1761027820521, + "startPosition": "-463.03583", + "dir": "Close Short", + "closedPnl": "438.618816", + "hash": "0xc22cefe0c8e2f46bc3a6042de50bf202045c00c663e6133d65f59b3387e6ce56", + "oid": 207919027661, + "crossed": true, + "fee": "2.099072", + "tid": 370187172349432, + "cloid": "0x00000000000000000000001591000108", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108037.0", + "sz": "0.09252", + "side": "B", + "time": 1761027822122, + "startPosition": "-462.94331", + "dir": "Close Short", + "closedPnl": "438.618816", + "hash": "0xc132ea45bebf5512c2ac042de50c040202e7002b59b273e464fb95987db32efd", + "oid": 207919056760, + "crossed": true, + "fee": "2.099072", + "tid": 401300840093528, + "cloid": "0x00000000000000000000001591000109", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108021.0", + "sz": "0.09253", + "side": "B", + "time": 1761027823692, + "startPosition": "-462.85079", + "dir": "Close Short", + "closedPnl": "440.146704", + "hash": "0x27a2eaa6c3524d30291c042de50c19020a98008c5e556c02cb6b95f98256271a", + "oid": 207919084334, + "crossed": true, + "fee": "2.098988", + "tid": 220957423055095, + "cloid": "0x00000000000000000000001591000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108004.0", + "sz": "0.09254", + "side": "B", + "time": 1761027826252, + "startPosition": "-462.75826", + "dir": "Close Short", + "closedPnl": "441.767452", + "hash": "0x3000d99693ce89b8317a042de50c3802035c007c2ec1a88ad3c984e952c263a2", + "oid": 207919118571, + "crossed": true, + "fee": "2.098884", + "tid": 446037560576644, + "cloid": "0x00000000000000000000001591000111", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108001.0", + "sz": "0.05103", + "side": "B", + "time": 1761027827621, + "startPosition": "-462.66572", + "dir": "Close Short", + "closedPnl": "243.760104", + "hash": "0x644f6269b1b5b75265c9042de50c4b0203f4004f4cb8d62408180dbc70b9913d", + "oid": 207919140196, + "crossed": true, + "fee": "1.157371", + "tid": 712695530294860, + "cloid": "0x00000000000000000000001591000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108001.0", + "sz": "0.03971", + "side": "B", + "time": 1761027827621, + "startPosition": "-462.61469", + "dir": "Close Short", + "closedPnl": "189.686728", + "hash": "0x644f6269b1b5b75265c9042de50c4b0203f4004f4cb8d62408180dbc70b9913d", + "oid": 207919140196, + "crossed": true, + "fee": "0.900631", + "tid": 654836327564940, + "cloid": "0x00000000000000000000001591000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108001.0", + "sz": "0.00181", + "side": "B", + "time": 1761027827621, + "startPosition": "-462.57498", + "dir": "Close Short", + "closedPnl": "8.646008", + "hash": "0x644f6269b1b5b75265c9042de50c4b0203f4004f4cb8d62408180dbc70b9913d", + "oid": 207919140196, + "crossed": true, + "fee": "0.041051", + "tid": 832373426728771, + "cloid": "0x00000000000000000000001591000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108001.0", + "sz": "0.09256", + "side": "B", + "time": 1761027833774, + "startPosition": "-462.57317", + "dir": "Close Short", + "closedPnl": "442.140608", + "hash": "0x9e81511c231213a59ffb042de50ca30201c20001be1532774249fc6ee215ed90", + "oid": 207919200280, + "crossed": true, + "fee": "2.09928", + "tid": 52949992283320, + "cloid": "0x00000000000000000000001591000113", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108001.0", + "sz": "0.03599", + "side": "B", + "time": 1761027835596, + "startPosition": "-462.48061", + "dir": "Close Short", + "closedPnl": "171.917032", + "hash": "0x3f4c8306d969e10740c6042de50cbd02036d00ec746cffd9e3152e59986dbaf1", + "oid": 207919222278, + "crossed": true, + "fee": "0.81626", + "tid": 78130759981214, + "cloid": "0x00000000000000000000001591000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108001.0", + "sz": "0.0001", + "side": "B", + "time": 1761027835596, + "startPosition": "-462.44462", + "dir": "Close Short", + "closedPnl": "0.47768", + "hash": "0x3f4c8306d969e10740c6042de50cbd02036d00ec746cffd9e3152e59986dbaf1", + "oid": 207919222278, + "crossed": true, + "fee": "0.002268", + "tid": 740451553117819, + "cloid": "0x00000000000000000000001591000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108004.0", + "sz": "0.05646", + "side": "B", + "time": 1761027835596, + "startPosition": "-462.44452", + "dir": "Close Short", + "closedPnl": "269.528748", + "hash": "0x3f4c8306d969e10740c6042de50cbd02036d00ec746cffd9e3152e59986dbaf1", + "oid": 207919222278, + "crossed": true, + "fee": "1.28056", + "tid": 493070426562863, + "cloid": "0x00000000000000000000001591000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108012.0", + "sz": "0.00001", + "side": "B", + "time": 1761027839012, + "startPosition": "-462.38806", + "dir": "Close Short", + "closedPnl": "0.047658", + "hash": "0x8db4b7830c1bfbbc8f2e042de50ce702067e0068a71f1a8e317d62d5cb1fd5a7", + "oid": 207919284682, + "crossed": true, + "fee": "0.000226", + "tid": 386741881899994, + "cloid": "0x00000000000000000000001591000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108013.0", + "sz": "0.00011", + "side": "B", + "time": 1761027839012, + "startPosition": "-462.38805", + "dir": "Close Short", + "closedPnl": "0.524128", + "hash": "0x8db4b7830c1bfbbc8f2e042de50ce702067e0068a71f1a8e317d62d5cb1fd5a7", + "oid": 207919284682, + "crossed": true, + "fee": "0.002495", + "tid": 724147055475228, + "cloid": "0x00000000000000000000001591000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108014.0", + "sz": "0.00011", + "side": "B", + "time": 1761027839012, + "startPosition": "-462.38794", + "dir": "Close Short", + "closedPnl": "0.524018", + "hash": "0x8db4b7830c1bfbbc8f2e042de50ce702067e0068a71f1a8e317d62d5cb1fd5a7", + "oid": 207919284682, + "crossed": true, + "fee": "0.002495", + "tid": 572380324297845, + "cloid": "0x00000000000000000000001591000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108014.0", + "sz": "0.03599", + "side": "B", + "time": 1761027839012, + "startPosition": "-462.38783", + "dir": "Close Short", + "closedPnl": "171.449162", + "hash": "0x8db4b7830c1bfbbc8f2e042de50ce702067e0068a71f1a8e317d62d5cb1fd5a7", + "oid": 207919284682, + "crossed": true, + "fee": "0.816359", + "tid": 338612841561036, + "cloid": "0x00000000000000000000001591000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108015.0", + "sz": "0.00011", + "side": "B", + "time": 1761027839012, + "startPosition": "-462.35184", + "dir": "Close Short", + "closedPnl": "0.523908", + "hash": "0x8db4b7830c1bfbbc8f2e042de50ce702067e0068a71f1a8e317d62d5cb1fd5a7", + "oid": 207919284682, + "crossed": true, + "fee": "0.002495", + "tid": 307339320116558, + "cloid": "0x00000000000000000000001591000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108016.0", + "sz": "0.00011", + "side": "B", + "time": 1761027839012, + "startPosition": "-462.35173", + "dir": "Close Short", + "closedPnl": "0.523798", + "hash": "0x8db4b7830c1bfbbc8f2e042de50ce702067e0068a71f1a8e317d62d5cb1fd5a7", + "oid": 207919284682, + "crossed": true, + "fee": "0.002495", + "tid": 105615456206191, + "cloid": "0x00000000000000000000001591000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108017.0", + "sz": "0.00011", + "side": "B", + "time": 1761027839012, + "startPosition": "-462.35162", + "dir": "Close Short", + "closedPnl": "0.523688", + "hash": "0x8db4b7830c1bfbbc8f2e042de50ce702067e0068a71f1a8e317d62d5cb1fd5a7", + "oid": 207919284682, + "crossed": true, + "fee": "0.002495", + "tid": 500312243280202, + "cloid": "0x00000000000000000000001591000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108018.0", + "sz": "0.00011", + "side": "B", + "time": 1761027839012, + "startPosition": "-462.35151", + "dir": "Close Short", + "closedPnl": "0.523578", + "hash": "0x8db4b7830c1bfbbc8f2e042de50ce702067e0068a71f1a8e317d62d5cb1fd5a7", + "oid": 207919284682, + "crossed": true, + "fee": "0.002495", + "tid": 435630509535428, + "cloid": "0x00000000000000000000001591000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108019.0", + "sz": "0.00011", + "side": "B", + "time": 1761027839012, + "startPosition": "-462.3514", + "dir": "Close Short", + "closedPnl": "0.523468", + "hash": "0x8db4b7830c1bfbbc8f2e042de50ce702067e0068a71f1a8e317d62d5cb1fd5a7", + "oid": 207919284682, + "crossed": true, + "fee": "0.002495", + "tid": 444898905974778, + "cloid": "0x00000000000000000000001591000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108020.0", + "sz": "0.00011", + "side": "B", + "time": 1761027839012, + "startPosition": "-462.35129", + "dir": "Close Short", + "closedPnl": "0.523358", + "hash": "0x8db4b7830c1bfbbc8f2e042de50ce702067e0068a71f1a8e317d62d5cb1fd5a7", + "oid": 207919284682, + "crossed": true, + "fee": "0.002495", + "tid": 960834644899376, + "cloid": "0x00000000000000000000001591000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108021.0", + "sz": "0.00011", + "side": "B", + "time": 1761027839012, + "startPosition": "-462.35118", + "dir": "Close Short", + "closedPnl": "0.523248", + "hash": "0x8db4b7830c1bfbbc8f2e042de50ce702067e0068a71f1a8e317d62d5cb1fd5a7", + "oid": 207919284682, + "crossed": true, + "fee": "0.002495", + "tid": 698796493394656, + "cloid": "0x00000000000000000000001591000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108022.0", + "sz": "0.00011", + "side": "B", + "time": 1761027839012, + "startPosition": "-462.35107", + "dir": "Close Short", + "closedPnl": "0.523138", + "hash": "0x8db4b7830c1bfbbc8f2e042de50ce702067e0068a71f1a8e317d62d5cb1fd5a7", + "oid": 207919284682, + "crossed": true, + "fee": "0.002495", + "tid": 107163691392292, + "cloid": "0x00000000000000000000001591000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108023.0", + "sz": "0.00011", + "side": "B", + "time": 1761027839012, + "startPosition": "-462.35096", + "dir": "Close Short", + "closedPnl": "0.523028", + "hash": "0x8db4b7830c1bfbbc8f2e042de50ce702067e0068a71f1a8e317d62d5cb1fd5a7", + "oid": 207919284682, + "crossed": true, + "fee": "0.002495", + "tid": 682938196502989, + "cloid": "0x00000000000000000000001591000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108024.0", + "sz": "0.00011", + "side": "B", + "time": 1761027839012, + "startPosition": "-462.35085", + "dir": "Close Short", + "closedPnl": "0.522918", + "hash": "0x8db4b7830c1bfbbc8f2e042de50ce702067e0068a71f1a8e317d62d5cb1fd5a7", + "oid": 207919284682, + "crossed": true, + "fee": "0.002495", + "tid": 263372421092453, + "cloid": "0x00000000000000000000001591000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108024.0", + "sz": "0.05522", + "side": "B", + "time": 1761027839012, + "startPosition": "-462.35074", + "dir": "Close Short", + "closedPnl": "262.504836", + "hash": "0x8db4b7830c1bfbbc8f2e042de50ce702067e0068a71f1a8e317d62d5cb1fd5a7", + "oid": 207919284682, + "crossed": true, + "fee": "1.252667", + "tid": 686607912742790, + "cloid": "0x00000000000000000000001591000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108038.0", + "sz": "0.09251", + "side": "B", + "time": 1761027840723, + "startPosition": "-462.29552", + "dir": "Close Short", + "closedPnl": "438.478898", + "hash": "0xd4c622d5211fa719d63f042de50cfd020d6000babc12c5eb788ece27e0138104", + "oid": 207919322021, + "crossed": true, + "fee": "2.098865", + "tid": 276342443846545, + "cloid": "0x00000000000000000000001591000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108007.0", + "sz": "0.09255", + "side": "B", + "time": 1761027848106, + "startPosition": "-462.20301", + "dir": "Close Short", + "closedPnl": "441.53754", + "hash": "0x66fe44fd0f89c4426878042de50d59020f1300e2aa8ce3140ac6f04fce8d9e2d", + "oid": 207919423244, + "crossed": true, + "fee": "2.09917", + "tid": 1051393025269927, + "cloid": "0x00000000000000000000001591000117", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107991.0", + "sz": "0.05322", + "side": "B", + "time": 1761027849972, + "startPosition": "-462.11046", + "dir": "Close Short", + "closedPnl": "254.753496", + "hash": "0xf6a971d0f0a6c060f823042de50d6d02099100b68ba9df339a721d23afaa9a4b", + "oid": 207919449992, + "crossed": true, + "fee": "1.206929", + "tid": 532027608287029, + "cloid": "0x00000000000000000000001591000118", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107991.0", + "sz": "0.0029", + "side": "B", + "time": 1761027849972, + "startPosition": "-462.05724", + "dir": "Close Short", + "closedPnl": "13.88172", + "hash": "0xf6a971d0f0a6c060f823042de50d6d02099100b68ba9df339a721d23afaa9a4b", + "oid": 207919449992, + "crossed": true, + "fee": "0.065766", + "tid": 878057685282102, + "cloid": "0x00000000000000000000001591000118", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107991.0", + "sz": "0.03644", + "side": "B", + "time": 1761027849972, + "startPosition": "-462.05434", + "dir": "Close Short", + "closedPnl": "174.430992", + "hash": "0xf6a971d0f0a6c060f823042de50d6d02099100b68ba9df339a721d23afaa9a4b", + "oid": 207919449992, + "crossed": true, + "fee": "0.82639", + "tid": 629121749226938, + "cloid": "0x00000000000000000000001591000118", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107989.0", + "sz": "0.09256", + "side": "B", + "time": 1761027857768, + "startPosition": "-462.0179", + "dir": "Close Short", + "closedPnl": "443.251328", + "hash": "0xe2f986c04c094d6fe473042de50dc90207eb00a5e70c6c4186c232130b0d275a", + "oid": 207919522796, + "crossed": true, + "fee": "2.099046", + "tid": 1105922708796563, + "cloid": "0x00000000000000000000001591000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107989.0", + "sz": "0.09256", + "side": "B", + "time": 1761027859052, + "startPosition": "-461.92534", + "dir": "Close Short", + "closedPnl": "443.251328", + "hash": "0xc570bcfd60432dc1c6ea042de50ddb0205f500e2fb464c93693968501f4707ac", + "oid": 207919538071, + "crossed": true, + "fee": "2.099046", + "tid": 39572475208894, + "cloid": "0x00000000000000000000001591000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107989.0", + "sz": "0.09256", + "side": "B", + "time": 1761027860391, + "startPosition": "-461.83278", + "dir": "Close Short", + "closedPnl": "443.251328", + "hash": "0xd7debbabb81031d8d958042de50de90206b40091531350aa7ba766fe77140bc3", + "oid": 207919550020, + "crossed": true, + "fee": "2.099046", + "tid": 531874331792582, + "cloid": "0x00000000000000000000001591000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107980.0", + "sz": "0.09256", + "side": "B", + "time": 1761027870646, + "startPosition": "-461.74022", + "dir": "Close Short", + "closedPnl": "444.084368", + "hash": "0xbaf0fa9bba8bcc8dbc6a042de50e720204060081558eeb5f5eb9a5ee798fa678", + "oid": 207919624489, + "crossed": true, + "fee": "2.098872", + "tid": 798840782405467, + "cloid": "0x00000000000000000000001591000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107988.0", + "sz": "0.03599", + "side": "B", + "time": 1761027878941, + "startPosition": "-461.64766", + "dir": "Close Short", + "closedPnl": "172.384902", + "hash": "0xd6fc4953dbc251d7d876042de50edf020259003976c570a97ac4f4a69ac62bc2", + "oid": 207919682318, + "crossed": true, + "fee": "0.816162", + "tid": 1093292596847184, + "cloid": "0x00000000000000000000001591000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107989.0", + "sz": "0.00011", + "side": "B", + "time": 1761027878941, + "startPosition": "-461.61167", + "dir": "Close Short", + "closedPnl": "0.526768", + "hash": "0xd6fc4953dbc251d7d876042de50edf020259003976c570a97ac4f4a69ac62bc2", + "oid": 207919682318, + "crossed": true, + "fee": "0.002494", + "tid": 1020470922417800, + "cloid": "0x00000000000000000000001591000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107990.0", + "sz": "0.00011", + "side": "B", + "time": 1761027878941, + "startPosition": "-461.61156", + "dir": "Close Short", + "closedPnl": "0.526658", + "hash": "0xd6fc4953dbc251d7d876042de50edf020259003976c570a97ac4f4a69ac62bc2", + "oid": 207919682318, + "crossed": true, + "fee": "0.002494", + "tid": 43132487397889, + "cloid": "0x00000000000000000000001591000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107991.0", + "sz": "0.00011", + "side": "B", + "time": 1761027878941, + "startPosition": "-461.61145", + "dir": "Close Short", + "closedPnl": "0.526548", + "hash": "0xd6fc4953dbc251d7d876042de50edf020259003976c570a97ac4f4a69ac62bc2", + "oid": 207919682318, + "crossed": true, + "fee": "0.002494", + "tid": 786025921713731, + "cloid": "0x00000000000000000000001591000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107991.0", + "sz": "0.0048", + "side": "B", + "time": 1761027878941, + "startPosition": "-461.61134", + "dir": "Close Short", + "closedPnl": "22.97664", + "hash": "0xd6fc4953dbc251d7d876042de50edf020259003976c570a97ac4f4a69ac62bc2", + "oid": 207919682318, + "crossed": true, + "fee": "0.108854", + "tid": 1055228261785773, + "cloid": "0x00000000000000000000001591000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107991.0", + "sz": "0.05143", + "side": "B", + "time": 1761027878941, + "startPosition": "-461.60654", + "dir": "Close Short", + "closedPnl": "246.185124", + "hash": "0xd6fc4953dbc251d7d876042de50edf020259003976c570a97ac4f4a69ac62bc2", + "oid": 207919682318, + "crossed": true, + "fee": "1.166335", + "tid": 720750630811452, + "cloid": "0x00000000000000000000001591000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107986.0", + "sz": "0.08753", + "side": "B", + "time": 1761027884455, + "startPosition": "-461.55511", + "dir": "Close Short", + "closedPnl": "419.426254", + "hash": "0x22c975ce38c414712443042de50f290205b700b3d3c73343c6922120f7c7ee5b", + "oid": 207919731243, + "crossed": true, + "fee": "1.984923", + "tid": 484254321636574, + "cloid": "0x00000000000000000000001591000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107986.0", + "sz": "0.00503", + "side": "B", + "time": 1761027884455, + "startPosition": "-461.46758", + "dir": "Close Short", + "closedPnl": "24.102754", + "hash": "0x22c975ce38c414712443042de50f290205b700b3d3c73343c6922120f7c7ee5b", + "oid": 207919731243, + "crossed": true, + "fee": "0.114065", + "tid": 866421219088530, + "cloid": "0x00000000000000000000001591000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107955.0", + "sz": "0.0195", + "side": "B", + "time": 1761027885962, + "startPosition": "-461.46255", + "dir": "Close Short", + "closedPnl": "94.0446", + "hash": "0x041396c2916762b1058d042de50f3902058100a82c6a8183a7dc4215506b3c9b", + "oid": 207919745858, + "crossed": true, + "fee": "0.442075", + "tid": 249310990516709, + "cloid": "0x00000000000000000000001591000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107955.0", + "sz": "0.04785", + "side": "B", + "time": 1761027885962, + "startPosition": "-461.44305", + "dir": "Close Short", + "closedPnl": "230.77098", + "hash": "0x041396c2916762b1058d042de50f3902058100a82c6a8183a7dc4215506b3c9b", + "oid": 207919745858, + "crossed": true, + "fee": "1.084785", + "tid": 845414320448234, + "cloid": "0x00000000000000000000001591000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107955.0", + "sz": "0.02197", + "side": "B", + "time": 1761027885962, + "startPosition": "-461.3952", + "dir": "Close Short", + "closedPnl": "105.956916", + "hash": "0x041396c2916762b1058d042de50f3902058100a82c6a8183a7dc4215506b3c9b", + "oid": 207919745858, + "crossed": true, + "fee": "0.498071", + "tid": 511544646700493, + "cloid": "0x00000000000000000000001591000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107955.0", + "sz": "0.00326", + "side": "B", + "time": 1761027885962, + "startPosition": "-461.37323", + "dir": "Close Short", + "closedPnl": "15.722328", + "hash": "0x041396c2916762b1058d042de50f3902058100a82c6a8183a7dc4215506b3c9b", + "oid": 207919745858, + "crossed": true, + "fee": "0.073905", + "tid": 529606641330244, + "cloid": "0x00000000000000000000001591000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107955.0", + "sz": "0.09259", + "side": "B", + "time": 1761027888789, + "startPosition": "-461.36997", + "dir": "Close Short", + "closedPnl": "446.543052", + "hash": "0x8018f045ce2d45a38192042de50f5b020303002b6920647523e19b988d211f8e", + "oid": 207919768037, + "crossed": true, + "fee": "2.099066", + "tid": 329382628810763, + "cloid": "0x00000000000000000000001591000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107940.0", + "sz": "0.01942", + "side": "B", + "time": 1761027891887, + "startPosition": "-461.27738", + "dir": "Close Short", + "closedPnl": "93.950076", + "hash": "0x2fac5ede76857c7d3126042de50f8202047600c411889b4fd3750a3135895667", + "oid": 207919794681, + "crossed": true, + "fee": "0.4402", + "tid": 785701864691814, + "cloid": "0x00000000000000000000001591000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107940.0", + "sz": "0.05389", + "side": "B", + "time": 1761027891887, + "startPosition": "-461.25796", + "dir": "Close Short", + "closedPnl": "260.709042", + "hash": "0x2fac5ede76857c7d3126042de50f8202047600c411889b4fd3750a3135895667", + "oid": 207919794681, + "crossed": true, + "fee": "1.221546", + "tid": 594782656219613, + "cloid": "0x00000000000000000000001591000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107940.0", + "sz": "0.01929", + "side": "B", + "time": 1761027891887, + "startPosition": "-461.20407", + "dir": "Close Short", + "closedPnl": "93.321162", + "hash": "0x2fac5ede76857c7d3126042de50f8202047600c411889b4fd3750a3135895667", + "oid": 207919794681, + "crossed": true, + "fee": "0.437254", + "tid": 642408915242585, + "cloid": "0x00000000000000000000001591000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107934.0", + "sz": "0.09261", + "side": "B", + "time": 1761027902666, + "startPosition": "-461.18478", + "dir": "Close Short", + "closedPnl": "448.584318", + "hash": "0x225aceca9ce0e8fa23d4042de5100f02044b00b037e407ccc6237a1d5be4c2e4", + "oid": 207919882752, + "crossed": true, + "fee": "2.099111", + "tid": 903613610470067, + "cloid": "0x00000000000000000000001591000128", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107922.0", + "sz": "0.01828", + "side": "B", + "time": 1761027904199, + "startPosition": "-461.09217", + "dir": "Close Short", + "closedPnl": "88.764024", + "hash": "0xbe032f060507c1f7bf7c042de51022020a7e00eba00ae0c961cbda58c40b9be2", + "oid": 207919898975, + "crossed": true, + "fee": "0.41429", + "tid": 112906006466287, + "cloid": "0x00000000000000000000001591000129", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107922.0", + "sz": "0.03726", + "side": "B", + "time": 1761027904199, + "startPosition": "-461.07389", + "dir": "Close Short", + "closedPnl": "180.927108", + "hash": "0xbe032f060507c1f7bf7c042de51022020a7e00eba00ae0c961cbda58c40b9be2", + "oid": 207919898975, + "crossed": true, + "fee": "0.844446", + "tid": 998194053340131, + "cloid": "0x00000000000000000000001591000129", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107922.0", + "sz": "0.01828", + "side": "B", + "time": 1761027904199, + "startPosition": "-461.03663", + "dir": "Close Short", + "closedPnl": "88.764024", + "hash": "0xbe032f060507c1f7bf7c042de51022020a7e00eba00ae0c961cbda58c40b9be2", + "oid": 207919898975, + "crossed": true, + "fee": "0.41429", + "tid": 852973499525012, + "cloid": "0x00000000000000000000001591000129", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107922.0", + "sz": "0.01828", + "side": "B", + "time": 1761027904199, + "startPosition": "-461.01835", + "dir": "Close Short", + "closedPnl": "88.764024", + "hash": "0xbe032f060507c1f7bf7c042de51022020a7e00eba00ae0c961cbda58c40b9be2", + "oid": 207919898975, + "crossed": true, + "fee": "0.41429", + "tid": 936903217386454, + "cloid": "0x00000000000000000000001591000129", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107922.0", + "sz": "0.00052", + "side": "B", + "time": 1761027904199, + "startPosition": "-461.00007", + "dir": "Close Short", + "closedPnl": "2.525016", + "hash": "0xbe032f060507c1f7bf7c042de51022020a7e00eba00ae0c961cbda58c40b9be2", + "oid": 207919898975, + "crossed": true, + "fee": "0.011785", + "tid": 53448718274099, + "cloid": "0x00000000000000000000001591000129", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107898.0", + "sz": "0.01603", + "side": "B", + "time": 1761027907108, + "startPosition": "-460.99955", + "dir": "Close Short", + "closedPnl": "78.223194", + "hash": "0xd798e0c714b10e75d912042de5104602067d00acafb42d477b618c19d3b4e860", + "oid": 207919930798, + "crossed": true, + "fee": "0.363217", + "tid": 1016558479538014, + "cloid": "0x00000000000000000000001591000130", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107898.0", + "sz": "0.01914", + "side": "B", + "time": 1761027907108, + "startPosition": "-460.98352", + "dir": "Close Short", + "closedPnl": "93.399372", + "hash": "0xd798e0c714b10e75d912042de5104602067d00acafb42d477b618c19d3b4e860", + "oid": 207919930798, + "crossed": true, + "fee": "0.433685", + "tid": 30945669325290, + "cloid": "0x00000000000000000000001591000130", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107898.0", + "sz": "0.01603", + "side": "B", + "time": 1761027907108, + "startPosition": "-460.96438", + "dir": "Close Short", + "closedPnl": "78.223194", + "hash": "0xd798e0c714b10e75d912042de5104602067d00acafb42d477b618c19d3b4e860", + "oid": 207919930798, + "crossed": true, + "fee": "0.363217", + "tid": 350248460605158, + "cloid": "0x00000000000000000000001591000130", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107898.0", + "sz": "0.02625", + "side": "B", + "time": 1761027907108, + "startPosition": "-460.94835", + "dir": "Close Short", + "closedPnl": "128.09475", + "hash": "0xd798e0c714b10e75d912042de5104602067d00acafb42d477b618c19d3b4e860", + "oid": 207919930798, + "crossed": true, + "fee": "0.594787", + "tid": 424959944807823, + "cloid": "0x00000000000000000000001591000130", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107898.0", + "sz": "0.01518", + "side": "B", + "time": 1761027907108, + "startPosition": "-460.9221", + "dir": "Close Short", + "closedPnl": "74.075364", + "hash": "0xd798e0c714b10e75d912042de5104602067d00acafb42d477b618c19d3b4e860", + "oid": 207919930798, + "crossed": true, + "fee": "0.343957", + "tid": 928246240786295, + "cloid": "0x00000000000000000000001591000130", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107873.0", + "sz": "0.01349", + "side": "B", + "time": 1761027910853, + "startPosition": "-460.90692", + "dir": "Close Short", + "closedPnl": "66.165752", + "hash": "0x37b1025c810e0fe8392a042de5107b0202c100421c012ebadb79adaf4001e9d2", + "oid": 207919964884, + "crossed": true, + "fee": "0.305593", + "tid": 784432952131780, + "cloid": "0x00000000000000000000001591000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107873.0", + "sz": "0.03235", + "side": "B", + "time": 1761027910853, + "startPosition": "-460.89343", + "dir": "Close Short", + "closedPnl": "158.67028", + "hash": "0x37b1025c810e0fe8392a042de5107b0202c100421c012ebadb79adaf4001e9d2", + "oid": 207919964884, + "crossed": true, + "fee": "0.732835", + "tid": 52798751836738, + "cloid": "0x00000000000000000000001591000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107873.0", + "sz": "0.01299", + "side": "B", + "time": 1761027910853, + "startPosition": "-460.86108", + "dir": "Close Short", + "closedPnl": "63.713352", + "hash": "0x37b1025c810e0fe8392a042de5107b0202c100421c012ebadb79adaf4001e9d2", + "oid": 207919964884, + "crossed": true, + "fee": "0.294266", + "tid": 651115423834779, + "cloid": "0x00000000000000000000001591000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107873.0", + "sz": "0.02201", + "side": "B", + "time": 1761027910853, + "startPosition": "-460.84809", + "dir": "Close Short", + "closedPnl": "107.954648", + "hash": "0x37b1025c810e0fe8392a042de5107b0202c100421c012ebadb79adaf4001e9d2", + "oid": 207919964884, + "crossed": true, + "fee": "0.498599", + "tid": 1043792498286829, + "cloid": "0x00000000000000000000001591000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107873.0", + "sz": "0.01181", + "side": "B", + "time": 1761027910853, + "startPosition": "-460.82608", + "dir": "Close Short", + "closedPnl": "57.925688", + "hash": "0x37b1025c810e0fe8392a042de5107b0202c100421c012ebadb79adaf4001e9d2", + "oid": 207919964884, + "crossed": true, + "fee": "0.267535", + "tid": 223972803323054, + "cloid": "0x00000000000000000000001591000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107883.0", + "sz": "0.09265", + "side": "B", + "time": 1761027912978, + "startPosition": "-460.81427", + "dir": "Close Short", + "closedPnl": "453.50322", + "hash": "0xb0659f79c6b2440eb1df042de510910201e6005f61b562e0542e4acc85b61df9", + "oid": 207919983262, + "crossed": true, + "fee": "2.099025", + "tid": 1060628862333612, + "cloid": "0x00000000000000000000001591000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107883.0", + "sz": "0.00011", + "side": "B", + "time": 1761027922194, + "startPosition": "-460.72162", + "dir": "Close Short", + "closedPnl": "0.538428", + "hash": "0xcc79f2fc7576b940cdf3042de5110502026e00e21079d81270429e4f347a932b", + "oid": 207920036101, + "crossed": true, + "fee": "0.002492", + "tid": 867046968463290, + "cloid": "0x00000000000000000000001591000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107883.0", + "sz": "0.0001", + "side": "B", + "time": 1761027922194, + "startPosition": "-460.72151", + "dir": "Close Short", + "closedPnl": "0.48948", + "hash": "0xcc79f2fc7576b940cdf3042de5110502026e00e21079d81270429e4f347a932b", + "oid": 207920036101, + "crossed": true, + "fee": "0.002265", + "tid": 153682201190374, + "cloid": "0x00000000000000000000001591000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107884.0", + "sz": "0.00011", + "side": "B", + "time": 1761027922194, + "startPosition": "-460.72141", + "dir": "Close Short", + "closedPnl": "0.538318", + "hash": "0xcc79f2fc7576b940cdf3042de5110502026e00e21079d81270429e4f347a932b", + "oid": 207920036101, + "crossed": true, + "fee": "0.002492", + "tid": 1019834348809723, + "cloid": "0x00000000000000000000001591000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.00011", + "side": "B", + "time": 1761027922194, + "startPosition": "-460.7213", + "dir": "Close Short", + "closedPnl": "0.538208", + "hash": "0xcc79f2fc7576b940cdf3042de5110502026e00e21079d81270429e4f347a932b", + "oid": 207920036101, + "crossed": true, + "fee": "0.002492", + "tid": 598318732318556, + "cloid": "0x00000000000000000000001591000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107886.0", + "sz": "0.00011", + "side": "B", + "time": 1761027922194, + "startPosition": "-460.72119", + "dir": "Close Short", + "closedPnl": "0.538098", + "hash": "0xcc79f2fc7576b940cdf3042de5110502026e00e21079d81270429e4f347a932b", + "oid": 207920036101, + "crossed": true, + "fee": "0.002492", + "tid": 272319954000027, + "cloid": "0x00000000000000000000001591000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107887.0", + "sz": "0.00011", + "side": "B", + "time": 1761027922194, + "startPosition": "-460.72108", + "dir": "Close Short", + "closedPnl": "0.537988", + "hash": "0xcc79f2fc7576b940cdf3042de5110502026e00e21079d81270429e4f347a932b", + "oid": 207920036101, + "crossed": true, + "fee": "0.002492", + "tid": 894645457387143, + "cloid": "0x00000000000000000000001591000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107888.0", + "sz": "0.00011", + "side": "B", + "time": 1761027922194, + "startPosition": "-460.72097", + "dir": "Close Short", + "closedPnl": "0.537878", + "hash": "0xcc79f2fc7576b940cdf3042de5110502026e00e21079d81270429e4f347a932b", + "oid": 207920036101, + "crossed": true, + "fee": "0.002492", + "tid": 932847986038505, + "cloid": "0x00000000000000000000001591000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107888.0", + "sz": "0.03599", + "side": "B", + "time": 1761027922194, + "startPosition": "-460.72086", + "dir": "Close Short", + "closedPnl": "175.983902", + "hash": "0xcc79f2fc7576b940cdf3042de5110502026e00e21079d81270429e4f347a932b", + "oid": 207920036101, + "crossed": true, + "fee": "0.815406", + "tid": 766529026950181, + "cloid": "0x00000000000000000000001591000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107889.0", + "sz": "0.00011", + "side": "B", + "time": 1761027922194, + "startPosition": "-460.68487", + "dir": "Close Short", + "closedPnl": "0.537768", + "hash": "0xcc79f2fc7576b940cdf3042de5110502026e00e21079d81270429e4f347a932b", + "oid": 207920036101, + "crossed": true, + "fee": "0.002492", + "tid": 1107802831749032, + "cloid": "0x00000000000000000000001591000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107889.0", + "sz": "0.00927", + "side": "B", + "time": 1761027922194, + "startPosition": "-460.68476", + "dir": "Close Short", + "closedPnl": "45.319176", + "hash": "0xcc79f2fc7576b940cdf3042de5110502026e00e21079d81270429e4f347a932b", + "oid": 207920036101, + "crossed": true, + "fee": "0.210027", + "tid": 999495472721101, + "cloid": "0x00000000000000000000001591000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107890.0", + "sz": "0.00011", + "side": "B", + "time": 1761027922194, + "startPosition": "-460.67549", + "dir": "Close Short", + "closedPnl": "0.537658", + "hash": "0xcc79f2fc7576b940cdf3042de5110502026e00e21079d81270429e4f347a932b", + "oid": 207920036101, + "crossed": true, + "fee": "0.002492", + "tid": 726585255052725, + "cloid": "0x00000000000000000000001591000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107890.0", + "sz": "0.00014", + "side": "B", + "time": 1761027922194, + "startPosition": "-460.67538", + "dir": "Close Short", + "closedPnl": "0.684292", + "hash": "0xcc79f2fc7576b940cdf3042de5110502026e00e21079d81270429e4f347a932b", + "oid": 207920036101, + "crossed": true, + "fee": "0.003171", + "tid": 612127836194831, + "cloid": "0x00000000000000000000001591000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107890.0", + "sz": "0.04626", + "side": "B", + "time": 1761027922194, + "startPosition": "-460.67524", + "dir": "Close Short", + "closedPnl": "226.109628", + "hash": "0xcc79f2fc7576b940cdf3042de5110502026e00e21079d81270429e4f347a932b", + "oid": 207920036101, + "crossed": true, + "fee": "1.048108", + "tid": 896964354491745, + "cloid": "0x00000000000000000000001591000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107892.0", + "sz": "0.09264", + "side": "B", + "time": 1761027928212, + "startPosition": "-460.62898", + "dir": "Close Short", + "closedPnl": "452.620512", + "hash": "0x4b6e255cb464041e4ce7042de511510202b900424f6722f0ef36d0af7367de08", + "oid": 207920091846, + "crossed": true, + "fee": "2.098974", + "tid": 735244449343305, + "cloid": "0x00000000000000000000001591000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107892.0", + "sz": "0.02177", + "side": "B", + "time": 1761027938903, + "startPosition": "-460.53634", + "dir": "Close Short", + "closedPnl": "106.363866", + "hash": "0xdc5af251d6b97d94ddd4042de511e002021b003771bc9c6680239da495bd577f", + "oid": 207920147756, + "crossed": true, + "fee": "0.493249", + "tid": 492595805242064, + "cloid": "0x00000000000000000000001591000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107892.0", + "sz": "0.00011", + "side": "B", + "time": 1761027938903, + "startPosition": "-460.51457", + "dir": "Close Short", + "closedPnl": "0.537438", + "hash": "0xdc5af251d6b97d94ddd4042de511e002021b003771bc9c6680239da495bd577f", + "oid": 207920147756, + "crossed": true, + "fee": "0.002492", + "tid": 108108810525, + "cloid": "0x00000000000000000000001591000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107892.0", + "sz": "0.0001", + "side": "B", + "time": 1761027938903, + "startPosition": "-460.51446", + "dir": "Close Short", + "closedPnl": "0.48858", + "hash": "0xdc5af251d6b97d94ddd4042de511e002021b003771bc9c6680239da495bd577f", + "oid": 207920147756, + "crossed": true, + "fee": "0.002265", + "tid": 631153650859391, + "cloid": "0x00000000000000000000001591000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107892.0", + "sz": "0.07066", + "side": "B", + "time": 1761027938903, + "startPosition": "-460.51436", + "dir": "Close Short", + "closedPnl": "345.230628", + "hash": "0xdc5af251d6b97d94ddd4042de511e002021b003771bc9c6680239da495bd577f", + "oid": 207920147756, + "crossed": true, + "fee": "1.600966", + "tid": 467031157122621, + "cloid": "0x00000000000000000000001591000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107892.0", + "sz": "0.09264", + "side": "B", + "time": 1761027942316, + "startPosition": "-460.4437", + "dir": "Close Short", + "closedPnl": "452.620512", + "hash": "0xca35c2e8f8153380cbaf042de5120a02044f00ce931852526dfe6e3bb7190d6b", + "oid": 207920167401, + "crossed": true, + "fee": "2.098974", + "tid": 499630376282089, + "cloid": "0x00000000000000000000001591000136", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107892.0", + "sz": "0.00011", + "side": "B", + "time": 1761027946299, + "startPosition": "-460.35106", + "dir": "Close Short", + "closedPnl": "0.537438", + "hash": "0xc2cbbb6a7d370854c445042de5123d0204320050183a2726669466bd3c3ae23f", + "oid": 207920198015, + "crossed": true, + "fee": "0.002492", + "tid": 241162682773462, + "cloid": "0x00000000000000000000001591000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107893.0", + "sz": "0.00011", + "side": "B", + "time": 1761027946299, + "startPosition": "-460.35095", + "dir": "Close Short", + "closedPnl": "0.537328", + "hash": "0xc2cbbb6a7d370854c445042de5123d0204320050183a2726669466bd3c3ae23f", + "oid": 207920198015, + "crossed": true, + "fee": "0.002492", + "tid": 181096463247400, + "cloid": "0x00000000000000000000001591000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107894.0", + "sz": "0.00011", + "side": "B", + "time": 1761027946299, + "startPosition": "-460.35084", + "dir": "Close Short", + "closedPnl": "0.537218", + "hash": "0xc2cbbb6a7d370854c445042de5123d0204320050183a2726669466bd3c3ae23f", + "oid": 207920198015, + "crossed": true, + "fee": "0.002492", + "tid": 672073557883095, + "cloid": "0x00000000000000000000001591000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107894.0", + "sz": "0.00014", + "side": "B", + "time": 1761027946299, + "startPosition": "-460.35073", + "dir": "Close Short", + "closedPnl": "0.683732", + "hash": "0xc2cbbb6a7d370854c445042de5123d0204320050183a2726669466bd3c3ae23f", + "oid": 207920198015, + "crossed": true, + "fee": "0.003172", + "tid": 75974157520368, + "cloid": "0x00000000000000000000001591000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107895.0", + "sz": "0.00011", + "side": "B", + "time": 1761027946299, + "startPosition": "-460.35059", + "dir": "Close Short", + "closedPnl": "0.537108", + "hash": "0xc2cbbb6a7d370854c445042de5123d0204320050183a2726669466bd3c3ae23f", + "oid": 207920198015, + "crossed": true, + "fee": "0.002492", + "tid": 473783805785733, + "cloid": "0x00000000000000000000001591000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107896.0", + "sz": "0.00011", + "side": "B", + "time": 1761027946299, + "startPosition": "-460.35048", + "dir": "Close Short", + "closedPnl": "0.536998", + "hash": "0xc2cbbb6a7d370854c445042de5123d0204320050183a2726669466bd3c3ae23f", + "oid": 207920198015, + "crossed": true, + "fee": "0.002492", + "tid": 227121977074271, + "cloid": "0x00000000000000000000001591000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107897.0", + "sz": "0.00011", + "side": "B", + "time": 1761027946299, + "startPosition": "-460.35037", + "dir": "Close Short", + "closedPnl": "0.536888", + "hash": "0xc2cbbb6a7d370854c445042de5123d0204320050183a2726669466bd3c3ae23f", + "oid": 207920198015, + "crossed": true, + "fee": "0.002492", + "tid": 33963237152732, + "cloid": "0x00000000000000000000001591000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107897.0", + "sz": "0.00396", + "side": "B", + "time": 1761027946299, + "startPosition": "-460.35026", + "dir": "Close Short", + "closedPnl": "19.327968", + "hash": "0xc2cbbb6a7d370854c445042de5123d0204320050183a2726669466bd3c3ae23f", + "oid": 207920198015, + "crossed": true, + "fee": "0.089727", + "tid": 996044155504947, + "cloid": "0x00000000000000000000001591000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107898.0", + "sz": "0.00011", + "side": "B", + "time": 1761027946299, + "startPosition": "-460.3463", + "dir": "Close Short", + "closedPnl": "0.536778", + "hash": "0xc2cbbb6a7d370854c445042de5123d0204320050183a2726669466bd3c3ae23f", + "oid": 207920198015, + "crossed": true, + "fee": "0.002492", + "tid": 372934434953167, + "cloid": "0x00000000000000000000001591000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107898.0", + "sz": "0.00014", + "side": "B", + "time": 1761027946299, + "startPosition": "-460.34619", + "dir": "Close Short", + "closedPnl": "0.683172", + "hash": "0xc2cbbb6a7d370854c445042de5123d0204320050183a2726669466bd3c3ae23f", + "oid": 207920198015, + "crossed": true, + "fee": "0.003172", + "tid": 1096647078723071, + "cloid": "0x00000000000000000000001591000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107898.0", + "sz": "0.08763", + "side": "B", + "time": 1761027946299, + "startPosition": "-460.34605", + "dir": "Close Short", + "closedPnl": "427.616874", + "hash": "0xc2cbbb6a7d370854c445042de5123d0204320050183a2726669466bd3c3ae23f", + "oid": 207920198015, + "crossed": true, + "fee": "1.985571", + "tid": 427376244049824, + "cloid": "0x00000000000000000000001591000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107896.0", + "sz": "0.09264", + "side": "B", + "time": 1761027954677, + "startPosition": "-460.25842", + "dir": "Close Short", + "closedPnl": "452.249952", + "hash": "0x22fd962dfcea9cd92477042de512ac02027a001397edbbabc6c64180bbee76c3", + "oid": 207920247147, + "crossed": true, + "fee": "2.099051", + "tid": 383104862155515, + "cloid": "0x00000000000000000000001591000138", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107891.0", + "sz": "0.09265", + "side": "B", + "time": 1761027957713, + "startPosition": "-460.16578", + "dir": "Close Short", + "closedPnl": "452.76202", + "hash": "0xaada98f32613ee3dac54042de512d602013300d8c1170d0f4ea34445e517c828", + "oid": 207920270666, + "crossed": true, + "fee": "2.099181", + "tid": 170427060125884, + "cloid": "0x00000000000000000000001591000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107873.0", + "sz": "0.00215", + "side": "B", + "time": 1761027959945, + "startPosition": "-460.07313", + "dir": "Close Short", + "closedPnl": "10.54532", + "hash": "0xf863d78b73984ad6f9dd042de512f702016600710e9b69a99c2c82de329c24c1", + "oid": 207920288341, + "crossed": true, + "fee": "0.048704", + "tid": 703178696012158, + "cloid": "0x00000000000000000000001591000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107873.0", + "sz": "0.05534", + "side": "B", + "time": 1761027959945, + "startPosition": "-460.07098", + "dir": "Close Short", + "closedPnl": "271.431632", + "hash": "0xf863d78b73984ad6f9dd042de512f702016600710e9b69a99c2c82de329c24c1", + "oid": 207920288341, + "crossed": true, + "fee": "1.253635", + "tid": 876643268633319, + "cloid": "0x00000000000000000000001591000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107873.0", + "sz": "0.03055", + "side": "B", + "time": 1761027959945, + "startPosition": "-460.01564", + "dir": "Close Short", + "closedPnl": "149.84164", + "hash": "0xf863d78b73984ad6f9dd042de512f702016600710e9b69a99c2c82de329c24c1", + "oid": 207920288341, + "crossed": true, + "fee": "0.692059", + "tid": 502887282066472, + "cloid": "0x00000000000000000000001591000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107873.0", + "sz": "0.00462", + "side": "B", + "time": 1761027959945, + "startPosition": "-459.98509", + "dir": "Close Short", + "closedPnl": "22.660176", + "hash": "0xf863d78b73984ad6f9dd042de512f702016600710e9b69a99c2c82de329c24c1", + "oid": 207920288341, + "crossed": true, + "fee": "0.104658", + "tid": 1117160554358925, + "cloid": "0x00000000000000000000001591000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107873.0", + "sz": "0.09267", + "side": "B", + "time": 1761027962476, + "startPosition": "-459.98047", + "dir": "Close Short", + "closedPnl": "454.527816", + "hash": "0x485e99123419b3d249d8042de5131b0202fa00f7cf1cd2a4ec274464f31d8dbc", + "oid": 207920319410, + "crossed": true, + "fee": "2.099284", + "tid": 508353325434354, + "cloid": "0x00000000000000000000001591000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107862.0", + "sz": "0.01183", + "side": "B", + "time": 1761027968901, + "startPosition": "-459.8878", + "dir": "Close Short", + "closedPnl": "58.153914", + "hash": "0xaf17ce162037bc67b091042de513680204cb00fbbb3adb3952e07968df3b9652", + "oid": 207920355966, + "crossed": true, + "fee": "0.267961", + "tid": 882443113824719, + "cloid": "0x00000000000000000000001591000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107862.0", + "sz": "0.03955", + "side": "B", + "time": 1761027968901, + "startPosition": "-459.87597", + "dir": "Close Short", + "closedPnl": "194.41989", + "hash": "0xaf17ce162037bc67b091042de513680204cb00fbbb3adb3952e07968df3b9652", + "oid": 207920355966, + "crossed": true, + "fee": "0.895847", + "tid": 1095388457053372, + "cloid": "0x00000000000000000000001591000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107862.0", + "sz": "0.04129", + "side": "B", + "time": 1761027968901, + "startPosition": "-459.83642", + "dir": "Close Short", + "closedPnl": "202.973382", + "hash": "0xaf17ce162037bc67b091042de513680204cb00fbbb3adb3952e07968df3b9652", + "oid": 207920355966, + "crossed": true, + "fee": "0.93526", + "tid": 463971090344899, + "cloid": "0x00000000000000000000001591000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107870.0", + "sz": "0.00014", + "side": "B", + "time": 1761027972570, + "startPosition": "-459.79513", + "dir": "Close Short", + "closedPnl": "0.687092", + "hash": "0x76a8ae9777efa41b7822042de5139802040e007d12e2c2ed1a7159ea36e37e06", + "oid": 207920390984, + "crossed": true, + "fee": "0.003171", + "tid": 576708687902735, + "cloid": "0x00000000000000000000001591000143", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107871.0", + "sz": "0.03599", + "side": "B", + "time": 1761027972570, + "startPosition": "-459.79499", + "dir": "Close Short", + "closedPnl": "176.595732", + "hash": "0x76a8ae9777efa41b7822042de5139802040e007d12e2c2ed1a7159ea36e37e06", + "oid": 207920390984, + "crossed": true, + "fee": "0.815278", + "tid": 697031272320103, + "cloid": "0x00000000000000000000001591000143", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107873.0", + "sz": "0.05654", + "side": "B", + "time": 1761027972570, + "startPosition": "-459.759", + "dir": "Close Short", + "closedPnl": "277.317392", + "hash": "0x76a8ae9777efa41b7822042de5139802040e007d12e2c2ed1a7159ea36e37e06", + "oid": 207920390984, + "crossed": true, + "fee": "1.280819", + "tid": 728894417958970, + "cloid": "0x00000000000000000000001591000143", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107867.0", + "sz": "0.04508", + "side": "B", + "time": 1761027977851, + "startPosition": "-459.70246", + "dir": "Close Short", + "closedPnl": "221.378864", + "hash": "0x8a33b46d19abaed38bad042de513d50204990052b4aecda52dfc5fbfd8af88be", + "oid": 207920428583, + "crossed": true, + "fee": "1.021155", + "tid": 543583111405002, + "cloid": "0x00000000000000000000001591000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107867.0", + "sz": "0.0476", + "side": "B", + "time": 1761027977851, + "startPosition": "-459.65738", + "dir": "Close Short", + "closedPnl": "233.75408", + "hash": "0x8a33b46d19abaed38bad042de513d50204990052b4aecda52dfc5fbfd8af88be", + "oid": 207920428583, + "crossed": true, + "fee": "1.078238", + "tid": 1031629906898901, + "cloid": "0x00000000000000000000001591000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107860.0", + "sz": "0.09267", + "side": "B", + "time": 1761027980031, + "startPosition": "-459.60978", + "dir": "Close Short", + "closedPnl": "455.732526", + "hash": "0x46421310c306860f47bb042de513f202024e00f65e09a4e1ea0abe63820a5ff9", + "oid": 207920454141, + "crossed": true, + "fee": "2.099031", + "tid": 304796863857566, + "cloid": "0x00000000000000000000001591000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107867.0", + "sz": "0.09267", + "side": "B", + "time": 1761027991253, + "startPosition": "-459.51711", + "dir": "Close Short", + "closedPnl": "455.083836", + "hash": "0x1c0c9770c9b9143d1d86042de5148a0201f9005664bc330fbfd542c388bcee27", + "oid": 207920524490, + "crossed": true, + "fee": "2.099167", + "tid": 862400686998751, + "cloid": "0x00000000000000000000001591000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107899.0", + "sz": "0.00003", + "side": "B", + "time": 1761027995708, + "startPosition": "-459.42444", + "dir": "Close Short", + "closedPnl": "0.146364", + "hash": "0x06f185d404b3c6b5086b042de514be02052500b99fb6e587aaba3126c3b7a09f", + "oid": 207920594132, + "crossed": true, + "fee": "0.000679", + "tid": 267265022395462, + "cloid": "0x00000000000000000000001591000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107899.0", + "sz": "0.00011", + "side": "B", + "time": 1761027995708, + "startPosition": "-459.42441", + "dir": "Close Short", + "closedPnl": "0.536668", + "hash": "0x06f185d404b3c6b5086b042de514be02052500b99fb6e587aaba3126c3b7a09f", + "oid": 207920594132, + "crossed": true, + "fee": "0.002492", + "tid": 117572829585721, + "cloid": "0x00000000000000000000001591000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107900.0", + "sz": "0.09251", + "side": "B", + "time": 1761027995708, + "startPosition": "-459.4243", + "dir": "Close Short", + "closedPnl": "451.245278", + "hash": "0x06f185d404b3c6b5086b042de514be02052500b99fb6e587aaba3126c3b7a09f", + "oid": 207920594132, + "crossed": true, + "fee": "2.096184", + "tid": 936077511085142, + "cloid": "0x00000000000000000000001591000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107906.0", + "sz": "0.09263", + "side": "B", + "time": 1761027998524, + "startPosition": "-459.33179", + "dir": "Close Short", + "closedPnl": "451.274834", + "hash": "0x96787c5c63e17f8797f2042de514e60201c80041fee49e593a4127af22e55972", + "oid": 207920617227, + "crossed": true, + "fee": "2.099019", + "tid": 266438711776349, + "cloid": "0x00000000000000000000001591000148", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107911.0", + "sz": "0.09263", + "side": "B", + "time": 1761028008560, + "startPosition": "-459.23916", + "dir": "Close Short", + "closedPnl": "450.811684", + "hash": "0xdb3a111ab0804924dcb3042de5155f02010500004b8367f67f02bc6d6f84230f", + "oid": 207920702349, + "crossed": true, + "fee": "2.099117", + "tid": 257866803783474, + "cloid": "0x00000000000000000000001591000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107911.0", + "sz": "0.00011", + "side": "B", + "time": 1761028010972, + "startPosition": "-459.14653", + "dir": "Close Short", + "closedPnl": "0.535348", + "hash": "0x1a24da5491025ac91b9e042de515800201e8003a2c05799bbded85a7500634b3", + "oid": 207920720940, + "crossed": true, + "fee": "0.002492", + "tid": 1057949635355005, + "cloid": "0x00000000000000000000001591000150", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107911.0", + "sz": "0.09251", + "side": "B", + "time": 1761028010972, + "startPosition": "-459.14642", + "dir": "Close Short", + "closedPnl": "450.227668", + "hash": "0x1a24da5491025ac91b9e042de515800201e8003a2c05799bbded85a7500634b3", + "oid": 207920720940, + "crossed": true, + "fee": "2.096397", + "tid": 607744844401961, + "cloid": "0x00000000000000000000001591000150", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107915.0", + "sz": "0.09262", + "side": "B", + "time": 1761028019287, + "startPosition": "-459.05391", + "dir": "Close Short", + "closedPnl": "450.392536", + "hash": "0xf3741bf3e3868231f4ed042de515e302022100d97e89a104973cc746a28a5c1c", + "oid": 207920800578, + "crossed": true, + "fee": "2.098968", + "tid": 381387135290237, + "cloid": "0x00000000000000000000001591000151", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107914.0", + "sz": "0.09262", + "side": "B", + "time": 1761028021510, + "startPosition": "-458.96129", + "dir": "Close Short", + "closedPnl": "450.485156", + "hash": "0xae847b66371cee4caffe042de515fc020285004bd2100d1e524d26b8f610c837", + "oid": 207920824316, + "crossed": true, + "fee": "2.098948", + "tid": 286199656503053, + "cloid": "0x00000000000000000000001591000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107908.0", + "sz": "0.09263", + "side": "B", + "time": 1761028029502, + "startPosition": "-458.86867", + "dir": "Close Short", + "closedPnl": "451.089574", + "hash": "0xa6ac39977ee2e9cda825042de51660020216007d19e6089f4a74e4ea3de6c3b8", + "oid": 207920910404, + "crossed": true, + "fee": "2.099058", + "tid": 463381395950340, + "cloid": "0x00000000000000000000001591000153", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107908.0", + "sz": "0.053", + "side": "B", + "time": 1761028031085, + "startPosition": "-458.77604", + "dir": "Close Short", + "closedPnl": "258.0994", + "hash": "0x57793609faceb75258f2042de5167602039600ef95c1d624fb41e15cb9c2913c", + "oid": 207920935634, + "crossed": true, + "fee": "1.201016", + "tid": 318921144931990, + "cloid": "0x00000000000000000000001591000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107908.0", + "sz": "0.03963", + "side": "B", + "time": 1761028031085, + "startPosition": "-458.72304", + "dir": "Close Short", + "closedPnl": "192.990174", + "hash": "0x57793609faceb75258f2042de5167602039600ef95c1d624fb41e15cb9c2913c", + "oid": 207920935634, + "crossed": true, + "fee": "0.898042", + "tid": 935594843767596, + "cloid": "0x00000000000000000000001591000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107889.0", + "sz": "0.0023", + "side": "B", + "time": 1761028034515, + "startPosition": "-458.68341", + "dir": "Close Short", + "closedPnl": "11.24424", + "hash": "0x907681a48795407891f0042de516a0020299008a22985f4a343f2cf746991a63", + "oid": 207920978428, + "crossed": true, + "fee": "0.05211", + "tid": 919473069845167, + "cloid": "0x00000000000000000000001591000155", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107889.0", + "sz": "0.09036", + "side": "B", + "time": 1761028034515, + "startPosition": "-458.68111", + "dir": "Close Short", + "closedPnl": "441.751968", + "hash": "0x907681a48795407891f0042de516a0020299008a22985f4a343f2cf746991a63", + "oid": 207920978428, + "crossed": true, + "fee": "2.047258", + "tid": 747526954973832, + "cloid": "0x00000000000000000000001591000155", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107865.0", + "sz": "0.09267", + "side": "B", + "time": 1761028035816, + "startPosition": "-458.59075", + "dir": "Close Short", + "closedPnl": "455.269176", + "hash": "0x2d2b783752a9613b2ea5042de516af0202e7001cedac800dd0f4238a11ad3b25", + "oid": 207920994638, + "crossed": true, + "fee": "2.099128", + "tid": 232258654954890, + "cloid": "0x00000000000000000000001591000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107878.0", + "sz": "0.09266", + "side": "B", + "time": 1761028045250, + "startPosition": "-458.49808", + "dir": "Close Short", + "closedPnl": "454.015468", + "hash": "0x9b87b971600da7dc9d01042de5172e0203720056fb00c6ae3f5064c41f0181c7", + "oid": 207921050085, + "crossed": true, + "fee": "2.099154", + "tid": 714700788317476, + "cloid": "0x00000000000000000000001591000157", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107878.0", + "sz": "0.09266", + "side": "B", + "time": 1761028046897, + "startPosition": "-458.40542", + "dir": "Close Short", + "closedPnl": "454.015468", + "hash": "0xf0e0db4fec6f30c5f25a042de5174402033a003587624f9894a986a2ab630ab0", + "oid": 207921072159, + "crossed": true, + "fee": "2.099154", + "tid": 895589413796160, + "cloid": "0x00000000000000000000001591000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107878.0", + "sz": "0.09266", + "side": "B", + "time": 1761028051724, + "startPosition": "-458.31276", + "dir": "Close Short", + "closedPnl": "454.015468", + "hash": "0xeffeb3e19f3d30c1f178042de517850202ea00c73a304f9493c75f345e310aac", + "oid": 207921107930, + "crossed": true, + "fee": "2.099154", + "tid": 975800270389465, + "cloid": "0x00000000000000000000001591000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107872.0", + "sz": "0.09053", + "side": "B", + "time": 1761028053138, + "startPosition": "-458.2201", + "dir": "Close Short", + "closedPnl": "444.122074", + "hash": "0xae3d32339be02950afb6042de51799020289001936e348225205dd865ae4033b", + "oid": 207921130666, + "crossed": true, + "fee": "2.050786", + "tid": 933653509009619, + "cloid": "0x00000000000000000000001591000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107872.0", + "sz": "0.00213", + "side": "B", + "time": 1761028053138, + "startPosition": "-458.12957", + "dir": "Close Short", + "closedPnl": "10.449354", + "hash": "0xae3d32339be02950afb6042de51799020289001936e348225205dd865ae4033b", + "oid": 207921130666, + "crossed": true, + "fee": "0.048251", + "tid": 488644948324730, + "cloid": "0x00000000000000000000001591000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107866.0", + "sz": "0.03625", + "side": "B", + "time": 1761028060476, + "startPosition": "-458.12744", + "dir": "Close Short", + "closedPnl": "178.05275", + "hash": "0x369b62b3d0792fdf3815042de5180002017700996b7c4eb1da640e068f7d09c9", + "oid": 207921199018, + "crossed": true, + "fee": "0.821129", + "tid": 131488540410737, + "cloid": "0x00000000000000000000001591000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107866.0", + "sz": "0.0564", + "side": "B", + "time": 1761028060476, + "startPosition": "-458.09119", + "dir": "Close Short", + "closedPnl": "277.02552", + "hash": "0x369b62b3d0792fdf3815042de5180002017700996b7c4eb1da640e068f7d09c9", + "oid": 207921199018, + "crossed": true, + "fee": "1.277564", + "tid": 799086803763213, + "cloid": "0x00000000000000000000001591000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107873.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03479", + "dir": "Close Short", + "closedPnl": "0.539528", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002491", + "tid": 487946505955343, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107874.0", + "sz": "0.00014", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03468", + "dir": "Close Short", + "closedPnl": "0.686532", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.003171", + "tid": 892423746756594, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107874.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03454", + "dir": "Close Short", + "closedPnl": "0.539418", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002491", + "tid": 901441434315107, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107875.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03443", + "dir": "Close Short", + "closedPnl": "0.539308", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002491", + "tid": 785871053537494, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107876.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03432", + "dir": "Close Short", + "closedPnl": "0.539198", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002491", + "tid": 892436307138445, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107877.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03421", + "dir": "Close Short", + "closedPnl": "0.539088", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002491", + "tid": 501779186726476, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107878.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.0341", + "dir": "Close Short", + "closedPnl": "0.538978", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002491", + "tid": 471528397821405, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107878.0", + "sz": "0.00014", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03399", + "dir": "Close Short", + "closedPnl": "0.685972", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.003171", + "tid": 462484972602024, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107879.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03385", + "dir": "Close Short", + "closedPnl": "0.538868", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002492", + "tid": 316262494152216, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107880.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03374", + "dir": "Close Short", + "closedPnl": "0.538758", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002492", + "tid": 1057754563016465, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107881.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03363", + "dir": "Close Short", + "closedPnl": "0.538648", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002492", + "tid": 847270388675314, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107881.0", + "sz": "0.001", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03352", + "dir": "Close Short", + "closedPnl": "4.8968", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.022655", + "tid": 227710565914001, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107882.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03252", + "dir": "Close Short", + "closedPnl": "0.538538", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002492", + "tid": 23633872218308, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107882.0", + "sz": "0.00014", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03241", + "dir": "Close Short", + "closedPnl": "0.685412", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.003171", + "tid": 491114253175288, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107883.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03227", + "dir": "Close Short", + "closedPnl": "0.538428", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002492", + "tid": 321203559960279, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107884.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03216", + "dir": "Close Short", + "closedPnl": "0.538318", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002492", + "tid": 514420481191138, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03205", + "dir": "Close Short", + "closedPnl": "0.538208", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002492", + "tid": 127960742933305, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107886.0", + "sz": "0.00014", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03194", + "dir": "Close Short", + "closedPnl": "0.684852", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.003171", + "tid": 977083877198097, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107886.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.0318", + "dir": "Close Short", + "closedPnl": "0.538098", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002492", + "tid": 954183639045358, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107887.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03169", + "dir": "Close Short", + "closedPnl": "0.537988", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002492", + "tid": 436677197843183, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107888.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03158", + "dir": "Close Short", + "closedPnl": "0.537878", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002492", + "tid": 759035655492776, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107889.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03147", + "dir": "Close Short", + "closedPnl": "0.537768", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002492", + "tid": 514407330204029, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107890.0", + "sz": "0.00014", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03136", + "dir": "Close Short", + "closedPnl": "0.684292", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.003171", + "tid": 982289890480223, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107890.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03122", + "dir": "Close Short", + "closedPnl": "0.537658", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002492", + "tid": 1043602762778402, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107891.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03111", + "dir": "Close Short", + "closedPnl": "0.537548", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002492", + "tid": 115803128561785, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107892.0", + "sz": "0.00011", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.031", + "dir": "Close Short", + "closedPnl": "0.537438", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "0.002492", + "tid": 182008753333742, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107892.0", + "sz": "0.08876", + "side": "B", + "time": 1761028065925, + "startPosition": "-458.03089", + "dir": "Close Short", + "closedPnl": "433.663608", + "hash": "0xd7e3ea8d15fb58c9d95d042de5184102048a0072b0fe779b7bac95dfd4ff32b4", + "oid": 207921242585, + "crossed": true, + "fee": "2.011063", + "tid": 956141625764726, + "cloid": "0x00000000000000000000001591000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107890.0", + "sz": "0.09264", + "side": "B", + "time": 1761028071426, + "startPosition": "-457.94213", + "dir": "Close Short", + "closedPnl": "452.805792", + "hash": "0xd3f466c4173cfaecd56e042de5188d02034200a9b23019be77bd1216d630d4d7", + "oid": 207921294648, + "crossed": true, + "fee": "2.098935", + "tid": 1097520888372238, + "cloid": "0x00000000000000000000001591000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107898.0", + "sz": "0.09264", + "side": "B", + "time": 1761028077482, + "startPosition": "-457.84949", + "dir": "Close Short", + "closedPnl": "452.064672", + "hash": "0xb6086446a17957b7b782042de518e202011d002c3c7c768959d10f99607d31a2", + "oid": 207921349012, + "crossed": true, + "fee": "2.09909", + "tid": 489915690873934, + "cloid": "0x00000000000000000000001591000164", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107900.0", + "sz": "0.00011", + "side": "B", + "time": 1761028079664, + "startPosition": "-457.75685", + "dir": "Close Short", + "closedPnl": "0.536558", + "hash": "0xa60325f8518642e3a77c042de519000201b000ddec8961b549cbd14b108a1cce", + "oid": 207921384254, + "crossed": true, + "fee": "0.002492", + "tid": 1015511626959764, + "cloid": "0x00000000000000000000001591000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107901.0", + "sz": "0.00011", + "side": "B", + "time": 1761028079664, + "startPosition": "-457.75674", + "dir": "Close Short", + "closedPnl": "0.536448", + "hash": "0xa60325f8518642e3a77c042de519000201b000ddec8961b549cbd14b108a1cce", + "oid": 207921384254, + "crossed": true, + "fee": "0.002492", + "tid": 979558811810382, + "cloid": "0x00000000000000000000001591000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107902.0", + "sz": "0.00014", + "side": "B", + "time": 1761028079664, + "startPosition": "-457.75663", + "dir": "Close Short", + "closedPnl": "0.682612", + "hash": "0xa60325f8518642e3a77c042de519000201b000ddec8961b549cbd14b108a1cce", + "oid": 207921384254, + "crossed": true, + "fee": "0.003172", + "tid": 397118001844619, + "cloid": "0x00000000000000000000001591000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107902.0", + "sz": "0.00011", + "side": "B", + "time": 1761028079664, + "startPosition": "-457.75649", + "dir": "Close Short", + "closedPnl": "0.536338", + "hash": "0xa60325f8518642e3a77c042de519000201b000ddec8961b549cbd14b108a1cce", + "oid": 207921384254, + "crossed": true, + "fee": "0.002492", + "tid": 450241032190266, + "cloid": "0x00000000000000000000001591000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107903.0", + "sz": "0.00011", + "side": "B", + "time": 1761028079664, + "startPosition": "-457.75638", + "dir": "Close Short", + "closedPnl": "0.536228", + "hash": "0xa60325f8518642e3a77c042de519000201b000ddec8961b549cbd14b108a1cce", + "oid": 207921384254, + "crossed": true, + "fee": "0.002492", + "tid": 997049739207640, + "cloid": "0x00000000000000000000001591000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107904.0", + "sz": "0.00011", + "side": "B", + "time": 1761028079664, + "startPosition": "-457.75627", + "dir": "Close Short", + "closedPnl": "0.536118", + "hash": "0xa60325f8518642e3a77c042de519000201b000ddec8961b549cbd14b108a1cce", + "oid": 207921384254, + "crossed": true, + "fee": "0.002492", + "tid": 1014789488889146, + "cloid": "0x00000000000000000000001591000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107905.0", + "sz": "0.00011", + "side": "B", + "time": 1761028079664, + "startPosition": "-457.75616", + "dir": "Close Short", + "closedPnl": "0.536008", + "hash": "0xa60325f8518642e3a77c042de519000201b000ddec8961b549cbd14b108a1cce", + "oid": 207921384254, + "crossed": true, + "fee": "0.002492", + "tid": 745673631499718, + "cloid": "0x00000000000000000000001591000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107905.0", + "sz": "0.09184", + "side": "B", + "time": 1761028079664, + "startPosition": "-457.75605", + "dir": "Close Short", + "closedPnl": "447.517952", + "hash": "0xa60325f8518642e3a77c042de519000201b000ddec8961b549cbd14b108a1cce", + "oid": 207921384254, + "crossed": true, + "fee": "2.081098", + "tid": 4464952163036, + "cloid": "0x00000000000000000000001591000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107908.0", + "sz": "0.00011", + "side": "B", + "time": 1761028082169, + "startPosition": "-457.66421", + "dir": "Close Short", + "closedPnl": "0.535678", + "hash": "0xc5106b6f7f348b4ac68a042de519200201a300551a37aa1c68d916c23e386535", + "oid": 207921409143, + "crossed": true, + "fee": "0.002492", + "tid": 332676864952306, + "cloid": "0x00000000000000000000001591000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107908.0", + "sz": "0.09252", + "side": "B", + "time": 1761028082169, + "startPosition": "-457.6641", + "dir": "Close Short", + "closedPnl": "450.553896", + "hash": "0xc5106b6f7f348b4ac68a042de519200201a300551a37aa1c68d916c23e386535", + "oid": 207921409143, + "crossed": true, + "fee": "2.096566", + "tid": 837650380332569, + "cloid": "0x00000000000000000000001591000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107898.0", + "sz": "0.00011", + "side": "B", + "time": 1761028092545, + "startPosition": "-457.57158", + "dir": "Close Short", + "closedPnl": "0.536778", + "hash": "0x24016cc624d01ad2257b042de519a402017900abbfd339a4c7ca1818e3d3f4bc", + "oid": 207921516404, + "crossed": true, + "fee": "0.002492", + "tid": 118681037538481, + "cloid": "0x00000000000000000000001591000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107898.0", + "sz": "0.00014", + "side": "B", + "time": 1761028092545, + "startPosition": "-457.57147", + "dir": "Close Short", + "closedPnl": "0.683172", + "hash": "0x24016cc624d01ad2257b042de519a402017900abbfd339a4c7ca1818e3d3f4bc", + "oid": 207921516404, + "crossed": true, + "fee": "0.003172", + "tid": 60356699580445, + "cloid": "0x00000000000000000000001591000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107899.0", + "sz": "0.00011", + "side": "B", + "time": 1761028092545, + "startPosition": "-457.57133", + "dir": "Close Short", + "closedPnl": "0.536668", + "hash": "0x24016cc624d01ad2257b042de519a402017900abbfd339a4c7ca1818e3d3f4bc", + "oid": 207921516404, + "crossed": true, + "fee": "0.002492", + "tid": 501023693320213, + "cloid": "0x00000000000000000000001591000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107900.0", + "sz": "0.09228", + "side": "B", + "time": 1761028092545, + "startPosition": "-457.57122", + "dir": "Close Short", + "closedPnl": "450.123384", + "hash": "0x24016cc624d01ad2257b042de519a402017900abbfd339a4c7ca1818e3d3f4bc", + "oid": 207921516404, + "crossed": true, + "fee": "2.090972", + "tid": 793215229487001, + "cloid": "0x00000000000000000000001591000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107901.0", + "sz": "0.09264", + "side": "B", + "time": 1761028102693, + "startPosition": "-457.47894", + "dir": "Close Short", + "closedPnl": "451.786752", + "hash": "0x5926aebe7e13a0805aa0042de51a1902012400a41916bf52fcef5a113d177a6a", + "oid": 207921573121, + "crossed": true, + "fee": "2.099149", + "tid": 696430102566593, + "cloid": "0x00000000000000000000001591000168", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107912.0", + "sz": "0.09264", + "side": "B", + "time": 1761028112794, + "startPosition": "-457.3863", + "dir": "Close Short", + "closedPnl": "450.767712", + "hash": "0x9a599645c1ded36e9bd3042de51a90020a2d002b5cd1f2403e22419880d2ad59", + "oid": 207921654180, + "crossed": true, + "fee": "2.099363", + "tid": 694513267165916, + "cloid": "0x00000000000000000000001591000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107901.0", + "sz": "0.09264", + "side": "B", + "time": 1761028114170, + "startPosition": "-457.29366", + "dir": "Close Short", + "closedPnl": "451.786752", + "hash": "0x0b2c4687ada9fb750ca6042de51aa3020553006d48ad1a47aef4f1da6cadd55f", + "oid": 207921679309, + "crossed": true, + "fee": "2.099149", + "tid": 602083096266629, + "cloid": "0x00000000000000000000001591000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107934.0", + "sz": "0.09261", + "side": "B", + "time": 1761028116359, + "startPosition": "-457.20102", + "dir": "Close Short", + "closedPnl": "448.584318", + "hash": "0x051a929cd80f2fab0694042de51ac0020598008273024e7da8e33def97030995", + "oid": 207921730571, + "crossed": true, + "fee": "2.099111", + "tid": 127231961121322, + "cloid": "0x00000000000000000000001591000171", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107936.0", + "sz": "0.0001", + "side": "B", + "time": 1761028122928, + "startPosition": "-457.10841", + "dir": "Close Short", + "closedPnl": "0.48418", + "hash": "0x02cfc73d5187720b0449042de51b1402044c0022ec8a90dda6987290108b4bf5", + "oid": 207921826610, + "crossed": true, + "fee": "0.002266", + "tid": 128872323267025, + "cloid": "0x00000000000000000000001591000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107937.0", + "sz": "0.00011", + "side": "B", + "time": 1761028122928, + "startPosition": "-457.10831", + "dir": "Close Short", + "closedPnl": "0.532488", + "hash": "0x02cfc73d5187720b0449042de51b1402044c0022ec8a90dda6987290108b4bf5", + "oid": 207921826610, + "crossed": true, + "fee": "0.002493", + "tid": 165882184344419, + "cloid": "0x00000000000000000000001591000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107938.0", + "sz": "0.00011", + "side": "B", + "time": 1761028122928, + "startPosition": "-457.1082", + "dir": "Close Short", + "closedPnl": "0.532378", + "hash": "0x02cfc73d5187720b0449042de51b1402044c0022ec8a90dda6987290108b4bf5", + "oid": 207921826610, + "crossed": true, + "fee": "0.002493", + "tid": 697852315417154, + "cloid": "0x00000000000000000000001591000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107939.0", + "sz": "0.00014", + "side": "B", + "time": 1761028122928, + "startPosition": "-457.10809", + "dir": "Close Short", + "closedPnl": "0.677432", + "hash": "0x02cfc73d5187720b0449042de51b1402044c0022ec8a90dda6987290108b4bf5", + "oid": 207921826610, + "crossed": true, + "fee": "0.003173", + "tid": 919055961404155, + "cloid": "0x00000000000000000000001591000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107939.0", + "sz": "0.00011", + "side": "B", + "time": 1761028122928, + "startPosition": "-457.10795", + "dir": "Close Short", + "closedPnl": "0.532268", + "hash": "0x02cfc73d5187720b0449042de51b1402044c0022ec8a90dda6987290108b4bf5", + "oid": 207921826610, + "crossed": true, + "fee": "0.002493", + "tid": 387973991378436, + "cloid": "0x00000000000000000000001591000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107939.0", + "sz": "0.09204", + "side": "B", + "time": 1761028122928, + "startPosition": "-457.10784", + "dir": "Close Short", + "closedPnl": "445.363152", + "hash": "0x02cfc73d5187720b0449042de51b1402044c0022ec8a90dda6987290108b4bf5", + "oid": 207921826610, + "crossed": true, + "fee": "2.086288", + "tid": 157286566282840, + "cloid": "0x00000000000000000000001591000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107939.0", + "sz": "0.00927", + "side": "B", + "time": 1761028126249, + "startPosition": "-457.0158", + "dir": "Close Short", + "closedPnl": "44.855676", + "hash": "0x45b02b13f52873da4729042de51b3a02055800f9902b92ace978d666b42c4dc4", + "oid": 207921870415, + "crossed": true, + "fee": "0.210124", + "tid": 252883286980253, + "cloid": "0x00000000000000000000001591000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107939.0", + "sz": "0.0001", + "side": "B", + "time": 1761028126249, + "startPosition": "-457.00653", + "dir": "Close Short", + "closedPnl": "0.48388", + "hash": "0x45b02b13f52873da4729042de51b3a02055800f9902b92ace978d666b42c4dc4", + "oid": 207921870415, + "crossed": true, + "fee": "0.002266", + "tid": 77462379907059, + "cloid": "0x00000000000000000000001591000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107939.0", + "sz": "0.08323", + "side": "B", + "time": 1761028126249, + "startPosition": "-457.00643", + "dir": "Close Short", + "closedPnl": "402.733324", + "hash": "0x45b02b13f52873da4729042de51b3a02055800f9902b92ace978d666b42c4dc4", + "oid": 207921870415, + "crossed": true, + "fee": "1.88659", + "tid": 143457977732182, + "cloid": "0x00000000000000000000001591000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107940.0", + "sz": "0.0048", + "side": "B", + "time": 1761028130460, + "startPosition": "-456.9232", + "dir": "Close Short", + "closedPnl": "23.22144", + "hash": "0xd62689a79d01bb29d7a0042de51b6e020282008d3804d9fb79ef34fa5c059514", + "oid": 207921908203, + "crossed": true, + "fee": "0.108803", + "tid": 1056244717607083, + "cloid": "0x00000000000000000000001591000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107940.0", + "sz": "0.00011", + "side": "B", + "time": 1761028130460, + "startPosition": "-456.9184", + "dir": "Close Short", + "closedPnl": "0.532158", + "hash": "0xd62689a79d01bb29d7a0042de51b6e020282008d3804d9fb79ef34fa5c059514", + "oid": 207921908203, + "crossed": true, + "fee": "0.002493", + "tid": 330097334517618, + "cloid": "0x00000000000000000000001591000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107941.0", + "sz": "0.00011", + "side": "B", + "time": 1761028130460, + "startPosition": "-456.91829", + "dir": "Close Short", + "closedPnl": "0.532048", + "hash": "0xd62689a79d01bb29d7a0042de51b6e020282008d3804d9fb79ef34fa5c059514", + "oid": 207921908203, + "crossed": true, + "fee": "0.002493", + "tid": 198349341410647, + "cloid": "0x00000000000000000000001591000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107941.0", + "sz": "0.08757", + "side": "B", + "time": 1761028130460, + "startPosition": "-456.91818", + "dir": "Close Short", + "closedPnl": "423.558576", + "hash": "0xd62689a79d01bb29d7a0042de51b6e020282008d3804d9fb79ef34fa5c059514", + "oid": 207921908203, + "crossed": true, + "fee": "1.985002", + "tid": 118029700188605, + "cloid": "0x00000000000000000000001591000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107960.0", + "sz": "0.05174", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.83061", + "dir": "Close Short", + "closedPnl": "249.272972", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "1.173028", + "tid": 363621985692076, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107961.0", + "sz": "0.00011", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.77887", + "dir": "Close Short", + "closedPnl": "0.529848", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.002493", + "tid": 887471064767692, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107962.0", + "sz": "0.00011", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.77876", + "dir": "Close Short", + "closedPnl": "0.529738", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.002493", + "tid": 33137049732244, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107963.0", + "sz": "0.00011", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.77865", + "dir": "Close Short", + "closedPnl": "0.529628", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.002493", + "tid": 337918700229217, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107964.0", + "sz": "0.00014", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.77854", + "dir": "Close Short", + "closedPnl": "0.673932", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.003174", + "tid": 773327552938013, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107964.0", + "sz": "0.00011", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.7784", + "dir": "Close Short", + "closedPnl": "0.529518", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.002493", + "tid": 606355055438391, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107965.0", + "sz": "0.00489", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.77829", + "dir": "Close Short", + "closedPnl": "23.534592", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.110869", + "tid": 939411783409784, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107965.0", + "sz": "0.00011", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.7734", + "dir": "Close Short", + "closedPnl": "0.529408", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.002493", + "tid": 824905069408551, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107966.0", + "sz": "0.00011", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.77329", + "dir": "Close Short", + "closedPnl": "0.529298", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.002494", + "tid": 568710014232467, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107967.0", + "sz": "0.00399", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.77318", + "dir": "Close Short", + "closedPnl": "19.195092", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.090465", + "tid": 322631881339514, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107967.0", + "sz": "0.00011", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.76919", + "dir": "Close Short", + "closedPnl": "0.529188", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.002494", + "tid": 865374977427859, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107968.0", + "sz": "0.00014", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.76908", + "dir": "Close Short", + "closedPnl": "0.673372", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.003174", + "tid": 671428933378707, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107968.0", + "sz": "0.00027", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.76894", + "dir": "Close Short", + "closedPnl": "1.298646", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.006121", + "tid": 402454350573193, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107968.0", + "sz": "0.00011", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.76867", + "dir": "Close Short", + "closedPnl": "0.529078", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.002494", + "tid": 292006634091976, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107969.0", + "sz": "0.00011", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.76856", + "dir": "Close Short", + "closedPnl": "0.528968", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.002494", + "tid": 722042893786884, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107969.0", + "sz": "0.00018", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.76845", + "dir": "Close Short", + "closedPnl": "0.865584", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.004081", + "tid": 480896721243297, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107970.0", + "sz": "0.00011", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.76827", + "dir": "Close Short", + "closedPnl": "0.528858", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.002494", + "tid": 294912616622256, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107970.0", + "sz": "0.00721", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.76816", + "dir": "Close Short", + "closedPnl": "34.664238", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.163477", + "tid": 673273789597905, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107971.0", + "sz": "0.00011", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.76095", + "dir": "Close Short", + "closedPnl": "0.528748", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.002494", + "tid": 432922282814847, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107971.0", + "sz": "0.01566", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.76084", + "dir": "Close Short", + "closedPnl": "75.274488", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.355073", + "tid": 573934700929609, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107972.0", + "sz": "0.00014", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.74518", + "dir": "Close Short", + "closedPnl": "0.672812", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.003174", + "tid": 524301867652845, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107972.0", + "sz": "0.00011", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.74504", + "dir": "Close Short", + "closedPnl": "0.528638", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.002494", + "tid": 1040700291196041, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107972.0", + "sz": "0.00691", + "side": "B", + "time": 1761028132115, + "startPosition": "-456.74493", + "dir": "Close Short", + "closedPnl": "33.208078", + "hash": "0xa486ca4b7a34358ca600042de51b840211df00311537545e484f759e39380f77", + "oid": 207921944024, + "crossed": true, + "fee": "0.156678", + "tid": 54625568587706, + "cloid": "0x00000000000000000000001591000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107962.0", + "sz": "0.02968", + "side": "B", + "time": 1761028141152, + "startPosition": "-456.73802", + "dir": "Close Short", + "closedPnl": "142.932944", + "hash": "0xf12fde40a056f805f2a9042de51bf1020fb000263b5a16d894f889935f5ad1f0", + "oid": 207922057056, + "crossed": true, + "fee": "0.672905", + "tid": 1091816477081012, + "cloid": "0x00000000000000000000001591000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107962.0", + "sz": "0.01825", + "side": "B", + "time": 1761028141152, + "startPosition": "-456.70834", + "dir": "Close Short", + "closedPnl": "87.88835", + "hash": "0xf12fde40a056f805f2a9042de51bf1020fb000263b5a16d894f889935f5ad1f0", + "oid": 207922057056, + "crossed": true, + "fee": "0.413764", + "tid": 994210017873935, + "cloid": "0x00000000000000000000001591000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107962.0", + "sz": "0.04464", + "side": "B", + "time": 1761028141152, + "startPosition": "-456.69009", + "dir": "Close Short", + "closedPnl": "214.977312", + "hash": "0xf12fde40a056f805f2a9042de51bf1020fb000263b5a16d894f889935f5ad1f0", + "oid": 207922057056, + "crossed": true, + "fee": "1.012078", + "tid": 904835371611178, + "cloid": "0x00000000000000000000001591000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107953.0", + "sz": "0.09259", + "side": "B", + "time": 1761028151650, + "startPosition": "-456.64545", + "dir": "Close Short", + "closedPnl": "446.728232", + "hash": "0x44ba36d41cc3f3b74633042de51c770202f100b9b7c71289e882e226dbc7cda1", + "oid": 207922190331, + "crossed": true, + "fee": "2.099027", + "tid": 297907775814771, + "cloid": "0x00000000000000000000001591000177", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107953.0", + "sz": "0.09259", + "side": "B", + "time": 1761028153259, + "startPosition": "-456.55286", + "dir": "Close Short", + "closedPnl": "446.728232", + "hash": "0x505454a265b7d0bb51ce042de51c8902037e008800baef8df41cfff524bbaaa5", + "oid": 207922205746, + "crossed": true, + "fee": "2.099027", + "tid": 877691148212427, + "cloid": "0x00000000000000000000001591000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107947.0", + "sz": "0.03895", + "side": "B", + "time": 1761028163267, + "startPosition": "-456.46027", + "dir": "Close Short", + "closedPnl": "188.15966", + "hash": "0xe22ad6d4fe2e8b50e3a4042de51d030203bb00ba9921aa2285f38227bd22653b", + "oid": 207922301135, + "crossed": true, + "fee": "0.882952", + "tid": 249120696148732, + "cloid": "0x00000000000000000000001591000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107947.0", + "sz": "0.05366", + "side": "B", + "time": 1761028163267, + "startPosition": "-456.42132", + "dir": "Close Short", + "closedPnl": "259.220728", + "hash": "0xe22ad6d4fe2e8b50e3a4042de51d030203bb00ba9921aa2285f38227bd22653b", + "oid": 207922301135, + "crossed": true, + "fee": "1.216411", + "tid": 11034835805927, + "cloid": "0x00000000000000000000001591000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107943.0", + "sz": "0.0926", + "side": "B", + "time": 1761028165925, + "startPosition": "-456.36766", + "dir": "Close Short", + "closedPnl": "447.70248", + "hash": "0xd51d7785ba6cdfd4d697042de51d22020144006b556ffea678e622d87960b9bf", + "oid": 207922331296, + "crossed": true, + "fee": "2.099059", + "tid": 227129983811557, + "cloid": "0x00000000000000000000001591000180", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107943.0", + "sz": "0.0926", + "side": "B", + "time": 1761028175887, + "startPosition": "-456.27506", + "dir": "Close Short", + "closedPnl": "447.70248", + "hash": "0xac7140922289e812adea042de51dad02031f0077bd8d06e45039ebe4e18dc1fd", + "oid": 207922390767, + "crossed": true, + "fee": "2.099059", + "tid": 914353661421336, + "cloid": "0x00000000000000000000001591000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107943.0", + "sz": "0.0926", + "side": "B", + "time": 1761028180359, + "startPosition": "-456.18246", + "dir": "Close Short", + "closedPnl": "447.70248", + "hash": "0xba1d3e24ae47d4c9bb96042de51deb020185000a494af39b5de5e9776d4baeb4", + "oid": 207922420980, + "crossed": true, + "fee": "2.099059", + "tid": 42914969851660, + "cloid": "0x00000000000000000000001591000182", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107934.0", + "sz": "0.00016", + "side": "B", + "time": 1761028182378, + "startPosition": "-456.08986", + "dir": "Close Short", + "closedPnl": "0.775008", + "hash": "0x565521050c8c6ccc57ce042de51e0302029100eaa78f8b9efa1dcc57cb8046b6", + "oid": 207922437783, + "crossed": true, + "fee": "0.003626", + "tid": 455141127667119, + "cloid": "0x00000000000000000000001591000183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107934.0", + "sz": "0.02", + "side": "B", + "time": 1761028182378, + "startPosition": "-456.0897", + "dir": "Close Short", + "closedPnl": "96.876", + "hash": "0x565521050c8c6ccc57ce042de51e0302029100eaa78f8b9efa1dcc57cb8046b6", + "oid": 207922437783, + "crossed": true, + "fee": "0.453322", + "tid": 51745712942893, + "cloid": "0x00000000000000000000001591000183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107934.0", + "sz": "0.07244", + "side": "B", + "time": 1761028182378, + "startPosition": "-456.0697", + "dir": "Close Short", + "closedPnl": "350.884872", + "hash": "0x565521050c8c6ccc57ce042de51e0302029100eaa78f8b9efa1dcc57cb8046b6", + "oid": 207922437783, + "crossed": true, + "fee": "1.641935", + "tid": 814861759532733, + "cloid": "0x00000000000000000000001591000183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107934.0", + "sz": "0.05779", + "side": "B", + "time": 1761028184697, + "startPosition": "-455.99726", + "dir": "Close Short", + "closedPnl": "279.923202", + "hash": "0xd548ef5f59a372b9d6c2042de51e1f0203a70044f4a6918b79119ab218a74ca4", + "oid": 207922463658, + "crossed": true, + "fee": "1.309876", + "tid": 47694452255912, + "cloid": "0x00000000000000000000001591000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107934.0", + "sz": "0.03481", + "side": "B", + "time": 1761028184697, + "startPosition": "-455.93947", + "dir": "Close Short", + "closedPnl": "168.612678", + "hash": "0xd548ef5f59a372b9d6c2042de51e1f0203a70044f4a6918b79119ab218a74ca4", + "oid": 207922463658, + "crossed": true, + "fee": "0.789008", + "tid": 422310790965943, + "cloid": "0x00000000000000000000001591000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107934.0", + "sz": "0.09261", + "side": "B", + "time": 1761028195008, + "startPosition": "-455.90466", + "dir": "Close Short", + "closedPnl": "448.584318", + "hash": "0x6bc8818b8e6f3b7d6d42042de51e8f0202a3007129625a4f0f912cde4d631568", + "oid": 207922540097, + "crossed": true, + "fee": "2.099111", + "tid": 1078760465238039, + "cloid": "0x00000000000000000000001591000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107933.0", + "sz": "0.0003", + "side": "B", + "time": 1761028204861, + "startPosition": "-455.81205", + "dir": "Close Short", + "closedPnl": "1.45344", + "hash": "0x068619940dac697f07ff042de51f0c0205860079a8af8851aa4ec4e6cca04369", + "oid": 207922642186, + "crossed": true, + "fee": "0.006799", + "tid": 1101544201928478, + "cloid": "0x00000000000000000000001591000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107933.0", + "sz": "0.08404", + "side": "B", + "time": 1761028204861, + "startPosition": "-455.81175", + "dir": "Close Short", + "closedPnl": "407.156992", + "hash": "0x068619940dac697f07ff042de51f0c0205860079a8af8851aa4ec4e6cca04369", + "oid": 207922642186, + "crossed": true, + "fee": "1.904844", + "tid": 420567963213061, + "cloid": "0x00000000000000000000001591000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107933.0", + "sz": "0.00827", + "side": "B", + "time": 1761028204861, + "startPosition": "-455.72771", + "dir": "Close Short", + "closedPnl": "40.066496", + "hash": "0x068619940dac697f07ff042de51f0c0205860079a8af8851aa4ec4e6cca04369", + "oid": 207922642186, + "crossed": true, + "fee": "0.187447", + "tid": 271993018499784, + "cloid": "0x00000000000000000000001591000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107932.0", + "sz": "0.05603", + "side": "B", + "time": 1761028206613, + "startPosition": "-455.71944", + "dir": "Close Short", + "closedPnl": "271.510174", + "hash": "0x353500990f79fe4336ae042de51f21020582007eaa7d1d15d8fdabebce7dd82d", + "oid": 207922676750, + "crossed": true, + "fee": "1.26996", + "tid": 602598371210124, + "cloid": "0x00000000000000000000001591000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107932.0", + "sz": "0.03659", + "side": "B", + "time": 1761028206613, + "startPosition": "-455.66341", + "dir": "Close Short", + "closedPnl": "177.307822", + "hash": "0x353500990f79fe4336ae042de51f21020582007eaa7d1d15d8fdabebce7dd82d", + "oid": 207922676750, + "crossed": true, + "fee": "0.829338", + "tid": 703457425333328, + "cloid": "0x00000000000000000000001591000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107927.0", + "sz": "0.01988", + "side": "B", + "time": 1761028208371, + "startPosition": "-455.62682", + "dir": "Close Short", + "closedPnl": "96.433904", + "hash": "0xd08fea60ae513e0dd209042de51f3b02019e004649545cdf745895b36d5517f8", + "oid": 207922701823, + "crossed": true, + "fee": "0.450573", + "tid": 204535479987480, + "cloid": "0x00000000000000000000001591000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107927.0", + "sz": "0.07274", + "side": "B", + "time": 1761028208371, + "startPosition": "-455.60694", + "dir": "Close Short", + "closedPnl": "352.847192", + "hash": "0xd08fea60ae513e0dd209042de51f3b02019e004649545cdf745895b36d5517f8", + "oid": 207922701823, + "crossed": true, + "fee": "1.648628", + "tid": 748238320810382, + "cloid": "0x00000000000000000000001591000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107930.0", + "sz": "0.09262", + "side": "B", + "time": 1761028215543, + "startPosition": "-455.5342", + "dir": "Close Short", + "closedPnl": "449.003236", + "hash": "0xe80a931a254ef5bfe984042de51f8c02109000ffc04214918bd33e6ce442cfaa", + "oid": 207922776436, + "crossed": true, + "fee": "2.09926", + "tid": 1015103674792139, + "cloid": "0x00000000000000000000001591000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107941.0", + "sz": "0.00011", + "side": "B", + "time": 1761028218495, + "startPosition": "-455.44158", + "dir": "Close Short", + "closedPnl": "0.532048", + "hash": "0x6958cf99888a041f6ad2042de51fac020844007f238d22f10d217aec478dde0a", + "oid": 207922831669, + "crossed": true, + "fee": "0.002493", + "tid": 890072354003380, + "cloid": "0x00000000000000000000001591000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107942.0", + "sz": "0.00011", + "side": "B", + "time": 1761028218495, + "startPosition": "-455.44147", + "dir": "Close Short", + "closedPnl": "0.531938", + "hash": "0x6958cf99888a041f6ad2042de51fac020844007f238d22f10d217aec478dde0a", + "oid": 207922831669, + "crossed": true, + "fee": "0.002493", + "tid": 130666103218889, + "cloid": "0x00000000000000000000001591000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107943.0", + "sz": "0.00011", + "side": "B", + "time": 1761028218495, + "startPosition": "-455.44136", + "dir": "Close Short", + "closedPnl": "0.531828", + "hash": "0x6958cf99888a041f6ad2042de51fac020844007f238d22f10d217aec478dde0a", + "oid": 207922831669, + "crossed": true, + "fee": "0.002493", + "tid": 118299937462898, + "cloid": "0x00000000000000000000001591000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107943.0", + "sz": "0.00014", + "side": "B", + "time": 1761028218495, + "startPosition": "-455.44125", + "dir": "Close Short", + "closedPnl": "0.676872", + "hash": "0x6958cf99888a041f6ad2042de51fac020844007f238d22f10d217aec478dde0a", + "oid": 207922831669, + "crossed": true, + "fee": "0.003173", + "tid": 520422265099138, + "cloid": "0x00000000000000000000001591000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107944.0", + "sz": "0.00011", + "side": "B", + "time": 1761028218495, + "startPosition": "-455.44111", + "dir": "Close Short", + "closedPnl": "0.531718", + "hash": "0x6958cf99888a041f6ad2042de51fac020844007f238d22f10d217aec478dde0a", + "oid": 207922831669, + "crossed": true, + "fee": "0.002493", + "tid": 416931107020524, + "cloid": "0x00000000000000000000001591000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107945.0", + "sz": "0.00011", + "side": "B", + "time": 1761028218495, + "startPosition": "-455.441", + "dir": "Close Short", + "closedPnl": "0.531608", + "hash": "0x6958cf99888a041f6ad2042de51fac020844007f238d22f10d217aec478dde0a", + "oid": 207922831669, + "crossed": true, + "fee": "0.002493", + "tid": 964689742601369, + "cloid": "0x00000000000000000000001591000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107945.0", + "sz": "0.001", + "side": "B", + "time": 1761028218495, + "startPosition": "-455.44089", + "dir": "Close Short", + "closedPnl": "4.8328", + "hash": "0x6958cf99888a041f6ad2042de51fac020844007f238d22f10d217aec478dde0a", + "oid": 207922831669, + "crossed": true, + "fee": "0.022668", + "tid": 109669631379334, + "cloid": "0x00000000000000000000001591000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107946.0", + "sz": "0.00011", + "side": "B", + "time": 1761028218495, + "startPosition": "-455.43989", + "dir": "Close Short", + "closedPnl": "0.531498", + "hash": "0x6958cf99888a041f6ad2042de51fac020844007f238d22f10d217aec478dde0a", + "oid": 207922831669, + "crossed": true, + "fee": "0.002493", + "tid": 669708682516555, + "cloid": "0x00000000000000000000001591000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107946.0", + "sz": "0.01594", + "side": "B", + "time": 1761028218495, + "startPosition": "-455.43978", + "dir": "Close Short", + "closedPnl": "77.018892", + "hash": "0x6958cf99888a041f6ad2042de51fac020844007f238d22f10d217aec478dde0a", + "oid": 207922831669, + "crossed": true, + "fee": "0.361338", + "tid": 39190796305291, + "cloid": "0x00000000000000000000001591000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107947.0", + "sz": "0.00011", + "side": "B", + "time": 1761028218495, + "startPosition": "-455.42384", + "dir": "Close Short", + "closedPnl": "0.531388", + "hash": "0x6958cf99888a041f6ad2042de51fac020844007f238d22f10d217aec478dde0a", + "oid": 207922831669, + "crossed": true, + "fee": "0.002493", + "tid": 501473682560928, + "cloid": "0x00000000000000000000001591000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107947.0", + "sz": "0.00014", + "side": "B", + "time": 1761028218495, + "startPosition": "-455.42373", + "dir": "Close Short", + "closedPnl": "0.676312", + "hash": "0x6958cf99888a041f6ad2042de51fac020844007f238d22f10d217aec478dde0a", + "oid": 207922831669, + "crossed": true, + "fee": "0.003173", + "tid": 527736913538712, + "cloid": "0x00000000000000000000001591000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107948.0", + "sz": "0.00011", + "side": "B", + "time": 1761028218495, + "startPosition": "-455.42359", + "dir": "Close Short", + "closedPnl": "0.531278", + "hash": "0x6958cf99888a041f6ad2042de51fac020844007f238d22f10d217aec478dde0a", + "oid": 207922831669, + "crossed": true, + "fee": "0.002493", + "tid": 594413939115907, + "cloid": "0x00000000000000000000001591000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107949.0", + "sz": "0.00011", + "side": "B", + "time": 1761028218495, + "startPosition": "-455.42348", + "dir": "Close Short", + "closedPnl": "0.531168", + "hash": "0x6958cf99888a041f6ad2042de51fac020844007f238d22f10d217aec478dde0a", + "oid": 207922831669, + "crossed": true, + "fee": "0.002493", + "tid": 459871815708892, + "cloid": "0x00000000000000000000001591000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107950.0", + "sz": "0.00011", + "side": "B", + "time": 1761028218495, + "startPosition": "-455.42337", + "dir": "Close Short", + "closedPnl": "0.531058", + "hash": "0x6958cf99888a041f6ad2042de51fac020844007f238d22f10d217aec478dde0a", + "oid": 207922831669, + "crossed": true, + "fee": "0.002493", + "tid": 184386387549449, + "cloid": "0x00000000000000000000001591000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107950.0", + "sz": "0.07428", + "side": "B", + "time": 1761028218495, + "startPosition": "-455.42326", + "dir": "Close Short", + "closedPnl": "358.608984", + "hash": "0x6958cf99888a041f6ad2042de51fac020844007f238d22f10d217aec478dde0a", + "oid": 207922831669, + "crossed": true, + "fee": "1.68389", + "tid": 938096519350169, + "cloid": "0x00000000000000000000001591000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107999.0", + "sz": "0.09255", + "side": "B", + "time": 1761028220360, + "startPosition": "-455.34898", + "dir": "Close Short", + "closedPnl": "442.27794", + "hash": "0x16b88a4b004ba4531832042de51fc602031e00309b4ec325ba81359dbf4f7e3d", + "oid": 207922881505, + "crossed": true, + "fee": "2.099014", + "tid": 23130220043200, + "cloid": "0x00000000000000000000001591000191", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108020.0", + "sz": "0.09254", + "side": "B", + "time": 1761028222695, + "startPosition": "-455.25643", + "dir": "Close Short", + "closedPnl": "440.286812", + "hash": "0x3094aa8071870000320e042de51fe70204ed00660c8a1ed2d45d55d3308ad9ea", + "oid": 207922930773, + "crossed": true, + "fee": "2.099195", + "tid": 950339744249768, + "cloid": "0x00000000000000000000001591000192", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108025.0", + "sz": "0.09253", + "side": "B", + "time": 1761028224280, + "startPosition": "-455.16389", + "dir": "Close Short", + "closedPnl": "439.776584", + "hash": "0x024b9f4333b86c6003c5042de51ffa0204690028cebb8b32a6144a95f2bc464a", + "oid": 207922961941, + "crossed": true, + "fee": "2.099066", + "tid": 284263742687550, + "cloid": "0x00000000000000000000001591000193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107999.0", + "sz": "0.09256", + "side": "B", + "time": 1761028226545, + "startPosition": "-455.07136", + "dir": "Close Short", + "closedPnl": "442.325728", + "hash": "0x5eba0541eea8076b6033042de520180203da002789ab263d0282b094adabe156", + "oid": 207923005551, + "crossed": true, + "fee": "2.099241", + "tid": 473351771837375, + "cloid": "0x00000000000000000000001591000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107993.0", + "sz": "0.09256", + "side": "B", + "time": 1761028237791, + "startPosition": "-454.9788", + "dir": "Close Short", + "closedPnl": "442.881088", + "hash": "0xb1395eebbfa5cac6b2b3042de520ad0203c100d15aa8e99855020a3e7ea9a4b1", + "oid": 207923125825, + "crossed": true, + "fee": "2.099124", + "tid": 53101874993250, + "cloid": "0x00000000000000000000001591000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107991.0", + "sz": "0.04039", + "side": "B", + "time": 1761028240832, + "startPosition": "-454.88624", + "dir": "Close Short", + "closedPnl": "193.338852", + "hash": "0x8a3f6be82aaee1b78bb9042de520d80209da00cdc5a200892e08173ae9a2bba2", + "oid": 207923169095, + "crossed": true, + "fee": "0.915968", + "tid": 416592800813402, + "cloid": "0x00000000000000000000001591000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107991.0", + "sz": "0.00107", + "side": "B", + "time": 1761028240832, + "startPosition": "-454.84585", + "dir": "Close Short", + "closedPnl": "5.121876", + "hash": "0x8a3f6be82aaee1b78bb9042de520d80209da00cdc5a200892e08173ae9a2bba2", + "oid": 207923169095, + "crossed": true, + "fee": "0.024265", + "tid": 834314811512443, + "cloid": "0x00000000000000000000001591000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107991.0", + "sz": "0.05111", + "side": "B", + "time": 1761028240832, + "startPosition": "-454.84478", + "dir": "Close Short", + "closedPnl": "244.653348", + "hash": "0x8a3f6be82aaee1b78bb9042de520d80209da00cdc5a200892e08173ae9a2bba2", + "oid": 207923169095, + "crossed": true, + "fee": "1.159078", + "tid": 987071310608161, + "cloid": "0x00000000000000000000001591000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107971.0", + "sz": "0.09259", + "side": "B", + "time": 1761028242451, + "startPosition": "-454.79367", + "dir": "Close Short", + "closedPnl": "445.061612", + "hash": "0xaba522b948a0ccacad1e042de520f102027d009ee3a3eb7e4f6dce0c07a4a697", + "oid": 207923194967, + "crossed": true, + "fee": "2.099377", + "tid": 1021626433365142, + "cloid": "0x00000000000000000000001591000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107970.0", + "sz": "0.03232", + "side": "B", + "time": 1761028250847, + "startPosition": "-454.70108", + "dir": "Close Short", + "closedPnl": "155.388096", + "hash": "0x1d9c02943907e5fa1f15042de5215f0206cd0079d40b04ccc164ade6f80bbfe4", + "oid": 207923261048, + "crossed": true, + "fee": "0.732813", + "tid": 412006823565941, + "cloid": "0x00000000000000000000001591000198", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107970.0", + "sz": "0.03335", + "side": "B", + "time": 1761028250847, + "startPosition": "-454.66876", + "dir": "Close Short", + "closedPnl": "160.34013", + "hash": "0x1d9c02943907e5fa1f15042de5215f0206cd0079d40b04ccc164ade6f80bbfe4", + "oid": 207923261048, + "crossed": true, + "fee": "0.756167", + "tid": 374588808734785, + "cloid": "0x00000000000000000000001591000198", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107970.0", + "sz": "0.02692", + "side": "B", + "time": 1761028250847, + "startPosition": "-454.63541", + "dir": "Close Short", + "closedPnl": "129.425976", + "hash": "0x1d9c02943907e5fa1f15042de5215f0206cd0079d40b04ccc164ade6f80bbfe4", + "oid": 207923261048, + "crossed": true, + "fee": "0.610376", + "tid": 270456092953240, + "cloid": "0x00000000000000000000001591000198", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107962.0", + "sz": "0.05947", + "side": "B", + "time": 1761028252466, + "startPosition": "-454.60849", + "dir": "Close Short", + "closedPnl": "286.395626", + "hash": "0xafd778105ee1b731b151042de5217102030100f5f9e4d60353a023631de5911c", + "oid": 207923282781, + "crossed": true, + "fee": "1.348305", + "tid": 1092953845969290, + "cloid": "0x00000000000000000000001591000199", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107962.0", + "sz": "0.03313", + "side": "B", + "time": 1761028252466, + "startPosition": "-454.54902", + "dir": "Close Short", + "closedPnl": "159.547454", + "hash": "0xafd778105ee1b731b151042de5217102030100f5f9e4d60353a023631de5911c", + "oid": 207923282781, + "crossed": true, + "fee": "0.751124", + "tid": 808589157660132, + "cloid": "0x00000000000000000000001591000199", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107957.0", + "sz": "0.09261", + "side": "B", + "time": 1761028254031, + "startPosition": "-454.51589", + "dir": "Close Short", + "closedPnl": "446.454288", + "hash": "0xf35adf1c783b06a2f4d4042de521850204fa0002133e257597238a6f373ee08d", + "oid": 207923307997, + "crossed": true, + "fee": "2.099558", + "tid": 318749087721117, + "cloid": "0x00000000000000000000001591000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107839.0", + "sz": "0.0927", + "side": "B", + "time": 1761029231201, + "startPosition": "-454.42328", + "dir": "Close Short", + "closedPnl": "457.82676", + "hash": "0xc242351cd1e998e3c3bb042de551830201d700026cecb7b5660ae06f90ed72ce", + "oid": 207934179771, + "crossed": true, + "fee": "2.099301", + "tid": 708838456021659, + "cloid": "0x00000000000000000000001592000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107839.0", + "sz": "0.0927", + "side": "B", + "time": 1761029232492, + "startPosition": "-454.33058", + "dir": "Close Short", + "closedPnl": "457.82676", + "hash": "0xcfa71ca16b684d2dd120042de5519402011a0087066b6bff736fc7f42a6c2718", + "oid": 207934183875, + "crossed": true, + "fee": "2.099301", + "tid": 1100245791677128, + "cloid": "0x00000000000000000000001592000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107839.0", + "sz": "0.0927", + "side": "B", + "time": 1761029237302, + "startPosition": "-454.23788", + "dir": "Close Short", + "closedPnl": "457.82676", + "hash": "0xe141693db3b0bbbde2bb042de551db02014400234eb3da8f850a149072b495a8", + "oid": 207934211599, + "crossed": true, + "fee": "2.099301", + "tid": 628054951393866, + "cloid": "0x00000000000000000000001592000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107839.0", + "sz": "0.01709", + "side": "B", + "time": 1761029238594, + "startPosition": "-454.14518", + "dir": "Close Short", + "closedPnl": "84.404092", + "hash": "0x358511c41f127f2136fe042de551ee0201cb00a9ba159df3d94dbd16de16590b", + "oid": 207934220416, + "crossed": true, + "fee": "0.387023", + "tid": 790942360984069, + "cloid": "0x00000000000000000000001592000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107839.0", + "sz": "0.07561", + "side": "B", + "time": 1761029238594, + "startPosition": "-454.12809", + "dir": "Close Short", + "closedPnl": "373.422668", + "hash": "0x358511c41f127f2136fe042de551ee0201cb00a9ba159df3d94dbd16de16590b", + "oid": 207934220416, + "crossed": true, + "fee": "1.712278", + "tid": 967816402986384, + "cloid": "0x00000000000000000000001592000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107839.0", + "sz": "0.09271", + "side": "B", + "time": 1761029241865, + "startPosition": "-454.05248", + "dir": "Close Short", + "closedPnl": "457.876148", + "hash": "0x16d4e5864a401abf184e042de5521f020141006be5433991ba9d90d90943f4a9", + "oid": 207934235564, + "crossed": true, + "fee": "2.099528", + "tid": 939664535089388, + "cloid": "0x00000000000000000000001592000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107839.0", + "sz": "0.09271", + "side": "B", + "time": 1761029244217, + "startPosition": "-453.95977", + "dir": "Close Short", + "closedPnl": "457.876148", + "hash": "0x48d4672773b3ec284a4e042de5524002028b000d0eb70afaec9d127a32b7c612", + "oid": 207934251463, + "crossed": true, + "fee": "2.099528", + "tid": 472360402952488, + "cloid": "0x00000000000000000000001592000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107839.0", + "sz": "0.02831", + "side": "B", + "time": 1761029246376, + "startPosition": "-453.86706", + "dir": "Close Short", + "closedPnl": "139.817428", + "hash": "0x63a55ff9ddda50e7651f042de5525e02026700df78dd6fb9076e0b4c9cde2ad2", + "oid": 207934269261, + "crossed": true, + "fee": "0.641113", + "tid": 166605599774947, + "cloid": "0x00000000000000000000001592000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107839.0", + "sz": "0.06438", + "side": "B", + "time": 1761029246376, + "startPosition": "-453.83875", + "dir": "Close Short", + "closedPnl": "317.959944", + "hash": "0x63a55ff9ddda50e7651f042de5525e02026700df78dd6fb9076e0b4c9cde2ad2", + "oid": 207934269261, + "crossed": true, + "fee": "1.457961", + "tid": 1044833022021777, + "cloid": "0x00000000000000000000001592000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107841.0", + "sz": "0.00014", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.77437", + "dir": "Close Short", + "closedPnl": "0.691152", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "0.00317", + "tid": 364573111163971, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107841.0", + "sz": "0.00011", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.77423", + "dir": "Close Short", + "closedPnl": "0.543048", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "0.002491", + "tid": 733121588558509, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107842.0", + "sz": "0.00011", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.77412", + "dir": "Close Short", + "closedPnl": "0.542938", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "0.002491", + "tid": 816319416888915, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107843.0", + "sz": "0.00011", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.77401", + "dir": "Close Short", + "closedPnl": "0.542828", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "0.002491", + "tid": 36321879039822, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107844.0", + "sz": "0.00011", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.7739", + "dir": "Close Short", + "closedPnl": "0.542718", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "0.002491", + "tid": 310107175416549, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107845.0", + "sz": "0.00014", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.77379", + "dir": "Close Short", + "closedPnl": "0.690592", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "0.00317", + "tid": 290594812784315, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107845.0", + "sz": "0.00011", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.77365", + "dir": "Close Short", + "closedPnl": "0.542608", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "0.002491", + "tid": 51624778854960, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107846.0", + "sz": "0.00011", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.77354", + "dir": "Close Short", + "closedPnl": "0.542498", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "0.002491", + "tid": 545962725308113, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107847.0", + "sz": "0.00011", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.77343", + "dir": "Close Short", + "closedPnl": "0.542388", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "0.002491", + "tid": 732922138201200, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107848.0", + "sz": "0.00011", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.77332", + "dir": "Close Short", + "closedPnl": "0.542278", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "0.002491", + "tid": 718796052057090, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107849.0", + "sz": "0.00014", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.77321", + "dir": "Close Short", + "closedPnl": "0.690032", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "0.00317", + "tid": 1049775128828593, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107849.0", + "sz": "0.00011", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.77307", + "dir": "Close Short", + "closedPnl": "0.542168", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "0.002491", + "tid": 159484373771664, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107850.0", + "sz": "0.00011", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.77296", + "dir": "Close Short", + "closedPnl": "0.542058", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "0.002491", + "tid": 21777608653829, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107850.0", + "sz": "0.00278", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.77285", + "dir": "Close Short", + "closedPnl": "13.699284", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "0.062962", + "tid": 418010285552803, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107850.0", + "sz": "0.00415", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.77007", + "dir": "Close Short", + "closedPnl": "20.45037", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "0.093991", + "tid": 775269334005062, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107850.0", + "sz": "0.03599", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.76592", + "dir": "Close Short", + "closedPnl": "177.351522", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "0.815119", + "tid": 716989001846610, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107851.0", + "sz": "0.00011", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.72993", + "dir": "Close Short", + "closedPnl": "0.541948", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "0.002491", + "tid": 57720624502606, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107852.0", + "sz": "0.00011", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.72982", + "dir": "Close Short", + "closedPnl": "0.541838", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "0.002491", + "tid": 238766815416591, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107852.0", + "sz": "0.04802", + "side": "B", + "time": 1761029247655, + "startPosition": "-453.72971", + "dir": "Close Short", + "closedPnl": "236.536916", + "hash": "0x081478e3a389c52b098e042de5526e02042a00c93e8ce3fdabdd2436628d9f15", + "oid": 207934280782, + "crossed": true, + "fee": "1.087601", + "tid": 242659841811824, + "cloid": "0x00000000000000000000001592000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107864.0", + "sz": "0.09267", + "side": "B", + "time": 1761029250050, + "startPosition": "-453.68169", + "dir": "Close Short", + "closedPnl": "455.361846", + "hash": "0x61abc26849d825796325042de552910204e8004de4db444b05746dbb08dbff64", + "oid": 207934320795, + "crossed": true, + "fee": "2.099108", + "tid": 474553678120639, + "cloid": "0x00000000000000000000001592000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107864.0", + "sz": "0.09267", + "side": "B", + "time": 1761029253910, + "startPosition": "-453.58902", + "dir": "Close Short", + "closedPnl": "455.361846", + "hash": "0x02d1f04ee04c105a044b042de552c10202f700347b4f2f2ca69a9ba19f4fea44", + "oid": 207934351096, + "crossed": true, + "fee": "2.099108", + "tid": 779668265473242, + "cloid": "0x00000000000000000000001592000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107864.0", + "sz": "0.09268", + "side": "B", + "time": 1761029255154, + "startPosition": "-453.49635", + "dir": "Close Short", + "closedPnl": "455.410984", + "hash": "0x706d3952f695d7b671e6042de552d202028f00389198f6881435e4a5b599b1a1", + "oid": 207934362894, + "crossed": true, + "fee": "2.099335", + "tid": 215655646780543, + "cloid": "0x00000000000000000000001592000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107864.0", + "sz": "0.06871", + "side": "B", + "time": 1761029265161, + "startPosition": "-453.40367", + "dir": "Close Short", + "closedPnl": "337.627198", + "hash": "0x7beb12aad85ff7797d64042de5535402050100907353164b1fb3bdfd9753d164", + "oid": 207934411322, + "crossed": true, + "fee": "1.55638", + "tid": 320698157776730, + "cloid": "0x00000000000000000000001592000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107864.0", + "sz": "0.02397", + "side": "B", + "time": 1761029265161, + "startPosition": "-453.33496", + "dir": "Close Short", + "closedPnl": "117.783786", + "hash": "0x7beb12aad85ff7797d64042de5535402050100907353164b1fb3bdfd9753d164", + "oid": 207934411322, + "crossed": true, + "fee": "0.542955", + "tid": 473805456130012, + "cloid": "0x00000000000000000000001592000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107864.0", + "sz": "0.01861", + "side": "B", + "time": 1761029275613, + "startPosition": "-453.31099", + "dir": "Close Short", + "closedPnl": "91.445818", + "hash": "0xf42560ecbaa192a3f59f042de553de02013c00d255a4b17697ee0c3f79a56c8e", + "oid": 207934454931, + "crossed": true, + "fee": "0.421543", + "tid": 58254496460260, + "cloid": "0x00000000000000000000001592000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107864.0", + "sz": "0.025", + "side": "B", + "time": 1761029275613, + "startPosition": "-453.29238", + "dir": "Close Short", + "closedPnl": "122.845", + "hash": "0xf42560ecbaa192a3f59f042de553de02013c00d255a4b17697ee0c3f79a56c8e", + "oid": 207934454931, + "crossed": true, + "fee": "0.566286", + "tid": 629435119726695, + "cloid": "0x00000000000000000000001592000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107864.0", + "sz": "0.04635", + "side": "B", + "time": 1761029275613, + "startPosition": "-453.26738", + "dir": "Close Short", + "closedPnl": "227.75463", + "hash": "0xf42560ecbaa192a3f59f042de553de02013c00d255a4b17697ee0c3f79a56c8e", + "oid": 207934454931, + "crossed": true, + "fee": "1.049894", + "tid": 302604563877868, + "cloid": "0x00000000000000000000001592000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107864.0", + "sz": "0.00271", + "side": "B", + "time": 1761029275613, + "startPosition": "-453.22103", + "dir": "Close Short", + "closedPnl": "13.316398", + "hash": "0xf42560ecbaa192a3f59f042de553de02013c00d255a4b17697ee0c3f79a56c8e", + "oid": 207934454931, + "crossed": true, + "fee": "0.061385", + "tid": 437047604711260, + "cloid": "0x00000000000000000000001592000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107864.0", + "sz": "0.09267", + "side": "B", + "time": 1761029285855, + "startPosition": "-453.21832", + "dir": "Close Short", + "closedPnl": "455.361846", + "hash": "0x140213f61d17c4cd157b042de554640201dd00dbb81ae39fb7cabf48dc1b9eb7", + "oid": 207934498515, + "crossed": true, + "fee": "2.099108", + "tid": 413958515992615, + "cloid": "0x00000000000000000000001592000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107864.0", + "sz": "0.09267", + "side": "B", + "time": 1761029292109, + "startPosition": "-453.12565", + "dir": "Close Short", + "closedPnl": "455.361846", + "hash": "0xc59e3bbeab50a94ac717042de554b00201e500a44653c81c6966e7116a548335", + "oid": 207934528278, + "crossed": true, + "fee": "2.099108", + "tid": 1076221189166791, + "cloid": "0x00000000000000000000001592000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107864.0", + "sz": "0.00817", + "side": "B", + "time": 1761029295406, + "startPosition": "-453.03298", + "dir": "Close Short", + "closedPnl": "40.145746", + "hash": "0x4e29434efd809e1d4fa2042de554da0201ae00349883bceff1f1eea1bc847807", + "oid": 207934548528, + "crossed": true, + "fee": "0.185062", + "tid": 24884122740827, + "cloid": "0x00000000000000000000001592000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107864.0", + "sz": "0.00011", + "side": "B", + "time": 1761029295406, + "startPosition": "-453.02481", + "dir": "Close Short", + "closedPnl": "0.540518", + "hash": "0x4e29434efd809e1d4fa2042de554da0201ae00349883bceff1f1eea1bc847807", + "oid": 207934548528, + "crossed": true, + "fee": "0.002491", + "tid": 542602247331611, + "cloid": "0x00000000000000000000001592000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107865.0", + "sz": "0.00014", + "side": "B", + "time": 1761029295406, + "startPosition": "-453.0247", + "dir": "Close Short", + "closedPnl": "0.687792", + "hash": "0x4e29434efd809e1d4fa2042de554da0201ae00349883bceff1f1eea1bc847807", + "oid": 207934548528, + "crossed": true, + "fee": "0.003171", + "tid": 940279851682594, + "cloid": "0x00000000000000000000001592000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107865.0", + "sz": "0.00011", + "side": "B", + "time": 1761029295406, + "startPosition": "-453.02456", + "dir": "Close Short", + "closedPnl": "0.540408", + "hash": "0x4e29434efd809e1d4fa2042de554da0201ae00349883bceff1f1eea1bc847807", + "oid": 207934548528, + "crossed": true, + "fee": "0.002491", + "tid": 544082689060951, + "cloid": "0x00000000000000000000001592000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107866.0", + "sz": "0.00011", + "side": "B", + "time": 1761029295406, + "startPosition": "-453.02445", + "dir": "Close Short", + "closedPnl": "0.540298", + "hash": "0x4e29434efd809e1d4fa2042de554da0201ae00349883bceff1f1eea1bc847807", + "oid": 207934548528, + "crossed": true, + "fee": "0.002491", + "tid": 656858109237726, + "cloid": "0x00000000000000000000001592000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107867.0", + "sz": "0.00011", + "side": "B", + "time": 1761029295406, + "startPosition": "-453.02434", + "dir": "Close Short", + "closedPnl": "0.540188", + "hash": "0x4e29434efd809e1d4fa2042de554da0201ae00349883bceff1f1eea1bc847807", + "oid": 207934548528, + "crossed": true, + "fee": "0.002491", + "tid": 537765674607125, + "cloid": "0x00000000000000000000001592000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107868.0", + "sz": "0.00011", + "side": "B", + "time": 1761029295406, + "startPosition": "-453.02423", + "dir": "Close Short", + "closedPnl": "0.540078", + "hash": "0x4e29434efd809e1d4fa2042de554da0201ae00349883bceff1f1eea1bc847807", + "oid": 207934548528, + "crossed": true, + "fee": "0.002491", + "tid": 68309829783294, + "cloid": "0x00000000000000000000001592000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107869.0", + "sz": "0.00011", + "side": "B", + "time": 1761029295406, + "startPosition": "-453.02412", + "dir": "Close Short", + "closedPnl": "0.539968", + "hash": "0x4e29434efd809e1d4fa2042de554da0201ae00349883bceff1f1eea1bc847807", + "oid": 207934548528, + "crossed": true, + "fee": "0.002491", + "tid": 300116582414844, + "cloid": "0x00000000000000000000001592000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107870.0", + "sz": "0.00014", + "side": "B", + "time": 1761029295406, + "startPosition": "-453.02401", + "dir": "Close Short", + "closedPnl": "0.687092", + "hash": "0x4e29434efd809e1d4fa2042de554da0201ae00349883bceff1f1eea1bc847807", + "oid": 207934548528, + "crossed": true, + "fee": "0.003171", + "tid": 66589060614110, + "cloid": "0x00000000000000000000001592000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107870.0", + "sz": "0.00011", + "side": "B", + "time": 1761029295406, + "startPosition": "-453.02387", + "dir": "Close Short", + "closedPnl": "0.539858", + "hash": "0x4e29434efd809e1d4fa2042de554da0201ae00349883bceff1f1eea1bc847807", + "oid": 207934548528, + "crossed": true, + "fee": "0.002491", + "tid": 401614521970750, + "cloid": "0x00000000000000000000001592000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107871.0", + "sz": "0.00011", + "side": "B", + "time": 1761029295406, + "startPosition": "-453.02376", + "dir": "Close Short", + "closedPnl": "0.539748", + "hash": "0x4e29434efd809e1d4fa2042de554da0201ae00349883bceff1f1eea1bc847807", + "oid": 207934548528, + "crossed": true, + "fee": "0.002491", + "tid": 442164516997749, + "cloid": "0x00000000000000000000001592000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107872.0", + "sz": "0.00011", + "side": "B", + "time": 1761029295406, + "startPosition": "-453.02365", + "dir": "Close Short", + "closedPnl": "0.539638", + "hash": "0x4e29434efd809e1d4fa2042de554da0201ae00349883bceff1f1eea1bc847807", + "oid": 207934548528, + "crossed": true, + "fee": "0.002491", + "tid": 690652676921269, + "cloid": "0x00000000000000000000001592000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107873.0", + "sz": "0.00011", + "side": "B", + "time": 1761029295406, + "startPosition": "-453.02354", + "dir": "Close Short", + "closedPnl": "0.539528", + "hash": "0x4e29434efd809e1d4fa2042de554da0201ae00349883bceff1f1eea1bc847807", + "oid": 207934548528, + "crossed": true, + "fee": "0.002491", + "tid": 324188041660757, + "cloid": "0x00000000000000000000001592000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107873.0", + "sz": "0.08312", + "side": "B", + "time": 1761029295406, + "startPosition": "-453.02343", + "dir": "Close Short", + "closedPnl": "407.686976", + "hash": "0x4e29434efd809e1d4fa2042de554da0201ae00349883bceff1f1eea1bc847807", + "oid": 207934548528, + "crossed": true, + "fee": "1.882944", + "tid": 781623913900200, + "cloid": "0x00000000000000000000001592000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107874.0", + "sz": "0.09267", + "side": "B", + "time": 1761029305356, + "startPosition": "-452.94031", + "dir": "Close Short", + "closedPnl": "454.435146", + "hash": "0xab39dbc9ddcaefb6acb3042de5556b0201bd00af78ce0e884f02871c9ccec9a1", + "oid": 207934616988, + "crossed": true, + "fee": "2.099303", + "tid": 420232528640032, + "cloid": "0x00000000000000000000001592000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107874.0", + "sz": "0.00011", + "side": "B", + "time": 1761029315552, + "startPosition": "-452.84764", + "dir": "Close Short", + "closedPnl": "0.539418", + "hash": "0x90bd384ae4e140589236042de555f702094300307fe45f2a3485e39da3e51a43", + "oid": 207934711969, + "crossed": true, + "fee": "0.002491", + "tid": 1052186619422273, + "cloid": "0x00000000000000000000001592000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107875.0", + "sz": "0.00011", + "side": "B", + "time": 1761029315552, + "startPosition": "-452.84753", + "dir": "Close Short", + "closedPnl": "0.539308", + "hash": "0x90bd384ae4e140589236042de555f702094300307fe45f2a3485e39da3e51a43", + "oid": 207934711969, + "crossed": true, + "fee": "0.002491", + "tid": 808427217280407, + "cloid": "0x00000000000000000000001592000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107876.0", + "sz": "0.00011", + "side": "B", + "time": 1761029315552, + "startPosition": "-452.84742", + "dir": "Close Short", + "closedPnl": "0.539198", + "hash": "0x90bd384ae4e140589236042de555f702094300307fe45f2a3485e39da3e51a43", + "oid": 207934711969, + "crossed": true, + "fee": "0.002491", + "tid": 23423856342344, + "cloid": "0x00000000000000000000001592000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107877.0", + "sz": "0.00011", + "side": "B", + "time": 1761029315552, + "startPosition": "-452.84731", + "dir": "Close Short", + "closedPnl": "0.539088", + "hash": "0x90bd384ae4e140589236042de555f702094300307fe45f2a3485e39da3e51a43", + "oid": 207934711969, + "crossed": true, + "fee": "0.002491", + "tid": 437553710156564, + "cloid": "0x00000000000000000000001592000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107878.0", + "sz": "0.00011", + "side": "B", + "time": 1761029315552, + "startPosition": "-452.8472", + "dir": "Close Short", + "closedPnl": "0.538978", + "hash": "0x90bd384ae4e140589236042de555f702094300307fe45f2a3485e39da3e51a43", + "oid": 207934711969, + "crossed": true, + "fee": "0.002491", + "tid": 396649755008927, + "cloid": "0x00000000000000000000001592000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107879.0", + "sz": "0.00011", + "side": "B", + "time": 1761029315552, + "startPosition": "-452.84709", + "dir": "Close Short", + "closedPnl": "0.538868", + "hash": "0x90bd384ae4e140589236042de555f702094300307fe45f2a3485e39da3e51a43", + "oid": 207934711969, + "crossed": true, + "fee": "0.002492", + "tid": 606636515189911, + "cloid": "0x00000000000000000000001592000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107879.0", + "sz": "0.07364", + "side": "B", + "time": 1761029315552, + "startPosition": "-452.84698", + "dir": "Close Short", + "closedPnl": "360.747632", + "hash": "0x90bd384ae4e140589236042de555f702094300307fe45f2a3485e39da3e51a43", + "oid": 207934711969, + "crossed": true, + "fee": "1.668284", + "tid": 627412716698301, + "cloid": "0x00000000000000000000001592000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107880.0", + "sz": "0.01029", + "side": "B", + "time": 1761029315552, + "startPosition": "-452.77334", + "dir": "Close Short", + "closedPnl": "50.398362", + "hash": "0x90bd384ae4e140589236042de555f702094300307fe45f2a3485e39da3e51a43", + "oid": 207934711969, + "crossed": true, + "fee": "0.233117", + "tid": 443552981943462, + "cloid": "0x00000000000000000000001592000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107880.0", + "sz": "0.00808", + "side": "B", + "time": 1761029315552, + "startPosition": "-452.76305", + "dir": "Close Short", + "closedPnl": "39.574224", + "hash": "0x90bd384ae4e140589236042de555f702094300307fe45f2a3485e39da3e51a43", + "oid": 207934711969, + "crossed": true, + "fee": "0.18305", + "tid": 559030761623788, + "cloid": "0x00000000000000000000001592000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.09265", + "side": "B", + "time": 1761029317763, + "startPosition": "-452.75497", + "dir": "Close Short", + "closedPnl": "453.31792", + "hash": "0x6420749dc4c49f95659a042de5560e02013e00835fc7be6707e91ff083c87980", + "oid": 207934734734, + "crossed": true, + "fee": "2.099064", + "tid": 74067680947678, + "cloid": "0x00000000000000000000001592000019", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.09265", + "side": "B", + "time": 1761029319469, + "startPosition": "-452.66232", + "dir": "Close Short", + "closedPnl": "453.31792", + "hash": "0x622146082da398f0639b042de5562002012200edc8a6b7c205e9f15aeca772db", + "oid": 207934743763, + "crossed": true, + "fee": "2.099064", + "tid": 1011055269887792, + "cloid": "0x00000000000000000000001592000020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.09265", + "side": "B", + "time": 1761029320893, + "startPosition": "-452.56967", + "dir": "Close Short", + "closedPnl": "453.31792", + "hash": "0x912e37722baa096f92a7042de556310205ed0057c6ad284134f6e2c4eaade35a", + "oid": 207934748713, + "crossed": true, + "fee": "2.099064", + "tid": 71957584822030, + "cloid": "0x00000000000000000000001592000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.09265", + "side": "B", + "time": 1761029322258, + "startPosition": "-452.47702", + "dir": "Close Short", + "closedPnl": "453.31792", + "hash": "0x6e8c0627ed833bba7005042de556430201e1000d88865a8c1254b17aac8715a5", + "oid": 207934752732, + "crossed": true, + "fee": "2.099064", + "tid": 59704195364626, + "cloid": "0x00000000000000000000001592000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.02034", + "side": "B", + "time": 1761029324354, + "startPosition": "-452.38437", + "dir": "Close Short", + "closedPnl": "99.519552", + "hash": "0x35d25cd4c89cd650374c042de5566002026900ba639ff522d99b08278790b03a", + "oid": 207934760366, + "crossed": true, + "fee": "0.460819", + "tid": 1073244567327592, + "cloid": "0x00000000000000000000001592000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.07232", + "side": "B", + "time": 1761029324354, + "startPosition": "-452.36403", + "dir": "Close Short", + "closedPnl": "353.847296", + "hash": "0x35d25cd4c89cd650374c042de5566002026900ba639ff522d99b08278790b03a", + "oid": 207934760366, + "crossed": true, + "fee": "1.638471", + "tid": 298967893100081, + "cloid": "0x00000000000000000000001592000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107885.0", + "sz": "0.09266", + "side": "B", + "time": 1761029325552, + "startPosition": "-452.29171", + "dir": "Close Short", + "closedPnl": "453.366848", + "hash": "0x710538af58eafb5e727e042de5567201dc005094f3ee1a3014cde40217eed549", + "oid": 207934764528, + "crossed": true, + "fee": "2.099291", + "tid": 722016589010871, + "cloid": "0x00000000000000000000001592000024", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107941.0", + "sz": "0.09265", + "side": "B", + "time": 1761029335051, + "startPosition": "-452.19905", + "dir": "Close Short", + "closedPnl": "448.12952", + "hash": "0xe846712a57d9dd60e9c0042de556e9020910000ff2dcfc328c0f1c7d16ddb74b", + "oid": 207934880265, + "crossed": true, + "fee": "2.100154", + "tid": 353756201641527, + "cloid": "0x00000000000000000000001592000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107938.0", + "sz": "0.04211", + "side": "B", + "time": 1761029337965, + "startPosition": "-452.1064", + "dir": "Close Short", + "closedPnl": "203.803978", + "hash": "0x7a9d5a63948fd4c57c17042de5571002031000492f82f3971e6605b65383aeb0", + "oid": 207934904552, + "crossed": true, + "fee": "0.954506", + "tid": 1093485162357528, + "cloid": "0x00000000000000000000001592000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107938.0", + "sz": "0.05051", + "side": "B", + "time": 1761029337965, + "startPosition": "-452.06429", + "dir": "Close Short", + "closedPnl": "244.458298", + "hash": "0x7a9d5a63948fd4c57c17042de5571002031000492f82f3971e6605b65383aeb0", + "oid": 207934904552, + "crossed": true, + "fee": "1.144909", + "tid": 635934496874257, + "cloid": "0x00000000000000000000001592000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107938.0", + "sz": "0.005", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.01378", + "dir": "Close Short", + "closedPnl": "24.199", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "0.113334", + "tid": 473552104273979, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107938.0", + "sz": "0.00011", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.00878", + "dir": "Close Short", + "closedPnl": "0.532378", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "0.002493", + "tid": 134831428464274, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107939.0", + "sz": "0.00011", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.00867", + "dir": "Close Short", + "closedPnl": "0.532268", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "0.002493", + "tid": 1012046164160686, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107940.0", + "sz": "0.00011", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.00856", + "dir": "Close Short", + "closedPnl": "0.532158", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "0.002493", + "tid": 500933960944548, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107941.0", + "sz": "0.00011", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.00845", + "dir": "Close Short", + "closedPnl": "0.532048", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "0.002493", + "tid": 1042891698752457, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107942.0", + "sz": "0.00011", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.00834", + "dir": "Close Short", + "closedPnl": "0.531938", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "0.002493", + "tid": 41049307185232, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107943.0", + "sz": "0.00011", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.00823", + "dir": "Close Short", + "closedPnl": "0.531828", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "0.002493", + "tid": 1055628442160320, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107944.0", + "sz": "0.00011", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.00812", + "dir": "Close Short", + "closedPnl": "0.531718", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "0.002493", + "tid": 267056918511438, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107945.0", + "sz": "0.00011", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.00801", + "dir": "Close Short", + "closedPnl": "0.531608", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "0.002493", + "tid": 147770723198772, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107946.0", + "sz": "0.00011", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.0079", + "dir": "Close Short", + "closedPnl": "0.531498", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "0.002493", + "tid": 412509973467904, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107947.0", + "sz": "0.00011", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.00779", + "dir": "Close Short", + "closedPnl": "0.531388", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "0.002493", + "tid": 626889370371554, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107947.0", + "sz": "0.00014", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.00768", + "dir": "Close Short", + "closedPnl": "0.676312", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "0.003173", + "tid": 84153247038681, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107948.0", + "sz": "0.00011", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.00754", + "dir": "Close Short", + "closedPnl": "0.531278", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "0.002493", + "tid": 1111709693695724, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107949.0", + "sz": "0.00011", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.00743", + "dir": "Close Short", + "closedPnl": "0.531168", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "0.002493", + "tid": 495912832608769, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107950.0", + "sz": "0.00011", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.00732", + "dir": "Close Short", + "closedPnl": "0.531058", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "0.002493", + "tid": 402919516644400, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107951.0", + "sz": "0.00011", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.00721", + "dir": "Close Short", + "closedPnl": "0.530948", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "0.002493", + "tid": 76236192740194, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107952.0", + "sz": "0.00011", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.0071", + "dir": "Close Short", + "closedPnl": "0.530838", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "0.002493", + "tid": 399273912593650, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107952.0", + "sz": "0.00014", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.00699", + "dir": "Close Short", + "closedPnl": "0.675612", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "0.003173", + "tid": 365430448563764, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107952.0", + "sz": "0.08568", + "side": "B", + "time": 1761029341669, + "startPosition": "-452.00685", + "dir": "Close Short", + "closedPnl": "413.474544", + "hash": "0x6d5b0f0dcc7a314e6ed4042de55740020af700f3677d50201123ba608b7e0b39", + "oid": 207934945506, + "crossed": true, + "fee": "1.942358", + "tid": 517698663211077, + "cloid": "0x00000000000000000000001592000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107969.0", + "sz": "0.01263", + "side": "B", + "time": 1761029345054, + "startPosition": "-451.92117", + "dir": "Close Short", + "closedPnl": "60.735144", + "hash": "0x4959823081627a334ad3042de5576c02024200161c659905ed222d834066541d", + "oid": 207934999550, + "crossed": true, + "fee": "0.286366", + "tid": 544384838263305, + "cloid": "0x00000000000000000000001592000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107969.0", + "sz": "0.00011", + "side": "B", + "time": 1761029345054, + "startPosition": "-451.90854", + "dir": "Close Short", + "closedPnl": "0.528968", + "hash": "0x4959823081627a334ad3042de5576c02024200161c659905ed222d834066541d", + "oid": 207934999550, + "crossed": true, + "fee": "0.002494", + "tid": 584491482208447, + "cloid": "0x00000000000000000000001592000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107970.0", + "sz": "0.00011", + "side": "B", + "time": 1761029345054, + "startPosition": "-451.90843", + "dir": "Close Short", + "closedPnl": "0.528858", + "hash": "0x4959823081627a334ad3042de5576c02024200161c659905ed222d834066541d", + "oid": 207934999550, + "crossed": true, + "fee": "0.002494", + "tid": 1059338763589999, + "cloid": "0x00000000000000000000001592000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107971.0", + "sz": "0.00011", + "side": "B", + "time": 1761029345054, + "startPosition": "-451.90832", + "dir": "Close Short", + "closedPnl": "0.528748", + "hash": "0x4959823081627a334ad3042de5576c02024200161c659905ed222d834066541d", + "oid": 207934999550, + "crossed": true, + "fee": "0.002494", + "tid": 508383182894959, + "cloid": "0x00000000000000000000001592000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107972.0", + "sz": "0.00011", + "side": "B", + "time": 1761029345054, + "startPosition": "-451.90821", + "dir": "Close Short", + "closedPnl": "0.528638", + "hash": "0x4959823081627a334ad3042de5576c02024200161c659905ed222d834066541d", + "oid": 207934999550, + "crossed": true, + "fee": "0.002494", + "tid": 446145118620671, + "cloid": "0x00000000000000000000001592000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107973.0", + "sz": "0.00011", + "side": "B", + "time": 1761029345054, + "startPosition": "-451.9081", + "dir": "Close Short", + "closedPnl": "0.528528", + "hash": "0x4959823081627a334ad3042de5576c02024200161c659905ed222d834066541d", + "oid": 207934999550, + "crossed": true, + "fee": "0.002494", + "tid": 699638464043574, + "cloid": "0x00000000000000000000001592000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107974.0", + "sz": "0.00011", + "side": "B", + "time": 1761029345054, + "startPosition": "-451.90799", + "dir": "Close Short", + "closedPnl": "0.528418", + "hash": "0x4959823081627a334ad3042de5576c02024200161c659905ed222d834066541d", + "oid": 207934999550, + "crossed": true, + "fee": "0.002494", + "tid": 1076766229436542, + "cloid": "0x00000000000000000000001592000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107975.0", + "sz": "0.00011", + "side": "B", + "time": 1761029345054, + "startPosition": "-451.90788", + "dir": "Close Short", + "closedPnl": "0.528308", + "hash": "0x4959823081627a334ad3042de5576c02024200161c659905ed222d834066541d", + "oid": 207934999550, + "crossed": true, + "fee": "0.002494", + "tid": 1017568963358194, + "cloid": "0x00000000000000000000001592000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107976.0", + "sz": "0.00014", + "side": "B", + "time": 1761029345054, + "startPosition": "-451.90777", + "dir": "Close Short", + "closedPnl": "0.672252", + "hash": "0x4959823081627a334ad3042de5576c02024200161c659905ed222d834066541d", + "oid": 207934999550, + "crossed": true, + "fee": "0.003174", + "tid": 600446955139488, + "cloid": "0x00000000000000000000001592000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107976.0", + "sz": "0.00011", + "side": "B", + "time": 1761029345054, + "startPosition": "-451.90763", + "dir": "Close Short", + "closedPnl": "0.528198", + "hash": "0x4959823081627a334ad3042de5576c02024200161c659905ed222d834066541d", + "oid": 207934999550, + "crossed": true, + "fee": "0.002494", + "tid": 211628216850226, + "cloid": "0x00000000000000000000001592000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107976.0", + "sz": "0.07893", + "side": "B", + "time": 1761029345054, + "startPosition": "-451.90752", + "dir": "Close Short", + "closedPnl": "379.006074", + "hash": "0x4959823081627a334ad3042de5576c02024200161c659905ed222d834066541d", + "oid": 207934999550, + "crossed": true, + "fee": "1.789734", + "tid": 816108531327793, + "cloid": "0x00000000000000000000001592000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107994.0", + "sz": "0.0457", + "side": "B", + "time": 1761029346648, + "startPosition": "-451.82859", + "dir": "Close Short", + "closedPnl": "218.61966", + "hash": "0x49061403ca359dcf4a7f042de5578202066900e96538bca1eccebf56893977b9", + "oid": 207935024261, + "crossed": true, + "fee": "1.036418", + "tid": 17170207720106, + "cloid": "0x00000000000000000000001592000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107994.0", + "sz": "0.00011", + "side": "B", + "time": 1761029346648, + "startPosition": "-451.78289", + "dir": "Close Short", + "closedPnl": "0.526218", + "hash": "0x49061403ca359dcf4a7f042de5578202066900e96538bca1eccebf56893977b9", + "oid": 207935024261, + "crossed": true, + "fee": "0.002494", + "tid": 704571693469519, + "cloid": "0x00000000000000000000001592000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107995.0", + "sz": "0.03599", + "side": "B", + "time": 1761029346648, + "startPosition": "-451.78278", + "dir": "Close Short", + "closedPnl": "172.132972", + "hash": "0x49061403ca359dcf4a7f042de5578202066900e96538bca1eccebf56893977b9", + "oid": 207935024261, + "crossed": true, + "fee": "0.816215", + "tid": 183408998911330, + "cloid": "0x00000000000000000000001592000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107995.0", + "sz": "0.00011", + "side": "B", + "time": 1761029346648, + "startPosition": "-451.74679", + "dir": "Close Short", + "closedPnl": "0.526108", + "hash": "0x49061403ca359dcf4a7f042de5578202066900e96538bca1eccebf56893977b9", + "oid": 207935024261, + "crossed": true, + "fee": "0.002494", + "tid": 801852245081967, + "cloid": "0x00000000000000000000001592000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107996.0", + "sz": "0.00011", + "side": "B", + "time": 1761029346648, + "startPosition": "-451.74668", + "dir": "Close Short", + "closedPnl": "0.525998", + "hash": "0x49061403ca359dcf4a7f042de5578202066900e96538bca1eccebf56893977b9", + "oid": 207935024261, + "crossed": true, + "fee": "0.002494", + "tid": 982263936775727, + "cloid": "0x00000000000000000000001592000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107996.0", + "sz": "0.01055", + "side": "B", + "time": 1761029346648, + "startPosition": "-451.74657", + "dir": "Close Short", + "closedPnl": "50.44799", + "hash": "0x49061403ca359dcf4a7f042de5578202066900e96538bca1eccebf56893977b9", + "oid": 207935024261, + "crossed": true, + "fee": "0.239265", + "tid": 969372693084387, + "cloid": "0x00000000000000000000001592000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108007.0", + "sz": "0.09253", + "side": "B", + "time": 1761029348550, + "startPosition": "-451.73602", + "dir": "Close Short", + "closedPnl": "441.442124", + "hash": "0x8d70001a6e27fdfc8ee9042de5579b0203c30000092b1cce3138ab6d2d2bd7e7", + "oid": 207935050410, + "crossed": true, + "fee": "2.098716", + "tid": 529568448920190, + "cloid": "0x00000000000000000000001592000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108023.0", + "sz": "0.09254", + "side": "B", + "time": 1761029355964, + "startPosition": "-451.64349", + "dir": "Close Short", + "closedPnl": "440.009192", + "hash": "0x3436120b4310547c35af042de557f902049400f0de13734ed7febd5e02142e66", + "oid": 207935111506, + "crossed": true, + "fee": "2.099254", + "tid": 309594843384885, + "cloid": "0x00000000000000000000001592000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108020.0", + "sz": "0.09255", + "side": "B", + "time": 1761029358367, + "startPosition": "-451.55095", + "dir": "Close Short", + "closedPnl": "440.33439", + "hash": "0xff61b2f74d36810200db042de558180204ab00dce8399fd5a32a5e4a0c3a5aed", + "oid": 207935130546, + "crossed": true, + "fee": "2.099422", + "tid": 718043519100540, + "cloid": "0x00000000000000000000001592000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107964.0", + "sz": "0.09259", + "side": "B", + "time": 1761029359770, + "startPosition": "-451.4584", + "dir": "Close Short", + "closedPnl": "445.709742", + "hash": "0xa4fd7bcc603a30e3a677042de5582a020d8100b1fb3d4fb548c6271f1f3e0ace", + "oid": 207935158616, + "crossed": true, + "fee": "2.099241", + "tid": 891470855753582, + "cloid": "0x00000000000000000000001592000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107964.0", + "sz": "0.05501", + "side": "B", + "time": 1761029361186, + "startPosition": "-451.36581", + "dir": "Close Short", + "closedPnl": "264.807138", + "hash": "0x3546a0a17522568436c0042de5583b020293008710257556d90f4bf43426306e", + "oid": 207935184350, + "crossed": true, + "fee": "1.24721", + "tid": 292449886131730, + "cloid": "0x00000000000000000000001592000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107964.0", + "sz": "0.03757", + "side": "B", + "time": 1761029361186, + "startPosition": "-451.3108", + "dir": "Close Short", + "closedPnl": "180.854466", + "hash": "0x3546a0a17522568436c0042de5583b020293008710257556d90f4bf43426306e", + "oid": 207935184350, + "crossed": true, + "fee": "0.851803", + "tid": 246359650041432, + "cloid": "0x00000000000000000000001592000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107974.0", + "sz": "0.09151", + "side": "B", + "time": 1761029364389, + "startPosition": "-451.27323", + "dir": "Close Short", + "closedPnl": "439.595738", + "hash": "0xdd76ef48b76a8b93def0042de55861020319002e526daa65813f9a9b766e657e", + "oid": 207935224938, + "crossed": true, + "fee": "2.074947", + "tid": 352517840880164, + "cloid": "0x00000000000000000000001592000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107974.0", + "sz": "0.00107", + "side": "B", + "time": 1761029364389, + "startPosition": "-451.18172", + "dir": "Close Short", + "closedPnl": "5.140066", + "hash": "0xdd76ef48b76a8b93def0042de55861020319002e526daa65813f9a9b766e657e", + "oid": 207935224938, + "crossed": true, + "fee": "0.024261", + "tid": 790177322559703, + "cloid": "0x00000000000000000000001592000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107974.0", + "sz": "0.09259", + "side": "B", + "time": 1761029371129, + "startPosition": "-451.18065", + "dir": "Close Short", + "closedPnl": "444.783842", + "hash": "0xf29a34f6b98031eff413042de558b90201d300dc548350c29662e04978840bda", + "oid": 207935306898, + "crossed": true, + "fee": "2.099435", + "tid": 956087917668281, + "cloid": "0x00000000000000000000001592000037", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107974.0", + "sz": "0.09259", + "side": "B", + "time": 1761029373574, + "startPosition": "-451.08806", + "dir": "Close Short", + "closedPnl": "444.783842", + "hash": "0xe6e8bd73f8505b28e862042de558d802046d0059935379fa8ab168c6b7543513", + "oid": 207935334219, + "crossed": true, + "fee": "2.099435", + "tid": 132316242694175, + "cloid": "0x00000000000000000000001592000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107974.0", + "sz": "0.09258", + "side": "B", + "time": 1761029375056, + "startPosition": "-450.99547", + "dir": "Close Short", + "closedPnl": "444.735804", + "hash": "0xa5d5625aed75694ca74f042de558ec02022b00408878881e499e0dadac794337", + "oid": 207935360930, + "crossed": true, + "fee": "2.099208", + "tid": 287197723189679, + "cloid": "0x00000000000000000000001592000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107974.0", + "sz": "0.04633", + "side": "B", + "time": 1761029376316, + "startPosition": "-450.90289", + "dir": "Close Short", + "closedPnl": "222.560054", + "hash": "0x4bc892f30346c1594d42042de558fe0202b600d89e49e02bef913e45c24a9b43", + "oid": 207935377736, + "crossed": true, + "fee": "1.050511", + "tid": 943675994950320, + "cloid": "0x00000000000000000000001592000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107974.0", + "sz": "0.04625", + "side": "B", + "time": 1761029376316, + "startPosition": "-450.85656", + "dir": "Close Short", + "closedPnl": "222.17575", + "hash": "0x4bc892f30346c1594d42042de558fe0202b600d89e49e02bef913e45c24a9b43", + "oid": 207935377736, + "crossed": true, + "fee": "1.048697", + "tid": 290732912774197, + "cloid": "0x00000000000000000000001592000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108007.0", + "sz": "0.09257", + "side": "B", + "time": 1761029377936, + "startPosition": "-450.81031", + "dir": "Close Short", + "closedPnl": "441.632956", + "hash": "0xd448339033d609ead5c1042de55916020b2f0075ced928bc7810dee2f2d9e3d5", + "oid": 207935406765, + "crossed": true, + "fee": "2.099623", + "tid": 1097849689996883, + "cloid": "0x00000000000000000000001592000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108007.0", + "sz": "0.09255", + "side": "B", + "time": 1761029379642, + "startPosition": "-450.71774", + "dir": "Close Short", + "closedPnl": "441.53754", + "hash": "0x6a39fefdf265b8496bb3042de5592c02031200e38d68d71b0e02aa50b1699234", + "oid": 207935433705, + "crossed": true, + "fee": "2.09917", + "tid": 831832284784843, + "cloid": "0x00000000000000000000001592000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108009.0", + "sz": "0.00011", + "side": "B", + "time": 1761029389694, + "startPosition": "-450.62519", + "dir": "Close Short", + "closedPnl": "0.524568", + "hash": "0xdf7896744c50907ae0f2042de5599f02038a0059e753af4c834141c70b546a65", + "oid": 207935512761, + "crossed": true, + "fee": "0.002495", + "tid": 820447330417871, + "cloid": "0x00000000000000000000001592000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108009.0", + "sz": "0.001", + "side": "B", + "time": 1761029389694, + "startPosition": "-450.62508", + "dir": "Close Short", + "closedPnl": "4.7688", + "hash": "0xdf7896744c50907ae0f2042de5599f02038a0059e753af4c834141c70b546a65", + "oid": 207935512761, + "crossed": true, + "fee": "0.022681", + "tid": 251512642251019, + "cloid": "0x00000000000000000000001592000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108009.0", + "sz": "0.04629", + "side": "B", + "time": 1761029389694, + "startPosition": "-450.62408", + "dir": "Close Short", + "closedPnl": "220.747752", + "hash": "0xdf7896744c50907ae0f2042de5599f02038a0059e753af4c834141c70b546a65", + "oid": 207935512761, + "crossed": true, + "fee": "1.049944", + "tid": 367296329085987, + "cloid": "0x00000000000000000000001592000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108009.0", + "sz": "0.04515", + "side": "B", + "time": 1761029389694, + "startPosition": "-450.57779", + "dir": "Close Short", + "closedPnl": "215.31132", + "hash": "0xdf7896744c50907ae0f2042de5599f02038a0059e753af4c834141c70b546a65", + "oid": 207935512761, + "crossed": true, + "fee": "1.024087", + "tid": 180202961432737, + "cloid": "0x00000000000000000000001592000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108028.0", + "sz": "0.09254", + "side": "B", + "time": 1761029392051, + "startPosition": "-450.53264", + "dir": "Close Short", + "closedPnl": "439.546492", + "hash": "0x97435ce02b9f15bc98bd042de559be0202c300c5c692348e3b0c0832ea92efa7", + "oid": 207935552017, + "crossed": true, + "fee": "2.099351", + "tid": 259377316143414, + "cloid": "0x00000000000000000000001592000044", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108028.0", + "sz": "0.09254", + "side": "B", + "time": 1761029393879, + "startPosition": "-450.4401", + "dir": "Close Short", + "closedPnl": "439.546492", + "hash": "0x7c0d5051e11639b97d87042de559d80201d900377c19588b1fd5fba4a01a13a4", + "oid": 207935573302, + "crossed": true, + "fee": "2.099351", + "tid": 545551879201291, + "cloid": "0x00000000000000000000001592000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108028.0", + "sz": "0.09253", + "side": "B", + "time": 1761029395044, + "startPosition": "-450.34756", + "dir": "Close Short", + "closedPnl": "439.498994", + "hash": "0x419e9e37afd6d5d84318042de559ea0201cb001d4ad9f4aae567498a6edaafc2", + "oid": 207935586623, + "crossed": true, + "fee": "2.099124", + "tid": 979070443273121, + "cloid": "0x00000000000000000000001592000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108028.0", + "sz": "0.09253", + "side": "B", + "time": 1761029397490, + "startPosition": "-450.25503", + "dir": "Close Short", + "closedPnl": "439.498994", + "hash": "0xc3da026397162882c553042de55a0b0201fa00493219475467a2adb6561a026d", + "oid": 207935617466, + "crossed": true, + "fee": "2.099124", + "tid": 881327882612613, + "cloid": "0x00000000000000000000001592000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108028.0", + "sz": "0.09254", + "side": "B", + "time": 1761029401233, + "startPosition": "-450.1625", + "dir": "Close Short", + "closedPnl": "439.546492", + "hash": "0xab2036c5d401ca5fac99042de55a3a02087600ab6f04e9314ee8e2189305a44a", + "oid": 207935664966, + "crossed": true, + "fee": "2.099351", + "tid": 437527719994150, + "cloid": "0x00000000000000000000001592000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108009.0", + "sz": "0.02777", + "side": "B", + "time": 1761029402774, + "startPosition": "-450.06996", + "dir": "Close Short", + "closedPnl": "132.429576", + "hash": "0xf4536e33ce1b9eb9f5cd042de55a4f020e960019691ebd8c981c19868d1f78a4", + "oid": 207935698621, + "crossed": true, + "fee": "0.629876", + "tid": 430847932368670, + "cloid": "0x00000000000000000000001592000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108009.0", + "sz": "0.0648", + "side": "B", + "time": 1761029402774, + "startPosition": "-450.04219", + "dir": "Close Short", + "closedPnl": "309.01824", + "hash": "0xf4536e33ce1b9eb9f5cd042de55a4f020e960019691ebd8c981c19868d1f78a4", + "oid": 207935698621, + "crossed": true, + "fee": "1.469786", + "tid": 459555504259476, + "cloid": "0x00000000000000000000001592000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108000.0", + "sz": "0.09258", + "side": "B", + "time": 1761029404978, + "startPosition": "-449.97739", + "dir": "Close Short", + "closedPnl": "442.328724", + "hash": "0xf6aa24febaf9ae2cf823042de55a6d020b7e00e455fcccff9a72d05179fd8817", + "oid": 207935742071, + "crossed": true, + "fee": "2.099714", + "tid": 110193886133779, + "cloid": "0x00000000000000000000001592000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107956.0", + "sz": "0.09259", + "side": "B", + "time": 1761029406409, + "startPosition": "-449.88481", + "dir": "Close Short", + "closedPnl": "446.450462", + "hash": "0xe76911c846916c0ae8e2042de55a7f02026e00ade1948adc8b31bd1b059545f5", + "oid": 207935771187, + "crossed": true, + "fee": "2.099085", + "tid": 539130528887123, + "cloid": "0x00000000000000000000001592000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107956.0", + "sz": "0.09259", + "side": "B", + "time": 1761029407588, + "startPosition": "-449.79222", + "dir": "Close Short", + "closedPnl": "446.450462", + "hash": "0xf0a926cee7b39711f222042de55a8d02038a00b482b6b5e49471d221a6b770fc", + "oid": 207935787538, + "crossed": true, + "fee": "2.099085", + "tid": 604474238732597, + "cloid": "0x00000000000000000000001592000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107956.0", + "sz": "0.06757", + "side": "B", + "time": 1761029408874, + "startPosition": "-449.69963", + "dir": "Close Short", + "closedPnl": "325.809026", + "hash": "0x5a6f97bb327e9cde5be9042de55a9f02013c00a0cd71bbb0fe38430df17276c8", + "oid": 207935801350, + "crossed": true, + "fee": "1.531863", + "tid": 797934446635829, + "cloid": "0x00000000000000000000001592000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107956.0", + "sz": "0.02502", + "side": "B", + "time": 1761029408874, + "startPosition": "-449.63206", + "dir": "Close Short", + "closedPnl": "120.641436", + "hash": "0x5a6f97bb327e9cde5be9042de55a9f02013c00a0cd71bbb0fe38430df17276c8", + "oid": 207935801350, + "crossed": true, + "fee": "0.567222", + "tid": 515973942025505, + "cloid": "0x00000000000000000000001592000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107973.0", + "sz": "0.09259", + "side": "B", + "time": 1761029412184, + "startPosition": "-449.60704", + "dir": "Close Short", + "closedPnl": "444.876432", + "hash": "0xfdfdde68401f4dc3ff77042de55acb02074a004ddb126c96a1c689baff1327ae", + "oid": 207935839818, + "crossed": true, + "fee": "2.099416", + "tid": 8732274972955, + "cloid": "0x00000000000000000000001592000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107970.0", + "sz": "0.09259", + "side": "B", + "time": 1761029422464, + "startPosition": "-449.51445", + "dir": "Close Short", + "closedPnl": "445.154202", + "hash": "0xb56b40b137560f03b6e4042de55b4e02030f0096d2592dd55933ec03f659e8ee", + "oid": 207935936953, + "crossed": true, + "fee": "2.099357", + "tid": 573021705753453, + "cloid": "0x00000000000000000000001592000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107970.0", + "sz": "0.09259", + "side": "B", + "time": 1761029432819, + "startPosition": "-449.42186", + "dir": "Close Short", + "closedPnl": "445.154202", + "hash": "0xe81440618ca9054ce98d042de55bde02035c004727ac241e8bdcebb44bacdf37", + "oid": 207935995181, + "crossed": true, + "fee": "2.099357", + "tid": 922551780723305, + "cloid": "0x00000000000000000000001592000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107970.0", + "sz": "0.09259", + "side": "B", + "time": 1761029442864, + "startPosition": "-449.32927", + "dir": "Close Short", + "closedPnl": "445.154202", + "hash": "0x97c73cbfea6d8ebd9940042de55c6002038e00a58560ad8f3b8fe812a96168a8", + "oid": 207936060007, + "crossed": true, + "fee": "2.099357", + "tid": 365907393641886, + "cloid": "0x00000000000000000000001592000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107970.0", + "sz": "0.09259", + "side": "B", + "time": 1761029450031, + "startPosition": "-449.23668", + "dir": "Close Short", + "closedPnl": "445.154202", + "hash": "0x3e469ca8beecf1c03fc0042de55cc1020471008e59e01092e20f47fb7de0cbaa", + "oid": 207936117856, + "crossed": true, + "fee": "2.099357", + "tid": 225926796337686, + "cloid": "0x00000000000000000000001592000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107970.0", + "sz": "0.0926", + "side": "B", + "time": 1761029459334, + "startPosition": "-449.14409", + "dir": "Close Short", + "closedPnl": "445.20228", + "hash": "0x8c0e508a62f8dbce8d88042de55d3801c700686ffdfbfaa02fd6fbdd21fcb5b9", + "oid": 207936204488, + "crossed": true, + "fee": "2.099584", + "tid": 852134088058305, + "cloid": "0x00000000000000000000001592000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107970.0", + "sz": "0.0926", + "side": "B", + "time": 1761029466479, + "startPosition": "-449.05149", + "dir": "Close Short", + "closedPnl": "445.20228", + "hash": "0xd24de4cbbedce561d3c7042de55d920207f300b159d004337616901e7dd0bf4c", + "oid": 207936299277, + "crossed": true, + "fee": "2.099584", + "tid": 237258610894008, + "cloid": "0x00000000000000000000001592000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107953.0", + "sz": "0.0284", + "side": "B", + "time": 1761029472401, + "startPosition": "-448.95889", + "dir": "Close Short", + "closedPnl": "137.02432", + "hash": "0xce2f29218ad0ee6ccfa8042de55de00208ad000725d40d3e71f7d47449d4c857", + "oid": 207936360131, + "crossed": true, + "fee": "0.643831", + "tid": 863526965181855, + "cloid": "0x00000000000000000000001592000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107953.0", + "sz": "0.0642", + "side": "B", + "time": 1761029472401, + "startPosition": "-448.93049", + "dir": "Close Short", + "closedPnl": "309.75216", + "hash": "0xce2f29218ad0ee6ccfa8042de55de00208ad000725d40d3e71f7d47449d4c857", + "oid": 207936360131, + "crossed": true, + "fee": "1.455422", + "tid": 920821047815803, + "cloid": "0x00000000000000000000001592000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107965.0", + "sz": "0.09259", + "side": "B", + "time": 1761029476180, + "startPosition": "-448.86629", + "dir": "Close Short", + "closedPnl": "445.617152", + "hash": "0xd4fc660823d2d06bd676042de55e100203cd00edbed5ef3d78c5115ae2d6aa56", + "oid": 207936418740, + "crossed": true, + "fee": "2.09926", + "tid": 1098144074251044, + "cloid": "0x00000000000000000000001592000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107984.0", + "sz": "0.09257", + "side": "B", + "time": 1761029478614, + "startPosition": "-448.7737", + "dir": "Close Short", + "closedPnl": "443.762066", + "hash": "0x97293363dd104ad398a2042de55e2d0205300049781369a53af1deb69c1424be", + "oid": 207936469213, + "crossed": true, + "fee": "2.099176", + "tid": 388251195223837, + "cloid": "0x00000000000000000000001592000063", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107990.0", + "sz": "0.09257", + "side": "B", + "time": 1761029480091, + "startPosition": "-448.68113", + "dir": "Close Short", + "closedPnl": "443.206646", + "hash": "0x4941e90f16e700fa4abb042de55e4002083600f4b1ea1fcced0a9461d5eadae4", + "oid": 207936495087, + "crossed": true, + "fee": "2.099293", + "tid": 891814298611829, + "cloid": "0x00000000000000000000001592000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107978.0", + "sz": "0.09257", + "side": "B", + "time": 1761029482332, + "startPosition": "-448.58856", + "dir": "Close Short", + "closedPnl": "444.317486", + "hash": "0xb1c5c75700a08033b33f042de55e5c0203a6003c9ba39f05558e72a9bfa45a1e", + "oid": 207936531185, + "crossed": true, + "fee": "2.099059", + "tid": 254277487927682, + "cloid": "0x00000000000000000000001592000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107978.0", + "sz": "0.09257", + "side": "B", + "time": 1761029483743, + "startPosition": "-448.49599", + "dir": "Close Short", + "closedPnl": "444.317486", + "hash": "0x593d0f9d6693bc095ab6042de55e700202f900830196dadbfd05baf0259795f3", + "oid": 207936548827, + "crossed": true, + "fee": "2.099059", + "tid": 590542243489993, + "cloid": "0x00000000000000000000001592000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107970.0", + "sz": "0.07897", + "side": "B", + "time": 1761029485075, + "startPosition": "-448.40342", + "dir": "Close Short", + "closedPnl": "379.671966", + "hash": "0x099247255664093c0b0c042de55e800205ae000af167280ead5af2781567e326", + "oid": 207936562071, + "crossed": true, + "fee": "1.790542", + "tid": 711376947763646, + "cloid": "0x00000000000000000000001592000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107970.0", + "sz": "0.0136", + "side": "B", + "time": 1761029485075, + "startPosition": "-448.32445", + "dir": "Close Short", + "closedPnl": "65.38608", + "hash": "0x099247255664093c0b0c042de55e800205ae000af167280ead5af2781567e326", + "oid": 207936562071, + "crossed": true, + "fee": "0.308362", + "tid": 369294689142705, + "cloid": "0x00000000000000000000001592000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107971.0", + "sz": "0.00011", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.31085", + "dir": "Close Short", + "closedPnl": "0.528748", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.002494", + "tid": 228159910887641, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107971.0", + "sz": "0.00333", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.31074", + "dir": "Close Short", + "closedPnl": "16.006644", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.075504", + "tid": 1100981156870362, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107972.0", + "sz": "0.00011", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.30741", + "dir": "Close Short", + "closedPnl": "0.528638", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.002494", + "tid": 791981822475982, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107973.0", + "sz": "0.02", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.3073", + "dir": "Close Short", + "closedPnl": "96.096", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.453486", + "tid": 540415733160168, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107973.0", + "sz": "0.00011", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.2873", + "dir": "Close Short", + "closedPnl": "0.528528", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.002494", + "tid": 770944097881099, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107974.0", + "sz": "0.00011", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.28719", + "dir": "Close Short", + "closedPnl": "0.528418", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.002494", + "tid": 595737338922256, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107975.0", + "sz": "0.00011", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.28708", + "dir": "Close Short", + "closedPnl": "0.528308", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.002494", + "tid": 562538432055022, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107976.0", + "sz": "0.00011", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.28697", + "dir": "Close Short", + "closedPnl": "0.528198", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.002494", + "tid": 351159398611636, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107976.0", + "sz": "0.00014", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.28686", + "dir": "Close Short", + "closedPnl": "0.672252", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.003174", + "tid": 727818545951021, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107977.0", + "sz": "0.00011", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.28672", + "dir": "Close Short", + "closedPnl": "0.528088", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.002494", + "tid": 536417537944340, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107978.0", + "sz": "0.00011", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.28661", + "dir": "Close Short", + "closedPnl": "0.527978", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.002494", + "tid": 1123201733320689, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107979.0", + "sz": "0.00011", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.2865", + "dir": "Close Short", + "closedPnl": "0.527868", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.002494", + "tid": 320001513522675, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107980.0", + "sz": "0.00011", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.28639", + "dir": "Close Short", + "closedPnl": "0.527758", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.002494", + "tid": 1122713012308463, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107980.0", + "sz": "0.00014", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.28628", + "dir": "Close Short", + "closedPnl": "0.671692", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.003174", + "tid": 672204725011102, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107981.0", + "sz": "0.00011", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.28614", + "dir": "Close Short", + "closedPnl": "0.527648", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.002494", + "tid": 155580660101457, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107982.0", + "sz": "0.00011", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.28603", + "dir": "Close Short", + "closedPnl": "0.527538", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.002494", + "tid": 976631471854868, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107983.0", + "sz": "0.00011", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.28592", + "dir": "Close Short", + "closedPnl": "0.527428", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.002494", + "tid": 1024061843159890, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107984.0", + "sz": "0.00011", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.28581", + "dir": "Close Short", + "closedPnl": "0.527318", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.002494", + "tid": 747066335682001, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107984.0", + "sz": "0.00014", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.2857", + "dir": "Close Short", + "closedPnl": "0.671132", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "0.003174", + "tid": 278561688689282, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107984.0", + "sz": "0.06729", + "side": "B", + "time": 1761029488325, + "startPosition": "-448.28556", + "dir": "Close Short", + "closedPnl": "322.574802", + "hash": "0xa8f4f6e8a2d18b28aa6e042de55ead02036c00ce3dd4a9fa4cbda23b61d56513", + "oid": 207936602359, + "crossed": true, + "fee": "1.525911", + "tid": 845866936190553, + "cloid": "0x00000000000000000000001592000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107995.0", + "sz": "0.09256", + "side": "B", + "time": 1761029492311, + "startPosition": "-448.21827", + "dir": "Close Short", + "closedPnl": "442.695968", + "hash": "0xff091bf33158732f0082042de55ee002025500d8cc5b9202a2d1c745f05c4d1a", + "oid": 207936666804, + "crossed": true, + "fee": "2.099163", + "tid": 621290961125171, + "cloid": "0x00000000000000000000001592000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107997.0", + "sz": "0.09256", + "side": "B", + "time": 1761029502393, + "startPosition": "-448.12571", + "dir": "Close Short", + "closedPnl": "442.510848", + "hash": "0x41747fb6525ae47142ee042de55f6b01ee00979bed5e0343e53d2b09115ebe5b", + "oid": 207936771925, + "crossed": true, + "fee": "2.099202", + "tid": 394997788215553, + "cloid": "0x00000000000000000000001592000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "107998.0", + "sz": "0.09255", + "side": "B", + "time": 1761029509867, + "startPosition": "-448.03315", + "dir": "Close Short", + "closedPnl": "442.37049", + "hash": "0xfba295f08943de60fd1c042de55fc50203f300d62446fd339f6b41434847b84b", + "oid": 207936833510, + "crossed": true, + "fee": "2.098995", + "tid": 362139613262856, + "cloid": "0x00000000000000000000001592000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108010.0", + "sz": "0.09255", + "side": "B", + "time": 1761029515106, + "startPosition": "-447.9406", + "dir": "Close Short", + "closedPnl": "441.25989", + "hash": "0x4735cc879c90966448af042de55fff02034e006d3793b536eafe77da5b94704e", + "oid": 207936911815, + "crossed": true, + "fee": "2.099228", + "tid": 359478084534004, + "cloid": "0x00000000000000000000001592000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108024.0", + "sz": "0.00011", + "side": "B", + "time": 1761029517357, + "startPosition": "-447.84805", + "dir": "Close Short", + "closedPnl": "0.522918", + "hash": "0x2af36d358e0156ea2c6d042de5601d020267001b290475bccebc18884d0530d4", + "oid": 207936944792, + "crossed": true, + "fee": "0.002495", + "tid": 309596089373553, + "cloid": "0x00000000000000000000001592000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108025.0", + "sz": "0.00014", + "side": "B", + "time": 1761029517357, + "startPosition": "-447.84794", + "dir": "Close Short", + "closedPnl": "0.665392", + "hash": "0x2af36d358e0156ea2c6d042de5601d020267001b290475bccebc18884d0530d4", + "oid": 207936944792, + "crossed": true, + "fee": "0.003175", + "tid": 534672304872415, + "cloid": "0x00000000000000000000001592000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108025.0", + "sz": "0.00011", + "side": "B", + "time": 1761029517357, + "startPosition": "-447.8478", + "dir": "Close Short", + "closedPnl": "0.522808", + "hash": "0x2af36d358e0156ea2c6d042de5601d020267001b290475bccebc18884d0530d4", + "oid": 207936944792, + "crossed": true, + "fee": "0.002495", + "tid": 918345076104169, + "cloid": "0x00000000000000000000001592000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108025.0", + "sz": "0.09218", + "side": "B", + "time": 1761029517357, + "startPosition": "-447.84769", + "dir": "Close Short", + "closedPnl": "438.113104", + "hash": "0x2af36d358e0156ea2c6d042de5601d020267001b290475bccebc18884d0530d4", + "oid": 207936944792, + "crossed": true, + "fee": "2.091126", + "tid": 92926542796388, + "cloid": "0x00000000000000000000001592000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108027.0", + "sz": "0.00011", + "side": "B", + "time": 1761029522057, + "startPosition": "-447.75551", + "dir": "Close Short", + "closedPnl": "0.522588", + "hash": "0x9993ffa68437e6349b0d042de5605e0205bd008c1f3b05063d5caaf9433bc01f", + "oid": 207936989560, + "crossed": true, + "fee": "0.002495", + "tid": 264745991489664, + "cloid": "0x00000000000000000000001592000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108027.0", + "sz": "0.09242", + "side": "B", + "time": 1761029522057, + "startPosition": "-447.7554", + "dir": "Close Short", + "closedPnl": "439.068936", + "hash": "0x9993ffa68437e6349b0d042de5605e0205bd008c1f3b05063d5caaf9433bc01f", + "oid": 207936989560, + "crossed": true, + "fee": "2.096609", + "tid": 861830713355594, + "cloid": "0x00000000000000000000001592000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108030.0", + "sz": "0.07213", + "side": "B", + "time": 1761029523433, + "startPosition": "-447.66298", + "dir": "Close Short", + "closedPnl": "342.458814", + "hash": "0xb95498b0bba0da77bace042de5606f020737009656a3f9495d1d44037aa4b462", + "oid": 207937016524, + "crossed": true, + "fee": "1.636362", + "tid": 72756066552908, + "cloid": "0x00000000000000000000001592000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108030.0", + "sz": "0.00011", + "side": "B", + "time": 1761029523433, + "startPosition": "-447.59085", + "dir": "Close Short", + "closedPnl": "0.522258", + "hash": "0xb95498b0bba0da77bace042de5606f020737009656a3f9495d1d44037aa4b462", + "oid": 207937016524, + "crossed": true, + "fee": "0.002495", + "tid": 366498276526151, + "cloid": "0x00000000000000000000001592000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108031.0", + "sz": "0.00334", + "side": "B", + "time": 1761029523433, + "startPosition": "-447.59074", + "dir": "Close Short", + "closedPnl": "15.854312", + "hash": "0xb95498b0bba0da77bace042de5606f020737009656a3f9495d1d44037aa4b462", + "oid": 207937016524, + "crossed": true, + "fee": "0.075772", + "tid": 1076930767935096, + "cloid": "0x00000000000000000000001592000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108031.0", + "sz": "0.01602", + "side": "B", + "time": 1761029523433, + "startPosition": "-447.5874", + "dir": "Close Short", + "closedPnl": "76.043736", + "hash": "0xb95498b0bba0da77bace042de5606f020737009656a3f9495d1d44037aa4b462", + "oid": 207937016524, + "crossed": true, + "fee": "0.363437", + "tid": 923002805695560, + "cloid": "0x00000000000000000000001592000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108031.0", + "sz": "0.00011", + "side": "B", + "time": 1761029523433, + "startPosition": "-447.57138", + "dir": "Close Short", + "closedPnl": "0.522148", + "hash": "0xb95498b0bba0da77bace042de5606f020737009656a3f9495d1d44037aa4b462", + "oid": 207937016524, + "crossed": true, + "fee": "0.002495", + "tid": 131589318947732, + "cloid": "0x00000000000000000000001592000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108032.0", + "sz": "0.00011", + "side": "B", + "time": 1761029523433, + "startPosition": "-447.57127", + "dir": "Close Short", + "closedPnl": "0.522038", + "hash": "0xb95498b0bba0da77bace042de5606f020737009656a3f9495d1d44037aa4b462", + "oid": 207937016524, + "crossed": true, + "fee": "0.002495", + "tid": 874195472505174, + "cloid": "0x00000000000000000000001592000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108033.0", + "sz": "0.00071", + "side": "B", + "time": 1761029523433, + "startPosition": "-447.57116", + "dir": "Close Short", + "closedPnl": "3.368808", + "hash": "0xb95498b0bba0da77bace042de5606f020737009656a3f9495d1d44037aa4b462", + "oid": 207937016524, + "crossed": true, + "fee": "0.016107", + "tid": 402964444522786, + "cloid": "0x00000000000000000000001592000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108033.0", + "sz": "0.09253", + "side": "B", + "time": 1761029527920, + "startPosition": "-447.57045", + "dir": "Close Short", + "closedPnl": "439.036344", + "hash": "0xea2cb7d6fc08672ceba6042de560af0209ed00bc970b85fe8df56329bb0c4117", + "oid": 207937085077, + "crossed": true, + "fee": "2.099221", + "tid": 797134513020056, + "cloid": "0x00000000000000000000001592000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108046.0", + "sz": "0.0047", + "side": "B", + "time": 1761029531115, + "startPosition": "-447.47792", + "dir": "Close Short", + "closedPnl": "22.23946", + "hash": "0xc1010db75c3b4d5bc27a042de560d802075b009cf73e6c2d64c9b90a1b3f2746", + "oid": 207937130497, + "crossed": true, + "fee": "0.106641", + "tid": 749535748697074, + "cloid": "0x00000000000000000000001592000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108047.0", + "sz": "0.08782", + "side": "B", + "time": 1761029531115, + "startPosition": "-447.47322", + "dir": "Close Short", + "closedPnl": "415.458856", + "hash": "0xc1010db75c3b4d5bc27a042de560d802075b009cf73e6c2d64c9b90a1b3f2746", + "oid": 207937130497, + "crossed": true, + "fee": "1.992624", + "tid": 647490044308492, + "cloid": "0x00000000000000000000001592000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108058.0", + "sz": "0.09251", + "side": "B", + "time": 1761029537791, + "startPosition": "-447.3854", + "dir": "Close Short", + "closedPnl": "436.628698", + "hash": "0x5dc8b578d2f8772c5f42042de56125020566005e6dfb95fe019160cb91fc5117", + "oid": 207937212006, + "crossed": true, + "fee": "2.099253", + "tid": 873912332397927, + "cloid": "0x00000000000000000000001592000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108059.0", + "sz": "0.00254", + "side": "B", + "time": 1761029539001, + "startPosition": "-447.29289", + "dir": "Close Short", + "closedPnl": "11.985752", + "hash": "0xd2fd8018bbc8d595d477042de5613102053f00fe56cbf46776c62b6b7accaf80", + "oid": 207937228212, + "crossed": true, + "fee": "0.057638", + "tid": 324760375523060, + "cloid": "0x00000000000000000000001592000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108060.0", + "sz": "0.0001", + "side": "B", + "time": 1761029539001, + "startPosition": "-447.29035", + "dir": "Close Short", + "closedPnl": "0.47178", + "hash": "0xd2fd8018bbc8d595d477042de5613102053f00fe56cbf46776c62b6b7accaf80", + "oid": 207937228212, + "crossed": true, + "fee": "0.002269", + "tid": 337487370840847, + "cloid": "0x00000000000000000000001592000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108060.0", + "sz": "0.08987", + "side": "B", + "time": 1761029539001, + "startPosition": "-447.29025", + "dir": "Close Short", + "closedPnl": "423.988686", + "hash": "0xd2fd8018bbc8d595d477042de5613102053f00fe56cbf46776c62b6b7accaf80", + "oid": 207937228212, + "crossed": true, + "fee": "2.039383", + "tid": 228577296166338, + "cloid": "0x00000000000000000000001592000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108064.0", + "sz": "0.04404", + "side": "B", + "time": 1761029541681, + "startPosition": "-447.20038", + "dir": "Close Short", + "closedPnl": "207.595752", + "hash": "0x453e654fe408966f46b8042de561520203fe00357f0bb541e90710a2a30c7059", + "oid": 207937265317, + "crossed": true, + "fee": "0.999419", + "tid": 241929498243387, + "cloid": "0x00000000000000000000001592000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108064.0", + "sz": "0.04847", + "side": "B", + "time": 1761029541681, + "startPosition": "-447.15634", + "dir": "Close Short", + "closedPnl": "228.477886", + "hash": "0x453e654fe408966f46b8042de561520203fe00357f0bb541e90710a2a30c7059", + "oid": 207937265317, + "crossed": true, + "fee": "1.099951", + "tid": 869344228310893, + "cloid": "0x00000000000000000000001592000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108050.0", + "sz": "0.09251", + "side": "B", + "time": 1761029543089, + "startPosition": "-447.10787", + "dir": "Close Short", + "closedPnl": "437.368778", + "hash": "0x2612be24d660ca41278c042de561670202eb000a7163e913c9db69779564a42b", + "oid": 207937288634, + "crossed": true, + "fee": "2.099098", + "tid": 535884028389208, + "cloid": "0x00000000000000000000001592000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108056.0", + "sz": "0.09251", + "side": "B", + "time": 1761029546559, + "startPosition": "-447.01536", + "dir": "Close Short", + "closedPnl": "436.813718", + "hash": "0x7af98a530a6a3be87c73042de561980209760038a56d5aba1ec235a5c96e15d3", + "oid": 207937339950, + "crossed": true, + "fee": "2.099214", + "tid": 1021485610290977, + "cloid": "0x00000000000000000000001592000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108038.0", + "sz": "0.01874", + "side": "B", + "time": 1761029556713, + "startPosition": "-446.92285", + "dir": "Close Short", + "closedPnl": "88.823852", + "hash": "0x4924da496c0be5ab4a9e042de56214020934002f070f047deced859c2b0fbf95", + "oid": 207937478567, + "crossed": true, + "fee": "0.425172", + "tid": 37919478549905, + "cloid": "0x00000000000000000000001592000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108038.0", + "sz": "0.07378", + "side": "B", + "time": 1761029556713, + "startPosition": "-446.90411", + "dir": "Close Short", + "closedPnl": "349.702444", + "hash": "0x4924da496c0be5ab4a9e042de56214020934002f070f047deced859c2b0fbf95", + "oid": 207937478567, + "crossed": true, + "fee": "1.673919", + "tid": 1125598580904620, + "cloid": "0x00000000000000000000001592000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108038.0", + "sz": "0.07712", + "side": "B", + "time": 1761029562091, + "startPosition": "-446.83033", + "dir": "Close Short", + "closedPnl": "365.533376", + "hash": "0x1495f9d5b0e33b30160f042de562550201ad00bb4be65a02b85ea5286fe7151a", + "oid": 207937550849, + "crossed": true, + "fee": "1.749697", + "tid": 655003240678345, + "cloid": "0x00000000000000000000001592000084", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108038.0", + "sz": "0.01542", + "side": "B", + "time": 1761029562091, + "startPosition": "-446.75321", + "dir": "Close Short", + "closedPnl": "73.087716", + "hash": "0x1495f9d5b0e33b30160f042de562550201ad00bb4be65a02b85ea5286fe7151a", + "oid": 207937550849, + "crossed": true, + "fee": "0.349848", + "tid": 570326935885554, + "cloid": "0x00000000000000000000001592000084", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108031.0", + "sz": "0.09254", + "side": "B", + "time": 1761029564483, + "startPosition": "-446.73779", + "dir": "Close Short", + "closedPnl": "439.268872", + "hash": "0xa614b196d1321a2ea78e042de5626f0202f8007c6c35390049dd5ce99035f419", + "oid": 207937581130, + "crossed": true, + "fee": "2.099409", + "tid": 795926794423642, + "cloid": "0x00000000000000000000001592000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108024.0", + "sz": "0.09255", + "side": "B", + "time": 1761029565895, + "startPosition": "-446.64525", + "dir": "Close Short", + "closedPnl": "439.96419", + "hash": "0xe930a415f2824787eaaa042de562800206c000fb8d8566598cf94f68b1862172", + "oid": 207937603382, + "crossed": true, + "fee": "2.0995", + "tid": 922010038083293, + "cloid": "0x00000000000000000000001592000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "108009.0", + "sz": "0.04025", + "side": "B", + "time": 1761029575912, + "startPosition": "-446.5527", + "dir": "Close Short", + "closedPnl": "191.9442", + "hash": "0xa9bd7aaa62c6775aab37042de5630b02026d008ffdc9962c4d8625fd21ca5145", + "oid": 207937713784, + "crossed": true, + "fee": "0.912946", + "tid": 1047936694893344, + "cloid": "0x00000000000000000000001592000087", + "feeToken": "USDC", + "twapId": null + } + ], + "user_fees": { + "dailyUserVlm": [ + { + "date": "2025-10-12", + "userCross": "21485992.2600000016", + "userAdd": "2278320.52", + "exchange": "12841585801.5" + }, + { + "date": "2025-10-13", + "userCross": "31420283.75", + "userAdd": "3041333.8300000001", + "exchange": "10574495799.9799995422" + }, + { + "date": "2025-10-14", + "userCross": "35579691.200000003", + "userAdd": "2711922.75", + "exchange": "17079292917.3500003815" + }, + { + "date": "2025-10-15", + "userCross": "18159824.75", + "userAdd": "1100529.02", + "exchange": "11449850843.8299999237" + }, + { + "date": "2025-10-16", + "userCross": "36670967.6199999973", + "userAdd": "1433912.5900000001", + "exchange": "12251944520.9500007629" + }, + { + "date": "2025-10-17", + "userCross": "2819754.8999999999", + "userAdd": "851904.5600000001", + "exchange": "12926676720.2999992371" + }, + { + "date": "2025-10-18", + "userCross": "34920.91", + "userAdd": "0.0", + "exchange": "3857436766.4600000381" + }, + { + "date": "2025-10-19", + "userCross": "11783898.8699999992", + "userAdd": "371563.53", + "exchange": "5666147024.9399995804" + }, + { + "date": "2025-10-20", + "userCross": "5175572.3099999996", + "userAdd": "339099.55", + "exchange": "8968179498.8600006104" + }, + { + "date": "2025-10-21", + "userCross": "56348714.4799999967", + "userAdd": "107018.3", + "exchange": "15421314316.1100006104" + }, + { + "date": "2025-10-22", + "userCross": "27765103.0100000016", + "userAdd": "612723.92", + "exchange": "12413722514.0200004578" + }, + { + "date": "2025-10-23", + "userCross": "12021044.2400000002", + "userAdd": "1941632.96", + "exchange": "9453148934.0400009155" + }, + { + "date": "2025-10-24", + "userCross": "0.0", + "userAdd": "0.0", + "exchange": "7176352634.4499998093" + }, + { + "date": "2025-10-25", + "userCross": "2028350.6699999999", + "userAdd": "7584.22", + "exchange": "3635812557.3200001717" + }, + { + "date": "2025-10-26", + "userCross": "0.0", + "userAdd": "0.0", + "exchange": "5050010989.1599998474" + } + ], + "feeSchedule": { + "cross": "0.00045", + "add": "0.00015", + "spotCross": "0.0007", + "spotAdd": "0.0004", + "tiers": { + "vip": [ + { + "ntlCutoff": "5000000.0", + "cross": "0.0004", + "add": "0.00012", + "spotCross": "0.0006", + "spotAdd": "0.0003" + }, + { + "ntlCutoff": "25000000.0", + "cross": "0.00035", + "add": "0.00008", + "spotCross": "0.0005", + "spotAdd": "0.0002" + }, + { + "ntlCutoff": "100000000.0", + "cross": "0.0003", + "add": "0.00004", + "spotCross": "0.0004", + "spotAdd": "0.0001" + }, + { + "ntlCutoff": "500000000.0", + "cross": "0.00028", + "add": "0.0", + "spotCross": "0.00035", + "spotAdd": "0.0" + }, + { + "ntlCutoff": "2000000000.0", + "cross": "0.00026", + "add": "0.0", + "spotCross": "0.0003", + "spotAdd": "0.0" + }, + { + "ntlCutoff": "7000000000.0", + "cross": "0.00024", + "add": "0.0", + "spotCross": "0.00025", + "spotAdd": "0.0" + } + ], + "mm": [ + { + "makerFractionCutoff": "0.005", + "add": "-0.00001" + }, + { + "makerFractionCutoff": "0.015", + "add": "-0.00002" + }, + { + "makerFractionCutoff": "0.03", + "add": "-0.00003" + } + ] + }, + "referralDiscount": "0.04", + "stakingDiscountTiers": [ + { + "bpsOfMaxSupply": "0.0", + "discount": "0.0" + }, + { + "bpsOfMaxSupply": "0.0001", + "discount": "0.05" + }, + { + "bpsOfMaxSupply": "0.001", + "discount": "0.1" + }, + { + "bpsOfMaxSupply": "0.01", + "discount": "0.15" + }, + { + "bpsOfMaxSupply": "0.1", + "discount": "0.2" + }, + { + "bpsOfMaxSupply": "1.0", + "discount": "0.3" + }, + { + "bpsOfMaxSupply": "5.0", + "discount": "0.4" + } + ] + }, + "userCrossRate": "0.00021", + "userAddRate": "0.000028", + "userSpotCrossRate": "0.00028", + "userSpotAddRate": "0.00007", + "activeReferralDiscount": "0.0", + "trial": null, + "feeTrialEscrow": "0.0", + "nextTrialAvailableTimestamp": null, + "stakingLink": null, + "activeStakingDiscount": { + "bpsOfMaxSupply": "1.1272863315", + "discount": "0.3" + } + }, + "rate_limit": { + "cumVlm": "2699931372.4800000191", + "nRequestsUsed": 1750106, + "nRequestsCap": 2699941372 + }, + "funding_payments": [ + { + "time": 1760907600000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-588.645263", + "szi": "-626.62492", + "fundingRate": "-0.0000086303", + "nSamples": null + } + }, + { + "time": 1760907600000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-155.178016", + "szi": "-4478.4573", + "fundingRate": "-0.0000086601", + "nSamples": null + } + }, + { + "time": 1760907600000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.181797", + "szi": "-147.42", + "fundingRate": "-0.0000065015", + "nSamples": null + } + }, + { + "time": 1760907600000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.185474", + "szi": "-109217.0", + "fundingRate": "0.0000086051", + "nSamples": null + } + }, + { + "time": 1760907600000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.361245", + "szi": "-18747.2", + "fundingRate": "-0.000020663", + "nSamples": null + } + }, + { + "time": 1760907600000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "1.653462", + "szi": "-408699.7", + "fundingRate": "0.0000015484", + "nSamples": null + } + }, + { + "time": 1760907600000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.335955", + "szi": "-39691.0", + "fundingRate": "-0.0000139902", + "nSamples": null + } + }, + { + "time": 1760907600000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "334.559526", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760907600000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.625969", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760907600000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "101.644", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760907600000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-54.574858", + "szi": "-1016681.0", + "fundingRate": "-0.0000441697", + "nSamples": null + } + }, + { + "time": 1760911200051, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-878.881078", + "szi": "-626.62492", + "fundingRate": "-0.0000129005", + "nSamples": null + } + }, + { + "time": 1760911200051, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-221.881672", + "szi": "-4478.4573", + "fundingRate": "-0.0000123972", + "nSamples": null + } + }, + { + "time": 1760911200051, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.483225", + "szi": "-147.42", + "fundingRate": "-0.0000173204", + "nSamples": null + } + }, + { + "time": 1760911200051, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.089585", + "szi": "-109217.0", + "fundingRate": "0.0000041767", + "nSamples": null + } + }, + { + "time": 1760911200051, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.55956", + "szi": "-18747.2", + "fundingRate": "-0.0000220524", + "nSamples": null + } + }, + { + "time": 1760911200051, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.324044", + "szi": "-408699.7", + "fundingRate": "0.0000106404", + "nSamples": null + } + }, + { + "time": 1760911200051, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.247921", + "szi": "-39691.0", + "fundingRate": "-0.0000131228", + "nSamples": null + } + }, + { + "time": 1760911200051, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "336.127358", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760911200051, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.512092", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760911200051, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "100.966373", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760911200051, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-76.28948", + "szi": "-1016681.0", + "fundingRate": "-0.0000620352", + "nSamples": null + } + }, + { + "time": 1760914800023, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-565.985687", + "szi": "-622.04917", + "fundingRate": "-0.0000083362", + "nSamples": null + } + }, + { + "time": 1760914800023, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-252.519296", + "szi": "-4478.4573", + "fundingRate": "-0.0000140248", + "nSamples": null + } + }, + { + "time": 1760914800023, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.23214", + "szi": "-147.42", + "fundingRate": "-0.0000082957", + "nSamples": null + } + }, + { + "time": 1760914800023, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.110934", + "szi": "-109217.0", + "fundingRate": "0.0000051583", + "nSamples": null + } + }, + { + "time": 1760914800023, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-9.317753", + "szi": "-18747.2", + "fundingRate": "-0.0000575589", + "nSamples": null + } + }, + { + "time": 1760914800023, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "7.915835", + "szi": "-408699.7", + "fundingRate": "0.0000074171", + "nSamples": null + } + }, + { + "time": 1760914800023, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.11723", + "szi": "-39691.0", + "fundingRate": "-0.0000117172", + "nSamples": null + } + }, + { + "time": 1760914800023, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "189.50105", + "szi": "-708624.89", + "fundingRate": "0.0000070636", + "nSamples": null + } + }, + { + "time": 1760914800023, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.546616", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760914800023, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "101.591874", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760914800023, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-60.81938", + "szi": "-1016681.0", + "fundingRate": "-0.0000494842", + "nSamples": null + } + }, + { + "time": 1760918400001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-349.444983", + "szi": "-613.1083", + "fundingRate": "-0.0000052459", + "nSamples": null + } + }, + { + "time": 1760918400001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-180.223705", + "szi": "-4113.752", + "fundingRate": "-0.0000109998", + "nSamples": null + } + }, + { + "time": 1760918400001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.509096", + "szi": "-147.42", + "fundingRate": "-0.0000183807", + "nSamples": null + } + }, + { + "time": 1760918400001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.084125", + "szi": "-109217.0", + "fundingRate": "-0.0000039426", + "nSamples": null + } + }, + { + "time": 1760918400001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.661045", + "szi": "-18747.2", + "fundingRate": "-0.0000228297", + "nSamples": null + } + }, + { + "time": 1760918400001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-6.027231", + "szi": "-408699.7", + "fundingRate": "-0.0000057118", + "nSamples": null + } + }, + { + "time": 1760918400001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.277774", + "szi": "-39691.0", + "fundingRate": "-0.0000134643", + "nSamples": null + } + }, + { + "time": 1760918400001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "302.030508", + "szi": "-708624.89", + "fundingRate": "0.0000113981", + "nSamples": null + } + }, + { + "time": 1760918400001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.278155", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760918400001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "102.191313", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760918400001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-80.271772", + "szi": "-1016681.0", + "fundingRate": "-0.0000657956", + "nSamples": null + } + }, + { + "time": 1760922000091, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-383.117128", + "szi": "-613.1083", + "fundingRate": "-0.0000057828", + "nSamples": null + } + }, + { + "time": 1760922000091, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-50.406109", + "szi": "-4113.752", + "fundingRate": "-0.0000031084", + "nSamples": null + } + }, + { + "time": 1760922000091, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.623709", + "szi": "-147.42", + "fundingRate": "-0.0000227918", + "nSamples": null + } + }, + { + "time": 1760922000091, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.054864", + "szi": "-109217.0", + "fundingRate": "0.0000025866", + "nSamples": null + } + }, + { + "time": 1760922000091, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.112571", + "szi": "-18747.2", + "fundingRate": "-0.0000196556", + "nSamples": null + } + }, + { + "time": 1760922000091, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-3.865261", + "szi": "-408699.7", + "fundingRate": "-0.0000036995", + "nSamples": null + } + }, + { + "time": 1760922000091, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.294886", + "szi": "-39691.0", + "fundingRate": "-0.0000137059", + "nSamples": null + } + }, + { + "time": 1760922000091, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-526.622475", + "szi": "-708624.89", + "fundingRate": "-0.0000199651", + "nSamples": null + } + }, + { + "time": 1760922000091, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.938586", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760922000091, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "103.103503", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760922000091, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-36.229738", + "szi": "-1016681.0", + "fundingRate": "-0.0000304758", + "nSamples": null + } + }, + { + "time": 1760925600012, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-17.177853", + "szi": "-613.1083", + "fundingRate": "-0.0000002593", + "nSamples": null + } + }, + { + "time": 1760925600012, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-70.341519", + "szi": "-4113.752", + "fundingRate": "-0.0000043419", + "nSamples": null + } + }, + { + "time": 1760925600012, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.404883", + "szi": "-147.42", + "fundingRate": "-0.000014793", + "nSamples": null + } + }, + { + "time": 1760925600012, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.002758", + "szi": "-109217.0", + "fundingRate": "-0.0000001302", + "nSamples": null + } + }, + { + "time": 1760925600012, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.513489", + "szi": "-18747.2", + "fundingRate": "-0.0000032357", + "nSamples": null + } + }, + { + "time": 1760925600012, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-3.204123", + "szi": "-408699.7", + "fundingRate": "-0.0000030685", + "nSamples": null + } + }, + { + "time": 1760925600012, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.907824", + "szi": "-39691.0", + "fundingRate": "-0.0000096418", + "nSamples": null + } + }, + { + "time": 1760925600012, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "233.715631", + "szi": "-708624.89", + "fundingRate": "0.0000089408", + "nSamples": null + } + }, + { + "time": 1760925600012, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.848412", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760925600012, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "101.539749", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760925600012, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-19.583716", + "szi": "-1016681.0", + "fundingRate": "-0.0000165727", + "nSamples": null + } + }, + { + "time": 1760929200011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "289.501084", + "szi": "-613.1083", + "fundingRate": "0.0000043413", + "nSamples": null + } + }, + { + "time": 1760929200011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-60.099117", + "szi": "-4115.652", + "fundingRate": "-0.0000036908", + "nSamples": null + } + }, + { + "time": 1760929200011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.112287", + "szi": "-147.42", + "fundingRate": "-0.0000040769", + "nSamples": null + } + }, + { + "time": 1760929200011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.141454", + "szi": "-109217.0", + "fundingRate": "0.0000066456", + "nSamples": null + } + }, + { + "time": 1760929200011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.272514", + "szi": "-18747.2", + "fundingRate": "-0.0000142527", + "nSamples": null + } + }, + { + "time": 1760929200011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-10.814681", + "szi": "-408699.7", + "fundingRate": "-0.000010313", + "nSamples": null + } + }, + { + "time": 1760929200011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.631689", + "szi": "-39691.0", + "fundingRate": "-0.0000066694", + "nSamples": null + } + }, + { + "time": 1760929200011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "329.97118", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760929200011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.032882", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760929200011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "103.312004", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760929200011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-12.232133", + "szi": "-1016681.0", + "fundingRate": "-0.000010271", + "nSamples": null + } + }, + { + "time": 1760932800027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "680.370163", + "szi": "-613.1083", + "fundingRate": "0.000010074", + "nSamples": null + } + }, + { + "time": 1760932800027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "80.117285", + "szi": "-4115.652", + "fundingRate": "0.0000048327", + "nSamples": null + } + }, + { + "time": 1760932800027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.207233", + "szi": "-147.42", + "fundingRate": "0.0000073491", + "nSamples": null + } + }, + { + "time": 1760932800027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.212535", + "szi": "-109217.0", + "fundingRate": "0.0000097646", + "nSamples": null + } + }, + { + "time": 1760932800027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.04001", + "szi": "-18747.2", + "fundingRate": "-0.0000063364", + "nSamples": null + } + }, + { + "time": 1760932800027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-7.399139", + "szi": "-408699.7", + "fundingRate": "-0.0000068902", + "nSamples": null + } + }, + { + "time": 1760932800027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.827457", + "szi": "-39691.0", + "fundingRate": "0.0000085633", + "nSamples": null + } + }, + { + "time": 1760932800027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-127.165858", + "szi": "-708624.89", + "fundingRate": "-0.0000046846", + "nSamples": null + } + }, + { + "time": 1760932800027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.918132", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760932800027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "105.162446", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760932800027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "13.152245", + "szi": "-1016681.0", + "fundingRate": "0.0000106219", + "nSamples": null + } + }, + { + "time": 1760936400027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "846.425127", + "szi": "-613.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760936400027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "208.659797", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760936400027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.354194", + "szi": "-147.42", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760936400027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.159792", + "szi": "-109217.0", + "fundingRate": "0.0000072819", + "nSamples": null + } + }, + { + "time": 1760936400027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.051079", + "szi": "-18747.2", + "fundingRate": "-0.0000063966", + "nSamples": null + } + }, + { + "time": 1760936400027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-10.625595", + "szi": "-408699.7", + "fundingRate": "-0.0000098561", + "nSamples": null + } + }, + { + "time": 1760936400027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.818283", + "szi": "-39691.0", + "fundingRate": "0.0000084265", + "nSamples": null + } + }, + { + "time": 1760936400027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "340.910576", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760936400027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.886185", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760936400027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "104.849695", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760936400027, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-0.496148", + "szi": "-1016681.0", + "fundingRate": "-0.0000003928", + "nSamples": null + } + }, + { + "time": 1760940000067, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "850.923882", + "szi": "-613.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760940000067, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "146.871167", + "szi": "-4117.202", + "fundingRate": "0.0000087842", + "nSamples": null + } + }, + { + "time": 1760940000067, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.35565", + "szi": "-147.42", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760940000067, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.193253", + "szi": "-109217.0", + "fundingRate": "0.0000087888", + "nSamples": null + } + }, + { + "time": 1760940000067, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.06439", + "szi": "-18747.2", + "fundingRate": "-0.0000003895", + "nSamples": null + } + }, + { + "time": 1760940000067, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "4.840981", + "szi": "-408699.7", + "fundingRate": "0.0000044464", + "nSamples": null + } + }, + { + "time": 1760940000067, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.305238", + "szi": "-39691.0", + "fundingRate": "0.0000031307", + "nSamples": null + } + }, + { + "time": 1760940000067, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "459.576064", + "szi": "-708624.89", + "fundingRate": "0.0000168283", + "nSamples": null + } + }, + { + "time": 1760940000067, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.787251", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760940000067, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "106.02251", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760940000067, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-8.054179", + "szi": "-720476.0", + "fundingRate": "-0.0000090716", + "nSamples": null + } + }, + { + "time": 1760943600099, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "852.993156", + "szi": "-613.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760943600099, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "209.719976", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760943600099, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.342202", + "szi": "-147.42", + "fundingRate": "0.0000119691", + "nSamples": null + } + }, + { + "time": 1760943600099, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.035295", + "szi": "-109217.0", + "fundingRate": "0.0000016001", + "nSamples": null + } + }, + { + "time": 1760943600099, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.300354", + "szi": "-18747.2", + "fundingRate": "0.0000018002", + "nSamples": null + } + }, + { + "time": 1760943600099, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "7.431616", + "szi": "-408699.7", + "fundingRate": "0.0000068093", + "nSamples": null + } + }, + { + "time": 1760943600099, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.002693", + "szi": "-39691.0", + "fundingRate": "-0.0000000275", + "nSamples": null + } + }, + { + "time": 1760943600099, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "341.902651", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760943600099, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.068594", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760943600099, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "106.569824", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760943600099, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-7.775727", + "szi": "-712351.0", + "fundingRate": "-0.0000087472", + "nSamples": null + } + }, + { + "time": 1760947200102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "852.142455", + "szi": "-613.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760947200102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "208.690676", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760947200102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.07463", + "szi": "-147.42", + "fundingRate": "0.0000026223", + "nSamples": null + } + }, + { + "time": 1760947200102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.108492", + "szi": "-109217.0", + "fundingRate": "0.000004936", + "nSamples": null + } + }, + { + "time": 1760947200102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.209185", + "szi": "-18747.2", + "fundingRate": "0.0000012608", + "nSamples": null + } + }, + { + "time": 1760947200102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "10.716225", + "szi": "-408699.7", + "fundingRate": "0.0000099023", + "nSamples": null + } + }, + { + "time": 1760947200102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.368755", + "szi": "-39691.0", + "fundingRate": "0.0000037608", + "nSamples": null + } + }, + { + "time": 1760947200102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "340.582837", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760947200102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.895975", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760947200102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "106.257073", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760947200102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "1.516053", + "szi": "-249142.0", + "fundingRate": "0.000004948", + "nSamples": null + } + }, + { + "time": 1760950800121, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "851.445033", + "szi": "-613.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760950800121, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "208.196612", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760950800121, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.038135", + "szi": "-147.42", + "fundingRate": "0.0000013404", + "nSamples": null + } + }, + { + "time": 1760950800121, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.211434", + "szi": "-109217.0", + "fundingRate": "0.0000096535", + "nSamples": null + } + }, + { + "time": 1760950800121, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.065707", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760950800121, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.515699", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760950800121, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.943632", + "szi": "-39691.0", + "fundingRate": "0.0000096167", + "nSamples": null + } + }, + { + "time": 1760950800121, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "341.574912", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760950800121, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.774369", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760950800121, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "105.944323", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760950800121, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.844947", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "850.471708", + "szi": "-613.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "196.373674", + "szi": "-4117.202", + "fundingRate": "0.0000117916", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.08759", + "szi": "-147.42", + "fundingRate": "-0.0000030753", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.118116", + "szi": "-109217.0", + "fundingRate": "0.00000538", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.615562", + "szi": "-18747.2", + "fundingRate": "0.0000037169", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.451839", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.227146", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "340.777709", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.783129", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "156.45438", + "szi": "-2085005129.0", + "fundingRate": "0.0000181734", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.828844", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "848.754976", + "szi": "-613.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "139.323166", + "szi": "-4117.202", + "fundingRate": "0.0000084048", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.019286", + "szi": "-147.42", + "fundingRate": "-0.0000006827", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.184946", + "szi": "-109217.0", + "fundingRate": "0.0000084484", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.008501", + "szi": "-18747.2", + "fundingRate": "-0.0000000514", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.367034", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.223524", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "338.536683", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.572895", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "106.569824", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.781467", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "850.831915", + "szi": "-613.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "207.661375", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.062057", + "szi": "-147.42", + "fundingRate": "0.0000021902", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.273452", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.306108", + "szi": "-18747.2", + "fundingRate": "-0.0000139074", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "10.719184", + "szi": "-408699.7", + "fundingRate": "0.0000100117", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.621322", + "szi": "-39691.0", + "fundingRate": "0.0000063696", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "230.099614", + "szi": "-708624.89", + "fundingRate": "0.0000084521", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.649156", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "106.439511", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "1.062166", + "szi": "-186707.0", + "fundingRate": "0.0000047539", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "849.506046", + "szi": "-613.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "207.795184", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.016103", + "szi": "-147.42", + "fundingRate": "0.0000005667", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.273957", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.027587", + "szi": "-18747.2", + "fundingRate": "-0.0000061845", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.424252", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.245382", + "szi": "-39691.0", + "fundingRate": "0.0000025203", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "344.232255", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.769217", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "106.02251", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.777733", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "851.943191", + "szi": "-613.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "207.856942", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.3422", + "szi": "-147.42", + "fundingRate": "0.0000120642", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.275117", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.882189", + "szi": "-18747.2", + "fundingRate": "-0.0000052502", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.47585", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.071077", + "szi": "-39691.0", + "fundingRate": "0.0000007278", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "347.350205", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.926892", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "105.761885", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.777266", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "852.341718", + "szi": "-613.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "207.867235", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.086374", + "szi": "-147.42", + "fundingRate": "-0.0000030613", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.179049", + "szi": "-109217.0", + "fundingRate": "0.0000081432", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.813043", + "szi": "-18747.2", + "fundingRate": "0.0000048376", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "0.836798", + "szi": "-408699.7", + "fundingRate": "0.0000007812", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.442759", + "szi": "-39691.0", + "fundingRate": "0.0000045155", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "180.808786", + "szi": "-708624.89", + "fundingRate": "0.0000064824", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.877941", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "105.344884", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.472245", + "szi": "-186707.0", + "fundingRate": "0.0000111272", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "858.705381", + "szi": "-618.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "206.096839", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.171455", + "szi": "-147.42", + "fundingRate": "0.0000061049", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.157838", + "szi": "-109217.0", + "fundingRate": "0.0000072502", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.078923", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "8.150882", + "szi": "-408699.7", + "fundingRate": "0.0000076765", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.103717", + "szi": "-39691.0", + "fundingRate": "0.0000112916", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-893.117868", + "szi": "-708624.89", + "fundingRate": "-0.0000324248", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.55383", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "103.312004", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.755795", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "109.872827", + "szi": "-618.11829", + "fundingRate": "0.0000016059", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "203.286848", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.049148", + "szi": "-147.42", + "fundingRate": "-0.0000017774", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.215202", + "szi": "-109217.0", + "fundingRate": "0.0000099335", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.056099", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.099847", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.604431", + "szi": "-39691.0", + "fundingRate": "0.0000062292", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-295.992802", + "szi": "-708624.89", + "fundingRate": "-0.0000108975", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.006603", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "101.409436", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.681112", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "57.388394", + "szi": "-618.11829", + "fundingRate": "0.0000008419", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "203.338313", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.088849", + "szi": "-147.42", + "fundingRate": "0.0000032116", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.165688", + "szi": "-109217.0", + "fundingRate": "0.0000076569", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.595891", + "szi": "-18747.2", + "fundingRate": "0.0000097121", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.117216", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.056377", + "szi": "-39691.0", + "fundingRate": "0.0000005776", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-1136.937699", + "szi": "-708624.89", + "fundingRate": "-0.0000425228", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.968987", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.141993", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.641437", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "756.402225", + "szi": "-618.11829", + "fundingRate": "0.0000110306", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "204.542595", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.134321", + "szi": "-147.42", + "fundingRate": "0.0000048414", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.081535", + "szi": "-109217.0", + "fundingRate": "0.000003757", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.83018", + "szi": "-18747.2", + "fundingRate": "0.000005035", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.092476", + "szi": "-408699.7", + "fundingRate": "0.0000105091", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.436004", + "szi": "-39691.0", + "fundingRate": "0.0000044385", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "126.903059", + "szi": "-708624.89", + "fundingRate": "0.0000046938", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.037004", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.558994", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.678545", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "476.670263", + "szi": "-618.11829", + "fundingRate": "0.0000069584", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "204.897704", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.323879", + "szi": "-147.42", + "fundingRate": "0.0000116316", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.162166", + "szi": "-109217.0", + "fundingRate": "0.0000074367", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.166036", + "szi": "-18747.2", + "fundingRate": "0.0000010024", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "10.258442", + "szi": "-408699.7", + "fundingRate": "0.0000096968", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.397604", + "szi": "-39691.0", + "fundingRate": "0.0000039634", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "336.446239", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.165824", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.767495", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.684613", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "330.900272", + "szi": "-583.16111", + "fundingRate": "0.0000051083", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "205.757169", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.351043", + "szi": "-147.42", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.113883", + "szi": "-109217.0", + "fundingRate": "0.000005216", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.248291", + "szi": "-18747.2", + "fundingRate": "-0.0000014999", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.244424", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.08284", + "szi": "-39691.0", + "fundingRate": "-0.0000008245", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-725.764672", + "szi": "-708624.89", + "fundingRate": "-0.0000267545", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.123571", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "100.549372", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.295633", + "szi": "-186707.0", + "fundingRate": "0.0000106196", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "152.44253", + "szi": "-583.16111", + "fundingRate": "0.0000023643", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "204.666111", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.294648", + "szi": "-147.42", + "fundingRate": "0.0000105763", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.064299", + "szi": "-109217.0", + "fundingRate": "0.000002961", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.054224", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.72255", + "szi": "-408699.7", + "fundingRate": "0.0000120919", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.582396", + "szi": "-39691.0", + "fundingRate": "0.0000058877", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "4.481004", + "szi": "-708624.89", + "fundingRate": "0.0000001679", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.01021", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "100.054183", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.707484", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "405.125971", + "szi": "-583.4111", + "fundingRate": "0.0000062676", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "205.443408", + "szi": "-4120.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.351504", + "szi": "-147.42", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.126766", + "szi": "-109217.0", + "fundingRate": "0.0000057939", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.16148", + "szi": "-18747.2", + "fundingRate": "0.0000070507", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.21888", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.813901", + "szi": "-39691.0", + "fundingRate": "0.0000082086", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "337.128291", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.279186", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "100.809997", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.72032", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "156.757601", + "szi": "-583.4111", + "fundingRate": "0.0000024307", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "204.948971", + "szi": "-4120.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.180156", + "szi": "-147.42", + "fundingRate": "0.0000064417", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.160511", + "szi": "-109217.0", + "fundingRate": "0.0000073483", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.675217", + "szi": "-18747.2", + "fundingRate": "0.0000041193", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.153488", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.780893", + "szi": "-39691.0", + "fundingRate": "0.0000078855", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "336.127358", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.191588", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "101.018498", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.704684", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "265.666759", + "szi": "-583.4111", + "fundingRate": "0.0000041224", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "204.583295", + "szi": "-4120.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.327676", + "szi": "-147.42", + "fundingRate": "0.0000117599", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.16892", + "szi": "-109217.0", + "fundingRate": "0.0000077302", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.03864", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "5.66519", + "szi": "-408699.7", + "fundingRate": "0.0000054014", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.998051", + "szi": "-39691.0", + "fundingRate": "0.0000101144", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "336.667685", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.183859", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "101.018498", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.705617", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "144.696467", + "szi": "-583.4111", + "fundingRate": "0.0000022574", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "203.378106", + "szi": "-4120.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.074909", + "szi": "-147.42", + "fundingRate": "0.0000027204", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.034517", + "szi": "-109217.0", + "fundingRate": "0.0000015939", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.022354", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "8.471259", + "szi": "-408699.7", + "fundingRate": "0.0000081363", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.163804", + "szi": "-39691.0", + "fundingRate": "-0.000001672", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-13.911178", + "szi": "-708624.89", + "fundingRate": "-0.0000005234", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.076166", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "100.002058", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.667342", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "75.893362", + "szi": "-528.63289", + "fundingRate": "0.0000013109", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "202.487091", + "szi": "-4120.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.118351", + "szi": "-147.42", + "fundingRate": "0.0000043146", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.12536", + "szi": "-109217.0", + "fundingRate": "0.0000058454", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.014269", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.976215", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.454999", + "szi": "-39691.0", + "fundingRate": "0.0000046777", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "138.043569", + "szi": "-708624.89", + "fundingRate": "0.0000052336", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.836045", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.402619", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.619732", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "117.84067", + "szi": "-528.63289", + "fundingRate": "0.0000020437", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "202.033858", + "szi": "-4120.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.318232", + "szi": "-147.42", + "fundingRate": "0.0000116321", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.068385", + "szi": "-109217.0", + "fundingRate": "0.0000031848", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.173765", + "szi": "-18747.2", + "fundingRate": "0.0000073344", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.923084", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.41362", + "szi": "-39691.0", + "fundingRate": "0.0000042486", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "328.562788", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.736081", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.350494", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.606429", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-75.955692", + "szi": "-510.10414", + "fundingRate": "-0.0000013815", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "198.389175", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.013923", + "szi": "-147.42", + "fundingRate": "0.000000514", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.062055", + "szi": "-109217.0", + "fundingRate": "-0.0000029409", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.964472", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "7.523367", + "szi": "-408699.7", + "fundingRate": "0.000007419", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.098547", + "szi": "-39691.0", + "fundingRate": "0.0000010245", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "320.466748", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.057458", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "97.421864", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.510042", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-360.135145", + "szi": "-472.94566", + "fundingRate": "-0.0000070809", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "199.048583", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.194569", + "szi": "-147.42", + "fundingRate": "0.0000071792", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.172736", + "szi": "-109217.0", + "fundingRate": "-0.000008169", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.113039", + "szi": "-18747.2", + "fundingRate": "0.0000070764", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-4.78485", + "szi": "-408699.7", + "fundingRate": "-0.0000047211", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.457249", + "szi": "-39691.0", + "fundingRate": "-0.0000047528", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "435.245646", + "szi": "-708624.89", + "fundingRate": "0.0000172531", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.187824", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.350494", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.537114", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "152.451909", + "szi": "-438.12458", + "fundingRate": "0.0000032246", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "200.254064", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.067187", + "szi": "-147.42", + "fundingRate": "-0.0000024705", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.160338", + "szi": "-109217.0", + "fundingRate": "-0.0000075717", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.552427", + "szi": "-18747.2", + "fundingRate": "-0.0000034986", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-15.22879", + "szi": "-408699.7", + "fundingRate": "-0.0000149321", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.559203", + "szi": "-39691.0", + "fundingRate": "-0.0000057943", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "317.711969", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.25481", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "102.947128", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.557885", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "118.552126", + "szi": "-417.3499", + "fundingRate": "0.0000026276", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "200.55801", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.00081", + "szi": "-147.42", + "fundingRate": "-0.0000000297", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.177733", + "szi": "-109217.0", + "fundingRate": "-0.0000083759", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.179685", + "szi": "-18747.2", + "fundingRate": "-0.000001139", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-10.199203", + "szi": "-408699.7", + "fundingRate": "-0.0000099638", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.494734", + "szi": "-39691.0", + "fundingRate": "-0.0000051358", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "962.571713", + "szi": "-708624.89", + "fundingRate": "0.0000377146", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.978262", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "103.598692", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.571888", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-116.883842", + "szi": "-367.35012", + "fundingRate": "-0.0000029544", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "175.954451", + "szi": "-4121.302", + "fundingRate": "0.0000110391", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.320061", + "szi": "-147.42", + "fundingRate": "-0.0000117821", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.122497", + "szi": "-109217.0", + "fundingRate": "-0.0000058051", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.347087", + "szi": "-18747.2", + "fundingRate": "-0.0000022199", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-7.185111", + "szi": "-376577.6", + "fundingRate": "-0.0000076871", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.700167", + "szi": "-39691.0", + "fundingRate": "-0.0000073139", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "911.04626", + "szi": "-708624.89", + "fundingRate": "0.0000360006", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.846866", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "102.243439", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.566287", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "381.465753", + "szi": "-338.01603", + "fundingRate": "0.0000104736", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "199.089796", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.096354", + "szi": "-147.42", + "fundingRate": "0.0000035447", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.006148", + "szi": "-109217.0", + "fundingRate": "0.0000002908", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.514751", + "szi": "-18747.2", + "fundingRate": "-0.0000224933", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-1.971256", + "szi": "-376577.6", + "fundingRate": "-0.000002109", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.127192", + "szi": "-39691.0", + "fundingRate": "0.0000013304", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "316.976771", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.806159", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "101.95675", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.566754", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "458.43424", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "200.078908", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.224578", + "szi": "-147.42", + "fundingRate": "0.0000081934", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.058363", + "szi": "-109217.0", + "fundingRate": "-0.0000027487", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.178218", + "szi": "-18747.2", + "fundingRate": "-0.0000011324", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-2.042026", + "szi": "-376577.6", + "fundingRate": "-0.0000021748", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.058506", + "szi": "-39691.0", + "fundingRate": "-0.0000006099", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "317.765116", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.923643", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "94.333021", + "szi": "-2085005129.0", + "fundingRate": "0.0000116128", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.577023", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "458.772256", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "200.408613", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.159852", + "szi": "-147.42", + "fundingRate": "0.0000058207", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.219658", + "szi": "-109217.0", + "fundingRate": "-0.0000103388", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.664258", + "szi": "-18747.2", + "fundingRate": "-0.000010512", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-2.737697", + "szi": "-376577.6", + "fundingRate": "-0.0000029108", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.440675", + "szi": "-39691.0", + "fundingRate": "-0.0000045649", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "604.575255", + "szi": "-708624.89", + "fundingRate": "0.0000236197", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.959712", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "-4.424788", + "szi": "-2085005129.0", + "fundingRate": "-0.0000005442", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.590326", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "459.667999", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "199.89345", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.16847", + "szi": "-147.42", + "fundingRate": "0.0000061282", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.265186", + "szi": "-109217.0", + "fundingRate": "-0.0000124721", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.340159", + "szi": "-18747.2", + "fundingRate": "0.0000021409", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-6.409274", + "szi": "-376577.6", + "fundingRate": "-0.0000067895", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.83543", + "szi": "-39691.0", + "fundingRate": "-0.0000086815", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "322.973509", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.005057", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "41.627383", + "szi": "-2085005129.0", + "fundingRate": "0.0000052074", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.585891", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "458.125801", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "199.172222", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.005249", + "szi": "-147.42", + "fundingRate": "-0.0000001924", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.178492", + "szi": "-109217.0", + "fundingRate": "-0.0000083848", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.260461", + "szi": "-18747.2", + "fundingRate": "-0.0000016355", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-2.626069", + "szi": "-376577.6", + "fundingRate": "-0.0000027906", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.548931", + "szi": "-39691.0", + "fundingRate": "-0.000005732", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "318.695186", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.794823", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.585057", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.584258", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "473.974527", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "207.136638", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.355153", + "szi": "-147.42", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.051525", + "szi": "-109217.0", + "fundingRate": "0.0000023238", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.081185", + "szi": "-18747.2", + "fundingRate": "0.0000004826", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.453891", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.267138", + "szi": "-39691.0", + "fundingRate": "-0.0000027066", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "334.763255", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.088175", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "105.032133", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.711452", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "479.222226", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "210.273979", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "23.12335", + "szi": "-10147.42", + "fundingRate": "0.000011612", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.036903", + "szi": "-109217.0", + "fundingRate": "0.0000016531", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.1223", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.559333", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.251506", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "335.560458", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "31.309194", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000193223", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "107.195326", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.751594", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "475.601229", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "207.538465", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-2.796472", + "szi": "-10147.42", + "fundingRate": "-0.0000014312", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.125553", + "szi": "-109217.0", + "fundingRate": "0.0000057236", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.098749", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.339977", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.233497", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "330.201483", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "30.458963", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000190988", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "104.615132", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.667342", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-96.218975", + "szi": "-320.21407", + "fundingRate": "-0.0000026826", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "206.822389", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-1.502444", + "szi": "-10147.42", + "fundingRate": "-0.0000007599", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.099772", + "szi": "-109217.0", + "fundingRate": "0.0000045345", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.107888", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + } + ], + "ledger_updates": [ + { + "time": 1760945533651, + "hash": "0xb89c42794cdddf7cba15042dd53ecb0201f6005ee7d0fe4e5c64edcc0bd1b967", + "delta": { + "type": "accountClassTransfer", + "usdc": "5000000.0", + "toPerp": true + } + }, + { + "time": 1761115272390, + "hash": "0x075bb06d562b929808d5042df5c1d302012b0052f12eb16aab245bc0152f6c82", + "delta": { + "type": "accountClassTransfer", + "usdc": "2237313.04", + "toPerp": true + } + }, + { + "time": 1761115303659, + "hash": "0x42e650d53d2db536ea81294f1010dc0267ad00b60a579868a3ad6ec087347124", + "delta": { + "type": "withdraw", + "usdc": "9999999.0", + "nonce": 1761115039997000, + "fee": "1.0" + } + }, + { + "time": 1761115410063, + "hash": "0x611b6ea0b6ca926e971013bab76698f201fd2e20fa34a00ea4656b293e677a0b", + "delta": { + "type": "withdraw", + "usdc": "8999999.0", + "nonce": 1761115141287000, + "fee": "1.0" + } + }, + { + "time": 1761132614550, + "hash": "0x05ead67544a1520ced1244a0d5f59043067f6e9e8a57b8e30f5a3be71634bd06", + "delta": { + "type": "withdraw", + "usdc": "9999999.0", + "nonce": 1761132342433000, + "fee": "1.0" + } + }, + { + "time": 1761201557287, + "hash": "0xb7e9c3ae398e4974b963042e0658dc0203e40093d48168465bb26f00f882235f", + "delta": { + "type": "accountClassTransfer", + "usdc": "2000000.0", + "toPerp": false + } + }, + { + "time": 1761417266859, + "hash": "0xd1828370da2b23f84efd3908e020de5a63b075742055edddc208c7f7d134f41f", + "delta": { + "type": "deposit", + "usdc": "2000000.0" + } + }, + { + "time": 1761430099211, + "hash": "0xab60ac1c371861c50c47d843322c88445e475c1aa8ce6d2191d1a6a563cdca2e", + "delta": { + "type": "deposit", + "usdc": "2000000.8" + } + }, + { + "time": 1761468311644, + "hash": "0x32b7bce8c9e667193431042e39c25e0201d000ce64e985ebd680683b88ea4103", + "delta": { + "type": "send", + "user": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "destination": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "sourceDex": "spot", + "destinationDex": "", + "token": "USDC", + "amount": "900000.0", + "usdcValue": "900000.0", + "fee": "0.0", + "nativeTokenFee": "0.0", + "nonce": 1761467995524, + "feeToken": "" + } + }, + { + "time": 1761470326658, + "hash": "0x88fe14d0854370a62127bdc9ce9bda70ca4999244ef94b61eef97066ab96ea93", + "delta": { + "type": "deposit", + "usdc": "5000000.0" + } + } + ], + "referral_state": { + "referredBy": null, + "cumVlm": "2678503101.9200000763", + "unclaimedRewards": "1211.48930369", + "claimedRewards": "23302.099542", + "builderRewards": "0.0", + "referrerState": { + "stage": "ready", + "data": { + "code": "EGAF", + "nReferrals": 3, + "referralStates": [ + { + "cumVlm": "2939570236.1900000572", + "cumRewardedFeesSinceReferred": "567344.86516063", + "cumFeesRewardedToReferrer": "23302.099542", + "timeJoined": 1740074524733, + "user": "0x5b5d51203a0f9079f8aeb098a6523a13f298c060", + "tokenToState": [ + [ + 0, + { + "cumVlm": "2939570236.1900000572", + "cumRewardedFeesSinceReferred": "567344.86516063", + "cumFeesRewardedToReferrer": "23302.099542" + } + ] + ] + }, + { + "cumVlm": "31767287.4200000018", + "cumRewardedFeesSinceReferred": "12114.95159313", + "cumFeesRewardedToReferrer": "1211.48930369", + "timeJoined": 1750501639492, + "user": "0xc327d213545d49a1644cf3f154375034ac6e24e8", + "tokenToState": [ + [ + 0, + { + "cumVlm": "31767287.4200000018", + "cumRewardedFeesSinceReferred": "12114.95159313", + "cumFeesRewardedToReferrer": "1211.48930369" + } + ] + ] + }, + { + "cumVlm": "0.0", + "cumRewardedFeesSinceReferred": "0.0", + "cumFeesRewardedToReferrer": "0.0", + "timeJoined": 1751022900093, + "user": "0x7096a82cd4c980f61a490a391d680a2e0259f7f0", + "tokenToState": [] + } + ] + } + }, + "rewardHistory": [], + "tokenToState": [ + [ + 0, + { + "cumVlm": "2678503101.9200000763", + "unclaimedRewards": "1211.48930369", + "claimedRewards": "23302.099542", + "builderRewards": "0.0" + } + ] + ] + }, + "sub_accounts": null, + "funding_history": { + "BTC": [ + { + "coin": "BTC", + "fundingRate": "-0.0000086303", + "premium": "-0.0005690423", + "time": 1760907600000 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000129005", + "premium": "-0.0006032036", + "time": 1760911200051 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000083362", + "premium": "-0.0005666897", + "time": 1760914800023 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000052459", + "premium": "-0.0005419672", + "time": 1760918400001 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000057828", + "premium": "-0.0005462623", + "time": 1760922000091 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000002593", + "premium": "-0.0005020743", + "time": 1760925600012 + }, + { + "coin": "BTC", + "fundingRate": "0.0000043413", + "premium": "-0.0004652699", + "time": 1760929200011 + }, + { + "coin": "BTC", + "fundingRate": "0.000010074", + "premium": "-0.0004194084", + "time": 1760932800027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003030481", + "time": 1760936400027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000119109", + "time": 1760940000067 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002314582", + "time": 1760943600099 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000217824", + "time": 1760947200102 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001982252", + "time": 1760950800121 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001352645", + "time": 1760954400031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001272886", + "time": 1760958000001 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001165919", + "time": 1760961600008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000136049", + "time": 1760965200016 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002338981", + "time": 1760968800008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003899218", + "time": 1760972400038 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003885256", + "time": 1760976000065 + }, + { + "coin": "BTC", + "fundingRate": "0.0000016059", + "premium": "-0.0004871525", + "time": 1760979600004 + }, + { + "coin": "BTC", + "fundingRate": "0.0000008419", + "premium": "-0.0004932651", + "time": 1760983200050 + }, + { + "coin": "BTC", + "fundingRate": "0.0000110306", + "premium": "-0.0004117548", + "time": 1760986800049 + }, + { + "coin": "BTC", + "fundingRate": "0.0000069584", + "premium": "-0.0004443329", + "time": 1760990400017 + }, + { + "coin": "BTC", + "fundingRate": "0.0000051083", + "premium": "-0.0004591332", + "time": 1760994000028 + }, + { + "coin": "BTC", + "fundingRate": "0.0000023643", + "premium": "-0.0004810854", + "time": 1760997600031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000062676", + "premium": "-0.0004498594", + "time": 1761001200065 + }, + { + "coin": "BTC", + "fundingRate": "0.0000024307", + "premium": "-0.0004805546", + "time": 1761004800019 + }, + { + "coin": "BTC", + "fundingRate": "0.0000041224", + "premium": "-0.0004670205", + "time": 1761008400007 + }, + { + "coin": "BTC", + "fundingRate": "0.0000022574", + "premium": "-0.0004819408", + "time": 1761012000031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000013109", + "premium": "-0.0004895131", + "time": 1761015600071 + }, + { + "coin": "BTC", + "fundingRate": "0.0000020437", + "premium": "-0.0004836506", + "time": 1761019200035 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000013815", + "premium": "-0.000511052", + "time": 1761022800063 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000070809", + "premium": "-0.0005566472", + "time": 1761026400008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000032246", + "premium": "-0.0004742033", + "time": 1761030000118 + }, + { + "coin": "BTC", + "fundingRate": "0.0000026276", + "premium": "-0.0004789796", + "time": 1761033600010 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000029544", + "premium": "-0.0005236355", + "time": 1761037200003 + }, + { + "coin": "BTC", + "fundingRate": "0.0000104736", + "premium": "-0.000416211", + "time": 1761040800028 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003548212", + "time": 1761044400076 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001751239", + "time": 1761048000078 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001683407", + "time": 1761051600030 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003711413", + "time": 1761055200096 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002222974", + "time": 1761058800047 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000122508", + "time": 1761062400042 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002984871", + "time": 1761066000058 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000026826", + "premium": "-0.0005214606", + "time": 1761069600016 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000007251", + "premium": "-0.0005058006", + "time": 1761073200080 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000033525", + "premium": "-0.0005268203", + "time": 1761076800060 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000174662", + "premium": "-0.0006397296", + "time": 1761080400019 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000076151", + "premium": "-0.0005609207", + "time": 1761084000011 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000134023", + "premium": "-0.0006072185", + "time": 1761087600060 + }, + { + "coin": "BTC", + "fundingRate": "0.0000008439", + "premium": "-0.0004932485", + "time": 1761091200025 + }, + { + "coin": "BTC", + "fundingRate": "0.000007544", + "premium": "-0.0004396483", + "time": 1761094800050 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002975444", + "time": 1761098400020 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003179832", + "time": 1761102000081 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003568722", + "time": 1761105600076 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003954795", + "time": 1761109200035 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003318022", + "time": 1761112800009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002520846", + "time": 1761116400071 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003883788", + "time": 1761120000062 + }, + { + "coin": "BTC", + "fundingRate": "0.000011671", + "premium": "-0.000406632", + "time": 1761123600059 + }, + { + "coin": "BTC", + "fundingRate": "0.0000073978", + "premium": "-0.0004408173", + "time": 1761127200074 + }, + { + "coin": "BTC", + "fundingRate": "0.0000052163", + "premium": "-0.0004582696", + "time": 1761130800056 + }, + { + "coin": "BTC", + "fundingRate": "0.0000033829", + "premium": "-0.0004729366", + "time": 1761134400032 + }, + { + "coin": "BTC", + "fundingRate": "0.0000073123", + "premium": "-0.0004415018", + "time": 1761138000031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000107638", + "premium": "-0.0004138899", + "time": 1761141600029 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001179009", + "time": 1761145200025 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002026969", + "time": 1761148800036 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000288323", + "time": 1761152400033 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000220857", + "time": 1761156000008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000837721", + "time": 1761159600089 + }, + { + "coin": "BTC", + "fundingRate": "0.0000075109", + "premium": "-0.0004399124", + "time": 1761163200002 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003984073", + "time": 1761166800025 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003158637", + "time": 1761170400027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003799932", + "time": 1761174000005 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000393111", + "time": 1761177600009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003335732", + "time": 1761181200016 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000127278", + "time": 1761184800031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000611793", + "time": 1761188400006 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000281721", + "time": 1761192000069 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000607776", + "time": 1761195600027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001393975", + "time": 1761199200059 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002208432", + "time": 1761202800050 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001904973", + "time": 1761206400047 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001506049", + "time": 1761210000058 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001219538", + "time": 1761213600041 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001931805", + "time": 1761217200009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001015844", + "time": 1761220800003 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000161843", + "time": 1761224400028 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001085288", + "time": 1761228000017 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002192891", + "time": 1761231600071 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000838156", + "time": 1761235200077 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000329185", + "time": 1761238800066 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001430906", + "time": 1761242400067 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002213978", + "time": 1761246000064 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001776608", + "time": 1761249600111 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001673456", + "time": 1761253200075 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000597556", + "time": 1761256800059 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000146871", + "time": 1761260400061 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000964892", + "time": 1761264000027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001058102", + "time": 1761267600017 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000732839", + "time": 1761271200037 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001243328", + "time": 1761274800019 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000172338", + "time": 1761278400025 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000752913", + "time": 1761282000030 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000889222", + "time": 1761285600025 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000407236", + "time": 1761289200071 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000031435", + "time": 1761292800077 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001203023", + "time": 1761296400061 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001343542", + "time": 1761300000120 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000960592", + "time": 1761303600104 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001479164", + "time": 1761307200013 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003044698", + "time": 1761310800033 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004006079", + "time": 1761314400009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005794671", + "time": 1761318000027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005716088", + "time": 1761321600171 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000513325", + "time": 1761325200036 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005445322", + "time": 1761328800052 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004764841", + "time": 1761332400043 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004228874", + "time": 1761336000021 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004113976", + "time": 1761339600031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004538869", + "time": 1761343200007 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004716946", + "time": 1761346800032 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004243927", + "time": 1761350400014 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003267751", + "time": 1761354000081 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003430884", + "time": 1761357600085 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003492443", + "time": 1761361200008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003368894", + "time": 1761364800066 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003204868", + "time": 1761368400028 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003473872", + "time": 1761372000036 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004158499", + "time": 1761375600008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004908448", + "time": 1761379200043 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000484888", + "time": 1761382800025 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004952546", + "time": 1761386400021 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004783556", + "time": 1761390000057 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005190806", + "time": 1761393600047 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005508971", + "time": 1761397200046 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004645111", + "time": 1761400800058 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002742317", + "time": 1761404400016 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001583254", + "time": 1761408000041 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000734766", + "time": 1761411600015 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001723186", + "time": 1761415200027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002461631", + "time": 1761418800030 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003475385", + "time": 1761422400002 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003257242", + "time": 1761426000073 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003117672", + "time": 1761429600055 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003188996", + "time": 1761433200044 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003026988", + "time": 1761436800032 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003465539", + "time": 1761440400040 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003386333", + "time": 1761444000006 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002688927", + "time": 1761447600063 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001830748", + "time": 1761451200133 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000556778", + "time": 1761454800021 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000713956", + "time": 1761458400088 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000725262", + "time": 1761462000054 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001433561", + "time": 1761465600009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002166459", + "time": 1761469200041 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000278095", + "time": 1761472800028 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003047142", + "time": 1761476400068 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003250711", + "time": 1761480000084 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000340227", + "time": 1761483600054 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003502875", + "time": 1761487200041 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003389626", + "time": 1761490800079 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000311226", + "time": 1761494400039 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003087198", + "time": 1761498000074 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002717117", + "time": 1761501600030 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000347195", + "time": 1761505200059 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004400754", + "time": 1761508800056 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003669282", + "time": 1761512400033 + } + ], + "ETH": [ + { + "coin": "ETH", + "fundingRate": "-0.0000086601", + "premium": "-0.0005692807", + "time": 1760907600000 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000123972", + "premium": "-0.0005991777", + "time": 1760911200051 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000140248", + "premium": "-0.0006121984", + "time": 1760914800023 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000109998", + "premium": "-0.0005879985", + "time": 1760918400001 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000031084", + "premium": "-0.0005248673", + "time": 1760922000091 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000043419", + "premium": "-0.0005347349", + "time": 1760925600012 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000036908", + "premium": "-0.0005295262", + "time": 1760929200011 + }, + { + "coin": "ETH", + "fundingRate": "0.0000048327", + "premium": "-0.0004613386", + "time": 1760932800027 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003187472", + "time": 1760936400027 + }, + { + "coin": "ETH", + "fundingRate": "0.0000087842", + "premium": "-0.0004297265", + "time": 1760940000067 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003855951", + "time": 1760943600099 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003812308", + "time": 1760947200102 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003917541", + "time": 1760950800121 + }, + { + "coin": "ETH", + "fundingRate": "0.0000117916", + "premium": "-0.0004056671", + "time": 1760954400031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000084048", + "premium": "-0.0004327618", + "time": 1760958000001 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003619879", + "time": 1760961600008 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000307263", + "time": 1760965200016 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002453205", + "time": 1760968800008 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002086067", + "time": 1760972400038 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001759044", + "time": 1760976000065 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002790004", + "time": 1760979600004 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001851621", + "time": 1760983200050 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002010051", + "time": 1760986800049 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003175336", + "time": 1760990400017 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002648332", + "time": 1760994000028 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003429959", + "time": 1760997600031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000325434", + "time": 1761001200065 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000318293", + "time": 1761004800019 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003768053", + "time": 1761008400007 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002966119", + "time": 1761012000031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002011445", + "time": 1761015600071 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000436169", + "time": 1761019200035 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001897127", + "time": 1761022800063 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001436807", + "time": 1761026400008 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003042976", + "time": 1761030000118 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002560929", + "time": 1761033600010 + }, + { + "coin": "ETH", + "fundingRate": "0.0000110391", + "premium": "-0.0004116868", + "time": 1761037200003 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003337129", + "time": 1761040800028 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003193498", + "time": 1761044400076 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002287856", + "time": 1761048000078 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000892195", + "time": 1761051600030 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001510062", + "time": 1761055200096 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000517515", + "time": 1761058800047 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001853071", + "time": 1761062400042 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000094919", + "time": 1761066000058 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000072822", + "time": 1761069600016 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000121835", + "time": 1761073200080 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003673479", + "time": 1761076800060 + }, + { + "coin": "ETH", + "fundingRate": "0.0000077975", + "premium": "-0.0004376202", + "time": 1761080400019 + }, + { + "coin": "ETH", + "fundingRate": "0.0000022918", + "premium": "-0.0004816653", + "time": 1761084000011 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000090437", + "premium": "-0.0005723496", + "time": 1761087600060 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000148528", + "premium": "-0.0006188225", + "time": 1761091200025 + }, + { + "coin": "ETH", + "fundingRate": "-0.000011851", + "premium": "-0.0005948082", + "time": 1761094800050 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000034748", + "premium": "-0.0005277986", + "time": 1761098400020 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000029198", + "premium": "-0.0005233587", + "time": 1761102000081 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000031762", + "premium": "-0.0005254093", + "time": 1761105600076 + }, + { + "coin": "ETH", + "fundingRate": "0.0000005475", + "premium": "-0.0004956204", + "time": 1761109200035 + }, + { + "coin": "ETH", + "fundingRate": "0.0000026594", + "premium": "-0.000478725", + "time": 1761112800009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000034262", + "premium": "-0.0004725901", + "time": 1761116400071 + }, + { + "coin": "ETH", + "fundingRate": "0.0000075521", + "premium": "-0.0004395833", + "time": 1761120000062 + }, + { + "coin": "ETH", + "fundingRate": "0.0000102056", + "premium": "-0.0004183555", + "time": 1761123600059 + }, + { + "coin": "ETH", + "fundingRate": "0.0000080995", + "premium": "-0.0004352043", + "time": 1761127200074 + }, + { + "coin": "ETH", + "fundingRate": "0.0000099086", + "premium": "-0.0004207315", + "time": 1761130800056 + }, + { + "coin": "ETH", + "fundingRate": "0.0000064496", + "premium": "-0.0004484035", + "time": 1761134400032 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003398574", + "time": 1761138000031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003126328", + "time": 1761141600029 + }, + { + "coin": "ETH", + "fundingRate": "0.0000118332", + "premium": "-0.0004053341", + "time": 1761145200025 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000041865", + "premium": "-0.0005334917", + "time": 1761148800036 + }, + { + "coin": "ETH", + "fundingRate": "-0.000012775", + "premium": "-0.0006021997", + "time": 1761152400033 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000094025", + "premium": "-0.0005752198", + "time": 1761156000008 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000099926", + "premium": "-0.0005799406", + "time": 1761159600089 + }, + { + "coin": "ETH", + "fundingRate": "0.0000006318", + "premium": "-0.0004949454", + "time": 1761163200002 + }, + { + "coin": "ETH", + "fundingRate": "0.000000636", + "premium": "-0.0004949116", + "time": 1761166800025 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000021812", + "premium": "-0.0005174499", + "time": 1761170400027 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000095086", + "premium": "-0.0005760687", + "time": 1761174000005 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000017587", + "premium": "-0.0005140696", + "time": 1761177600009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000047453", + "premium": "-0.0004620376", + "time": 1761181200016 + }, + { + "coin": "ETH", + "fundingRate": "0.0000039805", + "premium": "-0.0004681563", + "time": 1761184800031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000069551", + "premium": "-0.0004443593", + "time": 1761188400006 + }, + { + "coin": "ETH", + "fundingRate": "0.0000061453", + "premium": "-0.0004508377", + "time": 1761192000069 + }, + { + "coin": "ETH", + "fundingRate": "0.0000056013", + "premium": "-0.00045519", + "time": 1761195600027 + }, + { + "coin": "ETH", + "fundingRate": "0.0000106185", + "premium": "-0.000415052", + "time": 1761199200059 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003625454", + "time": 1761202800050 + }, + { + "coin": "ETH", + "fundingRate": "0.0000084962", + "premium": "-0.0004320301", + "time": 1761206400047 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003425294", + "time": 1761210000058 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002814714", + "time": 1761213600041 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001350224", + "time": 1761217200009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000579583", + "time": 1761220800003 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000637819", + "time": 1761224400028 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000491112", + "time": 1761228000017 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000265103", + "time": 1761231600071 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000633233", + "time": 1761235200077 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001762556", + "time": 1761238800066 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001438487", + "time": 1761242400067 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000678628", + "time": 1761246000064 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000642349", + "time": 1761249600111 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000644468", + "time": 1761253200075 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002626957", + "time": 1761256800059 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002883672", + "time": 1761260400061 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000741096", + "time": 1761264000027 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000078495", + "time": 1761267600017 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000736892", + "time": 1761271200037 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001152003", + "time": 1761274800019 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000212291", + "time": 1761278400025 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000303098", + "time": 1761282000030 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0002320454", + "time": 1761285600025 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0002069007", + "time": 1761289200071 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001459459", + "time": 1761292800077 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000610695", + "time": 1761296400061 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000687375", + "time": 1761300000120 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001389247", + "time": 1761303600104 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001060309", + "time": 1761307200013 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001771318", + "time": 1761310800033 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001454371", + "time": 1761314400009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001690049", + "time": 1761318000027 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001970031", + "time": 1761321600171 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001485934", + "time": 1761325200036 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001562667", + "time": 1761328800052 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001054509", + "time": 1761332400043 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001360957", + "time": 1761336000021 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0003065801", + "time": 1761339600031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0003237599", + "time": 1761343200007 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0003332077", + "time": 1761346800032 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0002439774", + "time": 1761350400014 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000128523", + "time": 1761354000081 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001531508", + "time": 1761357600085 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001625471", + "time": 1761361200008 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001372684", + "time": 1761364800066 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001154002", + "time": 1761368400028 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000883615", + "time": 1761372000036 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000974643", + "time": 1761375600008 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000793815", + "time": 1761379200043 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000744869", + "time": 1761382800025 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000957654", + "time": 1761386400021 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000753839", + "time": 1761390000057 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001177421", + "time": 1761393600047 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001489224", + "time": 1761397200046 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000150952", + "time": 1761400800058 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001092355", + "time": 1761404400016 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000618235", + "time": 1761408000041 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000833954", + "time": 1761411600015 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001093273", + "time": 1761415200027 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000607707", + "time": 1761418800030 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000761181", + "time": 1761422400002 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000743616", + "time": 1761426000073 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000928337", + "time": 1761429600055 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001198571", + "time": 1761433200044 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000668206", + "time": 1761436800032 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000425907", + "time": 1761440400040 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000239282", + "time": 1761444000006 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000133243", + "time": 1761447600063 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000137014", + "time": 1761451200133 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000446889", + "time": 1761454800021 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000292407", + "time": 1761458400088 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000285564", + "time": 1761462000054 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000103596", + "time": 1761465600009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000003341", + "time": 1761469200041 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001069926", + "time": 1761472800028 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001196414", + "time": 1761476400068 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001034774", + "time": 1761480000084 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000976692", + "time": 1761483600054 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000521771", + "time": 1761487200041 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000418968", + "time": 1761490800079 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000327784", + "time": 1761494400039 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000666907", + "time": 1761498000074 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000143709", + "time": 1761501600030 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000974679", + "time": 1761505200059 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000914429", + "time": 1761508800056 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000220714", + "time": 1761512400033 + } + ], + "SOL": [ + { + "coin": "SOL", + "fundingRate": "-0.0000065015", + "premium": "-0.0005520117", + "time": 1760907600000 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000173204", + "premium": "-0.0006385632", + "time": 1760911200051 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000082957", + "premium": "-0.0005663654", + "time": 1760914800023 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000183807", + "premium": "-0.0006470459", + "time": 1760918400001 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000227918", + "premium": "-0.0006823341", + "time": 1760922000091 + }, + { + "coin": "SOL", + "fundingRate": "-0.000014793", + "premium": "-0.0006183437", + "time": 1760925600012 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000040769", + "premium": "-0.000532615", + "time": 1760929200011 + }, + { + "coin": "SOL", + "fundingRate": "0.0000073491", + "premium": "-0.0004412073", + "time": 1760932800027 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003385581", + "time": 1760936400027 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002788164", + "time": 1760940000067 + }, + { + "coin": "SOL", + "fundingRate": "0.0000119691", + "premium": "-0.0004042475", + "time": 1760943600099 + }, + { + "coin": "SOL", + "fundingRate": "0.0000026223", + "premium": "-0.0004790212", + "time": 1760947200102 + }, + { + "coin": "SOL", + "fundingRate": "0.0000013404", + "premium": "-0.0004892772", + "time": 1760950800121 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000030753", + "premium": "-0.0005246027", + "time": 1760954400031 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000006827", + "premium": "-0.0005054616", + "time": 1760958000001 + }, + { + "coin": "SOL", + "fundingRate": "0.0000021902", + "premium": "-0.0004824782", + "time": 1760961600008 + }, + { + "coin": "SOL", + "fundingRate": "0.0000005667", + "premium": "-0.0004954664", + "time": 1760965200016 + }, + { + "coin": "SOL", + "fundingRate": "0.0000120642", + "premium": "-0.0004034867", + "time": 1760968800008 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000030613", + "premium": "-0.0005244906", + "time": 1760972400038 + }, + { + "coin": "SOL", + "fundingRate": "0.0000061049", + "premium": "-0.0004511609", + "time": 1760976000065 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000017774", + "premium": "-0.0005142195", + "time": 1760979600004 + }, + { + "coin": "SOL", + "fundingRate": "0.0000032116", + "premium": "-0.000474307", + "time": 1760983200050 + }, + { + "coin": "SOL", + "fundingRate": "0.0000048414", + "premium": "-0.000461269", + "time": 1760986800049 + }, + { + "coin": "SOL", + "fundingRate": "0.0000116316", + "premium": "-0.0004069468", + "time": 1760990400017 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003183752", + "time": 1760994000028 + }, + { + "coin": "SOL", + "fundingRate": "0.0000105763", + "premium": "-0.0004153898", + "time": 1760997600031 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.000374574", + "time": 1761001200065 + }, + { + "coin": "SOL", + "fundingRate": "0.0000064417", + "premium": "-0.000448466", + "time": 1761004800019 + }, + { + "coin": "SOL", + "fundingRate": "0.0000117599", + "premium": "-0.0004059207", + "time": 1761008400007 + }, + { + "coin": "SOL", + "fundingRate": "0.0000027204", + "premium": "-0.0004782371", + "time": 1761012000031 + }, + { + "coin": "SOL", + "fundingRate": "0.0000043146", + "premium": "-0.0004654832", + "time": 1761015600071 + }, + { + "coin": "SOL", + "fundingRate": "0.0000116321", + "premium": "-0.0004069436", + "time": 1761019200035 + }, + { + "coin": "SOL", + "fundingRate": "0.000000514", + "premium": "-0.0004958881", + "time": 1761022800063 + }, + { + "coin": "SOL", + "fundingRate": "0.0000071792", + "premium": "-0.000442566", + "time": 1761026400008 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000024705", + "premium": "-0.0005197639", + "time": 1761030000118 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000000297", + "premium": "-0.0005002378", + "time": 1761033600010 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000117821", + "premium": "-0.0005942568", + "time": 1761037200003 + }, + { + "coin": "SOL", + "fundingRate": "0.0000035447", + "premium": "-0.0004716424", + "time": 1761040800028 + }, + { + "coin": "SOL", + "fundingRate": "0.0000081934", + "premium": "-0.0004344532", + "time": 1761044400076 + }, + { + "coin": "SOL", + "fundingRate": "0.0000058207", + "premium": "-0.0004534347", + "time": 1761048000078 + }, + { + "coin": "SOL", + "fundingRate": "0.0000061282", + "premium": "-0.000450974", + "time": 1761051600030 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000001924", + "premium": "-0.0005015391", + "time": 1761055200096 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.000371774", + "time": 1761058800047 + }, + { + "coin": "SOL", + "fundingRate": "0.000011612", + "premium": "-0.0004071039", + "time": 1761062400042 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000014312", + "premium": "-0.0005114493", + "time": 1761066000058 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000007599", + "premium": "-0.000506079", + "time": 1761069600016 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000208043", + "premium": "-0.0006664344", + "time": 1761073200080 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000171227", + "premium": "-0.0006369819", + "time": 1761076800060 + }, + { + "coin": "SOL", + "fundingRate": "-0.000010192", + "premium": "-0.000581536", + "time": 1761080400019 + }, + { + "coin": "SOL", + "fundingRate": "0.0000024086", + "premium": "-0.0004807312", + "time": 1761084000011 + }, + { + "coin": "SOL", + "fundingRate": "0.0000087172", + "premium": "-0.000430262", + "time": 1761087600060 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000025974", + "premium": "-0.0005207791", + "time": 1761091200025 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000071727", + "premium": "-0.0005573819", + "time": 1761094800050 + }, + { + "coin": "SOL", + "fundingRate": "0.0000004072", + "premium": "-0.0004967423", + "time": 1761098400020 + }, + { + "coin": "SOL", + "fundingRate": "0.0000025593", + "premium": "-0.0004795255", + "time": 1761102000081 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000047782", + "premium": "-0.0005382256", + "time": 1761105600076 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000048955", + "premium": "-0.0005391639", + "time": 1761109200035 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000018326", + "premium": "-0.000514661", + "time": 1761112800009 + }, + { + "coin": "SOL", + "fundingRate": "0.0000024606", + "premium": "-0.0004803149", + "time": 1761116400071 + }, + { + "coin": "SOL", + "fundingRate": "-0.00001134", + "premium": "-0.0005907203", + "time": 1761120000062 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000112563", + "premium": "-0.0005900501", + "time": 1761123600059 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000124411", + "premium": "-0.0005995287", + "time": 1761127200074 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000099317", + "premium": "-0.0005794534", + "time": 1761130800056 + }, + { + "coin": "SOL", + "fundingRate": "0.0000006656", + "premium": "-0.0004946753", + "time": 1761134400032 + }, + { + "coin": "SOL", + "fundingRate": "0.0000105979", + "premium": "-0.0004152164", + "time": 1761138000031 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003132918", + "time": 1761141600029 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003976975", + "time": 1761145200025 + }, + { + "coin": "SOL", + "fundingRate": "0.0000102271", + "premium": "-0.0004181836", + "time": 1761148800036 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003135737", + "time": 1761152400033 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003829325", + "time": 1761156000008 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000010469", + "premium": "-0.0005083751", + "time": 1761159600089 + }, + { + "coin": "SOL", + "fundingRate": "0.0000010546", + "premium": "-0.0004915628", + "time": 1761163200002 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000129326", + "premium": "-0.0006034608", + "time": 1761166800025 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000082901", + "premium": "-0.0005663208", + "time": 1761170400027 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000178903", + "premium": "-0.0006431226", + "time": 1761174000005 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000063956", + "premium": "-0.0005511645", + "time": 1761177600009 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000049175", + "premium": "-0.0005393401", + "time": 1761181200016 + }, + { + "coin": "SOL", + "fundingRate": "0.0000024885", + "premium": "-0.0004800922", + "time": 1761184800031 + }, + { + "coin": "SOL", + "fundingRate": "0.0000102251", + "premium": "-0.0004181991", + "time": 1761188400006 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003424945", + "time": 1761192000069 + }, + { + "coin": "SOL", + "fundingRate": "0.0000123014", + "premium": "-0.0004015887", + "time": 1761195600027 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003973601", + "time": 1761199200059 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003161634", + "time": 1761202800050 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003618314", + "time": 1761206400047 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001577689", + "time": 1761210000058 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001087311", + "time": 1761213600041 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.000100426", + "time": 1761217200009 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002343418", + "time": 1761220800003 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001463744", + "time": 1761224400028 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001902542", + "time": 1761228000017 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000940197", + "time": 1761231600071 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000307334", + "time": 1761235200077 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000457865", + "time": 1761238800066 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001242897", + "time": 1761242400067 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001704841", + "time": 1761246000064 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003133038", + "time": 1761249600111 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003980109", + "time": 1761253200075 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000001044", + "premium": "-0.0005008352", + "time": 1761256800059 + }, + { + "coin": "SOL", + "fundingRate": "0.0000010685", + "premium": "-0.0004914519", + "time": 1761260400061 + }, + { + "coin": "SOL", + "fundingRate": "0.0000067343", + "premium": "-0.0004461253", + "time": 1761264000027 + }, + { + "coin": "SOL", + "fundingRate": "0.000010908", + "premium": "-0.0004127359", + "time": 1761267600017 + }, + { + "coin": "SOL", + "fundingRate": "0.0000097212", + "premium": "-0.0004222301", + "time": 1761271200037 + }, + { + "coin": "SOL", + "fundingRate": "0.0000011463", + "premium": "-0.0004908293", + "time": 1761274800019 + }, + { + "coin": "SOL", + "fundingRate": "0.000000059", + "premium": "-0.0004995278", + "time": 1761278400025 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003752989", + "time": 1761282000030 + }, + { + "coin": "SOL", + "fundingRate": "0.0000052528", + "premium": "-0.0004579773", + "time": 1761285600025 + }, + { + "coin": "SOL", + "fundingRate": "0.0000120973", + "premium": "-0.0004032212", + "time": 1761289200071 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003567801", + "time": 1761292800077 + }, + { + "coin": "SOL", + "fundingRate": "0.0000074683", + "premium": "-0.0004402539", + "time": 1761296400061 + }, + { + "coin": "SOL", + "fundingRate": "0.0000081756", + "premium": "-0.000434595", + "time": 1761300000120 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000002325", + "premium": "-0.0005018601", + "time": 1761303600104 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000082387", + "premium": "-0.0005659098", + "time": 1761307200013 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000075289", + "premium": "-0.0005602314", + "time": 1761310800033 + }, + { + "coin": "SOL", + "fundingRate": "-0.000001767", + "premium": "-0.0005141357", + "time": 1761314400009 + }, + { + "coin": "SOL", + "fundingRate": "0.0000012646", + "premium": "-0.0004898834", + "time": 1761318000027 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000039815", + "premium": "-0.000531852", + "time": 1761321600171 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000073971", + "premium": "-0.000559177", + "time": 1761325200036 + }, + { + "coin": "SOL", + "fundingRate": "0.0000052071", + "premium": "-0.0004583431", + "time": 1761328800052 + }, + { + "coin": "SOL", + "fundingRate": "0.0000009949", + "premium": "-0.0004920407", + "time": 1761332400043 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003602674", + "time": 1761336000021 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003807111", + "time": 1761339600031 + }, + { + "coin": "SOL", + "fundingRate": "0.0000113998", + "premium": "-0.0004088019", + "time": 1761343200007 + }, + { + "coin": "SOL", + "fundingRate": "0.0000108705", + "premium": "-0.0004130361", + "time": 1761346800032 + }, + { + "coin": "SOL", + "fundingRate": "0.0000085421", + "premium": "-0.0004316635", + "time": 1761350400014 + }, + { + "coin": "SOL", + "fundingRate": "0.0000003076", + "premium": "-0.0004975395", + "time": 1761354000081 + }, + { + "coin": "SOL", + "fundingRate": "0.0000019314", + "premium": "-0.0004845489", + "time": 1761357600085 + }, + { + "coin": "SOL", + "fundingRate": "0.0000101325", + "premium": "-0.0004189401", + "time": 1761361200008 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003945183", + "time": 1761364800066 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003084353", + "time": 1761368400028 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003896029", + "time": 1761372000036 + }, + { + "coin": "SOL", + "fundingRate": "0.0000120798", + "premium": "-0.0004033619", + "time": 1761375600008 + }, + { + "coin": "SOL", + "fundingRate": "0.0000054476", + "premium": "-0.0004564192", + "time": 1761379200043 + }, + { + "coin": "SOL", + "fundingRate": "0.0000057688", + "premium": "-0.0004538492", + "time": 1761382800025 + }, + { + "coin": "SOL", + "fundingRate": "0.0000070128", + "premium": "-0.0004438974", + "time": 1761386400021 + }, + { + "coin": "SOL", + "fundingRate": "0.0000042522", + "premium": "-0.0004659823", + "time": 1761390000057 + }, + { + "coin": "SOL", + "fundingRate": "0.000011386", + "premium": "-0.0004089121", + "time": 1761393600047 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003431662", + "time": 1761397200046 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003878945", + "time": 1761400800058 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000092738", + "premium": "-0.0005741902", + "time": 1761404400016 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000065131", + "premium": "-0.000552105", + "time": 1761408000041 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000116481", + "premium": "-0.0005931848", + "time": 1761411600015 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000038845", + "premium": "-0.0005310757", + "time": 1761415200027 + }, + { + "coin": "SOL", + "fundingRate": "0.0000116902", + "premium": "-0.0004064787", + "time": 1761418800030 + }, + { + "coin": "SOL", + "fundingRate": "0.0000089342", + "premium": "-0.0004285268", + "time": 1761422400002 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003935629", + "time": 1761426000073 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002780613", + "time": 1761429600055 + }, + { + "coin": "SOL", + "fundingRate": "0.0000111112", + "premium": "-0.0004111106", + "time": 1761433200044 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003304611", + "time": 1761436800032 + }, + { + "coin": "SOL", + "fundingRate": "0.0000095835", + "premium": "-0.0004233319", + "time": 1761440400040 + }, + { + "coin": "SOL", + "fundingRate": "0.0000108432", + "premium": "-0.0004132542", + "time": 1761444000006 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003134045", + "time": 1761447600063 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002791668", + "time": 1761451200133 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002890506", + "time": 1761454800021 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003875814", + "time": 1761458400088 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003102352", + "time": 1761462000054 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003197074", + "time": 1761465600009 + }, + { + "coin": "SOL", + "fundingRate": "0.0000109795", + "premium": "-0.000412164", + "time": 1761469200041 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002309353", + "time": 1761472800028 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000511212", + "time": 1761476400068 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000133266", + "time": 1761480000084 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000312538", + "time": 1761483600054 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000227339", + "time": 1761487200041 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001234348", + "time": 1761490800079 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003574461", + "time": 1761494400039 + }, + { + "coin": "SOL", + "fundingRate": "0.0000087164", + "premium": "-0.0004302685", + "time": 1761498000074 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003264781", + "time": 1761501600030 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002048436", + "time": 1761505200059 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002522871", + "time": 1761508800056 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002936289", + "time": 1761512400033 + } + ] + } + } +} \ No newline at end of file diff --git a/hyperliquid_wallet_data_0xb83de012_20251027_110228.json b/hyperliquid_wallet_data_0xb83de012_20251027_110228.json new file mode 100644 index 0000000..92b8efa --- /dev/null +++ b/hyperliquid_wallet_data_0xb83de012_20251027_110228.json @@ -0,0 +1,46658 @@ +{ + "wallet_address": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "timestamp": "2025-10-27T11:02:19.911353", + "data": { + "user_state": { + "marginSummary": { + "accountValue": "24587812.1314149983", + "totalNtlPos": "87671124.0572630018", + "totalRawUsd": "112258936.1886779964", + "totalMarginUsed": "13454037.2197890002" + }, + "crossMarginSummary": { + "accountValue": "24587812.1314149983", + "totalNtlPos": "87671124.0572630018", + "totalRawUsd": "112258936.1886779964", + "totalMarginUsed": "13454037.2197890002" + }, + "crossMaintenanceMarginUsed": "3792409.3856000002", + "withdrawable": "11128327.8348660003", + "assetPositions": [ + { + "type": "oneWay", + "position": { + "coin": "BTC", + "szi": "-160.57282", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "115138.7", + "positionValue": "18503127.1942400001", + "unrealizedPnl": "-14975.470851", + "returnOnEquity": "-0.0081000368", + "liquidationPx": "243140.7542871995", + "marginUsed": "1850312.719424", + "maxLeverage": 40, + "cumFunding": { + "allTime": "-6917717.7339899996", + "sinceOpen": "-6917717.7399310004", + "sinceChange": "-231.333247" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "ETH", + "szi": "-5280.0281", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "3996.74", + "positionValue": "21973892.9437699988", + "unrealizedPnl": "-870983.408783", + "returnOnEquity": "-0.4127314328", + "liquidationPx": "8022.9767516898", + "marginUsed": "2197389.2943770001", + "maxLeverage": 25, + "cumFunding": { + "allTime": "-6604558.0071099997", + "sinceOpen": "-6604558.0071099997", + "sinceChange": "-274.561461" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "SOL", + "szi": "-359.37", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "194.4727", + "positionValue": "71823.6882", + "unrealizedPnl": "-1936.028458", + "returnOnEquity": "-0.2770200727", + "liquidationPx": "56654.7610790971", + "marginUsed": "7182.36882", + "maxLeverage": 20, + "cumFunding": { + "allTime": "-792049.247187", + "sinceOpen": "-78.394201", + "sinceChange": "-61.529144" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "DOGE", + "szi": "-109217.0", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "0.279959", + "positionValue": "22139.37807", + "unrealizedPnl": "8436.994589", + "returnOnEquity": "2.7593183414", + "liquidationPx": "181.5402808196", + "marginUsed": "2213.937807", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-1873.71172", + "sinceOpen": "-1873.71172", + "sinceChange": "47.551469" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "INJ", + "szi": "-18747.2", + "leverage": { + "type": "cross", + "value": 3 + }, + "entryPx": "13.01496", + "positionValue": "163679.92848", + "unrealizedPnl": "80314.28942", + "returnOnEquity": "0.9874941723", + "liquidationPx": "1024.020395323", + "marginUsed": "54559.97616", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-535.830097", + "sinceOpen": "-535.830097", + "sinceChange": "-4.063889" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "SUI", + "szi": "-376577.6", + "leverage": { + "type": "cross", + "value": 3 + }, + "entryPx": "3.85881", + "positionValue": "988629.17328", + "unrealizedPnl": "464515.084481", + "returnOnEquity": "0.958986175", + "liquidationPx": "55.1219562177", + "marginUsed": "329543.05776", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-45669.532515", + "sinceOpen": "-45669.527678", + "sinceChange": "-1109.952608" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "XRP", + "szi": "-39691.0", + "leverage": { + "type": "cross", + "value": 20 + }, + "entryPx": "2.468585", + "positionValue": "103609.3864", + "unrealizedPnl": "-5628.7641", + "returnOnEquity": "-1.148954552", + "liquidationPx": "513.7640066311", + "marginUsed": "5180.46932", + "maxLeverage": 20, + "cumFunding": { + "allTime": "-2632.236586", + "sinceOpen": "-102.873417", + "sinceChange": "-102.873417" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "HYPE", + "szi": "-750315.16", + "leverage": { + "type": "cross", + "value": 5 + }, + "entryPx": "43.3419", + "positionValue": "35318835.2115200013", + "unrealizedPnl": "-2798724.616868", + "returnOnEquity": "-0.4303067495", + "liquidationPx": "72.267961104", + "marginUsed": "7063767.0423039999", + "maxLeverage": 5, + "cumFunding": { + "allTime": "-1876816.902427", + "sinceOpen": "-1876816.902427", + "sinceChange": "-40480.319745" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "FARTCOIN", + "szi": "-4122236.7999999998", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "0.80127", + "positionValue": "1622058.9584319999", + "unrealizedPnl": "1681003.427354", + "returnOnEquity": "5.0892269991", + "liquidationPx": "5.1822184262", + "marginUsed": "162205.895843", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-72496.963216", + "sinceOpen": "-50827.088592", + "sinceChange": "-6059.86379" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "PUMP", + "szi": "-1921732999.0", + "leverage": { + "type": "cross", + "value": 5 + }, + "entryPx": "0.005551", + "positionValue": "8895702.0523710009", + "unrealizedPnl": "1772311.258014", + "returnOnEquity": "0.8306660324", + "liquidationPx": "0.0147290776", + "marginUsed": "1779140.410474", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-194869.030558", + "sinceOpen": "-194869.030558", + "sinceChange": "-8757.15088" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "ASTER", + "szi": "-7075.0", + "leverage": { + "type": "cross", + "value": 3 + }, + "entryPx": "1.820644", + "positionValue": "7626.1425", + "unrealizedPnl": "5254.919017", + "returnOnEquity": "1.2238709543", + "liquidationPx": "2673.1502091314", + "marginUsed": "2542.0475", + "maxLeverage": 5, + "cumFunding": { + "allTime": "-618890.364469", + "sinceOpen": "-618890.364469", + "sinceChange": "-0.809076" + } + } + } + ], + "time": 1761559339995 + }, + "spot_state": { + "balances": [ + { + "coin": "USDC", + "token": 0, + "total": "85165.03263363", + "hold": "0.0", + "entryNtl": "0.0" + }, + { + "coin": "HYPE", + "token": 150, + "total": "45401.36651867", + "hold": "0.0", + "entryNtl": "1742715.1297323401" + }, + { + "coin": "UBTC", + "token": 197, + "total": "0.0", + "hold": "0.0", + "entryNtl": "0.0" + }, + { + "coin": "LATINA", + "token": 223, + "total": "35470.3668", + "hold": "0.0", + "entryNtl": "0.0" + }, + { + "coin": "USDT0", + "token": 268, + "total": "106501.47093445", + "hold": "103038.77", + "entryNtl": "106521.92756495" + }, + { + "coin": "UFART", + "token": 269, + "total": "4132582.4960630001", + "hold": "0.0", + "entryNtl": "3313065.8106947001" + }, + { + "coin": "UPUMP", + "token": 299, + "total": "358268528.5250939727", + "hold": "0.0", + "entryNtl": "2442751.2693156502" + }, + { + "coin": "LICKO", + "token": 307, + "total": "11189.06185739", + "hold": "0.0", + "entryNtl": "0.06713437" + } + ] + }, + "open_orders": [ + { + "coin": "WLFI", + "side": "B", + "limitPx": "0.10447", + "sz": "2624.0", + "oid": 194029229960, + "timestamp": 1760131688558, + "origSz": "12760.0", + "cloid": "0x00000000000000000000001261000016" + }, + { + "coin": "@166", + "side": "A", + "limitPx": "1.01", + "sz": "103038.77", + "oid": 174787748753, + "timestamp": 1758819420037, + "origSz": "3000000.0" + } + ], + "recent_fills": [ + { + "coin": "ETH", + "px": "4170.1", + "sz": "2.3985", + "side": "A", + "time": 1761557823910, + "startPosition": "-5277.6296", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd054838ede8a2814d1ce042e4b23500213700074798d46e6741d2ee19d8e01ff", + "oid": 213776538663, + "crossed": true, + "fee": "2.100416", + "tid": 997784034004887, + "cloid": "0x00000000000000000000000019000500", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4172.0", + "sz": "2.3938", + "side": "A", + "time": 1761557821905, + "startPosition": "-5275.2358", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2f1b18ab676292e53094042e4b233702096b00910265b1b7d2e3c3fe26666ccf", + "oid": 213776484544, + "crossed": true, + "fee": "2.097256", + "tid": 1121855060929155, + "cloid": "0x00000000000000000000000019000499", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4172.1", + "sz": "0.0036", + "side": "A", + "time": 1761557821905, + "startPosition": "-5275.2322", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2f1b18ab676292e53094042e4b233702096b00910265b1b7d2e3c3fe26666ccf", + "oid": 213776484544, + "crossed": true, + "fee": "0.003154", + "tid": 514183384305508, + "cloid": "0x00000000000000000000000019000499", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4173.0", + "sz": "2.397", + "side": "A", + "time": 1761557817394, + "startPosition": "-5272.8352", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x79abb038c518fc467b25042e4b22f7020e3e001e601c1b181d745b8b841cd631", + "oid": 213776414011, + "crossed": true, + "fee": "2.100563", + "tid": 300484930566649, + "cloid": "0x00000000000000000000000019000498", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4171.3", + "sz": "2.3983", + "side": "A", + "time": 1761557815656, + "startPosition": "-5270.4369", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x79ff61f91b2cbcf87b79042e4b22e102043500deb62fdbca1dc80d4bda2096e3", + "oid": 213776374505, + "crossed": true, + "fee": "2.100846", + "tid": 941038767238048, + "cloid": "0x00000000000000000000000019000497", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4170.7", + "sz": "1.3097", + "side": "A", + "time": 1761557808843, + "startPosition": "-5269.1272", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf49cc67a9f8f073bf616042e4b22910203fb00603a82260e986571cd5e82e126", + "oid": 213776304541, + "crossed": true, + "fee": "1.147096", + "tid": 1105792131616723, + "cloid": "0x00000000000000000000000019000496", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4170.9", + "sz": "0.1199", + "side": "A", + "time": 1761557808843, + "startPosition": "-5269.0073", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf49cc67a9f8f073bf616042e4b22910203fb00603a82260e986571cd5e82e126", + "oid": 213776304541, + "crossed": true, + "fee": "0.105019", + "tid": 1016937512053959, + "cloid": "0x00000000000000000000000019000496", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4171.1", + "sz": "0.0488", + "side": "A", + "time": 1761557808843, + "startPosition": "-5268.9585", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf49cc67a9f8f073bf616042e4b22910203fb00603a82260e986571cd5e82e126", + "oid": 213776304541, + "crossed": true, + "fee": "0.042745", + "tid": 379560371680018, + "cloid": "0x00000000000000000000000019000496", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4171.1", + "sz": "0.9199", + "side": "A", + "time": 1761557808843, + "startPosition": "-5268.0386", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf49cc67a9f8f073bf616042e4b22910203fb00603a82260e986571cd5e82e126", + "oid": 213776304541, + "crossed": true, + "fee": "0.805768", + "tid": 1094737525388487, + "cloid": "0x00000000000000000000000019000496", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4171.1", + "sz": "0.4512", + "side": "A", + "time": 1761557806982, + "startPosition": "-5267.5874", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa252fdc1ea8a420fa3cc042e4b227b02031900a7858d60e1461ba914a98e1bfa", + "oid": 213776284231, + "crossed": true, + "fee": "0.39522", + "tid": 855220393743956, + "cloid": "0x00000000000000000000000019000495", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4171.1", + "sz": "0.2555", + "side": "A", + "time": 1761557806982, + "startPosition": "-5267.3319", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa252fdc1ea8a420fa3cc042e4b227b02031900a7858d60e1461ba914a98e1bfa", + "oid": 213776284231, + "crossed": true, + "fee": "0.2238", + "tid": 594793732243580, + "cloid": "0x00000000000000000000000019000495", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4171.1", + "sz": "0.163", + "side": "A", + "time": 1761557806982, + "startPosition": "-5267.1689", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa252fdc1ea8a420fa3cc042e4b227b02031900a7858d60e1461ba914a98e1bfa", + "oid": 213776284231, + "crossed": true, + "fee": "0.142776", + "tid": 49481065731239, + "cloid": "0x00000000000000000000000019000495", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4171.1", + "sz": "0.0794", + "side": "A", + "time": 1761557806982, + "startPosition": "-5267.0895", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa252fdc1ea8a420fa3cc042e4b227b02031900a7858d60e1461ba914a98e1bfa", + "oid": 213776284231, + "crossed": true, + "fee": "0.069548", + "tid": 719648143637022, + "cloid": "0x00000000000000000000000019000495", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4171.1", + "sz": "1.1", + "side": "A", + "time": 1761557806982, + "startPosition": "-5265.9895", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa252fdc1ea8a420fa3cc042e4b227b02031900a7858d60e1461ba914a98e1bfa", + "oid": 213776284231, + "crossed": true, + "fee": "0.963524", + "tid": 1058370039336723, + "cloid": "0x00000000000000000000000019000495", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4171.1", + "sz": "0.3491", + "side": "A", + "time": 1761557806982, + "startPosition": "-5265.6404", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa252fdc1ea8a420fa3cc042e4b227b02031900a7858d60e1461ba914a98e1bfa", + "oid": 213776284231, + "crossed": true, + "fee": "0.305787", + "tid": 194989245896945, + "cloid": "0x00000000000000000000000019000495", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4170.1", + "sz": "2.3985", + "side": "A", + "time": 1761557802651, + "startPosition": "-5263.2419", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x9f1b327e23329c75a094042e4b22490208560063be35bb4742e3ddd0e2367660", + "oid": 213776231209, + "crossed": true, + "fee": "2.100416", + "tid": 1035299473191783, + "cloid": "0x00000000000000000000000019000494", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4170.1", + "sz": "2.3988", + "side": "A", + "time": 1761557801091, + "startPosition": "-5260.8431", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x92a3f9cd4b75f512941d042e4b22390205ca00b2e67913e4366ca5200a79cefd", + "oid": 213776205071, + "crossed": true, + "fee": "2.100679", + "tid": 1052755645021129, + "cloid": "0x00000000000000000000000019000493", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.5", + "sz": "2.3996", + "side": "A", + "time": 1761557799039, + "startPosition": "-5258.4435", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3a71e073541e3daf3beb042e4b221d0206700058ef115c81de3a8bc613121799", + "oid": 213776167457, + "crossed": true, + "fee": "2.100573", + "tid": 497515724439384, + "cloid": "0x00000000000000000000000019000492", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.5", + "sz": "2.3776", + "side": "A", + "time": 1761557796737, + "startPosition": "-5256.0659", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x4fff02d55618aca65178042e4b21fe020a6b00baf11bcb78f3c7ae28151c8690", + "oid": 213776133624, + "crossed": true, + "fee": "2.081315", + "tid": 1007639630788016, + "cloid": "0x00000000000000000000000019000491", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.5", + "sz": "0.0036", + "side": "A", + "time": 1761557796737, + "startPosition": "-5256.0623", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x4fff02d55618aca65178042e4b21fe020a6b00baf11bcb78f3c7ae28151c8690", + "oid": 213776133624, + "crossed": true, + "fee": "0.003151", + "tid": 530558576256914, + "cloid": "0x00000000000000000000000019000491", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.6", + "sz": "0.0144", + "side": "A", + "time": 1761557796737, + "startPosition": "-5256.0479", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x4fff02d55618aca65178042e4b21fe020a6b00baf11bcb78f3c7ae28151c8690", + "oid": 213776133624, + "crossed": true, + "fee": "0.012605", + "tid": 496992818338738, + "cloid": "0x00000000000000000000000019000491", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.8", + "sz": "0.0036", + "side": "A", + "time": 1761557796737, + "startPosition": "-5256.0443", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x4fff02d55618aca65178042e4b21fe020a6b00baf11bcb78f3c7ae28151c8690", + "oid": 213776133624, + "crossed": true, + "fee": "0.003151", + "tid": 352501335041200, + "cloid": "0x00000000000000000000000019000491", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4169.2", + "sz": "2.3992", + "side": "A", + "time": 1761557786572, + "startPosition": "-5253.6451", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xabf872c577a6d5dcad72042e4b216c02014600ab12a9f4ae4fc11e1836aaafc7", + "oid": 213776065500, + "crossed": true, + "fee": "2.100576", + "tid": 262296260576947, + "cloid": "0x00000000000000000000000019000490", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4169.2", + "sz": "2.0715", + "side": "A", + "time": 1761557785375, + "startPosition": "-5251.5736", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x359dde6fd9c453b33717042e4b215a020192005574c77285d96689c298c82d9d", + "oid": 213776051727, + "crossed": true, + "fee": "1.813664", + "tid": 1049665601559497, + "cloid": "0x00000000000000000000000019000489", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4169.2", + "sz": "0.2236", + "side": "A", + "time": 1761557785375, + "startPosition": "-5251.35", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x359dde6fd9c453b33717042e4b215a020192005574c77285d96689c298c82d9d", + "oid": 213776051727, + "crossed": true, + "fee": "0.195768", + "tid": 708730940361674, + "cloid": "0x00000000000000000000000019000489", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4169.2", + "sz": "0.1045", + "side": "A", + "time": 1761557785375, + "startPosition": "-5251.2455", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x359dde6fd9c453b33717042e4b215a020192005574c77285d96689c298c82d9d", + "oid": 213776051727, + "crossed": true, + "fee": "0.091493", + "tid": 690186687263141, + "cloid": "0x00000000000000000000000019000489", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.9", + "sz": "1.4816", + "side": "A", + "time": 1761557782337, + "startPosition": "-5249.7639", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x71e3d2d1737b9373735d042e4b213402022300b70e7eb24515ac7e24327f6d5e", + "oid": 213776017134, + "crossed": true, + "fee": "1.297094", + "tid": 1005387245264491, + "cloid": "0x00000000000000000000000019000488", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.9", + "sz": "0.0804", + "side": "A", + "time": 1761557782337, + "startPosition": "-5249.6835", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x71e3d2d1737b9373735d042e4b213402022300b70e7eb24515ac7e24327f6d5e", + "oid": 213776017134, + "crossed": true, + "fee": "0.070387", + "tid": 527114532423968, + "cloid": "0x00000000000000000000000019000488", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.9", + "sz": "0.2215", + "side": "A", + "time": 1761557782337, + "startPosition": "-5249.462", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x71e3d2d1737b9373735d042e4b213402022300b70e7eb24515ac7e24327f6d5e", + "oid": 213776017134, + "crossed": true, + "fee": "0.193916", + "tid": 593637321662252, + "cloid": "0x00000000000000000000000019000488", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.9", + "sz": "0.201", + "side": "A", + "time": 1761557782337, + "startPosition": "-5249.261", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x71e3d2d1737b9373735d042e4b213402022300b70e7eb24515ac7e24327f6d5e", + "oid": 213776017134, + "crossed": true, + "fee": "0.175969", + "tid": 292797316981800, + "cloid": "0x00000000000000000000000019000488", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.9", + "sz": "0.2942", + "side": "A", + "time": 1761557782337, + "startPosition": "-5248.9668", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x71e3d2d1737b9373735d042e4b213402022300b70e7eb24515ac7e24327f6d5e", + "oid": 213776017134, + "crossed": true, + "fee": "0.257562", + "tid": 1056363152441527, + "cloid": "0x00000000000000000000000019000488", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.9", + "sz": "0.121", + "side": "A", + "time": 1761557782337, + "startPosition": "-5248.8458", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x71e3d2d1737b9373735d042e4b213402022300b70e7eb24515ac7e24327f6d5e", + "oid": 213776017134, + "crossed": true, + "fee": "0.105931", + "tid": 210474108521035, + "cloid": "0x00000000000000000000000019000488", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4167.8", + "sz": "0.7561", + "side": "A", + "time": 1761557779380, + "startPosition": "-5248.0897", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x50838c9205a9231351fd042e4b210c0207060077a0ac41e5f44c37e4c4acfcfd", + "oid": 213775983805, + "crossed": true, + "fee": "0.661767", + "tid": 294658872027677, + "cloid": "0x00000000000000000000000019000487", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4167.9", + "sz": "1.6437", + "side": "A", + "time": 1761557779380, + "startPosition": "-5246.446", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x50838c9205a9231351fd042e4b210c0207060077a0ac41e5f44c37e4c4acfcfd", + "oid": 213775983805, + "crossed": true, + "fee": "1.438663", + "tid": 567351626185644, + "cloid": "0x00000000000000000000000019000487", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.2", + "sz": "1.2203", + "side": "A", + "time": 1761557775411, + "startPosition": "-5245.2257", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd66f0e11f1c24e6fd7e8042e4b20e00206f400f78cc56d417a37b964b0c6285a", + "oid": 213775929579, + "crossed": true, + "fee": "1.068155", + "tid": 774153689553509, + "cloid": "0x00000000000000000000000019000486", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.2", + "sz": "0.0036", + "side": "A", + "time": 1761557775411, + "startPosition": "-5245.2221", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd66f0e11f1c24e6fd7e8042e4b20e00206f400f78cc56d417a37b964b0c6285a", + "oid": 213775929579, + "crossed": true, + "fee": "0.003151", + "tid": 965608660207228, + "cloid": "0x00000000000000000000000019000486", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.2", + "sz": "0.0173", + "side": "A", + "time": 1761557775411, + "startPosition": "-5245.2048", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd66f0e11f1c24e6fd7e8042e4b20e00206f400f78cc56d417a37b964b0c6285a", + "oid": 213775929579, + "crossed": true, + "fee": "0.015143", + "tid": 1076783195874570, + "cloid": "0x00000000000000000000000019000486", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.5", + "sz": "0.0036", + "side": "A", + "time": 1761557775411, + "startPosition": "-5245.2012", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd66f0e11f1c24e6fd7e8042e4b20e00206f400f78cc56d417a37b964b0c6285a", + "oid": 213775929579, + "crossed": true, + "fee": "0.003151", + "tid": 293212045783399, + "cloid": "0x00000000000000000000000019000486", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.6", + "sz": "0.0173", + "side": "A", + "time": 1761557775411, + "startPosition": "-5245.1839", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd66f0e11f1c24e6fd7e8042e4b20e00206f400f78cc56d417a37b964b0c6285a", + "oid": 213775929579, + "crossed": true, + "fee": "0.015144", + "tid": 151659403621346, + "cloid": "0x00000000000000000000000019000486", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.7", + "sz": "1.1056", + "side": "A", + "time": 1761557775411, + "startPosition": "-5244.0783", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd66f0e11f1c24e6fd7e8042e4b20e00206f400f78cc56d417a37b964b0c6285a", + "oid": 213775929579, + "crossed": true, + "fee": "0.967872", + "tid": 1075453374389086, + "cloid": "0x00000000000000000000000019000486", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.8", + "sz": "0.0036", + "side": "A", + "time": 1761557775411, + "startPosition": "-5244.0747", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd66f0e11f1c24e6fd7e8042e4b20e00206f400f78cc56d417a37b964b0c6285a", + "oid": 213775929579, + "crossed": true, + "fee": "0.003151", + "tid": 896970860362494, + "cloid": "0x00000000000000000000000019000486", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4168.9", + "sz": "0.0071", + "side": "A", + "time": 1761557775411, + "startPosition": "-5244.0676", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd66f0e11f1c24e6fd7e8042e4b20e00206f400f78cc56d417a37b964b0c6285a", + "oid": 213775929579, + "crossed": true, + "fee": "0.006215", + "tid": 431755402409880, + "cloid": "0x00000000000000000000000019000486", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4169.0", + "sz": "0.0173", + "side": "A", + "time": 1761557775411, + "startPosition": "-5244.0503", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd66f0e11f1c24e6fd7e8042e4b20e00206f400f78cc56d417a37b964b0c6285a", + "oid": 213775929579, + "crossed": true, + "fee": "0.015145", + "tid": 392734635628971, + "cloid": "0x00000000000000000000000019000486", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4169.1", + "sz": "0.0036", + "side": "A", + "time": 1761557775411, + "startPosition": "-5244.0467", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd66f0e11f1c24e6fd7e8042e4b20e00206f400f78cc56d417a37b964b0c6285a", + "oid": 213775929579, + "crossed": true, + "fee": "0.003151", + "tid": 912083555830247, + "cloid": "0x00000000000000000000000019000486", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4170.5", + "sz": "2.3984", + "side": "A", + "time": 1761557773016, + "startPosition": "-5241.6483", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe189faf05526dc2de303042e4b20c002053a00d5f029faff8552a643142ab618", + "oid": 213775885357, + "crossed": true, + "fee": "2.10053", + "tid": 147821381139803, + "cloid": "0x00000000000000000000000019000485", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4170.5", + "sz": "2.1697", + "side": "A", + "time": 1761557771005, + "startPosition": "-5239.4786", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe4c4b42ae59bdf61e63e042e4b20a80203510010809efe33888d5f7da49fb94c", + "oid": 213775855036, + "crossed": true, + "fee": "1.900234", + "tid": 470850586716597, + "cloid": "0x00000000000000000000000019000484", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4170.5", + "sz": "0.2287", + "side": "A", + "time": 1761557771005, + "startPosition": "-5239.2499", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe4c4b42ae59bdf61e63e042e4b20a80203510010809efe33888d5f7da49fb94c", + "oid": 213775855036, + "crossed": true, + "fee": "0.200296", + "tid": 772786048536057, + "cloid": "0x00000000000000000000000019000484", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4170.5", + "sz": "0.2042", + "side": "A", + "time": 1761557769295, + "startPosition": "-5239.0457", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xcee7335cc4fd63c7d060042e4b20930203e000425ff0829972afdeaf83f13db2", + "oid": 213775825258, + "crossed": true, + "fee": "0.178839", + "tid": 481488080454824, + "cloid": "0x00000000000000000000000019000483", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4170.5", + "sz": "0.056", + "side": "A", + "time": 1761557769295, + "startPosition": "-5238.9897", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xcee7335cc4fd63c7d060042e4b20930203e000425ff0829972afdeaf83f13db2", + "oid": 213775825258, + "crossed": true, + "fee": "0.049045", + "tid": 150919402280129, + "cloid": "0x00000000000000000000000019000483", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4170.5", + "sz": "0.0686", + "side": "A", + "time": 1761557769295, + "startPosition": "-5238.9211", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xcee7335cc4fd63c7d060042e4b20930203e000425ff0829972afdeaf83f13db2", + "oid": 213775825258, + "crossed": true, + "fee": "0.06008", + "tid": 9866880298924, + "cloid": "0x00000000000000000000000019000483", + "feeToken": "USDC", + "twapId": null + } + ], + "fills_last_7_days": [ + { + "coin": "BTC", + "px": "112467.0", + "sz": "0.08889", + "side": "B", + "time": 1761068138157, + "startPosition": "-330.44794", + "dir": "Close Short", + "closedPnl": "27.627012", + "hash": "0x66aa6009301102bc6824042decbe1c0207f500eecb14218e0a730b5bef14dca7", + "oid": 208447760118, + "crossed": true, + "fee": "2.09941", + "tid": 865181552231793, + "cloid": "0x00000000000000000000001601000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112473.0", + "sz": "0.08888", + "side": "B", + "time": 1761068141515, + "startPosition": "-330.35905", + "dir": "Close Short", + "closedPnl": "27.090624", + "hash": "0x60937f20492da0ab620d042decbe480204d20005e420bf7d045c2a7308217a96", + "oid": 208447820170, + "crossed": true, + "fee": "2.099286", + "tid": 259903239209652, + "cloid": "0x00000000000000000000001601000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112445.0", + "sz": "0.08889", + "side": "B", + "time": 1761068143985, + "startPosition": "-330.27017", + "dir": "Close Short", + "closedPnl": "29.582592", + "hash": "0x264eb61f6c67cd7427c8042decbe6702024b0005076aec46ca1761722b6ba75e", + "oid": 208447862392, + "crossed": true, + "fee": "2.098999", + "tid": 35431756017216, + "cloid": "0x00000000000000000000001601000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112437.0", + "sz": "0.0889", + "side": "B", + "time": 1761068146148, + "startPosition": "-330.18128", + "dir": "Close Short", + "closedPnl": "30.29712", + "hash": "0x1b235719a5856f551c9d042decbe8402065c00ff40888e27beec026c6489493f", + "oid": 208447894942, + "crossed": true, + "fee": "2.099086", + "tid": 165210327270295, + "cloid": "0x00000000000000000000001601000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112439.0", + "sz": "0.08892", + "side": "B", + "time": 1761068149065, + "startPosition": "-330.09238", + "dir": "Close Short", + "closedPnl": "30.126096", + "hash": "0x99b8f945270827609b32042decbea4020594002ac20b46323d81a497e60c014b", + "oid": 208447942183, + "crossed": true, + "fee": "2.099595", + "tid": 765860092901781, + "cloid": "0x00000000000000000000001601000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112439.0", + "sz": "0.0889", + "side": "B", + "time": 1761068150603, + "startPosition": "-330.00346", + "dir": "Close Short", + "closedPnl": "30.11932", + "hash": "0x47ec867b013dbdbd4966042decbeb502061a00609c30dc8febb531cdc03197a7", + "oid": 208447964006, + "crossed": true, + "fee": "2.099123", + "tid": 605326909788531, + "cloid": "0x00000000000000000000001601000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112443.0", + "sz": "0.00011", + "side": "B", + "time": 1761068151885, + "startPosition": "-329.91456", + "dir": "Close Short", + "closedPnl": "0.036828", + "hash": "0x5c2570a979010b415d9f042decbec202029e008f14042a13ffee1bfc3804e52b", + "oid": 208447991091, + "crossed": true, + "fee": "0.002597", + "tid": 979706150101676, + "cloid": "0x00000000000000000000001601000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112443.0", + "sz": "0.0888", + "side": "B", + "time": 1761068151885, + "startPosition": "-329.91445", + "dir": "Close Short", + "closedPnl": "29.73024", + "hash": "0x5c2570a979010b415d9f042decbec202029e008f14042a13ffee1bfc3804e52b", + "oid": 208447991091, + "crossed": true, + "fee": "2.096837", + "tid": 161941190876318, + "cloid": "0x00000000000000000000001601000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112453.0", + "sz": "0.0889", + "side": "B", + "time": 1761068154012, + "startPosition": "-329.82565", + "dir": "Close Short", + "closedPnl": "28.87472", + "hash": "0xa8b7fba377456b0baa31042decbedb0203e50089124889dd4c80a6f6364944f6", + "oid": 208448029029, + "crossed": true, + "fee": "2.099385", + "tid": 906587431825860, + "cloid": "0x00000000000000000000001601000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112453.0", + "sz": "0.0889", + "side": "B", + "time": 1761068156167, + "startPosition": "-329.73675", + "dir": "Close Short", + "closedPnl": "28.87472", + "hash": "0x31e606693f2dad80335f042decbef302049b004eda20cc52d5aeb1bbfe21876a", + "oid": 208448060617, + "crossed": true, + "fee": "2.099385", + "tid": 664030610387587, + "cloid": "0x00000000000000000000001601000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112459.0", + "sz": "0.08891", + "side": "B", + "time": 1761068158176, + "startPosition": "-329.64785", + "dir": "Close Short", + "closedPnl": "28.344508", + "hash": "0x04835e6cbc8cb87505fd042decbf0b0202690052578fd747a84c09bf7b80925f", + "oid": 208448084167, + "crossed": true, + "fee": "2.099733", + "tid": 206285702364778, + "cloid": "0x00000000000000000000001601000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112448.0", + "sz": "0.08889", + "side": "B", + "time": 1761068159639, + "startPosition": "-329.55894", + "dir": "Close Short", + "closedPnl": "29.315922", + "hash": "0xf811b6bfe7eeec48f98b042decbf1c02027a00a582e20b1b9bda6212a6e2c633", + "oid": 208448107550, + "crossed": true, + "fee": "2.099055", + "tid": 279346339592642, + "cloid": "0x00000000000000000000001601000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112427.0", + "sz": "0.08892", + "side": "B", + "time": 1761068162486, + "startPosition": "-329.47005", + "dir": "Close Short", + "closedPnl": "31.193136", + "hash": "0x100b714e6df8a4241185042decbf3f020694003408fbc2f6b3d41ca12cfc7e0e", + "oid": 208448153274, + "crossed": true, + "fee": "2.099371", + "tid": 663193799453622, + "cloid": "0x00000000000000000000001601000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112416.0", + "sz": "0.06106", + "side": "B", + "time": 1761068166046, + "startPosition": "-329.38113", + "dir": "Close Short", + "closedPnl": "22.091508", + "hash": "0xb622717d1aead782b79c042decbf6d0215d50062b5edf65459eb1ccfd9eeb16d", + "oid": 208448215663, + "crossed": true, + "fee": "1.441465", + "tid": 646911604724909, + "cloid": "0x00000000000000000000001601000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112416.0", + "sz": "0.02788", + "side": "B", + "time": 1761068166046, + "startPosition": "-329.32007", + "dir": "Close Short", + "closedPnl": "10.086984", + "hash": "0xb622717d1aead782b79c042decbf6d0215d50062b5edf65459eb1ccfd9eeb16d", + "oid": 208448215663, + "crossed": true, + "fee": "0.658173", + "tid": 999358508244448, + "cloid": "0x00000000000000000000001601000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112424.0", + "sz": "0.08891", + "side": "B", + "time": 1761068167747, + "startPosition": "-329.29219", + "dir": "Close Short", + "closedPnl": "31.456358", + "hash": "0x369903ab9f8c96183812042decbf8002091000913a8fb4eada61aefe5e807002", + "oid": 208448255261, + "crossed": true, + "fee": "2.099079", + "tid": 378651456022007, + "cloid": "0x00000000000000000000001601000103", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112410.0", + "sz": "0.08891", + "side": "B", + "time": 1761068169489, + "startPosition": "-329.20328", + "dir": "Close Short", + "closedPnl": "32.701098", + "hash": "0xfe5500ae1165d8f4ffce042decbf98020d660093ac68f7c7a21dac00d069b2df", + "oid": 208448288341, + "crossed": true, + "fee": "2.098818", + "tid": 178533643939637, + "cloid": "0x00000000000000000000001601000104", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112452.0", + "sz": "0.00266", + "side": "B", + "time": 1761068171524, + "startPosition": "-329.11437", + "dir": "Close Short", + "closedPnl": "0.866628", + "hash": "0xdb6c60ef71bcfc10dce6042decbfad02038a00d50cb01ae27f350c4230b0d5fb", + "oid": 208448330314, + "crossed": true, + "fee": "0.062815", + "tid": 8985331374249, + "cloid": "0x00000000000000000000001601000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112452.0", + "sz": "0.08624", + "side": "B", + "time": 1761068171524, + "startPosition": "-329.11171", + "dir": "Close Short", + "closedPnl": "28.096992", + "hash": "0xdb6c60ef71bcfc10dce6042decbfad02038a00d50cb01ae27f350c4230b0d5fb", + "oid": 208448330314, + "crossed": true, + "fee": "2.03655", + "tid": 810883042016229, + "cloid": "0x00000000000000000000001601000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112452.0", + "sz": "0.0889", + "side": "B", + "time": 1761068172872, + "startPosition": "-329.02547", + "dir": "Close Short", + "closedPnl": "28.96362", + "hash": "0x9ff885dab38030e3a172042decbfbf0204d500c04e834fb543c1312d72840ace", + "oid": 208448352098, + "crossed": true, + "fee": "2.099366", + "tid": 1098954972266724, + "cloid": "0x00000000000000000000001601000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112452.0", + "sz": "0.04438", + "side": "B", + "time": 1761068174148, + "startPosition": "-328.93657", + "dir": "Close Short", + "closedPnl": "14.459004", + "hash": "0x47f5a30a74ea0113496f042decbfd1020b8100f00fed1fe5ebbe4e5d33eddafd", + "oid": 208448373691, + "crossed": true, + "fee": "1.04803", + "tid": 655210401147831, + "cloid": "0x00000000000000000000001601000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112452.0", + "sz": "0.04452", + "side": "B", + "time": 1761068174148, + "startPosition": "-328.89219", + "dir": "Close Short", + "closedPnl": "14.504616", + "hash": "0x47f5a30a74ea0113496f042decbfd1020b8100f00fed1fe5ebbe4e5d33eddafd", + "oid": 208448373691, + "crossed": true, + "fee": "1.051336", + "tid": 1022966996349616, + "cloid": "0x00000000000000000000001601000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112451.0", + "sz": "0.0889", + "side": "B", + "time": 1761068176628, + "startPosition": "-328.84767", + "dir": "Close Short", + "closedPnl": "29.05252", + "hash": "0x4e88c843f4cb66555002042decbff102058f00298fce8527f2517396b3cf403f", + "oid": 208448413726, + "crossed": true, + "fee": "2.099347", + "tid": 682141418972393, + "cloid": "0x00000000000000000000001601000108", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112441.0", + "sz": "0.08892", + "side": "B", + "time": 1761068178128, + "startPosition": "-328.75877", + "dir": "Close Short", + "closedPnl": "29.948256", + "hash": "0x0022b1053ad91226019c042decc00202058300ead5dc30f8a3eb5c57f9dcec10", + "oid": 208448447172, + "crossed": true, + "fee": "2.099633", + "tid": 391368771523973, + "cloid": "0x00000000000000000000001601000109", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112441.0", + "sz": "0.08892", + "side": "B", + "time": 1761068179438, + "startPosition": "-328.66985", + "dir": "Close Short", + "closedPnl": "29.948256", + "hash": "0x540f78efe12af5f95589042decc01502029100d57c2e14cbf7d82442a02ecfe3", + "oid": 208448470582, + "crossed": true, + "fee": "2.099633", + "tid": 203043509068585, + "cloid": "0x00000000000000000000001601000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112440.0", + "sz": "0.08892", + "side": "B", + "time": 1761068180683, + "startPosition": "-328.58093", + "dir": "Close Short", + "closedPnl": "30.037176", + "hash": "0x8da6a12b86b06ab28f20042decc02602033d001121b38984316f4c7e45b4449d", + "oid": 208448487984, + "crossed": true, + "fee": "2.099614", + "tid": 684687359465823, + "cloid": "0x00000000000000000000001601000111", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112436.0", + "sz": "0.03609", + "side": "B", + "time": 1761068184413, + "startPosition": "-328.49201", + "dir": "Close Short", + "closedPnl": "12.335562", + "hash": "0xfc24b7dffe6d49cbfd9e042decc05602048000c59960689e9fed6332bd6123b6", + "oid": 208448554701, + "crossed": true, + "fee": "0.852141", + "tid": 607802912865849, + "cloid": "0x00000000000000000000001601000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112436.0", + "sz": "0.05282", + "side": "B", + "time": 1761068184413, + "startPosition": "-328.45592", + "dir": "Close Short", + "closedPnl": "18.053876", + "hash": "0xfc24b7dffe6d49cbfd9e042decc05602048000c59960689e9fed6332bd6123b6", + "oid": 208448554701, + "crossed": true, + "fee": "1.247162", + "tid": 991872197147687, + "cloid": "0x00000000000000000000001601000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112420.0", + "sz": "0.08894", + "side": "B", + "time": 1761068186207, + "startPosition": "-328.4031", + "dir": "Close Short", + "closedPnl": "31.822732", + "hash": "0xefeae7817e38b02af164042decc06c020d970067193bcefd93b392d43d3c8a15", + "oid": 208448583889, + "crossed": true, + "fee": "2.099713", + "tid": 12999079816779, + "cloid": "0x00000000000000000000001601000113", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112411.0", + "sz": "0.00018", + "side": "B", + "time": 1761068188429, + "startPosition": "-328.31416", + "dir": "Close Short", + "closedPnl": "0.066024", + "hash": "0x0ac34db0be5ef5630c3d042decc0860208e7009659521435ae8bf9037d52cf4d", + "oid": 208448630459, + "crossed": true, + "fee": "0.004249", + "tid": 525258359138303, + "cloid": "0x00000000000000000000001601000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112413.0", + "sz": "0.08877", + "side": "B", + "time": 1761068188429, + "startPosition": "-328.31398", + "dir": "Close Short", + "closedPnl": "32.383296", + "hash": "0x0ac34db0be5ef5630c3d042decc0860208e7009659521435ae8bf9037d52cf4d", + "oid": 208448630459, + "crossed": true, + "fee": "2.095569", + "tid": 327164972817944, + "cloid": "0x00000000000000000000001601000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112413.0", + "sz": "0.08892", + "side": "B", + "time": 1761068190069, + "startPosition": "-328.22521", + "dir": "Close Short", + "closedPnl": "32.438016", + "hash": "0x5fae14ccba7544576127042decc09d02034600b2557863290376c01f79791e42", + "oid": 208448662235, + "crossed": true, + "fee": "2.09911", + "tid": 986737214598163, + "cloid": "0x00000000000000000000001601000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112347.0", + "sz": "0.08896", + "side": "B", + "time": 1761068194165, + "startPosition": "-328.13629", + "dir": "Close Short", + "closedPnl": "38.323968", + "hash": "0x28b29ad4fec13f732a2c042decc0cc0203a800ba99c45e45cc7b4627bdc5195d", + "oid": 208448731232, + "crossed": true, + "fee": "2.098821", + "tid": 453000781074408, + "cloid": "0x00000000000000000000001601000117", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112347.0", + "sz": "0.08898", + "side": "B", + "time": 1761068195484, + "startPosition": "-328.04733", + "dir": "Close Short", + "closedPnl": "38.332584", + "hash": "0x170fcde66db0868d1889042decc0de02059500cc08b3a55fbad879392cb46077", + "oid": 208448748364, + "crossed": true, + "fee": "2.099293", + "tid": 736754349749726, + "cloid": "0x00000000000000000000001601000118", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112352.0", + "sz": "0.00011", + "side": "B", + "time": 1761068199394, + "startPosition": "-327.95835", + "dir": "Close Short", + "closedPnl": "0.046838", + "hash": "0xe26e3aec8a62c17ee3e7042decc11102085900d22565e0508636e63f49669b69", + "oid": 208448805210, + "crossed": true, + "fee": "0.002595", + "tid": 420365170434518, + "cloid": "0x00000000000000000000001601000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112353.0", + "sz": "0.00011", + "side": "B", + "time": 1761068199394, + "startPosition": "-327.95824", + "dir": "Close Short", + "closedPnl": "0.046728", + "hash": "0xe26e3aec8a62c17ee3e7042decc11102085900d22565e0508636e63f49669b69", + "oid": 208448805210, + "crossed": true, + "fee": "0.002595", + "tid": 658549027661519, + "cloid": "0x00000000000000000000001601000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112354.0", + "sz": "0.00011", + "side": "B", + "time": 1761068199394, + "startPosition": "-327.95813", + "dir": "Close Short", + "closedPnl": "0.046618", + "hash": "0xe26e3aec8a62c17ee3e7042decc11102085900d22565e0508636e63f49669b69", + "oid": 208448805210, + "crossed": true, + "fee": "0.002595", + "tid": 1044524242734785, + "cloid": "0x00000000000000000000001601000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112355.0", + "sz": "0.00011", + "side": "B", + "time": 1761068199394, + "startPosition": "-327.95802", + "dir": "Close Short", + "closedPnl": "0.046508", + "hash": "0xe26e3aec8a62c17ee3e7042decc11102085900d22565e0508636e63f49669b69", + "oid": 208448805210, + "crossed": true, + "fee": "0.002595", + "tid": 742910710251740, + "cloid": "0x00000000000000000000001601000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112355.0", + "sz": "0.03525", + "side": "B", + "time": 1761068199394, + "startPosition": "-327.95791", + "dir": "Close Short", + "closedPnl": "14.9037", + "hash": "0xe26e3aec8a62c17ee3e7042decc11102085900d22565e0508636e63f49669b69", + "oid": 208448805210, + "crossed": true, + "fee": "0.831707", + "tid": 824158255707569, + "cloid": "0x00000000000000000000001601000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112356.0", + "sz": "0.00011", + "side": "B", + "time": 1761068199394, + "startPosition": "-327.92266", + "dir": "Close Short", + "closedPnl": "0.046398", + "hash": "0xe26e3aec8a62c17ee3e7042decc11102085900d22565e0508636e63f49669b69", + "oid": 208448805210, + "crossed": true, + "fee": "0.002595", + "tid": 858146275569647, + "cloid": "0x00000000000000000000001601000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112357.0", + "sz": "0.00011", + "side": "B", + "time": 1761068199394, + "startPosition": "-327.92255", + "dir": "Close Short", + "closedPnl": "0.046288", + "hash": "0xe26e3aec8a62c17ee3e7042decc11102085900d22565e0508636e63f49669b69", + "oid": 208448805210, + "crossed": true, + "fee": "0.002595", + "tid": 519905490063842, + "cloid": "0x00000000000000000000001601000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112358.0", + "sz": "0.00011", + "side": "B", + "time": 1761068199394, + "startPosition": "-327.92244", + "dir": "Close Short", + "closedPnl": "0.046178", + "hash": "0xe26e3aec8a62c17ee3e7042decc11102085900d22565e0508636e63f49669b69", + "oid": 208448805210, + "crossed": true, + "fee": "0.002595", + "tid": 1096078887466666, + "cloid": "0x00000000000000000000001601000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112358.0", + "sz": "0.05297", + "side": "B", + "time": 1761068199394, + "startPosition": "-327.92233", + "dir": "Close Short", + "closedPnl": "22.236806", + "hash": "0xe26e3aec8a62c17ee3e7042decc11102085900d22565e0508636e63f49669b69", + "oid": 208448805210, + "crossed": true, + "fee": "1.249836", + "tid": 375023145691929, + "cloid": "0x00000000000000000000001601000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112337.0", + "sz": "0.08899", + "side": "B", + "time": 1761068201127, + "startPosition": "-327.86936", + "dir": "Close Short", + "closedPnl": "39.226792", + "hash": "0x39b9ad7227b5f5ff3b33042decc128020f430057c2b914d1dd8258c4e6b9cfe9", + "oid": 208448826498, + "crossed": true, + "fee": "2.099342", + "tid": 42525087485874, + "cloid": "0x00000000000000000000001601000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112346.0", + "sz": "0.00002", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.78037", + "dir": "Close Short", + "closedPnl": "0.008636", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.000471", + "tid": 796913728127614, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112347.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.78035", + "dir": "Close Short", + "closedPnl": "0.047388", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 980797636259217, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112347.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.78024", + "dir": "Close Short", + "closedPnl": "0.047388", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 1108580089095346, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112348.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.78013", + "dir": "Close Short", + "closedPnl": "0.047278", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 769309170938061, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112348.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.78002", + "dir": "Close Short", + "closedPnl": "0.047278", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 920955859235855, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112349.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77991", + "dir": "Close Short", + "closedPnl": "0.047168", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 379351859001813, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112349.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.7798", + "dir": "Close Short", + "closedPnl": "0.047168", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 225072201458433, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112350.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77969", + "dir": "Close Short", + "closedPnl": "0.047058", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 280319776358724, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112350.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77958", + "dir": "Close Short", + "closedPnl": "0.047058", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 194785726881458, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112351.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77947", + "dir": "Close Short", + "closedPnl": "0.046948", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 923004880262765, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112351.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77936", + "dir": "Close Short", + "closedPnl": "0.046948", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 354019453703359, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112352.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77925", + "dir": "Close Short", + "closedPnl": "0.046838", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 392527811808723, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112352.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77914", + "dir": "Close Short", + "closedPnl": "0.046838", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 750860476619256, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112353.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77903", + "dir": "Close Short", + "closedPnl": "0.046728", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 21735565167583, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112353.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77892", + "dir": "Close Short", + "closedPnl": "0.046728", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 443370163210490, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112354.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77881", + "dir": "Close Short", + "closedPnl": "0.046618", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 371633244442044, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112354.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.7787", + "dir": "Close Short", + "closedPnl": "0.046618", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 699495706364051, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112355.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77859", + "dir": "Close Short", + "closedPnl": "0.046508", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 994522118391742, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112355.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77848", + "dir": "Close Short", + "closedPnl": "0.046508", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 290480319588999, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112356.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77837", + "dir": "Close Short", + "closedPnl": "0.046398", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 931450420014300, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112356.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77826", + "dir": "Close Short", + "closedPnl": "0.046398", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 122857253527677, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112357.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77815", + "dir": "Close Short", + "closedPnl": "0.046288", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 160906447092818, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112357.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77804", + "dir": "Close Short", + "closedPnl": "0.046288", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 104491002093648, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112358.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77793", + "dir": "Close Short", + "closedPnl": "0.046178", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 593962698273665, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112358.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77782", + "dir": "Close Short", + "closedPnl": "0.046178", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 652979743790631, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112359.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77771", + "dir": "Close Short", + "closedPnl": "0.046068", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 532659725875360, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112360.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.7776", + "dir": "Close Short", + "closedPnl": "0.045958", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 161840333242534, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112361.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77749", + "dir": "Close Short", + "closedPnl": "0.045848", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 864938206894567, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112361.0", + "sz": "0.0001", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77738", + "dir": "Close Short", + "closedPnl": "0.04168", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002359", + "tid": 4500967917829, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112361.0", + "sz": "0.00018", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77728", + "dir": "Close Short", + "closedPnl": "0.075024", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.004247", + "tid": 923491050601676, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112362.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.7771", + "dir": "Close Short", + "closedPnl": "0.045738", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 695929354495272, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112363.0", + "sz": "0.00011", + "side": "B", + "time": 1761068203819, + "startPosition": "-327.77699", + "dir": "Close Short", + "closedPnl": "0.045628", + "hash": "0x6d94492735c6fce86f0e042decc14b020fdd000cd0ca1bba115cf479f4cad6d3", + "oid": 208448883161, + "crossed": true, + "fee": "0.002595", + "tid": 68452944766319, + "cloid": "0x00000000000000000000001601000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112369.0", + "sz": "0.00011", + "side": "B", + "time": 1761068207944, + "startPosition": "-327.77688", + "dir": "Close Short", + "closedPnl": "0.044968", + "hash": "0xb90744608f414eecba81042decc17f02053100462a446dbe5ccfefb34e4528d7", + "oid": 208448962519, + "crossed": true, + "fee": "0.002595", + "tid": 129699868029998, + "cloid": "0x00000000000000000000001601000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112370.0", + "sz": "0.00011", + "side": "B", + "time": 1761068207944, + "startPosition": "-327.77677", + "dir": "Close Short", + "closedPnl": "0.044858", + "hash": "0xb90744608f414eecba81042decc17f02053100462a446dbe5ccfefb34e4528d7", + "oid": 208448962519, + "crossed": true, + "fee": "0.002595", + "tid": 598613153448272, + "cloid": "0x00000000000000000000001601000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112371.0", + "sz": "0.00011", + "side": "B", + "time": 1761068207944, + "startPosition": "-327.77666", + "dir": "Close Short", + "closedPnl": "0.044748", + "hash": "0xb90744608f414eecba81042decc17f02053100462a446dbe5ccfefb34e4528d7", + "oid": 208448962519, + "crossed": true, + "fee": "0.002595", + "tid": 280046316043030, + "cloid": "0x00000000000000000000001601000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112372.0", + "sz": "0.00011", + "side": "B", + "time": 1761068207944, + "startPosition": "-327.77655", + "dir": "Close Short", + "closedPnl": "0.044638", + "hash": "0xb90744608f414eecba81042decc17f02053100462a446dbe5ccfefb34e4528d7", + "oid": 208448962519, + "crossed": true, + "fee": "0.002595", + "tid": 889416364902868, + "cloid": "0x00000000000000000000001601000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112373.0", + "sz": "0.00011", + "side": "B", + "time": 1761068207944, + "startPosition": "-327.77644", + "dir": "Close Short", + "closedPnl": "0.044528", + "hash": "0xb90744608f414eecba81042decc17f02053100462a446dbe5ccfefb34e4528d7", + "oid": 208448962519, + "crossed": true, + "fee": "0.002595", + "tid": 513278166951504, + "cloid": "0x00000000000000000000001601000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112374.0", + "sz": "0.00011", + "side": "B", + "time": 1761068207944, + "startPosition": "-327.77633", + "dir": "Close Short", + "closedPnl": "0.044418", + "hash": "0xb90744608f414eecba81042decc17f02053100462a446dbe5ccfefb34e4528d7", + "oid": 208448962519, + "crossed": true, + "fee": "0.002595", + "tid": 806954907590405, + "cloid": "0x00000000000000000000001601000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112375.0", + "sz": "0.00011", + "side": "B", + "time": 1761068207944, + "startPosition": "-327.77622", + "dir": "Close Short", + "closedPnl": "0.044308", + "hash": "0xb90744608f414eecba81042decc17f02053100462a446dbe5ccfefb34e4528d7", + "oid": 208448962519, + "crossed": true, + "fee": "0.002595", + "tid": 792159879916817, + "cloid": "0x00000000000000000000001601000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112376.0", + "sz": "0.00011", + "side": "B", + "time": 1761068207944, + "startPosition": "-327.77611", + "dir": "Close Short", + "closedPnl": "0.044198", + "hash": "0xb90744608f414eecba81042decc17f02053100462a446dbe5ccfefb34e4528d7", + "oid": 208448962519, + "crossed": true, + "fee": "0.002595", + "tid": 892269773731376, + "cloid": "0x00000000000000000000001601000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112377.0", + "sz": "0.00011", + "side": "B", + "time": 1761068207944, + "startPosition": "-327.776", + "dir": "Close Short", + "closedPnl": "0.044088", + "hash": "0xb90744608f414eecba81042decc17f02053100462a446dbe5ccfefb34e4528d7", + "oid": 208448962519, + "crossed": true, + "fee": "0.002595", + "tid": 173098358526410, + "cloid": "0x00000000000000000000001601000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112378.0", + "sz": "0.00011", + "side": "B", + "time": 1761068207944, + "startPosition": "-327.77589", + "dir": "Close Short", + "closedPnl": "0.043978", + "hash": "0xb90744608f414eecba81042decc17f02053100462a446dbe5ccfefb34e4528d7", + "oid": 208448962519, + "crossed": true, + "fee": "0.002595", + "tid": 69945821597718, + "cloid": "0x00000000000000000000001601000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112379.0", + "sz": "0.00011", + "side": "B", + "time": 1761068207944, + "startPosition": "-327.77578", + "dir": "Close Short", + "closedPnl": "0.043868", + "hash": "0xb90744608f414eecba81042decc17f02053100462a446dbe5ccfefb34e4528d7", + "oid": 208448962519, + "crossed": true, + "fee": "0.002595", + "tid": 930433707624128, + "cloid": "0x00000000000000000000001601000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112379.0", + "sz": "0.00039", + "side": "B", + "time": 1761068207944, + "startPosition": "-327.77567", + "dir": "Close Short", + "closedPnl": "0.155532", + "hash": "0xb90744608f414eecba81042decc17f02053100462a446dbe5ccfefb34e4528d7", + "oid": 208448962519, + "crossed": true, + "fee": "0.009203", + "tid": 525773803122252, + "cloid": "0x00000000000000000000001601000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112380.0", + "sz": "0.00011", + "side": "B", + "time": 1761068207944, + "startPosition": "-327.77528", + "dir": "Close Short", + "closedPnl": "0.043758", + "hash": "0xb90744608f414eecba81042decc17f02053100462a446dbe5ccfefb34e4528d7", + "oid": 208448962519, + "crossed": true, + "fee": "0.002595", + "tid": 383705707175293, + "cloid": "0x00000000000000000000001601000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112380.0", + "sz": "0.00011", + "side": "B", + "time": 1761068207944, + "startPosition": "-327.77517", + "dir": "Close Short", + "closedPnl": "0.043758", + "hash": "0xb90744608f414eecba81042decc17f02053100462a446dbe5ccfefb34e4528d7", + "oid": 208448962519, + "crossed": true, + "fee": "0.002595", + "tid": 636617694609229, + "cloid": "0x00000000000000000000001601000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112380.0", + "sz": "0.03525", + "side": "B", + "time": 1761068207944, + "startPosition": "-327.77506", + "dir": "Close Short", + "closedPnl": "14.02245", + "hash": "0xb90744608f414eecba81042decc17f02053100462a446dbe5ccfefb34e4528d7", + "oid": 208448962519, + "crossed": true, + "fee": "0.831892", + "tid": 22232048319415, + "cloid": "0x00000000000000000000001601000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112381.0", + "sz": "0.00011", + "side": "B", + "time": 1761068207944, + "startPosition": "-327.73981", + "dir": "Close Short", + "closedPnl": "0.043648", + "hash": "0xb90744608f414eecba81042decc17f02053100462a446dbe5ccfefb34e4528d7", + "oid": 208448962519, + "crossed": true, + "fee": "0.002596", + "tid": 382550886865484, + "cloid": "0x00000000000000000000001601000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112381.0", + "sz": "0.00011", + "side": "B", + "time": 1761068207944, + "startPosition": "-327.7397", + "dir": "Close Short", + "closedPnl": "0.043648", + "hash": "0xb90744608f414eecba81042decc17f02053100462a446dbe5ccfefb34e4528d7", + "oid": 208448962519, + "crossed": true, + "fee": "0.002596", + "tid": 1055792573754404, + "cloid": "0x00000000000000000000001601000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112381.0", + "sz": "0.04821", + "side": "B", + "time": 1761068207944, + "startPosition": "-327.73959", + "dir": "Close Short", + "closedPnl": "19.129728", + "hash": "0xb90744608f414eecba81042decc17f02053100462a446dbe5ccfefb34e4528d7", + "oid": 208448962519, + "crossed": true, + "fee": "1.137756", + "tid": 420129348819132, + "cloid": "0x00000000000000000000001601000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112368.0", + "sz": "0.01074", + "side": "B", + "time": 1761068210072, + "startPosition": "-327.69138", + "dir": "Close Short", + "closedPnl": "4.401252", + "hash": "0x812ad7b9c89f260882a4042decc19a0204c7009f639244da24f3830c8792fff3", + "oid": 208448990778, + "crossed": true, + "fee": "0.253434", + "tid": 150034915881112, + "cloid": "0x00000000000000000000001601000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112368.0", + "sz": "0.07822", + "side": "B", + "time": 1761068210072, + "startPosition": "-327.68064", + "dir": "Close Short", + "closedPnl": "32.054556", + "hash": "0x812ad7b9c89f260882a4042decc19a0204c7009f639244da24f3830c8792fff3", + "oid": 208448990778, + "crossed": true, + "fee": "1.845779", + "tid": 648047187308821, + "cloid": "0x00000000000000000000001601000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112368.0", + "sz": "0.08897", + "side": "B", + "time": 1761068212401, + "startPosition": "-327.60242", + "dir": "Close Short", + "closedPnl": "36.459906", + "hash": "0x8756669c810bf70b88d0042decc1b702039500821c0f15dd2b1f11ef400fd0f6", + "oid": 208449020902, + "crossed": true, + "fee": "2.09945", + "tid": 161121767399361, + "cloid": "0x00000000000000000000001601000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112370.0", + "sz": "0.00011", + "side": "B", + "time": 1761068218115, + "startPosition": "-327.51345", + "dir": "Close Short", + "closedPnl": "0.044858", + "hash": "0x77e816f880ba70307961042decc20602027d00de1bbd8f021bb0c24b3fbe4a1b", + "oid": 208449091959, + "crossed": true, + "fee": "0.002595", + "tid": 815347647516425, + "cloid": "0x00000000000000000000001601000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112370.0", + "sz": "0.08888", + "side": "B", + "time": 1761068218115, + "startPosition": "-327.51334", + "dir": "Close Short", + "closedPnl": "36.245264", + "hash": "0x77e816f880ba70307961042decc20602027d00de1bbd8f021bb0c24b3fbe4a1b", + "oid": 208449091959, + "crossed": true, + "fee": "2.097363", + "tid": 590396795227324, + "cloid": "0x00000000000000000000001601000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112376.0", + "sz": "0.00014", + "side": "B", + "time": 1761068219771, + "startPosition": "-327.42446", + "dir": "Close Short", + "closedPnl": "0.056252", + "hash": "0xb2fc0b4f6fdd5a60b475042decc21d02038c00350ad0793256c4b6a22ed1344b", + "oid": 208449120822, + "crossed": true, + "fee": "0.003303", + "tid": 558713699870630, + "cloid": "0x00000000000000000000001601000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112376.0", + "sz": "0.08881", + "side": "B", + "time": 1761068219771, + "startPosition": "-327.42432", + "dir": "Close Short", + "closedPnl": "35.683858", + "hash": "0xb2fc0b4f6fdd5a60b475042decc21d02038c00350ad0793256c4b6a22ed1344b", + "oid": 208449120822, + "crossed": true, + "fee": "2.095823", + "tid": 315075006497721, + "cloid": "0x00000000000000000000001601000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112376.0", + "sz": "0.08896", + "side": "B", + "time": 1761068221086, + "startPosition": "-327.33551", + "dir": "Close Short", + "closedPnl": "35.744128", + "hash": "0xb867267475f551b0b9e0042decc22c0205b3005a10f870825c2fd1c734f92b9b", + "oid": 208449134537, + "crossed": true, + "fee": "2.099363", + "tid": 895048576037434, + "cloid": "0x00000000000000000000001601000128", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112373.0", + "sz": "0.08897", + "side": "B", + "time": 1761068224424, + "startPosition": "-327.24655", + "dir": "Close Short", + "closedPnl": "36.015056", + "hash": "0x96665f9a798cb0a997e0042decc2510203db0080148fcf7b3a2f0aed38808a94", + "oid": 208449190107, + "crossed": true, + "fee": "2.099543", + "tid": 720536088031571, + "cloid": "0x00000000000000000000001601000129", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112371.0", + "sz": "0.08896", + "side": "B", + "time": 1761068225866, + "startPosition": "-327.15758", + "dir": "Close Short", + "closedPnl": "36.188928", + "hash": "0xc85abddc2036ba1fc9d4042decc2600207f300c1bb39d8f16c23692edf3a940a", + "oid": 208449213200, + "crossed": true, + "fee": "2.09927", + "tid": 480786066614183, + "cloid": "0x00000000000000000000001601000130", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112305.0", + "sz": "0.05452", + "side": "B", + "time": 1761068228584, + "startPosition": "-327.06862", + "dir": "Close Short", + "closedPnl": "25.777056", + "hash": "0xa9deb2e9f313a0ceab58042decc280020eb100cf8e16bfa04da75e3cb2177ab9", + "oid": 208449271730, + "crossed": true, + "fee": "1.285802", + "tid": 645601249865154, + "cloid": "0x00000000000000000000001601000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112305.0", + "sz": "0.03448", + "side": "B", + "time": 1761068228584, + "startPosition": "-327.0141", + "dir": "Close Short", + "closedPnl": "16.302144", + "hash": "0xa9deb2e9f313a0ceab58042decc280020eb100cf8e16bfa04da75e3cb2177ab9", + "oid": 208449271730, + "crossed": true, + "fee": "0.813178", + "tid": 79461740118863, + "cloid": "0x00000000000000000000001601000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112303.0", + "sz": "0.08902", + "side": "B", + "time": 1761068230038, + "startPosition": "-326.97962", + "dir": "Close Short", + "closedPnl": "42.266696", + "hash": "0x9e830bbc7d3362c49ffc042decc29402023f00a218368196424bb70f3c373caf", + "oid": 208449291861, + "crossed": true, + "fee": "2.099414", + "tid": 401955339261723, + "cloid": "0x00000000000000000000001601000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112255.0", + "sz": "0.08902", + "side": "B", + "time": 1761068232644, + "startPosition": "-326.8906", + "dir": "Close Short", + "closedPnl": "46.539656", + "hash": "0xfcecc72cd692994efe66042decc2ba020b0700127195b821a0b5727f95967339", + "oid": 208449340420, + "crossed": true, + "fee": "2.098517", + "tid": 393961235746256, + "cloid": "0x00000000000000000000001601000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112219.0", + "sz": "0.08907", + "side": "B", + "time": 1761068234837, + "startPosition": "-326.80158", + "dir": "Close Short", + "closedPnl": "49.772316", + "hash": "0xb6a1609c7702a2dbb81b042decc2d302036900821205c1ad5a6a0bef36067cc6", + "oid": 208449377994, + "crossed": true, + "fee": "2.099022", + "tid": 425939566207577, + "cloid": "0x00000000000000000000001601000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112212.0", + "sz": "0.08908", + "side": "B", + "time": 1761068236169, + "startPosition": "-326.71251", + "dir": "Close Short", + "closedPnl": "50.401464", + "hash": "0xc91fafa862e2052cca99042decc2e40204c2008dfde523fe6ce85afb21e5df17", + "oid": 208449394472, + "crossed": true, + "fee": "2.099127", + "tid": 1043218625783921, + "cloid": "0x00000000000000000000001601000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112214.0", + "sz": "0.08909", + "side": "B", + "time": 1761068239560, + "startPosition": "-326.62343", + "dir": "Close Short", + "closedPnl": "50.228942", + "hash": "0xd94082261c90a0cfdaba042decc30b020712000bb793bfa17d092d78db947aba", + "oid": 208449456942, + "crossed": true, + "fee": "2.0994", + "tid": 860430426602978, + "cloid": "0x00000000000000000000001601000136", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112187.0", + "sz": "0.08911", + "side": "B", + "time": 1761068241099, + "startPosition": "-326.53434", + "dir": "Close Short", + "closedPnl": "52.646188", + "hash": "0x6555f9c38d2c7c3b66cf042decc32102071500a9282f9b0d091ea5164c205626", + "oid": 208449480965, + "crossed": true, + "fee": "2.099366", + "tid": 99000463094342, + "cloid": "0x00000000000000000000001601000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112209.0", + "sz": "0.08909", + "side": "B", + "time": 1761068243297, + "startPosition": "-326.44523", + "dir": "Close Short", + "closedPnl": "50.674392", + "hash": "0x4b6bc837d009fb014ce5042decc3380204c0001d6b0d19d3ef34738a8f0dd4eb", + "oid": 208449519767, + "crossed": true, + "fee": "2.099306", + "tid": 752331254288100, + "cloid": "0x00000000000000000000001601000138", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112211.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35614", + "dir": "Close Short", + "closedPnl": "0.062348", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 332579539810537, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112212.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35603", + "dir": "Close Short", + "closedPnl": "0.062238", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 617208294631710, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112213.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35592", + "dir": "Close Short", + "closedPnl": "0.062128", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 1110962454518950, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112214.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35581", + "dir": "Close Short", + "closedPnl": "0.062018", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 166241529125862, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112215.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.3557", + "dir": "Close Short", + "closedPnl": "0.061908", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 1008857471655888, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112216.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35559", + "dir": "Close Short", + "closedPnl": "0.061798", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 545693921418142, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112217.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35548", + "dir": "Close Short", + "closedPnl": "0.061688", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 863530350522467, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112217.0", + "sz": "0.00017", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35537", + "dir": "Close Short", + "closedPnl": "0.095336", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.004006", + "tid": 384400177107911, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112218.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.3552", + "dir": "Close Short", + "closedPnl": "0.061578", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 11029833217582, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112219.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35509", + "dir": "Close Short", + "closedPnl": "0.061468", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 750984436925816, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112219.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35498", + "dir": "Close Short", + "closedPnl": "0.061468", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 684648551075841, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112220.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35487", + "dir": "Close Short", + "closedPnl": "0.061358", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 639260182481481, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112220.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35476", + "dir": "Close Short", + "closedPnl": "0.061358", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 13919762823645, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112221.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35465", + "dir": "Close Short", + "closedPnl": "0.061248", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 998283576964891, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112221.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35454", + "dir": "Close Short", + "closedPnl": "0.061248", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 145707253823236, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112222.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35443", + "dir": "Close Short", + "closedPnl": "0.061138", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 120231629907046, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112222.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35432", + "dir": "Close Short", + "closedPnl": "0.061138", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 783557569812090, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112223.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35421", + "dir": "Close Short", + "closedPnl": "0.061028", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 552818424828092, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112224.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.3541", + "dir": "Close Short", + "closedPnl": "0.060918", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 419371010187458, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112225.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35399", + "dir": "Close Short", + "closedPnl": "0.060808", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 1061411391293762, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112226.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35388", + "dir": "Close Short", + "closedPnl": "0.060698", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 855006667508024, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112227.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35377", + "dir": "Close Short", + "closedPnl": "0.060588", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 832501504119607, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112228.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35366", + "dir": "Close Short", + "closedPnl": "0.060478", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 311081989922562, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112229.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35355", + "dir": "Close Short", + "closedPnl": "0.060368", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 94813909996200, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112230.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35344", + "dir": "Close Short", + "closedPnl": "0.060258", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 747929933472762, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112231.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35333", + "dir": "Close Short", + "closedPnl": "0.060148", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 389082929480101, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112232.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35322", + "dir": "Close Short", + "closedPnl": "0.060038", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 759412355688591, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112233.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35311", + "dir": "Close Short", + "closedPnl": "0.059928", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 486161831155127, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112234.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.353", + "dir": "Close Short", + "closedPnl": "0.059818", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 960279545991389, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112234.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35289", + "dir": "Close Short", + "closedPnl": "0.059818", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 529637993407203, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112235.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35278", + "dir": "Close Short", + "closedPnl": "0.059708", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 436530773825164, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112236.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35267", + "dir": "Close Short", + "closedPnl": "0.059598", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 754192221197199, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112237.0", + "sz": "0.00018", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35256", + "dir": "Close Short", + "closedPnl": "0.097344", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.004242", + "tid": 11244965847123, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112237.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35238", + "dir": "Close Short", + "closedPnl": "0.059488", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 891701498249800, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112237.0", + "sz": "0.00011", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35227", + "dir": "Close Short", + "closedPnl": "0.059488", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "0.002592", + "tid": 1088308039046061, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112237.0", + "sz": "0.08511", + "side": "B", + "time": 1761068245992, + "startPosition": "-326.35216", + "dir": "Close Short", + "closedPnl": "46.027488", + "hash": "0xd45c25c024f739e0d5d5042decc35a0207bd00a5bffa58b27824d112e3fb13cb", + "oid": 208449556781, + "crossed": true, + "fee": "2.006023", + "tid": 689353659560552, + "cloid": "0x00000000000000000000001601000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112239.0", + "sz": "0.08907", + "side": "B", + "time": 1761068248274, + "startPosition": "-326.26705", + "dir": "Close Short", + "closedPnl": "47.990916", + "hash": "0x76d39f3af8f0fa1f784d042decc3780201e7002093f418f11a9c4a8db7f4d40a", + "oid": 208449590466, + "crossed": true, + "fee": "2.099396", + "tid": 838028378749938, + "cloid": "0x00000000000000000000001601000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112180.0", + "sz": "0.08907", + "side": "B", + "time": 1761068250154, + "startPosition": "-326.17798", + "dir": "Close Short", + "closedPnl": "53.246046", + "hash": "0x7a36436c3b9316947baf042decc39202079f0051d69635661dfeeebefa96f07f", + "oid": 208449621293, + "crossed": true, + "fee": "2.098293", + "tid": 766079733231374, + "cloid": "0x00000000000000000000001601000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112180.0", + "sz": "0.08909", + "side": "B", + "time": 1761068252281, + "startPosition": "-326.08891", + "dir": "Close Short", + "closedPnl": "53.258002", + "hash": "0x23815a337f9f199824fb042decc3ac0207dd00191a92386ac74a05863e92f382", + "oid": 208449650649, + "crossed": true, + "fee": "2.098764", + "tid": 1099832450909378, + "cloid": "0x00000000000000000000001601000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112188.0", + "sz": "0.08908", + "side": "B", + "time": 1761068255191, + "startPosition": "-325.99982", + "dir": "Close Short", + "closedPnl": "52.539384", + "hash": "0x42309545b114864443aa042decc3d0020301002b4c17a516e5f940987018602e", + "oid": 208449693448, + "crossed": true, + "fee": "2.098678", + "tid": 865274854277169, + "cloid": "0x00000000000000000000001601000143", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112188.0", + "sz": "0.0891", + "side": "B", + "time": 1761068257201, + "startPosition": "-325.91074", + "dir": "Close Short", + "closedPnl": "52.55118", + "hash": "0x9e7e38bf7473f2b49ff7042decc3e802042f00a50f7711864246e4123377cc9f", + "oid": 208449712351, + "crossed": true, + "fee": "2.099149", + "tid": 25410895835513, + "cloid": "0x00000000000000000000001601000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112224.0", + "sz": "0.08913", + "side": "B", + "time": 1761068261355, + "startPosition": "-325.82164", + "dir": "Close Short", + "closedPnl": "49.360194", + "hash": "0xe6c0b2f090befbebe83a042decc41602052d00d62bb21abd8a895e434fb2d5d6", + "oid": 208449772987, + "crossed": false, + "fee": "0.28007", + "tid": 1079202838503263, + "cloid": "0x00000000000000000000001601000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112228.0", + "sz": "0.00011", + "side": "B", + "time": 1761068264177, + "startPosition": "-325.73251", + "dir": "Close Short", + "closedPnl": "0.060478", + "hash": "0x385e51df7312116739d8042decc4370205de00c50e153039dc26fd323215eb51", + "oid": 208449831056, + "crossed": true, + "fee": "0.002592", + "tid": 418202235702307, + "cloid": "0x00000000000000000000001601000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112228.0", + "sz": "0.08897", + "side": "B", + "time": 1761068264177, + "startPosition": "-325.7324", + "dir": "Close Short", + "closedPnl": "48.915706", + "hash": "0x385e51df7312116739d8042decc4370205de00c50e153039dc26fd323215eb51", + "oid": 208449831056, + "crossed": true, + "fee": "2.096834", + "tid": 220211815753597, + "cloid": "0x00000000000000000000001601000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112238.0", + "sz": "0.00011", + "side": "B", + "time": 1761068267426, + "startPosition": "-325.64343", + "dir": "Close Short", + "closedPnl": "0.059378", + "hash": "0x4b4f38d7d9b45dc34cc8042decc45d02029a00bd74b77c95ef17e42a98b837ad", + "oid": 208449873294, + "crossed": true, + "fee": "0.002592", + "tid": 81484712852986, + "cloid": "0x00000000000000000000001601000148", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112238.0", + "sz": "0.08898", + "side": "B", + "time": 1761068267426, + "startPosition": "-325.64332", + "dir": "Close Short", + "closedPnl": "48.031404", + "hash": "0x4b4f38d7d9b45dc34cc8042decc45d02029a00bd74b77c95ef17e42a98b837ad", + "oid": 208449873294, + "crossed": true, + "fee": "2.097256", + "tid": 110807815229845, + "cloid": "0x00000000000000000000001601000148", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112202.0", + "sz": "0.08911", + "side": "B", + "time": 1761068268921, + "startPosition": "-325.55434", + "dir": "Close Short", + "closedPnl": "51.309538", + "hash": "0x06c4aaae91212f9d083e042decc46e020c1400942c244e6faa8d560150250987", + "oid": 208449908324, + "crossed": true, + "fee": "2.099647", + "tid": 89897018207802, + "cloid": "0x00000000000000000000001601000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112139.0", + "sz": "0.08917", + "side": "B", + "time": 1761068272422, + "startPosition": "-325.46523", + "dir": "Close Short", + "closedPnl": "56.961796", + "hash": "0x1b722994a987cd101ceb042decc49b0201e9007a448aebe2bf3ad4e7688ba6fa", + "oid": 208449962765, + "crossed": false, + "fee": "0.279984", + "tid": 841288624895821, + "cloid": "0x00000000000000000000001601000150", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112186.0", + "sz": "0.08911", + "side": "B", + "time": 1761068273953, + "startPosition": "-325.37606", + "dir": "Close Short", + "closedPnl": "52.735298", + "hash": "0xe3fb12e5e592ee38e574042decc4ae0204b300cb80960d0a87c3be38a496c823", + "oid": 208449998880, + "crossed": true, + "fee": "2.099347", + "tid": 807524148416356, + "cloid": "0x00000000000000000000001601000151", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112237.0", + "sz": "0.06657", + "side": "B", + "time": 1761068281180, + "startPosition": "-325.28695", + "dir": "Close Short", + "closedPnl": "36.001056", + "hash": "0x6e37d14089283ef86fb1042decc4fd0202890026242b5dca12007c93482c18e3", + "oid": 208450119430, + "crossed": true, + "fee": "1.569039", + "tid": 118186891031924, + "cloid": "0x00000000000000000000001601000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112237.0", + "sz": "0.00011", + "side": "B", + "time": 1761068281180, + "startPosition": "-325.22038", + "dir": "Close Short", + "closedPnl": "0.059488", + "hash": "0x6e37d14089283ef86fb1042decc4fd0202890026242b5dca12007c93482c18e3", + "oid": 208450119430, + "crossed": true, + "fee": "0.002592", + "tid": 399730646284660, + "cloid": "0x00000000000000000000001601000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112238.0", + "sz": "0.00011", + "side": "B", + "time": 1761068281180, + "startPosition": "-325.22027", + "dir": "Close Short", + "closedPnl": "0.059378", + "hash": "0x6e37d14089283ef86fb1042decc4fd0202890026242b5dca12007c93482c18e3", + "oid": 208450119430, + "crossed": true, + "fee": "0.002592", + "tid": 255864946016530, + "cloid": "0x00000000000000000000001601000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112238.0", + "sz": "0.02233", + "side": "B", + "time": 1761068281180, + "startPosition": "-325.22016", + "dir": "Close Short", + "closedPnl": "12.053734", + "hash": "0x6e37d14089283ef86fb1042decc4fd0202890026242b5dca12007c93482c18e3", + "oid": 208450119430, + "crossed": true, + "fee": "0.526317", + "tid": 459511218095636, + "cloid": "0x00000000000000000000001601000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112239.0", + "sz": "0.08906", + "side": "B", + "time": 1761068283536, + "startPosition": "-325.19783", + "dir": "Close Short", + "closedPnl": "47.985528", + "hash": "0x6b5d1f361abc7d636cd6042decc51c02072f001bb5bf9c350f25ca88d9b0574e", + "oid": 208450163140, + "crossed": true, + "fee": "2.099161", + "tid": 498023734294869, + "cloid": "0x00000000000000000000001601000155", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112225.0", + "sz": "0.02396", + "side": "B", + "time": 1761068284923, + "startPosition": "-325.10877", + "dir": "Close Short", + "closedPnl": "13.245088", + "hash": "0x0a14b6cd8ac4a7f70b8e042decc52f020f3900b325c7c6c9addd622049c881e1", + "oid": 208450192559, + "crossed": true, + "fee": "0.564671", + "tid": 959149531266353, + "cloid": "0x00000000000000000000001601000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112225.0", + "sz": "0.02842", + "side": "B", + "time": 1761068284923, + "startPosition": "-325.08481", + "dir": "Close Short", + "closedPnl": "15.710576", + "hash": "0x0a14b6cd8ac4a7f70b8e042decc52f020f3900b325c7c6c9addd622049c881e1", + "oid": 208450192559, + "crossed": true, + "fee": "0.669781", + "tid": 558307662040227, + "cloid": "0x00000000000000000000001601000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112225.0", + "sz": "0.03668", + "side": "B", + "time": 1761068284923, + "startPosition": "-325.05639", + "dir": "Close Short", + "closedPnl": "20.276704", + "hash": "0x0a14b6cd8ac4a7f70b8e042decc52f020f3900b325c7c6c9addd622049c881e1", + "oid": 208450192559, + "crossed": true, + "fee": "0.864446", + "tid": 734910912417610, + "cloid": "0x00000000000000000000001601000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112223.0", + "sz": "0.0891", + "side": "B", + "time": 1761068288608, + "startPosition": "-325.01971", + "dir": "Close Short", + "closedPnl": "49.43268", + "hash": "0x5fb8c7de0216d4736132042decc5580204e900c39d19f34503817330c11aae5e", + "oid": 208450245182, + "crossed": false, + "fee": "0.279973", + "tid": 974561186813939, + "cloid": "0x00000000000000000000001601000157", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112217.0", + "sz": "0.08908", + "side": "B", + "time": 1761068289898, + "startPosition": "-324.93061", + "dir": "Close Short", + "closedPnl": "49.956064", + "hash": "0xc4c3764a8857b17ec63d042decc566020e270030235ad050688c219d475b8b69", + "oid": 208450276125, + "crossed": true, + "fee": "2.09922", + "tid": 417311916358867, + "cloid": "0x00000000000000000000001601000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112216.0", + "sz": "0.07532", + "side": "B", + "time": 1761068294023, + "startPosition": "-324.84153", + "dir": "Close Short", + "closedPnl": "42.314776", + "hash": "0xc7e3620a1621a63ec95d042decc599020fcd00efb124c5106bac0d5cd5258029", + "oid": 208450325993, + "crossed": true, + "fee": "1.774942", + "tid": 611550743013595, + "cloid": "0x00000000000000000000001601000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112216.0", + "sz": "0.01378", + "side": "B", + "time": 1761068294023, + "startPosition": "-324.76621", + "dir": "Close Short", + "closedPnl": "7.741604", + "hash": "0xc7e3620a1621a63ec95d042decc599020fcd00efb124c5106bac0d5cd5258029", + "oid": 208450325993, + "crossed": true, + "fee": "0.32473", + "tid": 871682096440599, + "cloid": "0x00000000000000000000001601000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112208.0", + "sz": "0.07979", + "side": "B", + "time": 1761068296865, + "startPosition": "-324.75243", + "dir": "Close Short", + "closedPnl": "45.464342", + "hash": "0xf4357571f2f7af17f5af042decc5c402020b00578dfacdea97fe20c4b1fb8902", + "oid": 208450361043, + "crossed": true, + "fee": "1.880146", + "tid": 4992186199426, + "cloid": "0x00000000000000000000001601000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112208.0", + "sz": "0.00932", + "side": "B", + "time": 1761068296865, + "startPosition": "-324.67264", + "dir": "Close Short", + "closedPnl": "5.310536", + "hash": "0xf4357571f2f7af17f5af042decc5c402020b00578dfacdea97fe20c4b1fb8902", + "oid": 208450361043, + "crossed": true, + "fee": "0.219613", + "tid": 407413305504620, + "cloid": "0x00000000000000000000001601000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112208.0", + "sz": "0.0891", + "side": "B", + "time": 1761068298245, + "startPosition": "-324.66332", + "dir": "Close Short", + "closedPnl": "50.76918", + "hash": "0x5707212f67dded0f5880042decc5d4020439001502d10be1facfcc8226d1c6f9", + "oid": 208450374709, + "crossed": true, + "fee": "2.099523", + "tid": 431627389197024, + "cloid": "0x00000000000000000000001601000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112203.0", + "sz": "0.0891", + "side": "B", + "time": 1761068300742, + "startPosition": "-324.57422", + "dir": "Close Short", + "closedPnl": "51.21468", + "hash": "0x83961719dafa4c93850f042decc5f50205d600ff75fd6b65275ec26c99fe267e", + "oid": 208450411434, + "crossed": true, + "fee": "2.09943", + "tid": 922733250264827, + "cloid": "0x00000000000000000000001601000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112269.0", + "sz": "0.00051", + "side": "B", + "time": 1761068306127, + "startPosition": "-324.48512", + "dir": "Close Short", + "closedPnl": "0.259488", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 208450508749, + "crossed": false, + "fee": "0.001603", + "tid": 1015125999225418, + "cloid": "0x00000000000000000000001601000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112269.0", + "sz": "0.01571", + "side": "B", + "time": 1761068307048, + "startPosition": "-324.48461", + "dir": "Close Short", + "closedPnl": "7.993248", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 208450508749, + "crossed": false, + "fee": "0.049384", + "tid": 1082910531730191, + "cloid": "0x00000000000000000000001601000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112263.0", + "sz": "0.02228", + "side": "B", + "time": 1761068308687, + "startPosition": "-324.4689", + "dir": "Close Short", + "closedPnl": "11.469744", + "hash": "0x64a6c6a32eae35cf6620042decc6550205e90088c9a154a1086f71f5eda20fba", + "oid": 208450568160, + "crossed": true, + "fee": "0.525256", + "tid": 390899278179230, + "cloid": "0x00000000000000000000001601000164", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112263.0", + "sz": "0.05056", + "side": "B", + "time": 1761068308687, + "startPosition": "-324.44662", + "dir": "Close Short", + "closedPnl": "26.028288", + "hash": "0x64a6c6a32eae35cf6620042decc6550205e90088c9a154a1086f71f5eda20fba", + "oid": 208450568160, + "crossed": true, + "fee": "1.191963", + "tid": 368100094970722, + "cloid": "0x00000000000000000000001601000164", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112275.0", + "sz": "0.00004", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39606", + "dir": "Close Short", + "closedPnl": "0.020112", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.000943", + "tid": 133251931765295, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112276.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39602", + "dir": "Close Short", + "closedPnl": "0.055198", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 659845894708632, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112277.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39591", + "dir": "Close Short", + "closedPnl": "0.055088", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 614833174187295, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112278.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.3958", + "dir": "Close Short", + "closedPnl": "0.054978", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 428138508226345, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112278.0", + "sz": "0.00014", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39569", + "dir": "Close Short", + "closedPnl": "0.069972", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.0033", + "tid": 1038325501877208, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112279.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39555", + "dir": "Close Short", + "closedPnl": "0.054868", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 405196768983386, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112280.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39544", + "dir": "Close Short", + "closedPnl": "0.054758", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 1078881223288031, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112280.0", + "sz": "0.00089", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39533", + "dir": "Close Short", + "closedPnl": "0.443042", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.020985", + "tid": 287781332542045, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112281.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39444", + "dir": "Close Short", + "closedPnl": "0.054648", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 1033404568136590, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112282.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39433", + "dir": "Close Short", + "closedPnl": "0.054538", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 37046425335316, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112283.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39422", + "dir": "Close Short", + "closedPnl": "0.054428", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 172898833308103, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112284.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39411", + "dir": "Close Short", + "closedPnl": "0.054318", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 560875782127557, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112285.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.394", + "dir": "Close Short", + "closedPnl": "0.054208", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 628178072633117, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112286.0", + "sz": "0.00014", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39389", + "dir": "Close Short", + "closedPnl": "0.068852", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.003301", + "tid": 475872479999600, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112286.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39375", + "dir": "Close Short", + "closedPnl": "0.054098", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 993918177198594, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112287.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39364", + "dir": "Close Short", + "closedPnl": "0.053988", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 1099155031125779, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112288.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39353", + "dir": "Close Short", + "closedPnl": "0.053878", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 1067314246502673, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112289.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39342", + "dir": "Close Short", + "closedPnl": "0.053768", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 69348302939207, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112290.0", + "sz": "0.00014", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39331", + "dir": "Close Short", + "closedPnl": "0.068292", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.003301", + "tid": 952140583360458, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112290.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39317", + "dir": "Close Short", + "closedPnl": "0.053658", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 1097152321474542, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112291.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39306", + "dir": "Close Short", + "closedPnl": "0.053548", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 1058152329443122, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112292.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39295", + "dir": "Close Short", + "closedPnl": "0.053438", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 313203930952439, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112293.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39284", + "dir": "Close Short", + "closedPnl": "0.053328", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 141374823545311, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112294.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39273", + "dir": "Close Short", + "closedPnl": "0.053218", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002593", + "tid": 722271372000865, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112295.0", + "sz": "0.00014", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39262", + "dir": "Close Short", + "closedPnl": "0.067592", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.003301", + "tid": 759355410800293, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112295.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39248", + "dir": "Close Short", + "closedPnl": "0.053108", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002594", + "tid": 805000183192042, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112296.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39237", + "dir": "Close Short", + "closedPnl": "0.052998", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002594", + "tid": 839795126326829, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112297.0", + "sz": "0.00011", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39226", + "dir": "Close Short", + "closedPnl": "0.052888", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "0.002594", + "tid": 413282612999680, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112297.0", + "sz": "0.08512", + "side": "B", + "time": 1761068309884, + "startPosition": "-324.39215", + "dir": "Close Short", + "closedPnl": "40.925696", + "hash": "0x313403810a6c95ee32ad042decc6650202b50066a56fb4c0d4fcaed3c9606fd8", + "oid": 208450595153, + "crossed": true, + "fee": "2.007331", + "tid": 656620677192578, + "cloid": "0x00000000000000000000001601000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112299.0", + "sz": "0.00014", + "side": "B", + "time": 1761068312378, + "startPosition": "-324.30703", + "dir": "Close Short", + "closedPnl": "0.067032", + "hash": "0xc8bbac9e95332397ca35042decc68b0203ac0084303642696c8457f15436fd82", + "oid": 208450642370, + "crossed": true, + "fee": "0.003301", + "tid": 238220504674568, + "cloid": "0x00000000000000000000001601000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112299.0", + "sz": "0.00011", + "side": "B", + "time": 1761068312378, + "startPosition": "-324.30689", + "dir": "Close Short", + "closedPnl": "0.052668", + "hash": "0xc8bbac9e95332397ca35042decc68b0203ac0084303642696c8457f15436fd82", + "oid": 208450642370, + "crossed": true, + "fee": "0.002594", + "tid": 791519216067990, + "cloid": "0x00000000000000000000001601000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112300.0", + "sz": "0.01", + "side": "B", + "time": 1761068312378, + "startPosition": "-324.30678", + "dir": "Close Short", + "closedPnl": "4.778", + "hash": "0xc8bbac9e95332397ca35042decc68b0203ac0084303642696c8457f15436fd82", + "oid": 208450642370, + "crossed": true, + "fee": "0.235829", + "tid": 651569611789331, + "cloid": "0x00000000000000000000001601000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112300.0", + "sz": "0.00011", + "side": "B", + "time": 1761068312378, + "startPosition": "-324.29678", + "dir": "Close Short", + "closedPnl": "0.052558", + "hash": "0xc8bbac9e95332397ca35042decc68b0203ac0084303642696c8457f15436fd82", + "oid": 208450642370, + "crossed": true, + "fee": "0.002594", + "tid": 122775016828984, + "cloid": "0x00000000000000000000001601000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112301.0", + "sz": "0.00011", + "side": "B", + "time": 1761068312378, + "startPosition": "-324.29667", + "dir": "Close Short", + "closedPnl": "0.052448", + "hash": "0xc8bbac9e95332397ca35042decc68b0203ac0084303642696c8457f15436fd82", + "oid": 208450642370, + "crossed": true, + "fee": "0.002594", + "tid": 547471475714903, + "cloid": "0x00000000000000000000001601000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112302.0", + "sz": "0.00011", + "side": "B", + "time": 1761068312378, + "startPosition": "-324.29656", + "dir": "Close Short", + "closedPnl": "0.052338", + "hash": "0xc8bbac9e95332397ca35042decc68b0203ac0084303642696c8457f15436fd82", + "oid": 208450642370, + "crossed": true, + "fee": "0.002594", + "tid": 618848011714209, + "cloid": "0x00000000000000000000001601000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112303.0", + "sz": "0.00014", + "side": "B", + "time": 1761068312378, + "startPosition": "-324.29645", + "dir": "Close Short", + "closedPnl": "0.066472", + "hash": "0xc8bbac9e95332397ca35042decc68b0203ac0084303642696c8457f15436fd82", + "oid": 208450642370, + "crossed": true, + "fee": "0.003301", + "tid": 287049987436648, + "cloid": "0x00000000000000000000001601000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112303.0", + "sz": "0.00011", + "side": "B", + "time": 1761068312378, + "startPosition": "-324.29631", + "dir": "Close Short", + "closedPnl": "0.052228", + "hash": "0xc8bbac9e95332397ca35042decc68b0203ac0084303642696c8457f15436fd82", + "oid": 208450642370, + "crossed": true, + "fee": "0.002594", + "tid": 1006326552358545, + "cloid": "0x00000000000000000000001601000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112304.0", + "sz": "0.00011", + "side": "B", + "time": 1761068312378, + "startPosition": "-324.2962", + "dir": "Close Short", + "closedPnl": "0.052118", + "hash": "0xc8bbac9e95332397ca35042decc68b0203ac0084303642696c8457f15436fd82", + "oid": 208450642370, + "crossed": true, + "fee": "0.002594", + "tid": 705076992116100, + "cloid": "0x00000000000000000000001601000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112305.0", + "sz": "0.00011", + "side": "B", + "time": 1761068312378, + "startPosition": "-324.29609", + "dir": "Close Short", + "closedPnl": "0.052008", + "hash": "0xc8bbac9e95332397ca35042decc68b0203ac0084303642696c8457f15436fd82", + "oid": 208450642370, + "crossed": true, + "fee": "0.002594", + "tid": 488155117731425, + "cloid": "0x00000000000000000000001601000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112306.0", + "sz": "0.00011", + "side": "B", + "time": 1761068312378, + "startPosition": "-324.29598", + "dir": "Close Short", + "closedPnl": "0.051898", + "hash": "0xc8bbac9e95332397ca35042decc68b0203ac0084303642696c8457f15436fd82", + "oid": 208450642370, + "crossed": true, + "fee": "0.002594", + "tid": 232315709576956, + "cloid": "0x00000000000000000000001601000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112307.0", + "sz": "0.00014", + "side": "B", + "time": 1761068312378, + "startPosition": "-324.29587", + "dir": "Close Short", + "closedPnl": "0.065912", + "hash": "0xc8bbac9e95332397ca35042decc68b0203ac0084303642696c8457f15436fd82", + "oid": 208450642370, + "crossed": true, + "fee": "0.003301", + "tid": 524453039889601, + "cloid": "0x00000000000000000000001601000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112309.0", + "sz": "0.00445", + "side": "B", + "time": 1761068312378, + "startPosition": "-324.29573", + "dir": "Close Short", + "closedPnl": "2.08616", + "hash": "0xc8bbac9e95332397ca35042decc68b0203ac0084303642696c8457f15436fd82", + "oid": 208450642370, + "crossed": true, + "fee": "0.104952", + "tid": 192614438545129, + "cloid": "0x00000000000000000000001601000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112310.0", + "sz": "0.0001", + "side": "B", + "time": 1761068312773, + "startPosition": "-324.29128", + "dir": "Close Short", + "closedPnl": "0.04678", + "hash": "0x82eaf7980e5ff98b8464042decc690020635007da953185d26b3a2eacd53d376", + "oid": 208450642370, + "crossed": false, + "fee": "0.000314", + "tid": 82736731153197, + "cloid": "0x00000000000000000000001601000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112310.0", + "sz": "0.0002", + "side": "B", + "time": 1761068312951, + "startPosition": "-324.29118", + "dir": "Close Short", + "closedPnl": "0.09356", + "hash": "0xd3e5511558afee9bd55f042decc6930203d300faf3a30d6d77adfc6817a3c886", + "oid": 208450642370, + "crossed": false, + "fee": "0.000628", + "tid": 468129867682488, + "cloid": "0x00000000000000000000001601000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112310.0", + "sz": "0.07298", + "side": "B", + "time": 1761068313020, + "startPosition": "-324.29098", + "dir": "Close Short", + "closedPnl": "34.140044", + "hash": "0x4f36d135ca696e9b50b0042decc69402038a001b656c8d6df2ff7c88896d4885", + "oid": 208450642370, + "crossed": false, + "fee": "0.229498", + "tid": 746746747431132, + "cloid": "0x00000000000000000000001601000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112297.0", + "sz": "0.01283", + "side": "B", + "time": 1761068314351, + "startPosition": "-324.218", + "dir": "Close Short", + "closedPnl": "6.168664", + "hash": "0x94f3a04e636fb395966d042decc6a60203c00033fe62d26738bc4ba122638d80", + "oid": 208450669086, + "crossed": true, + "fee": "0.302561", + "tid": 898022899936317, + "cloid": "0x00000000000000000000001601000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112297.0", + "sz": "0.02116", + "side": "B", + "time": 1761068314351, + "startPosition": "-324.20517", + "dir": "Close Short", + "closedPnl": "10.173728", + "hash": "0x94f3a04e636fb395966d042decc6a60203c00033fe62d26738bc4ba122638d80", + "oid": 208450669086, + "crossed": true, + "fee": "0.499002", + "tid": 40613099911234, + "cloid": "0x00000000000000000000001601000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112297.0", + "sz": "0.05503", + "side": "B", + "time": 1761068314351, + "startPosition": "-324.18401", + "dir": "Close Short", + "closedPnl": "26.458424", + "hash": "0x94f3a04e636fb395966d042decc6a60203c00033fe62d26738bc4ba122638d80", + "oid": 208450669086, + "crossed": true, + "fee": "1.297737", + "tid": 959235614936184, + "cloid": "0x00000000000000000000001601000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112289.0", + "sz": "0.08903", + "side": "B", + "time": 1761068316966, + "startPosition": "-324.12898", + "dir": "Close Short", + "closedPnl": "43.517864", + "hash": "0xda3c8248ec8fd1dedbb6042decc6c80203f8002e8782f0b07e052d9bab83abc9", + "oid": 208450709385, + "crossed": true, + "fee": "2.099388", + "tid": 413538401150179, + "cloid": "0x00000000000000000000001601000168", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112289.0", + "sz": "0.08904", + "side": "B", + "time": 1761068319659, + "startPosition": "-324.03995", + "dir": "Close Short", + "closedPnl": "43.522752", + "hash": "0x1d056bf8c4f579491e7f042decc6ef02031400de5ff8981bc0ce174b83f95333", + "oid": 208450745473, + "crossed": true, + "fee": "2.099624", + "tid": 170767842606505, + "cloid": "0x00000000000000000000001601000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112295.0", + "sz": "0.08902", + "side": "B", + "time": 1761068321298, + "startPosition": "-323.95091", + "dir": "Close Short", + "closedPnl": "42.978856", + "hash": "0x68724f06dd93277a69ec042decc70202018f00ec7896464c0c3afa599c970165", + "oid": 208450771080, + "crossed": true, + "fee": "2.099265", + "tid": 488358857591984, + "cloid": "0x00000000000000000000001601000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112295.0", + "sz": "0.08904", + "side": "B", + "time": 1761068322908, + "startPosition": "-323.86189", + "dir": "Close Short", + "closedPnl": "42.988512", + "hash": "0xff7007daf1e6e2da00e9042decc71402024200c08cea01ada338b32db0eabcc5", + "oid": 208450789322, + "crossed": true, + "fee": "2.099736", + "tid": 896862739887966, + "cloid": "0x00000000000000000000001601000171", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112289.0", + "sz": "0.08903", + "side": "B", + "time": 1761068324649, + "startPosition": "-323.77285", + "dir": "Close Short", + "closedPnl": "43.517864", + "hash": "0x41682d6f83f5525842e1042decc72a02041d00551ef8712ae530d8c242f92c42", + "oid": 208450814086, + "crossed": true, + "fee": "2.099388", + "tid": 90160980912337, + "cloid": "0x00000000000000000000001601000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112300.0", + "sz": "0.08902", + "side": "B", + "time": 1761068326032, + "startPosition": "-323.68382", + "dir": "Close Short", + "closedPnl": "42.533756", + "hash": "0xd102a48862bd99c7d27c042decc73b0206d4006dfdb0b89974cb4fdb21b173b2", + "oid": 208450845969, + "crossed": true, + "fee": "2.099358", + "tid": 306310051271881, + "cloid": "0x00000000000000000000001601000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112312.0", + "sz": "0.00011", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.5948", + "dir": "Close Short", + "closedPnl": "0.051238", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.002594", + "tid": 379534740489199, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112312.0", + "sz": "0.00014", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.59469", + "dir": "Close Short", + "closedPnl": "0.065212", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.003301", + "tid": 122811598970211, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112313.0", + "sz": "0.00011", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.59455", + "dir": "Close Short", + "closedPnl": "0.051128", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.002594", + "tid": 958659838590891, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112314.0", + "sz": "0.00011", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.59444", + "dir": "Close Short", + "closedPnl": "0.051018", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.002594", + "tid": 899229585898270, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112315.0", + "sz": "0.00011", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.59433", + "dir": "Close Short", + "closedPnl": "0.050908", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.002594", + "tid": 219687080811942, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112316.0", + "sz": "0.00014", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.59422", + "dir": "Close Short", + "closedPnl": "0.064652", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.003302", + "tid": 676023059410165, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112316.0", + "sz": "0.00011", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.59408", + "dir": "Close Short", + "closedPnl": "0.050798", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.002594", + "tid": 1005000739081857, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112317.0", + "sz": "0.00011", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.59397", + "dir": "Close Short", + "closedPnl": "0.050688", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.002594", + "tid": 142075741548088, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112318.0", + "sz": "0.00011", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.59386", + "dir": "Close Short", + "closedPnl": "0.050578", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.002594", + "tid": 678521076267713, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112320.0", + "sz": "0.00014", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.59375", + "dir": "Close Short", + "closedPnl": "0.064092", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.003302", + "tid": 761399623751191, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112320.0", + "sz": "0.00072", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.59361", + "dir": "Close Short", + "closedPnl": "0.329616", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.016982", + "tid": 501722976993348, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112320.0", + "sz": "0.00011", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.59289", + "dir": "Close Short", + "closedPnl": "0.050358", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.002594", + "tid": 965233705114782, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112320.0", + "sz": "0.041", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.59278", + "dir": "Close Short", + "closedPnl": "18.7698", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.967075", + "tid": 400370091241236, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112321.0", + "sz": "0.00011", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.55178", + "dir": "Close Short", + "closedPnl": "0.050248", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.002594", + "tid": 445260751624433, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112322.0", + "sz": "0.00011", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.55167", + "dir": "Close Short", + "closedPnl": "0.050138", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.002594", + "tid": 610913384789232, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112323.0", + "sz": "0.00011", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.55156", + "dir": "Close Short", + "closedPnl": "0.050028", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.002594", + "tid": 1076058248960641, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112324.0", + "sz": "0.00014", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.55145", + "dir": "Close Short", + "closedPnl": "0.063532", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.003302", + "tid": 898073811015098, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112324.0", + "sz": "0.00011", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.55131", + "dir": "Close Short", + "closedPnl": "0.049918", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.002594", + "tid": 394461841759082, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112325.0", + "sz": "0.00011", + "side": "B", + "time": 1761068328551, + "startPosition": "-323.5512", + "dir": "Close Short", + "closedPnl": "0.049808", + "hash": "0x2f3bd43d6e380c1930b5042decc7580204fb0023093b2aebd3047f902d3be603", + "oid": 208450883207, + "crossed": true, + "fee": "0.002594", + "tid": 911323491456825, + "cloid": "0x00000000000000000000001601000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112328.0", + "sz": "0.00011", + "side": "B", + "time": 1761068332873, + "startPosition": "-323.55109", + "dir": "Close Short", + "closedPnl": "0.049478", + "hash": "0xae5d1fe9ed271803afd6042decc79702084700cf882a36d55225cb3cac2af1ee", + "oid": 208450953614, + "crossed": true, + "fee": "0.002594", + "tid": 812227808401029, + "cloid": "0x00000000000000000000001601000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112328.0", + "sz": "0.0452", + "side": "B", + "time": 1761068332873, + "startPosition": "-323.55098", + "dir": "Close Short", + "closedPnl": "20.33096", + "hash": "0xae5d1fe9ed271803afd6042decc79702084700cf882a36d55225cb3cac2af1ee", + "oid": 208450953614, + "crossed": true, + "fee": "1.066217", + "tid": 91669010876131, + "cloid": "0x00000000000000000000001601000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112338.0", + "sz": "0.00011", + "side": "B", + "time": 1761068334875, + "startPosition": "-323.50578", + "dir": "Close Short", + "closedPnl": "0.048378", + "hash": "0x1e9b4252a0f75ce52014042decc7b402023b00383bfa7bb7c263eda55ffb36cf", + "oid": 208450978934, + "crossed": true, + "fee": "0.002595", + "tid": 808280132664187, + "cloid": "0x00000000000000000000001601000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112338.0", + "sz": "0.00011", + "side": "B", + "time": 1761068334875, + "startPosition": "-323.50567", + "dir": "Close Short", + "closedPnl": "0.048378", + "hash": "0x1e9b4252a0f75ce52014042decc7b402023b00383bfa7bb7c263eda55ffb36cf", + "oid": 208450978934, + "crossed": true, + "fee": "0.002595", + "tid": 730138845136812, + "cloid": "0x00000000000000000000001601000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112338.0", + "sz": "0.08877", + "side": "B", + "time": 1761068334875, + "startPosition": "-323.50556", + "dir": "Close Short", + "closedPnl": "39.041046", + "hash": "0x1e9b4252a0f75ce52014042decc7b402023b00383bfa7bb7c263eda55ffb36cf", + "oid": 208450978934, + "crossed": true, + "fee": "2.094171", + "tid": 535641834207852, + "cloid": "0x00000000000000000000001601000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112323.0", + "sz": "0.08899", + "side": "B", + "time": 1761068338416, + "startPosition": "-323.41679", + "dir": "Close Short", + "closedPnl": "40.472652", + "hash": "0x83e248cb050000df855c042decc7dd02049700b0a0031fb127aaf41dc403daca", + "oid": 208451022960, + "crossed": true, + "fee": "2.09908", + "tid": 691179252263691, + "cloid": "0x00000000000000000000001601000177", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112303.0", + "sz": "0.08901", + "side": "B", + "time": 1761068341524, + "startPosition": "-323.3278", + "dir": "Close Short", + "closedPnl": "42.261948", + "hash": "0xe803c92152ed6567e97d042decc8000201360006ede084398bcc747411e13f52", + "oid": 208451075549, + "crossed": true, + "fee": "2.099178", + "tid": 806015672782548, + "cloid": "0x00000000000000000000001601000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112297.0", + "sz": "0.08904", + "side": "B", + "time": 1761068345683, + "startPosition": "-323.23879", + "dir": "Close Short", + "closedPnl": "42.810432", + "hash": "0xef48659509a87143f0c2042decc8360203f4007aa4ab9015931110e7c8ac4b2e", + "oid": 208451140978, + "crossed": false, + "fee": "0.279969", + "tid": 557094724981701, + "cloid": "0x00000000000000000000001601000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112290.0", + "sz": "0.08904", + "side": "B", + "time": 1761068347228, + "startPosition": "-323.14975", + "dir": "Close Short", + "closedPnl": "43.433712", + "hash": "0x371fb536812070e93899042decc84b020503001c1c238fbbdae8608940244ad3", + "oid": 208451172981, + "crossed": true, + "fee": "2.099643", + "tid": 283033807198750, + "cloid": "0x00000000000000000000001601000180", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112284.0", + "sz": "0.08904", + "side": "B", + "time": 1761068348649, + "startPosition": "-323.06071", + "dir": "Close Short", + "closedPnl": "43.967952", + "hash": "0x956e407d629a659496e7042decc85c020a1d0062fd9d84663936ebd0219e3f7f", + "oid": 208451198233, + "crossed": true, + "fee": "2.099531", + "tid": 672309835526780, + "cloid": "0x00000000000000000000001601000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112298.0", + "sz": "0.02513", + "side": "B", + "time": 1761068351074, + "startPosition": "-322.97167", + "dir": "Close Short", + "closedPnl": "12.057374", + "hash": "0xe1ba5d02ff4cb62fe334042decc87802059400e89a4fd50185830855be40901a", + "oid": 208451226183, + "crossed": false, + "fee": "0.079017", + "tid": 495225896825429, + "cloid": "0x00000000000000000000001601000182", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112313.0", + "sz": "0.06391", + "side": "B", + "time": 1761068353865, + "startPosition": "-322.94654", + "dir": "Close Short", + "closedPnl": "29.705368", + "hash": "0x44972c1ff6ecbc1a4610042decc89a0204f4000591efdaece85fd772b5e09604", + "oid": 208451297004, + "crossed": true, + "fee": "1.507364", + "tid": 703469456105592, + "cloid": "0x00000000000000000000001601000183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112303.0", + "sz": "0.00011", + "side": "B", + "time": 1761068356534, + "startPosition": "-322.88263", + "dir": "Close Short", + "closedPnl": "0.052228", + "hash": "0x08de9bce5e1763540a58042decc8ba02043f00b3f91a8226aca747211d1b3d3e", + "oid": 208451348103, + "crossed": true, + "fee": "0.002594", + "tid": 591415693515648, + "cloid": "0x00000000000000000000001601000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112304.0", + "sz": "0.00011", + "side": "B", + "time": 1761068356534, + "startPosition": "-322.88252", + "dir": "Close Short", + "closedPnl": "0.052118", + "hash": "0x08de9bce5e1763540a58042decc8ba02043f00b3f91a8226aca747211d1b3d3e", + "oid": 208451348103, + "crossed": true, + "fee": "0.002594", + "tid": 976490043905243, + "cloid": "0x00000000000000000000001601000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112305.0", + "sz": "0.00011", + "side": "B", + "time": 1761068356534, + "startPosition": "-322.88241", + "dir": "Close Short", + "closedPnl": "0.052008", + "hash": "0x08de9bce5e1763540a58042decc8ba02043f00b3f91a8226aca747211d1b3d3e", + "oid": 208451348103, + "crossed": true, + "fee": "0.002594", + "tid": 1037075553722627, + "cloid": "0x00000000000000000000001601000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112306.0", + "sz": "0.00011", + "side": "B", + "time": 1761068356534, + "startPosition": "-322.8823", + "dir": "Close Short", + "closedPnl": "0.051898", + "hash": "0x08de9bce5e1763540a58042decc8ba02043f00b3f91a8226aca747211d1b3d3e", + "oid": 208451348103, + "crossed": true, + "fee": "0.002594", + "tid": 469699705208707, + "cloid": "0x00000000000000000000001601000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112307.0", + "sz": "0.00011", + "side": "B", + "time": 1761068356534, + "startPosition": "-322.88219", + "dir": "Close Short", + "closedPnl": "0.051788", + "hash": "0x08de9bce5e1763540a58042decc8ba02043f00b3f91a8226aca747211d1b3d3e", + "oid": 208451348103, + "crossed": true, + "fee": "0.002594", + "tid": 311459575717113, + "cloid": "0x00000000000000000000001601000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112308.0", + "sz": "0.00011", + "side": "B", + "time": 1761068356534, + "startPosition": "-322.88208", + "dir": "Close Short", + "closedPnl": "0.051678", + "hash": "0x08de9bce5e1763540a58042decc8ba02043f00b3f91a8226aca747211d1b3d3e", + "oid": 208451348103, + "crossed": true, + "fee": "0.002594", + "tid": 526914201234230, + "cloid": "0x00000000000000000000001601000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112309.0", + "sz": "0.00011", + "side": "B", + "time": 1761068356534, + "startPosition": "-322.88197", + "dir": "Close Short", + "closedPnl": "0.051568", + "hash": "0x08de9bce5e1763540a58042decc8ba02043f00b3f91a8226aca747211d1b3d3e", + "oid": 208451348103, + "crossed": true, + "fee": "0.002594", + "tid": 214147429671228, + "cloid": "0x00000000000000000000001601000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112310.0", + "sz": "0.00011", + "side": "B", + "time": 1761068356534, + "startPosition": "-322.88186", + "dir": "Close Short", + "closedPnl": "0.051458", + "hash": "0x08de9bce5e1763540a58042decc8ba02043f00b3f91a8226aca747211d1b3d3e", + "oid": 208451348103, + "crossed": true, + "fee": "0.002594", + "tid": 1008637805097452, + "cloid": "0x00000000000000000000001601000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112310.0", + "sz": "0.00367", + "side": "B", + "time": 1761068357024, + "startPosition": "-322.88175", + "dir": "Close Short", + "closedPnl": "1.716826", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 208451348103, + "crossed": false, + "fee": "0.01154", + "tid": 288991544139217, + "cloid": "0x00000000000000000000001601000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112340.0", + "sz": "0.08448", + "side": "B", + "time": 1761068359084, + "startPosition": "-322.87808", + "dir": "Close Short", + "closedPnl": "36.985344", + "hash": "0xcc09685b6d2948dccd83042decc8db0202f30041082c67ae6fd213ae2c2d22c7", + "oid": 208451405462, + "crossed": true, + "fee": "1.993001", + "tid": 999942165793981, + "cloid": "0x00000000000000000000001601000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112349.0", + "sz": "0.08899", + "side": "B", + "time": 1761068363417, + "startPosition": "-322.7936", + "dir": "Close Short", + "closedPnl": "38.158912", + "hash": "0xa454f7fb974eb7c6a5ce042decc91902062f00e13241d698481da34e564291b1", + "oid": 208451471095, + "crossed": true, + "fee": "2.099566", + "tid": 63370073764517, + "cloid": "0x00000000000000000000001601000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112368.0", + "sz": "0.08897", + "side": "B", + "time": 1761068365423, + "startPosition": "-322.70461", + "dir": "Close Short", + "closedPnl": "36.459906", + "hash": "0x4f24483afad810ba509e042decc935020244002095db2f8cf2ecf38db9dbeaa4", + "oid": 208451517563, + "crossed": true, + "fee": "2.09945", + "tid": 743451684488359, + "cloid": "0x00000000000000000000001601000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112361.0", + "sz": "0.07505", + "side": "B", + "time": 1761068366992, + "startPosition": "-322.61564", + "dir": "Close Short", + "closedPnl": "31.28084", + "hash": "0xdcf390401ab32a6ede6d042decc947020f180025b5b6494080bc3b92d9b70459", + "oid": 208451548445, + "crossed": true, + "fee": "1.770865", + "tid": 280621616790828, + "cloid": "0x00000000000000000000001601000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112361.0", + "sz": "0.01392", + "side": "B", + "time": 1761068366992, + "startPosition": "-322.54059", + "dir": "Close Short", + "closedPnl": "5.801856", + "hash": "0xdcf390401ab32a6ede6d042decc947020f180025b5b6494080bc3b92d9b70459", + "oid": 208451548445, + "crossed": true, + "fee": "0.328453", + "tid": 3185209713589, + "cloid": "0x00000000000000000000001601000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112360.0", + "sz": "0.04258", + "side": "B", + "time": 1761068369334, + "startPosition": "-322.52667", + "dir": "Close Short", + "closedPnl": "17.789924", + "hash": "0x9197c6f2f64075dc9311042decc96702079900d8914394ae35607245b5444fc7", + "oid": 208451590514, + "crossed": true, + "fee": "1.0047", + "tid": 356169069433319, + "cloid": "0x00000000000000000000001601000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112360.0", + "sz": "0.04641", + "side": "B", + "time": 1761068369334, + "startPosition": "-322.48409", + "dir": "Close Short", + "closedPnl": "19.390098", + "hash": "0x9197c6f2f64075dc9311042decc96702079900d8914394ae35607245b5444fc7", + "oid": 208451590514, + "crossed": true, + "fee": "1.095071", + "tid": 1018491501303079, + "cloid": "0x00000000000000000000001601000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112356.0", + "sz": "0.08899", + "side": "B", + "time": 1761068373167, + "startPosition": "-322.43768", + "dir": "Close Short", + "closedPnl": "37.535982", + "hash": "0x819dcdcdf8829b228317042decc99702026d00b39385b9f425667920b786750d", + "oid": 208451634517, + "crossed": true, + "fee": "2.099697", + "tid": 253904272388472, + "cloid": "0x00000000000000000000001601000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112345.0", + "sz": "0.08898", + "side": "B", + "time": 1761068380012, + "startPosition": "-322.34869", + "dir": "Close Short", + "closedPnl": "38.510544", + "hash": "0x2466f98f03c7932525e0042decc9f40204b000749ecab1f7c82fa4e1c2cb6d0f", + "oid": 208451715305, + "crossed": true, + "fee": "2.099256", + "tid": 2036124336948, + "cloid": "0x00000000000000000000001601000191", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112355.0", + "sz": "0.08899", + "side": "B", + "time": 1761068383523, + "startPosition": "-322.25971", + "dir": "Close Short", + "closedPnl": "37.624972", + "hash": "0x0d7ebc135a14b1fe0ef8042decca1e02140b00f8f517d0d0b147676619188be8", + "oid": 208451757465, + "crossed": false, + "fee": "0.279957", + "tid": 324839290190082, + "cloid": "0x00000000000000000000001601000192", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112309.0", + "sz": "0.04262", + "side": "B", + "time": 1761068385813, + "startPosition": "-322.17072", + "dir": "Close Short", + "closedPnl": "19.980256", + "hash": "0x217c5b2cf31fb84622f6042decca400207f100128e12d718c545067fb2139230", + "oid": 208451836447, + "crossed": true, + "fee": "1.005188", + "tid": 211682345529588, + "cloid": "0x00000000000000000000001601000193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112309.0", + "sz": "0.04638", + "side": "B", + "time": 1761068385813, + "startPosition": "-322.1281", + "dir": "Close Short", + "closedPnl": "21.742944", + "hash": "0x217c5b2cf31fb84622f6042decca400207f100128e12d718c545067fb2139230", + "oid": 208451836447, + "crossed": true, + "fee": "1.093867", + "tid": 249930849625520, + "cloid": "0x00000000000000000000001601000193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112305.0", + "sz": "0.08902", + "side": "B", + "time": 1761068387058, + "startPosition": "-322.08172", + "dir": "Close Short", + "closedPnl": "42.088656", + "hash": "0x5e69b0603fe656605fe3042decca4e0204800045dae9753202325bb2feea304b", + "oid": 208451853969, + "crossed": true, + "fee": "2.099452", + "tid": 747969104578032, + "cloid": "0x00000000000000000000001601000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112310.0", + "sz": "0.01637", + "side": "B", + "time": 1761068389736, + "startPosition": "-321.9927", + "dir": "Close Short", + "closedPnl": "7.657886", + "hash": "0x8905ce7c645341b18a7f042decca6e020abf0061ff5660832cce79cf23571b9c", + "oid": 208451901849, + "crossed": true, + "fee": "0.386088", + "tid": 1019854054647731, + "cloid": "0x00000000000000000000001601000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112310.0", + "sz": "0.07265", + "side": "B", + "time": 1761068389736, + "startPosition": "-321.97633", + "dir": "Close Short", + "closedPnl": "33.98567", + "hash": "0x8905ce7c645341b18a7f042decca6e020abf0061ff5660832cce79cf23571b9c", + "oid": 208451901849, + "crossed": true, + "fee": "1.713457", + "tid": 257642859198038, + "cloid": "0x00000000000000000000001601000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112354.0", + "sz": "0.08903", + "side": "B", + "time": 1761068396433, + "startPosition": "-321.90368", + "dir": "Close Short", + "closedPnl": "37.730914", + "hash": "0x79bf8cf0622657c37b39042deccabf02064f00d5fd2976951d883843212a31ae", + "oid": 208452030892, + "crossed": true, + "fee": "2.100604", + "tid": 971154601280726, + "cloid": "0x00000000000000000000001601000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112332.0", + "sz": "0.02232", + "side": "B", + "time": 1761068398748, + "startPosition": "-321.81465", + "dir": "Close Short", + "closedPnl": "9.950256", + "hash": "0x650f8570eef4b32b6689042deccadc020453005689f7d1fd08d830c3adf88d16", + "oid": 208452058778, + "crossed": true, + "fee": "0.526522", + "tid": 84960029121936, + "cloid": "0x00000000000000000000001601000198", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112332.0", + "sz": "0.0627", + "side": "B", + "time": 1761068398748, + "startPosition": "-321.79233", + "dir": "Close Short", + "closedPnl": "27.95166", + "hash": "0x650f8570eef4b32b6689042deccadc020453005689f7d1fd08d830c3adf88d16", + "oid": 208452058778, + "crossed": true, + "fee": "1.479075", + "tid": 741053927202551, + "cloid": "0x00000000000000000000001601000198", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112332.0", + "sz": "0.00397", + "side": "B", + "time": 1761068398748, + "startPosition": "-321.72963", + "dir": "Close Short", + "closedPnl": "1.769826", + "hash": "0x650f8570eef4b32b6689042deccadc020453005689f7d1fd08d830c3adf88d16", + "oid": 208452058778, + "crossed": true, + "fee": "0.093651", + "tid": 707229878644914, + "cloid": "0x00000000000000000000001601000198", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112345.0", + "sz": "0.02309", + "side": "B", + "time": 1761068402118, + "startPosition": "-321.72566", + "dir": "Close Short", + "closedPnl": "9.993352", + "hash": "0x7fb321637a32728f812c042deccb07020710004915359161237bccb639364c7a", + "oid": 208452119888, + "crossed": true, + "fee": "0.544749", + "tid": 990432622484360, + "cloid": "0x00000000000000000000001601000199", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112345.0", + "sz": "0.06589", + "side": "B", + "time": 1761068402118, + "startPosition": "-321.70257", + "dir": "Close Short", + "closedPnl": "28.517192", + "hash": "0x7fb321637a32728f812c042deccb07020710004915359161237bccb639364c7a", + "oid": 208452119888, + "crossed": true, + "fee": "1.554506", + "tid": 1118323546345296, + "cloid": "0x00000000000000000000001601000199", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112331.0", + "sz": "0.087", + "side": "B", + "time": 1761068404133, + "startPosition": "-321.63668", + "dir": "Close Short", + "closedPnl": "38.8716", + "hash": "0xa2cb7ed3106a9fa2a445042deccb20020b2e00b8ab6dbe7446942a25cf6e798d", + "oid": 208452149417, + "crossed": true, + "fee": "2.052287", + "tid": 210235715344988, + "cloid": "0x00000000000000000000001601000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112331.0", + "sz": "0.00198", + "side": "B", + "time": 1761068404133, + "startPosition": "-321.54968", + "dir": "Close Short", + "closedPnl": "0.884664", + "hash": "0xa2cb7ed3106a9fa2a445042deccb20020b2e00b8ab6dbe7446942a25cf6e798d", + "oid": 208452149417, + "crossed": true, + "fee": "0.046707", + "tid": 286404560995519, + "cloid": "0x00000000000000000000001601000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112347.0", + "sz": "0.00011", + "side": "B", + "time": 1761068406575, + "startPosition": "-321.5477", + "dir": "Close Short", + "closedPnl": "0.047388", + "hash": "0x621079f9b2a22a9e638a042deccb3f02161700df4da5497005d9254c71a60489", + "oid": 208452209353, + "crossed": true, + "fee": "0.002595", + "tid": 532676353327899, + "cloid": "0x00000000000000000000001601000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112347.0", + "sz": "0.00011", + "side": "B", + "time": 1761068406575, + "startPosition": "-321.54759", + "dir": "Close Short", + "closedPnl": "0.047388", + "hash": "0x621079f9b2a22a9e638a042deccb3f02161700df4da5497005d9254c71a60489", + "oid": 208452209353, + "crossed": true, + "fee": "0.002595", + "tid": 650997181278522, + "cloid": "0x00000000000000000000001601000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112348.0", + "sz": "0.00011", + "side": "B", + "time": 1761068406575, + "startPosition": "-321.54748", + "dir": "Close Short", + "closedPnl": "0.047278", + "hash": "0x621079f9b2a22a9e638a042deccb3f02161700df4da5497005d9254c71a60489", + "oid": 208452209353, + "crossed": true, + "fee": "0.002595", + "tid": 693284182403600, + "cloid": "0x00000000000000000000001601000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112348.0", + "sz": "0.00011", + "side": "B", + "time": 1761068406575, + "startPosition": "-321.54737", + "dir": "Close Short", + "closedPnl": "0.047278", + "hash": "0x621079f9b2a22a9e638a042deccb3f02161700df4da5497005d9254c71a60489", + "oid": 208452209353, + "crossed": true, + "fee": "0.002595", + "tid": 175782106721199, + "cloid": "0x00000000000000000000001601000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112349.0", + "sz": "0.00011", + "side": "B", + "time": 1761068406575, + "startPosition": "-321.54726", + "dir": "Close Short", + "closedPnl": "0.047168", + "hash": "0x621079f9b2a22a9e638a042deccb3f02161700df4da5497005d9254c71a60489", + "oid": 208452209353, + "crossed": true, + "fee": "0.002595", + "tid": 807545275357642, + "cloid": "0x00000000000000000000001601000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112349.0", + "sz": "0.00011", + "side": "B", + "time": 1761068406575, + "startPosition": "-321.54715", + "dir": "Close Short", + "closedPnl": "0.047168", + "hash": "0x621079f9b2a22a9e638a042deccb3f02161700df4da5497005d9254c71a60489", + "oid": 208452209353, + "crossed": true, + "fee": "0.002595", + "tid": 424600480011137, + "cloid": "0x00000000000000000000001601000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112350.0", + "sz": "0.00011", + "side": "B", + "time": 1761068406575, + "startPosition": "-321.54704", + "dir": "Close Short", + "closedPnl": "0.047058", + "hash": "0x621079f9b2a22a9e638a042deccb3f02161700df4da5497005d9254c71a60489", + "oid": 208452209353, + "crossed": true, + "fee": "0.002595", + "tid": 467047532449309, + "cloid": "0x00000000000000000000001601000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112350.0", + "sz": "0.00011", + "side": "B", + "time": 1761068406575, + "startPosition": "-321.54693", + "dir": "Close Short", + "closedPnl": "0.047058", + "hash": "0x621079f9b2a22a9e638a042deccb3f02161700df4da5497005d9254c71a60489", + "oid": 208452209353, + "crossed": true, + "fee": "0.002595", + "tid": 494577738074966, + "cloid": "0x00000000000000000000001601000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112350.0", + "sz": "0.00014", + "side": "B", + "time": 1761068406575, + "startPosition": "-321.54682", + "dir": "Close Short", + "closedPnl": "0.059892", + "hash": "0x621079f9b2a22a9e638a042deccb3f02161700df4da5497005d9254c71a60489", + "oid": 208452209353, + "crossed": true, + "fee": "0.003303", + "tid": 57688218773970, + "cloid": "0x00000000000000000000001601000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112351.0", + "sz": "0.00011", + "side": "B", + "time": 1761068406575, + "startPosition": "-321.54668", + "dir": "Close Short", + "closedPnl": "0.046948", + "hash": "0x621079f9b2a22a9e638a042deccb3f02161700df4da5497005d9254c71a60489", + "oid": 208452209353, + "crossed": true, + "fee": "0.002595", + "tid": 149623183771038, + "cloid": "0x00000000000000000000001601000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112351.0", + "sz": "0.00011", + "side": "B", + "time": 1761068406575, + "startPosition": "-321.54657", + "dir": "Close Short", + "closedPnl": "0.046948", + "hash": "0x621079f9b2a22a9e638a042deccb3f02161700df4da5497005d9254c71a60489", + "oid": 208452209353, + "crossed": true, + "fee": "0.002595", + "tid": 88196579456168, + "cloid": "0x00000000000000000000001601000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112352.0", + "sz": "0.00011", + "side": "B", + "time": 1761068406575, + "startPosition": "-321.54646", + "dir": "Close Short", + "closedPnl": "0.046838", + "hash": "0x621079f9b2a22a9e638a042deccb3f02161700df4da5497005d9254c71a60489", + "oid": 208452209353, + "crossed": true, + "fee": "0.002595", + "tid": 328890620188342, + "cloid": "0x00000000000000000000001601000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112352.0", + "sz": "0.00011", + "side": "B", + "time": 1761068406575, + "startPosition": "-321.54635", + "dir": "Close Short", + "closedPnl": "0.046838", + "hash": "0x621079f9b2a22a9e638a042deccb3f02161700df4da5497005d9254c71a60489", + "oid": 208452209353, + "crossed": true, + "fee": "0.002595", + "tid": 49311005642085, + "cloid": "0x00000000000000000000001601000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112353.0", + "sz": "0.00011", + "side": "B", + "time": 1761068406575, + "startPosition": "-321.54624", + "dir": "Close Short", + "closedPnl": "0.046728", + "hash": "0x621079f9b2a22a9e638a042deccb3f02161700df4da5497005d9254c71a60489", + "oid": 208452209353, + "crossed": true, + "fee": "0.002595", + "tid": 899857702240789, + "cloid": "0x00000000000000000000001601000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112353.0", + "sz": "0.00011", + "side": "B", + "time": 1761068406575, + "startPosition": "-321.54613", + "dir": "Close Short", + "closedPnl": "0.046728", + "hash": "0x621079f9b2a22a9e638a042deccb3f02161700df4da5497005d9254c71a60489", + "oid": 208452209353, + "crossed": true, + "fee": "0.002595", + "tid": 191910080609622, + "cloid": "0x00000000000000000000001601000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112354.0", + "sz": "0.00011", + "side": "B", + "time": 1761068406575, + "startPosition": "-321.54602", + "dir": "Close Short", + "closedPnl": "0.046618", + "hash": "0x621079f9b2a22a9e638a042deccb3f02161700df4da5497005d9254c71a60489", + "oid": 208452209353, + "crossed": true, + "fee": "0.002595", + "tid": 776149245241552, + "cloid": "0x00000000000000000000001601000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112354.0", + "sz": "0.00014", + "side": "B", + "time": 1761068406575, + "startPosition": "-321.54591", + "dir": "Close Short", + "closedPnl": "0.059332", + "hash": "0x621079f9b2a22a9e638a042deccb3f02161700df4da5497005d9254c71a60489", + "oid": 208452209353, + "crossed": true, + "fee": "0.003303", + "tid": 473363386655890, + "cloid": "0x00000000000000000000001601000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112354.0", + "sz": "0.00179", + "side": "B", + "time": 1761068407037, + "startPosition": "-321.54577", + "dir": "Close Short", + "closedPnl": "0.758602", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 208452209353, + "crossed": false, + "fee": "0.005631", + "tid": 261692973477091, + "cloid": "0x00000000000000000000001601000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112389.0", + "sz": "0.0089", + "side": "B", + "time": 1761068410909, + "startPosition": "-321.54398", + "dir": "Close Short", + "closedPnl": "3.46032", + "hash": "0x10a1655401169ad3121b042deccb7102081c00399c19b9a5b46a10a6c01a74bd", + "oid": 208452289661, + "crossed": true, + "fee": "0.210055", + "tid": 1000870873189851, + "cloid": "0x00000000000000000000001601000202", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112389.0", + "sz": "0.07638", + "side": "B", + "time": 1761068410909, + "startPosition": "-321.53508", + "dir": "Close Short", + "closedPnl": "29.696544", + "hash": "0x10a1655401169ad3121b042deccb7102081c00399c19b9a5b46a10a6c01a74bd", + "oid": 208452289661, + "crossed": true, + "fee": "1.802697", + "tid": 386237212082335, + "cloid": "0x00000000000000000000001601000202", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112410.0", + "sz": "0.03083", + "side": "B", + "time": 1761068415911, + "startPosition": "-321.4587", + "dir": "Close Short", + "closedPnl": "11.339274", + "hash": "0xab931fffa48f256aad0c042deccbad020a3f00e53f82443c4f5bcb526382ff55", + "oid": 208452356128, + "crossed": true, + "fee": "0.727776", + "tid": 735927915685222, + "cloid": "0x00000000000000000000001601000203", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112412.0", + "sz": "0.05811", + "side": "B", + "time": 1761068415911, + "startPosition": "-321.42787", + "dir": "Close Short", + "closedPnl": "21.256638", + "hash": "0xab931fffa48f256aad0c042deccbad020a3f00e53f82443c4f5bcb526382ff55", + "oid": 208452356128, + "crossed": true, + "fee": "1.371774", + "tid": 397895179575402, + "cloid": "0x00000000000000000000001601000203", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112428.0", + "sz": "0.08892", + "side": "B", + "time": 1761068418986, + "startPosition": "-321.36976", + "dir": "Close Short", + "closedPnl": "31.104216", + "hash": "0xcb973adef0e8dcc7cd10042deccbd502062d00c48bebfb996f5fe631afecb6b2", + "oid": 208452407536, + "crossed": true, + "fee": "2.09939", + "tid": 958087597416248, + "cloid": "0x00000000000000000000001601000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112414.0", + "sz": "0.08894", + "side": "B", + "time": 1761068420205, + "startPosition": "-321.28084", + "dir": "Close Short", + "closedPnl": "32.356372", + "hash": "0x32bcf0fb93693d1a3436042deccbe602048000e12e6c5becd6859c4e526d1704", + "oid": 208452423912, + "crossed": true, + "fee": "2.099601", + "tid": 184421235762596, + "cloid": "0x00000000000000000000001601000205", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112436.0", + "sz": "0.08893", + "side": "B", + "time": 1761068422279, + "startPosition": "-321.1919", + "dir": "Close Short", + "closedPnl": "30.396274", + "hash": "0x9a69ae11da8beac09be3042deccc000219c000f7758f09923e325964998fc4ab", + "oid": 208452454801, + "crossed": true, + "fee": "2.099776", + "tid": 113154441273547, + "cloid": "0x00000000000000000000001601000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112466.0", + "sz": "0.07924", + "side": "B", + "time": 1761068424314, + "startPosition": "-321.10297", + "dir": "Close Short", + "closedPnl": "24.707032", + "hash": "0x1a82141193895b741bfb042deccc17020b1d00f72e8c7a46be4abf64528d355e", + "oid": 208452508558, + "crossed": true, + "fee": "1.871479", + "tid": 32623894391422, + "cloid": "0x00000000000000000000001601000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112470.0", + "sz": "0.00014", + "side": "B", + "time": 1761068424314, + "startPosition": "-321.02373", + "dir": "Close Short", + "closedPnl": "0.043092", + "hash": "0x1a82141193895b741bfb042deccc17020b1d00f72e8c7a46be4abf64528d355e", + "oid": 208452508558, + "crossed": true, + "fee": "0.003306", + "tid": 68867772035258, + "cloid": "0x00000000000000000000001601000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112474.0", + "sz": "0.00014", + "side": "B", + "time": 1761068424314, + "startPosition": "-321.02359", + "dir": "Close Short", + "closedPnl": "0.042532", + "hash": "0x1a82141193895b741bfb042deccc17020b1d00f72e8c7a46be4abf64528d355e", + "oid": 208452508558, + "crossed": true, + "fee": "0.003306", + "tid": 1084534333658889, + "cloid": "0x00000000000000000000001601000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112474.0", + "sz": "0.00937", + "side": "B", + "time": 1761068424314, + "startPosition": "-321.02345", + "dir": "Close Short", + "closedPnl": "2.846606", + "hash": "0x1a82141193895b741bfb042deccc17020b1d00f72e8c7a46be4abf64528d355e", + "oid": 208452508558, + "crossed": true, + "fee": "0.221315", + "tid": 1291453348421, + "cloid": "0x00000000000000000000001601000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112478.0", + "sz": "0.0218", + "side": "B", + "time": 1761068426708, + "startPosition": "-321.01408", + "dir": "Close Short", + "closedPnl": "6.53564", + "hash": "0x6c20185de43ec7646d99042deccc380202fb00437f31e6360fe8c3b0a332a14f", + "oid": 208452549948, + "crossed": true, + "fee": "0.514924", + "tid": 244618712592949, + "cloid": "0x00000000000000000000001601000208", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112478.0", + "sz": "0.06708", + "side": "B", + "time": 1761068426708, + "startPosition": "-320.99228", + "dir": "Close Short", + "closedPnl": "20.110584", + "hash": "0x6c20185de43ec7646d99042deccc380202fb00437f31e6360fe8c3b0a332a14f", + "oid": 208452549948, + "crossed": true, + "fee": "1.584455", + "tid": 622426203959831, + "cloid": "0x00000000000000000000001601000208", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112479.0", + "sz": "0.08886", + "side": "B", + "time": 1761068429128, + "startPosition": "-320.9252", + "dir": "Close Short", + "closedPnl": "26.551368", + "hash": "0x458b7b5251f528624705042deccc5b020c480037ecf84734e95426a510f9024c", + "oid": 208452596357, + "crossed": true, + "fee": "2.098925", + "tid": 962748918587756, + "cloid": "0x00000000000000000000001601000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112479.0", + "sz": "0.08886", + "side": "B", + "time": 1761068432414, + "startPosition": "-320.83634", + "dir": "Close Short", + "closedPnl": "26.551368", + "hash": "0xd6dd5d5ad1292aa1d857042deccc820204b000406c2c49737aa608ad902d048c", + "oid": 208452635589, + "crossed": true, + "fee": "2.098925", + "tid": 800084490702205, + "cloid": "0x00000000000000000000001601000210", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112466.0", + "sz": "0.08889", + "side": "B", + "time": 1761068435232, + "startPosition": "-320.74748", + "dir": "Close Short", + "closedPnl": "27.715902", + "hash": "0xad7209329890a757aeeb042decccaa02067700183393c629513ab48557948142", + "oid": 208452683013, + "crossed": true, + "fee": "2.099391", + "tid": 609883801061196, + "cloid": "0x00000000000000000000001601000211", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112461.0", + "sz": "0.08889", + "side": "B", + "time": 1761068436765, + "startPosition": "-320.65859", + "dir": "Close Short", + "closedPnl": "28.160352", + "hash": "0xa26cff0d48e9648fa3e6042decccbe02036000f2e3ec83614635aa6007ed3e7a", + "oid": 208452708166, + "crossed": true, + "fee": "2.099298", + "tid": 125463412684192, + "cloid": "0x00000000000000000000001601000212", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112439.0", + "sz": "0.0889", + "side": "B", + "time": 1761068439373, + "startPosition": "-320.5697", + "dir": "Close Short", + "closedPnl": "30.11932", + "hash": "0x55751cc3cb6ba93356ee042decccdd0206ed00a9666ec805f93dc8168a6f831d", + "oid": 208452752129, + "crossed": true, + "fee": "2.099123", + "tid": 21793820535669, + "cloid": "0x00000000000000000000001601000213", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112439.0", + "sz": "0.0836", + "side": "B", + "time": 1761068442934, + "startPosition": "-320.4808", + "dir": "Close Short", + "closedPnl": "28.32368", + "hash": "0x26c129330b34deca283a042deccd070208a00018a637fd9cca89d485ca38b8b4", + "oid": 208452805162, + "crossed": true, + "fee": "1.973979", + "tid": 76572017308382, + "cloid": "0x00000000000000000000001601000214", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112439.0", + "sz": "0.00019", + "side": "B", + "time": 1761068442934, + "startPosition": "-320.3972", + "dir": "Close Short", + "closedPnl": "0.064372", + "hash": "0x26c129330b34deca283a042deccd070208a00018a637fd9cca89d485ca38b8b4", + "oid": 208452805162, + "crossed": true, + "fee": "0.004486", + "tid": 428780079519308, + "cloid": "0x00000000000000000000001601000214", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112440.0", + "sz": "0.00512", + "side": "B", + "time": 1761068442934, + "startPosition": "-320.39701", + "dir": "Close Short", + "closedPnl": "1.729536", + "hash": "0x26c129330b34deca283a042deccd070208a00018a637fd9cca89d485ca38b8b4", + "oid": 208452805162, + "crossed": true, + "fee": "0.120895", + "tid": 311049210651879, + "cloid": "0x00000000000000000000001601000214", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112447.0", + "sz": "0.08891", + "side": "B", + "time": 1761068447394, + "startPosition": "-320.39189", + "dir": "Close Short", + "closedPnl": "29.411428", + "hash": "0x9c3d2baab5bfe7c79db6042deccd400204ab009050b306994005d6fd74b3c1b2", + "oid": 208452878491, + "crossed": true, + "fee": "2.099509", + "tid": 436247838156399, + "cloid": "0x00000000000000000000001601000215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "112440.0", + "sz": "0.08891", + "side": "B", + "time": 1761068449256, + "startPosition": "-320.30298", + "dir": "Close Short", + "closedPnl": "30.033798", + "hash": "0xff9e167981dd00750117042deccd55020794005f1cd01f48a366c1cc40d0da60", + "oid": 208452913625, + "crossed": true, + "fee": "2.099378", + "tid": 1110981867776726, + "cloid": "0x00000000000000000000001601000216", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.87", + "sz": "25.78", + "side": "B", + "time": 1761072016886, + "startPosition": "-10147.42", + "dir": "Close Short", + "closedPnl": "15.537606", + "hash": "0x0b4502ae2124639d0cbe042ded7ca70208370093bc27826faf0dae00e0283d87", + "oid": 208503802309, + "crossed": true, + "fee": "1.049573", + "tid": 298868453503373, + "cloid": "0x00000000000000000000001602000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.87", + "sz": "25.78", + "side": "B", + "time": 1761072018069, + "startPosition": "-10121.64", + "dir": "Close Short", + "closedPnl": "15.537606", + "hash": "0x8d9d952622a56f8f8f17042ded7cb80201fa000bbda88e6131664078e1a9497a", + "oid": 208503811732, + "crossed": true, + "fee": "1.049573", + "tid": 590736850891652, + "cloid": "0x00000000000000000000001602000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.82", + "sz": "25.78", + "side": "B", + "time": 1761072019986, + "startPosition": "-10095.86", + "dir": "Close Short", + "closedPnl": "16.826606", + "hash": "0xb1fa3e71a0c8a4cbb373042ded7cd2020c2a00573bcbc39d55c2e9c45fcc7eb6", + "oid": 208503840794, + "crossed": true, + "fee": "1.049302", + "tid": 315836412590154, + "cloid": "0x00000000000000000000001602000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.8", + "sz": "25.79", + "side": "B", + "time": 1761072021661, + "startPosition": "-10070.08", + "dir": "Close Short", + "closedPnl": "17.348933", + "hash": "0xcea4548cc9bbd926d01e042ded7ce7020d68007264bef7f8726cffdf88bfb311", + "oid": 208503869678, + "crossed": true, + "fee": "1.049601", + "tid": 588545987598611, + "cloid": "0x00000000000000000000001602000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.8", + "sz": "14.15", + "side": "B", + "time": 1761072023407, + "startPosition": "-10044.29", + "dir": "Close Short", + "closedPnl": "9.518705", + "hash": "0x60995b948e039b2f6213042ded7cfc0203cc007a2906ba01046206e74d07751a", + "oid": 208503898133, + "crossed": true, + "fee": "0.575876", + "tid": 260299749634392, + "cloid": "0x00000000000000000000001602000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.81", + "sz": "11.64", + "side": "B", + "time": 1761072023407, + "startPosition": "-10030.14", + "dir": "Close Short", + "closedPnl": "7.713828", + "hash": "0x60995b948e039b2f6213042ded7cfc0203cc007a2906ba01046206e74d07751a", + "oid": 208503898133, + "crossed": true, + "fee": "0.473749", + "tid": 798899174699572, + "cloid": "0x00000000000000000000001602000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.79", + "sz": "25.78", + "side": "B", + "time": 1761072026572, + "startPosition": "-10018.5", + "dir": "Close Short", + "closedPnl": "17.600006", + "hash": "0x94a50a2c27b72eed961e042ded7d280203430011c2ba4dbf386db57ee6bb08d8", + "oid": 208503931789, + "crossed": true, + "fee": "1.04914", + "tid": 542822023117535, + "cloid": "0x00000000000000000000001602000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.83", + "sz": "20.38", + "side": "B", + "time": 1761072028206, + "startPosition": "-9992.72", + "dir": "Close Short", + "closedPnl": "13.098226", + "hash": "0x5a9daad51f057afd5c17042ded7d3d02045700baba0899cffe665627de0954e7", + "oid": 208503960572, + "crossed": true, + "fee": "0.829553", + "tid": 256529171819803, + "cloid": "0x00000000000000000000001602000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.83", + "sz": "5.4", + "side": "B", + "time": 1761072028206, + "startPosition": "-9972.34", + "dir": "Close Short", + "closedPnl": "3.47058", + "hash": "0x5a9daad51f057afd5c17042ded7d3d02045700baba0899cffe665627de0954e7", + "oid": 208503960572, + "crossed": true, + "fee": "0.219803", + "tid": 456187111822549, + "cloid": "0x00000000000000000000001602000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.85", + "sz": "25.78", + "side": "B", + "time": 1761072030977, + "startPosition": "-9966.94", + "dir": "Close Short", + "closedPnl": "16.053206", + "hash": "0x0e352966c83a0c7f0fae042ded7d610205ae004c633d2b51b1fdd4b9873de669", + "oid": 208504001379, + "crossed": true, + "fee": "1.049465", + "tid": 701913011529850, + "cloid": "0x00000000000000000000001602000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.78", + "sz": "25.79", + "side": "B", + "time": 1761072033196, + "startPosition": "-9941.16", + "dir": "Close Short", + "closedPnl": "17.864733", + "hash": "0xb692f6b7b8c65910b80c042ded7d7a0162000e9d53c977e25a5ba20a77ca32fb", + "oid": 208504040564, + "crossed": true, + "fee": "1.049493", + "tid": 129675430715973, + "cloid": "0x00000000000000000000001602000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.75", + "sz": "25.79", + "side": "B", + "time": 1761072035111, + "startPosition": "-9915.37", + "dir": "Close Short", + "closedPnl": "18.638433", + "hash": "0x7fc2bb0ae6bf217c813c042ded7d910202e600f081b2404e238b665da5b2fb67", + "oid": 208504069360, + "crossed": true, + "fee": "1.04933", + "tid": 236769151892762, + "cloid": "0x00000000000000000000001602000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.78", + "sz": "25.79", + "side": "B", + "time": 1761072039067, + "startPosition": "-9889.58", + "dir": "Close Short", + "closedPnl": "17.864733", + "hash": "0xa39d673985911bffa517042ded7dc302048a001f20943ad14766128c4494f5ea", + "oid": 208504114169, + "crossed": true, + "fee": "1.049493", + "tid": 886720419549472, + "cloid": "0x00000000000000000000001602000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.84", + "sz": "12.63", + "side": "B", + "time": 1761072048448, + "startPosition": "-9863.79", + "dir": "Close Short", + "closedPnl": "7.991001", + "hash": "0x345e91ddcc73833635d8042ded7e3a02029500c36776a208d8273d308b775d20", + "oid": 208504205659, + "crossed": true, + "fee": "0.514121", + "tid": 113762972732843, + "cloid": "0x00000000000000000000001602000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.84", + "sz": "13.15", + "side": "B", + "time": 1761072048448, + "startPosition": "-9851.16", + "dir": "Close Short", + "closedPnl": "8.320005", + "hash": "0x345e91ddcc73833635d8042ded7e3a02029500c36776a208d8273d308b775d20", + "oid": 208504205659, + "crossed": true, + "fee": "0.535289", + "tid": 378379678690456, + "cloid": "0x00000000000000000000001602000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.72", + "sz": "25.79", + "side": "B", + "time": 1761072050713, + "startPosition": "-9838.01", + "dir": "Close Short", + "closedPnl": "19.412133", + "hash": "0xa2d1a6fc90d20c83a44b042ded7e580203b500e22bd52b55469a524f4fd5e66e", + "oid": 208504253292, + "crossed": true, + "fee": "1.049168", + "tid": 846453241324210, + "cloid": "0x00000000000000000000001602000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.74", + "sz": "25.8", + "side": "B", + "time": 1761072053830, + "startPosition": "-9812.22", + "dir": "Close Short", + "closedPnl": "18.90366", + "hash": "0x08af59e322216bae0a29042ded7e8202024000c8bd248a80ac780535e1254598", + "oid": 208504292093, + "crossed": true, + "fee": "1.049683", + "tid": 628164337871313, + "cloid": "0x00000000000000000000001602000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.79", + "sz": "0.13", + "side": "B", + "time": 1761072055839, + "startPosition": "-9786.42", + "dir": "Close Short", + "closedPnl": "0.088751", + "hash": "0x9852f7905dd3152c99cc042ded7e9a02043b0075f8d633fe3c1ba2e31cd6ef17", + "oid": 208504334642, + "crossed": true, + "fee": "0.00529", + "tid": 520505679845538, + "cloid": "0x00000000000000000000001602000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.79", + "sz": "25.66", + "side": "B", + "time": 1761072055839, + "startPosition": "-9786.29", + "dir": "Close Short", + "closedPnl": "17.518082", + "hash": "0x9852f7905dd3152c99cc042ded7e9a02043b0075f8d633fe3c1ba2e31cd6ef17", + "oid": 208504334642, + "crossed": true, + "fee": "1.044256", + "tid": 210118591690248, + "cloid": "0x00000000000000000000001602000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.79", + "sz": "25.79", + "side": "B", + "time": 1761072060930, + "startPosition": "-9760.63", + "dir": "Close Short", + "closedPnl": "17.606833", + "hash": "0xb2d25d3767219144b44c042ded7ed902091d001d0224b016569b088a26256b2f", + "oid": 208504396734, + "crossed": true, + "fee": "1.049547", + "tid": 994241123131838, + "cloid": "0x00000000000000000000001602000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.84", + "sz": "25.78", + "side": "B", + "time": 1761072062854, + "startPosition": "-9734.84", + "dir": "Close Short", + "closedPnl": "16.311006", + "hash": "0x3446677003d9f25f35c0042ded7ef002056d00559edd1131d80f12c2c2ddcc49", + "oid": 208504429530, + "crossed": true, + "fee": "1.04941", + "tid": 821677233830175, + "cloid": "0x00000000000000000000001602000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.79", + "sz": "25.14", + "side": "B", + "time": 1761072064447, + "startPosition": "-9709.06", + "dir": "Close Short", + "closedPnl": "17.163078", + "hash": "0xd3c426ea754d5588d53d042ded7f020201c200d01040745a778cd23d34412f73", + "oid": 208504442150, + "crossed": true, + "fee": "1.023094", + "tid": 1033282793103301, + "cloid": "0x00000000000000000000001602000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.79", + "sz": "0.64", + "side": "B", + "time": 1761072064447, + "startPosition": "-9683.92", + "dir": "Close Short", + "closedPnl": "0.436928", + "hash": "0xd3c426ea754d5588d53d042ded7f020201c200d01040745a778cd23d34412f73", + "oid": 208504442150, + "crossed": true, + "fee": "0.026045", + "tid": 426923103254518, + "cloid": "0x00000000000000000000001602000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.85", + "sz": "25.78", + "side": "B", + "time": 1761072065969, + "startPosition": "-9683.28", + "dir": "Close Short", + "closedPnl": "16.053206", + "hash": "0x8eb3a20e01d820e1902d042ded7f150206d400f39cdb3fb3327c4d60c0dbfacc", + "oid": 208504466587, + "crossed": true, + "fee": "1.049465", + "tid": 861615811831993, + "cloid": "0x00000000000000000000001602000019", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.85", + "sz": "25.78", + "side": "B", + "time": 1761072067205, + "startPosition": "-9657.5", + "dir": "Close Short", + "closedPnl": "16.053206", + "hash": "0x5c5d820d35bf42b15dd7042ded7f2402043700f2d0b2618300262d5ff4b31c9c", + "oid": 208504483589, + "crossed": true, + "fee": "1.049465", + "tid": 945814248308878, + "cloid": "0x00000000000000000000001602000020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.85", + "sz": "25.78", + "side": "B", + "time": 1761072068614, + "startPosition": "-9631.72", + "dir": "Close Short", + "closedPnl": "16.053206", + "hash": "0x76568cfb2255735877d0042ded7f3502057c00e0bd58922a1a1f384de1594d43", + "oid": 208504496731, + "crossed": true, + "fee": "1.049465", + "tid": 127879659399566, + "cloid": "0x00000000000000000000001602000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.8", + "sz": "25.78", + "side": "B", + "time": 1761072070817, + "startPosition": "-9605.94", + "dir": "Close Short", + "closedPnl": "17.342206", + "hash": "0x28dfff91808a1fcd2a59042ded7f5202030600771b8d3e9fcca8aae43f8df9b7", + "oid": 208504512924, + "crossed": true, + "fee": "1.049194", + "tid": 432482683467573, + "cloid": "0x00000000000000000000001602000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.78", + "sz": "25.79", + "side": "B", + "time": 1761072072107, + "startPosition": "-9580.16", + "dir": "Close Short", + "closedPnl": "17.864733", + "hash": "0x0dcfc0bc6f7e96850f49042ded7f630206b800a20a71b557b1986c0f2e72706f", + "oid": 208504539149, + "crossed": true, + "fee": "1.049493", + "tid": 81548716816525, + "cloid": "0x00000000000000000000001602000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.78", + "sz": "25.79", + "side": "B", + "time": 1761072074308, + "startPosition": "-9554.37", + "dir": "Close Short", + "closedPnl": "17.864733", + "hash": "0xd77063c49130c765d8ea042ded7f8401cf007baa2c33e6377b390f175034a150", + "oid": 208504561969, + "crossed": true, + "fee": "1.049493", + "tid": 579333644136504, + "cloid": "0x00000000000000000000001602000024", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.79", + "sz": "25.79", + "side": "B", + "time": 1761072076558, + "startPosition": "-9528.58", + "dir": "Close Short", + "closedPnl": "17.606833", + "hash": "0x74b652a03a7544757630042ded7fa30205a80085d5786347187efdf2f9791e60", + "oid": 208504587057, + "crossed": true, + "fee": "1.049547", + "tid": 494413689046803, + "cloid": "0x00000000000000000000001602000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.77", + "sz": "25.78", + "side": "B", + "time": 1761072078713, + "startPosition": "-9502.79", + "dir": "Close Short", + "closedPnl": "18.115606", + "hash": "0x8ca7086433010c688e20042ded7fbf02078d0049ce042b3a306fb3b6f204e653", + "oid": 208504618740, + "crossed": true, + "fee": "1.049032", + "tid": 972192755473930, + "cloid": "0x00000000000000000000001602000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.65", + "sz": "25.8", + "side": "B", + "time": 1761072081112, + "startPosition": "-9477.01", + "dir": "Close Short", + "closedPnl": "21.22566", + "hash": "0x986b31159fe9ec3d99e4042ded7fde0202b000fb3aed0b0f3c33dc685eedc628", + "oid": 208504670286, + "crossed": true, + "fee": "1.049195", + "tid": 518765727805294, + "cloid": "0x00000000000000000000001602000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.71", + "sz": "0.77", + "side": "B", + "time": 1761072082917, + "startPosition": "-9451.21", + "dir": "Close Short", + "closedPnl": "0.587279", + "hash": "0xbaed25aaa7b2426ebc66042ded7ff60204bd009042b561405eb5d0fd66b61c59", + "oid": 208504702437, + "crossed": true, + "fee": "0.031322", + "tid": 656414070496655, + "cloid": "0x00000000000000000000001602000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.71", + "sz": "25.03", + "side": "B", + "time": 1761072082917, + "startPosition": "-9450.44", + "dir": "Close Short", + "closedPnl": "19.090381", + "hash": "0xbaed25aaa7b2426ebc66042ded7ff60204bd009042b561405eb5d0fd66b61c59", + "oid": 208504702437, + "crossed": true, + "fee": "1.018197", + "tid": 711153369334587, + "cloid": "0x00000000000000000000001602000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.71", + "sz": "25.8", + "side": "B", + "time": 1761072084309, + "startPosition": "-9425.41", + "dir": "Close Short", + "closedPnl": "19.67766", + "hash": "0x2cc4bb538193ed732e3e042ded800902046c00391c970c45d08d66a64097c75d", + "oid": 208504718336, + "crossed": true, + "fee": "1.04952", + "tid": 1105697637089549, + "cloid": "0x00000000000000000000001602000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.7", + "sz": "25.8", + "side": "B", + "time": 1761072087154, + "startPosition": "-9399.61", + "dir": "Close Short", + "closedPnl": "19.93566", + "hash": "0xc6963ea4ef954106c80f042ded8030020149008a8a985fd86a5ee9f7ae991af1", + "oid": 208504752070, + "crossed": true, + "fee": "1.049466", + "tid": 217600998615622, + "cloid": "0x00000000000000000000001602000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.68", + "sz": "25.8", + "side": "B", + "time": 1761072089367, + "startPosition": "-9373.81", + "dir": "Close Short", + "closedPnl": "20.45166", + "hash": "0x970a7ef98159b4ac9884042ded804d02017400df1c5cd37e3ad32a4c405d8e97", + "oid": 208504773116, + "crossed": true, + "fee": "1.049358", + "tid": 8591218359301, + "cloid": "0x00000000000000000000001602000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.65", + "sz": "25.8", + "side": "B", + "time": 1761072090878, + "startPosition": "-9348.01", + "dir": "Close Short", + "closedPnl": "21.22566", + "hash": "0xd0827c1de6dd0a39d1fc042ded8063020a9e000381d0290b744b2770a5d0e424", + "oid": 208504804182, + "crossed": true, + "fee": "1.049195", + "tid": 743629964413148, + "cloid": "0x00000000000000000000001602000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.66", + "sz": "12.4", + "side": "B", + "time": 1761072095984, + "startPosition": "-9322.21", + "dir": "Close Short", + "closedPnl": "10.07748", + "hash": "0xf9908ded06d93ba8fb0a042ded809f02027200d2a1dc5a7b9d59393fc5dd1593", + "oid": 208504872065, + "crossed": true, + "fee": "0.50429", + "tid": 715435374802146, + "cloid": "0x00000000000000000000001602000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.66", + "sz": "13.41", + "side": "B", + "time": 1761072095984, + "startPosition": "-9309.81", + "dir": "Close Short", + "closedPnl": "10.898307", + "hash": "0xf9908ded06d93ba8fb0a042ded809f02027200d2a1dc5a7b9d59393fc5dd1593", + "oid": 208504872065, + "crossed": true, + "fee": "0.545365", + "tid": 188302158994677, + "cloid": "0x00000000000000000000001602000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.69", + "sz": "11.9", + "side": "B", + "time": 1761072097821, + "startPosition": "-9296.4", + "dir": "Close Short", + "closedPnl": "9.31413", + "hash": "0x6ae1e94f16f1fbde6c5b042ded80b402039b0034b1f51ab00eaa94a1d5f5d5c9", + "oid": 208504902306, + "crossed": true, + "fee": "0.484031", + "tid": 817910773449541, + "cloid": "0x00000000000000000000001602000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.69", + "sz": "13.9", + "side": "B", + "time": 1761072097821, + "startPosition": "-9284.5", + "dir": "Close Short", + "closedPnl": "10.87953", + "hash": "0x6ae1e94f16f1fbde6c5b042ded80b402039b0034b1f51ab00eaa94a1d5f5d5c9", + "oid": 208504902306, + "crossed": true, + "fee": "0.565381", + "tid": 808777712591697, + "cloid": "0x00000000000000000000001602000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.64", + "sz": "19.71", + "side": "B", + "time": 1761072102047, + "startPosition": "-9270.6", + "dir": "Close Short", + "closedPnl": "16.412517", + "hash": "0xcd4aa9842f4068f0cec4042ded80e60205ee0069ca4387c2711354d6ee4442db", + "oid": 208504948638, + "crossed": true, + "fee": "0.801495", + "tid": 832984934833951, + "cloid": "0x00000000000000000000001602000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.64", + "sz": "6.09", + "side": "B", + "time": 1761072102047, + "startPosition": "-9250.89", + "dir": "Close Short", + "closedPnl": "5.071143", + "hash": "0xcd4aa9842f4068f0cec4042ded80e60205ee0069ca4387c2711354d6ee4442db", + "oid": 208504948638, + "crossed": true, + "fee": "0.247646", + "tid": 636719971525684, + "cloid": "0x00000000000000000000001602000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.73", + "sz": "25.8", + "side": "B", + "time": 1761072103843, + "startPosition": "-9244.8", + "dir": "Close Short", + "closedPnl": "19.16166", + "hash": "0xc21623ea0b74a8c2c38f042ded80fc020abb00cfa677c79465decf3cca7882ad", + "oid": 208504988875, + "crossed": true, + "fee": "1.049629", + "tid": 907272331568311, + "cloid": "0x00000000000000000000001602000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.72", + "sz": "12.0", + "side": "B", + "time": 1761072105991, + "startPosition": "-9219.0", + "dir": "Close Short", + "closedPnl": "9.0324", + "hash": "0x638fbffd591570076509042ded81160204a300e2f4188ed907586b50181949f2", + "oid": 208505015910, + "crossed": true, + "fee": "0.488174", + "tid": 729945979344475, + "cloid": "0x00000000000000000000001602000037", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.73", + "sz": "13.8", + "side": "B", + "time": 1761072105991, + "startPosition": "-9207.0", + "dir": "Close Short", + "closedPnl": "10.24926", + "hash": "0x638fbffd591570076509042ded81160204a300e2f4188ed907586b50181949f2", + "oid": 208505015910, + "crossed": true, + "fee": "0.561429", + "tid": 92542023345042, + "cloid": "0x00000000000000000000001602000037", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.69", + "sz": "25.8", + "side": "B", + "time": 1761072110403, + "startPosition": "-9193.2", + "dir": "Close Short", + "closedPnl": "20.19366", + "hash": "0xc48e2309b1249de7c607042ded815002022a00ef4c27bcb96856ce5c702877d2", + "oid": 208505057890, + "crossed": true, + "fee": "1.049412", + "tid": 1005532866341865, + "cloid": "0x00000000000000000000001602000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.65", + "sz": "25.8", + "side": "B", + "time": 1761072112065, + "startPosition": "-9167.4", + "dir": "Close Short", + "closedPnl": "21.22566", + "hash": "0x01554526563b92d202cf042ded81670202f0000bf13eb1a4a51df079153f6cbc", + "oid": 208505087959, + "crossed": true, + "fee": "1.049195", + "tid": 901758869608894, + "cloid": "0x00000000000000000000001602000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.63", + "sz": "25.81", + "side": "B", + "time": 1761072113581, + "startPosition": "-9141.6", + "dir": "Close Short", + "closedPnl": "21.750087", + "hash": "0xd756da204a36db2fd8d0042ded817402052f0005e539fa017b1f8573093ab51a", + "oid": 208505112478, + "crossed": true, + "fee": "1.049493", + "tid": 542322472754228, + "cloid": "0x00000000000000000000001602000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.63", + "sz": "25.81", + "side": "B", + "time": 1761072114791, + "startPosition": "-9115.79", + "dir": "Close Short", + "closedPnl": "21.750087", + "hash": "0x80505f13a9e7071181ca042ded817f02026b00f944ea25e324190a6668eae0fc", + "oid": 208505120703, + "crossed": true, + "fee": "1.049493", + "tid": 311740071615421, + "cloid": "0x00000000000000000000001602000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.66", + "sz": "0.13", + "side": "B", + "time": 1761072120678, + "startPosition": "-9089.98", + "dir": "Close Short", + "closedPnl": "0.105651", + "hash": "0xa889f56d5a460794aa03042ded81c40203480052f54926664c52a0c01949e17f", + "oid": 208505189263, + "crossed": true, + "fee": "0.005286", + "tid": 1104762393376893, + "cloid": "0x00000000000000000000001602000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.67", + "sz": "20.38", + "side": "B", + "time": 1761072120678, + "startPosition": "-9089.85", + "dir": "Close Short", + "closedPnl": "16.359026", + "hash": "0xa889f56d5a460794aa03042ded81c40203480052f54926664c52a0c01949e17f", + "oid": 208505189263, + "crossed": true, + "fee": "0.828868", + "tid": 97715066489285, + "cloid": "0x00000000000000000000001602000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.68", + "sz": "0.13", + "side": "B", + "time": 1761072120678, + "startPosition": "-9069.47", + "dir": "Close Short", + "closedPnl": "0.103051", + "hash": "0xa889f56d5a460794aa03042ded81c40203480052f54926664c52a0c01949e17f", + "oid": 208505189263, + "crossed": true, + "fee": "0.005287", + "tid": 1068690390258434, + "cloid": "0x00000000000000000000001602000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.68", + "sz": "5.17", + "side": "B", + "time": 1761072120678, + "startPosition": "-9069.34", + "dir": "Close Short", + "closedPnl": "4.098259", + "hash": "0xa889f56d5a460794aa03042ded81c40203480052f54926664c52a0c01949e17f", + "oid": 208505189263, + "crossed": true, + "fee": "0.210278", + "tid": 849796434221317, + "cloid": "0x00000000000000000000001602000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.7", + "sz": "0.13", + "side": "B", + "time": 1761072122849, + "startPosition": "-9064.17", + "dir": "Close Short", + "closedPnl": "0.100451", + "hash": "0x3f720f1bf9c35c4d40eb042ded81e20202ea000194c67b1fe33aba6eb8c73637", + "oid": 208505222657, + "crossed": true, + "fee": "0.005288", + "tid": 550931671141357, + "cloid": "0x00000000000000000000001602000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.7", + "sz": "25.67", + "side": "B", + "time": 1761072122849, + "startPosition": "-9064.04", + "dir": "Close Short", + "closedPnl": "19.835209", + "hash": "0x3f720f1bf9c35c4d40eb042ded81e20202ea000194c67b1fe33aba6eb8c73637", + "oid": 208505222657, + "crossed": true, + "fee": "1.044178", + "tid": 31714576462102, + "cloid": "0x00000000000000000000001602000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.71", + "sz": "0.13", + "side": "B", + "time": 1761072125134, + "startPosition": "-9038.37", + "dir": "Close Short", + "closedPnl": "0.099151", + "hash": "0xe12a68b3341f6df9e2a4042ded81fd020d100098cf128ccb84f31405f31347e4", + "oid": 208505252008, + "crossed": true, + "fee": "0.005288", + "tid": 639031542088553, + "cloid": "0x00000000000000000000001602000044", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.71", + "sz": "10.32", + "side": "B", + "time": 1761072125134, + "startPosition": "-9038.24", + "dir": "Close Short", + "closedPnl": "7.871064", + "hash": "0xe12a68b3341f6df9e2a4042ded81fd020d100098cf128ccb84f31405f31347e4", + "oid": 208505252008, + "crossed": true, + "fee": "0.419808", + "tid": 1014131316989385, + "cloid": "0x00000000000000000000001602000044", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.71", + "sz": "15.35", + "side": "B", + "time": 1761072125134, + "startPosition": "-9027.92", + "dir": "Close Short", + "closedPnl": "11.707445", + "hash": "0xe12a68b3341f6df9e2a4042ded81fd020d100098cf128ccb84f31405f31347e4", + "oid": 208505252008, + "crossed": true, + "fee": "0.624424", + "tid": 166693107783242, + "cloid": "0x00000000000000000000001602000044", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.69", + "sz": "25.8", + "side": "B", + "time": 1761072129144, + "startPosition": "-9012.57", + "dir": "Close Short", + "closedPnl": "20.19366", + "hash": "0x08ca458d17a706960a44042ded822b02014b0072b2aa2568ac92f0dfd6aae080", + "oid": 208505298898, + "crossed": true, + "fee": "1.049412", + "tid": 683837346340585, + "cloid": "0x00000000000000000000001602000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.69", + "sz": "24.16", + "side": "B", + "time": 1761072131657, + "startPosition": "-8986.77", + "dir": "Close Short", + "closedPnl": "18.910032", + "hash": "0x0f2dabbe248d0a2410a7042ded824d02091f00a3bf8028f6b2f65710e380e40e", + "oid": 208505329312, + "crossed": true, + "fee": "0.982705", + "tid": 520251667734922, + "cloid": "0x00000000000000000000001602000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.69", + "sz": "1.63", + "side": "B", + "time": 1761072131657, + "startPosition": "-8962.61", + "dir": "Close Short", + "closedPnl": "1.275801", + "hash": "0x0f2dabbe248d0a2410a7042ded824d02091f00a3bf8028f6b2f65710e380e40e", + "oid": 208505329312, + "crossed": true, + "fee": "0.0663", + "tid": 44099472872840, + "cloid": "0x00000000000000000000001602000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.73", + "sz": "15.6", + "side": "B", + "time": 1761072133066, + "startPosition": "-8960.98", + "dir": "Close Short", + "closedPnl": "11.58612", + "hash": "0x52f82a2fac91a3875471042ded825e02023300154794c259f6c0d5826b957d71", + "oid": 208505355836, + "crossed": true, + "fee": "0.634659", + "tid": 165115602520445, + "cloid": "0x00000000000000000000001602000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.73", + "sz": "10.19", + "side": "B", + "time": 1761072133066, + "startPosition": "-8945.38", + "dir": "Close Short", + "closedPnl": "7.568113", + "hash": "0x52f82a2fac91a3875471042ded825e02023300154794c259f6c0d5826b957d71", + "oid": 208505355836, + "crossed": true, + "fee": "0.414562", + "tid": 21481503933265, + "cloid": "0x00000000000000000000001602000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.71", + "sz": "25.79", + "side": "B", + "time": 1761072134379, + "startPosition": "-8935.19", + "dir": "Close Short", + "closedPnl": "19.670033", + "hash": "0xe966a3f269ae8430eae0042ded826b02022b00d804a1a3028d2f4f4528a25e1b", + "oid": 208505373985, + "crossed": true, + "fee": "1.049113", + "tid": 1122504609013219, + "cloid": "0x00000000000000000000001602000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.68", + "sz": "21.32", + "side": "B", + "time": 1761072136470, + "startPosition": "-8909.4", + "dir": "Close Short", + "closedPnl": "16.900364", + "hash": "0x8e2e78794ac2cbc18fa8042ded8286020846005ee5c5ea9331f723cc09c6a5ac", + "oid": 208505406326, + "crossed": true, + "fee": "0.867144", + "tid": 476935642510526, + "cloid": "0x00000000000000000000001602000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.68", + "sz": "4.48", + "side": "B", + "time": 1761072136470, + "startPosition": "-8888.08", + "dir": "Close Short", + "closedPnl": "3.551296", + "hash": "0x8e2e78794ac2cbc18fa8042ded8286020846005ee5c5ea9331f723cc09c6a5ac", + "oid": 208505406326, + "crossed": true, + "fee": "0.182214", + "tid": 1006244245046149, + "cloid": "0x00000000000000000000001602000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.74", + "sz": "14.28", + "side": "B", + "time": 1761072138923, + "startPosition": "-8883.6", + "dir": "Close Short", + "closedPnl": "10.462956", + "hash": "0xe77d132acad7d2aee8f6042ded82a1020b28001065daf1808b45be7d89dbac99", + "oid": 208505454470, + "crossed": true, + "fee": "0.580987", + "tid": 24635128469924, + "cloid": "0x00000000000000000000001602000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.74", + "sz": "0.13", + "side": "B", + "time": 1761072138923, + "startPosition": "-8869.32", + "dir": "Close Short", + "closedPnl": "0.095251", + "hash": "0xe77d132acad7d2aee8f6042ded82a1020b28001065daf1808b45be7d89dbac99", + "oid": 208505454470, + "crossed": true, + "fee": "0.005289", + "tid": 438524174360201, + "cloid": "0x00000000000000000000001602000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.74", + "sz": "11.39", + "side": "B", + "time": 1761072138923, + "startPosition": "-8869.19", + "dir": "Close Short", + "closedPnl": "8.345453", + "hash": "0xe77d132acad7d2aee8f6042ded82a1020b28001065daf1808b45be7d89dbac99", + "oid": 208505454470, + "crossed": true, + "fee": "0.463406", + "tid": 470929763420495, + "cloid": "0x00000000000000000000001602000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.75", + "sz": "25.79", + "side": "B", + "time": 1761072140571, + "startPosition": "-8857.8", + "dir": "Close Short", + "closedPnl": "18.638433", + "hash": "0xf0c6b4233735b639f240042ded82b60202b50008d238d50c948f5f75f6399024", + "oid": 208505484128, + "crossed": true, + "fee": "1.04933", + "tid": 941117730308401, + "cloid": "0x00000000000000000000001602000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.74", + "sz": "25.79", + "side": "B", + "time": 1761072143066, + "startPosition": "-8832.01", + "dir": "Close Short", + "closedPnl": "18.896333", + "hash": "0xa1f3b7c5d51ac55da36d042ded82d30206f200ab701de42f45bc6318941e9f48", + "oid": 208505519091, + "crossed": true, + "fee": "1.049276", + "tid": 938382002232210, + "cloid": "0x00000000000000000000001602000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.8", + "sz": "0.26", + "side": "B", + "time": 1761072151196, + "startPosition": "-8806.22", + "dir": "Close Short", + "closedPnl": "0.174902", + "hash": "0x3d3afddba87ff2df3eb4042ded83340207f300c1437311b1e103a92e6773ccc9", + "oid": 208505627524, + "crossed": true, + "fee": "0.010581", + "tid": 106382298533672, + "cloid": "0x00000000000000000000001602000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.81", + "sz": "0.13", + "side": "B", + "time": 1761072151196, + "startPosition": "-8805.96", + "dir": "Close Short", + "closedPnl": "0.086151", + "hash": "0x3d3afddba87ff2df3eb4042ded83340207f300c1437311b1e103a92e6773ccc9", + "oid": 208505627524, + "crossed": true, + "fee": "0.005291", + "tid": 258521860515067, + "cloid": "0x00000000000000000000001602000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.81", + "sz": "25.4", + "side": "B", + "time": 1761072151196, + "startPosition": "-8805.83", + "dir": "Close Short", + "closedPnl": "16.83258", + "hash": "0x3d3afddba87ff2df3eb4042ded83340207f300c1437311b1e103a92e6773ccc9", + "oid": 208505627524, + "crossed": true, + "fee": "1.033782", + "tid": 472940447365512, + "cloid": "0x00000000000000000000001602000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.81", + "sz": "25.78", + "side": "B", + "time": 1761072152467, + "startPosition": "-8780.43", + "dir": "Close Short", + "closedPnl": "17.084406", + "hash": "0xc94792785af95089cac1042ded83430202d0005df5fc6f5b6d103dcb19fd2a74", + "oid": 208505642915, + "crossed": true, + "fee": "1.049248", + "tid": 844620369449386, + "cloid": "0x00000000000000000000001602000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.81", + "sz": "10.31", + "side": "B", + "time": 1761072153733, + "startPosition": "-8754.65", + "dir": "Close Short", + "closedPnl": "6.832437", + "hash": "0x8e718d9b012c3cb78feb042ded83520201a000809c2f5b89323a38edc02016a2", + "oid": 208505650015, + "crossed": true, + "fee": "0.419618", + "tid": 954598676678932, + "cloid": "0x00000000000000000000001602000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.81", + "sz": "15.47", + "side": "B", + "time": 1761072153733, + "startPosition": "-8744.34", + "dir": "Close Short", + "closedPnl": "10.251969", + "hash": "0x8e718d9b012c3cb78feb042ded83520201a000809c2f5b89323a38edc02016a2", + "oid": 208505650015, + "crossed": true, + "fee": "0.62963", + "tid": 201161722944754, + "cloid": "0x00000000000000000000001602000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.84", + "sz": "25.78", + "side": "B", + "time": 1761072159963, + "startPosition": "-8728.87", + "dir": "Close Short", + "closedPnl": "16.311006", + "hash": "0xdcefe70c69e6752bde69042ded83a002020600f204e993fd80b8925f28ea4f16", + "oid": 208505710218, + "crossed": true, + "fee": "1.04941", + "tid": 535428043218792, + "cloid": "0x00000000000000000000001602000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.84", + "sz": "0.13", + "side": "B", + "time": 1761072162711, + "startPosition": "-8703.09", + "dir": "Close Short", + "closedPnl": "0.082251", + "hash": "0x25af74eff2f107232729042ded83c502024600d58df425f5c9782042b1f4e10d", + "oid": 208505737944, + "crossed": true, + "fee": "0.005291", + "tid": 1009259996193359, + "cloid": "0x00000000000000000000001602000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.85", + "sz": "15.47", + "side": "B", + "time": 1761072162711, + "startPosition": "-8702.96", + "dir": "Close Short", + "closedPnl": "9.633169", + "hash": "0x25af74eff2f107232729042ded83c502024600d58df425f5c9782042b1f4e10d", + "oid": 208505737944, + "crossed": true, + "fee": "0.62976", + "tid": 527458923281371, + "cloid": "0x00000000000000000000001602000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.86", + "sz": "0.13", + "side": "B", + "time": 1761072162711, + "startPosition": "-8687.49", + "dir": "Close Short", + "closedPnl": "0.079651", + "hash": "0x25af74eff2f107232729042ded83c502024600d58df425f5c9782042b1f4e10d", + "oid": 208505737944, + "crossed": true, + "fee": "0.005292", + "tid": 96320879306793, + "cloid": "0x00000000000000000000001602000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.86", + "sz": "10.05", + "side": "B", + "time": 1761072162711, + "startPosition": "-8687.36", + "dir": "Close Short", + "closedPnl": "6.157635", + "hash": "0x25af74eff2f107232729042ded83c502024600d58df425f5c9782042b1f4e10d", + "oid": 208505737944, + "crossed": true, + "fee": "0.409141", + "tid": 388963610175856, + "cloid": "0x00000000000000000000001602000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.88", + "sz": "9.44", + "side": "B", + "time": 1761072166182, + "startPosition": "-8677.31", + "dir": "Close Short", + "closedPnl": "5.595088", + "hash": "0x7f19835e89d2343d8093042ded83f50202f4004424d5530f22e22eb148d60e28", + "oid": 208505783689, + "crossed": true, + "fee": "0.384347", + "tid": 157533370066417, + "cloid": "0x00000000000000000000001602000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.89", + "sz": "0.13", + "side": "B", + "time": 1761072166182, + "startPosition": "-8667.87", + "dir": "Close Short", + "closedPnl": "0.075751", + "hash": "0x7f19835e89d2343d8093042ded83f50202f4004424d5530f22e22eb148d60e28", + "oid": 208505783689, + "crossed": true, + "fee": "0.005293", + "tid": 395719802296248, + "cloid": "0x00000000000000000000001602000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.89", + "sz": "16.21", + "side": "B", + "time": 1761072166182, + "startPosition": "-8667.74", + "dir": "Close Short", + "closedPnl": "9.445567", + "hash": "0x7f19835e89d2343d8093042ded83f50202f4004424d5530f22e22eb148d60e28", + "oid": 208505783689, + "crossed": true, + "fee": "0.66002", + "tid": 1095311108302920, + "cloid": "0x00000000000000000000001602000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.85", + "sz": "25.78", + "side": "B", + "time": 1761072174285, + "startPosition": "-8651.53", + "dir": "Close Short", + "closedPnl": "16.053206", + "hash": "0x64ee94d4c13bdfad6668042ded846002028300ba5c3efe7f08b74027803fb998", + "oid": 208505847133, + "crossed": true, + "fee": "1.049465", + "tid": 97333033455376, + "cloid": "0x00000000000000000000001602000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.85", + "sz": "25.78", + "side": "B", + "time": 1761072176119, + "startPosition": "-8625.75", + "dir": "Close Short", + "closedPnl": "16.053206", + "hash": "0x3f1e01173b11a1364097042ded847702051e00fcd614c008e2e6ac69fa157b20", + "oid": 208505866902, + "crossed": true, + "fee": "1.049465", + "tid": 218211438692425, + "cloid": "0x00000000000000000000001602000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.83", + "sz": "25.78", + "side": "B", + "time": 1761072180330, + "startPosition": "-8599.97", + "dir": "Close Short", + "closedPnl": "16.568806", + "hash": "0x5ec5a8ff42c08c47603f042ded84ae0202fe00e4ddc3ab19028e545201c46632", + "oid": 208505924863, + "crossed": true, + "fee": "1.049356", + "tid": 1028186057665752, + "cloid": "0x00000000000000000000001602000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.8", + "sz": "25.78", + "side": "B", + "time": 1761072182484, + "startPosition": "-8574.19", + "dir": "Close Short", + "closedPnl": "17.342206", + "hash": "0x113e87a46e0bf63412b8042ded84c80205d0008a090f1506b50732f72d0fd01e", + "oid": 208505958637, + "crossed": true, + "fee": "1.049194", + "tid": 1099169224273181, + "cloid": "0x00000000000000000000001602000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.88", + "sz": "25.78", + "side": "B", + "time": 1761072189465, + "startPosition": "-8548.41", + "dir": "Close Short", + "closedPnl": "15.279806", + "hash": "0x146b71c4d4f4a6a415e5042ded851802058700aa6ff7c576b8341d1793f8808e", + "oid": 208506052396, + "crossed": true, + "fee": "1.049627", + "tid": 643011416931235, + "cloid": "0x00000000000000000000001602000063", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.83", + "sz": "25.78", + "side": "B", + "time": 1761072196561, + "startPosition": "-8522.63", + "dir": "Close Short", + "closedPnl": "16.568806", + "hash": "0x5d7d174c039cc6d45ef6042ded857c02050d00319e9fe5a60145c29ec290a0bf", + "oid": 208506156186, + "crossed": true, + "fee": "1.049356", + "tid": 240185647681102, + "cloid": "0x00000000000000000000001602000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.78", + "sz": "25.79", + "side": "B", + "time": 1761072202645, + "startPosition": "-8496.85", + "dir": "Close Short", + "closedPnl": "17.864733", + "hash": "0xadaca1b7fc7aa41eaf26042ded85bf02073c009d977dc2f051754d0abb7e7e09", + "oid": 208506225447, + "crossed": true, + "fee": "1.049493", + "tid": 255844141774987, + "cloid": "0x00000000000000000000001602000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.74", + "sz": "25.79", + "side": "B", + "time": 1761072204221, + "startPosition": "-8471.06", + "dir": "Close Short", + "closedPnl": "18.896333", + "hash": "0x27c4b5c86a2bff9a293e042ded85d10203f500ae052f1e6ccb8d611b292fd984", + "oid": 208506259859, + "crossed": true, + "fee": "1.049276", + "tid": 550134413486110, + "cloid": "0x00000000000000000000001602000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.74", + "sz": "25.79", + "side": "B", + "time": 1761072206299, + "startPosition": "-8445.27", + "dir": "Close Short", + "closedPnl": "18.896333", + "hash": "0x04f34c9cf6c798cd066d042ded85e50201eb008291cab79fa8bbf7efb5cb72b7", + "oid": 208506280574, + "crossed": true, + "fee": "1.049276", + "tid": 354871665749986, + "cloid": "0x00000000000000000000001602000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.71", + "sz": "25.8", + "side": "B", + "time": 1761072214576, + "startPosition": "-8419.48", + "dir": "Close Short", + "closedPnl": "19.67766", + "hash": "0xe219631f3aaae7a9e393042ded86520201f80004d5ae067b85e20e71f9aec194", + "oid": 208506355527, + "crossed": true, + "fee": "1.04952", + "tid": 1074370829207758, + "cloid": "0x00000000000000000000001602000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.7", + "sz": "25.8", + "side": "B", + "time": 1761072218957, + "startPosition": "-8393.68", + "dir": "Close Short", + "closedPnl": "19.93566", + "hash": "0xf3827b0f27e5573df4fc042ded869002063600f4c2e87610974b2661e6e93128", + "oid": 208506401686, + "crossed": true, + "fee": "1.049466", + "tid": 231975029265420, + "cloid": "0x00000000000000000000001602000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.68", + "sz": "25.81", + "side": "B", + "time": 1761072223183, + "startPosition": "-8367.88", + "dir": "Close Short", + "closedPnl": "20.459587", + "hash": "0x428336fade3320e043fc042ded86c602065500e079363fb2e64be24d9d36faca", + "oid": 208506448300, + "crossed": true, + "fee": "1.049764", + "tid": 826704564262378, + "cloid": "0x00000000000000000000001602000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.66", + "sz": "25.81", + "side": "B", + "time": 1761072226815, + "startPosition": "-8342.07", + "dir": "Close Short", + "closedPnl": "20.975787", + "hash": "0x1bc9319380de85981d42042ded86f202023300791bd1a46abf91dce63fd25f82", + "oid": 208506505970, + "crossed": true, + "fee": "1.049656", + "tid": 1086145462224675, + "cloid": "0x00000000000000000000001602000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.65", + "sz": "0.13", + "side": "B", + "time": 1761072232695, + "startPosition": "-8316.26", + "dir": "Close Short", + "closedPnl": "0.106951", + "hash": "0xd438f6a87f19acdad5b2042ded873a02084f008e1a1ccbac7801a1fb3e1d86c5", + "oid": 208506584632, + "crossed": true, + "fee": "0.005286", + "tid": 405228440934860, + "cloid": "0x00000000000000000000001602000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.65", + "sz": "25.67", + "side": "B", + "time": 1761072232695, + "startPosition": "-8316.13", + "dir": "Close Short", + "closedPnl": "21.118709", + "hash": "0xd438f6a87f19acdad5b2042ded873a02084f008e1a1ccbac7801a1fb3e1d86c5", + "oid": 208506584632, + "crossed": true, + "fee": "1.043909", + "tid": 622642175365260, + "cloid": "0x00000000000000000000001602000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.68", + "sz": "18.1", + "side": "B", + "time": 1761072237888, + "startPosition": "-8290.46", + "dir": "Close Short", + "closedPnl": "14.34787", + "hash": "0x446e5682c7c6d49d45e8042ded8780020234006862c9f36fe83701d586caae87", + "oid": 208506647094, + "crossed": true, + "fee": "0.736177", + "tid": 543992231834580, + "cloid": "0x00000000000000000000001602000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.68", + "sz": "7.7", + "side": "B", + "time": 1761072237888, + "startPosition": "-8272.36", + "dir": "Close Short", + "closedPnl": "6.10379", + "hash": "0x446e5682c7c6d49d45e8042ded8780020234006862c9f36fe83701d586caae87", + "oid": 208506647094, + "crossed": true, + "fee": "0.31318", + "tid": 902581508539217, + "cloid": "0x00000000000000000000001602000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.7", + "sz": "25.8", + "side": "B", + "time": 1761072244344, + "startPosition": "-8264.66", + "dir": "Close Short", + "closedPnl": "19.93566", + "hash": "0x9654e680f2ce164297ce042ded87d90202e700668dc135143a1d91d3b1c1f02d", + "oid": 208506723483, + "crossed": true, + "fee": "1.049466", + "tid": 974915305533732, + "cloid": "0x00000000000000000000001602000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.68", + "sz": "17.66", + "side": "B", + "time": 1761072246259, + "startPosition": "-8238.86", + "dir": "Close Short", + "closedPnl": "13.999082", + "hash": "0x068274f873a5189c07fc042ded87f302022300de0ea8376eaa4b204b32a8f286", + "oid": 208506744873, + "crossed": true, + "fee": "0.718281", + "tid": 1081282909438260, + "cloid": "0x00000000000000000000001602000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.68", + "sz": "8.14", + "side": "B", + "time": 1761072246259, + "startPosition": "-8221.2", + "dir": "Close Short", + "closedPnl": "6.452578", + "hash": "0x068274f873a5189c07fc042ded87f302022300de0ea8376eaa4b204b32a8f286", + "oid": 208506744873, + "crossed": true, + "fee": "0.331076", + "tid": 600689675661596, + "cloid": "0x00000000000000000000001602000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.67", + "sz": "18.03", + "side": "B", + "time": 1761072251620, + "startPosition": "-8213.06", + "dir": "Close Short", + "closedPnl": "14.472681", + "hash": "0x557499be1cda059a56ee042ded883102057800a3b7dd246cf93d4510dbdddf84", + "oid": 208506806061, + "crossed": true, + "fee": "0.733292", + "tid": 193269834063715, + "cloid": "0x00000000000000000000001602000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.67", + "sz": "7.77", + "side": "B", + "time": 1761072251620, + "startPosition": "-8195.03", + "dir": "Close Short", + "closedPnl": "6.236979", + "hash": "0x557499be1cda059a56ee042ded883102057800a3b7dd246cf93d4510dbdddf84", + "oid": 208506806061, + "crossed": true, + "fee": "0.316011", + "tid": 572036481141130, + "cloid": "0x00000000000000000000001602000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.65", + "sz": "25.81", + "side": "B", + "time": 1761072252762, + "startPosition": "-8187.26", + "dir": "Close Short", + "closedPnl": "21.233887", + "hash": "0xac4ff849a2f87e8fadc9042ded883e020329002f3dfb9d615018a39c61fc587a", + "oid": 208506817923, + "crossed": true, + "fee": "1.049602", + "tid": 724889603389450, + "cloid": "0x00000000000000000000001602000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.62", + "sz": "25.81", + "side": "B", + "time": 1761072254143, + "startPosition": "-8161.45", + "dir": "Close Short", + "closedPnl": "22.008187", + "hash": "0x9cbea71962eb906c9e38042ded884c0203ba00fefdeeaf3e4087526c21ef6a57", + "oid": 208506831555, + "crossed": true, + "fee": "1.049439", + "tid": 229081273921496, + "cloid": "0x00000000000000000000001602000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.63", + "sz": "0.13", + "side": "B", + "time": 1761072257459, + "startPosition": "-8135.64", + "dir": "Close Short", + "closedPnl": "0.109551", + "hash": "0xe69ad81e441ee414e814042ded88700204910003df1202e68a6383710312bdff", + "oid": 208506865793, + "crossed": true, + "fee": "0.005286", + "tid": 824768276739718, + "cloid": "0x00000000000000000000001602000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.64", + "sz": "2.58", + "side": "B", + "time": 1761072257459, + "startPosition": "-8135.51", + "dir": "Close Short", + "closedPnl": "2.148366", + "hash": "0xe69ad81e441ee414e814042ded88700204910003df1202e68a6383710312bdff", + "oid": 208506865793, + "crossed": true, + "fee": "0.104914", + "tid": 8757413764074, + "cloid": "0x00000000000000000000001602000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.65", + "sz": "0.13", + "side": "B", + "time": 1761072257459, + "startPosition": "-8132.93", + "dir": "Close Short", + "closedPnl": "0.106951", + "hash": "0xe69ad81e441ee414e814042ded88700204910003df1202e68a6383710312bdff", + "oid": 208506865793, + "crossed": true, + "fee": "0.005286", + "tid": 370308287171538, + "cloid": "0x00000000000000000000001602000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.65", + "sz": "22.97", + "side": "B", + "time": 1761072257459, + "startPosition": "-8132.8", + "dir": "Close Short", + "closedPnl": "18.897419", + "hash": "0xe69ad81e441ee414e814042ded88700204910003df1202e68a6383710312bdff", + "oid": 208506865793, + "crossed": true, + "fee": "0.934109", + "tid": 858560781426548, + "cloid": "0x00000000000000000000001602000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.66", + "sz": "0.13", + "side": "B", + "time": 1761072259281, + "startPosition": "-8109.83", + "dir": "Close Short", + "closedPnl": "0.105651", + "hash": "0xc1683c61f1cfcf1fc2e1042ded88840201c000478cc2edf16530e7b4b0c3a90a", + "oid": 208506890592, + "crossed": true, + "fee": "0.005286", + "tid": 867596549117118, + "cloid": "0x00000000000000000000001602000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.66", + "sz": "12.0", + "side": "B", + "time": 1761072259281, + "startPosition": "-8109.7", + "dir": "Close Short", + "closedPnl": "9.7524", + "hash": "0xc1683c61f1cfcf1fc2e1042ded88840201c000478cc2edf16530e7b4b0c3a90a", + "oid": 208506890592, + "crossed": true, + "fee": "0.488023", + "tid": 865426754932091, + "cloid": "0x00000000000000000000001602000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.66", + "sz": "2.58", + "side": "B", + "time": 1761072259281, + "startPosition": "-8097.7", + "dir": "Close Short", + "closedPnl": "2.096766", + "hash": "0xc1683c61f1cfcf1fc2e1042ded88840201c000478cc2edf16530e7b4b0c3a90a", + "oid": 208506890592, + "crossed": true, + "fee": "0.104924", + "tid": 353734405538148, + "cloid": "0x00000000000000000000001602000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.66", + "sz": "11.1", + "side": "B", + "time": 1761072259281, + "startPosition": "-8095.12", + "dir": "Close Short", + "closedPnl": "9.02097", + "hash": "0xc1683c61f1cfcf1fc2e1042ded88840201c000478cc2edf16530e7b4b0c3a90a", + "oid": 208506890592, + "crossed": true, + "fee": "0.451421", + "tid": 1047430991459800, + "cloid": "0x00000000000000000000001602000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.68", + "sz": "5.89", + "side": "B", + "time": 1761072262246, + "startPosition": "-8084.02", + "dir": "Close Short", + "closedPnl": "4.669003", + "hash": "0xc2c9d6fc46ebf132c443042ded88a502067d00e1e1ef10046692824f05efcb1d", + "oid": 208506919128, + "crossed": true, + "fee": "0.239562", + "tid": 623906459443263, + "cloid": "0x00000000000000000000001602000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.68", + "sz": "19.91", + "side": "B", + "time": 1761072262246, + "startPosition": "-8078.13", + "dir": "Close Short", + "closedPnl": "15.782657", + "hash": "0xc2c9d6fc46ebf132c443042ded88a502067d00e1e1ef10046692824f05efcb1d", + "oid": 208506919128, + "crossed": true, + "fee": "0.809795", + "tid": 465845590986879, + "cloid": "0x00000000000000000000001602000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.7", + "sz": "0.13", + "side": "B", + "time": 1761072265982, + "startPosition": "-8058.22", + "dir": "Close Short", + "closedPnl": "0.100451", + "hash": "0x77378a3ae6a7353678b1042ded88cb02029b002081aa54081b00358da5ab0f21", + "oid": 208506963705, + "crossed": true, + "fee": "0.005288", + "tid": 441035619333822, + "cloid": "0x00000000000000000000001602000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.71", + "sz": "0.13", + "side": "B", + "time": 1761072265982, + "startPosition": "-8058.09", + "dir": "Close Short", + "closedPnl": "0.099151", + "hash": "0x77378a3ae6a7353678b1042ded88cb02029b002081aa54081b00358da5ab0f21", + "oid": 208506963705, + "crossed": true, + "fee": "0.005288", + "tid": 236854744178921, + "cloid": "0x00000000000000000000001602000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.73", + "sz": "0.13", + "side": "B", + "time": 1761072265982, + "startPosition": "-8057.96", + "dir": "Close Short", + "closedPnl": "0.096551", + "hash": "0x77378a3ae6a7353678b1042ded88cb02029b002081aa54081b00358da5ab0f21", + "oid": 208506963705, + "crossed": true, + "fee": "0.005288", + "tid": 703667798300908, + "cloid": "0x00000000000000000000001602000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.73", + "sz": "25.41", + "side": "B", + "time": 1761072265982, + "startPosition": "-8057.83", + "dir": "Close Short", + "closedPnl": "18.872007", + "hash": "0x77378a3ae6a7353678b1042ded88cb02029b002081aa54081b00358da5ab0f21", + "oid": 208506963705, + "crossed": true, + "fee": "1.033762", + "tid": 950534693834722, + "cloid": "0x00000000000000000000001602000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.78", + "sz": "2.58", + "side": "B", + "time": 1761072267763, + "startPosition": "-8032.42", + "dir": "Close Short", + "closedPnl": "1.787166", + "hash": "0xf370c1762c357eebf4ea042ded88dc020d47005bc7389dbe97396cc8eb3958d6", + "oid": 208507005735, + "crossed": true, + "fee": "0.10499", + "tid": 283264726147386, + "cloid": "0x00000000000000000000001602000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.79", + "sz": "0.13", + "side": "B", + "time": 1761072267763, + "startPosition": "-8029.84", + "dir": "Close Short", + "closedPnl": "0.088751", + "hash": "0xf370c1762c357eebf4ea042ded88dc020d47005bc7389dbe97396cc8eb3958d6", + "oid": 208507005735, + "crossed": true, + "fee": "0.00529", + "tid": 749325298840930, + "cloid": "0x00000000000000000000001602000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.79", + "sz": "23.07", + "side": "B", + "time": 1761072267763, + "startPosition": "-8029.71", + "dir": "Close Short", + "closedPnl": "15.749889", + "hash": "0xf370c1762c357eebf4ea042ded88dc020d47005bc7389dbe97396cc8eb3958d6", + "oid": 208507005735, + "crossed": true, + "fee": "0.938854", + "tid": 923949415675905, + "cloid": "0x00000000000000000000001602000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.79", + "sz": "25.79", + "side": "B", + "time": 1761072269695, + "startPosition": "-8006.64", + "dir": "Close Short", + "closedPnl": "17.606833", + "hash": "0x375c026cabda46ea38d5042ded88f302049e005246dd65bcdb24adbf6ade20d4", + "oid": 208507040762, + "crossed": true, + "fee": "1.049547", + "tid": 1036266872290707, + "cloid": "0x00000000000000000000001602000084", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.76", + "sz": "18.3", + "side": "B", + "time": 1761072271135, + "startPosition": "-7980.85", + "dir": "Close Short", + "closedPnl": "13.04241", + "hash": "0xfd83daf6d8662c11fefd042ded89060203b000dc73694ae4a14c8649976a05fc", + "oid": 208507055023, + "crossed": true, + "fee": "0.744619", + "tid": 792636798897535, + "cloid": "0x00000000000000000000001602000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.76", + "sz": "7.49", + "side": "B", + "time": 1761072271135, + "startPosition": "-7962.55", + "dir": "Close Short", + "closedPnl": "5.338123", + "hash": "0xfd83daf6d8662c11fefd042ded89060203b000dc73694ae4a14c8649976a05fc", + "oid": 208507055023, + "crossed": true, + "fee": "0.304765", + "tid": 71448137620008, + "cloid": "0x00000000000000000000001602000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.78", + "sz": "0.13", + "side": "B", + "time": 1761072272813, + "startPosition": "-7955.06", + "dir": "Close Short", + "closedPnl": "0.090051", + "hash": "0x6f9af8de7b97ce687114042ded891a0201f700c4169aed3a1363a4313a9ba853", + "oid": 208507074649, + "crossed": true, + "fee": "0.00529", + "tid": 14699520435360, + "cloid": "0x00000000000000000000001602000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.79", + "sz": "0.13", + "side": "B", + "time": 1761072272813, + "startPosition": "-7954.93", + "dir": "Close Short", + "closedPnl": "0.088751", + "hash": "0x6f9af8de7b97ce687114042ded891a0201f700c4169aed3a1363a4313a9ba853", + "oid": 208507074649, + "crossed": true, + "fee": "0.00529", + "tid": 820148693759888, + "cloid": "0x00000000000000000000001602000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.79", + "sz": "25.53", + "side": "B", + "time": 1761072272813, + "startPosition": "-7954.8", + "dir": "Close Short", + "closedPnl": "17.429331", + "hash": "0x6f9af8de7b97ce687114042ded891a0201f700c4169aed3a1363a4313a9ba853", + "oid": 208507074649, + "crossed": true, + "fee": "1.038966", + "tid": 620873653601230, + "cloid": "0x00000000000000000000001602000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.77", + "sz": "18.74", + "side": "B", + "time": 1761072275126, + "startPosition": "-7929.27", + "dir": "Close Short", + "closedPnl": "13.168598", + "hash": "0xda50b00c3f92f08adbca042ded893802032100f1da960f5c7e195b5efe96ca75", + "oid": 208507091263, + "crossed": true, + "fee": "0.762562", + "tid": 1005681436183114, + "cloid": "0x00000000000000000000001602000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.77", + "sz": "7.05", + "side": "B", + "time": 1761072275126, + "startPosition": "-7910.53", + "dir": "Close Short", + "closedPnl": "4.954035", + "hash": "0xda50b00c3f92f08adbca042ded893802032100f1da960f5c7e195b5efe96ca75", + "oid": 208507091263, + "crossed": true, + "fee": "0.286876", + "tid": 105228935114258, + "cloid": "0x00000000000000000000001602000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.74", + "sz": "14.77", + "side": "B", + "time": 1761072283677, + "startPosition": "-7903.48", + "dir": "Close Short", + "closedPnl": "10.821979", + "hash": "0xff4c1964d52dd92800c5042ded89af02064f004a7020f7fba314c4b79421b313", + "oid": 208507141040, + "crossed": true, + "fee": "0.600923", + "tid": 254315994479199, + "cloid": "0x00000000000000000000001602000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.74", + "sz": "11.02", + "side": "B", + "time": 1761072283677, + "startPosition": "-7888.71", + "dir": "Close Short", + "closedPnl": "8.074354", + "hash": "0xff4c1964d52dd92800c5042ded89af02064f004a7020f7fba314c4b79421b313", + "oid": 208507141040, + "crossed": true, + "fee": "0.448353", + "tid": 747885108399892, + "cloid": "0x00000000000000000000001602000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.71", + "sz": "25.8", + "side": "B", + "time": 1761072284897, + "startPosition": "-7877.69", + "dir": "Close Short", + "closedPnl": "19.67766", + "hash": "0x0d1f39e22f7c55410e98042ded89bf020dec00c7ca7f7413b0e7e534ee702f2b", + "oid": 208507161547, + "crossed": true, + "fee": "1.04952", + "tid": 677248688419498, + "cloid": "0x00000000000000000000001602000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.68", + "sz": "11.82", + "side": "B", + "time": 1761072288893, + "startPosition": "-7851.89", + "dir": "Close Short", + "closedPnl": "9.369714", + "hash": "0xf4cdad8c4105c61ff647042ded89f101f300c571dc08e4f2989658df0009a00a", + "oid": 208507198624, + "crossed": true, + "fee": "0.480752", + "tid": 439938805301115, + "cloid": "0x00000000000000000000001602000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.68", + "sz": "13.98", + "side": "B", + "time": 1761072288893, + "startPosition": "-7840.07", + "dir": "Close Short", + "closedPnl": "11.081946", + "hash": "0xf4cdad8c4105c61ff647042ded89f101f300c571dc08e4f2989658df0009a00a", + "oid": 208507198624, + "crossed": true, + "fee": "0.568605", + "tid": 457882417561098, + "cloid": "0x00000000000000000000001602000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.68", + "sz": "25.8", + "side": "B", + "time": 1761072290202, + "startPosition": "-7826.09", + "dir": "Close Short", + "closedPnl": "20.45166", + "hash": "0x229d5b19beceb87a2417042ded89fd0203f300ff59c1d74cc666066c7dc29264", + "oid": 208507208535, + "crossed": true, + "fee": "1.049358", + "tid": 31174551562421, + "cloid": "0x00000000000000000000001602000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.68", + "sz": "25.8", + "side": "B", + "time": 1761072291755, + "startPosition": "-7800.29", + "dir": "Close Short", + "closedPnl": "20.45166", + "hash": "0x0244c06fc4fbcc6103be042ded8a100201af00555ffeeb33a60d6bc283ffa64b", + "oid": 208507221173, + "crossed": true, + "fee": "1.049358", + "tid": 25015330606972, + "cloid": "0x00000000000000000000001602000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.68", + "sz": "25.8", + "side": "B", + "time": 1761072293967, + "startPosition": "-7774.49", + "dir": "Close Short", + "closedPnl": "20.45166", + "hash": "0x699b67a523a347616b15042ded8a2a0201d0008abea666330d6412f7e2a7214c", + "oid": 208507237623, + "crossed": true, + "fee": "1.049358", + "tid": 957047193347366, + "cloid": "0x00000000000000000000001602000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.69", + "sz": "25.8", + "side": "B", + "time": 1761072301475, + "startPosition": "-7748.69", + "dir": "Close Short", + "closedPnl": "20.19366", + "hash": "0xd944d91353812571dabe042ded8a8102058b00f8ee8444437d0d84661284ff5c", + "oid": 208507332840, + "crossed": true, + "fee": "1.049412", + "tid": 794739321510227, + "cloid": "0x00000000000000000000001602000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.69", + "sz": "25.8", + "side": "B", + "time": 1761072303875, + "startPosition": "-7722.89", + "dir": "Close Short", + "closedPnl": "20.19366", + "hash": "0xd3b98139171ab69dd533042ded8a9c020165001eb21dd56f77822c8bd61e9088", + "oid": 208507360763, + "crossed": true, + "fee": "1.049412", + "tid": 602856081003486, + "cloid": "0x00000000000000000000001602000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.7", + "sz": "0.13", + "side": "B", + "time": 1761072305482, + "startPosition": "-7697.09", + "dir": "Close Short", + "closedPnl": "0.100451", + "hash": "0x875d785bd82c4cb888d7042ded8aad0204890041732f6b8a2b2623ae972026a3", + "oid": 208507377304, + "crossed": true, + "fee": "0.005288", + "tid": 46559246987871, + "cloid": "0x00000000000000000000001602000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.71", + "sz": "0.13", + "side": "B", + "time": 1761072305482, + "startPosition": "-7696.96", + "dir": "Close Short", + "closedPnl": "0.099151", + "hash": "0x875d785bd82c4cb888d7042ded8aad0204890041732f6b8a2b2623ae972026a3", + "oid": 208507377304, + "crossed": true, + "fee": "0.005288", + "tid": 660566786747440, + "cloid": "0x00000000000000000000001602000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.72", + "sz": "10.32", + "side": "B", + "time": 1761072305482, + "startPosition": "-7696.83", + "dir": "Close Short", + "closedPnl": "7.767864", + "hash": "0x875d785bd82c4cb888d7042ded8aad0204890041732f6b8a2b2623ae972026a3", + "oid": 208507377304, + "crossed": true, + "fee": "0.419829", + "tid": 880400262965830, + "cloid": "0x00000000000000000000001602000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.73", + "sz": "15.22", + "side": "B", + "time": 1761072305482, + "startPosition": "-7686.51", + "dir": "Close Short", + "closedPnl": "11.303894", + "hash": "0x875d785bd82c4cb888d7042ded8aad0204890041732f6b8a2b2623ae972026a3", + "oid": 208507377304, + "crossed": true, + "fee": "0.619199", + "tid": 475941626282579, + "cloid": "0x00000000000000000000001602000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.81", + "sz": "10.31", + "side": "B", + "time": 1761072309703, + "startPosition": "-7671.29", + "dir": "Close Short", + "closedPnl": "6.832437", + "hash": "0x983ebe97442fc20e99b8042ded8ae2020380007cdf22e0e03c0769ea03239bf9", + "oid": 208507454660, + "crossed": true, + "fee": "0.419618", + "tid": 490904572542592, + "cloid": "0x00000000000000000000001602000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.81", + "sz": "0.77", + "side": "B", + "time": 1761072309703, + "startPosition": "-7660.98", + "dir": "Close Short", + "closedPnl": "0.510279", + "hash": "0x983ebe97442fc20e99b8042ded8ae2020380007cdf22e0e03c0769ea03239bf9", + "oid": 208507454660, + "crossed": true, + "fee": "0.031339", + "tid": 660654329614543, + "cloid": "0x00000000000000000000001602000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.82", + "sz": "0.13", + "side": "B", + "time": 1761072309703, + "startPosition": "-7660.21", + "dir": "Close Short", + "closedPnl": "0.084851", + "hash": "0x983ebe97442fc20e99b8042ded8ae2020380007cdf22e0e03c0769ea03239bf9", + "oid": 208507454660, + "crossed": true, + "fee": "0.005291", + "tid": 679348170458389, + "cloid": "0x00000000000000000000001602000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.82", + "sz": "13.44", + "side": "B", + "time": 1761072309703, + "startPosition": "-7660.08", + "dir": "Close Short", + "closedPnl": "8.772288", + "hash": "0x983ebe97442fc20e99b8042ded8ae2020380007cdf22e0e03c0769ea03239bf9", + "oid": 208507454660, + "crossed": true, + "fee": "0.547037", + "tid": 889519734214854, + "cloid": "0x00000000000000000000001602000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.82", + "sz": "1.13", + "side": "B", + "time": 1761072309703, + "startPosition": "-7646.64", + "dir": "Close Short", + "closedPnl": "0.737551", + "hash": "0x983ebe97442fc20e99b8042ded8ae2020380007cdf22e0e03c0769ea03239bf9", + "oid": 208507454660, + "crossed": true, + "fee": "0.045993", + "tid": 1121151525648586, + "cloid": "0x00000000000000000000001602000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.86", + "sz": "19.64", + "side": "B", + "time": 1761072311721, + "startPosition": "-7645.51", + "dir": "Close Short", + "closedPnl": "12.033428", + "hash": "0x76ea21871a58d0b87863042ded8afc0201d9006cb55bef8a1ab2ccd9d95caaa3", + "oid": 208507498462, + "crossed": true, + "fee": "0.799556", + "tid": 745596800720526, + "cloid": "0x00000000000000000000001602000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.87", + "sz": "0.13", + "side": "B", + "time": 1761072311721, + "startPosition": "-7625.87", + "dir": "Close Short", + "closedPnl": "0.078351", + "hash": "0x76ea21871a58d0b87863042ded8afc0201d9006cb55bef8a1ab2ccd9d95caaa3", + "oid": 208507498462, + "crossed": true, + "fee": "0.005292", + "tid": 171166916498283, + "cloid": "0x00000000000000000000001602000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.87", + "sz": "6.01", + "side": "B", + "time": 1761072311721, + "startPosition": "-7625.74", + "dir": "Close Short", + "closedPnl": "3.622227", + "hash": "0x76ea21871a58d0b87863042ded8afc0201d9006cb55bef8a1ab2ccd9d95caaa3", + "oid": 208507498462, + "crossed": true, + "fee": "0.244683", + "tid": 722428070062941, + "cloid": "0x00000000000000000000001602000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.88", + "sz": "12.19", + "side": "B", + "time": 1761072313920, + "startPosition": "-7619.73", + "dir": "Close Short", + "closedPnl": "7.225013", + "hash": "0xbb4c3ae379f8f9f7bcc5042ded8b19020c9200c914fc18c95f14e63638fcd3e2", + "oid": 208507545339, + "crossed": true, + "fee": "0.496313", + "tid": 470427944014655, + "cloid": "0x00000000000000000000001602000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.88", + "sz": "11.34", + "side": "B", + "time": 1761072313920, + "startPosition": "-7607.54", + "dir": "Close Short", + "closedPnl": "6.721218", + "hash": "0xbb4c3ae379f8f9f7bcc5042ded8b19020c9200c914fc18c95f14e63638fcd3e2", + "oid": 208507545339, + "crossed": true, + "fee": "0.461705", + "tid": 1088617157355467, + "cloid": "0x00000000000000000000001602000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.88", + "sz": "2.24", + "side": "B", + "time": 1761072313920, + "startPosition": "-7596.2", + "dir": "Close Short", + "closedPnl": "1.327648", + "hash": "0xbb4c3ae379f8f9f7bcc5042ded8b19020c9200c914fc18c95f14e63638fcd3e2", + "oid": 208507545339, + "crossed": true, + "fee": "0.091201", + "tid": 41463024849371, + "cloid": "0x00000000000000000000001602000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.91", + "sz": "25.77", + "side": "B", + "time": 1761072321132, + "startPosition": "-7593.96", + "dir": "Close Short", + "closedPnl": "14.500779", + "hash": "0xcb876f805437636fcd01042ded8b7a0202310065ef3a82416f501ad3133b3d5a", + "oid": 208507630198, + "crossed": true, + "fee": "1.049382", + "tid": 874605336225849, + "cloid": "0x00000000000000000000001602000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.94", + "sz": "25.76", + "side": "B", + "time": 1761072323607, + "startPosition": "-7568.19", + "dir": "Close Short", + "closedPnl": "13.722352", + "hash": "0x50c1baaaaf55a976523b042ded8b9802039d00904a58c848f48a65fd6e598360", + "oid": 208507668610, + "crossed": true, + "fee": "1.049137", + "tid": 1020823453387181, + "cloid": "0x00000000000000000000001602000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.91", + "sz": "14.09", + "side": "B", + "time": 1761072325014, + "startPosition": "-7542.43", + "dir": "Close Short", + "closedPnl": "7.928443", + "hash": "0x524061c74f4812aa53ba042ded8ba90204df00acea4b317cf6090d1a0e4bec94", + "oid": 208507686185, + "crossed": true, + "fee": "0.57376", + "tid": 304663955479696, + "cloid": "0x00000000000000000000001602000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.91", + "sz": "9.45", + "side": "B", + "time": 1761072325014, + "startPosition": "-7528.34", + "dir": "Close Short", + "closedPnl": "5.317515", + "hash": "0x524061c74f4812aa53ba042ded8ba90204df00acea4b317cf6090d1a0e4bec94", + "oid": 208507686185, + "crossed": true, + "fee": "0.384814", + "tid": 518798492216814, + "cloid": "0x00000000000000000000001602000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.91", + "sz": "2.22", + "side": "B", + "time": 1761072325014, + "startPosition": "-7518.89", + "dir": "Close Short", + "closedPnl": "1.249194", + "hash": "0x524061c74f4812aa53ba042ded8ba90204df00acea4b317cf6090d1a0e4bec94", + "oid": 208507686185, + "crossed": true, + "fee": "0.0904", + "tid": 1091432705010790, + "cloid": "0x00000000000000000000001602000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.89", + "sz": "25.77", + "side": "B", + "time": 1761072326536, + "startPosition": "-7516.67", + "dir": "Close Short", + "closedPnl": "15.016179", + "hash": "0xef1d44a849055e32f097042ded8bba0204c6008de4087d0492e5effb0809381d", + "oid": 208507699294, + "crossed": true, + "fee": "1.049274", + "tid": 752086505920, + "cloid": "0x00000000000000000000001602000103", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.89", + "sz": "25.77", + "side": "B", + "time": 1761072328053, + "startPosition": "-7490.9", + "dir": "Close Short", + "closedPnl": "15.016179", + "hash": "0xabd7ab4bf59672f8ad51042ded8bcc02059d0031909991ca4fa0569eb49a4ce3", + "oid": 208507722028, + "crossed": true, + "fee": "1.049274", + "tid": 908049050437772, + "cloid": "0x00000000000000000000001602000104", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.91", + "sz": "25.77", + "side": "B", + "time": 1761072329533, + "startPosition": "-7465.13", + "dir": "Close Short", + "closedPnl": "14.500779", + "hash": "0xa38af7e6e8c0a236a504042ded8be001e4000fcc83c3c1084753a339a7c47c21", + "oid": 208507741520, + "crossed": true, + "fee": "1.049382", + "tid": 864312090087467, + "cloid": "0x00000000000000000000001602000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.94", + "sz": "25.77", + "side": "B", + "time": 1761072331797, + "startPosition": "-7439.36", + "dir": "Close Short", + "closedPnl": "13.727679", + "hash": "0x7b4a78a8a72766cc7cc4042ded8bff0208df008e422a859e1f1323fb662b40b7", + "oid": 208507780884, + "crossed": true, + "fee": "1.049545", + "tid": 364073998911751, + "cloid": "0x00000000000000000000001602000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.07", + "sz": "25.75", + "side": "B", + "time": 1761072335063, + "startPosition": "-7413.59", + "dir": "Close Short", + "closedPnl": "10.369525", + "hash": "0xef1fe7b58306dbcff099042ded8c2502040f009b1e09faa192e89308420ab5ba", + "oid": 208507854252, + "crossed": true, + "fee": "1.049433", + "tid": 772419819558240, + "cloid": "0x00000000000000000000001602000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.02", + "sz": "25.75", + "side": "B", + "time": 1761072339045, + "startPosition": "-7387.84", + "dir": "Close Short", + "closedPnl": "11.657025", + "hash": "0xf4030e04bbf05535f57c042ded8c5b020be800ea56f3740897cbb9577af42f20", + "oid": 208507913910, + "crossed": true, + "fee": "1.049163", + "tid": 503117272658189, + "cloid": "0x00000000000000000000001602000108", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.98", + "sz": "25.76", + "side": "B", + "time": 1761072341170, + "startPosition": "-7362.09", + "dir": "Close Short", + "closedPnl": "12.691952", + "hash": "0xd98b7868fdfbed01db05042ded8c780209b7004e98ff0bd37d5423bbbcffc6ec", + "oid": 208507948164, + "crossed": true, + "fee": "1.049354", + "tid": 965184066219021, + "cloid": "0x00000000000000000000001602000109", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.97", + "sz": "25.76", + "side": "B", + "time": 1761072343250, + "startPosition": "-7336.33", + "dir": "Close Short", + "closedPnl": "12.949552", + "hash": "0x45a4ea1d88db1ac7471e042ded8c92020293000323de3999e96d957047def4b1", + "oid": 208507976387, + "crossed": true, + "fee": "1.0493", + "tid": 699575193941122, + "cloid": "0x00000000000000000000001602000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "25.76", + "side": "B", + "time": 1761072353531, + "startPosition": "-7310.57", + "dir": "Close Short", + "closedPnl": "12.434352", + "hash": "0x8ef7d11b07bcb3df9071042ded8d020204810000a2bfd2b132c07c6dc6b08dca", + "oid": 208508094387, + "crossed": true, + "fee": "1.049408", + "tid": 594133096399036, + "cloid": "0x00000000000000000000001602000111", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.98", + "sz": "25.76", + "side": "B", + "time": 1761072360996, + "startPosition": "-7284.81", + "dir": "Close Short", + "closedPnl": "12.691952", + "hash": "0xcd7f83642dacb423cef9042ded8d660202440049c8afd2f571482eb6eca08e0e", + "oid": 208508177956, + "crossed": true, + "fee": "1.049354", + "tid": 443934317818871, + "cloid": "0x00000000000000000000001602000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.98", + "sz": "25.76", + "side": "B", + "time": 1761072362228, + "startPosition": "-7259.05", + "dir": "Close Short", + "closedPnl": "12.691952", + "hash": "0x7235701fc3308e0b73af042ded8d7302010400055e33acdd15fe1b72823467f6", + "oid": 208508187608, + "crossed": true, + "fee": "1.049354", + "tid": 323206854824198, + "cloid": "0x00000000000000000000001602000113", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.98", + "sz": "25.76", + "side": "B", + "time": 1761072363671, + "startPosition": "-7233.29", + "dir": "Close Short", + "closedPnl": "12.691952", + "hash": "0xf072131a8a678e7bf1eb042ded8d880201c60000256aad4e943abe6d496b6866", + "oid": 208508203892, + "crossed": true, + "fee": "1.049354", + "tid": 715701170743769, + "cloid": "0x00000000000000000000001602000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.94", + "sz": "25.76", + "side": "B", + "time": 1761072364879, + "startPosition": "-7207.53", + "dir": "Close Short", + "closedPnl": "13.722352", + "hash": "0xf8a5d55d6773560bfa1f042ded8d9a0202e50043027674de9c6e80b026772ff6", + "oid": 208508220078, + "crossed": true, + "fee": "1.049137", + "tid": 79118439603374, + "cloid": "0x00000000000000000000001602000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "9.43", + "side": "B", + "time": 1761072368611, + "startPosition": "-7181.77", + "dir": "Close Short", + "closedPnl": "4.551861", + "hash": "0x8f69b8c08501677890e3042ded8dcc0204ac00a62004864a3332641344054163", + "oid": 208508271997, + "crossed": true, + "fee": "0.384158", + "tid": 566575162573016, + "cloid": "0x00000000000000000000001602000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "16.33", + "side": "B", + "time": 1761072368611, + "startPosition": "-7172.34", + "dir": "Close Short", + "closedPnl": "7.882491", + "hash": "0x8f69b8c08501677890e3042ded8dcc0204ac00a62004864a3332641344054163", + "oid": 208508271997, + "crossed": true, + "fee": "0.665249", + "tid": 725273456645798, + "cloid": "0x00000000000000000000001602000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.94", + "sz": "25.77", + "side": "B", + "time": 1761072370762, + "startPosition": "-7156.01", + "dir": "Close Short", + "closedPnl": "13.727679", + "hash": "0x6c78bf2063488b0a6df2042ded8de50213f30005fe4ba9dc10416a73224c64f5", + "oid": 208508305965, + "crossed": true, + "fee": "1.049545", + "tid": 207693214848295, + "cloid": "0x00000000000000000000001602000117", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.94", + "sz": "25.77", + "side": "B", + "time": 1761072372400, + "startPosition": "-7130.24", + "dir": "Close Short", + "closedPnl": "13.727679", + "hash": "0x22d5d7be43d04015244f042ded8df60203cf00a3ded35ee7c69e831102d419ff", + "oid": 208508331922, + "crossed": true, + "fee": "1.049545", + "tid": 698864464955514, + "cloid": "0x00000000000000000000001602000118", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.94", + "sz": "25.76", + "side": "B", + "time": 1761072375394, + "startPosition": "-7104.47", + "dir": "Close Short", + "closedPnl": "13.722352", + "hash": "0xa05f2726014c94a9a1d8042ded8e1a02030a000b9c4fb37b4427d278c0406e94", + "oid": 208508382046, + "crossed": true, + "fee": "1.049137", + "tid": 198996362269372, + "cloid": "0x00000000000000000000001602000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.94", + "sz": "25.77", + "side": "B", + "time": 1761072378503, + "startPosition": "-7078.71", + "dir": "Close Short", + "closedPnl": "13.727679", + "hash": "0x021f3157d15866bc0398042ded8e3d0204c4003d6c5b858ea5e7dcaa905c40a6", + "oid": 208508426187, + "crossed": true, + "fee": "1.049545", + "tid": 603121947091315, + "cloid": "0x00000000000000000000001602000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.95", + "sz": "0.13", + "side": "B", + "time": 1761072382159, + "startPosition": "-7052.94", + "dir": "Close Short", + "closedPnl": "0.067951", + "hash": "0xab2eb97697a53e35aca8042ded8e6c020246005c32a85d074ef764c956a91820", + "oid": 208508477268, + "crossed": true, + "fee": "0.005294", + "tid": 511661437442213, + "cloid": "0x00000000000000000000001602000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.96", + "sz": "25.63", + "side": "B", + "time": 1761072382159, + "startPosition": "-7052.81", + "dir": "Close Short", + "closedPnl": "13.140501", + "hash": "0xab2eb97697a53e35aca8042ded8e6c020246005c32a85d074ef764c956a91820", + "oid": 208508477268, + "crossed": true, + "fee": "1.04395", + "tid": 231064613070292, + "cloid": "0x00000000000000000000001602000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.97", + "sz": "0.13", + "side": "B", + "time": 1761072385074, + "startPosition": "-7027.18", + "dir": "Close Short", + "closedPnl": "0.065351", + "hash": "0x5b3f19f7dd618ba85cb8042ded8e8a0205ec00dd7864aa7aff07c54a9c656592", + "oid": 208508510039, + "crossed": true, + "fee": "0.005295", + "tid": 113234812702704, + "cloid": "0x00000000000000000000001602000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.98", + "sz": "25.63", + "side": "B", + "time": 1761072385074, + "startPosition": "-7027.05", + "dir": "Close Short", + "closedPnl": "12.627901", + "hash": "0x5b3f19f7dd618ba85cb8042ded8e8a0205ec00dd7864aa7aff07c54a9c656592", + "oid": 208508510039, + "crossed": true, + "fee": "1.044058", + "tid": 968349746771547, + "cloid": "0x00000000000000000000001602000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "25.76", + "side": "B", + "time": 1761072386614, + "startPosition": "-7001.42", + "dir": "Close Short", + "closedPnl": "12.434352", + "hash": "0xc84b45b46befea74c9c5042ded8e960201d8009a06e309466c13f1072ae3c45f", + "oid": 208508535393, + "crossed": true, + "fee": "1.049408", + "tid": 637759252125995, + "cloid": "0x00000000000000000000001602000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "0.13", + "side": "B", + "time": 1761072388784, + "startPosition": "-6975.66", + "dir": "Close Short", + "closedPnl": "0.051051", + "hash": "0x7cce32bb122f3eab7e47042ded8eb00207da00a0ad225d7d2096de0dd1231896", + "oid": 208508592470, + "crossed": true, + "fee": "0.005298", + "tid": 968131960081515, + "cloid": "0x00000000000000000000001602000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "0.15", + "side": "B", + "time": 1761072388784, + "startPosition": "-6975.53", + "dir": "Close Short", + "closedPnl": "0.058905", + "hash": "0x7cce32bb122f3eab7e47042ded8eb00207da00a0ad225d7d2096de0dd1231896", + "oid": 208508592470, + "crossed": true, + "fee": "0.006113", + "tid": 537767497107533, + "cloid": "0x00000000000000000000001602000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.09", + "sz": "2.03", + "side": "B", + "time": 1761072388784, + "startPosition": "-6975.38", + "dir": "Close Short", + "closedPnl": "0.776881", + "hash": "0x7cce32bb122f3eab7e47042ded8eb00207da00a0ad225d7d2096de0dd1231896", + "oid": 208508592470, + "crossed": true, + "fee": "0.08274", + "tid": 219891863925314, + "cloid": "0x00000000000000000000001602000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "0.13", + "side": "B", + "time": 1761072388784, + "startPosition": "-6973.35", + "dir": "Close Short", + "closedPnl": "0.048451", + "hash": "0x7cce32bb122f3eab7e47042ded8eb00207da00a0ad225d7d2096de0dd1231896", + "oid": 208508592470, + "crossed": true, + "fee": "0.005298", + "tid": 872402710904910, + "cloid": "0x00000000000000000000001602000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "2.58", + "side": "B", + "time": 1761072388784, + "startPosition": "-6973.22", + "dir": "Close Short", + "closedPnl": "0.961566", + "hash": "0x7cce32bb122f3eab7e47042ded8eb00207da00a0ad225d7d2096de0dd1231896", + "oid": 208508592470, + "crossed": true, + "fee": "0.105163", + "tid": 1117856481364533, + "cloid": "0x00000000000000000000001602000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.11", + "sz": "0.77", + "side": "B", + "time": 1761072388784, + "startPosition": "-6970.64", + "dir": "Close Short", + "closedPnl": "0.279279", + "hash": "0x7cce32bb122f3eab7e47042ded8eb00207da00a0ad225d7d2096de0dd1231896", + "oid": 208508592470, + "crossed": true, + "fee": "0.031387", + "tid": 60949263616021, + "cloid": "0x00000000000000000000001602000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.11", + "sz": "0.13", + "side": "B", + "time": 1761072388784, + "startPosition": "-6969.87", + "dir": "Close Short", + "closedPnl": "0.047151", + "hash": "0x7cce32bb122f3eab7e47042ded8eb00207da00a0ad225d7d2096de0dd1231896", + "oid": 208508592470, + "crossed": true, + "fee": "0.005299", + "tid": 639125482822214, + "cloid": "0x00000000000000000000001602000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.11", + "sz": "13.09", + "side": "B", + "time": 1761072388784, + "startPosition": "-6969.74", + "dir": "Close Short", + "closedPnl": "4.747743", + "hash": "0x7cce32bb122f3eab7e47042ded8eb00207da00a0ad225d7d2096de0dd1231896", + "oid": 208508592470, + "crossed": true, + "fee": "0.533588", + "tid": 121782639320387, + "cloid": "0x00000000000000000000001602000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.11", + "sz": "6.74", + "side": "B", + "time": 1761072388784, + "startPosition": "-6956.65", + "dir": "Close Short", + "closedPnl": "2.444598", + "hash": "0x7cce32bb122f3eab7e47042ded8eb00207da00a0ad225d7d2096de0dd1231896", + "oid": 208508592470, + "crossed": true, + "fee": "0.274743", + "tid": 287305465008166, + "cloid": "0x00000000000000000000001602000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.13", + "sz": "25.74", + "side": "B", + "time": 1761072391816, + "startPosition": "-6949.91", + "dir": "Close Short", + "closedPnl": "8.821098", + "hash": "0xe4b63796bd596c6de62f042ded8eda0203b3007c585c8b3f887ee2e97c5d4658", + "oid": 208508639786, + "crossed": true, + "fee": "1.04935", + "tid": 269548266534926, + "cloid": "0x00000000000000000000001602000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.14", + "sz": "25.74", + "side": "B", + "time": 1761072394371, + "startPosition": "-6924.17", + "dir": "Close Short", + "closedPnl": "8.563698", + "hash": "0x813df31378f059fc82b7042ded8ef60203f100f913f378ce25069e6637f433e7", + "oid": 208508668928, + "crossed": true, + "fee": "1.049404", + "tid": 45985774164862, + "cloid": "0x00000000000000000000001602000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "20.0", + "side": "B", + "time": 1761072395869, + "startPosition": "-6898.43", + "dir": "Close Short", + "closedPnl": "7.054", + "hash": "0x044446c30491250f05be042ded8f070204a600a89f9443e1a80cf215c394fef9", + "oid": 208508686232, + "crossed": true, + "fee": "0.815303", + "tid": 54253697918616, + "cloid": "0x00000000000000000000001602000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "5.74", + "side": "B", + "time": 1761072395869, + "startPosition": "-6878.43", + "dir": "Close Short", + "closedPnl": "2.024498", + "hash": "0x044446c30491250f05be042ded8f070204a600a89f9443e1a80cf215c394fef9", + "oid": 208508686232, + "crossed": true, + "fee": "0.233992", + "tid": 499059973699152, + "cloid": "0x00000000000000000000001602000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.15", + "sz": "0.13", + "side": "B", + "time": 1761072400915, + "startPosition": "-6872.69", + "dir": "Close Short", + "closedPnl": "0.041951", + "hash": "0x1a5141ae7cd80c8a1bca042ded8f4a02043b009417db2b5cbe19ed013bdbe674", + "oid": 208508744843, + "crossed": true, + "fee": "0.0053", + "tid": 495176560196980, + "cloid": "0x00000000000000000000001602000128", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.15", + "sz": "25.61", + "side": "B", + "time": 1761072400915, + "startPosition": "-6872.56", + "dir": "Close Short", + "closedPnl": "8.264347", + "hash": "0x1a5141ae7cd80c8a1bca042ded8f4a02043b009417db2b5cbe19ed013bdbe674", + "oid": 208508744843, + "crossed": true, + "fee": "1.044158", + "tid": 97624218709494, + "cloid": "0x00000000000000000000001602000128", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.15", + "sz": "17.46", + "side": "B", + "time": 1761072410868, + "startPosition": "-6846.95", + "dir": "Close Short", + "closedPnl": "5.634342", + "hash": "0x9bdf691b1ebd45a69d59042ded8fcb0201c40000b9b064783fa8146dddb11f91", + "oid": 208508865317, + "crossed": true, + "fee": "0.71187", + "tid": 763670626511895, + "cloid": "0x00000000000000000000001602000129", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.15", + "sz": "8.28", + "side": "B", + "time": 1761072410868, + "startPosition": "-6829.49", + "dir": "Close Short", + "closedPnl": "2.671956", + "hash": "0x9bdf691b1ebd45a69d59042ded8fcb0201c40000b9b064783fa8146dddb11f91", + "oid": 208508865317, + "crossed": true, + "fee": "0.337588", + "tid": 975623939957277, + "cloid": "0x00000000000000000000001602000129", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.15", + "sz": "25.74", + "side": "B", + "time": 1761072412427, + "startPosition": "-6821.21", + "dir": "Close Short", + "closedPnl": "8.306298", + "hash": "0x48306ee03e45c60a49aa042ded8fde02078600c5d948e4dcebf91a32fd499ff4", + "oid": 208508884040, + "crossed": true, + "fee": "1.049458", + "tid": 412755065232474, + "cloid": "0x00000000000000000000001602000130", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.16", + "sz": "0.77", + "side": "B", + "time": 1761072415963, + "startPosition": "-6795.47", + "dir": "Close Short", + "closedPnl": "0.240779", + "hash": "0x16663bf40e70200717df042ded900c02031b00d9a9733ed9ba2ee746cd73f9f1", + "oid": 208508936091, + "crossed": true, + "fee": "0.031395", + "tid": 433158022274634, + "cloid": "0x00000000000000000000001602000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.17", + "sz": "0.13", + "side": "B", + "time": 1761072415963, + "startPosition": "-6794.7", + "dir": "Close Short", + "closedPnl": "0.039351", + "hash": "0x16663bf40e70200717df042ded900c02031b00d9a9733ed9ba2ee746cd73f9f1", + "oid": 208508936091, + "crossed": true, + "fee": "0.0053", + "tid": 422312705681993, + "cloid": "0x00000000000000000000001602000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.17", + "sz": "15.45", + "side": "B", + "time": 1761072415963, + "startPosition": "-6794.57", + "dir": "Close Short", + "closedPnl": "4.676715", + "hash": "0x16663bf40e70200717df042ded900c02031b00d9a9733ed9ba2ee746cd73f9f1", + "oid": 208508936091, + "crossed": true, + "fee": "0.629984", + "tid": 771714175335448, + "cloid": "0x00000000000000000000001602000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.17", + "sz": "0.77", + "side": "B", + "time": 1761072415963, + "startPosition": "-6779.12", + "dir": "Close Short", + "closedPnl": "0.233079", + "hash": "0x16663bf40e70200717df042ded900c02031b00d9a9733ed9ba2ee746cd73f9f1", + "oid": 208508936091, + "crossed": true, + "fee": "0.031397", + "tid": 679946254442197, + "cloid": "0x00000000000000000000001602000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.18", + "sz": "8.62", + "side": "B", + "time": 1761072415963, + "startPosition": "-6778.35", + "dir": "Close Short", + "closedPnl": "2.523074", + "hash": "0x16663bf40e70200717df042ded900c02031b00d9a9733ed9ba2ee746cd73f9f1", + "oid": 208508936091, + "crossed": true, + "fee": "0.351504", + "tid": 709001246816559, + "cloid": "0x00000000000000000000001602000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "19.16", + "side": "B", + "time": 1761072419912, + "startPosition": "-6769.73", + "dir": "Close Short", + "closedPnl": "6.757732", + "hash": "0x916a00b59b97110092e3042ded90440206a5009b369a2fd23532ac085a9aeaeb", + "oid": 208508979066, + "crossed": true, + "fee": "0.781061", + "tid": 518700497797208, + "cloid": "0x00000000000000000000001602000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "6.58", + "side": "B", + "time": 1761072419912, + "startPosition": "-6750.57", + "dir": "Close Short", + "closedPnl": "2.320766", + "hash": "0x916a00b59b97110092e3042ded90440206a5009b369a2fd23532ac085a9aeaeb", + "oid": 208508979066, + "crossed": true, + "fee": "0.268235", + "tid": 846636165963420, + "cloid": "0x00000000000000000000001602000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.11", + "sz": "0.13", + "side": "B", + "time": 1761072424071, + "startPosition": "-6743.99", + "dir": "Close Short", + "closedPnl": "0.047151", + "hash": "0x65afc7253df6a3ac6729042ded907a02062d000ad8f9c27e09787277fcfa7d97", + "oid": 208509028704, + "crossed": true, + "fee": "0.005299", + "tid": 328574867041085, + "cloid": "0x00000000000000000000001602000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.13", + "sz": "0.85", + "side": "B", + "time": 1761072424071, + "startPosition": "-6743.86", + "dir": "Close Short", + "closedPnl": "0.291295", + "hash": "0x65afc7253df6a3ac6729042ded907a02062d000ad8f9c27e09787277fcfa7d97", + "oid": 208509028704, + "crossed": true, + "fee": "0.034652", + "tid": 942946579479627, + "cloid": "0x00000000000000000000001602000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.13", + "sz": "0.13", + "side": "B", + "time": 1761072424071, + "startPosition": "-6743.01", + "dir": "Close Short", + "closedPnl": "0.044551", + "hash": "0x65afc7253df6a3ac6729042ded907a02062d000ad8f9c27e09787277fcfa7d97", + "oid": 208509028704, + "crossed": true, + "fee": "0.005299", + "tid": 762665199362466, + "cloid": "0x00000000000000000000001602000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.14", + "sz": "12.0", + "side": "B", + "time": 1761072424071, + "startPosition": "-6742.88", + "dir": "Close Short", + "closedPnl": "3.9924", + "hash": "0x65afc7253df6a3ac6729042ded907a02062d000ad8f9c27e09787277fcfa7d97", + "oid": 208509028704, + "crossed": true, + "fee": "0.489232", + "tid": 932992280991034, + "cloid": "0x00000000000000000000001602000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.15", + "sz": "12.64", + "side": "B", + "time": 1761072424071, + "startPosition": "-6730.88", + "dir": "Close Short", + "closedPnl": "4.078928", + "hash": "0x65afc7253df6a3ac6729042ded907a02062d000ad8f9c27e09787277fcfa7d97", + "oid": 208509028704, + "crossed": true, + "fee": "0.515351", + "tid": 33641173025052, + "cloid": "0x00000000000000000000001602000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.15", + "sz": "0.85", + "side": "B", + "time": 1761072426507, + "startPosition": "-6718.24", + "dir": "Close Short", + "closedPnl": "0.274295", + "hash": "0xe8c82469e4934e8eea41042ded9099020b4c004f7f966d608c90cfbca3972879", + "oid": 208509073856, + "crossed": true, + "fee": "0.034655", + "tid": 155311404067310, + "cloid": "0x00000000000000000000001602000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.16", + "sz": "0.13", + "side": "B", + "time": 1761072426507, + "startPosition": "-6717.39", + "dir": "Close Short", + "closedPnl": "0.040651", + "hash": "0xe8c82469e4934e8eea41042ded9099020b4c004f7f966d608c90cfbca3972879", + "oid": 208509073856, + "crossed": true, + "fee": "0.0053", + "tid": 1101023081340086, + "cloid": "0x00000000000000000000001602000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.17", + "sz": "24.76", + "side": "B", + "time": 1761072426507, + "startPosition": "-6717.26", + "dir": "Close Short", + "closedPnl": "7.494852", + "hash": "0xe8c82469e4934e8eea41042ded9099020b4c004f7f966d608c90cfbca3972879", + "oid": 208509073856, + "crossed": true, + "fee": "1.009606", + "tid": 417363299797024, + "cloid": "0x00000000000000000000001602000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.14", + "sz": "25.74", + "side": "B", + "time": 1761072429169, + "startPosition": "-6692.5", + "dir": "Close Short", + "closedPnl": "8.563698", + "hash": "0x4394125debf3938f450d042ded90ba0202cd004386f6b261e75cbdb0aaf76d79", + "oid": 208509114506, + "crossed": true, + "fee": "1.049404", + "tid": 163550430647094, + "cloid": "0x00000000000000000000001602000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "25.75", + "side": "B", + "time": 1761072430334, + "startPosition": "-6666.76", + "dir": "Close Short", + "closedPnl": "9.597025", + "hash": "0xd240fc6cd865403ed3ba042ded90ca0205dc005273685f107609a7bf97691a29", + "oid": 208509132434, + "crossed": true, + "fee": "1.049595", + "tid": 567458853817203, + "cloid": "0x00000000000000000000001602000136", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "14.99", + "side": "B", + "time": 1761072440348, + "startPosition": "-6641.01", + "dir": "Close Short", + "closedPnl": "5.586773", + "hash": "0x5c1ff29ea22c880c5d99042ded914d02010900843d2fa6deffe89df1612061f6", + "oid": 208509207719, + "crossed": true, + "fee": "0.611007", + "tid": 386510074330166, + "cloid": "0x00000000000000000000001602000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "2.9", + "side": "B", + "time": 1761072440348, + "startPosition": "-6626.02", + "dir": "Close Short", + "closedPnl": "1.08083", + "hash": "0x5c1ff29ea22c880c5d99042ded914d02010900843d2fa6deffe89df1612061f6", + "oid": 208509207719, + "crossed": true, + "fee": "0.118206", + "tid": 371372514006435, + "cloid": "0x00000000000000000000001602000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "7.86", + "side": "B", + "time": 1761072440348, + "startPosition": "-6623.12", + "dir": "Close Short", + "closedPnl": "2.929422", + "hash": "0x5c1ff29ea22c880c5d99042ded914d02010900843d2fa6deffe89df1612061f6", + "oid": 208509207719, + "crossed": true, + "fee": "0.320381", + "tid": 908060358785647, + "cloid": "0x00000000000000000000001602000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "25.75", + "side": "B", + "time": 1761072441555, + "startPosition": "-6615.26", + "dir": "Close Short", + "closedPnl": "9.597025", + "hash": "0x287dd5d17931dcec29f7042ded915f0202c800b71434fbbecc4681243835b6d6", + "oid": 208509216284, + "crossed": true, + "fee": "1.049595", + "tid": 654716025257283, + "cloid": "0x00000000000000000000001602000138", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "25.75", + "side": "B", + "time": 1761072452804, + "startPosition": "-6589.51", + "dir": "Close Short", + "closedPnl": "10.112025", + "hash": "0x2f3b46d2c2e7064330b5042ded91ec02019a00b85dea2515d303f22581eae02d", + "oid": 208509279698, + "crossed": true, + "fee": "1.049487", + "tid": 1089787012675843, + "cloid": "0x00000000000000000000001602000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.07", + "sz": "24.0", + "side": "B", + "time": 1761072456802, + "startPosition": "-6563.76", + "dir": "Close Short", + "closedPnl": "9.6648", + "hash": "0xbc4ae47d9095e1a9bdc4042ded922002082900632b99007b60138fd04f99bb94", + "oid": 208509313763, + "crossed": true, + "fee": "0.978112", + "tid": 324195908710855, + "cloid": "0x00000000000000000000001602000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.07", + "sz": "1.75", + "side": "B", + "time": 1761072456802, + "startPosition": "-6539.76", + "dir": "Close Short", + "closedPnl": "0.704725", + "hash": "0xbc4ae47d9095e1a9bdc4042ded922002082900632b99007b60138fd04f99bb94", + "oid": 208509313763, + "crossed": true, + "fee": "0.07132", + "tid": 514561621048924, + "cloid": "0x00000000000000000000001602000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "0.13", + "side": "B", + "time": 1761072460760, + "startPosition": "-6538.01", + "dir": "Close Short", + "closedPnl": "0.051051", + "hash": "0xa776631efc9e1577a8f0042ded9251020e340004979134494b3f0e71bb91ef62", + "oid": 208509361087, + "crossed": true, + "fee": "0.005298", + "tid": 318860608399511, + "cloid": "0x00000000000000000000001602000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "0.13", + "side": "B", + "time": 1761072460760, + "startPosition": "-6537.88", + "dir": "Close Short", + "closedPnl": "0.048451", + "hash": "0xa776631efc9e1577a8f0042ded9251020e340004979134494b3f0e71bb91ef62", + "oid": 208509361087, + "crossed": true, + "fee": "0.005298", + "tid": 263156510980273, + "cloid": "0x00000000000000000000001602000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.11", + "sz": "0.13", + "side": "B", + "time": 1761072460760, + "startPosition": "-6537.75", + "dir": "Close Short", + "closedPnl": "0.047151", + "hash": "0xa776631efc9e1577a8f0042ded9251020e340004979134494b3f0e71bb91ef62", + "oid": 208509361087, + "crossed": true, + "fee": "0.005299", + "tid": 789030543115865, + "cloid": "0x00000000000000000000001602000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "25.36", + "side": "B", + "time": 1761072460760, + "startPosition": "-6537.62", + "dir": "Close Short", + "closedPnl": "8.944472", + "hash": "0xa776631efc9e1577a8f0042ded9251020e340004979134494b3f0e71bb91ef62", + "oid": 208509361087, + "crossed": true, + "fee": "1.033805", + "tid": 296049537941864, + "cloid": "0x00000000000000000000001602000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.13", + "sz": "25.74", + "side": "B", + "time": 1761072463600, + "startPosition": "-6512.26", + "dir": "Close Short", + "closedPnl": "8.821098", + "hash": "0x024272dcd369cc9f03bc042ded92720202c400c26e6ceb71a60b1e2f926da689", + "oid": 208509410923, + "crossed": true, + "fee": "1.04935", + "tid": 1073021542905154, + "cloid": "0x00000000000000000000001602000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.16", + "sz": "25.74", + "side": "B", + "time": 1761072474375, + "startPosition": "-6486.52", + "dir": "Close Short", + "closedPnl": "8.048898", + "hash": "0xcec1e0a085abd9f9d03b042ded92ea020130008620aef8cb728a8bf344afb3e4", + "oid": 208509542379, + "crossed": true, + "fee": "1.049512", + "tid": 725844229291500, + "cloid": "0x00000000000000000000001602000143", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.19", + "sz": "0.13", + "side": "B", + "time": 1761072477766, + "startPosition": "-6460.78", + "dir": "Close Short", + "closedPnl": "0.036751", + "hash": "0x75276591775937c376a1042ded93110203000077125c569518f010e4365d11ae", + "oid": 208509583794, + "crossed": true, + "fee": "0.005301", + "tid": 651550096906454, + "cloid": "0x00000000000000000000001602000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.19", + "sz": "25.61", + "side": "B", + "time": 1761072477766, + "startPosition": "-6460.65", + "dir": "Close Short", + "closedPnl": "7.239947", + "hash": "0x75276591775937c376a1042ded93110203000077125c569518f010e4365d11ae", + "oid": 208509583794, + "crossed": true, + "fee": "1.044373", + "tid": 621428300966711, + "cloid": "0x00000000000000000000001602000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.19", + "sz": "25.73", + "side": "B", + "time": 1761072479639, + "startPosition": "-6435.04", + "dir": "Close Short", + "closedPnl": "7.273871", + "hash": "0x72f920e47a660a2d7472042ded93250201f500ca156928ff16c1cc373969e418", + "oid": 208509607653, + "crossed": true, + "fee": "1.049266", + "tid": 644395081270567, + "cloid": "0x00000000000000000000001602000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.2", + "sz": "0.68", + "side": "B", + "time": 1761072481500, + "startPosition": "-6409.31", + "dir": "Close Short", + "closedPnl": "0.185436", + "hash": "0x98a1e8c624c67e809a1b042ded933c0204d800abbfc99d523c6a9418e3ca586b", + "oid": 208509633133, + "crossed": true, + "fee": "0.027731", + "tid": 666820560779593, + "cloid": "0x00000000000000000000001602000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.21", + "sz": "0.13", + "side": "B", + "time": 1761072481500, + "startPosition": "-6408.63", + "dir": "Close Short", + "closedPnl": "0.034151", + "hash": "0x98a1e8c624c67e809a1b042ded933c0204d800abbfc99d523c6a9418e3ca586b", + "oid": 208509633133, + "crossed": true, + "fee": "0.005301", + "tid": 62326223751607, + "cloid": "0x00000000000000000000001602000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.23", + "sz": "0.13", + "side": "B", + "time": 1761072481500, + "startPosition": "-6408.5", + "dir": "Close Short", + "closedPnl": "0.031551", + "hash": "0x98a1e8c624c67e809a1b042ded933c0204d800abbfc99d523c6a9418e3ca586b", + "oid": 208509633133, + "crossed": true, + "fee": "0.005302", + "tid": 196223547943529, + "cloid": "0x00000000000000000000001602000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.24", + "sz": "24.79", + "side": "B", + "time": 1761072481500, + "startPosition": "-6408.37", + "dir": "Close Short", + "closedPnl": "5.768633", + "hash": "0x98a1e8c624c67e809a1b042ded933c0204d800abbfc99d523c6a9418e3ca586b", + "oid": 208509633133, + "crossed": true, + "fee": "1.011194", + "tid": 385584836991256, + "cloid": "0x00000000000000000000001602000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.32", + "sz": "0.1", + "side": "B", + "time": 1761072483194, + "startPosition": "-6383.58", + "dir": "Close Short", + "closedPnl": "0.01527", + "hash": "0x1e70c1c9b7efa7ac1fea042ded935002077600af52e2c67ec2396d1c76e38196", + "oid": 208509673148, + "crossed": true, + "fee": "0.00408", + "tid": 592902666075508, + "cloid": "0x00000000000000000000001602000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.32", + "sz": "0.85", + "side": "B", + "time": 1761072483194, + "startPosition": "-6383.48", + "dir": "Close Short", + "closedPnl": "0.129795", + "hash": "0x1e70c1c9b7efa7ac1fea042ded935002077600af52e2c67ec2396d1c76e38196", + "oid": 208509673148, + "crossed": true, + "fee": "0.034686", + "tid": 945574417438657, + "cloid": "0x00000000000000000000001602000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.33", + "sz": "5.1", + "side": "B", + "time": 1761072483194, + "startPosition": "-6382.63", + "dir": "Close Short", + "closedPnl": "0.72777", + "hash": "0x1e70c1c9b7efa7ac1fea042ded935002077600af52e2c67ec2396d1c76e38196", + "oid": 208509673148, + "crossed": true, + "fee": "0.208127", + "tid": 338477922992667, + "cloid": "0x00000000000000000000001602000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.33", + "sz": "0.13", + "side": "B", + "time": 1761072483194, + "startPosition": "-6377.53", + "dir": "Close Short", + "closedPnl": "0.018551", + "hash": "0x1e70c1c9b7efa7ac1fea042ded935002077600af52e2c67ec2396d1c76e38196", + "oid": 208509673148, + "crossed": true, + "fee": "0.005305", + "tid": 1057708162031426, + "cloid": "0x00000000000000000000001602000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.33", + "sz": "6.23", + "side": "B", + "time": 1761072483194, + "startPosition": "-6377.4", + "dir": "Close Short", + "closedPnl": "0.889021", + "hash": "0x1e70c1c9b7efa7ac1fea042ded935002077600af52e2c67ec2396d1c76e38196", + "oid": 208509673148, + "crossed": true, + "fee": "0.254241", + "tid": 331940612628951, + "cloid": "0x00000000000000000000001602000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.33", + "sz": "13.31", + "side": "B", + "time": 1761072483194, + "startPosition": "-6371.17", + "dir": "Close Short", + "closedPnl": "1.899337", + "hash": "0x1e70c1c9b7efa7ac1fea042ded935002077600af52e2c67ec2396d1c76e38196", + "oid": 208509673148, + "crossed": true, + "fee": "0.543171", + "tid": 882240008827495, + "cloid": "0x00000000000000000000001602000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.41", + "sz": "25.71", + "side": "B", + "time": 1761072485246, + "startPosition": "-6357.86", + "dir": "Close Short", + "closedPnl": "1.612017", + "hash": "0x7740086a067ddba778b9042ded936902130a004fa170fa791b08b3bcc571b592", + "oid": 208509727602, + "crossed": true, + "fee": "1.049639", + "tid": 744593678754931, + "cloid": "0x00000000000000000000001602000148", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.41", + "sz": "0.94", + "side": "B", + "time": 1761072496108, + "startPosition": "-6332.15", + "dir": "Close Short", + "closedPnl": "0.058938", + "hash": "0x95a2951452503900971c042ded93f402028100f9ed5357d2396b4067115412eb", + "oid": 208509893492, + "crossed": true, + "fee": "0.038376", + "tid": 229268898700919, + "cloid": "0x00000000000000000000001602000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.41", + "sz": "24.76", + "side": "B", + "time": 1761072496108, + "startPosition": "-6331.21", + "dir": "Close Short", + "closedPnl": "1.552452", + "hash": "0x95a2951452503900971c042ded93f402028100f9ed5357d2396b4067115412eb", + "oid": 208509893492, + "crossed": true, + "fee": "1.010854", + "tid": 561230571004475, + "cloid": "0x00000000000000000000001602000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.39", + "sz": "25.71", + "side": "B", + "time": 1761072501814, + "startPosition": "-6306.45", + "dir": "Close Short", + "closedPnl": "2.126217", + "hash": "0xad0b99961c946757ae85042ded9437020436007bb797862950d444e8db984142", + "oid": 208509946700, + "crossed": true, + "fee": "1.049531", + "tid": 1039199729320334, + "cloid": "0x00000000000000000000001602000150", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.47", + "sz": "25.7", + "side": "B", + "time": 1761072503718, + "startPosition": "-6280.74", + "dir": "Close Short", + "closedPnl": "0.06939", + "hash": "0xb67c5c21db06c8beb7f6042ded944e020d0200077609e7905a4507749a0aa2a9", + "oid": 208509976996, + "crossed": true, + "fee": "1.049554", + "tid": 967025541011414, + "cloid": "0x00000000000000000000001602000151", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.47", + "sz": "13.77", + "side": "B", + "time": 1761072506889, + "startPosition": "-6255.04", + "dir": "Close Short", + "closedPnl": "0.037179", + "hash": "0x0d3d1053aa71b6ec0eb6042ded947602034900394574d5beb105bba6697590d6", + "oid": 208510028318, + "crossed": true, + "fee": "0.562348", + "tid": 1061617424549306, + "cloid": "0x00000000000000000000001602000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.48", + "sz": "11.93", + "side": "B", + "time": 1761072506889, + "startPosition": "-6241.27", + "dir": "Close Short", + "closedPnl": "-0.087089", + "hash": "0x0d3d1053aa71b6ec0eb6042ded947602034900394574d5beb105bba6697590d6", + "oid": 208510028318, + "crossed": true, + "fee": "0.48723", + "tid": 619620516679852, + "cloid": "0x00000000000000000000001602000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.45", + "sz": "25.7", + "side": "B", + "time": 1761072508430, + "startPosition": "-6229.34", + "dir": "Close Short", + "closedPnl": "0.58339", + "hash": "0x66b19a88336f82bb682b042ded94880207d6006dce62a18d0a7a45daf2635ca6", + "oid": 208510053337, + "crossed": true, + "fee": "1.049446", + "tid": 968398288299788, + "cloid": "0x00000000000000000000001602000153", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.44", + "sz": "8.1", + "side": "B", + "time": 1761072509774, + "startPosition": "-6203.64", + "dir": "Close Short", + "closedPnl": "0.26487", + "hash": "0x17469de28b66ab8e18c0042ded949902034100c82669ca60bb0f49354a6a8578", + "oid": 208510071766, + "crossed": true, + "fee": "0.330742", + "tid": 903524022100742, + "cloid": "0x00000000000000000000001602000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.44", + "sz": "17.6", + "side": "B", + "time": 1761072509774, + "startPosition": "-6195.54", + "dir": "Close Short", + "closedPnl": "0.57552", + "hash": "0x17469de28b66ab8e18c0042ded949902034100c82669ca60bb0f49354a6a8578", + "oid": 208510071766, + "crossed": true, + "fee": "0.71865", + "tid": 294297955233683, + "cloid": "0x00000000000000000000001602000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.41", + "sz": "25.71", + "side": "B", + "time": 1761072511127, + "startPosition": "-6177.94", + "dir": "Close Short", + "closedPnl": "1.612017", + "hash": "0xd27ccb0e186a6a63d3f6042ded94a902084100f3b36d893576457660d76e444e", + "oid": 208510088646, + "crossed": true, + "fee": "1.049639", + "tid": 418766794961016, + "cloid": "0x00000000000000000000001602000155", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.41", + "sz": "25.71", + "side": "B", + "time": 1761072512705, + "startPosition": "-6152.23", + "dir": "Close Short", + "closedPnl": "1.612017", + "hash": "0x8dc3cfbe773e500f8f3d042ded94bc02021700a412316ee1318c7b11363229fa", + "oid": 208510105682, + "crossed": true, + "fee": "1.049639", + "tid": 244302922844010, + "cloid": "0x00000000000000000000001602000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.39", + "sz": "25.7", + "side": "B", + "time": 1761072519833, + "startPosition": "-6126.52", + "dir": "Close Short", + "closedPnl": "2.12539", + "hash": "0x99b92bc4c2a91d5b9b32042ded951402012e00aa5dac3c2d3d81d71781acf746", + "oid": 208510184091, + "crossed": true, + "fee": "1.049122", + "tid": 500392347218643, + "cloid": "0x00000000000000000000001602000157", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.4", + "sz": "25.7", + "side": "B", + "time": 1761072522848, + "startPosition": "-6100.82", + "dir": "Close Short", + "closedPnl": "1.86839", + "hash": "0x025f63ff5b70da9f03d9042ded95410201a200e4f673f971a6280f521a74b489", + "oid": 208510217953, + "crossed": true, + "fee": "1.049176", + "tid": 1018283674017234, + "cloid": "0x00000000000000000000001602000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.44", + "sz": "10.28", + "side": "B", + "time": 1761072529766, + "startPosition": "-6075.12", + "dir": "Close Short", + "closedPnl": "0.336156", + "hash": "0x7b0eb0fd43e4f4d27c88042ded959602085800e2dee813a41ed75c5002e8cebd", + "oid": 208510277515, + "crossed": true, + "fee": "0.419757", + "tid": 845699035712535, + "cloid": "0x00000000000000000000001602000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.45", + "sz": "15.42", + "side": "B", + "time": 1761072529766, + "startPosition": "-6064.84", + "dir": "Close Short", + "closedPnl": "0.350034", + "hash": "0x7b0eb0fd43e4f4d27c88042ded959602085800e2dee813a41ed75c5002e8cebd", + "oid": 208510277515, + "crossed": true, + "fee": "0.629667", + "tid": 299048983212124, + "cloid": "0x00000000000000000000001602000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.41", + "sz": "17.91", + "side": "B", + "time": 1761072531735, + "startPosition": "-6049.42", + "dir": "Close Short", + "closedPnl": "1.122957", + "hash": "0xd4bbbb712e752defd635042ded95ad0207360056c9784cc1788466c3ed7907da", + "oid": 208510309855, + "crossed": true, + "fee": "0.731195", + "tid": 493249006935654, + "cloid": "0x00000000000000000000001602000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.41", + "sz": "7.79", + "side": "B", + "time": 1761072531735, + "startPosition": "-6031.51", + "dir": "Close Short", + "closedPnl": "0.488433", + "hash": "0xd4bbbb712e752defd635042ded95ad0207360056c9784cc1788466c3ed7907da", + "oid": 208510309855, + "crossed": true, + "fee": "0.318035", + "tid": 488251023231348, + "cloid": "0x00000000000000000000001602000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.38", + "sz": "25.71", + "side": "B", + "time": 1761072532976, + "startPosition": "-6023.72", + "dir": "Close Short", + "closedPnl": "2.383317", + "hash": "0x892596e3520b18528a9f042ded95bd02048700c8ed0e37242cee4236110ef23d", + "oid": 208510325455, + "crossed": true, + "fee": "1.049477", + "tid": 341326338987588, + "cloid": "0x00000000000000000000001602000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.39", + "sz": "0.13", + "side": "B", + "time": 1761072537744, + "startPosition": "-5998.01", + "dir": "Close Short", + "closedPnl": "0.010751", + "hash": "0x94bdd858c81df0149637042ded95f4020c3d003e63110ee6388683ab8711c9ff", + "oid": 208510374471, + "crossed": true, + "fee": "0.005306", + "tid": 8666725427025, + "cloid": "0x00000000000000000000001602000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.39", + "sz": "0.77", + "side": "B", + "time": 1761072537744, + "startPosition": "-5997.88", + "dir": "Close Short", + "closedPnl": "0.063679", + "hash": "0x94bdd858c81df0149637042ded95f4020c3d003e63110ee6388683ab8711c9ff", + "oid": 208510374471, + "crossed": true, + "fee": "0.031432", + "tid": 1002993996516796, + "cloid": "0x00000000000000000000001602000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.4", + "sz": "0.13", + "side": "B", + "time": 1761072537744, + "startPosition": "-5997.11", + "dir": "Close Short", + "closedPnl": "0.009451", + "hash": "0x94bdd858c81df0149637042ded95f4020c3d003e63110ee6388683ab8711c9ff", + "oid": 208510374471, + "crossed": true, + "fee": "0.005307", + "tid": 819536860592544, + "cloid": "0x00000000000000000000001602000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.4", + "sz": "24.68", + "side": "B", + "time": 1761072537744, + "startPosition": "-5996.98", + "dir": "Close Short", + "closedPnl": "1.794236", + "hash": "0x94bdd858c81df0149637042ded95f4020c3d003e63110ee6388683ab8711c9ff", + "oid": 208510374471, + "crossed": true, + "fee": "1.007536", + "tid": 577272710158665, + "cloid": "0x00000000000000000000001602000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.34", + "sz": "8.93", + "side": "B", + "time": 1761072542530, + "startPosition": "-5972.3", + "dir": "Close Short", + "closedPnl": "1.185011", + "hash": "0x02bf40b8414d9ce30438042ded962d02056b009ddc40bbb5a687ec0b004176cd", + "oid": 208510429771, + "crossed": true, + "fee": "0.364445", + "tid": 911681143143790, + "cloid": "0x00000000000000000000001602000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.34", + "sz": "16.78", + "side": "B", + "time": 1761072542530, + "startPosition": "-5963.37", + "dir": "Close Short", + "closedPnl": "2.226706", + "hash": "0x02bf40b8414d9ce30438042ded962d02056b009ddc40bbb5a687ec0b004176cd", + "oid": 208510429771, + "crossed": true, + "fee": "0.684815", + "tid": 539826845463116, + "cloid": "0x00000000000000000000001602000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.37", + "sz": "10.28", + "side": "B", + "time": 1761072545155, + "startPosition": "-5946.59", + "dir": "Close Short", + "closedPnl": "1.055756", + "hash": "0x26f681a7f445d5d92870042ded965002022c008d8f48f4abcabf2cfab349afc3", + "oid": 208510452196, + "crossed": true, + "fee": "0.419605", + "tid": 610982224473670, + "cloid": "0x00000000000000000000001602000164", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.37", + "sz": "0.77", + "side": "B", + "time": 1761072545155, + "startPosition": "-5936.31", + "dir": "Close Short", + "closedPnl": "0.079079", + "hash": "0x26f681a7f445d5d92870042ded965002022c008d8f48f4abcabf2cfab349afc3", + "oid": 208510452196, + "crossed": true, + "fee": "0.031429", + "tid": 973683941319313, + "cloid": "0x00000000000000000000001602000164", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.38", + "sz": "14.66", + "side": "B", + "time": 1761072545155, + "startPosition": "-5935.54", + "dir": "Close Short", + "closedPnl": "1.358982", + "hash": "0x26f681a7f445d5d92870042ded965002022c008d8f48f4abcabf2cfab349afc3", + "oid": 208510452196, + "crossed": true, + "fee": "0.598418", + "tid": 829779105243091, + "cloid": "0x00000000000000000000001602000164", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.34", + "sz": "15.18", + "side": "B", + "time": 1761072549620, + "startPosition": "-5920.88", + "dir": "Close Short", + "closedPnl": "2.014386", + "hash": "0x47e29735b35b3b3a495c042ded968802032d001b4e5e5a0cebab4288725f1524", + "oid": 208510507350, + "crossed": true, + "fee": "0.619517", + "tid": 590057454085709, + "cloid": "0x00000000000000000000001602000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.34", + "sz": "10.54", + "side": "B", + "time": 1761072549620, + "startPosition": "-5905.7", + "dir": "Close Short", + "closedPnl": "1.398658", + "hash": "0x47e29735b35b3b3a495c042ded968802032d001b4e5e5a0cebab4288725f1524", + "oid": 208510507350, + "crossed": true, + "fee": "0.430152", + "tid": 233150958764744, + "cloid": "0x00000000000000000000001602000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.36", + "sz": "25.71", + "side": "B", + "time": 1761072551032, + "startPosition": "-5895.16", + "dir": "Close Short", + "closedPnl": "2.897517", + "hash": "0xef717b6cb3e5439bf0eb042ded969b02017f00524ee8626d933a26bf72e91d86", + "oid": 208510526677, + "crossed": true, + "fee": "1.049369", + "tid": 667637755098398, + "cloid": "0x00000000000000000000001602000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.36", + "sz": "25.71", + "side": "B", + "time": 1761072552682, + "startPosition": "-5869.45", + "dir": "Close Short", + "closedPnl": "2.897517", + "hash": "0xd0ad2704cedb275ed226042ded96b302018e00ea69de46307475d2578ddf0149", + "oid": 208510540770, + "crossed": true, + "fee": "1.049369", + "tid": 785336861139593, + "cloid": "0x00000000000000000000001602000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.37", + "sz": "25.71", + "side": "B", + "time": 1761072555078, + "startPosition": "-5843.74", + "dir": "Close Short", + "closedPnl": "2.640417", + "hash": "0xdd5e992c8f23bda5ded8042ded96d302023b00122a26dc778127447f4e279790", + "oid": 208510580478, + "crossed": true, + "fee": "1.049423", + "tid": 1060341563348689, + "cloid": "0x00000000000000000000001602000168", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.37", + "sz": "25.71", + "side": "B", + "time": 1761072564964, + "startPosition": "-5818.03", + "dir": "Close Short", + "closedPnl": "2.640417", + "hash": "0x65e142346806da49675a042ded975602012a001a0309f91b09a9ed87270ab434", + "oid": 208510680804, + "crossed": true, + "fee": "1.049423", + "tid": 689519346107172, + "cloid": "0x00000000000000000000001602000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.4", + "sz": "0.13", + "side": "B", + "time": 1761072570161, + "startPosition": "-5792.32", + "dir": "Close Short", + "closedPnl": "0.009451", + "hash": "0xe90f80daa5d4be9cea89042ded979902098000c040d7dd6e8cd82c2d64d89887", + "oid": 208510746951, + "crossed": true, + "fee": "0.005307", + "tid": 172907214203103, + "cloid": "0x00000000000000000000001602000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.42", + "sz": "0.13", + "side": "B", + "time": 1761072570161, + "startPosition": "-5792.19", + "dir": "Close Short", + "closedPnl": "0.006851", + "hash": "0xe90f80daa5d4be9cea89042ded979902098000c040d7dd6e8cd82c2d64d89887", + "oid": 208510746951, + "crossed": true, + "fee": "0.005307", + "tid": 375028227486935, + "cloid": "0x00000000000000000000001602000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.42", + "sz": "0.15", + "side": "B", + "time": 1761072570161, + "startPosition": "-5792.06", + "dir": "Close Short", + "closedPnl": "0.007905", + "hash": "0xe90f80daa5d4be9cea89042ded979902098000c040d7dd6e8cd82c2d64d89887", + "oid": 208510746951, + "crossed": true, + "fee": "0.006124", + "tid": 134658185701795, + "cloid": "0x00000000000000000000001602000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.42", + "sz": "12.0", + "side": "B", + "time": 1761072570161, + "startPosition": "-5791.91", + "dir": "Close Short", + "closedPnl": "0.6324", + "hash": "0xe90f80daa5d4be9cea89042ded979902098000c040d7dd6e8cd82c2d64d89887", + "oid": 208510746951, + "crossed": true, + "fee": "0.489938", + "tid": 929008161396710, + "cloid": "0x00000000000000000000001602000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.43", + "sz": "11.86", + "side": "B", + "time": 1761072570161, + "startPosition": "-5779.91", + "dir": "Close Short", + "closedPnl": "0.506422", + "hash": "0xe90f80daa5d4be9cea89042ded979902098000c040d7dd6e8cd82c2d64d89887", + "oid": 208510746951, + "crossed": true, + "fee": "0.484247", + "tid": 185861298091005, + "cloid": "0x00000000000000000000001602000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.43", + "sz": "1.44", + "side": "B", + "time": 1761072570161, + "startPosition": "-5768.05", + "dir": "Close Short", + "closedPnl": "0.061488", + "hash": "0xe90f80daa5d4be9cea89042ded979902098000c040d7dd6e8cd82c2d64d89887", + "oid": 208510746951, + "crossed": true, + "fee": "0.058795", + "tid": 61594110059709, + "cloid": "0x00000000000000000000001602000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.39", + "sz": "25.71", + "side": "B", + "time": 1761072571684, + "startPosition": "-5766.61", + "dir": "Close Short", + "closedPnl": "2.126217", + "hash": "0x36ddb8436cd88d1d3857042ded97ac0205d1002907dbabefdaa663962bdc6707", + "oid": 208510769051, + "crossed": true, + "fee": "1.049531", + "tid": 543047641780994, + "cloid": "0x00000000000000000000001602000171", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.37", + "sz": "25.71", + "side": "B", + "time": 1761072573385, + "startPosition": "-5740.9", + "dir": "Close Short", + "closedPnl": "2.640417", + "hash": "0x5cb5d9d01be20caf5e2f042ded97c10203c100b5b6e52b81007e8522dae5e69a", + "oid": 208510795283, + "crossed": true, + "fee": "1.049423", + "tid": 1055743992486221, + "cloid": "0x00000000000000000000001602000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.41", + "sz": "10.28", + "side": "B", + "time": 1761072575872, + "startPosition": "-5715.19", + "dir": "Close Short", + "closedPnl": "0.644556", + "hash": "0xea586de66a1dbbcbebd2042ded97e00204c100cc0510da9d8e211939291195b6", + "oid": 208510818536, + "crossed": true, + "fee": "0.419692", + "tid": 319256524204883, + "cloid": "0x00000000000000000000001602000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.41", + "sz": "15.43", + "side": "B", + "time": 1761072575872, + "startPosition": "-5704.91", + "dir": "Close Short", + "closedPnl": "0.967461", + "hash": "0xea586de66a1dbbcbebd2042ded97e00204c100cc0510da9d8e211939291195b6", + "oid": 208510818536, + "crossed": true, + "fee": "0.629946", + "tid": 61235328405150, + "cloid": "0x00000000000000000000001602000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.43", + "sz": "1.57", + "side": "B", + "time": 1761072577289, + "startPosition": "-5689.48", + "dir": "Close Short", + "closedPnl": "0.067039", + "hash": "0x93c995fa866df5d89543042ded97f10203b900e0216114aa3792414d4561cfc3", + "oid": 208510846995, + "crossed": true, + "fee": "0.064103", + "tid": 26089114149152, + "cloid": "0x00000000000000000000001602000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.44", + "sz": "10.28", + "side": "B", + "time": 1761072577289, + "startPosition": "-5687.91", + "dir": "Close Short", + "closedPnl": "0.336156", + "hash": "0x93c995fa866df5d89543042ded97f10203b900e0216114aa3792414d4561cfc3", + "oid": 208510846995, + "crossed": true, + "fee": "0.419757", + "tid": 1035565153391498, + "cloid": "0x00000000000000000000001602000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.45", + "sz": "13.85", + "side": "B", + "time": 1761072577289, + "startPosition": "-5677.63", + "dir": "Close Short", + "closedPnl": "0.314395", + "hash": "0x93c995fa866df5d89543042ded97f10203b900e0216114aa3792414d4561cfc3", + "oid": 208510846995, + "crossed": true, + "fee": "0.565557", + "tid": 933258181597979, + "cloid": "0x00000000000000000000001602000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.45", + "sz": "25.7", + "side": "B", + "time": 1761072578883, + "startPosition": "-5663.78", + "dir": "Close Short", + "closedPnl": "0.58339", + "hash": "0x511aa90c6035c5ce5294042ded980401bf00c0f1fb38e4a0f4e3545f1f399fb8", + "oid": 208510867676, + "crossed": true, + "fee": "1.049446", + "tid": 690476151873362, + "cloid": "0x00000000000000000000001602000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.43", + "sz": "25.7", + "side": "B", + "time": 1761072580316, + "startPosition": "-5638.08", + "dir": "Close Short", + "closedPnl": "1.09739", + "hash": "0x5cb4c6daa929a2d25e2e042ded981602014c00c0442cc1a4007d722d682d7cbd", + "oid": 208510877972, + "crossed": true, + "fee": "1.049338", + "tid": 100068443895314, + "cloid": "0x00000000000000000000001602000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.42", + "sz": "14.54", + "side": "B", + "time": 1761072582537, + "startPosition": "-5612.38", + "dir": "Close Short", + "closedPnl": "0.766258", + "hash": "0x576168189097d8b058db042ded983602033b00fe2b9af782fb2a136b4f9bb29a", + "oid": 208510903783, + "crossed": true, + "fee": "0.593642", + "tid": 776645371269938, + "cloid": "0x00000000000000000000001602000177", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.42", + "sz": "11.16", + "side": "B", + "time": 1761072582537, + "startPosition": "-5597.84", + "dir": "Close Short", + "closedPnl": "0.588132", + "hash": "0x576168189097d8b058db042ded983602033b00fe2b9af782fb2a136b4f9bb29a", + "oid": 208510903783, + "crossed": true, + "fee": "0.455642", + "tid": 367722823377499, + "cloid": "0x00000000000000000000001602000177", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.39", + "sz": "25.71", + "side": "B", + "time": 1761072583876, + "startPosition": "-5586.68", + "dir": "Close Short", + "closedPnl": "2.126217", + "hash": "0x1f14821a446e9dcc208e042ded984702026b00ffdf61bc9ec2dd2d6d036277b6", + "oid": 208510921273, + "crossed": true, + "fee": "1.049531", + "tid": 38282577996279, + "cloid": "0x00000000000000000000001602000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.38", + "sz": "14.95", + "side": "B", + "time": 1761072586211, + "startPosition": "-5560.97", + "dir": "Close Short", + "closedPnl": "1.385865", + "hash": "0x7fd6aee48e1176e48150042ded98660203e300ca291495b6239f5a374d1550cf", + "oid": 208510943013, + "crossed": true, + "fee": "0.610256", + "tid": 125787013725792, + "cloid": "0x00000000000000000000001602000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.38", + "sz": "10.76", + "side": "B", + "time": 1761072586211, + "startPosition": "-5546.02", + "dir": "Close Short", + "closedPnl": "0.997452", + "hash": "0x7fd6aee48e1176e48150042ded98660203e300ca291495b6239f5a374d1550cf", + "oid": 208510943013, + "crossed": true, + "fee": "0.439221", + "tid": 619497732335758, + "cloid": "0x00000000000000000000001602000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.38", + "sz": "25.71", + "side": "B", + "time": 1761072587430, + "startPosition": "-5535.26", + "dir": "Close Short", + "closedPnl": "2.383317", + "hash": "0x81fa5601c98c939e8374042ded987002040000e7648fb27025c3015488806d89", + "oid": 208510955632, + "crossed": true, + "fee": "1.049477", + "tid": 1077631890785320, + "cloid": "0x00000000000000000000001602000180", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.39", + "sz": "25.71", + "side": "B", + "time": 1761072597553, + "startPosition": "-5509.55", + "dir": "Close Short", + "closedPnl": "2.126217", + "hash": "0xd73ac8fa488ee61ed8b4042ded98dc02025400dfe38204f07b03744d0782c009", + "oid": 208511048386, + "crossed": true, + "fee": "1.049531", + "tid": 542411378620529, + "cloid": "0x00000000000000000000001602000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.41", + "sz": "13.43", + "side": "B", + "time": 1761072601180, + "startPosition": "-5483.84", + "dir": "Close Short", + "closedPnl": "0.842061", + "hash": "0x0d6821e3f7dd30b30ee1042ded99070203fa00c992d04f85b130cd36b6d10a9d", + "oid": 208511094462, + "crossed": true, + "fee": "0.548294", + "tid": 955667373045891, + "cloid": "0x00000000000000000000001602000182", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.41", + "sz": "12.28", + "side": "B", + "time": 1761072601180, + "startPosition": "-5470.41", + "dir": "Close Short", + "closedPnl": "0.769956", + "hash": "0x0d6821e3f7dd30b30ee1042ded99070203fa00c992d04f85b130cd36b6d10a9d", + "oid": 208511094462, + "crossed": true, + "fee": "0.501344", + "tid": 722341652609232, + "cloid": "0x00000000000000000000001602000182", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.41", + "sz": "25.71", + "side": "B", + "time": 1761072602803, + "startPosition": "-5458.13", + "dir": "Close Short", + "closedPnl": "1.612017", + "hash": "0x2eacf4664ed37ae63026042ded991a02014b004be9d699b8d2759fb90dd754d0", + "oid": 208511114654, + "crossed": true, + "fee": "1.049639", + "tid": 485954577940879, + "cloid": "0x00000000000000000000001602000183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.42", + "sz": "25.71", + "side": "B", + "time": 1761072604132, + "startPosition": "-5432.42", + "dir": "Close Short", + "closedPnl": "1.354917", + "hash": "0xcd93e5a8c394b0b8cf0d042ded992b020462008e5e97cf8a715c90fb82988aa3", + "oid": 208511134400, + "crossed": true, + "fee": "1.049693", + "tid": 410521624234821, + "cloid": "0x00000000000000000000001602000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.43", + "sz": "25.7", + "side": "B", + "time": 1761072607105, + "startPosition": "-5406.71", + "dir": "Close Short", + "closedPnl": "1.09739", + "hash": "0x8237736a91f8c16383b1042ded994b020b9800502cfbe03526001ebd50fc9b4e", + "oid": 208511183569, + "crossed": true, + "fee": "1.049338", + "tid": 637847406510719, + "cloid": "0x00000000000000000000001602000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.34", + "sz": "17.46", + "side": "B", + "time": 1761072612486, + "startPosition": "-5381.01", + "dir": "Close Short", + "closedPnl": "2.316942", + "hash": "0x4904f38eeaba834f4a7e042ded99870202d8007485bda221eccd9ee1a9be5d39", + "oid": 208511257911, + "crossed": true, + "fee": "0.712567", + "tid": 975936160218387, + "cloid": "0x00000000000000000000001602000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.34", + "sz": "8.25", + "side": "B", + "time": 1761072612486, + "startPosition": "-5363.55", + "dir": "Close Short", + "closedPnl": "1.094775", + "hash": "0x4904f38eeaba834f4a7e042ded99870202d8007485bda221eccd9ee1a9be5d39", + "oid": 208511257911, + "crossed": true, + "fee": "0.336694", + "tid": 616076743142568, + "cloid": "0x00000000000000000000001602000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.32", + "sz": "9.57", + "side": "B", + "time": 1761072614498, + "startPosition": "-5355.3", + "dir": "Close Short", + "closedPnl": "1.461339", + "hash": "0x391e9cc43bf2a9593a98042ded99a001cf00b4a9d6f5c82bdce74816faf68343", + "oid": 208511280979, + "crossed": true, + "fee": "0.390524", + "tid": 245063363336131, + "cloid": "0x00000000000000000000001602000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.32", + "sz": "12.56", + "side": "B", + "time": 1761072614498, + "startPosition": "-5345.73", + "dir": "Close Short", + "closedPnl": "1.917912", + "hash": "0x391e9cc43bf2a9593a98042ded99a001cf00b4a9d6f5c82bdce74816faf68343", + "oid": 208511280979, + "crossed": true, + "fee": "0.512538", + "tid": 976451009650970, + "cloid": "0x00000000000000000000001602000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.32", + "sz": "3.59", + "side": "B", + "time": 1761072614498, + "startPosition": "-5333.17", + "dir": "Close Short", + "closedPnl": "0.548193", + "hash": "0x391e9cc43bf2a9593a98042ded99a001cf00b4a9d6f5c82bdce74816faf68343", + "oid": 208511280979, + "crossed": true, + "fee": "0.146497", + "tid": 1051748744059917, + "cloid": "0x00000000000000000000001602000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.31", + "sz": "9.91", + "side": "B", + "time": 1761072615894, + "startPosition": "-5329.58", + "dir": "Close Short", + "closedPnl": "1.612357", + "hash": "0xd4f634e0d9571b6ed66f042ded99b102050000c6745a3a4078bee033985af559", + "oid": 208511298532, + "crossed": true, + "fee": "0.404378", + "tid": 921771552951530, + "cloid": "0x00000000000000000000001602000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.31", + "sz": "7.65", + "side": "B", + "time": 1761072615894, + "startPosition": "-5319.67", + "dir": "Close Short", + "closedPnl": "1.244655", + "hash": "0xd4f634e0d9571b6ed66f042ded99b102050000c6745a3a4078bee033985af559", + "oid": 208511298532, + "crossed": true, + "fee": "0.312159", + "tid": 878372745859723, + "cloid": "0x00000000000000000000001602000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.31", + "sz": "8.16", + "side": "B", + "time": 1761072615894, + "startPosition": "-5312.02", + "dir": "Close Short", + "closedPnl": "1.327632", + "hash": "0xd4f634e0d9571b6ed66f042ded99b102050000c6745a3a4078bee033985af559", + "oid": 208511298532, + "crossed": true, + "fee": "0.332969", + "tid": 130029489121418, + "cloid": "0x00000000000000000000001602000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.33", + "sz": "25.72", + "side": "B", + "time": 1761072618317, + "startPosition": "-5303.86", + "dir": "Close Short", + "closedPnl": "3.670244", + "hash": "0xc6ead6603fc104d1c864042ded99cc0205380045dac423a36ab381b2fec4debc", + "oid": 208511325235, + "crossed": true, + "fee": "1.049615", + "tid": 1064307938867188, + "cloid": "0x00000000000000000000001602000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.31", + "sz": "25.72", + "side": "B", + "time": 1761072619697, + "startPosition": "-5278.14", + "dir": "Close Short", + "closedPnl": "4.184644", + "hash": "0x93f701f1deb3e16d9570042ded99de02022500d779b7003f37bfad449db7bb58", + "oid": 208511336608, + "crossed": true, + "fee": "1.049507", + "tid": 703358776292030, + "cloid": "0x00000000000000000000001602000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.3", + "sz": "25.72", + "side": "B", + "time": 1761072622652, + "startPosition": "-5252.42", + "dir": "Close Short", + "closedPnl": "4.441844", + "hash": "0x918380e0c96a5da292fd042ded9a00020ade00c6646d7c74354c2c33886e378d", + "oid": 208511380643, + "crossed": true, + "fee": "1.049453", + "tid": 809524765256016, + "cloid": "0x00000000000000000000001602000191", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.28", + "sz": "8.22", + "side": "B", + "time": 1761072624115, + "startPosition": "-5226.7", + "dir": "Close Short", + "closedPnl": "1.583994", + "hash": "0x5445417328f511a455be042ded9a130204a00058c3f83076f80decc5e7f8eb8e", + "oid": 208511404572, + "crossed": true, + "fee": "0.335366", + "tid": 115832160174631, + "cloid": "0x00000000000000000000001602000192", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.28", + "sz": "6.12", + "side": "B", + "time": 1761072624115, + "startPosition": "-5218.48", + "dir": "Close Short", + "closedPnl": "1.179324", + "hash": "0x5445417328f511a455be042ded9a130204a00058c3f83076f80decc5e7f8eb8e", + "oid": 208511404572, + "crossed": true, + "fee": "0.249688", + "tid": 49610410112449, + "cloid": "0x00000000000000000000001602000192", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.28", + "sz": "11.39", + "side": "B", + "time": 1761072624115, + "startPosition": "-5212.36", + "dir": "Close Short", + "closedPnl": "2.194853", + "hash": "0x5445417328f511a455be042ded9a130204a00058c3f83076f80decc5e7f8eb8e", + "oid": 208511404572, + "crossed": true, + "fee": "0.464698", + "tid": 1011945741978729, + "cloid": "0x00000000000000000000001602000192", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.25", + "sz": "4.73", + "side": "B", + "time": 1761072628800, + "startPosition": "-5200.97", + "dir": "Close Short", + "closedPnl": "1.053371", + "hash": "0xd1b31bc653192e86d32c042ded9a52020e1700abee1c4d58757bc719121d0871", + "oid": 208511468792, + "crossed": true, + "fee": "0.192948", + "tid": 84341202393120, + "cloid": "0x00000000000000000000001602000193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.25", + "sz": "7.04", + "side": "B", + "time": 1761072628800, + "startPosition": "-5196.24", + "dir": "Close Short", + "closedPnl": "1.567808", + "hash": "0xd1b31bc653192e86d32c042ded9a52020e1700abee1c4d58757bc719121d0871", + "oid": 208511468792, + "crossed": true, + "fee": "0.287179", + "tid": 8632684950150, + "cloid": "0x00000000000000000000001602000193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.25", + "sz": "4.73", + "side": "B", + "time": 1761072628800, + "startPosition": "-5189.2", + "dir": "Close Short", + "closedPnl": "1.053371", + "hash": "0xd1b31bc653192e86d32c042ded9a52020e1700abee1c4d58757bc719121d0871", + "oid": 208511468792, + "crossed": true, + "fee": "0.192948", + "tid": 130205967470065, + "cloid": "0x00000000000000000000001602000193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.25", + "sz": "9.23", + "side": "B", + "time": 1761072628800, + "startPosition": "-5184.47", + "dir": "Close Short", + "closedPnl": "2.055521", + "hash": "0xd1b31bc653192e86d32c042ded9a52020e1700abee1c4d58757bc719121d0871", + "oid": 208511468792, + "crossed": true, + "fee": "0.376514", + "tid": 581166594068871, + "cloid": "0x00000000000000000000001602000193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.24", + "sz": "25.73", + "side": "B", + "time": 1761072632604, + "startPosition": "-5175.24", + "dir": "Close Short", + "closedPnl": "5.987371", + "hash": "0x381905bed3f1de643992042ded9a8502091600a46ef4fd36dbe1b11192f5b84e", + "oid": 208511514044, + "crossed": true, + "fee": "1.049536", + "tid": 369834091476818, + "cloid": "0x00000000000000000000001602000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.19", + "sz": "2.83", + "side": "B", + "time": 1761072634661, + "startPosition": "-5149.51", + "dir": "Close Short", + "closedPnl": "0.800041", + "hash": "0x553b245827d7775f56b4042ded9aa002033d003dc2da9631f903cfaae6db5149", + "oid": 208511547190, + "crossed": true, + "fee": "0.115407", + "tid": 828088057979606, + "cloid": "0x00000000000000000000001602000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.19", + "sz": "22.9", + "side": "B", + "time": 1761072634661, + "startPosition": "-5146.68", + "dir": "Close Short", + "closedPnl": "6.47383", + "hash": "0x553b245827d7775f56b4042ded9aa002033d003dc2da9631f903cfaae6db5149", + "oid": 208511547190, + "crossed": true, + "fee": "0.933859", + "tid": 368233084143505, + "cloid": "0x00000000000000000000001602000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.19", + "sz": "25.74", + "side": "B", + "time": 1761072636995, + "startPosition": "-5123.78", + "dir": "Close Short", + "closedPnl": "7.276698", + "hash": "0xcece958f834df77ad048042ded9abf02083100751e41164c729740e24241d165", + "oid": 208511576004, + "crossed": true, + "fee": "1.049674", + "tid": 953358288012722, + "cloid": "0x00000000000000000000001602000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.2", + "sz": "25.73", + "side": "B", + "time": 1761072640327, + "startPosition": "-5098.04", + "dir": "Close Short", + "closedPnl": "7.016571", + "hash": "0x9386a05f3f6b22db9500042ded9ae90204f10044da6e41ad374f4bb1fe6efcc6", + "oid": 208511622895, + "crossed": true, + "fee": "1.04932", + "tid": 638641163553165, + "cloid": "0x00000000000000000000001602000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.19", + "sz": "25.74", + "side": "B", + "time": 1761072644426, + "startPosition": "-5072.31", + "dir": "Close Short", + "closedPnl": "7.276698", + "hash": "0x42568cd11961c1c643d0042ded9b1c02015200b6b464e098e61f3823d8659bb0", + "oid": 208511664766, + "crossed": true, + "fee": "1.049674", + "tid": 624406235630337, + "cloid": "0x00000000000000000000001602000198", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.18", + "sz": "2.57", + "side": "B", + "time": 1761072647127, + "startPosition": "-5046.57", + "dir": "Close Short", + "closedPnl": "0.752239", + "hash": "0x4fb603c402b0fb7b512f042ded9b3c02030f00a99db41a4df37eaf16c1b4d565", + "oid": 208511691956, + "crossed": true, + "fee": "0.104798", + "tid": 524552178668638, + "cloid": "0x00000000000000000000001602000199", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.19", + "sz": "0.13", + "side": "B", + "time": 1761072647127, + "startPosition": "-5044.0", + "dir": "Close Short", + "closedPnl": "0.036751", + "hash": "0x4fb603c402b0fb7b512f042ded9b3c02030f00a99db41a4df37eaf16c1b4d565", + "oid": 208511691956, + "crossed": true, + "fee": "0.005301", + "tid": 864879153507897, + "cloid": "0x00000000000000000000001602000199", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.2", + "sz": "11.63", + "side": "B", + "time": 1761072647127, + "startPosition": "-5043.87", + "dir": "Close Short", + "closedPnl": "3.171501", + "hash": "0x4fb603c402b0fb7b512f042ded9b3c02030f00a99db41a4df37eaf16c1b4d565", + "oid": 208511691956, + "crossed": true, + "fee": "0.474294", + "tid": 865048575386502, + "cloid": "0x00000000000000000000001602000199", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.2", + "sz": "11.4", + "side": "B", + "time": 1761072647127, + "startPosition": "-5032.24", + "dir": "Close Short", + "closedPnl": "3.10878", + "hash": "0x4fb603c402b0fb7b512f042ded9b3c02030f00a99db41a4df37eaf16c1b4d565", + "oid": 208511691956, + "crossed": true, + "fee": "0.464914", + "tid": 832639670128973, + "cloid": "0x00000000000000000000001602000199", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.24", + "sz": "18.71", + "side": "B", + "time": 1761072649258, + "startPosition": "-5020.84", + "dir": "Close Short", + "closedPnl": "4.353817", + "hash": "0x1ea64e3413cefd7f2020042ded9b570201810019aec21c51c26ef986d2c2d769", + "oid": 208511728901, + "crossed": true, + "fee": "0.763188", + "tid": 451128353726076, + "cloid": "0x00000000000000000000001602000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.24", + "sz": "2.57", + "side": "B", + "time": 1761072649258, + "startPosition": "-5002.13", + "dir": "Close Short", + "closedPnl": "0.598039", + "hash": "0x1ea64e3413cefd7f2020042ded9b570201810019aec21c51c26ef986d2c2d769", + "oid": 208511728901, + "crossed": true, + "fee": "0.104831", + "tid": 106274871820791, + "cloid": "0x00000000000000000000001602000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.24", + "sz": "4.45", + "side": "B", + "time": 1761072649258, + "startPosition": "-4999.56", + "dir": "Close Short", + "closedPnl": "1.035515", + "hash": "0x1ea64e3413cefd7f2020042ded9b570201810019aec21c51c26ef986d2c2d769", + "oid": 208511728901, + "crossed": true, + "fee": "0.181517", + "tid": 183146251035161, + "cloid": "0x00000000000000000000001602000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.25", + "sz": "25.73", + "side": "B", + "time": 1761072654623, + "startPosition": "-4995.11", + "dir": "Close Short", + "closedPnl": "5.730071", + "hash": "0x7abc1908063925df7c35042ded9b9a0201b100eda13c44b11e84c45ac53cffca", + "oid": 208511789855, + "crossed": true, + "fee": "1.049591", + "tid": 107497318675190, + "cloid": "0x00000000000000000000001602000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.25", + "sz": "25.72", + "side": "B", + "time": 1761072662870, + "startPosition": "-4969.38", + "dir": "Close Short", + "closedPnl": "5.727844", + "hash": "0xe2bf6e7f7c47f622e439042ded9c0902064f0065174b14f4868819d23b4bd00d", + "oid": 208511847672, + "crossed": true, + "fee": "1.049183", + "tid": 42185136198782, + "cloid": "0x00000000000000000000001602000202", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.25", + "sz": "25.72", + "side": "B", + "time": 1761072664090, + "startPosition": "-4943.66", + "dir": "Close Short", + "closedPnl": "5.727844", + "hash": "0x6b25fd882a2dd4e06c9f042ded9c17020617006dc520f3b20eeea8dae921aecb", + "oid": 208511864191, + "crossed": true, + "fee": "1.049183", + "tid": 1121704251369420, + "cloid": "0x00000000000000000000001602000203", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.19", + "sz": "25.73", + "side": "B", + "time": 1761072665853, + "startPosition": "-4917.94", + "dir": "Close Short", + "closedPnl": "7.273871", + "hash": "0xa80c0728706004a8a985042ded9c29020441000e0b63237a4bd4b27b2f63de93", + "oid": 208511894697, + "crossed": true, + "fee": "1.049266", + "tid": 235449220023884, + "cloid": "0x00000000000000000000001602000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.18", + "sz": "25.74", + "side": "B", + "time": 1761072667157, + "startPosition": "-4892.21", + "dir": "Close Short", + "closedPnl": "7.534098", + "hash": "0x8ca4e7b79a449bd08e1e042ded9c3a02047a009d3547baa2306d930a594875bb", + "oid": 208511915360, + "crossed": true, + "fee": "1.04962", + "tid": 263600872136767, + "cloid": "0x00000000000000000000001602000205", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.18", + "sz": "2.57", + "side": "B", + "time": 1761072668685, + "startPosition": "-4866.47", + "dir": "Close Short", + "closedPnl": "0.752239", + "hash": "0xd95da5c84048a4cadad7042ded9c4a02018a00addb4bc39c7d26511aff4c7eb5", + "oid": 208511932418, + "crossed": true, + "fee": "0.104798", + "tid": 75500275341030, + "cloid": "0x00000000000000000000001602000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.18", + "sz": "0.77", + "side": "B", + "time": 1761072668685, + "startPosition": "-4863.9", + "dir": "Close Short", + "closedPnl": "0.225379", + "hash": "0xd95da5c84048a4cadad7042ded9c4a02018a00addb4bc39c7d26511aff4c7eb5", + "oid": 208511932418, + "crossed": true, + "fee": "0.031398", + "tid": 914875315009588, + "cloid": "0x00000000000000000000001602000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.19", + "sz": "0.13", + "side": "B", + "time": 1761072668685, + "startPosition": "-4863.13", + "dir": "Close Short", + "closedPnl": "0.036751", + "hash": "0xd95da5c84048a4cadad7042ded9c4a02018a00addb4bc39c7d26511aff4c7eb5", + "oid": 208511932418, + "crossed": true, + "fee": "0.005301", + "tid": 485498234509599, + "cloid": "0x00000000000000000000001602000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.19", + "sz": "7.76", + "side": "B", + "time": 1761072668685, + "startPosition": "-4863.0", + "dir": "Close Short", + "closedPnl": "2.193752", + "hash": "0xd95da5c84048a4cadad7042ded9c4a02018a00addb4bc39c7d26511aff4c7eb5", + "oid": 208511932418, + "crossed": true, + "fee": "0.316452", + "tid": 429796708641974, + "cloid": "0x00000000000000000000001602000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.19", + "sz": "14.5", + "side": "B", + "time": 1761072668685, + "startPosition": "-4855.24", + "dir": "Close Short", + "closedPnl": "4.09915", + "hash": "0xd95da5c84048a4cadad7042ded9c4a02018a00addb4bc39c7d26511aff4c7eb5", + "oid": 208511932418, + "crossed": true, + "fee": "0.591308", + "tid": 995949171426226, + "cloid": "0x00000000000000000000001602000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.23", + "sz": "0.13", + "side": "B", + "time": 1761072676941, + "startPosition": "-4840.74", + "dir": "Close Short", + "closedPnl": "0.031551", + "hash": "0x6dbb2844f11760436f34042ded9cbb02072a002a8c1a7f151183d397b01b3a2e", + "oid": 208512029711, + "crossed": true, + "fee": "0.005302", + "tid": 980973505183715, + "cloid": "0x00000000000000000000001602000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.24", + "sz": "0.13", + "side": "B", + "time": 1761072676941, + "startPosition": "-4840.61", + "dir": "Close Short", + "closedPnl": "0.030251", + "hash": "0x6dbb2844f11760436f34042ded9cbb02072a002a8c1a7f151183d397b01b3a2e", + "oid": 208512029711, + "crossed": true, + "fee": "0.005302", + "tid": 834619168780813, + "cloid": "0x00000000000000000000001602000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.24", + "sz": "10.29", + "side": "B", + "time": 1761072676941, + "startPosition": "-4840.48", + "dir": "Close Short", + "closedPnl": "2.394483", + "hash": "0x6dbb2844f11760436f34042ded9cbb02072a002a8c1a7f151183d397b01b3a2e", + "oid": 208512029711, + "crossed": true, + "fee": "0.419733", + "tid": 668840655691013, + "cloid": "0x00000000000000000000001602000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.24", + "sz": "15.18", + "side": "B", + "time": 1761072676941, + "startPosition": "-4830.19", + "dir": "Close Short", + "closedPnl": "3.532386", + "hash": "0x6dbb2844f11760436f34042ded9cbb02072a002a8c1a7f151183d397b01b3a2e", + "oid": 208512029711, + "crossed": true, + "fee": "0.619198", + "tid": 69005668243166, + "cloid": "0x00000000000000000000001602000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.2", + "sz": "25.73", + "side": "B", + "time": 1761072681306, + "startPosition": "-4815.01", + "dir": "Close Short", + "closedPnl": "7.016571", + "hash": "0x848c0ab4a60236228605042ded9cf20202fe009a410554f42854b6076506100d", + "oid": 208512076048, + "crossed": true, + "fee": "1.04932", + "tid": 562880569766975, + "cloid": "0x00000000000000000000001602000208", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.18", + "sz": "0.77", + "side": "B", + "time": 1761072688023, + "startPosition": "-4789.28", + "dir": "Close Short", + "closedPnl": "0.225379", + "hash": "0x42a4dbbfbc373c98441e042ded9d3f02031800a5573a5b6ae66d87127b3b1682", + "oid": 208512150570, + "crossed": true, + "fee": "0.031398", + "tid": 1079940756520283, + "cloid": "0x00000000000000000000001602000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.18", + "sz": "24.96", + "side": "B", + "time": 1761072688023, + "startPosition": "-4788.51", + "dir": "Close Short", + "closedPnl": "7.305792", + "hash": "0x42a4dbbfbc373c98441e042ded9d3f02031800a5573a5b6ae66d87127b3b1682", + "oid": 208512150570, + "crossed": true, + "fee": "1.017813", + "tid": 460879465674417, + "cloid": "0x00000000000000000000001602000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.17", + "sz": "11.24", + "side": "B", + "time": 1761072693029, + "startPosition": "-4763.55", + "dir": "Close Short", + "closedPnl": "3.402348", + "hash": "0xf009c217c8c5618df183042ded9d7a02096200fd63c8806093d26d6a87c93b78", + "oid": 208512184164, + "crossed": true, + "fee": "0.458318", + "tid": 43546327301699, + "cloid": "0x00000000000000000000001602000210", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.17", + "sz": "14.5", + "side": "B", + "time": 1761072693029, + "startPosition": "-4752.31", + "dir": "Close Short", + "closedPnl": "4.38915", + "hash": "0xf009c217c8c5618df183042ded9d7a02096200fd63c8806093d26d6a87c93b78", + "oid": 208512184164, + "crossed": true, + "fee": "0.591247", + "tid": 313702245449149, + "cloid": "0x00000000000000000000001602000210", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "25.74", + "side": "B", + "time": 1761072694863, + "startPosition": "-4737.81", + "dir": "Close Short", + "closedPnl": "9.078498", + "hash": "0xd812685a5a525486d98c042ded9d9202026b003ff55573587bdb13ad19562e71", + "oid": 208512205747, + "crossed": true, + "fee": "1.049296", + "tid": 137992292256825, + "cloid": "0x00000000000000000000001602000211", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "25.75", + "side": "B", + "time": 1761072696898, + "startPosition": "-4712.07", + "dir": "Close Short", + "closedPnl": "9.597025", + "hash": "0xf0616c16edfddc82f1db042ded9daa02033d00fc88f0fb55942a1769acf1b66d", + "oid": 208512231289, + "crossed": true, + "fee": "1.049595", + "tid": 581547877291339, + "cloid": "0x00000000000000000000001602000212", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "25.74", + "side": "B", + "time": 1761072698891, + "startPosition": "-4686.32", + "dir": "Close Short", + "closedPnl": "9.078498", + "hash": "0xa2047b6c90f4ea62a37e042ded9dc202027500522bf8093445cd26bf4ff8c44d", + "oid": 208512239256, + "crossed": true, + "fee": "1.049296", + "tid": 614123077055030, + "cloid": "0x00000000000000000000001602000213", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "15.45", + "side": "B", + "time": 1761072700157, + "startPosition": "-4660.58", + "dir": "Close Short", + "closedPnl": "5.449215", + "hash": "0x0b635602144b5bf00cdd042ded9dd10204e700e7af4e7ac2af2c0154d34f35da", + "oid": 208512249443, + "crossed": true, + "fee": "0.629822", + "tid": 924217247965763, + "cloid": "0x00000000000000000000001602000214", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "10.3", + "side": "B", + "time": 1761072700157, + "startPosition": "-4645.13", + "dir": "Close Short", + "closedPnl": "3.63281", + "hash": "0x0b635602144b5bf00cdd042ded9dd10204e700e7af4e7ac2af2c0154d34f35da", + "oid": 208512249443, + "crossed": true, + "fee": "0.419881", + "tid": 77138451566675, + "cloid": "0x00000000000000000000001602000214", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.07", + "sz": "25.75", + "side": "B", + "time": 1761072704823, + "startPosition": "-4634.83", + "dir": "Close Short", + "closedPnl": "10.369525", + "hash": "0x4de96576687d697e4f63042ded9e110202e2005c03708850f1b210c927714368", + "oid": 208512301606, + "crossed": true, + "fee": "1.049433", + "tid": 596872712016546, + "cloid": "0x00000000000000000000001602000215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.06", + "sz": "25.75", + "side": "B", + "time": 1761072709193, + "startPosition": "-4609.08", + "dir": "Close Short", + "closedPnl": "10.627025", + "hash": "0xaf6de0ffbada1006b0e7042ded9e490201e000e555dd2ed853368c5279dde9f1", + "oid": 208512358433, + "crossed": true, + "fee": "1.049379", + "tid": 313695896938187, + "cloid": "0x00000000000000000000001602000216", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.06", + "sz": "7.66", + "side": "B", + "time": 1761072710629, + "startPosition": "-4583.33", + "dir": "Close Short", + "closedPnl": "3.161282", + "hash": "0xfbfe6f2e934e09ecfd78042ded9e5702053900142e4128bf9fc71a815241e3d7", + "oid": 208512371883, + "crossed": true, + "fee": "0.312164", + "tid": 606383195205739, + "cloid": "0x00000000000000000000001602000217", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.06", + "sz": "18.09", + "side": "B", + "time": 1761072710629, + "startPosition": "-4575.67", + "dir": "Close Short", + "closedPnl": "7.465743", + "hash": "0xfbfe6f2e934e09ecfd78042ded9e5702053900142e4128bf9fc71a815241e3d7", + "oid": 208512371883, + "crossed": true, + "fee": "0.737214", + "tid": 860057077395901, + "cloid": "0x00000000000000000000001602000217", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.05", + "sz": "25.75", + "side": "B", + "time": 1761072712112, + "startPosition": "-4557.58", + "dir": "Close Short", + "closedPnl": "10.884525", + "hash": "0xc33bc110e0d9b49ac4b5042ded9e6d02038c00f67bdcd36c67046c639fdd8e85", + "oid": 208512387697, + "crossed": true, + "fee": "1.049325", + "tid": 329367165068838, + "cloid": "0x00000000000000000000001602000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.03", + "sz": "2.58", + "side": "B", + "time": 1761072715731, + "startPosition": "-4531.83", + "dir": "Close Short", + "closedPnl": "1.142166", + "hash": "0x6b567092ae4b83026cd0042ded9e9f0203010078494ea1d40f1f1be56d4f5ced", + "oid": 208512425531, + "crossed": true, + "fee": "0.105125", + "tid": 624887349154871, + "cloid": "0x00000000000000000000001602000219", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.03", + "sz": "23.18", + "side": "B", + "time": 1761072715731, + "startPosition": "-4529.25", + "dir": "Close Short", + "closedPnl": "10.261786", + "hash": "0x6b567092ae4b83026cd0042ded9e9f0203010078494ea1d40f1f1be56d4f5ced", + "oid": 208512425531, + "crossed": true, + "fee": "0.944499", + "tid": 652020049453289, + "cloid": "0x00000000000000000000001602000219", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.05", + "sz": "0.13", + "side": "B", + "time": 1761072721879, + "startPosition": "-4506.07", + "dir": "Close Short", + "closedPnl": "0.054951", + "hash": "0xaf438b3307c92d38b0bd042ded9ef102033f0018a2cc4c0a530c3685c6cd0723", + "oid": 208512493923, + "crossed": true, + "fee": "0.005297", + "tid": 746678217285461, + "cloid": "0x00000000000000000000001602000220", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.06", + "sz": "20.38", + "side": "B", + "time": 1761072721879, + "startPosition": "-4505.94", + "dir": "Close Short", + "closedPnl": "8.410826", + "hash": "0xaf438b3307c92d38b0bd042ded9ef102033f0018a2cc4c0a530c3685c6cd0723", + "oid": 208512493923, + "crossed": true, + "fee": "0.830537", + "tid": 142015990418342, + "cloid": "0x00000000000000000000001602000220", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.06", + "sz": "2.58", + "side": "B", + "time": 1761072721879, + "startPosition": "-4485.56", + "dir": "Close Short", + "closedPnl": "1.064766", + "hash": "0xaf438b3307c92d38b0bd042ded9ef102033f0018a2cc4c0a530c3685c6cd0723", + "oid": 208512493923, + "crossed": true, + "fee": "0.105141", + "tid": 640684167640819, + "cloid": "0x00000000000000000000001602000220", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.07", + "sz": "0.13", + "side": "B", + "time": 1761072721879, + "startPosition": "-4482.98", + "dir": "Close Short", + "closedPnl": "0.052351", + "hash": "0xaf438b3307c92d38b0bd042ded9ef102033f0018a2cc4c0a530c3685c6cd0723", + "oid": 208512493923, + "crossed": true, + "fee": "0.005298", + "tid": 416910798671724, + "cloid": "0x00000000000000000000001602000220", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.07", + "sz": "2.53", + "side": "B", + "time": 1761072721879, + "startPosition": "-4482.85", + "dir": "Close Short", + "closedPnl": "1.018831", + "hash": "0xaf438b3307c92d38b0bd042ded9ef102033f0018a2cc4c0a530c3685c6cd0723", + "oid": 208512493923, + "crossed": true, + "fee": "0.103109", + "tid": 1083289391216001, + "cloid": "0x00000000000000000000001602000220", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "13.17", + "side": "B", + "time": 1761072723589, + "startPosition": "-4480.32", + "dir": "Close Short", + "closedPnl": "5.171859", + "hash": "0xb97a53d7f82b550ebaf4042ded9f0702034700bd932e73e05d42ff2ab72f2ef9", + "oid": 208512515371, + "crossed": true, + "fee": "0.536767", + "tid": 576332797192083, + "cloid": "0x00000000000000000000001602000221", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "12.58", + "side": "B", + "time": 1761072723589, + "startPosition": "-4467.15", + "dir": "Close Short", + "closedPnl": "4.940166", + "hash": "0xb97a53d7f82b550ebaf4042ded9f0702034700bd932e73e05d42ff2ab72f2ef9", + "oid": 208512515371, + "crossed": true, + "fee": "0.51272", + "tid": 528012593184830, + "cloid": "0x00000000000000000000001602000221", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.07", + "sz": "25.75", + "side": "B", + "time": 1761072727894, + "startPosition": "-4454.57", + "dir": "Close Short", + "closedPnl": "10.369525", + "hash": "0x8394316e8e0ba389850d042ded9f390205db0054290ec25b275cdcc14d0f7d74", + "oid": 208512563308, + "crossed": true, + "fee": "1.049433", + "tid": 334109707323886, + "cloid": "0x00000000000000000000001602000222", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "25.76", + "side": "B", + "time": 1761072729299, + "startPosition": "-4428.82", + "dir": "Close Short", + "closedPnl": "12.434352", + "hash": "0x61b73b82a53fef596330042ded9f4a020ab1006840330e2b057fe6d56433c944", + "oid": 208512587809, + "crossed": true, + "fee": "1.049408", + "tid": 123004279807243, + "cloid": "0x00000000000000000000001602000223", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.01", + "sz": "2.58", + "side": "B", + "time": 1761072733341, + "startPosition": "-4403.06", + "dir": "Close Short", + "closedPnl": "1.193766", + "hash": "0x038b6e3464aa7da80505042ded9f7a0209d00019ffad9c7aa754198723ae5792", + "oid": 208512621153, + "crossed": true, + "fee": "0.105114", + "tid": 286076870904864, + "cloid": "0x00000000000000000000001602000224", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.02", + "sz": "23.18", + "side": "B", + "time": 1761072733341, + "startPosition": "-4400.48", + "dir": "Close Short", + "closedPnl": "10.493586", + "hash": "0x038b6e3464aa7da80505042ded9f7a0209d00019ffad9c7aa754198723ae5792", + "oid": 208512621153, + "crossed": true, + "fee": "0.94445", + "tid": 197495556351430, + "cloid": "0x00000000000000000000001602000224", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.03", + "sz": "0.13", + "side": "B", + "time": 1761072738723, + "startPosition": "-4377.3", + "dir": "Close Short", + "closedPnl": "0.057551", + "hash": "0x2530cdb69eebc09126aa042ded9fc4020622009c39eedf63c8f979095def9a7b", + "oid": 208512705224, + "crossed": true, + "fee": "0.005297", + "tid": 601883368695302, + "cloid": "0x00000000000000000000001602000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.05", + "sz": "0.13", + "side": "B", + "time": 1761072738723, + "startPosition": "-4377.17", + "dir": "Close Short", + "closedPnl": "0.054951", + "hash": "0x2530cdb69eebc09126aa042ded9fc4020622009c39eedf63c8f979095def9a7b", + "oid": 208512705224, + "crossed": true, + "fee": "0.005297", + "tid": 692351276047583, + "cloid": "0x00000000000000000000001602000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.05", + "sz": "2.58", + "side": "B", + "time": 1761072738723, + "startPosition": "-4377.04", + "dir": "Close Short", + "closedPnl": "1.090566", + "hash": "0x2530cdb69eebc09126aa042ded9fc4020622009c39eedf63c8f979095def9a7b", + "oid": 208512705224, + "crossed": true, + "fee": "0.105136", + "tid": 62947450577695, + "cloid": "0x00000000000000000000001602000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.06", + "sz": "22.92", + "side": "B", + "time": 1761072738723, + "startPosition": "-4374.46", + "dir": "Close Short", + "closedPnl": "9.459084", + "hash": "0x2530cdb69eebc09126aa042ded9fc4020622009c39eedf63c8f979095def9a7b", + "oid": 208512705224, + "crossed": true, + "fee": "0.934049", + "tid": 214448671305583, + "cloid": "0x00000000000000000000001602000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "25.76", + "side": "B", + "time": 1761072740459, + "startPosition": "-4351.54", + "dir": "Close Short", + "closedPnl": "12.434352", + "hash": "0x61b8ab281989a2776332042ded9fda02026e000db48cc1490581567ad88d7c62", + "oid": 208512736906, + "crossed": true, + "fee": "1.049408", + "tid": 307336072153245, + "cloid": "0x00000000000000000000001602000226", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "25.76", + "side": "B", + "time": 1761072744408, + "startPosition": "-4325.78", + "dir": "Close Short", + "closedPnl": "12.434352", + "hash": "0x2670942e063b5bb127ea042deda00402021f0013a13e7a83ca393f80c53f359b", + "oid": 208512812416, + "crossed": true, + "fee": "1.049408", + "tid": 1116093528227292, + "cloid": "0x00000000000000000000001602000227", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.96", + "sz": "25.76", + "side": "B", + "time": 1761072745680, + "startPosition": "-4300.02", + "dir": "Close Short", + "closedPnl": "13.207152", + "hash": "0x52f48882c6096569546e042deda0130203990068610c843bf6bd33d5850d3f53", + "oid": 208512830260, + "crossed": true, + "fee": "1.049246", + "tid": 643763717443104, + "cloid": "0x00000000000000000000001602000228", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.97", + "sz": "24.31", + "side": "B", + "time": 1761072755801, + "startPosition": "-4274.26", + "dir": "Close Short", + "closedPnl": "12.220637", + "hash": "0xff25d7627085255f009f042deda0800203a000480b884432a2ee82b52f88ff4a", + "oid": 208512954517, + "crossed": true, + "fee": "0.990236", + "tid": 112398828185462, + "cloid": "0x00000000000000000000001602000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.97", + "sz": "1.45", + "side": "B", + "time": 1761072755801, + "startPosition": "-4249.95", + "dir": "Close Short", + "closedPnl": "0.728915", + "hash": "0xff25d7627085255f009f042deda0800203a000480b884432a2ee82b52f88ff4a", + "oid": 208512954517, + "crossed": true, + "fee": "0.059063", + "tid": 625858512475591, + "cloid": "0x00000000000000000000001602000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.97", + "sz": "25.76", + "side": "B", + "time": 1761072759694, + "startPosition": "-4248.5", + "dir": "Close Short", + "closedPnl": "12.949552", + "hash": "0xe355cc693dd1eba2e4cf042deda0b30203fe004ed8d50a74871e77bbfcd5c58d", + "oid": 208512985622, + "crossed": true, + "fee": "1.0493", + "tid": 698909513523187, + "cloid": "0x00000000000000000000001602000230", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.97", + "sz": "13.22", + "side": "B", + "time": 1761072760955, + "startPosition": "-4222.74", + "dir": "Close Short", + "closedPnl": "6.645694", + "hash": "0x9cc1953be89d29a79e3b042deda0c4020175002183904879408a408ea7910392", + "oid": 208512994568, + "crossed": true, + "fee": "0.538499", + "tid": 595983965538142, + "cloid": "0x00000000000000000000001602000231", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.97", + "sz": "12.54", + "side": "B", + "time": 1761072760955, + "startPosition": "-4209.52", + "dir": "Close Short", + "closedPnl": "6.303858", + "hash": "0x9cc1953be89d29a79e3b042deda0c4020175002183904879408a408ea7910392", + "oid": 208512994568, + "crossed": true, + "fee": "0.5108", + "tid": 94466763108861, + "cloid": "0x00000000000000000000001602000231", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.0", + "sz": "0.13", + "side": "B", + "time": 1761072770591, + "startPosition": "-4196.98", + "dir": "Close Short", + "closedPnl": "0.061451", + "hash": "0x187070d1d59d607519ea042deda1460202bb00b770907f47bc391c2494913a5f", + "oid": 208513062439, + "crossed": true, + "fee": "0.005296", + "tid": 695709302799470, + "cloid": "0x00000000000000000000001602000232", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.0", + "sz": "2.58", + "side": "B", + "time": 1761072770591, + "startPosition": "-4196.85", + "dir": "Close Short", + "closedPnl": "1.219566", + "hash": "0x187070d1d59d607519ea042deda1460202bb00b770907f47bc391c2494913a5f", + "oid": 208513062439, + "crossed": true, + "fee": "0.105109", + "tid": 715205586221449, + "cloid": "0x00000000000000000000001602000232", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.0", + "sz": "23.05", + "side": "B", + "time": 1761072770591, + "startPosition": "-4194.27", + "dir": "Close Short", + "closedPnl": "10.895735", + "hash": "0x187070d1d59d607519ea042deda1460202bb00b770907f47bc391c2494913a5f", + "oid": 208513062439, + "crossed": true, + "fee": "0.939056", + "tid": 139903011032495, + "cloid": "0x00000000000000000000001602000232", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.98", + "sz": "25.76", + "side": "B", + "time": 1761072773338, + "startPosition": "-4171.22", + "dir": "Close Short", + "closedPnl": "12.691952", + "hash": "0x3ccf7c45e7d3520a3e49042deda16b020206002b82d670dce0982798a6d72bf4", + "oid": 208513076522, + "crossed": true, + "fee": "1.049354", + "tid": 873348735817343, + "cloid": "0x00000000000000000000001602000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.98", + "sz": "25.76", + "side": "B", + "time": 1761072774559, + "startPosition": "-4145.46", + "dir": "Close Short", + "closedPnl": "12.691952", + "hash": "0xdcfb1ec1b2d1e67ade74042deda17d02025c00a74dd5054c80c3ca1471d5c065", + "oid": 208513080603, + "crossed": true, + "fee": "1.049354", + "tid": 1052613675944056, + "cloid": "0x00000000000000000000001602000234", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.0", + "sz": "25.76", + "side": "B", + "time": 1761072780893, + "startPosition": "-4119.7", + "dir": "Close Short", + "closedPnl": "12.176752", + "hash": "0xb5385acf6eb55d0eb6b2042deda1c30202ec00b509b87be0590106222db936f9", + "oid": 208513153937, + "crossed": true, + "fee": "1.049462", + "tid": 1000920092722278, + "cloid": "0x00000000000000000000001602000235", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.94", + "sz": "5.1", + "side": "B", + "time": 1761072782867, + "startPosition": "-4093.94", + "dir": "Close Short", + "closedPnl": "2.71677", + "hash": "0xd8d6aef22fcf90a2da50042deda1da020b7200d7cac2af747c9f5a44eec36a8d", + "oid": 208513185390, + "crossed": true, + "fee": "0.207709", + "tid": 1120912314309017, + "cloid": "0x00000000000000000000001602000236", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.94", + "sz": "19.43", + "side": "B", + "time": 1761072782867, + "startPosition": "-4088.84", + "dir": "Close Short", + "closedPnl": "10.350361", + "hash": "0xd8d6aef22fcf90a2da50042deda1da020b7200d7cac2af747c9f5a44eec36a8d", + "oid": 208513185390, + "crossed": true, + "fee": "0.791333", + "tid": 423723788355104, + "cloid": "0x00000000000000000000001602000236", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.94", + "sz": "1.23", + "side": "B", + "time": 1761072782867, + "startPosition": "-4069.41", + "dir": "Close Short", + "closedPnl": "0.655221", + "hash": "0xd8d6aef22fcf90a2da50042deda1da020b7200d7cac2af747c9f5a44eec36a8d", + "oid": 208513185390, + "crossed": true, + "fee": "0.050094", + "tid": 695389632311129, + "cloid": "0x00000000000000000000001602000236", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.89", + "sz": "25.77", + "side": "B", + "time": 1761072789842, + "startPosition": "-4068.18", + "dir": "Close Short", + "closedPnl": "15.016179", + "hash": "0xbb7a2f19b029ac72bcf3042deda23402042600ff4b2ccb445f42da6c6f2d865d", + "oid": 208513298277, + "crossed": true, + "fee": "1.049274", + "tid": 223640664986872, + "cloid": "0x00000000000000000000001602000237", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.89", + "sz": "25.77", + "side": "B", + "time": 1761072792024, + "startPosition": "-4042.41", + "dir": "Close Short", + "closedPnl": "15.016179", + "hash": "0x1741ba16793ba03b18bb042deda24e0203dd00fc143ebf0dbb0a6569383f7a25", + "oid": 208513334889, + "crossed": true, + "fee": "1.049274", + "tid": 360071462073124, + "cloid": "0x00000000000000000000001602000238", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.83", + "sz": "25.79", + "side": "B", + "time": 1761072796277, + "startPosition": "-4016.64", + "dir": "Close Short", + "closedPnl": "16.575233", + "hash": "0xcafbb464a0e9e1edcc75042deda283020747004a3bed00bf6ec45fb75fedbbd8", + "oid": 208513387852, + "crossed": true, + "fee": "1.049763", + "tid": 352743638515094, + "cloid": "0x00000000000000000000001602000239", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.85", + "sz": "25.78", + "side": "B", + "time": 1761072798946, + "startPosition": "-3990.85", + "dir": "Close Short", + "closedPnl": "16.053206", + "hash": "0x4c50f8e36bd27a514dca042deda29f02034200c906d59923f019a4362ad6543b", + "oid": 208513425671, + "crossed": true, + "fee": "1.049465", + "tid": 41836076945298, + "cloid": "0x00000000000000000000001602000240", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.81", + "sz": "25.79", + "side": "B", + "time": 1761072801545, + "startPosition": "-3965.07", + "dir": "Close Short", + "closedPnl": "17.091033", + "hash": "0xa97db40ae3db1704aaf7042deda2c002045d00f07ede35d64d465f5da2def0ef", + "oid": 208513455621, + "crossed": true, + "fee": "1.049655", + "tid": 899947287619192, + "cloid": "0x00000000000000000000001602000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.79", + "sz": "13.07", + "side": "B", + "time": 1761072802767, + "startPosition": "-3939.28", + "dir": "Close Short", + "closedPnl": "8.922889", + "hash": "0xf278f260ba0046acf3f2042deda2d002046800465503657f96419db379042097", + "oid": 208513471570, + "crossed": true, + "fee": "0.531895", + "tid": 621652488765504, + "cloid": "0x00000000000000000000001602000242", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.79", + "sz": "4.51", + "side": "B", + "time": 1761072802767, + "startPosition": "-3926.21", + "dir": "Close Short", + "closedPnl": "3.078977", + "hash": "0xf278f260ba0046acf3f2042deda2d002046800465503657f96419db379042097", + "oid": 208513471570, + "crossed": true, + "fee": "0.183538", + "tid": 560840711485611, + "cloid": "0x00000000000000000000001602000242", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.79", + "sz": "8.21", + "side": "B", + "time": 1761072802767, + "startPosition": "-3921.7", + "dir": "Close Short", + "closedPnl": "5.604967", + "hash": "0xf278f260ba0046acf3f2042deda2d002046800465503657f96419db379042097", + "oid": 208513471570, + "crossed": true, + "fee": "0.334113", + "tid": 600950606378477, + "cloid": "0x00000000000000000000001602000242", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.75", + "sz": "25.79", + "side": "B", + "time": 1761072804575, + "startPosition": "-3913.49", + "dir": "Close Short", + "closedPnl": "18.638433", + "hash": "0xa6056f5cafe68262a77f042deda2e202059c00424ae9a13449ce1aaf6eea5c4d", + "oid": 208513492639, + "crossed": true, + "fee": "1.04933", + "tid": 884585440361472, + "cloid": "0x00000000000000000000001602000243", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.81", + "sz": "20.38", + "side": "B", + "time": 1761072805894, + "startPosition": "-3887.7", + "dir": "Close Short", + "closedPnl": "13.505826", + "hash": "0xe53c7cfa107c743fe6b6042deda2f102010200dfab7f93118905284ccf704e2a", + "oid": 208513502235, + "crossed": true, + "fee": "0.829468", + "tid": 1103959396209036, + "cloid": "0x00000000000000000000001602000244", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.81", + "sz": "5.41", + "side": "B", + "time": 1761072805894, + "startPosition": "-3867.32", + "dir": "Close Short", + "closedPnl": "3.585207", + "hash": "0xe53c7cfa107c743fe6b6042deda2f102010200dfab7f93118905284ccf704e2a", + "oid": 208513502235, + "crossed": true, + "fee": "0.220187", + "tid": 1038723763573865, + "cloid": "0x00000000000000000000001602000244", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.84", + "sz": "25.78", + "side": "B", + "time": 1761072808040, + "startPosition": "-3861.91", + "dir": "Close Short", + "closedPnl": "16.311006", + "hash": "0x281b05cf5db882522994042deda30c02012f00b4f8bba124cbe3b1221cbc5c3c", + "oid": 208513520462, + "crossed": true, + "fee": "1.04941", + "tid": 1116094108624078, + "cloid": "0x00000000000000000000001602000245", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.86", + "sz": "0.13", + "side": "B", + "time": 1761072816035, + "startPosition": "-3836.13", + "dir": "Close Short", + "closedPnl": "0.079651", + "hash": "0x826b7627334b3c7c83e5042deda371020837000cce4e5b4e26342179f24f1667", + "oid": 208513628429, + "crossed": true, + "fee": "0.005292", + "tid": 206925988155951, + "cloid": "0x00000000000000000000001602000246", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.87", + "sz": "0.13", + "side": "B", + "time": 1761072816035, + "startPosition": "-3836.0", + "dir": "Close Short", + "closedPnl": "0.078351", + "hash": "0x826b7627334b3c7c83e5042deda371020837000cce4e5b4e26342179f24f1667", + "oid": 208513628429, + "crossed": true, + "fee": "0.005292", + "tid": 98462227342821, + "cloid": "0x00000000000000000000001602000246", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.88", + "sz": "0.15", + "side": "B", + "time": 1761072816035, + "startPosition": "-3835.87", + "dir": "Close Short", + "closedPnl": "0.088905", + "hash": "0x826b7627334b3c7c83e5042deda371020837000cce4e5b4e26342179f24f1667", + "oid": 208513628429, + "crossed": true, + "fee": "0.006107", + "tid": 799224325272770, + "cloid": "0x00000000000000000000001602000246", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.88", + "sz": "20.38", + "side": "B", + "time": 1761072816035, + "startPosition": "-3835.72", + "dir": "Close Short", + "closedPnl": "12.079226", + "hash": "0x826b7627334b3c7c83e5042deda371020837000cce4e5b4e26342179f24f1667", + "oid": 208513628429, + "crossed": true, + "fee": "0.829767", + "tid": 658217936611241, + "cloid": "0x00000000000000000000001602000246", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.89", + "sz": "0.13", + "side": "B", + "time": 1761072816035, + "startPosition": "-3815.34", + "dir": "Close Short", + "closedPnl": "0.075751", + "hash": "0x826b7627334b3c7c83e5042deda371020837000cce4e5b4e26342179f24f1667", + "oid": 208513628429, + "crossed": true, + "fee": "0.005293", + "tid": 887286362363105, + "cloid": "0x00000000000000000000001602000246", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.91", + "sz": "0.13", + "side": "B", + "time": 1761072816035, + "startPosition": "-3815.21", + "dir": "Close Short", + "closedPnl": "0.073151", + "hash": "0x826b7627334b3c7c83e5042deda371020837000cce4e5b4e26342179f24f1667", + "oid": 208513628429, + "crossed": true, + "fee": "0.005293", + "tid": 980177272911512, + "cloid": "0x00000000000000000000001602000246", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.91", + "sz": "0.15", + "side": "B", + "time": 1761072816035, + "startPosition": "-3815.08", + "dir": "Close Short", + "closedPnl": "0.084405", + "hash": "0x826b7627334b3c7c83e5042deda371020837000cce4e5b4e26342179f24f1667", + "oid": 208513628429, + "crossed": true, + "fee": "0.006108", + "tid": 888703113144199, + "cloid": "0x00000000000000000000001602000246", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.91", + "sz": "4.58", + "side": "B", + "time": 1761072816035, + "startPosition": "-3814.93", + "dir": "Close Short", + "closedPnl": "2.577166", + "hash": "0x826b7627334b3c7c83e5042deda371020837000cce4e5b4e26342179f24f1667", + "oid": 208513628429, + "crossed": true, + "fee": "0.186502", + "tid": 591653479764854, + "cloid": "0x00000000000000000000001602000246", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.94", + "sz": "25.77", + "side": "B", + "time": 1761072817836, + "startPosition": "-3810.35", + "dir": "Close Short", + "closedPnl": "13.727679", + "hash": "0xe2b643645f34ebb7e42f042deda38a0202110049fa380a89867eeeb71e38c5a2", + "oid": 208513658581, + "crossed": true, + "fee": "1.049545", + "tid": 1096430062903669, + "cloid": "0x00000000000000000000001602000247", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.92", + "sz": "0.13", + "side": "B", + "time": 1761072827637, + "startPosition": "-3784.58", + "dir": "Close Short", + "closedPnl": "0.071851", + "hash": "0x92c042285174c6df9439042deda40c0202cb000dec77e5b13688ed7b1078a0ca", + "oid": 208513762723, + "crossed": true, + "fee": "0.005294", + "tid": 34246206840072, + "cloid": "0x00000000000000000000001602000248", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.92", + "sz": "25.64", + "side": "B", + "time": 1761072827637, + "startPosition": "-3784.45", + "dir": "Close Short", + "closedPnl": "14.171228", + "hash": "0x92c042285174c6df9439042deda40c0202cb000dec77e5b13688ed7b1078a0ca", + "oid": 208513762723, + "crossed": true, + "fee": "1.044142", + "tid": 92630327078633, + "cloid": "0x00000000000000000000001602000248", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.93", + "sz": "14.67", + "side": "B", + "time": 1761072837699, + "startPosition": "-3758.81", + "dir": "Close Short", + "closedPnl": "7.961409", + "hash": "0x1812f14f2ad66352198c042deda4890201a00034c5d98224bbdb9ca1e9da3d3c", + "oid": 208513803627, + "crossed": true, + "fee": "0.59744", + "tid": 872189882689519, + "cloid": "0x00000000000000000000001602000249", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.93", + "sz": "0.77", + "side": "B", + "time": 1761072837699, + "startPosition": "-3744.14", + "dir": "Close Short", + "closedPnl": "0.417879", + "hash": "0x1812f14f2ad66352198c042deda4890201a00034c5d98224bbdb9ca1e9da3d3c", + "oid": 208513803627, + "crossed": true, + "fee": "0.031358", + "tid": 370874152211562, + "cloid": "0x00000000000000000000001602000249", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.93", + "sz": "10.3", + "side": "B", + "time": 1761072837699, + "startPosition": "-3743.37", + "dir": "Close Short", + "closedPnl": "5.58981", + "hash": "0x1812f14f2ad66352198c042deda4890201a00034c5d98224bbdb9ca1e9da3d3c", + "oid": 208513803627, + "crossed": true, + "fee": "0.41947", + "tid": 285339528117184, + "cloid": "0x00000000000000000000001602000249", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.93", + "sz": "0.03", + "side": "B", + "time": 1761072837699, + "startPosition": "-3733.07", + "dir": "Close Short", + "closedPnl": "0.016281", + "hash": "0x1812f14f2ad66352198c042deda4890201a00034c5d98224bbdb9ca1e9da3d3c", + "oid": 208513803627, + "crossed": true, + "fee": "0.001221", + "tid": 750056152980716, + "cloid": "0x00000000000000000000001602000249", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.9", + "sz": "14.11", + "side": "B", + "time": 1761072840020, + "startPosition": "-3733.04", + "dir": "Close Short", + "closedPnl": "8.080797", + "hash": "0x5828d306a12ea12459a2042deda4a10202d500ec3c21bff6fbf17e5960227b0e", + "oid": 208513814024, + "crossed": true, + "fee": "0.574545", + "tid": 525266579560380, + "cloid": "0x00000000000000000000001602000250", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.9", + "sz": "11.66", + "side": "B", + "time": 1761072840020, + "startPosition": "-3718.93", + "dir": "Close Short", + "closedPnl": "6.677682", + "hash": "0x5828d306a12ea12459a2042deda4a10202d500ec3c21bff6fbf17e5960227b0e", + "oid": 208513814024, + "crossed": true, + "fee": "0.474783", + "tid": 834741139800698, + "cloid": "0x00000000000000000000001602000250", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.84", + "sz": "25.78", + "side": "B", + "time": 1761072841828, + "startPosition": "-3707.27", + "dir": "Close Short", + "closedPnl": "16.311006", + "hash": "0x62b616e9e84e5215642f042deda4b7020f2900cf834170e7067ec23ca7422c00", + "oid": 208513840156, + "crossed": true, + "fee": "1.04941", + "tid": 491226742669385, + "cloid": "0x00000000000000000000001602000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.84", + "sz": "25.78", + "side": "B", + "time": 1761072844942, + "startPosition": "-3681.49", + "dir": "Close Short", + "closedPnl": "16.311006", + "hash": "0xb62f5713ed0c65acb7a9042deda4da02036600f9880f847e59f80266ac003f97", + "oid": 208513886026, + "crossed": true, + "fee": "1.04941", + "tid": 990518311910012, + "cloid": "0x00000000000000000000001602000252", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.84", + "sz": "25.78", + "side": "B", + "time": 1761072850248, + "startPosition": "-3655.71", + "dir": "Close Short", + "closedPnl": "16.311006", + "hash": "0xee533dce97c40bedefcc042deda51c02022800b432c72abf921be92156c7e5d8", + "oid": 208513955592, + "crossed": true, + "fee": "1.04941", + "tid": 716858613836229, + "cloid": "0x00000000000000000000001602000253", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.8", + "sz": "25.79", + "side": "B", + "time": 1761072851648, + "startPosition": "-3629.93", + "dir": "Close Short", + "closedPnl": "17.348933", + "hash": "0xf09763dd2be872f4f211042deda52c02066a00c2c6eb91c794600f2feaec4cdf", + "oid": 208513976432, + "crossed": true, + "fee": "1.049601", + "tid": 842467976595110, + "cloid": "0x00000000000000000000001602000254", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.78", + "sz": "25.79", + "side": "B", + "time": 1761072853646, + "startPosition": "-3604.14", + "dir": "Close Short", + "closedPnl": "17.864733", + "hash": "0x9bb48fedc703bb909d2e042deda5410203c300d36206da623f7d3b408607957b", + "oid": 208513997632, + "crossed": true, + "fee": "1.049493", + "tid": 659814482990109, + "cloid": "0x00000000000000000000001602000255", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.77", + "sz": "2.58", + "side": "B", + "time": 1761072857329, + "startPosition": "-3578.35", + "dir": "Close Short", + "closedPnl": "1.812966", + "hash": "0x6a0900f199826c1d6b82042deda56a02029e00d734858aef0dd1ac4458864608", + "oid": 208514027854, + "crossed": true, + "fee": "0.104984", + "tid": 831236787316178, + "cloid": "0x00000000000000000000001602000256", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.77", + "sz": "23.21", + "side": "B", + "time": 1761072857329, + "startPosition": "-3575.77", + "dir": "Close Short", + "closedPnl": "16.309667", + "hash": "0x6a0900f199826c1d6b82042deda56a02029e00d734858aef0dd1ac4458864608", + "oid": 208514027854, + "crossed": true, + "fee": "0.944454", + "tid": 746942324056122, + "cloid": "0x00000000000000000000001602000256", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.81", + "sz": "4.62", + "side": "B", + "time": 1761072865103, + "startPosition": "-3552.56", + "dir": "Close Short", + "closedPnl": "3.061674", + "hash": "0x2603bbe3776b3110277d042deda5ce02053800c9126e4fe2c9cc6736366f0afa", + "oid": 208514092013, + "crossed": true, + "fee": "0.188034", + "tid": 876280892442219, + "cloid": "0x00000000000000000000001602000257", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.81", + "sz": "0.13", + "side": "B", + "time": 1761072865103, + "startPosition": "-3547.94", + "dir": "Close Short", + "closedPnl": "0.086151", + "hash": "0x2603bbe3776b3110277d042deda5ce02053800c9126e4fe2c9cc6736366f0afa", + "oid": 208514092013, + "crossed": true, + "fee": "0.005291", + "tid": 478885185467053, + "cloid": "0x00000000000000000000001602000257", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.81", + "sz": "2.58", + "side": "B", + "time": 1761072865103, + "startPosition": "-3547.81", + "dir": "Close Short", + "closedPnl": "1.709766", + "hash": "0x2603bbe3776b3110277d042deda5ce02053800c9126e4fe2c9cc6736366f0afa", + "oid": 208514092013, + "crossed": true, + "fee": "0.105006", + "tid": 691182178180138, + "cloid": "0x00000000000000000000001602000257", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.82", + "sz": "18.46", + "side": "B", + "time": 1761072865103, + "startPosition": "-3545.23", + "dir": "Close Short", + "closedPnl": "12.048842", + "hash": "0x2603bbe3776b3110277d042deda5ce02053800c9126e4fe2c9cc6736366f0afa", + "oid": 208514092013, + "crossed": true, + "fee": "0.751362", + "tid": 1100154677642692, + "cloid": "0x00000000000000000000001602000257", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.87", + "sz": "25.78", + "side": "B", + "time": 1761072866991, + "startPosition": "-3526.77", + "dir": "Close Short", + "closedPnl": "15.537606", + "hash": "0xe25888fb8258177ae3d2042deda5e80208bd00e11d5b364c8621344e415bf165", + "oid": 208514131378, + "crossed": true, + "fee": "1.049573", + "tid": 554435961625473, + "cloid": "0x00000000000000000000001602000258", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.89", + "sz": "0.13", + "side": "B", + "time": 1761072868595, + "startPosition": "-3500.99", + "dir": "Close Short", + "closedPnl": "0.075751", + "hash": "0x1db35124415f674f1f2d042deda5fc0206c90009dc528621c17bfc7700534139", + "oid": 208514160816, + "crossed": true, + "fee": "0.005293", + "tid": 337660220088606, + "cloid": "0x00000000000000000000001602000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.9", + "sz": "10.31", + "side": "B", + "time": 1761072868595, + "startPosition": "-3500.86", + "dir": "Close Short", + "closedPnl": "5.904537", + "hash": "0x1db35124415f674f1f2d042deda5fc0206c90009dc528621c17bfc7700534139", + "oid": 208514160816, + "crossed": true, + "fee": "0.419812", + "tid": 270720592678095, + "cloid": "0x00000000000000000000001602000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.91", + "sz": "0.13", + "side": "B", + "time": 1761072868595, + "startPosition": "-3490.55", + "dir": "Close Short", + "closedPnl": "0.073151", + "hash": "0x1db35124415f674f1f2d042deda5fc0206c90009dc528621c17bfc7700534139", + "oid": 208514160816, + "crossed": true, + "fee": "0.005293", + "tid": 362159198265817, + "cloid": "0x00000000000000000000001602000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.91", + "sz": "15.2", + "side": "B", + "time": 1761072868595, + "startPosition": "-3490.42", + "dir": "Close Short", + "closedPnl": "8.55304", + "hash": "0x1db35124415f674f1f2d042deda5fc0206c90009dc528621c17bfc7700534139", + "oid": 208514160816, + "crossed": true, + "fee": "0.61896", + "tid": 48370077757606, + "cloid": "0x00000000000000000000001602000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.87", + "sz": "16.14", + "side": "B", + "time": 1761072870926, + "startPosition": "-3475.22", + "dir": "Close Short", + "closedPnl": "9.727578", + "hash": "0xe819731e57439602e993042deda61c0203e00003f246b4d48be21e7116476fed", + "oid": 208514192418, + "crossed": true, + "fee": "0.657102", + "tid": 1048354770096853, + "cloid": "0x00000000000000000000001602000260", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.87", + "sz": "9.63", + "side": "B", + "time": 1761072870926, + "startPosition": "-3459.08", + "dir": "Close Short", + "closedPnl": "5.804001", + "hash": "0xe819731e57439602e993042deda61c0203e00003f246b4d48be21e7116476fed", + "oid": 208514192418, + "crossed": true, + "fee": "0.392063", + "tid": 1055213822840416, + "cloid": "0x00000000000000000000001602000260", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.91", + "sz": "15.47", + "side": "B", + "time": 1761072874964, + "startPosition": "-3449.45", + "dir": "Close Short", + "closedPnl": "8.704969", + "hash": "0x385794b05d4a4ff139d1042deda6570202d90095f84d6ec3dc2040031c4e29db", + "oid": 208514223453, + "crossed": true, + "fee": "0.629955", + "tid": 417661691007574, + "cloid": "0x00000000000000000000001602000261", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.91", + "sz": "10.3", + "side": "B", + "time": 1761072874964, + "startPosition": "-3433.98", + "dir": "Close Short", + "closedPnl": "5.79581", + "hash": "0x385794b05d4a4ff139d1042deda6570202d90095f84d6ec3dc2040031c4e29db", + "oid": 208514223453, + "crossed": true, + "fee": "0.419427", + "tid": 467534364030631, + "cloid": "0x00000000000000000000001602000261", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.85", + "sz": "25.77", + "side": "B", + "time": 1761072878570, + "startPosition": "-3423.68", + "dir": "Close Short", + "closedPnl": "16.046979", + "hash": "0x2245cf754905059a23bf042deda683020719005ae408246cc60e7ac80808df84", + "oid": 208514266130, + "crossed": true, + "fee": "1.049058", + "tid": 178619535303531, + "cloid": "0x00000000000000000000001602000262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.84", + "sz": "0.77", + "side": "B", + "time": 1761072879987, + "startPosition": "-3397.91", + "dir": "Close Short", + "closedPnl": "0.487179", + "hash": "0x60489e00b6db693a61c2042deda6940202e900e651de880c0411495375df4325", + "oid": 208514286636, + "crossed": true, + "fee": "0.031343", + "tid": 468393467808992, + "cloid": "0x00000000000000000000001602000263", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.84", + "sz": "25.01", + "side": "B", + "time": 1761072879987, + "startPosition": "-3397.14", + "dir": "Close Short", + "closedPnl": "15.823827", + "hash": "0x60489e00b6db693a61c2042deda6940202e900e651de880c0411495375df4325", + "oid": 208514286636, + "crossed": true, + "fee": "1.018067", + "tid": 536341331625484, + "cloid": "0x00000000000000000000001602000263", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.84", + "sz": "25.78", + "side": "B", + "time": 1761072881166, + "startPosition": "-3372.13", + "dir": "Close Short", + "closedPnl": "16.311006", + "hash": "0x3f318c643084095240ab042deda6a40201ec0049cb872824e2fa37b6ef87e33c", + "oid": 208514298407, + "crossed": true, + "fee": "1.04941", + "tid": 767210376842046, + "cloid": "0x00000000000000000000001602000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.82", + "sz": "25.78", + "side": "B", + "time": 1761072883119, + "startPosition": "-3346.35", + "dir": "Close Short", + "closedPnl": "16.826606", + "hash": "0xd6ced4a73020fda3d848042deda6be0203f4008ccb241c757a977ff9ef24d78e", + "oid": 208514321339, + "crossed": true, + "fee": "1.049302", + "tid": 119888612972867, + "cloid": "0x00000000000000000000001602000265", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.84", + "sz": "0.13", + "side": "B", + "time": 1761072884718, + "startPosition": "-3320.57", + "dir": "Close Short", + "closedPnl": "0.082251", + "hash": "0xfc8f5a434493b0a9fe09042deda6d40202e50028df96cf7ca058059603978a94", + "oid": 208514348322, + "crossed": true, + "fee": "0.005291", + "tid": 34729278199083, + "cloid": "0x00000000000000000000001602000266", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.84", + "sz": "10.31", + "side": "B", + "time": 1761072884718, + "startPosition": "-3320.44", + "dir": "Close Short", + "closedPnl": "6.523137", + "hash": "0xfc8f5a434493b0a9fe09042deda6d40202e50028df96cf7ca058059603978a94", + "oid": 208514348322, + "crossed": true, + "fee": "0.419682", + "tid": 598659534495188, + "cloid": "0x00000000000000000000001602000266", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.84", + "sz": "15.34", + "side": "B", + "time": 1761072884718, + "startPosition": "-3310.13", + "dir": "Close Short", + "closedPnl": "9.705618", + "hash": "0xfc8f5a434493b0a9fe09042deda6d40202e50028df96cf7ca058059603978a94", + "oid": 208514348322, + "crossed": true, + "fee": "0.624436", + "tid": 425926993133198, + "cloid": "0x00000000000000000000001602000266", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.85", + "sz": "25.78", + "side": "B", + "time": 1761072887868, + "startPosition": "-3294.79", + "dir": "Close Short", + "closedPnl": "16.053206", + "hash": "0x39294149da3d72603aa2042deda6f802039b002f75309132dcf1ec9c99314c4a", + "oid": 208514386580, + "crossed": true, + "fee": "1.049465", + "tid": 581284352412003, + "cloid": "0x00000000000000000000001602000267", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.91", + "sz": "0.13", + "side": "B", + "time": 1761072893791, + "startPosition": "-3269.01", + "dir": "Close Short", + "closedPnl": "0.073151", + "hash": "0xf3e3025c8b1ed1b3f55c042deda7410202ac00422611f08697abadaf4a12ab9e", + "oid": 208514459243, + "crossed": true, + "fee": "0.005293", + "tid": 665814161345177, + "cloid": "0x00000000000000000000001602000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.92", + "sz": "0.13", + "side": "B", + "time": 1761072893791, + "startPosition": "-3268.88", + "dir": "Close Short", + "closedPnl": "0.071851", + "hash": "0xf3e3025c8b1ed1b3f55c042deda7410202ac00422611f08697abadaf4a12ab9e", + "oid": 208514459243, + "crossed": true, + "fee": "0.005294", + "tid": 173781111947772, + "cloid": "0x00000000000000000000001602000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.92", + "sz": "20.38", + "side": "B", + "time": 1761072893791, + "startPosition": "-3268.75", + "dir": "Close Short", + "closedPnl": "11.264026", + "hash": "0xf3e3025c8b1ed1b3f55c042deda7410202ac00422611f08697abadaf4a12ab9e", + "oid": 208514459243, + "crossed": true, + "fee": "0.829938", + "tid": 666441883399474, + "cloid": "0x00000000000000000000001602000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.93", + "sz": "5.13", + "side": "B", + "time": 1761072893791, + "startPosition": "-3248.37", + "dir": "Close Short", + "closedPnl": "2.784051", + "hash": "0xf3e3025c8b1ed1b3f55c042deda7410202ac00422611f08697abadaf4a12ab9e", + "oid": 208514459243, + "crossed": true, + "fee": "0.20892", + "tid": 888082115872265, + "cloid": "0x00000000000000000000001602000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.95", + "sz": "0.13", + "side": "B", + "time": 1761072901586, + "startPosition": "-3243.24", + "dir": "Close Short", + "closedPnl": "0.067951", + "hash": "0xb7510bd393be8483b8ca042deda7a90209be00b92eb1a3555b19b72652b25e6e", + "oid": 208514546564, + "crossed": true, + "fee": "0.005294", + "tid": 758436454444906, + "cloid": "0x00000000000000000000001602000269", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.97", + "sz": "0.13", + "side": "B", + "time": 1761072901586, + "startPosition": "-3243.11", + "dir": "Close Short", + "closedPnl": "0.065351", + "hash": "0xb7510bd393be8483b8ca042deda7a90209be00b92eb1a3555b19b72652b25e6e", + "oid": 208514546564, + "crossed": true, + "fee": "0.005295", + "tid": 469287122838359, + "cloid": "0x00000000000000000000001602000269", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.97", + "sz": "2.58", + "side": "B", + "time": 1761072901586, + "startPosition": "-3242.98", + "dir": "Close Short", + "closedPnl": "1.296966", + "hash": "0xb7510bd393be8483b8ca042deda7a90209be00b92eb1a3555b19b72652b25e6e", + "oid": 208514546564, + "crossed": true, + "fee": "0.105092", + "tid": 906721140529880, + "cloid": "0x00000000000000000000001602000269", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "0.13", + "side": "B", + "time": 1761072901586, + "startPosition": "-3240.4", + "dir": "Close Short", + "closedPnl": "0.062751", + "hash": "0xb7510bd393be8483b8ca042deda7a90209be00b92eb1a3555b19b72652b25e6e", + "oid": 208514546564, + "crossed": true, + "fee": "0.005295", + "tid": 296126328181593, + "cloid": "0x00000000000000000000001602000269", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "0.15", + "side": "B", + "time": 1761072901586, + "startPosition": "-3240.27", + "dir": "Close Short", + "closedPnl": "0.072405", + "hash": "0xb7510bd393be8483b8ca042deda7a90209be00b92eb1a3555b19b72652b25e6e", + "oid": 208514546564, + "crossed": true, + "fee": "0.00611", + "tid": 878654377737777, + "cloid": "0x00000000000000000000001602000269", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.0", + "sz": "0.13", + "side": "B", + "time": 1761072901586, + "startPosition": "-3240.12", + "dir": "Close Short", + "closedPnl": "0.061451", + "hash": "0xb7510bd393be8483b8ca042deda7a90209be00b92eb1a3555b19b72652b25e6e", + "oid": 208514546564, + "crossed": true, + "fee": "0.005296", + "tid": 583236289250134, + "cloid": "0x00000000000000000000001602000269", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.0", + "sz": "0.1", + "side": "B", + "time": 1761072901586, + "startPosition": "-3239.99", + "dir": "Close Short", + "closedPnl": "0.04727", + "hash": "0xb7510bd393be8483b8ca042deda7a90209be00b92eb1a3555b19b72652b25e6e", + "oid": 208514546564, + "crossed": true, + "fee": "0.004073", + "tid": 32994959940739, + "cloid": "0x00000000000000000000001602000269", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.0", + "sz": "0.29", + "side": "B", + "time": 1761072901586, + "startPosition": "-3239.89", + "dir": "Close Short", + "closedPnl": "0.137083", + "hash": "0xb7510bd393be8483b8ca042deda7a90209be00b92eb1a3555b19b72652b25e6e", + "oid": 208514546564, + "crossed": true, + "fee": "0.011814", + "tid": 904044325129702, + "cloid": "0x00000000000000000000001602000269", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.0", + "sz": "13.28", + "side": "B", + "time": 1761072901586, + "startPosition": "-3239.6", + "dir": "Close Short", + "closedPnl": "6.277456", + "hash": "0xb7510bd393be8483b8ca042deda7a90209be00b92eb1a3555b19b72652b25e6e", + "oid": 208514546564, + "crossed": true, + "fee": "0.541027", + "tid": 1029535479798823, + "cloid": "0x00000000000000000000001602000269", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.01", + "sz": "0.15", + "side": "B", + "time": 1761072901586, + "startPosition": "-3226.32", + "dir": "Close Short", + "closedPnl": "0.069405", + "hash": "0xb7510bd393be8483b8ca042deda7a90209be00b92eb1a3555b19b72652b25e6e", + "oid": 208514546564, + "crossed": true, + "fee": "0.006111", + "tid": 599096329734639, + "cloid": "0x00000000000000000000001602000269", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.02", + "sz": "0.13", + "side": "B", + "time": 1761072901586, + "startPosition": "-3226.17", + "dir": "Close Short", + "closedPnl": "0.058851", + "hash": "0xb7510bd393be8483b8ca042deda7a90209be00b92eb1a3555b19b72652b25e6e", + "oid": 208514546564, + "crossed": true, + "fee": "0.005296", + "tid": 192989309390490, + "cloid": "0x00000000000000000000001602000269", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.02", + "sz": "8.56", + "side": "B", + "time": 1761072901586, + "startPosition": "-3226.04", + "dir": "Close Short", + "closedPnl": "3.875112", + "hash": "0xb7510bd393be8483b8ca042deda7a90209be00b92eb1a3555b19b72652b25e6e", + "oid": 208514546564, + "crossed": true, + "fee": "0.34877", + "tid": 999765307687564, + "cloid": "0x00000000000000000000001602000269", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.03", + "sz": "0.13", + "side": "B", + "time": 1761072903463, + "startPosition": "-3217.48", + "dir": "Close Short", + "closedPnl": "0.057551", + "hash": "0x528b114c6b9a238c5404042deda7bd020a880032069d425ef653bc9f2a9dfd76", + "oid": 208514575134, + "crossed": true, + "fee": "0.005297", + "tid": 957304125342399, + "cloid": "0x00000000000000000000001602000270", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.03", + "sz": "25.63", + "side": "B", + "time": 1761072903463, + "startPosition": "-3217.35", + "dir": "Close Short", + "closedPnl": "11.346401", + "hash": "0x528b114c6b9a238c5404042deda7bd020a880032069d425ef653bc9f2a9dfd76", + "oid": 208514575134, + "crossed": true, + "fee": "1.044327", + "tid": 156517037474467, + "cloid": "0x00000000000000000000001602000270", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.02", + "sz": "25.76", + "side": "B", + "time": 1761072904832, + "startPosition": "-3191.72", + "dir": "Close Short", + "closedPnl": "11.661552", + "hash": "0x67430bf8760d5fb468bc042deda7cc02043c00de11007e860b0bb74b3501399f", + "oid": 208514591073, + "crossed": true, + "fee": "1.04957", + "tid": 87097802022409, + "cloid": "0x00000000000000000000001602000271", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "22.08", + "side": "B", + "time": 1761072908190, + "startPosition": "-3165.96", + "dir": "Close Short", + "closedPnl": "10.658016", + "hash": "0x149d344e6e24132c1616042deda7f50204810034092731feb865dfa12d27ed16", + "oid": 208514626708, + "crossed": true, + "fee": "0.899492", + "tid": 448944890703090, + "cloid": "0x00000000000000000000001602000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "3.68", + "side": "B", + "time": 1761072908190, + "startPosition": "-3143.88", + "dir": "Close Short", + "closedPnl": "1.776336", + "hash": "0x149d344e6e24132c1616042deda7f50204810034092731feb865dfa12d27ed16", + "oid": 208514626708, + "crossed": true, + "fee": "0.149915", + "tid": 1051109165750192, + "cloid": "0x00000000000000000000001602000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "25.76", + "side": "B", + "time": 1761072912916, + "startPosition": "-3140.2", + "dir": "Close Short", + "closedPnl": "12.434352", + "hash": "0x5fb8c7c4c4d0bd046132042deda82902022000aa5fd3dbd60381731783d496ef", + "oid": 208514661918, + "crossed": true, + "fee": "1.049408", + "tid": 729169632107587, + "cloid": "0x00000000000000000000001602000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "25.76", + "side": "B", + "time": 1761072917153, + "startPosition": "-3114.44", + "dir": "Close Short", + "closedPnl": "12.434352", + "hash": "0x583e6fe8b5e0339e59b8042deda85902016900ce50e35270fc071b3b74e40d88", + "oid": 208514697124, + "crossed": true, + "fee": "1.049408", + "tid": 99101906469971, + "cloid": "0x00000000000000000000001602000274", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "4.12", + "side": "B", + "time": 1761072922034, + "startPosition": "-3088.68", + "dir": "Close Short", + "closedPnl": "1.988724", + "hash": "0x8d1a39aa88c1c4868e93042deda896020cd6009023c4e35830e2e4fd47c59e71", + "oid": 208514742517, + "crossed": true, + "fee": "0.16784", + "tid": 17691407167238, + "cloid": "0x00000000000000000000001602000275", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.0", + "sz": "0.13", + "side": "B", + "time": 1761072922034, + "startPosition": "-3084.56", + "dir": "Close Short", + "closedPnl": "0.061451", + "hash": "0x8d1a39aa88c1c4868e93042deda896020cd6009023c4e35830e2e4fd47c59e71", + "oid": 208514742517, + "crossed": true, + "fee": "0.005296", + "tid": 757235194688506, + "cloid": "0x00000000000000000000001602000275", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.02", + "sz": "0.13", + "side": "B", + "time": 1761072922034, + "startPosition": "-3084.43", + "dir": "Close Short", + "closedPnl": "0.058851", + "hash": "0x8d1a39aa88c1c4868e93042deda896020cd6009023c4e35830e2e4fd47c59e71", + "oid": 208514742517, + "crossed": true, + "fee": "0.005296", + "tid": 123774585004538, + "cloid": "0x00000000000000000000001602000275", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.03", + "sz": "0.13", + "side": "B", + "time": 1761072922034, + "startPosition": "-3084.3", + "dir": "Close Short", + "closedPnl": "0.057551", + "hash": "0x8d1a39aa88c1c4868e93042deda896020cd6009023c4e35830e2e4fd47c59e71", + "oid": 208514742517, + "crossed": true, + "fee": "0.005297", + "tid": 44898941297714, + "cloid": "0x00000000000000000000001602000275", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.04", + "sz": "20.38", + "side": "B", + "time": 1761072922034, + "startPosition": "-3084.17", + "dir": "Close Short", + "closedPnl": "8.818426", + "hash": "0x8d1a39aa88c1c4868e93042deda896020cd6009023c4e35830e2e4fd47c59e71", + "oid": 208514742517, + "crossed": true, + "fee": "0.830452", + "tid": 1065701731519101, + "cloid": "0x00000000000000000000001602000275", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.05", + "sz": "0.13", + "side": "B", + "time": 1761072922034, + "startPosition": "-3063.79", + "dir": "Close Short", + "closedPnl": "0.054951", + "hash": "0x8d1a39aa88c1c4868e93042deda896020cd6009023c4e35830e2e4fd47c59e71", + "oid": 208514742517, + "crossed": true, + "fee": "0.005297", + "tid": 144249557558578, + "cloid": "0x00000000000000000000001602000275", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.05", + "sz": "0.15", + "side": "B", + "time": 1761072922034, + "startPosition": "-3063.66", + "dir": "Close Short", + "closedPnl": "0.063405", + "hash": "0x8d1a39aa88c1c4868e93042deda896020cd6009023c4e35830e2e4fd47c59e71", + "oid": 208514742517, + "crossed": true, + "fee": "0.006112", + "tid": 487567023164933, + "cloid": "0x00000000000000000000001602000275", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.05", + "sz": "0.59", + "side": "B", + "time": 1761072922034, + "startPosition": "-3063.51", + "dir": "Close Short", + "closedPnl": "0.249393", + "hash": "0x8d1a39aa88c1c4868e93042deda896020cd6009023c4e35830e2e4fd47c59e71", + "oid": 208514742517, + "crossed": true, + "fee": "0.024042", + "tid": 676258022749541, + "cloid": "0x00000000000000000000001602000275", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "0.13", + "side": "B", + "time": 1761072924773, + "startPosition": "-3062.92", + "dir": "Close Short", + "closedPnl": "0.051051", + "hash": "0x1cdebba68b7f0ec71e58042deda8b4020a23008c26722d99c0a766f94a72e8b1", + "oid": 208514785124, + "crossed": true, + "fee": "0.005298", + "tid": 465449558594803, + "cloid": "0x00000000000000000000001602000276", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "11.63", + "side": "B", + "time": 1761072924773, + "startPosition": "-3062.79", + "dir": "Close Short", + "closedPnl": "4.567101", + "hash": "0x1cdebba68b7f0ec71e58042deda8b4020a23008c26722d99c0a766f94a72e8b1", + "oid": 208514785124, + "crossed": true, + "fee": "0.474001", + "tid": 355729076930186, + "cloid": "0x00000000000000000000001602000276", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "13.99", + "side": "B", + "time": 1761072924773, + "startPosition": "-3051.16", + "dir": "Close Short", + "closedPnl": "5.493873", + "hash": "0x1cdebba68b7f0ec71e58042deda8b4020a23008c26722d99c0a766f94a72e8b1", + "oid": 208514785124, + "crossed": true, + "fee": "0.570187", + "tid": 792376037140047, + "cloid": "0x00000000000000000000001602000276", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.06", + "sz": "25.75", + "side": "B", + "time": 1761072926805, + "startPosition": "-3037.17", + "dir": "Close Short", + "closedPnl": "10.627025", + "hash": "0x0fd8c9b41dbd43c41152042deda8cf0203200099b8b06296b3a17506dcb11dae", + "oid": 208514804212, + "crossed": true, + "fee": "1.049379", + "tid": 599498656445117, + "cloid": "0x00000000000000000000001602000277", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "25.75", + "side": "B", + "time": 1761072931253, + "startPosition": "-3011.42", + "dir": "Close Short", + "closedPnl": "9.597025", + "hash": "0x8c4750fbd965ca648dc1042deda8ff0202a300e17468e936300ffc4e9869a44f", + "oid": 208514827553, + "crossed": true, + "fee": "1.049595", + "tid": 44279703567892, + "cloid": "0x00000000000000000000001602000278", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.04", + "sz": "19.07", + "side": "B", + "time": 1761072936175, + "startPosition": "-2985.67", + "dir": "Close Short", + "closedPnl": "8.251589", + "hash": "0xdf0e916ced005d40e088042deda93c0201fc005288037c1282d73cbfac04372b", + "oid": 208514856992, + "crossed": true, + "fee": "0.777071", + "tid": 55909711739005, + "cloid": "0x00000000000000000000001602000279", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.04", + "sz": "6.68", + "side": "B", + "time": 1761072936175, + "startPosition": "-2966.6", + "dir": "Close Short", + "closedPnl": "2.890436", + "hash": "0xdf0e916ced005d40e088042deda93c0201fc005288037c1282d73cbfac04372b", + "oid": 208514856992, + "crossed": true, + "fee": "0.272199", + "tid": 993700468751193, + "cloid": "0x00000000000000000000001602000279", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.04", + "sz": "12.12", + "side": "B", + "time": 1761072937460, + "startPosition": "-2959.92", + "dir": "Close Short", + "closedPnl": "5.244324", + "hash": "0xac719d9a5103196cadeb042deda94e020262007fec06383e503a48ed1006f357", + "oid": 208514870365, + "crossed": true, + "fee": "0.49387", + "tid": 1077549099122718, + "cloid": "0x00000000000000000000001602000280", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.04", + "sz": "13.63", + "side": "B", + "time": 1761072937460, + "startPosition": "-2947.8", + "dir": "Close Short", + "closedPnl": "5.897701", + "hash": "0xac719d9a5103196cadeb042deda94e020262007fec06383e503a48ed1006f357", + "oid": 208514870365, + "crossed": true, + "fee": "0.5554", + "tid": 600475186849224, + "cloid": "0x00000000000000000000001602000280", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.07", + "sz": "0.13", + "side": "B", + "time": 1761072939684, + "startPosition": "-2934.17", + "dir": "Close Short", + "closedPnl": "0.052351", + "hash": "0xd070801471d4573bd1ea042deda96c0201e100fa0cd7760d74392b6730d83126", + "oid": 208514894897, + "crossed": true, + "fee": "0.005298", + "tid": 600145875176265, + "cloid": "0x00000000000000000000001602000281", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "0.13", + "side": "B", + "time": 1761072939684, + "startPosition": "-2934.04", + "dir": "Close Short", + "closedPnl": "0.051051", + "hash": "0xd070801471d4573bd1ea042deda96c0201e100fa0cd7760d74392b6730d83126", + "oid": 208514894897, + "crossed": true, + "fee": "0.005298", + "tid": 229904709416880, + "cloid": "0x00000000000000000000001602000281", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "0.15", + "side": "B", + "time": 1761072939684, + "startPosition": "-2933.91", + "dir": "Close Short", + "closedPnl": "0.055905", + "hash": "0xd070801471d4573bd1ea042deda96c0201e100fa0cd7760d74392b6730d83126", + "oid": 208514894897, + "crossed": true, + "fee": "0.006114", + "tid": 95661018542026, + "cloid": "0x00000000000000000000001602000281", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "12.0", + "side": "B", + "time": 1761072939684, + "startPosition": "-2933.76", + "dir": "Close Short", + "closedPnl": "4.4724", + "hash": "0xd070801471d4573bd1ea042deda96c0201e100fa0cd7760d74392b6730d83126", + "oid": 208514894897, + "crossed": true, + "fee": "0.489131", + "tid": 581723359731317, + "cloid": "0x00000000000000000000001602000281", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "0.13", + "side": "B", + "time": 1761072939684, + "startPosition": "-2921.76", + "dir": "Close Short", + "closedPnl": "0.048451", + "hash": "0xd070801471d4573bd1ea042deda96c0201e100fa0cd7760d74392b6730d83126", + "oid": 208514894897, + "crossed": true, + "fee": "0.005298", + "tid": 390054060350772, + "cloid": "0x00000000000000000000001602000281", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.11", + "sz": "0.13", + "side": "B", + "time": 1761072939684, + "startPosition": "-2921.63", + "dir": "Close Short", + "closedPnl": "0.047151", + "hash": "0xd070801471d4573bd1ea042deda96c0201e100fa0cd7760d74392b6730d83126", + "oid": 208514894897, + "crossed": true, + "fee": "0.005299", + "tid": 767809727052374, + "cloid": "0x00000000000000000000001602000281", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.11", + "sz": "13.08", + "side": "B", + "time": 1761072939684, + "startPosition": "-2921.5", + "dir": "Close Short", + "closedPnl": "4.744116", + "hash": "0xd070801471d4573bd1ea042deda96c0201e100fa0cd7760d74392b6730d83126", + "oid": 208514894897, + "crossed": true, + "fee": "0.533181", + "tid": 162302867384196, + "cloid": "0x00000000000000000000001602000281", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.11", + "sz": "25.74", + "side": "B", + "time": 1761072943648, + "startPosition": "-2908.42", + "dir": "Close Short", + "closedPnl": "9.335898", + "hash": "0x9ce4883c7ef1c9da9e5e042deda9a201f500a02219f4e8ac40ad338f3df5a3c5", + "oid": 208514930274, + "crossed": true, + "fee": "1.049242", + "tid": 709081625739511, + "cloid": "0x00000000000000000000001602000282", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "25.74", + "side": "B", + "time": 1761072953817, + "startPosition": "-2882.68", + "dir": "Close Short", + "closedPnl": "9.078498", + "hash": "0x4e199f7e0707d1304f93042dedaa1b0202010063a20af002f1e24ad0c60bab1a", + "oid": 208514980417, + "crossed": true, + "fee": "1.049296", + "tid": 956715315077105, + "cloid": "0x00000000000000000000001602000283", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.13", + "sz": "0.13", + "side": "B", + "time": 1761072962791, + "startPosition": "-2856.94", + "dir": "Close Short", + "closedPnl": "0.044551", + "hash": "0x24e334ad59cb22d7265c042dedaa9202097a0092f4ce41a9c8abe00018cefcc1", + "oid": 208515039792, + "crossed": true, + "fee": "0.005299", + "tid": 582484044827995, + "cloid": "0x00000000000000000000001602000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.13", + "sz": "0.06", + "side": "B", + "time": 1761072962791, + "startPosition": "-2856.81", + "dir": "Close Short", + "closedPnl": "0.020562", + "hash": "0x24e334ad59cb22d7265c042dedaa9202097a0092f4ce41a9c8abe00018cefcc1", + "oid": 208515039792, + "crossed": true, + "fee": "0.002446", + "tid": 810350172295943, + "cloid": "0x00000000000000000000001602000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.13", + "sz": "0.57", + "side": "B", + "time": 1761072962791, + "startPosition": "-2856.75", + "dir": "Close Short", + "closedPnl": "0.195339", + "hash": "0x24e334ad59cb22d7265c042dedaa9202097a0092f4ce41a9c8abe00018cefcc1", + "oid": 208515039792, + "crossed": true, + "fee": "0.023237", + "tid": 1097539343857472, + "cloid": "0x00000000000000000000001602000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.13", + "sz": "3.99", + "side": "B", + "time": 1761072962791, + "startPosition": "-2856.18", + "dir": "Close Short", + "closedPnl": "1.367373", + "hash": "0x24e334ad59cb22d7265c042dedaa9202097a0092f4ce41a9c8abe00018cefcc1", + "oid": 208515039792, + "crossed": true, + "fee": "0.162661", + "tid": 157379169500821, + "cloid": "0x00000000000000000000001602000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.13", + "sz": "0.06", + "side": "B", + "time": 1761072962791, + "startPosition": "-2852.19", + "dir": "Close Short", + "closedPnl": "0.020562", + "hash": "0x24e334ad59cb22d7265c042dedaa9202097a0092f4ce41a9c8abe00018cefcc1", + "oid": 208515039792, + "crossed": true, + "fee": "0.002446", + "tid": 949374624437129, + "cloid": "0x00000000000000000000001602000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.15", + "sz": "0.13", + "side": "B", + "time": 1761072962791, + "startPosition": "-2852.13", + "dir": "Close Short", + "closedPnl": "0.041951", + "hash": "0x24e334ad59cb22d7265c042dedaa9202097a0092f4ce41a9c8abe00018cefcc1", + "oid": 208515039792, + "crossed": true, + "fee": "0.0053", + "tid": 958508852367220, + "cloid": "0x00000000000000000000001602000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.16", + "sz": "0.13", + "side": "B", + "time": 1761072962791, + "startPosition": "-2852.0", + "dir": "Close Short", + "closedPnl": "0.040651", + "hash": "0x24e334ad59cb22d7265c042dedaa9202097a0092f4ce41a9c8abe00018cefcc1", + "oid": 208515039792, + "crossed": true, + "fee": "0.0053", + "tid": 160949779361701, + "cloid": "0x00000000000000000000001602000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.17", + "sz": "0.15", + "side": "B", + "time": 1761072962791, + "startPosition": "-2851.87", + "dir": "Close Short", + "closedPnl": "0.045405", + "hash": "0x24e334ad59cb22d7265c042dedaa9202097a0092f4ce41a9c8abe00018cefcc1", + "oid": 208515039792, + "crossed": true, + "fee": "0.006116", + "tid": 243672606556672, + "cloid": "0x00000000000000000000001602000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.17", + "sz": "2.58", + "side": "B", + "time": 1761072962791, + "startPosition": "-2851.72", + "dir": "Close Short", + "closedPnl": "0.780966", + "hash": "0x24e334ad59cb22d7265c042dedaa9202097a0092f4ce41a9c8abe00018cefcc1", + "oid": 208515039792, + "crossed": true, + "fee": "0.105201", + "tid": 362665371802161, + "cloid": "0x00000000000000000000001602000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.18", + "sz": "17.94", + "side": "B", + "time": 1761072962791, + "startPosition": "-2849.14", + "dir": "Close Short", + "closedPnl": "5.251038", + "hash": "0x24e334ad59cb22d7265c042dedaa9202097a0092f4ce41a9c8abe00018cefcc1", + "oid": 208515039792, + "crossed": true, + "fee": "0.731553", + "tid": 210420893931419, + "cloid": "0x00000000000000000000001602000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.15", + "sz": "25.74", + "side": "B", + "time": 1761072973374, + "startPosition": "-2831.2", + "dir": "Close Short", + "closedPnl": "8.306298", + "hash": "0x2d5b40d12f6437612ed4042dedab1b02037700b6ca675633d123ec23ee68114b", + "oid": 208515107593, + "crossed": true, + "fee": "1.049458", + "tid": 487732005108444, + "cloid": "0x00000000000000000000001602000285", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.14", + "sz": "25.74", + "side": "B", + "time": 1761072975464, + "startPosition": "-2805.46", + "dir": "Close Short", + "closedPnl": "8.563698", + "hash": "0xd011fef72dd70aa3d18b042dedab3a02021b00dcc8da297573daaa49ecdae48e", + "oid": 208515128566, + "crossed": true, + "fee": "1.049404", + "tid": 844678299321555, + "cloid": "0x00000000000000000000001602000286", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "21.9", + "side": "B", + "time": 1761072981395, + "startPosition": "-2779.72", + "dir": "Close Short", + "closedPnl": "7.72413", + "hash": "0x0b9dd8aafbf4d5c80d17042dedab8702070c009096f7f49aaf6683fdbaf8afb2", + "oid": 208515186098, + "crossed": true, + "fee": "0.892757", + "tid": 608525201710542, + "cloid": "0x00000000000000000000001602000287", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "3.84", + "side": "B", + "time": 1761072981395, + "startPosition": "-2757.82", + "dir": "Close Short", + "closedPnl": "1.354368", + "hash": "0x0b9dd8aafbf4d5c80d17042dedab8702070c009096f7f49aaf6683fdbaf8afb2", + "oid": 208515186098, + "crossed": true, + "fee": "0.156538", + "tid": 534235846108266, + "cloid": "0x00000000000000000000001602000287", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.07", + "sz": "25.75", + "side": "B", + "time": 1761072982850, + "startPosition": "-2753.98", + "dir": "Close Short", + "closedPnl": "10.369525", + "hash": "0x82278317ffa97ee283a1042dedab970207af00fd9aac9db425f02e6abead58cd", + "oid": 208515207266, + "crossed": true, + "fee": "1.049433", + "tid": 544204509763055, + "cloid": "0x00000000000000000000001602000288", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.07", + "sz": "3.99", + "side": "B", + "time": 1761072989418, + "startPosition": "-2728.23", + "dir": "Close Short", + "closedPnl": "1.606773", + "hash": "0xf8f31694e444ca22fa6c042dedabe302040d007a7f47e8f59cbbc1e7a348a40d", + "oid": 208515268186, + "crossed": true, + "fee": "0.162611", + "tid": 1064338067694862, + "cloid": "0x00000000000000000000001602000289", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.07", + "sz": "0.57", + "side": "B", + "time": 1761072989418, + "startPosition": "-2724.24", + "dir": "Close Short", + "closedPnl": "0.229539", + "hash": "0xf8f31694e444ca22fa6c042dedabe302040d007a7f47e8f59cbbc1e7a348a40d", + "oid": 208515268186, + "crossed": true, + "fee": "0.02323", + "tid": 620395046766782, + "cloid": "0x00000000000000000000001602000289", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "0.13", + "side": "B", + "time": 1761072989418, + "startPosition": "-2723.67", + "dir": "Close Short", + "closedPnl": "0.051051", + "hash": "0xf8f31694e444ca22fa6c042dedabe302040d007a7f47e8f59cbbc1e7a348a40d", + "oid": 208515268186, + "crossed": true, + "fee": "0.005298", + "tid": 638843281237764, + "cloid": "0x00000000000000000000001602000289", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "2.58", + "side": "B", + "time": 1761072989418, + "startPosition": "-2723.54", + "dir": "Close Short", + "closedPnl": "1.013166", + "hash": "0xf8f31694e444ca22fa6c042dedabe302040d007a7f47e8f59cbbc1e7a348a40d", + "oid": 208515268186, + "crossed": true, + "fee": "0.105152", + "tid": 565003457004173, + "cloid": "0x00000000000000000000001602000289", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "18.48", + "side": "B", + "time": 1761072989418, + "startPosition": "-2720.96", + "dir": "Close Short", + "closedPnl": "6.887496", + "hash": "0xf8f31694e444ca22fa6c042dedabe302040d007a7f47e8f59cbbc1e7a348a40d", + "oid": 208515268186, + "crossed": true, + "fee": "0.753263", + "tid": 1102252139534381, + "cloid": "0x00000000000000000000001602000289", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.09", + "sz": "25.75", + "side": "B", + "time": 1761072994295, + "startPosition": "-2702.48", + "dir": "Close Short", + "closedPnl": "9.854525", + "hash": "0x3589ab9ebefae94f3703042dedac2102023a008459fe0821d95256f17dfec339", + "oid": 208515298691, + "crossed": true, + "fee": "1.049541", + "tid": 121921556829370, + "cloid": "0x00000000000000000000001602000290", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "25.75", + "side": "B", + "time": 1761072995505, + "startPosition": "-2676.73", + "dir": "Close Short", + "closedPnl": "10.112025", + "hash": "0x0b2cf2a017e671a40ca6042dedac3202058c0085b2e99076aef59df2d6ea4b8e", + "oid": 208515305733, + "crossed": true, + "fee": "1.049487", + "tid": 350825980246819, + "cloid": "0x00000000000000000000001602000291", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.04", + "sz": "25.75", + "side": "B", + "time": 1761072996741, + "startPosition": "-2650.98", + "dir": "Close Short", + "closedPnl": "11.142025", + "hash": "0xef17f02de83fd784f091042dedac430201c400138332f65692e09b80a733b16f", + "oid": 208515312525, + "crossed": true, + "fee": "1.049271", + "tid": 580476320482705, + "cloid": "0x00000000000000000000001602000292", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.02", + "sz": "16.31", + "side": "B", + "time": 1761072998478, + "startPosition": "-2625.23", + "dir": "Close Short", + "closedPnl": "7.383537", + "hash": "0xe53fb7bdb5484280e6b9042dedac590202cf00a3504b615289086310744c1c6b", + "oid": 208515334699, + "crossed": true, + "fee": "0.664537", + "tid": 792728846690974, + "cloid": "0x00000000000000000000001602000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.02", + "sz": "9.45", + "side": "B", + "time": 1761072998478, + "startPosition": "-2608.92", + "dir": "Close Short", + "closedPnl": "4.278015", + "hash": "0xe53fb7bdb5484280e6b9042dedac590202cf00a3504b615289086310744c1c6b", + "oid": 208515334699, + "crossed": true, + "fee": "0.385032", + "tid": 1088649611124947, + "cloid": "0x00000000000000000000001602000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.01", + "sz": "25.76", + "side": "B", + "time": 1761073002231, + "startPosition": "-2599.47", + "dir": "Close Short", + "closedPnl": "11.919152", + "hash": "0xed7203052dc55b43eeeb042dedac9002024400eac8c87a15913aae57ecc9352e", + "oid": 208515378491, + "crossed": true, + "fee": "1.049516", + "tid": 359702654470929, + "cloid": "0x00000000000000000000001602000294", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "25.76", + "side": "B", + "time": 1761073008029, + "startPosition": "-2573.71", + "dir": "Close Short", + "closedPnl": "12.434352", + "hash": "0x57e895fa1a46cb045962042dedacdd02040b00dfb549e9d6fbb1414cd94aa4ee", + "oid": 208515432498, + "crossed": true, + "fee": "1.049408", + "tid": 90714640296121, + "cloid": "0x00000000000000000000001602000295", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.0", + "sz": "0.13", + "side": "B", + "time": 1761073009831, + "startPosition": "-2547.95", + "dir": "Close Short", + "closedPnl": "0.061451", + "hash": "0x362ca626c7e229bd37a6042dedacf4020142000c62e5488fd9f5517986e603a7", + "oid": 208515449038, + "crossed": true, + "fee": "0.005296", + "tid": 942958116959117, + "cloid": "0x00000000000000000000001602000296", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.02", + "sz": "19.79", + "side": "B", + "time": 1761073009831, + "startPosition": "-2547.82", + "dir": "Close Short", + "closedPnl": "8.958933", + "hash": "0x362ca626c7e229bd37a6042dedacf4020142000c62e5488fd9f5517986e603a7", + "oid": 208515449038, + "crossed": true, + "fee": "0.806327", + "tid": 717264714993271, + "cloid": "0x00000000000000000000001602000296", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.02", + "sz": "5.84", + "side": "B", + "time": 1761073009831, + "startPosition": "-2528.03", + "dir": "Close Short", + "closedPnl": "2.643768", + "hash": "0x362ca626c7e229bd37a6042dedacf4020142000c62e5488fd9f5517986e603a7", + "oid": 208515449038, + "crossed": true, + "fee": "0.237946", + "tid": 261422457244492, + "cloid": "0x00000000000000000000001602000296", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.02", + "sz": "1.56", + "side": "B", + "time": 1761073016192, + "startPosition": "-2522.19", + "dir": "Close Short", + "closedPnl": "0.706212", + "hash": "0xceee412418029301d067042dedad3902017b0009b305b1d372b6ec76d7066cec", + "oid": 208515494707, + "crossed": true, + "fee": "0.06356", + "tid": 32927795223644, + "cloid": "0x00000000000000000000001602000297", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.02", + "sz": "15.46", + "side": "B", + "time": 1761073016192, + "startPosition": "-2520.63", + "dir": "Close Short", + "closedPnl": "6.998742", + "hash": "0xceee412418029301d067042dedad3902017b0009b305b1d372b6ec76d7066cec", + "oid": 208515494707, + "crossed": true, + "fee": "0.629905", + "tid": 23787036710872, + "cloid": "0x00000000000000000000001602000297", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.02", + "sz": "8.74", + "side": "B", + "time": 1761073016192, + "startPosition": "-2505.17", + "dir": "Close Short", + "closedPnl": "3.956598", + "hash": "0xceee412418029301d067042dedad3902017b0009b305b1d372b6ec76d7066cec", + "oid": 208515494707, + "crossed": true, + "fee": "0.356104", + "tid": 1007119978725717, + "cloid": "0x00000000000000000000001602000297", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.02", + "sz": "25.76", + "side": "B", + "time": 1761073018612, + "startPosition": "-2496.43", + "dir": "Close Short", + "closedPnl": "11.661552", + "hash": "0xd268a30fc4b6ee29d3e2042dedad5202034100f55fba0cfb76314e6283bac814", + "oid": 208515510211, + "crossed": true, + "fee": "1.04957", + "tid": 376683153557718, + "cloid": "0x00000000000000000000001602000298", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.02", + "sz": "24.65", + "side": "B", + "time": 1761073026305, + "startPosition": "-2470.67", + "dir": "Close Short", + "closedPnl": "11.159055", + "hash": "0xc9aa1fca20cabd3ccb23042dedadb102018f00afbbcddc0e6d72cb1cdfce9727", + "oid": 208515564433, + "crossed": true, + "fee": "1.004344", + "tid": 242806938126209, + "cloid": "0x00000000000000000000001602000299", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.02", + "sz": "1.1", + "side": "B", + "time": 1761073026305, + "startPosition": "-2446.02", + "dir": "Close Short", + "closedPnl": "0.49797", + "hash": "0xc9aa1fca20cabd3ccb23042dedadb102018f00afbbcddc0e6d72cb1cdfce9727", + "oid": 208515564433, + "crossed": true, + "fee": "0.044818", + "tid": 813983883461435, + "cloid": "0x00000000000000000000001602000299", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "0.13", + "side": "B", + "time": 1761073035238, + "startPosition": "-2444.92", + "dir": "Close Short", + "closedPnl": "0.051051", + "hash": "0x717e5f80102e6af072f8042dedae1602033c0065ab2189c215470ad2cf2244db", + "oid": 208515644341, + "crossed": true, + "fee": "0.005298", + "tid": 972830746991987, + "cloid": "0x00000000000000000000001602000300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "3.99", + "side": "B", + "time": 1761073035238, + "startPosition": "-2444.79", + "dir": "Close Short", + "closedPnl": "1.566873", + "hash": "0x717e5f80102e6af072f8042dedae1602033c0065ab2189c215470ad2cf2244db", + "oid": 208515644341, + "crossed": true, + "fee": "0.162619", + "tid": 177897425364143, + "cloid": "0x00000000000000000000001602000300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.09", + "sz": "15.45", + "side": "B", + "time": 1761073035238, + "startPosition": "-2440.8", + "dir": "Close Short", + "closedPnl": "5.912715", + "hash": "0x717e5f80102e6af072f8042dedae1602033c0065ab2189c215470ad2cf2244db", + "oid": 208515644341, + "crossed": true, + "fee": "0.629725", + "tid": 602818458074392, + "cloid": "0x00000000000000000000001602000300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.09", + "sz": "2.58", + "side": "B", + "time": 1761073035238, + "startPosition": "-2425.35", + "dir": "Close Short", + "closedPnl": "0.987366", + "hash": "0x717e5f80102e6af072f8042dedae1602033c0065ab2189c215470ad2cf2244db", + "oid": 208515644341, + "crossed": true, + "fee": "0.105157", + "tid": 670388624915571, + "cloid": "0x00000000000000000000001602000300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.09", + "sz": "3.6", + "side": "B", + "time": 1761073035238, + "startPosition": "-2422.77", + "dir": "Close Short", + "closedPnl": "1.37772", + "hash": "0x717e5f80102e6af072f8042dedae1602033c0065ab2189c215470ad2cf2244db", + "oid": 208515644341, + "crossed": true, + "fee": "0.146732", + "tid": 340208172733722, + "cloid": "0x00000000000000000000001602000300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.07", + "sz": "25.74", + "side": "B", + "time": 1761073037987, + "startPosition": "-2419.17", + "dir": "Close Short", + "closedPnl": "10.365498", + "hash": "0x7c6c5384867098437de6042dedae33020398006a2173b7152034fed74574722e", + "oid": 208515692671, + "crossed": true, + "fee": "1.049025", + "tid": 202154887870811, + "cloid": "0x00000000000000000000001602000301", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "25.74", + "side": "B", + "time": 1761073042905, + "startPosition": "-2393.43", + "dir": "Close Short", + "closedPnl": "10.108098", + "hash": "0xb2dd0c797b4433cab456042dedae750202a3005f1647529c56a5b7cc3a480db5", + "oid": 208515769539, + "crossed": true, + "fee": "1.04908", + "tid": 877366829171249, + "cloid": "0x00000000000000000000001602000302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.11", + "sz": "25.74", + "side": "B", + "time": 1761073052832, + "startPosition": "-2367.69", + "dir": "Close Short", + "closedPnl": "9.335898", + "hash": "0x0eac894b5f1bad9e1026042dedaeeb02021a0030fa1ecc70b275349e1e1f8788", + "oid": 208515869215, + "crossed": true, + "fee": "1.049242", + "tid": 56919909921857, + "cloid": "0x00000000000000000000001602000303", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "21.82", + "side": "B", + "time": 1761073056904, + "startPosition": "-2341.95", + "dir": "Close Short", + "closedPnl": "8.568714", + "hash": "0xbce5a7853c601f31be5f042dedaf1d02053d006ad7633e0360ae52d7fb63f91c", + "oid": 208515897941, + "crossed": true, + "fee": "0.889313", + "tid": 381427821404087, + "cloid": "0x00000000000000000000001602000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "3.93", + "side": "B", + "time": 1761073056904, + "startPosition": "-2320.13", + "dir": "Close Short", + "closedPnl": "1.543311", + "hash": "0xbce5a7853c601f31be5f042dedaf1d02053d006ad7633e0360ae52d7fb63f91c", + "oid": 208515897941, + "crossed": true, + "fee": "0.160174", + "tid": 175397491187587, + "cloid": "0x00000000000000000000001602000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "7.89", + "side": "B", + "time": 1761073058528, + "startPosition": "-2316.2", + "dir": "Close Short", + "closedPnl": "3.098403", + "hash": "0xe63b9ec4228d0e9ce7b5042dedaf3102048b00a9bd802d6e8a044a16e180e887", + "oid": 208515926638, + "crossed": true, + "fee": "0.321571", + "tid": 372137686686279, + "cloid": "0x00000000000000000000001602000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "17.86", + "side": "B", + "time": 1761073058528, + "startPosition": "-2308.31", + "dir": "Close Short", + "closedPnl": "7.013622", + "hash": "0xe63b9ec4228d0e9ce7b5042dedaf3102048b00a9bd802d6e8a044a16e180e887", + "oid": 208515926638, + "crossed": true, + "fee": "0.727916", + "tid": 738420296570809, + "cloid": "0x00000000000000000000001602000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.05", + "sz": "25.75", + "side": "B", + "time": 1761073067735, + "startPosition": "-2290.45", + "dir": "Close Short", + "closedPnl": "10.884525", + "hash": "0xed829c08f0eec54ceefc042dedafa202046c00ee8be1e41e914b475bafe29f37", + "oid": 208515988701, + "crossed": true, + "fee": "1.049325", + "tid": 453570858157790, + "cloid": "0x00000000000000000000001602000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.04", + "sz": "17.42", + "side": "B", + "time": 1761073074083, + "startPosition": "-2264.7", + "dir": "Close Short", + "closedPnl": "7.537634", + "hash": "0x4e7d8b4ebe9ede7c4ff7042dedaff602025b00345991fd4ef24636a17d92b866", + "oid": 208516065385, + "crossed": true, + "fee": "0.709837", + "tid": 318600813345243, + "cloid": "0x00000000000000000000001602000307", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.04", + "sz": "8.33", + "side": "B", + "time": 1761073074083, + "startPosition": "-2247.28", + "dir": "Close Short", + "closedPnl": "3.604391", + "hash": "0x4e7d8b4ebe9ede7c4ff7042dedaff602025b00345991fd4ef24636a17d92b866", + "oid": 208516065385, + "crossed": true, + "fee": "0.339434", + "tid": 741174007098024, + "cloid": "0x00000000000000000000001602000307", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.04", + "sz": "22.5", + "side": "B", + "time": 1761073075428, + "startPosition": "-2238.95", + "dir": "Close Short", + "closedPnl": "9.73575", + "hash": "0xc18960098b3017bdc303042dedb0070201a000ef2633368f65520b5c4a33f1a8", + "oid": 208516076678, + "crossed": true, + "fee": "0.916838", + "tid": 968774076233918, + "cloid": "0x00000000000000000000001602000308", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.04", + "sz": "3.25", + "side": "B", + "time": 1761073075428, + "startPosition": "-2216.45", + "dir": "Close Short", + "closedPnl": "1.406275", + "hash": "0xc18960098b3017bdc303042dedb0070201a000ef2633368f65520b5c4a33f1a8", + "oid": 208516076678, + "crossed": true, + "fee": "0.132432", + "tid": 537686054757984, + "cloid": "0x00000000000000000000001602000308", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.01", + "sz": "25.76", + "side": "B", + "time": 1761073079099, + "startPosition": "-2213.2", + "dir": "Close Short", + "closedPnl": "11.919152", + "hash": "0xcc72054620ce3ca2cdeb042dedb033020185002bbbc15b74703ab098dfc2168d", + "oid": 208516101357, + "crossed": true, + "fee": "1.049516", + "tid": 1070516302532749, + "cloid": "0x00000000000000000000001602000309", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.01", + "sz": "25.76", + "side": "B", + "time": 1761073081945, + "startPosition": "-2187.44", + "dir": "Close Short", + "closedPnl": "11.919152", + "hash": "0x9331de189338081b94ab042dedb05202096900fe2e3b26ed36fa896b523be206", + "oid": 208516128183, + "crossed": true, + "fee": "1.049516", + "tid": 997278462494453, + "cloid": "0x00000000000000000000001602000310", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.01", + "sz": "6.96", + "side": "B", + "time": 1761073083616, + "startPosition": "-2161.68", + "dir": "Close Short", + "closedPnl": "3.220392", + "hash": "0x6b76454702b08c5f6cf0042dedb064020347002c9db3ab310f3ef099c1b4664a", + "oid": 208516150640, + "crossed": true, + "fee": "0.283565", + "tid": 425005150862742, + "cloid": "0x00000000000000000000001602000311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.01", + "sz": "0.77", + "side": "B", + "time": 1761073083616, + "startPosition": "-2154.72", + "dir": "Close Short", + "closedPnl": "0.356279", + "hash": "0x6b76454702b08c5f6cf0042dedb064020347002c9db3ab310f3ef099c1b4664a", + "oid": 208516150640, + "crossed": true, + "fee": "0.031371", + "tid": 774976213935950, + "cloid": "0x00000000000000000000001602000311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.01", + "sz": "18.03", + "side": "B", + "time": 1761073083616, + "startPosition": "-2153.95", + "dir": "Close Short", + "closedPnl": "8.342481", + "hash": "0x6b76454702b08c5f6cf0042dedb064020347002c9db3ab310f3ef099c1b4664a", + "oid": 208516150640, + "crossed": true, + "fee": "0.73458", + "tid": 795268584223380, + "cloid": "0x00000000000000000000001602000311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.03", + "sz": "0.13", + "side": "B", + "time": 1761073092043, + "startPosition": "-2135.92", + "dir": "Close Short", + "closedPnl": "0.057551", + "hash": "0x297209cfce1f4bb42aeb042dedb0c10206dc00b569126a86cd3ab5228d13259e", + "oid": 208516220519, + "crossed": true, + "fee": "0.005297", + "tid": 92106194251695, + "cloid": "0x00000000000000000000001602000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.03", + "sz": "25.63", + "side": "B", + "time": 1761073092043, + "startPosition": "-2135.79", + "dir": "Close Short", + "closedPnl": "11.346401", + "hash": "0x297209cfce1f4bb42aeb042dedb0c10206dc00b569126a86cd3ab5228d13259e", + "oid": 208516220519, + "crossed": true, + "fee": "1.044327", + "tid": 791849760973469, + "cloid": "0x00000000000000000000001602000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.97", + "sz": "25.76", + "side": "B", + "time": 1761073095169, + "startPosition": "-2110.16", + "dir": "Close Short", + "closedPnl": "12.949552", + "hash": "0x8b1abba4a26b35888c94042dedb0e50203b5008a3d6e545a2ee366f7616f0f73", + "oid": 208516261658, + "crossed": true, + "fee": "1.0493", + "tid": 748882050324949, + "cloid": "0x00000000000000000000001602000313", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.97", + "sz": "25.76", + "side": "B", + "time": 1761073096444, + "startPosition": "-2084.4", + "dir": "Close Short", + "closedPnl": "12.949552", + "hash": "0x3baf7b6b5b8b7a0d3d29042dedb0f60205020050f68e98dfdf7826be1a8f53f7", + "oid": 208516281851, + "crossed": true, + "fee": "1.0493", + "tid": 805265611298474, + "cloid": "0x00000000000000000000001602000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "0.13", + "side": "B", + "time": 1761073098114, + "startPosition": "-2058.64", + "dir": "Close Short", + "closedPnl": "0.062751", + "hash": "0xf833a22e6b216bb6f9ad042dedb10e020394001406248a899bfc4d812a2545a1", + "oid": 208516298925, + "crossed": true, + "fee": "0.005295", + "tid": 593244996636861, + "cloid": "0x00000000000000000000001602000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.0", + "sz": "0.13", + "side": "B", + "time": 1761073098114, + "startPosition": "-2058.51", + "dir": "Close Short", + "closedPnl": "0.061451", + "hash": "0xf833a22e6b216bb6f9ad042dedb10e020394001406248a899bfc4d812a2545a1", + "oid": 208516298925, + "crossed": true, + "fee": "0.005296", + "tid": 1125068004408684, + "cloid": "0x00000000000000000000001602000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.0", + "sz": "10.3", + "side": "B", + "time": 1761073098114, + "startPosition": "-2058.38", + "dir": "Close Short", + "closedPnl": "4.86881", + "hash": "0xf833a22e6b216bb6f9ad042dedb10e020394001406248a899bfc4d812a2545a1", + "oid": 208516298925, + "crossed": true, + "fee": "0.419621", + "tid": 326710377889127, + "cloid": "0x00000000000000000000001602000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.01", + "sz": "15.2", + "side": "B", + "time": 1761073098114, + "startPosition": "-2048.08", + "dir": "Close Short", + "closedPnl": "7.03304", + "hash": "0xf833a22e6b216bb6f9ad042dedb10e020394001406248a899bfc4d812a2545a1", + "oid": 208516298925, + "crossed": true, + "fee": "0.619279", + "tid": 112726225208092, + "cloid": "0x00000000000000000000001602000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.05", + "sz": "25.75", + "side": "B", + "time": 1761073102038, + "startPosition": "-2032.88", + "dir": "Close Short", + "closedPnl": "10.884525", + "hash": "0x64111fdd0a0f177d658a042dedb13d02028700c2a502364f07d9cb2fc902f168", + "oid": 208516339177, + "crossed": true, + "fee": "1.049325", + "tid": 11763395895585, + "cloid": "0x00000000000000000000001602000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.05", + "sz": "25.75", + "side": "B", + "time": 1761073108096, + "startPosition": "-2007.13", + "dir": "Close Short", + "closedPnl": "10.884525", + "hash": "0x71c81f05491b5a007341042dedb18d02011000eae41e78d21590ca58081f33eb", + "oid": 208516386627, + "crossed": true, + "fee": "1.049325", + "tid": 171371082606683, + "cloid": "0x00000000000000000000001602000317", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.05", + "sz": "25.75", + "side": "B", + "time": 1761073118440, + "startPosition": "-1981.38", + "dir": "Close Short", + "closedPnl": "10.884525", + "hash": "0x252d77bef3e4f4d026a7042dedb1fd02011500a48ee813a2c8f62311b2e8ceba", + "oid": 208516454782, + "crossed": true, + "fee": "1.049325", + "tid": 162607653233636, + "cloid": "0x00000000000000000000001602000318", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.05", + "sz": "25.76", + "side": "B", + "time": 1761073127161, + "startPosition": "-1955.63", + "dir": "Close Short", + "closedPnl": "10.888752", + "hash": "0x2607e6e6dbfb345e2781042dedb2750201e600cc76fe5330c9d092399aff0e48", + "oid": 208516495284, + "crossed": true, + "fee": "1.049732", + "tid": 586050765280026, + "cloid": "0x00000000000000000000001602000319", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.09", + "sz": "1.58", + "side": "B", + "time": 1761073129586, + "startPosition": "-1929.87", + "dir": "Close Short", + "closedPnl": "0.604666", + "hash": "0xaa53fc163799a4e1abcd042dedb29202125f00fbd29cc3b34e1ca768f69d7ecc", + "oid": 208516538417, + "crossed": true, + "fee": "0.064399", + "tid": 342525055010358, + "cloid": "0x00000000000000000000001602000320", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "0.13", + "side": "B", + "time": 1761073129586, + "startPosition": "-1928.29", + "dir": "Close Short", + "closedPnl": "0.048451", + "hash": "0xaa53fc163799a4e1abcd042dedb29202125f00fbd29cc3b34e1ca768f69d7ecc", + "oid": 208516538417, + "crossed": true, + "fee": "0.005298", + "tid": 415155120867926, + "cloid": "0x00000000000000000000001602000320", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "2.57", + "side": "B", + "time": 1761073129586, + "startPosition": "-1928.16", + "dir": "Close Short", + "closedPnl": "0.957839", + "hash": "0xaa53fc163799a4e1abcd042dedb29202125f00fbd29cc3b34e1ca768f69d7ecc", + "oid": 208516538417, + "crossed": true, + "fee": "0.104755", + "tid": 420982320339299, + "cloid": "0x00000000000000000000001602000320", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.11", + "sz": "0.13", + "side": "B", + "time": 1761073129586, + "startPosition": "-1925.59", + "dir": "Close Short", + "closedPnl": "0.047151", + "hash": "0xaa53fc163799a4e1abcd042dedb29202125f00fbd29cc3b34e1ca768f69d7ecc", + "oid": 208516538417, + "crossed": true, + "fee": "0.005299", + "tid": 527759997668052, + "cloid": "0x00000000000000000000001602000320", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.11", + "sz": "10.29", + "side": "B", + "time": 1761073129586, + "startPosition": "-1925.46", + "dir": "Close Short", + "closedPnl": "3.732183", + "hash": "0xaa53fc163799a4e1abcd042dedb29202125f00fbd29cc3b34e1ca768f69d7ecc", + "oid": 208516538417, + "crossed": true, + "fee": "0.419452", + "tid": 262396809597174, + "cloid": "0x00000000000000000000001602000320", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.11", + "sz": "5.17", + "side": "B", + "time": 1761073129586, + "startPosition": "-1915.17", + "dir": "Close Short", + "closedPnl": "1.875159", + "hash": "0xaa53fc163799a4e1abcd042dedb29202125f00fbd29cc3b34e1ca768f69d7ecc", + "oid": 208516538417, + "crossed": true, + "fee": "0.210745", + "tid": 469255929263135, + "cloid": "0x00000000000000000000001602000320", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.11", + "sz": "5.88", + "side": "B", + "time": 1761073129586, + "startPosition": "-1910.0", + "dir": "Close Short", + "closedPnl": "2.132676", + "hash": "0xaa53fc163799a4e1abcd042dedb29202125f00fbd29cc3b34e1ca768f69d7ecc", + "oid": 208516538417, + "crossed": true, + "fee": "0.239687", + "tid": 53881758786687, + "cloid": "0x00000000000000000000001602000320", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "2.43", + "side": "B", + "time": 1761073137065, + "startPosition": "-1904.12", + "dir": "Close Short", + "closedPnl": "0.857061", + "hash": "0xf70a0fc3b357348ff883042dedb2ec02063900a94e5a53629ad2bb16725b0e7a", + "oid": 208516587695, + "crossed": true, + "fee": "0.099059", + "tid": 1064993520588231, + "cloid": "0x00000000000000000000001602000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "10.29", + "side": "B", + "time": 1761073137065, + "startPosition": "-1901.69", + "dir": "Close Short", + "closedPnl": "3.629283", + "hash": "0xf70a0fc3b357348ff883042dedb2ec02063900a94e5a53629ad2bb16725b0e7a", + "oid": 208516587695, + "crossed": true, + "fee": "0.419473", + "tid": 1056336403368632, + "cloid": "0x00000000000000000000001602000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "13.03", + "side": "B", + "time": 1761073137065, + "startPosition": "-1891.4", + "dir": "Close Short", + "closedPnl": "4.595681", + "hash": "0xf70a0fc3b357348ff883042dedb2ec02063900a94e5a53629ad2bb16725b0e7a", + "oid": 208516587695, + "crossed": true, + "fee": "0.53117", + "tid": 960988458139380, + "cloid": "0x00000000000000000000001602000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.14", + "sz": "0.68", + "side": "B", + "time": 1761073141137, + "startPosition": "-1878.37", + "dir": "Close Short", + "closedPnl": "0.226236", + "hash": "0xb0c1f9d8923ecf21b23b042dedb31b02092c00be2d31edf3548aa52b5132a90c", + "oid": 208516623628, + "crossed": true, + "fee": "0.027723", + "tid": 914570505485374, + "cloid": "0x00000000000000000000001602000322", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.15", + "sz": "0.13", + "side": "B", + "time": 1761073141137, + "startPosition": "-1877.69", + "dir": "Close Short", + "closedPnl": "0.041951", + "hash": "0xb0c1f9d8923ecf21b23b042dedb31b02092c00be2d31edf3548aa52b5132a90c", + "oid": 208516623628, + "crossed": true, + "fee": "0.0053", + "tid": 964872867201742, + "cloid": "0x00000000000000000000001602000322", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.15", + "sz": "2.58", + "side": "B", + "time": 1761073141137, + "startPosition": "-1877.56", + "dir": "Close Short", + "closedPnl": "0.832566", + "hash": "0xb0c1f9d8923ecf21b23b042dedb31b02092c00be2d31edf3548aa52b5132a90c", + "oid": 208516623628, + "crossed": true, + "fee": "0.10519", + "tid": 838728618377892, + "cloid": "0x00000000000000000000001602000322", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.16", + "sz": "0.13", + "side": "B", + "time": 1761073141137, + "startPosition": "-1874.98", + "dir": "Close Short", + "closedPnl": "0.040651", + "hash": "0xb0c1f9d8923ecf21b23b042dedb31b02092c00be2d31edf3548aa52b5132a90c", + "oid": 208516623628, + "crossed": true, + "fee": "0.0053", + "tid": 734876733214300, + "cloid": "0x00000000000000000000001602000322", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.16", + "sz": "0.6", + "side": "B", + "time": 1761073141137, + "startPosition": "-1874.85", + "dir": "Close Short", + "closedPnl": "0.18762", + "hash": "0xb0c1f9d8923ecf21b23b042dedb31b02092c00be2d31edf3548aa52b5132a90c", + "oid": 208516623628, + "crossed": true, + "fee": "0.024464", + "tid": 178186903399270, + "cloid": "0x00000000000000000000001602000322", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.16", + "sz": "21.62", + "side": "B", + "time": 1761073141137, + "startPosition": "-1874.25", + "dir": "Close Short", + "closedPnl": "6.760574", + "hash": "0xb0c1f9d8923ecf21b23b042dedb31b02092c00be2d31edf3548aa52b5132a90c", + "oid": 208516623628, + "crossed": true, + "fee": "0.881525", + "tid": 214871119150961, + "cloid": "0x00000000000000000000001602000322", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.17", + "sz": "2.58", + "side": "B", + "time": 1761073144447, + "startPosition": "-1852.63", + "dir": "Close Short", + "closedPnl": "0.780966", + "hash": "0x2ec30e2adbb6a408303c042dedb345020732001076b9c2dad28bb97d9aba7df2", + "oid": 208516679070, + "crossed": true, + "fee": "0.105201", + "tid": 304397675604544, + "cloid": "0x00000000000000000000001602000323", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.17", + "sz": "10.29", + "side": "B", + "time": 1761073144447, + "startPosition": "-1850.05", + "dir": "Close Short", + "closedPnl": "3.114783", + "hash": "0x2ec30e2adbb6a408303c042dedb345020732001076b9c2dad28bb97d9aba7df2", + "oid": 208516679070, + "crossed": true, + "fee": "0.419581", + "tid": 1057247184275743, + "cloid": "0x00000000000000000000001602000323", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.17", + "sz": "0.77", + "side": "B", + "time": 1761073144447, + "startPosition": "-1839.76", + "dir": "Close Short", + "closedPnl": "0.233079", + "hash": "0x2ec30e2adbb6a408303c042dedb345020732001076b9c2dad28bb97d9aba7df2", + "oid": 208516679070, + "crossed": true, + "fee": "0.031397", + "tid": 553905483968841, + "cloid": "0x00000000000000000000001602000323", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.17", + "sz": "12.1", + "side": "B", + "time": 1761073144447, + "startPosition": "-1838.99", + "dir": "Close Short", + "closedPnl": "3.66267", + "hash": "0x2ec30e2adbb6a408303c042dedb345020732001076b9c2dad28bb97d9aba7df2", + "oid": 208516679070, + "crossed": true, + "fee": "0.493385", + "tid": 107943829727304, + "cloid": "0x00000000000000000000001602000323", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.16", + "sz": "25.74", + "side": "B", + "time": 1761073147892, + "startPosition": "-1826.89", + "dir": "Close Short", + "closedPnl": "8.048898", + "hash": "0x64c8be59fb32a8246642042dedb36e02035d003f9635c6f6089169acba36820f", + "oid": 208516731521, + "crossed": true, + "fee": "1.049512", + "tid": 485544509639634, + "cloid": "0x00000000000000000000001602000324", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.15", + "sz": "25.74", + "side": "B", + "time": 1761073151650, + "startPosition": "-1801.15", + "dir": "Close Short", + "closedPnl": "8.306298", + "hash": "0xa19374af7d981261a30d042dedb39b0208d20095189b3133455c20023c9bec4c", + "oid": 208516786934, + "crossed": true, + "fee": "1.049458", + "tid": 885823904138523, + "cloid": "0x00000000000000000000001602000325", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "19.64", + "side": "B", + "time": 1761073156647, + "startPosition": "-1775.41", + "dir": "Close Short", + "closedPnl": "6.927028", + "hash": "0xe2d5167e1a63a59fe44e042dedb3da0203ac0063b566c471869dc1d0d9677f8a", + "oid": 208516847592, + "crossed": true, + "fee": "0.800628", + "tid": 860107616486818, + "cloid": "0x00000000000000000000001602000326", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "6.11", + "side": "B", + "time": 1761073156647, + "startPosition": "-1755.77", + "dir": "Close Short", + "closedPnl": "2.154997", + "hash": "0xe2d5167e1a63a59fe44e042dedb3da0203ac0063b566c471869dc1d0d9677f8a", + "oid": 208516847592, + "crossed": true, + "fee": "0.249075", + "tid": 1055523734921261, + "cloid": "0x00000000000000000000001602000326", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "25.74", + "side": "B", + "time": 1761073159717, + "startPosition": "-1749.66", + "dir": "Close Short", + "closedPnl": "9.078498", + "hash": "0x6c5c20749c979faf6dd5042dedb3fd0202d8005a379abe811024cbc75b9b799a", + "oid": 208516869271, + "crossed": true, + "fee": "1.049296", + "tid": 202853553806942, + "cloid": "0x00000000000000000000001602000327", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.11", + "sz": "25.74", + "side": "B", + "time": 1761073164326, + "startPosition": "-1723.92", + "dir": "Close Short", + "closedPnl": "9.335898", + "hash": "0xe2d5de89fe002f7fe44f042dedb43a020216006f99034e51869e89dcbd04096a", + "oid": 208516896026, + "crossed": true, + "fee": "1.049242", + "tid": 199068659647937, + "cloid": "0x00000000000000000000001602000328", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "25.75", + "side": "B", + "time": 1761073167132, + "startPosition": "-1698.18", + "dir": "Close Short", + "closedPnl": "10.112025", + "hash": "0x59d1ff19ad0c507e5b4b042dedb45f02010d00ff480f6f50fd9aaa6c6c002a68", + "oid": 208516927591, + "crossed": true, + "fee": "1.049487", + "tid": 886930889433135, + "cloid": "0x00000000000000000000001602000329", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.07", + "sz": "11.02", + "side": "B", + "time": 1761073169681, + "startPosition": "-1672.43", + "dir": "Close Short", + "closedPnl": "4.437754", + "hash": "0xc487b647710772a0c601042dedb47d020237002d0c0a91726850619a300b4c8b", + "oid": 208516956853, + "crossed": true, + "fee": "0.449116", + "tid": 381944329331986, + "cloid": "0x00000000000000000000001602000330", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.07", + "sz": "11.02", + "side": "B", + "time": 1761073169681, + "startPosition": "-1661.41", + "dir": "Close Short", + "closedPnl": "4.437754", + "hash": "0xc487b647710772a0c601042dedb47d020237002d0c0a91726850619a300b4c8b", + "oid": 208516956853, + "crossed": true, + "fee": "0.449116", + "tid": 859956727730034, + "cloid": "0x00000000000000000000001602000330", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.07", + "sz": "3.71", + "side": "B", + "time": 1761073169681, + "startPosition": "-1650.39", + "dir": "Close Short", + "closedPnl": "1.494017", + "hash": "0xc487b647710772a0c601042dedb47d020237002d0c0a91726850619a300b4c8b", + "oid": 208516956853, + "crossed": true, + "fee": "0.151199", + "tid": 740935685771806, + "cloid": "0x00000000000000000000001602000330", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.07", + "sz": "25.75", + "side": "B", + "time": 1761073176403, + "startPosition": "-1646.68", + "dir": "Close Short", + "closedPnl": "10.369525", + "hash": "0x97bbb9619f2127409935042dedb4c602043c00473a2446123b8464b45e25012b", + "oid": 208517021279, + "crossed": true, + "fee": "1.049433", + "tid": 64493529174093, + "cloid": "0x00000000000000000000001602000331", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.06", + "sz": "16.71", + "side": "B", + "time": 1761073179994, + "startPosition": "-1620.93", + "dir": "Close Short", + "closedPnl": "6.896217", + "hash": "0x47bdc65076ab7c5d4937042dedb4ec020536003611ae9b2feb8671a335af5647", + "oid": 208517068012, + "crossed": true, + "fee": "0.680975", + "tid": 1121144138675566, + "cloid": "0x00000000000000000000001602000332", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.06", + "sz": "9.04", + "side": "B", + "time": 1761073179994, + "startPosition": "-1604.22", + "dir": "Close Short", + "closedPnl": "3.730808", + "hash": "0x47bdc65076ab7c5d4937042dedb4ec020536003611ae9b2feb8671a335af5647", + "oid": 208517068012, + "crossed": true, + "fee": "0.368403", + "tid": 520608819688060, + "cloid": "0x00000000000000000000001602000332", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.06", + "sz": "6.72", + "side": "B", + "time": 1761073181211, + "startPosition": "-1595.18", + "dir": "Close Short", + "closedPnl": "2.773344", + "hash": "0x980bf603ee59c1bc9985042dedb4fa0202a300e9895ce08e3bd4a156ad5d9ba7", + "oid": 208517080629, + "crossed": true, + "fee": "0.273857", + "tid": 230291080927848, + "cloid": "0x00000000000000000000001602000333", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.06", + "sz": "7.27", + "side": "B", + "time": 1761073181211, + "startPosition": "-1588.46", + "dir": "Close Short", + "closedPnl": "3.000329", + "hash": "0x980bf603ee59c1bc9985042dedb4fa0202a300e9895ce08e3bd4a156ad5d9ba7", + "oid": 208517080629, + "crossed": true, + "fee": "0.296271", + "tid": 541265536353750, + "cloid": "0x00000000000000000000001602000333", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.06", + "sz": "11.76", + "side": "B", + "time": 1761073181211, + "startPosition": "-1581.19", + "dir": "Close Short", + "closedPnl": "4.853352", + "hash": "0x980bf603ee59c1bc9985042dedb4fa0202a300e9895ce08e3bd4a156ad5d9ba7", + "oid": 208517080629, + "crossed": true, + "fee": "0.47925", + "tid": 701400768301325, + "cloid": "0x00000000000000000000001602000333", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.01", + "sz": "23.1", + "side": "B", + "time": 1761073185513, + "startPosition": "-1569.43", + "dir": "Close Short", + "closedPnl": "10.68837", + "hash": "0x4232b0b25c9fe05243ac042dedb5370203360097f792ff24e5fb5c051b93ba3c", + "oid": 208517132491, + "crossed": true, + "fee": "0.941142", + "tid": 354341758819330, + "cloid": "0x00000000000000000000001602000334", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.01", + "sz": "2.65", + "side": "B", + "time": 1761073185513, + "startPosition": "-1546.33", + "dir": "Close Short", + "closedPnl": "1.226155", + "hash": "0x4232b0b25c9fe05243ac042dedb5370203360097f792ff24e5fb5c051b93ba3c", + "oid": 208517132491, + "crossed": true, + "fee": "0.107966", + "tid": 322149706231758, + "cloid": "0x00000000000000000000001602000334", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.04", + "sz": "25.75", + "side": "B", + "time": 1761073186780, + "startPosition": "-1543.68", + "dir": "Close Short", + "closedPnl": "11.142025", + "hash": "0xc1642c4a1ca1e9d4c2dd042dedb549020205002fb7a508a6652cd79cdba5c3bf", + "oid": 208517147272, + "crossed": true, + "fee": "1.049271", + "tid": 760585177118518, + "cloid": "0x00000000000000000000001602000335", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.05", + "sz": "25.75", + "side": "B", + "time": 1761073196858, + "startPosition": "-1517.93", + "dir": "Close Short", + "closedPnl": "10.884525", + "hash": "0x6d8add9a05a598ef6f04042dedb5d402011e007fa0a8b7c1115388ecc4a972da", + "oid": 208517227379, + "crossed": true, + "fee": "1.049325", + "tid": 796923573979993, + "cloid": "0x00000000000000000000001602000336", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.02", + "sz": "25.76", + "side": "B", + "time": 1761073201221, + "startPosition": "-1492.18", + "dir": "Close Short", + "closedPnl": "11.661552", + "hash": "0x08cfa114f1f8a9760a49042dedb5fa0207ed00fa8cfbc848ac984c67b0fc8360", + "oid": 208517277172, + "crossed": true, + "fee": "1.04957", + "tid": 916548639331534, + "cloid": "0x00000000000000000000001602000337", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.06", + "sz": "25.75", + "side": "B", + "time": 1761073204336, + "startPosition": "-1466.42", + "dir": "Close Short", + "closedPnl": "10.627025", + "hash": "0x51a511b18eb08663531e042dedb61302035c009729b3a535f56dbd044db4604d", + "oid": 208517312745, + "crossed": true, + "fee": "1.049379", + "tid": 1025189395529014, + "cloid": "0x00000000000000000000001602000338", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "25.75", + "side": "B", + "time": 1761073207511, + "startPosition": "-1440.67", + "dir": "Close Short", + "closedPnl": "10.112025", + "hash": "0x0574cceefaa0a0e506ee042dedb63c0204e600d495a3bfb7a93d7841b9a47acf", + "oid": 208517355779, + "crossed": true, + "fee": "1.049487", + "tid": 924205179034222, + "cloid": "0x00000000000000000000001602000339", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "25.75", + "side": "B", + "time": 1761073208783, + "startPosition": "-1414.92", + "dir": "Close Short", + "closedPnl": "10.112025", + "hash": "0x8ec90acb6a488c899042042dedb64b02016500b1054bab5b3291b61e294c6674", + "oid": 208517363937, + "crossed": true, + "fee": "1.049487", + "tid": 323538268240061, + "cloid": "0x00000000000000000000001602000340", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "25.75", + "side": "B", + "time": 1761073211940, + "startPosition": "-1389.17", + "dir": "Close Short", + "closedPnl": "9.597025", + "hash": "0xb1665153b97196c0b2e0042dedb67802042f00395474b592552efca6787570ab", + "oid": 208517398691, + "crossed": true, + "fee": "1.049595", + "tid": 120176327432776, + "cloid": "0x00000000000000000000001602000341", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "1.58", + "side": "B", + "time": 1761073216611, + "startPosition": "-1363.42", + "dir": "Close Short", + "closedPnl": "0.620466", + "hash": "0x4cbd61f75fa76b654e37042dedb6ac02098600dcfaaa8a37f0860d4a1eab454f", + "oid": 208517457733, + "crossed": true, + "fee": "0.064395", + "tid": 179852115916417, + "cloid": "0x00000000000000000000001602000342", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "12.0", + "side": "B", + "time": 1761073216611, + "startPosition": "-1361.84", + "dir": "Close Short", + "closedPnl": "4.7124", + "hash": "0x4cbd61f75fa76b654e37042dedb6ac02098600dcfaaa8a37f0860d4a1eab454f", + "oid": 208517457733, + "crossed": true, + "fee": "0.489081", + "tid": 857427329153557, + "cloid": "0x00000000000000000000001602000342", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "12.17", + "side": "B", + "time": 1761073216611, + "startPosition": "-1349.84", + "dir": "Close Short", + "closedPnl": "4.779159", + "hash": "0x4cbd61f75fa76b654e37042dedb6ac02098600dcfaaa8a37f0860d4a1eab454f", + "oid": 208517457733, + "crossed": true, + "fee": "0.49601", + "tid": 456700876773520, + "cloid": "0x00000000000000000000001602000342", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "25.75", + "side": "B", + "time": 1761073217785, + "startPosition": "-1337.67", + "dir": "Close Short", + "closedPnl": "10.112025", + "hash": "0xe54deb69a0a15959e6c7042dedb6b80202da004f3ba4782b891696bc5fa53344", + "oid": 208517474605, + "crossed": true, + "fee": "1.049487", + "tid": 958574697568756, + "cloid": "0x00000000000000000000001602000343", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.09", + "sz": "25.75", + "side": "B", + "time": 1761073221463, + "startPosition": "-1311.92", + "dir": "Close Short", + "closedPnl": "9.854525", + "hash": "0x972b126c5cc8e3f698a4042dedb6e00203240051f7cc02c83af3bdbf1bccbde1", + "oid": 208517505873, + "crossed": true, + "fee": "1.049541", + "tid": 270395896462893, + "cloid": "0x00000000000000000000001602000344", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.09", + "sz": "25.75", + "side": "B", + "time": 1761073224022, + "startPosition": "-1286.17", + "dir": "Close Short", + "closedPnl": "9.854525", + "hash": "0x0e0dbc0a1ac944ac0f87042dedb6fb02023d00efb5cc637eb1d6675cd9cd1e96", + "oid": 208517531921, + "crossed": true, + "fee": "1.049541", + "tid": 543192157099342, + "cloid": "0x00000000000000000000001602000345", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "0.08", + "side": "B", + "time": 1761073232506, + "startPosition": "-1260.42", + "dir": "Close Short", + "closedPnl": "0.028216", + "hash": "0x3f6c797d16b0012040e6042dedb7690202ae0062b1b31ff2e33524cfd5b3db0a", + "oid": 208517602216, + "crossed": true, + "fee": "0.003261", + "tid": 854487483221865, + "cloid": "0x00000000000000000000001602000346", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "0.07", + "side": "B", + "time": 1761073232506, + "startPosition": "-1260.34", + "dir": "Close Short", + "closedPnl": "0.024689", + "hash": "0x3f6c797d16b0012040e6042dedb7690202ae0062b1b31ff2e33524cfd5b3db0a", + "oid": 208517602216, + "crossed": true, + "fee": "0.002853", + "tid": 799569998456203, + "cloid": "0x00000000000000000000001602000346", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "0.57", + "side": "B", + "time": 1761073232506, + "startPosition": "-1260.27", + "dir": "Close Short", + "closedPnl": "0.201039", + "hash": "0x3f6c797d16b0012040e6042dedb7690202ae0062b1b31ff2e33524cfd5b3db0a", + "oid": 208517602216, + "crossed": true, + "fee": "0.023236", + "tid": 483327047737762, + "cloid": "0x00000000000000000000001602000346", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "3.99", + "side": "B", + "time": 1761073232506, + "startPosition": "-1259.7", + "dir": "Close Short", + "closedPnl": "1.407273", + "hash": "0x3f6c797d16b0012040e6042dedb7690202ae0062b1b31ff2e33524cfd5b3db0a", + "oid": 208517602216, + "crossed": true, + "fee": "0.162653", + "tid": 810271462909204, + "cloid": "0x00000000000000000000001602000346", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.13", + "sz": "0.13", + "side": "B", + "time": 1761073232506, + "startPosition": "-1255.71", + "dir": "Close Short", + "closedPnl": "0.044551", + "hash": "0x3f6c797d16b0012040e6042dedb7690202ae0062b1b31ff2e33524cfd5b3db0a", + "oid": 208517602216, + "crossed": true, + "fee": "0.005299", + "tid": 843214934588253, + "cloid": "0x00000000000000000000001602000346", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.14", + "sz": "2.58", + "side": "B", + "time": 1761073232506, + "startPosition": "-1255.58", + "dir": "Close Short", + "closedPnl": "0.858366", + "hash": "0x3f6c797d16b0012040e6042dedb7690202ae0062b1b31ff2e33524cfd5b3db0a", + "oid": 208517602216, + "crossed": true, + "fee": "0.105185", + "tid": 449753404231816, + "cloid": "0x00000000000000000000001602000346", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.15", + "sz": "0.13", + "side": "B", + "time": 1761073232506, + "startPosition": "-1253.0", + "dir": "Close Short", + "closedPnl": "0.041951", + "hash": "0x3f6c797d16b0012040e6042dedb7690202ae0062b1b31ff2e33524cfd5b3db0a", + "oid": 208517602216, + "crossed": true, + "fee": "0.0053", + "tid": 63830266640954, + "cloid": "0x00000000000000000000001602000346", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.16", + "sz": "0.13", + "side": "B", + "time": 1761073232506, + "startPosition": "-1252.87", + "dir": "Close Short", + "closedPnl": "0.040651", + "hash": "0x3f6c797d16b0012040e6042dedb7690202ae0062b1b31ff2e33524cfd5b3db0a", + "oid": 208517602216, + "crossed": true, + "fee": "0.0053", + "tid": 1060920256760202, + "cloid": "0x00000000000000000000001602000346", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.16", + "sz": "18.06", + "side": "B", + "time": 1761073232506, + "startPosition": "-1252.74", + "dir": "Close Short", + "closedPnl": "5.647362", + "hash": "0x3f6c797d16b0012040e6042dedb7690202ae0062b1b31ff2e33524cfd5b3db0a", + "oid": 208517602216, + "crossed": true, + "fee": "0.736371", + "tid": 461646791830544, + "cloid": "0x00000000000000000000001602000346", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.13", + "sz": "25.74", + "side": "B", + "time": 1761073237714, + "startPosition": "-1234.68", + "dir": "Close Short", + "closedPnl": "8.821098", + "hash": "0xcc4f1fa573d88da0cdc8042dedb7aa02034b008b0edbac727017caf832dc678b", + "oid": 208517660084, + "crossed": true, + "fee": "1.04935", + "tid": 1057701507160906, + "cloid": "0x00000000000000000000001602000347", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.13", + "sz": "25.74", + "side": "B", + "time": 1761073239042, + "startPosition": "-1208.94", + "dir": "Close Short", + "closedPnl": "8.821098", + "hash": "0x4af15c2bdca3bc6c4c6b042dedb7b702015f001177a6db3eeeba077e9ba79656", + "oid": 208517666215, + "crossed": true, + "fee": "1.04935", + "tid": 419968916014250, + "cloid": "0x00000000000000000000001602000348", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.13", + "sz": "25.74", + "side": "B", + "time": 1761073240555, + "startPosition": "-1183.2", + "dir": "Close Short", + "closedPnl": "8.821098", + "hash": "0x076c3a90bfe4d9e008e5042dedb7c802039e00765ae7f8b2ab34e5e37ee8b3ca", + "oid": 208517675265, + "crossed": true, + "fee": "1.04935", + "tid": 1095956839543180, + "cloid": "0x00000000000000000000001602000349", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.13", + "sz": "25.74", + "side": "B", + "time": 1761073242200, + "startPosition": "-1157.46", + "dir": "Close Short", + "closedPnl": "8.821098", + "hash": "0x63c85366c0f1b0cd6542042dedb7d8020487004c5bf4cf9f0790feb97ff58ab8", + "oid": 208517685440, + "crossed": true, + "fee": "1.04935", + "tid": 737115692712046, + "cloid": "0x00000000000000000000001602000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.14", + "sz": "3.1", + "side": "B", + "time": 1761073247187, + "startPosition": "-1131.72", + "dir": "Close Short", + "closedPnl": "1.03137", + "hash": "0x572443a5cb9e1b26589e042dedb805020120008b669139f8faeceef88a91f510", + "oid": 208517707387, + "crossed": true, + "fee": "0.126385", + "tid": 735119992206306, + "cloid": "0x00000000000000000000001602000351", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.14", + "sz": "22.64", + "side": "B", + "time": 1761073247187, + "startPosition": "-1128.62", + "dir": "Close Short", + "closedPnl": "7.532328", + "hash": "0x572443a5cb9e1b26589e042dedb805020120008b669139f8faeceef88a91f510", + "oid": 208517707387, + "crossed": true, + "fee": "0.923019", + "tid": 1103910514678527, + "cloid": "0x00000000000000000000001602000351", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.13", + "sz": "2.07", + "side": "B", + "time": 1761073251420, + "startPosition": "-1105.98", + "dir": "Close Short", + "closedPnl": "0.709389", + "hash": "0x99f632203181b2789b6f042dedb8330202710005cc84d14a3dbedd72f0858c63", + "oid": 208517743856, + "crossed": true, + "fee": "0.084388", + "tid": 517817247874803, + "cloid": "0x00000000000000000000001602000352", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.13", + "sz": "23.67", + "side": "B", + "time": 1761073251420, + "startPosition": "-1103.91", + "dir": "Close Short", + "closedPnl": "8.111709", + "hash": "0x99f632203181b2789b6f042dedb8330202710005cc84d14a3dbedd72f0858c63", + "oid": 208517743856, + "crossed": true, + "fee": "0.964961", + "tid": 833381802832949, + "cloid": "0x00000000000000000000001602000352", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.05", + "sz": "25.75", + "side": "B", + "time": 1761073252770, + "startPosition": "-1080.24", + "dir": "Close Short", + "closedPnl": "10.884525", + "hash": "0xf5a3e0cd9b458f82f71d042dedb843020b1d00b33648ae55996c8c205a49696d", + "oid": 208517771950, + "crossed": true, + "fee": "1.049325", + "tid": 55252207165747, + "cloid": "0x00000000000000000000001602000353", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "19.26", + "side": "B", + "time": 1761073254015, + "startPosition": "-1054.49", + "dir": "Close Short", + "closedPnl": "9.296802", + "hash": "0x1cb78cff43a30ba41e31042dedb85202070800e4dea62a76c080385202a6e58e", + "oid": 208517795492, + "crossed": true, + "fee": "0.784611", + "tid": 607975160976463, + "cloid": "0x00000000000000000000001602000354", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "6.5", + "side": "B", + "time": 1761073254015, + "startPosition": "-1035.23", + "dir": "Close Short", + "closedPnl": "3.13755", + "hash": "0x1cb78cff43a30ba41e31042dedb85202070800e4dea62a76c080385202a6e58e", + "oid": 208517795492, + "crossed": true, + "fee": "0.264796", + "tid": 25634631820149, + "cloid": "0x00000000000000000000001602000354", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.99", + "sz": "25.76", + "side": "B", + "time": 1761073255625, + "startPosition": "-1028.73", + "dir": "Close Short", + "closedPnl": "12.434352", + "hash": "0x80011f7114003c14817a042dedb8680205100056af035ae623c9cac3d30415ff", + "oid": 208517815027, + "crossed": true, + "fee": "1.049408", + "tid": 438318002694814, + "cloid": "0x00000000000000000000001602000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.04", + "sz": "3.99", + "side": "B", + "time": 1761073257520, + "startPosition": "-1002.97", + "dir": "Close Short", + "closedPnl": "1.726473", + "hash": "0x641cec4dd1154a7c6596042dedb88202060700336c18694e07e597a090192467", + "oid": 208517838520, + "crossed": true, + "fee": "0.162586", + "tid": 42172710687930, + "cloid": "0x00000000000000000000001602000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.04", + "sz": "0.57", + "side": "B", + "time": 1761073257520, + "startPosition": "-998.98", + "dir": "Close Short", + "closedPnl": "0.246639", + "hash": "0x641cec4dd1154a7c6596042dedb88202060700336c18694e07e597a090192467", + "oid": 208517838520, + "crossed": true, + "fee": "0.023226", + "tid": 1095050150925105, + "cloid": "0x00000000000000000000001602000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.05", + "sz": "21.2", + "side": "B", + "time": 1761073257520, + "startPosition": "-998.41", + "dir": "Close Short", + "closedPnl": "8.96124", + "hash": "0x641cec4dd1154a7c6596042dedb88202060700336c18694e07e597a090192467", + "oid": 208517838520, + "crossed": true, + "fee": "0.86391", + "tid": 1010397329814865, + "cloid": "0x00000000000000000000001602000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.06", + "sz": "0.07", + "side": "B", + "time": 1761073262426, + "startPosition": "-977.21", + "dir": "Close Short", + "closedPnl": "0.028889", + "hash": "0x923cd67d9e06d75293b6042dedb8c202076e00633909f624360581d05d0ab13d", + "oid": 208517894497, + "crossed": true, + "fee": "0.002852", + "tid": 1072367949722239, + "cloid": "0x00000000000000000000001602000357", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.07", + "sz": "0.13", + "side": "B", + "time": 1761073262426, + "startPosition": "-977.14", + "dir": "Close Short", + "closedPnl": "0.052351", + "hash": "0x923cd67d9e06d75293b6042dedb8c202076e00633909f624360581d05d0ab13d", + "oid": 208517894497, + "crossed": true, + "fee": "0.005298", + "tid": 614362201503538, + "cloid": "0x00000000000000000000001602000357", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.08", + "sz": "0.13", + "side": "B", + "time": 1761073262426, + "startPosition": "-977.01", + "dir": "Close Short", + "closedPnl": "0.051051", + "hash": "0x923cd67d9e06d75293b6042dedb8c202076e00633909f624360581d05d0ab13d", + "oid": 208517894497, + "crossed": true, + "fee": "0.005298", + "tid": 1065330924394726, + "cloid": "0x00000000000000000000001602000357", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "0.13", + "side": "B", + "time": 1761073262426, + "startPosition": "-976.88", + "dir": "Close Short", + "closedPnl": "0.048451", + "hash": "0x923cd67d9e06d75293b6042dedb8c202076e00633909f624360581d05d0ab13d", + "oid": 208517894497, + "crossed": true, + "fee": "0.005298", + "tid": 672359820475387, + "cloid": "0x00000000000000000000001602000357", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.11", + "sz": "25.29", + "side": "B", + "time": 1761073262426, + "startPosition": "-976.75", + "dir": "Close Short", + "closedPnl": "9.172683", + "hash": "0x923cd67d9e06d75293b6042dedb8c202076e00633909f624360581d05d0ab13d", + "oid": 208517894497, + "crossed": true, + "fee": "1.030898", + "tid": 993347461294637, + "cloid": "0x00000000000000000000001602000357", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.12", + "sz": "25.74", + "side": "B", + "time": 1761073264430, + "startPosition": "-951.46", + "dir": "Close Short", + "closedPnl": "9.078498", + "hash": "0x81ff7d4d5ac3aba58379042dedb8db0204dd0032f5c6ca7725c828a019c78590", + "oid": 208517933358, + "crossed": true, + "fee": "1.049296", + "tid": 1063384642721864, + "cloid": "0x00000000000000000000001602000358", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.16", + "sz": "7.03", + "side": "B", + "time": 1761073266986, + "startPosition": "-925.72", + "dir": "Close Short", + "closedPnl": "2.198281", + "hash": "0x816759e3c8fe41a882e1042dedb8ff02070400c963f1607a2530053687f21b93", + "oid": 208517964576, + "crossed": true, + "fee": "0.286638", + "tid": 8242377570265, + "cloid": "0x00000000000000000000001602000359", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.17", + "sz": "2.58", + "side": "B", + "time": 1761073266986, + "startPosition": "-918.69", + "dir": "Close Short", + "closedPnl": "0.780966", + "hash": "0x816759e3c8fe41a882e1042dedb8ff02070400c963f1607a2530053687f21b93", + "oid": 208517964576, + "crossed": true, + "fee": "0.105201", + "tid": 714673182495694, + "cloid": "0x00000000000000000000001602000359", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.17", + "sz": "16.13", + "side": "B", + "time": 1761073266986, + "startPosition": "-916.11", + "dir": "Close Short", + "closedPnl": "4.882551", + "hash": "0x816759e3c8fe41a882e1042dedb8ff02070400c963f1607a2530053687f21b93", + "oid": 208517964576, + "crossed": true, + "fee": "0.657712", + "tid": 432371830329393, + "cloid": "0x00000000000000000000001602000359", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.18", + "sz": "25.74", + "side": "B", + "time": 1761073268520, + "startPosition": "-899.98", + "dir": "Close Short", + "closedPnl": "7.534098", + "hash": "0xa1e6ad742bc28e08a360042dedb9130201550059c6c5acda45af58c6eac667f3", + "oid": 208517994172, + "crossed": true, + "fee": "1.04962", + "tid": 727876374401909, + "cloid": "0x00000000000000000000001602000360", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.24", + "sz": "25.73", + "side": "B", + "time": 1761073271428, + "startPosition": "-874.24", + "dir": "Close Short", + "closedPnl": "5.987371", + "hash": "0x929fc44e98e87adc9419042dedb934020392003433eb99ae36686fa157ec54c7", + "oid": 208518029948, + "crossed": true, + "fee": "1.049536", + "tid": 89520664302522, + "cloid": "0x00000000000000000000001602000361", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.24", + "sz": "13.93", + "side": "B", + "time": 1761073273749, + "startPosition": "-848.51", + "dir": "Close Short", + "closedPnl": "3.241511", + "hash": "0xba23a64427e624afbb9d042dedb94d0205c50029c2e943815dec5196e6e9fe9a", + "oid": 208518057463, + "crossed": true, + "fee": "0.56821", + "tid": 598433101843328, + "cloid": "0x00000000000000000000001602000362", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.24", + "sz": "11.8", + "side": "B", + "time": 1761073273749, + "startPosition": "-834.58", + "dir": "Close Short", + "closedPnl": "2.74586", + "hash": "0xba23a64427e624afbb9d042dedb94d0205c50029c2e943815dec5196e6e9fe9a", + "oid": 208518057463, + "crossed": true, + "fee": "0.481326", + "tid": 453889931794736, + "cloid": "0x00000000000000000000001602000362", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.24", + "sz": "25.73", + "side": "B", + "time": 1761073275988, + "startPosition": "-822.78", + "dir": "Close Short", + "closedPnl": "5.987371", + "hash": "0x6b50cbb09536a5fa6cca042dedb96a02071100963039c4cc0f197703543a7fe5", + "oid": 208518079834, + "crossed": true, + "fee": "1.049536", + "tid": 1112840463036824, + "cloid": "0x00000000000000000000001602000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.19", + "sz": "13.52", + "side": "B", + "time": 1761073279447, + "startPosition": "-797.05", + "dir": "Close Short", + "closedPnl": "3.822104", + "hash": "0xb9e8380dfd2659c7bb61042dedb99202082000f3982978995db0e360bc2a33b2", + "oid": 208518116413, + "crossed": true, + "fee": "0.551344", + "tid": 277324079571266, + "cloid": "0x00000000000000000000001602000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.19", + "sz": "12.21", + "side": "B", + "time": 1761073279447, + "startPosition": "-783.53", + "dir": "Close Short", + "closedPnl": "3.451767", + "hash": "0xb9e8380dfd2659c7bb61042dedb99202082000f3982978995db0e360bc2a33b2", + "oid": 208518116413, + "crossed": true, + "fee": "0.497922", + "tid": 655507320896288, + "cloid": "0x00000000000000000000001602000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.16", + "sz": "25.74", + "side": "B", + "time": 1761073281368, + "startPosition": "-771.32", + "dir": "Close Short", + "closedPnl": "8.048898", + "hash": "0x5ad2950ff38046555c4c042dedb9a702014d00f58e836527fe9b4062b284203f", + "oid": 208518139224, + "crossed": true, + "fee": "1.049512", + "tid": 472486807308804, + "cloid": "0x00000000000000000000001602000365", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.16", + "sz": "4.03", + "side": "B", + "time": 1761073284161, + "startPosition": "-745.58", + "dir": "Close Short", + "closedPnl": "1.260181", + "hash": "0x01be5447aef68eee0338042dedb9cc0201a3002d49f9adc0a586ff9a6dfa68d8", + "oid": 208518161063, + "crossed": true, + "fee": "0.164317", + "tid": 702644861539410, + "cloid": "0x00000000000000000000001602000366", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.16", + "sz": "1.67", + "side": "B", + "time": 1761073284161, + "startPosition": "-741.55", + "dir": "Close Short", + "closedPnl": "0.522209", + "hash": "0x01be5447aef68eee0338042dedb9cc0201a3002d49f9adc0a586ff9a6dfa68d8", + "oid": 208518161063, + "crossed": true, + "fee": "0.068091", + "tid": 574258627340388, + "cloid": "0x00000000000000000000001602000366", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.16", + "sz": "20.04", + "side": "B", + "time": 1761073284161, + "startPosition": "-739.88", + "dir": "Close Short", + "closedPnl": "6.266508", + "hash": "0x01be5447aef68eee0338042dedb9cc0201a3002d49f9adc0a586ff9a6dfa68d8", + "oid": 208518161063, + "crossed": true, + "fee": "0.817102", + "tid": 1019227345930318, + "cloid": "0x00000000000000000000001602000366", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.16", + "sz": "25.74", + "side": "B", + "time": 1761073285575, + "startPosition": "-719.84", + "dir": "Close Short", + "closedPnl": "8.048898", + "hash": "0xe340b1e7ca55662de4ba042dedb9e10201a000cd655884ff87095d3a89594018", + "oid": 208518170049, + "crossed": true, + "fee": "1.049512", + "tid": 177560723993986, + "cloid": "0x00000000000000000000001602000367", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.14", + "sz": "5.17", + "side": "B", + "time": 1761073286795, + "startPosition": "-694.1", + "dir": "Close Short", + "closedPnl": "1.720059", + "hash": "0xa63144fdf0db5cd2a7ab042dedb9f202023300e38bde7ba449f9f050afdf36bd", + "oid": 208518182268, + "crossed": true, + "fee": "0.210777", + "tid": 779270473323464, + "cloid": "0x00000000000000000000001602000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.14", + "sz": "20.57", + "side": "B", + "time": 1761073286795, + "startPosition": "-688.93", + "dir": "Close Short", + "closedPnl": "6.843639", + "hash": "0xa63144fdf0db5cd2a7ab042dedb9f202023300e38bde7ba449f9f050afdf36bd", + "oid": 208518182268, + "crossed": true, + "fee": "0.838626", + "tid": 1025093901611420, + "cloid": "0x00000000000000000000001602000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.14", + "sz": "20.8", + "side": "B", + "time": 1761073296959, + "startPosition": "-668.36", + "dir": "Close Short", + "closedPnl": "6.92016", + "hash": "0x4e70d10d546d863f4fea042dedba7001de00e8f2ef60a511f2397c6013616029", + "oid": 208518238095, + "crossed": true, + "fee": "0.848003", + "tid": 1052356671564397, + "cloid": "0x00000000000000000000001602000369", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.14", + "sz": "4.94", + "side": "B", + "time": 1761073296959, + "startPosition": "-647.56", + "dir": "Close Short", + "closedPnl": "1.643538", + "hash": "0x4e70d10d546d863f4fea042dedba7001de00e8f2ef60a511f2397c6013616029", + "oid": 208518238095, + "crossed": true, + "fee": "0.2014", + "tid": 870717281639500, + "cloid": "0x00000000000000000000001602000369", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.14", + "sz": "25.57", + "side": "B", + "time": 1761073302116, + "startPosition": "-642.62", + "dir": "Close Short", + "closedPnl": "8.507139", + "hash": "0x33f3cadfe639a376356d042dedba9c02012700c5813cc248d7bc7632a53d7d60", + "oid": 208518284749, + "crossed": true, + "fee": "1.042473", + "tid": 1097440574853582, + "cloid": "0x00000000000000000000001602000370", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.14", + "sz": "0.17", + "side": "B", + "time": 1761073302116, + "startPosition": "-617.05", + "dir": "Close Short", + "closedPnl": "0.056559", + "hash": "0x33f3cadfe639a376356d042dedba9c02012700c5813cc248d7bc7632a53d7d60", + "oid": 208518284749, + "crossed": true, + "fee": "0.00693", + "tid": 402514199993007, + "cloid": "0x00000000000000000000001602000370", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.09", + "sz": "14.03", + "side": "B", + "time": 1761073305352, + "startPosition": "-616.88", + "dir": "Close Short", + "closedPnl": "5.369281", + "hash": "0xec7cc4aab315b838edf6042dedbabe0204fb00904e18d70a90456ffd72199223", + "oid": 208518315537, + "crossed": true, + "fee": "0.571847", + "tid": 346683554698729, + "cloid": "0x00000000000000000000001602000371", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.09", + "sz": "4.14", + "side": "B", + "time": 1761073305352, + "startPosition": "-602.85", + "dir": "Close Short", + "closedPnl": "1.584378", + "hash": "0xec7cc4aab315b838edf6042dedbabe0204fb00904e18d70a90456ffd72199223", + "oid": 208518315537, + "crossed": true, + "fee": "0.168741", + "tid": 931643728520142, + "cloid": "0x00000000000000000000001602000371", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.09", + "sz": "7.58", + "side": "B", + "time": 1761073305352, + "startPosition": "-598.71", + "dir": "Close Short", + "closedPnl": "2.900866", + "hash": "0xec7cc4aab315b838edf6042dedbabe0204fb00904e18d70a90456ffd72199223", + "oid": 208518315537, + "crossed": true, + "fee": "0.308952", + "tid": 1117550357724300, + "cloid": "0x00000000000000000000001602000371", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.09", + "sz": "25.75", + "side": "B", + "time": 1761073316545, + "startPosition": "-591.13", + "dir": "Close Short", + "closedPnl": "9.854525", + "hash": "0x191af7fd478c0c1a1a94042dedbb370204bd00e2e28f2aecbce3a350068fe604", + "oid": 208518383222, + "crossed": true, + "fee": "1.049541", + "tid": 23470855608855, + "cloid": "0x00000000000000000000001602000372", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.14", + "sz": "11.26", + "side": "B", + "time": 1761073319231, + "startPosition": "-565.38", + "dir": "Close Short", + "closedPnl": "3.746202", + "hash": "0x1b2afcc033f128101ca4042dedbb580201b700a5cef446e2bef3a812f2f501fa", + "oid": 208518406701, + "crossed": true, + "fee": "0.459063", + "tid": 634614474724340, + "cloid": "0x00000000000000000000001602000373", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.14", + "sz": "2.58", + "side": "B", + "time": 1761073319231, + "startPosition": "-554.12", + "dir": "Close Short", + "closedPnl": "0.858366", + "hash": "0x1b2afcc033f128101ca4042dedbb580201b700a5cef446e2bef3a812f2f501fa", + "oid": 208518406701, + "crossed": true, + "fee": "0.105185", + "tid": 720695185449961, + "cloid": "0x00000000000000000000001602000373", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.14", + "sz": "5.89", + "side": "B", + "time": 1761073319231, + "startPosition": "-551.54", + "dir": "Close Short", + "closedPnl": "1.959603", + "hash": "0x1b2afcc033f128101ca4042dedbb580201b700a5cef446e2bef3a812f2f501fa", + "oid": 208518406701, + "crossed": true, + "fee": "0.240131", + "tid": 801932986726853, + "cloid": "0x00000000000000000000001602000373", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.14", + "sz": "6.01", + "side": "B", + "time": 1761073319231, + "startPosition": "-545.65", + "dir": "Close Short", + "closedPnl": "1.999527", + "hash": "0x1b2afcc033f128101ca4042dedbb580201b700a5cef446e2bef3a812f2f501fa", + "oid": 208518406701, + "crossed": true, + "fee": "0.245024", + "tid": 72143448651833, + "cloid": "0x00000000000000000000001602000373", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.11", + "sz": "25.74", + "side": "B", + "time": 1761073320454, + "startPosition": "-539.64", + "dir": "Close Short", + "closedPnl": "9.335898", + "hash": "0x6513c81ffc7cf278668d042dedbb6902016a00059770114a08dc7372bb70cc63", + "oid": 208518414981, + "crossed": true, + "fee": "1.049242", + "tid": 1123284062447931, + "cloid": "0x00000000000000000000001602000374", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.1", + "sz": "25.75", + "side": "B", + "time": 1761073322552, + "startPosition": "-513.9", + "dir": "Close Short", + "closedPnl": "9.597025", + "hash": "0x267af4bff21cfce627f4042dedbb870202be00a58d101bb8ca43a012b110d6d0", + "oid": 208518433260, + "crossed": true, + "fee": "1.049595", + "tid": 1054163654189697, + "cloid": "0x00000000000000000000001602000375", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.09", + "sz": "25.75", + "side": "B", + "time": 1761073324949, + "startPosition": "-488.15", + "dir": "Close Short", + "closedPnl": "9.854525", + "hash": "0x5a16083636de0c7d5b8f042dedbba90204c0001bd1d12b4ffddeb388f5d1e667", + "oid": 208518458415, + "crossed": true, + "fee": "1.049541", + "tid": 477689342198522, + "cloid": "0x00000000000000000000001602000376", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.06", + "sz": "4.17", + "side": "B", + "time": 1761073326453, + "startPosition": "-462.4", + "dir": "Close Short", + "closedPnl": "1.720959", + "hash": "0xf7f0c87eb6f450fff96a042dedbbbe0204e9006451f76fd29bb973d175f82aea", + "oid": 208518486960, + "crossed": true, + "fee": "0.169938", + "tid": 983948087858160, + "cloid": "0x00000000000000000000001602000377", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.06", + "sz": "21.58", + "side": "B", + "time": 1761073326453, + "startPosition": "-458.23", + "dir": "Close Short", + "closedPnl": "8.906066", + "hash": "0xf7f0c87eb6f450fff96a042dedbbbe0204e9006451f76fd29bb973d175f82aea", + "oid": 208518486960, + "crossed": true, + "fee": "0.879441", + "tid": 111423549423296, + "cloid": "0x00000000000000000000001602000377", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.03", + "sz": "25.76", + "side": "B", + "time": 1761073328556, + "startPosition": "-436.65", + "dir": "Close Short", + "closedPnl": "11.403952", + "hash": "0xf1ef64f1756be36ff369042dedbbde0205c800d7106f024295b81044346fbd5a", + "oid": 208518519928, + "crossed": true, + "fee": "1.049624", + "tid": 986419130798379, + "cloid": "0x00000000000000000000001602000378", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "194.02", + "sz": "25.75", + "side": "B", + "time": 1761073334377, + "startPosition": "-410.89", + "dir": "Close Short", + "closedPnl": "11.657025", + "hash": "0xbdd99d425ef5e467bf53042dedbc300209af0027f9f9033961a248951df9be52", + "oid": 208518578846, + "crossed": true, + "fee": "1.049163", + "tid": 229371786019182, + "cloid": "0x00000000000000000000001602000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "193.97", + "sz": "25.77", + "side": "B", + "time": 1761073336240, + "startPosition": "-385.14", + "dir": "Close Short", + "closedPnl": "12.954579", + "hash": "0x2bd552d4059b43d82d4f042dedbc4802033100b9a09e62aacf9dfe26c49f1dc2", + "oid": 208518604776, + "crossed": true, + "fee": "1.049707", + "tid": 75194943920967, + "cloid": "0x00000000000000000000001602000380", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111770.0", + "sz": "0.07425", + "side": "B", + "time": 1761074575616, + "startPosition": "-320.21407", + "dir": "Close Short", + "closedPnl": "74.82915", + "hash": "0xe5391040ff997bc0e6b2042dedf76302050a00269a9c9a928901bb93be9d55ab", + "oid": 208531117317, + "crossed": true, + "fee": "1.742773", + "tid": 452172298468381, + "cloid": "0x00000000000000000000001603000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111771.0", + "sz": "0.01518", + "side": "B", + "time": 1761074575616, + "startPosition": "-320.13982", + "dir": "Close Short", + "closedPnl": "15.283224", + "hash": "0xe5391040ff997bc0e6b2042dedf76302050a00269a9c9a928901bb93be9d55ab", + "oid": 208531117317, + "crossed": true, + "fee": "0.356303", + "tid": 156457104690085, + "cloid": "0x00000000000000000000001603000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111760.0", + "sz": "0.08944", + "side": "B", + "time": 1761074585613, + "startPosition": "-320.12464", + "dir": "Close Short", + "closedPnl": "91.032032", + "hash": "0x5731ece715c0faf258ab042dedf7dc02074800ccb0c419c4fafa9839d4c4d4dc", + "oid": 208531226389, + "crossed": true, + "fee": "2.099121", + "tid": 27958859807398, + "cloid": "0x00000000000000000000001603000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111741.0", + "sz": "0.08944", + "side": "B", + "time": 1761074587669, + "startPosition": "-320.0352", + "dir": "Close Short", + "closedPnl": "92.731392", + "hash": "0x2938ba463554bcde2ab2042dedf7f30205f6002bd057dbb0cd016598f45896c8", + "oid": 208531266729, + "crossed": true, + "fee": "2.098764", + "tid": 435885754019732, + "cloid": "0x00000000000000000000001603000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111715.0", + "sz": "0.08945", + "side": "B", + "time": 1761074593442, + "startPosition": "-319.94576", + "dir": "Close Short", + "closedPnl": "95.06746", + "hash": "0x59252763d9caa2905a9e042dedf83d0209e3004974cdc162fcedd2b698ce7c7a", + "oid": 208531370034, + "crossed": true, + "fee": "2.09851", + "tid": 741858327823983, + "cloid": "0x00000000000000000000001603000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111712.0", + "sz": "0.01557", + "side": "B", + "time": 1761074595254, + "startPosition": "-319.85631", + "dir": "Close Short", + "closedPnl": "16.594506", + "hash": "0x8b22ac39dd6e0e158c9c042dedf853020d3f001f78612ce72eeb578c9c61e800", + "oid": 208531405247, + "crossed": true, + "fee": "0.365264", + "tid": 957598699027674, + "cloid": "0x00000000000000000000001603000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111712.0", + "sz": "0.07388", + "side": "B", + "time": 1761074595254, + "startPosition": "-319.84074", + "dir": "Close Short", + "closedPnl": "78.741304", + "hash": "0x8b22ac39dd6e0e158c9c042dedf853020d3f001f78612ce72eeb578c9c61e800", + "oid": 208531405247, + "crossed": true, + "fee": "1.733189", + "tid": 1063004254318193, + "cloid": "0x00000000000000000000001603000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111694.0", + "sz": "0.0892", + "side": "B", + "time": 1761074596715, + "startPosition": "-319.76686", + "dir": "Close Short", + "closedPnl": "96.67496", + "hash": "0xbf32122ba0579ad2c0ab042dedf86502066c00113b5ab9a462fabd7e5f5b74bd", + "oid": 208531433521, + "crossed": true, + "fee": "2.092252", + "tid": 992589673336647, + "cloid": "0x00000000000000000000001603000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111694.0", + "sz": "0.00027", + "side": "B", + "time": 1761074596715, + "startPosition": "-319.67766", + "dir": "Close Short", + "closedPnl": "0.292626", + "hash": "0xbf32122ba0579ad2c0ab042dedf86502066c00113b5ab9a462fabd7e5f5b74bd", + "oid": 208531433521, + "crossed": true, + "fee": "0.006333", + "tid": 846854697491890, + "cloid": "0x00000000000000000000001603000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111654.0", + "sz": "0.05067", + "side": "B", + "time": 1761074599889, + "startPosition": "-319.67739", + "dir": "Close Short", + "closedPnl": "56.942946", + "hash": "0x6528d6fc9377683266a2042dedf88d020ba600e22e7a870408f1824f527b421d", + "oid": 208531499549, + "crossed": true, + "fee": "1.188076", + "tid": 409155386522064, + "cloid": "0x00000000000000000000001603000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111654.0", + "sz": "0.00448", + "side": "B", + "time": 1761074599889, + "startPosition": "-319.62672", + "dir": "Close Short", + "closedPnl": "5.034624", + "hash": "0x6528d6fc9377683266a2042dedf88d020ba600e22e7a870408f1824f527b421d", + "oid": 208531499549, + "crossed": true, + "fee": "0.105044", + "tid": 502734475628701, + "cloid": "0x00000000000000000000001603000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111654.0", + "sz": "0.03435", + "side": "B", + "time": 1761074599889, + "startPosition": "-319.62224", + "dir": "Close Short", + "closedPnl": "38.60253", + "hash": "0x6528d6fc9377683266a2042dedf88d020ba600e22e7a870408f1824f527b421d", + "oid": 208531499549, + "crossed": true, + "fee": "0.805416", + "tid": 845020576551150, + "cloid": "0x00000000000000000000001603000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111651.0", + "sz": "0.02955", + "side": "B", + "time": 1761074601508, + "startPosition": "-319.58789", + "dir": "Close Short", + "closedPnl": "33.29694", + "hash": "0x9a25649ada65393a9b9f042dedf8a0020d4e00807568580c3dee0fed99691325", + "oid": 208531520336, + "crossed": true, + "fee": "0.69285", + "tid": 766758563521015, + "cloid": "0x00000000000000000000001603000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111651.0", + "sz": "0.05997", + "side": "B", + "time": 1761074601508, + "startPosition": "-319.55834", + "dir": "Close Short", + "closedPnl": "67.574196", + "hash": "0x9a25649ada65393a9b9f042dedf8a0020d4e00807568580c3dee0fed99691325", + "oid": 208531520336, + "crossed": true, + "fee": "1.406099", + "tid": 807604430520395, + "cloid": "0x00000000000000000000001603000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111651.0", + "sz": "0.00896", + "side": "B", + "time": 1761074603666, + "startPosition": "-319.49837", + "dir": "Close Short", + "closedPnl": "10.096128", + "hash": "0x020289aaa1bc8358037c042dedf8b802061300903cbfa22aa5cb34fd60b05d42", + "oid": 208531560375, + "crossed": true, + "fee": "0.210082", + "tid": 779926764284319, + "cloid": "0x00000000000000000000001603000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111651.0", + "sz": "0.00011", + "side": "B", + "time": 1761074603666, + "startPosition": "-319.48941", + "dir": "Close Short", + "closedPnl": "0.123948", + "hash": "0x020289aaa1bc8358037c042dedf8b802061300903cbfa22aa5cb34fd60b05d42", + "oid": 208531560375, + "crossed": true, + "fee": "0.002579", + "tid": 857929615614133, + "cloid": "0x00000000000000000000001603000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111652.0", + "sz": "0.00011", + "side": "B", + "time": 1761074603666, + "startPosition": "-319.4893", + "dir": "Close Short", + "closedPnl": "0.123838", + "hash": "0x020289aaa1bc8358037c042dedf8b802061300903cbfa22aa5cb34fd60b05d42", + "oid": 208531560375, + "crossed": true, + "fee": "0.002579", + "tid": 537406647152386, + "cloid": "0x00000000000000000000001603000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111653.0", + "sz": "0.00011", + "side": "B", + "time": 1761074603666, + "startPosition": "-319.48919", + "dir": "Close Short", + "closedPnl": "0.123728", + "hash": "0x020289aaa1bc8358037c042dedf8b802061300903cbfa22aa5cb34fd60b05d42", + "oid": 208531560375, + "crossed": true, + "fee": "0.002579", + "tid": 912590731771422, + "cloid": "0x00000000000000000000001603000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111654.0", + "sz": "0.00011", + "side": "B", + "time": 1761074603666, + "startPosition": "-319.48908", + "dir": "Close Short", + "closedPnl": "0.123618", + "hash": "0x020289aaa1bc8358037c042dedf8b802061300903cbfa22aa5cb34fd60b05d42", + "oid": 208531560375, + "crossed": true, + "fee": "0.002579", + "tid": 912254147608423, + "cloid": "0x00000000000000000000001603000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111655.0", + "sz": "0.00011", + "side": "B", + "time": 1761074603666, + "startPosition": "-319.48897", + "dir": "Close Short", + "closedPnl": "0.123508", + "hash": "0x020289aaa1bc8358037c042dedf8b802061300903cbfa22aa5cb34fd60b05d42", + "oid": 208531560375, + "crossed": true, + "fee": "0.002579", + "tid": 585111675221816, + "cloid": "0x00000000000000000000001603000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111656.0", + "sz": "0.00011", + "side": "B", + "time": 1761074603666, + "startPosition": "-319.48886", + "dir": "Close Short", + "closedPnl": "0.123398", + "hash": "0x020289aaa1bc8358037c042dedf8b802061300903cbfa22aa5cb34fd60b05d42", + "oid": 208531560375, + "crossed": true, + "fee": "0.002579", + "tid": 749577490956552, + "cloid": "0x00000000000000000000001603000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111657.0", + "sz": "0.00011", + "side": "B", + "time": 1761074603666, + "startPosition": "-319.48875", + "dir": "Close Short", + "closedPnl": "0.123288", + "hash": "0x020289aaa1bc8358037c042dedf8b802061300903cbfa22aa5cb34fd60b05d42", + "oid": 208531560375, + "crossed": true, + "fee": "0.002579", + "tid": 589203243884908, + "cloid": "0x00000000000000000000001603000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111658.0", + "sz": "0.00011", + "side": "B", + "time": 1761074603666, + "startPosition": "-319.48864", + "dir": "Close Short", + "closedPnl": "0.123178", + "hash": "0x020289aaa1bc8358037c042dedf8b802061300903cbfa22aa5cb34fd60b05d42", + "oid": 208531560375, + "crossed": true, + "fee": "0.002579", + "tid": 705731912485031, + "cloid": "0x00000000000000000000001603000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111659.0", + "sz": "0.00011", + "side": "B", + "time": 1761074603666, + "startPosition": "-319.48853", + "dir": "Close Short", + "closedPnl": "0.123068", + "hash": "0x020289aaa1bc8358037c042dedf8b802061300903cbfa22aa5cb34fd60b05d42", + "oid": 208531560375, + "crossed": true, + "fee": "0.002579", + "tid": 730441108014788, + "cloid": "0x00000000000000000000001603000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111660.0", + "sz": "0.00011", + "side": "B", + "time": 1761074603666, + "startPosition": "-319.48842", + "dir": "Close Short", + "closedPnl": "0.122958", + "hash": "0x020289aaa1bc8358037c042dedf8b802061300903cbfa22aa5cb34fd60b05d42", + "oid": 208531560375, + "crossed": true, + "fee": "0.002579", + "tid": 1110480162382938, + "cloid": "0x00000000000000000000001603000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111661.0", + "sz": "0.00011", + "side": "B", + "time": 1761074603666, + "startPosition": "-319.48831", + "dir": "Close Short", + "closedPnl": "0.122848", + "hash": "0x020289aaa1bc8358037c042dedf8b802061300903cbfa22aa5cb34fd60b05d42", + "oid": 208531560375, + "crossed": true, + "fee": "0.002579", + "tid": 652153987152376, + "cloid": "0x00000000000000000000001603000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111661.0", + "sz": "0.03525", + "side": "B", + "time": 1761074603666, + "startPosition": "-319.4882", + "dir": "Close Short", + "closedPnl": "39.3672", + "hash": "0x020289aaa1bc8358037c042dedf8b802061300903cbfa22aa5cb34fd60b05d42", + "oid": 208531560375, + "crossed": true, + "fee": "0.82657", + "tid": 356605528686757, + "cloid": "0x00000000000000000000001603000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111662.0", + "sz": "0.00011", + "side": "B", + "time": 1761074603666, + "startPosition": "-319.45295", + "dir": "Close Short", + "closedPnl": "0.122738", + "hash": "0x020289aaa1bc8358037c042dedf8b802061300903cbfa22aa5cb34fd60b05d42", + "oid": 208531560375, + "crossed": true, + "fee": "0.002579", + "tid": 1056066173676530, + "cloid": "0x00000000000000000000001603000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111663.0", + "sz": "0.00011", + "side": "B", + "time": 1761074603666, + "startPosition": "-319.45284", + "dir": "Close Short", + "closedPnl": "0.122628", + "hash": "0x020289aaa1bc8358037c042dedf8b802061300903cbfa22aa5cb34fd60b05d42", + "oid": 208531560375, + "crossed": true, + "fee": "0.002579", + "tid": 311906119636546, + "cloid": "0x00000000000000000000001603000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111664.0", + "sz": "0.00011", + "side": "B", + "time": 1761074603666, + "startPosition": "-319.45273", + "dir": "Close Short", + "closedPnl": "0.122518", + "hash": "0x020289aaa1bc8358037c042dedf8b802061300903cbfa22aa5cb34fd60b05d42", + "oid": 208531560375, + "crossed": true, + "fee": "0.002579", + "tid": 329136299928965, + "cloid": "0x00000000000000000000001603000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111665.0", + "sz": "0.00011", + "side": "B", + "time": 1761074603666, + "startPosition": "-319.45262", + "dir": "Close Short", + "closedPnl": "0.122408", + "hash": "0x020289aaa1bc8358037c042dedf8b802061300903cbfa22aa5cb34fd60b05d42", + "oid": 208531560375, + "crossed": true, + "fee": "0.002579", + "tid": 428299780968908, + "cloid": "0x00000000000000000000001603000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111665.0", + "sz": "0.04365", + "side": "B", + "time": 1761074603666, + "startPosition": "-319.45251", + "dir": "Close Short", + "closedPnl": "48.57372", + "hash": "0x020289aaa1bc8358037c042dedf8b802061300903cbfa22aa5cb34fd60b05d42", + "oid": 208531560375, + "crossed": true, + "fee": "1.023577", + "tid": 1057195683550905, + "cloid": "0x00000000000000000000001603000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111665.0", + "sz": "0.0895", + "side": "B", + "time": 1761074605283, + "startPosition": "-319.40886", + "dir": "Close Short", + "closedPnl": "99.5956", + "hash": "0xdfdf471426ca321fe159042dedf8cc02022800f9c1cd50f183a7f266e5ce0c0a", + "oid": 208531589221, + "crossed": true, + "fee": "2.098743", + "tid": 1097692176853208, + "cloid": "0x00000000000000000000001603000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111660.0", + "sz": "0.00834", + "side": "B", + "time": 1761074606774, + "startPosition": "-319.31936", + "dir": "Close Short", + "closedPnl": "9.322452", + "hash": "0x3374c90599b9dfee34ee042dedf8df02049000eb34bcfec0d73d745858bdb9d8", + "oid": 208531608206, + "crossed": true, + "fee": "0.195561", + "tid": 167747295719104, + "cloid": "0x00000000000000000000001603000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111660.0", + "sz": "0.04712", + "side": "B", + "time": 1761074606774, + "startPosition": "-319.31102", + "dir": "Close Short", + "closedPnl": "52.670736", + "hash": "0x3374c90599b9dfee34ee042dedf8df02049000eb34bcfec0d73d745858bdb9d8", + "oid": 208531608206, + "crossed": true, + "fee": "1.104898", + "tid": 612925886427096, + "cloid": "0x00000000000000000000001603000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111660.0", + "sz": "0.03405", + "side": "B", + "time": 1761074606774, + "startPosition": "-319.2639", + "dir": "Close Short", + "closedPnl": "38.06109", + "hash": "0x3374c90599b9dfee34ee042dedf8df02049000eb34bcfec0d73d745858bdb9d8", + "oid": 208531608206, + "crossed": true, + "fee": "0.798424", + "tid": 884035463669196, + "cloid": "0x00000000000000000000001603000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111654.0", + "sz": "0.08951", + "side": "B", + "time": 1761074608692, + "startPosition": "-319.22985", + "dir": "Close Short", + "closedPnl": "100.591338", + "hash": "0xacf82d72fff4e61dae71042dedf8fb02030800589af804ef50c0d8c5bef8c008", + "oid": 208531632827, + "crossed": true, + "fee": "2.098771", + "tid": 927987238122572, + "cloid": "0x00000000000000000000001603000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111645.0", + "sz": "0.08952", + "side": "B", + "time": 1761074614104, + "startPosition": "-319.14034", + "dir": "Close Short", + "closedPnl": "101.408256", + "hash": "0xfc22b0ae3b50ce42fd9c042dedf93e02039f0093d653ed159feb5c00fa54a82d", + "oid": 208531715983, + "crossed": true, + "fee": "2.098836", + "tid": 1053893893055506, + "cloid": "0x00000000000000000000001603000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111640.0", + "sz": "0.02463", + "side": "B", + "time": 1761074616253, + "startPosition": "-319.05082", + "dir": "Close Short", + "closedPnl": "28.024014", + "hash": "0xbec546295ad96318c03f042dedf9560205df000ef5dc81ea628df17c19dd3d03", + "oid": 208531748134, + "crossed": true, + "fee": "0.577435", + "tid": 810887797591349, + "cloid": "0x00000000000000000000001603000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111640.0", + "sz": "0.02473", + "side": "B", + "time": 1761074616253, + "startPosition": "-319.02619", + "dir": "Close Short", + "closedPnl": "28.137794", + "hash": "0xbec546295ad96318c03f042dedf9560205df000ef5dc81ea628df17c19dd3d03", + "oid": 208531748134, + "crossed": true, + "fee": "0.57978", + "tid": 31495953760869, + "cloid": "0x00000000000000000000001603000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111640.0", + "sz": "0.04016", + "side": "B", + "time": 1761074616253, + "startPosition": "-319.00146", + "dir": "Close Short", + "closedPnl": "45.694048", + "hash": "0xbec546295ad96318c03f042dedf9560205df000ef5dc81ea628df17c19dd3d03", + "oid": 208531748134, + "crossed": true, + "fee": "0.941527", + "tid": 1071723235177534, + "cloid": "0x00000000000000000000001603000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111640.0", + "sz": "0.08952", + "side": "B", + "time": 1761074617956, + "startPosition": "-318.9613", + "dir": "Close Short", + "closedPnl": "101.855856", + "hash": "0xfe1cf481e3841169ff96042dedf96b02027900677e87303ca1e59fd4a287eb54", + "oid": 208531771379, + "crossed": true, + "fee": "2.098742", + "tid": 520403321899778, + "cloid": "0x00000000000000000000001603000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111640.0", + "sz": "0.00514", + "side": "B", + "time": 1761074619248, + "startPosition": "-318.87178", + "dir": "Close Short", + "closedPnl": "5.848292", + "hash": "0x1beaf9516b2475c81d64042dedf97b0202b300370627949abfb3a4a42a284fb2", + "oid": 208531787736, + "crossed": true, + "fee": "0.120504", + "tid": 303731891335093, + "cloid": "0x00000000000000000000001603000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111640.0", + "sz": "0.08438", + "side": "B", + "time": 1761074619248, + "startPosition": "-318.86664", + "dir": "Close Short", + "closedPnl": "96.007564", + "hash": "0x1beaf9516b2475c81d64042dedf97b0202b300370627949abfb3a4a42a284fb2", + "oid": 208531787736, + "crossed": true, + "fee": "1.978238", + "tid": 457679476983027, + "cloid": "0x00000000000000000000001603000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111640.0", + "sz": "0.00866", + "side": "B", + "time": 1761074623056, + "startPosition": "-318.78226", + "dir": "Close Short", + "closedPnl": "9.853348", + "hash": "0x6a73acbef68fdaca6bed042dedf9ab0209e900a49182f99c0e3c5811b583b4b5", + "oid": 208531838059, + "crossed": true, + "fee": "0.203028", + "tid": 428666611707529, + "cloid": "0x00000000000000000000001603000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111641.0", + "sz": "0.00011", + "side": "B", + "time": 1761074623056, + "startPosition": "-318.7736", + "dir": "Close Short", + "closedPnl": "0.125048", + "hash": "0x6a73acbef68fdaca6bed042dedf9ab0209e900a49182f99c0e3c5811b583b4b5", + "oid": 208531838059, + "crossed": true, + "fee": "0.002578", + "tid": 420156984332782, + "cloid": "0x00000000000000000000001603000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111641.0", + "sz": "0.00133", + "side": "B", + "time": 1761074623056, + "startPosition": "-318.77349", + "dir": "Close Short", + "closedPnl": "1.511944", + "hash": "0x6a73acbef68fdaca6bed042dedf9ab0209e900a49182f99c0e3c5811b583b4b5", + "oid": 208531838059, + "crossed": true, + "fee": "0.031181", + "tid": 404980176726232, + "cloid": "0x00000000000000000000001603000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111642.0", + "sz": "0.00011", + "side": "B", + "time": 1761074623056, + "startPosition": "-318.77216", + "dir": "Close Short", + "closedPnl": "0.124938", + "hash": "0x6a73acbef68fdaca6bed042dedf9ab0209e900a49182f99c0e3c5811b583b4b5", + "oid": 208531838059, + "crossed": true, + "fee": "0.002578", + "tid": 981561254317784, + "cloid": "0x00000000000000000000001603000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111643.0", + "sz": "0.00011", + "side": "B", + "time": 1761074623056, + "startPosition": "-318.77205", + "dir": "Close Short", + "closedPnl": "0.124828", + "hash": "0x6a73acbef68fdaca6bed042dedf9ab0209e900a49182f99c0e3c5811b583b4b5", + "oid": 208531838059, + "crossed": true, + "fee": "0.002578", + "tid": 138439765491596, + "cloid": "0x00000000000000000000001603000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111643.0", + "sz": "0.00095", + "side": "B", + "time": 1761074623056, + "startPosition": "-318.77194", + "dir": "Close Short", + "closedPnl": "1.07806", + "hash": "0x6a73acbef68fdaca6bed042dedf9ab0209e900a49182f99c0e3c5811b583b4b5", + "oid": 208531838059, + "crossed": true, + "fee": "0.022272", + "tid": 306115979254217, + "cloid": "0x00000000000000000000001603000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111644.0", + "sz": "0.00011", + "side": "B", + "time": 1761074623056, + "startPosition": "-318.77099", + "dir": "Close Short", + "closedPnl": "0.124718", + "hash": "0x6a73acbef68fdaca6bed042dedf9ab0209e900a49182f99c0e3c5811b583b4b5", + "oid": 208531838059, + "crossed": true, + "fee": "0.002578", + "tid": 688587272915401, + "cloid": "0x00000000000000000000001603000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111644.0", + "sz": "0.00014", + "side": "B", + "time": 1761074623056, + "startPosition": "-318.77088", + "dir": "Close Short", + "closedPnl": "0.158732", + "hash": "0x6a73acbef68fdaca6bed042dedf9ab0209e900a49182f99c0e3c5811b583b4b5", + "oid": 208531838059, + "crossed": true, + "fee": "0.003282", + "tid": 8812556349999, + "cloid": "0x00000000000000000000001603000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111645.0", + "sz": "0.00011", + "side": "B", + "time": 1761074623056, + "startPosition": "-318.77074", + "dir": "Close Short", + "closedPnl": "0.124608", + "hash": "0x6a73acbef68fdaca6bed042dedf9ab0209e900a49182f99c0e3c5811b583b4b5", + "oid": 208531838059, + "crossed": true, + "fee": "0.002578", + "tid": 44020351671582, + "cloid": "0x00000000000000000000001603000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111646.0", + "sz": "0.00011", + "side": "B", + "time": 1761074623056, + "startPosition": "-318.77063", + "dir": "Close Short", + "closedPnl": "0.124498", + "hash": "0x6a73acbef68fdaca6bed042dedf9ab0209e900a49182f99c0e3c5811b583b4b5", + "oid": 208531838059, + "crossed": true, + "fee": "0.002579", + "tid": 375828961394557, + "cloid": "0x00000000000000000000001603000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111646.0", + "sz": "0.00103", + "side": "B", + "time": 1761074623056, + "startPosition": "-318.77052", + "dir": "Close Short", + "closedPnl": "1.165754", + "hash": "0x6a73acbef68fdaca6bed042dedf9ab0209e900a49182f99c0e3c5811b583b4b5", + "oid": 208531838059, + "crossed": true, + "fee": "0.024149", + "tid": 618797286615267, + "cloid": "0x00000000000000000000001603000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111647.0", + "sz": "0.00011", + "side": "B", + "time": 1761074623056, + "startPosition": "-318.76949", + "dir": "Close Short", + "closedPnl": "0.124388", + "hash": "0x6a73acbef68fdaca6bed042dedf9ab0209e900a49182f99c0e3c5811b583b4b5", + "oid": 208531838059, + "crossed": true, + "fee": "0.002579", + "tid": 101767787224872, + "cloid": "0x00000000000000000000001603000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111648.0", + "sz": "0.00011", + "side": "B", + "time": 1761074623056, + "startPosition": "-318.76938", + "dir": "Close Short", + "closedPnl": "0.124278", + "hash": "0x6a73acbef68fdaca6bed042dedf9ab0209e900a49182f99c0e3c5811b583b4b5", + "oid": 208531838059, + "crossed": true, + "fee": "0.002579", + "tid": 1035094504938427, + "cloid": "0x00000000000000000000001603000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111648.0", + "sz": "0.00014", + "side": "B", + "time": 1761074623056, + "startPosition": "-318.76927", + "dir": "Close Short", + "closedPnl": "0.158172", + "hash": "0x6a73acbef68fdaca6bed042dedf9ab0209e900a49182f99c0e3c5811b583b4b5", + "oid": 208531838059, + "crossed": true, + "fee": "0.003282", + "tid": 785191468433636, + "cloid": "0x00000000000000000000001603000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111648.0", + "sz": "0.07639", + "side": "B", + "time": 1761074623056, + "startPosition": "-318.76913", + "dir": "Close Short", + "closedPnl": "86.305422", + "hash": "0x6a73acbef68fdaca6bed042dedf9ab0209e900a49182f99c0e3c5811b583b4b5", + "oid": 208531838059, + "crossed": true, + "fee": "1.791046", + "tid": 352254792035584, + "cloid": "0x00000000000000000000001603000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111641.0", + "sz": "0.02459", + "side": "B", + "time": 1761074625518, + "startPosition": "-318.69274", + "dir": "Close Short", + "closedPnl": "27.953912", + "hash": "0xbcd72ffd3b67448dbe50042dedf9cb0204c700e2d66a635f609fdb4ffa6b1e78", + "oid": 208531876710, + "crossed": true, + "fee": "0.576502", + "tid": 968280978678422, + "cloid": "0x00000000000000000000001603000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111641.0", + "sz": "0.06493", + "side": "B", + "time": 1761074625518, + "startPosition": "-318.66815", + "dir": "Close Short", + "closedPnl": "73.812424", + "hash": "0xbcd72ffd3b67448dbe50042dedf9cb0204c700e2d66a635f609fdb4ffa6b1e78", + "oid": 208531876710, + "crossed": true, + "fee": "1.522258", + "tid": 440782817555081, + "cloid": "0x00000000000000000000001603000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111640.0", + "sz": "0.0637", + "side": "B", + "time": 1761074626688, + "startPosition": "-318.60322", + "dir": "Close Short", + "closedPnl": "72.47786", + "hash": "0xea8f6363edf4dc82ec09042dedf9d80205d7004988f7fb548e580eb6acf8b66d", + "oid": 208531901260, + "crossed": true, + "fee": "1.493408", + "tid": 18785692630934, + "cloid": "0x00000000000000000000001603000019", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111640.0", + "sz": "0.0146", + "side": "B", + "time": 1761074626688, + "startPosition": "-318.53952", + "dir": "Close Short", + "closedPnl": "16.61188", + "hash": "0xea8f6363edf4dc82ec09042dedf9d80205d7004988f7fb548e580eb6acf8b66d", + "oid": 208531901260, + "crossed": true, + "fee": "0.342288", + "tid": 412971376936135, + "cloid": "0x00000000000000000000001603000019", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111640.0", + "sz": "0.01124", + "side": "B", + "time": 1761074626688, + "startPosition": "-318.52492", + "dir": "Close Short", + "closedPnl": "12.788872", + "hash": "0xea8f6363edf4dc82ec09042dedf9d80205d7004988f7fb548e580eb6acf8b66d", + "oid": 208531901260, + "crossed": true, + "fee": "0.263515", + "tid": 597755727293617, + "cloid": "0x00000000000000000000001603000019", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111632.0", + "sz": "0.08953", + "side": "B", + "time": 1761074630368, + "startPosition": "-318.51368", + "dir": "Close Short", + "closedPnl": "102.583474", + "hash": "0x0b9a3eab7eca0a9b0d13042dedfa0b02072d009119cd296daf62e9fe3dcde485", + "oid": 208531956216, + "crossed": true, + "fee": "2.098826", + "tid": 613043020055203, + "cloid": "0x00000000000000000000001603000020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111656.0", + "sz": "0.08951", + "side": "B", + "time": 1761074631535, + "startPosition": "-318.42415", + "dir": "Close Short", + "closedPnl": "100.412318", + "hash": "0x7c8bb4a73c54fb587e05042dedfa190202a8008cd7581a2a20545ff9fb58d543", + "oid": 208531976369, + "crossed": true, + "fee": "2.098808", + "tid": 270105462697109, + "cloid": "0x00000000000000000000001603000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111657.0", + "sz": "0.08951", + "side": "B", + "time": 1761074634109, + "startPosition": "-318.33464", + "dir": "Close Short", + "closedPnl": "100.322808", + "hash": "0xfa7c350852e38db6fbf5042dedfa400205f600edede6ac899e44e05b11e767a1", + "oid": 208532013779, + "crossed": true, + "fee": "2.098827", + "tid": 128649434946735, + "cloid": "0x00000000000000000000001603000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111646.0", + "sz": "0.04881", + "side": "B", + "time": 1761074635357, + "startPosition": "-318.24513", + "dir": "Close Short", + "closedPnl": "55.243158", + "hash": "0xdd0b073601c43a94de84042dedfa510202ff001b9cc7596680d3b288c0c8147f", + "oid": 208532035155, + "crossed": true, + "fee": "1.144382", + "tid": 893529690585464, + "cloid": "0x00000000000000000000001603000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111646.0", + "sz": "0.00935", + "side": "B", + "time": 1761074635357, + "startPosition": "-318.19632", + "dir": "Close Short", + "closedPnl": "10.58233", + "hash": "0xdd0b073601c43a94de84042dedfa510202ff001b9cc7596680d3b288c0c8147f", + "oid": 208532035155, + "crossed": true, + "fee": "0.219216", + "tid": 406380006643663, + "cloid": "0x00000000000000000000001603000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111646.0", + "sz": "0.03136", + "side": "B", + "time": 1761074635357, + "startPosition": "-318.18697", + "dir": "Close Short", + "closedPnl": "35.493248", + "hash": "0xdd0b073601c43a94de84042dedfa510202ff001b9cc7596680d3b288c0c8147f", + "oid": 208532035155, + "crossed": true, + "fee": "0.735255", + "tid": 766676104799598, + "cloid": "0x00000000000000000000001603000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111628.0", + "sz": "0.04151", + "side": "B", + "time": 1761074636650, + "startPosition": "-318.15561", + "dir": "Close Short", + "closedPnl": "47.728198", + "hash": "0xb35c3138b44af430b4d5042dedfa62020a52001e4f4e13025724dc8b734ece1b", + "oid": 208532059306, + "crossed": true, + "fee": "0.973072", + "tid": 455636923067243, + "cloid": "0x00000000000000000000001603000024", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111628.0", + "sz": "0.04803", + "side": "B", + "time": 1761074636650, + "startPosition": "-318.1141", + "dir": "Close Short", + "closedPnl": "55.224894", + "hash": "0xb35c3138b44af430b4d5042dedfa62020a52001e4f4e13025724dc8b734ece1b", + "oid": 208532059306, + "crossed": true, + "fee": "1.125913", + "tid": 71942554403229, + "cloid": "0x00000000000000000000001603000024", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111615.0", + "sz": "0.08954", + "side": "B", + "time": 1761074638608, + "startPosition": "-318.06607", + "dir": "Close Short", + "closedPnl": "104.117112", + "hash": "0x7bd72c54f06673787d50042dedfa7d02019d003a8b69924a1f9fd7a7af6a4d63", + "oid": 208532089366, + "crossed": true, + "fee": "2.098741", + "tid": 730892772593739, + "cloid": "0x00000000000000000000001603000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111601.0", + "sz": "0.00078", + "side": "B", + "time": 1761074645182, + "startPosition": "-317.97653", + "dir": "Close Short", + "closedPnl": "0.917904", + "hash": "0xebc70c3781d660b7ed40042dedfad1020b28001d1cd97f898f8fb78a40da3aa2", + "oid": 208532165309, + "crossed": true, + "fee": "0.01828", + "tid": 395403597136637, + "cloid": "0x00000000000000000000001603000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111601.0", + "sz": "0.02057", + "side": "B", + "time": 1761074645182, + "startPosition": "-317.97575", + "dir": "Close Short", + "closedPnl": "24.206776", + "hash": "0xebc70c3781d660b7ed40042dedfad1020b28001d1cd97f898f8fb78a40da3aa2", + "oid": 208532165309, + "crossed": true, + "fee": "0.482082", + "tid": 302739854102748, + "cloid": "0x00000000000000000000001603000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111601.0", + "sz": "0.02471", + "side": "B", + "time": 1761074645182, + "startPosition": "-317.95518", + "dir": "Close Short", + "closedPnl": "29.078728", + "hash": "0xebc70c3781d660b7ed40042dedfad1020b28001d1cd97f898f8fb78a40da3aa2", + "oid": 208532165309, + "crossed": true, + "fee": "0.579108", + "tid": 583607380467669, + "cloid": "0x00000000000000000000001603000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111601.0", + "sz": "0.02057", + "side": "B", + "time": 1761074645182, + "startPosition": "-317.93047", + "dir": "Close Short", + "closedPnl": "24.206776", + "hash": "0xebc70c3781d660b7ed40042dedfad1020b28001d1cd97f898f8fb78a40da3aa2", + "oid": 208532165309, + "crossed": true, + "fee": "0.482082", + "tid": 610228938725048, + "cloid": "0x00000000000000000000001603000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111601.0", + "sz": "0.02057", + "side": "B", + "time": 1761074645182, + "startPosition": "-317.9099", + "dir": "Close Short", + "closedPnl": "24.206776", + "hash": "0xebc70c3781d660b7ed40042dedfad1020b28001d1cd97f898f8fb78a40da3aa2", + "oid": 208532165309, + "crossed": true, + "fee": "0.482082", + "tid": 913526805737664, + "cloid": "0x00000000000000000000001603000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111601.0", + "sz": "0.00235", + "side": "B", + "time": 1761074645182, + "startPosition": "-317.88933", + "dir": "Close Short", + "closedPnl": "2.76548", + "hash": "0xebc70c3781d660b7ed40042dedfad1020b28001d1cd97f898f8fb78a40da3aa2", + "oid": 208532165309, + "crossed": true, + "fee": "0.055075", + "tid": 834688087403135, + "cloid": "0x00000000000000000000001603000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111568.0", + "sz": "0.02104", + "side": "B", + "time": 1761074647696, + "startPosition": "-317.88698", + "dir": "Close Short", + "closedPnl": "25.454192", + "hash": "0x4642bc31bd81f9b747bc042dedfaee020c4a001758851889ea0b67847c85d3a1", + "oid": 208532209944, + "crossed": true, + "fee": "0.492952", + "tid": 1068032874036169, + "cloid": "0x00000000000000000000001603000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111569.0", + "sz": "0.04048", + "side": "B", + "time": 1761074647696, + "startPosition": "-317.86594", + "dir": "Close Short", + "closedPnl": "48.932224", + "hash": "0x4642bc31bd81f9b747bc042dedfaee020c4a001758851889ea0b67847c85d3a1", + "oid": 208532209944, + "crossed": true, + "fee": "0.948425", + "tid": 503122890959188, + "cloid": "0x00000000000000000000001603000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111569.0", + "sz": "0.02114", + "side": "B", + "time": 1761074647696, + "startPosition": "-317.82546", + "dir": "Close Short", + "closedPnl": "25.554032", + "hash": "0x4642bc31bd81f9b747bc042dedfaee020c4a001758851889ea0b67847c85d3a1", + "oid": 208532209944, + "crossed": true, + "fee": "0.495299", + "tid": 230307909080876, + "cloid": "0x00000000000000000000001603000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111569.0", + "sz": "0.0069", + "side": "B", + "time": 1761074647696, + "startPosition": "-317.80432", + "dir": "Close Short", + "closedPnl": "8.34072", + "hash": "0x4642bc31bd81f9b747bc042dedfaee020c4a001758851889ea0b67847c85d3a1", + "oid": 208532209944, + "crossed": true, + "fee": "0.161663", + "tid": 31797784522156, + "cloid": "0x00000000000000000000001603000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111561.0", + "sz": "0.07552", + "side": "B", + "time": 1761074649465, + "startPosition": "-317.79742", + "dir": "Close Short", + "closedPnl": "91.892736", + "hash": "0xd20174fd387967b9d37b042dedfb040205e300e2d37c868b75ca204ff77d41a4", + "oid": 208532237754, + "crossed": true, + "fee": "1.769268", + "tid": 413591005509433, + "cloid": "0x00000000000000000000001603000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111561.0", + "sz": "0.01405", + "side": "B", + "time": 1761074649465, + "startPosition": "-317.7219", + "dir": "Close Short", + "closedPnl": "17.09604", + "hash": "0xd20174fd387967b9d37b042dedfb040205e300e2d37c868b75ca204ff77d41a4", + "oid": 208532237754, + "crossed": true, + "fee": "0.32916", + "tid": 193388074913359, + "cloid": "0x00000000000000000000001603000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111586.0", + "sz": "0.01933", + "side": "B", + "time": 1761074654294, + "startPosition": "-317.70785", + "dir": "Close Short", + "closedPnl": "23.037494", + "hash": "0x15da45a9b243e7ee1754042dedfb3d0209ab008f4d4706c0b9a2f0fc7147c1d8", + "oid": 208532305392, + "crossed": true, + "fee": "0.452961", + "tid": 140719082185214, + "cloid": "0x00000000000000000000001603000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111586.0", + "sz": "0.07024", + "side": "B", + "time": 1761074654294, + "startPosition": "-317.68852", + "dir": "Close Short", + "closedPnl": "83.712032", + "hash": "0x15da45a9b243e7ee1754042dedfb3d0209ab008f4d4706c0b9a2f0fc7147c1d8", + "oid": 208532305392, + "crossed": true, + "fee": "1.645938", + "tid": 432359247007540, + "cloid": "0x00000000000000000000001603000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111581.0", + "sz": "0.08957", + "side": "B", + "time": 1761074656161, + "startPosition": "-317.61828", + "dir": "Close Short", + "closedPnl": "107.197376", + "hash": "0x7875f51a2915e71779ef042dedfb530203b200ffc41905e91c3ea06ce819c102", + "oid": 208532334949, + "crossed": true, + "fee": "2.098805", + "tid": 65040636298592, + "cloid": "0x00000000000000000000001603000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111581.0", + "sz": "0.08389", + "side": "B", + "time": 1761074658936, + "startPosition": "-317.52871", + "dir": "Close Short", + "closedPnl": "100.399552", + "hash": "0x47111825fc0d8b21488a042dedfb7902027b000b9700a9f3ead9c378bb01650b", + "oid": 208532368046, + "crossed": true, + "fee": "1.965711", + "tid": 521551357839920, + "cloid": "0x00000000000000000000001603000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111581.0", + "sz": "0.00568", + "side": "B", + "time": 1761074658936, + "startPosition": "-317.44482", + "dir": "Close Short", + "closedPnl": "6.797824", + "hash": "0x47111825fc0d8b21488a042dedfb7902027b000b9700a9f3ead9c378bb01650b", + "oid": 208532368046, + "crossed": true, + "fee": "0.133093", + "tid": 701000731751558, + "cloid": "0x00000000000000000000001603000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.08957", + "side": "B", + "time": 1761074663663, + "startPosition": "-317.43914", + "dir": "Close Short", + "closedPnl": "106.391246", + "hash": "0x4f8bf076cb588b1e5105042dedfbb80202bd005c665ba9f0f3549bc98a5c6508", + "oid": 208532420367, + "crossed": true, + "fee": "2.098974", + "tid": 532132498792276, + "cloid": "0x00000000000000000000001603000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111604.0", + "sz": "0.06205", + "side": "B", + "time": 1761074668117, + "startPosition": "-317.34957", + "dir": "Close Short", + "closedPnl": "72.83429", + "hash": "0x8a84d516957594118bfe042dedfbea02053500fc3078b2e32e4d806954796dfc", + "oid": 208532482997, + "crossed": true, + "fee": "1.454255", + "tid": 1004119645095306, + "cloid": "0x00000000000000000000001603000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111605.0", + "sz": "0.00011", + "side": "B", + "time": 1761074668117, + "startPosition": "-317.28752", + "dir": "Close Short", + "closedPnl": "0.129008", + "hash": "0x8a84d516957594118bfe042dedfbea02053500fc3078b2e32e4d806954796dfc", + "oid": 208532482997, + "crossed": true, + "fee": "0.002578", + "tid": 518904416811521, + "cloid": "0x00000000000000000000001603000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111605.0", + "sz": "0.00014", + "side": "B", + "time": 1761074668117, + "startPosition": "-317.28741", + "dir": "Close Short", + "closedPnl": "0.164192", + "hash": "0x8a84d516957594118bfe042dedfbea02053500fc3078b2e32e4d806954796dfc", + "oid": 208532482997, + "crossed": true, + "fee": "0.003281", + "tid": 931303343040890, + "cloid": "0x00000000000000000000001603000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111606.0", + "sz": "0.00011", + "side": "B", + "time": 1761074668117, + "startPosition": "-317.28727", + "dir": "Close Short", + "closedPnl": "0.128898", + "hash": "0x8a84d516957594118bfe042dedfbea02053500fc3078b2e32e4d806954796dfc", + "oid": 208532482997, + "crossed": true, + "fee": "0.002578", + "tid": 911225473294000, + "cloid": "0x00000000000000000000001603000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111607.0", + "sz": "0.00011", + "side": "B", + "time": 1761074668117, + "startPosition": "-317.28716", + "dir": "Close Short", + "closedPnl": "0.128788", + "hash": "0x8a84d516957594118bfe042dedfbea02053500fc3078b2e32e4d806954796dfc", + "oid": 208532482997, + "crossed": true, + "fee": "0.002578", + "tid": 327985869913625, + "cloid": "0x00000000000000000000001603000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111607.0", + "sz": "0.02704", + "side": "B", + "time": 1761074668117, + "startPosition": "-317.28705", + "dir": "Close Short", + "closedPnl": "31.658432", + "hash": "0x8a84d516957594118bfe042dedfbea02053500fc3078b2e32e4d806954796dfc", + "oid": 208532482997, + "crossed": true, + "fee": "0.633749", + "tid": 951774769205204, + "cloid": "0x00000000000000000000001603000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111608.0", + "sz": "0.08956", + "side": "B", + "time": 1761074670993, + "startPosition": "-317.26001", + "dir": "Close Short", + "closedPnl": "104.767288", + "hash": "0x4acf805f02684ef54c49042dedfc0902030100449d6b6dc7ee982bb1c16c28df", + "oid": 208532521736, + "crossed": true, + "fee": "2.099078", + "tid": 66104472560092, + "cloid": "0x00000000000000000000001603000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111608.0", + "sz": "0.08955", + "side": "B", + "time": 1761074672303, + "startPosition": "-317.17045", + "dir": "Close Short", + "closedPnl": "104.75559", + "hash": "0x3dafd3e704c3df5b3f29042dedfc1a02020200cc9fc6fe2de1787f39c3c7b945", + "oid": 208532529885, + "crossed": true, + "fee": "2.098844", + "tid": 903824292260996, + "cloid": "0x00000000000000000000001603000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111614.0", + "sz": "0.08954", + "side": "B", + "time": 1761074682126, + "startPosition": "-317.0809", + "dir": "Close Short", + "closedPnl": "104.206652", + "hash": "0xe828a63918978c29e9a2042dedfc960201db001eb39aaafb8bf1518bd79b6614", + "oid": 208532594905, + "crossed": true, + "fee": "2.098722", + "tid": 384504321887870, + "cloid": "0x00000000000000000000001603000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111611.0", + "sz": "0.08955", + "side": "B", + "time": 1761074683737, + "startPosition": "-316.99136", + "dir": "Close Short", + "closedPnl": "104.48694", + "hash": "0xc3cbb8027f11611ac545042dedfcac02059500e81a147fec679463553e153b05", + "oid": 208532623094, + "crossed": true, + "fee": "2.0989", + "tid": 473918256638651, + "cloid": "0x00000000000000000000001603000037", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111595.0", + "sz": "0.08956", + "side": "B", + "time": 1761074688181, + "startPosition": "-316.90181", + "dir": "Close Short", + "closedPnl": "105.931568", + "hash": "0xa5c266c69c2ca3fba73c042dedfce10204c500ac372fc2cd498b12195b207de6", + "oid": 208532691720, + "crossed": true, + "fee": "2.098834", + "tid": 1074900581789254, + "cloid": "0x00000000000000000000001603000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111595.0", + "sz": "0.08956", + "side": "B", + "time": 1761074689588, + "startPosition": "-316.81225", + "dir": "Close Short", + "closedPnl": "105.931568", + "hash": "0xbfaaff8d25450441c124042dedfcef0208610072c04823136373aadfe448de2c", + "oid": 208532714727, + "crossed": true, + "fee": "2.098834", + "tid": 832317996941811, + "cloid": "0x00000000000000000000001603000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111612.0", + "sz": "0.02716", + "side": "B", + "time": 1761074691944, + "startPosition": "-316.72269", + "dir": "Close Short", + "closedPnl": "31.663128", + "hash": "0xbf2195137003e90fc09b042dedfd0b02046100f90b0707e162ea40662f07c2fa", + "oid": 208532746998, + "crossed": true, + "fee": "0.63659", + "tid": 249303501589295, + "cloid": "0x00000000000000000000001603000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111612.0", + "sz": "0.0624", + "side": "B", + "time": 1761074691944, + "startPosition": "-316.69553", + "dir": "Close Short", + "closedPnl": "72.74592", + "hash": "0xbf2195137003e90fc09b042dedfd0b02046100f90b0707e162ea40662f07c2fa", + "oid": 208532746998, + "crossed": true, + "fee": "1.462563", + "tid": 1114162787882243, + "cloid": "0x00000000000000000000001603000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111598.0", + "sz": "0.08956", + "side": "B", + "time": 1761074693663, + "startPosition": "-316.63313", + "dir": "Close Short", + "closedPnl": "105.662888", + "hash": "0x107df28c022d85a311f7042dedfd200202aa00719d20a475b4469ddec1215f8d", + "oid": 208532772378, + "crossed": true, + "fee": "2.09889", + "tid": 694820149055049, + "cloid": "0x00000000000000000000001603000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111598.0", + "sz": "0.00517", + "side": "B", + "time": 1761074695396, + "startPosition": "-316.54357", + "dir": "Close Short", + "closedPnl": "6.099566", + "hash": "0x210261ca37afe9bd227c042dedfd3402045e00afd2a3088fc4cb0d1cf6a3c3a7", + "oid": 208532798139, + "crossed": true, + "fee": "0.121161", + "tid": 1086154257876656, + "cloid": "0x00000000000000000000001603000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111598.0", + "sz": "0.05452", + "side": "B", + "time": 1761074695396, + "startPosition": "-316.5384", + "dir": "Close Short", + "closedPnl": "64.322696", + "hash": "0x210261ca37afe9bd227c042dedfd3402045e00afd2a3088fc4cb0d1cf6a3c3a7", + "oid": 208532798139, + "crossed": true, + "fee": "1.277707", + "tid": 868007318896117, + "cloid": "0x00000000000000000000001603000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111598.0", + "sz": "0.02987", + "side": "B", + "time": 1761074695396, + "startPosition": "-316.48388", + "dir": "Close Short", + "closedPnl": "35.240626", + "hash": "0x210261ca37afe9bd227c042dedfd3402045e00afd2a3088fc4cb0d1cf6a3c3a7", + "oid": 208532798139, + "crossed": true, + "fee": "0.70002", + "tid": 1087178782845348, + "cloid": "0x00000000000000000000001603000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111598.0", + "sz": "0.07732", + "side": "B", + "time": 1761074696633, + "startPosition": "-316.45401", + "dir": "Close Short", + "closedPnl": "91.222136", + "hash": "0x6f46615264eed2ab70c0042dedfd4202018c0037ffe1f17d130f0ca523e2ac96", + "oid": 208532812902, + "crossed": true, + "fee": "1.812039", + "tid": 33890828323453, + "cloid": "0x00000000000000000000001603000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111598.0", + "sz": "0.01224", + "side": "B", + "time": 1761074696633, + "startPosition": "-316.37669", + "dir": "Close Short", + "closedPnl": "14.440752", + "hash": "0x6f46615264eed2ab70c0042dedfd4202018c0037ffe1f17d130f0ca523e2ac96", + "oid": 208532812902, + "crossed": true, + "fee": "0.286851", + "tid": 30584176436857, + "cloid": "0x00000000000000000000001603000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111596.0", + "sz": "0.08957", + "side": "B", + "time": 1761074701037, + "startPosition": "-316.36445", + "dir": "Close Short", + "closedPnl": "105.853826", + "hash": "0x7af660824503e9207c70042dedfd780205500067e00707f21ebf0bd50407c30b", + "oid": 208532856273, + "crossed": true, + "fee": "2.099087", + "tid": 8959222912516, + "cloid": "0x00000000000000000000001603000044", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.001", + "side": "B", + "time": 1761074708459, + "startPosition": "-316.27488", + "dir": "Close Short", + "closedPnl": "1.1878", + "hash": "0x3ed192ab94b31ceb404b042dedfdd402023700912fb63bbde29a3dfe53b6f6d5", + "oid": 208532942070, + "crossed": true, + "fee": "0.023433", + "tid": 672175528436606, + "cloid": "0x00000000000000000000001603000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.00011", + "side": "B", + "time": 1761074708459, + "startPosition": "-316.27388", + "dir": "Close Short", + "closedPnl": "0.130658", + "hash": "0x3ed192ab94b31ceb404b042dedfdd402023700912fb63bbde29a3dfe53b6f6d5", + "oid": 208532942070, + "crossed": true, + "fee": "0.002577", + "tid": 690076826258086, + "cloid": "0x00000000000000000000001603000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111591.0", + "sz": "0.00011", + "side": "B", + "time": 1761074708459, + "startPosition": "-316.27377", + "dir": "Close Short", + "closedPnl": "0.130548", + "hash": "0x3ed192ab94b31ceb404b042dedfdd402023700912fb63bbde29a3dfe53b6f6d5", + "oid": 208532942070, + "crossed": true, + "fee": "0.002577", + "tid": 863391568445660, + "cloid": "0x00000000000000000000001603000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111592.0", + "sz": "0.00011", + "side": "B", + "time": 1761074708459, + "startPosition": "-316.27366", + "dir": "Close Short", + "closedPnl": "0.130438", + "hash": "0x3ed192ab94b31ceb404b042dedfdd402023700912fb63bbde29a3dfe53b6f6d5", + "oid": 208532942070, + "crossed": true, + "fee": "0.002577", + "tid": 406092110140831, + "cloid": "0x00000000000000000000001603000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111593.0", + "sz": "0.00094", + "side": "B", + "time": 1761074708459, + "startPosition": "-316.27355", + "dir": "Close Short", + "closedPnl": "1.113712", + "hash": "0x3ed192ab94b31ceb404b042dedfdd402023700912fb63bbde29a3dfe53b6f6d5", + "oid": 208532942070, + "crossed": true, + "fee": "0.022028", + "tid": 22297284070422, + "cloid": "0x00000000000000000000001603000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111593.0", + "sz": "0.00011", + "side": "B", + "time": 1761074708459, + "startPosition": "-316.27261", + "dir": "Close Short", + "closedPnl": "0.130328", + "hash": "0x3ed192ab94b31ceb404b042dedfdd402023700912fb63bbde29a3dfe53b6f6d5", + "oid": 208532942070, + "crossed": true, + "fee": "0.002577", + "tid": 125158591400205, + "cloid": "0x00000000000000000000001603000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111594.0", + "sz": "0.00011", + "side": "B", + "time": 1761074708459, + "startPosition": "-316.2725", + "dir": "Close Short", + "closedPnl": "0.130218", + "hash": "0x3ed192ab94b31ceb404b042dedfdd402023700912fb63bbde29a3dfe53b6f6d5", + "oid": 208532942070, + "crossed": true, + "fee": "0.002577", + "tid": 808761698686774, + "cloid": "0x00000000000000000000001603000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111595.0", + "sz": "0.00011", + "side": "B", + "time": 1761074708459, + "startPosition": "-316.27239", + "dir": "Close Short", + "closedPnl": "0.130108", + "hash": "0x3ed192ab94b31ceb404b042dedfdd402023700912fb63bbde29a3dfe53b6f6d5", + "oid": 208532942070, + "crossed": true, + "fee": "0.002577", + "tid": 982405405248495, + "cloid": "0x00000000000000000000001603000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111596.0", + "sz": "0.0011", + "side": "B", + "time": 1761074708459, + "startPosition": "-316.27228", + "dir": "Close Short", + "closedPnl": "1.29998", + "hash": "0x3ed192ab94b31ceb404b042dedfdd402023700912fb63bbde29a3dfe53b6f6d5", + "oid": 208532942070, + "crossed": true, + "fee": "0.025778", + "tid": 341408310443231, + "cloid": "0x00000000000000000000001603000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111596.0", + "sz": "0.00011", + "side": "B", + "time": 1761074708459, + "startPosition": "-316.27118", + "dir": "Close Short", + "closedPnl": "0.129998", + "hash": "0x3ed192ab94b31ceb404b042dedfdd402023700912fb63bbde29a3dfe53b6f6d5", + "oid": 208532942070, + "crossed": true, + "fee": "0.002577", + "tid": 959364056444881, + "cloid": "0x00000000000000000000001603000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111597.0", + "sz": "0.00014", + "side": "B", + "time": 1761074708459, + "startPosition": "-316.27107", + "dir": "Close Short", + "closedPnl": "0.165312", + "hash": "0x3ed192ab94b31ceb404b042dedfdd402023700912fb63bbde29a3dfe53b6f6d5", + "oid": 208532942070, + "crossed": true, + "fee": "0.00328", + "tid": 927028665905092, + "cloid": "0x00000000000000000000001603000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111597.0", + "sz": "0.00011", + "side": "B", + "time": 1761074708459, + "startPosition": "-316.27093", + "dir": "Close Short", + "closedPnl": "0.129888", + "hash": "0x3ed192ab94b31ceb404b042dedfdd402023700912fb63bbde29a3dfe53b6f6d5", + "oid": 208532942070, + "crossed": true, + "fee": "0.002577", + "tid": 600387443661887, + "cloid": "0x00000000000000000000001603000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111597.0", + "sz": "0.0855", + "side": "B", + "time": 1761074708459, + "startPosition": "-316.27082", + "dir": "Close Short", + "closedPnl": "100.9584", + "hash": "0x3ed192ab94b31ceb404b042dedfdd402023700912fb63bbde29a3dfe53b6f6d5", + "oid": 208532942070, + "crossed": true, + "fee": "2.003724", + "tid": 522155606512597, + "cloid": "0x00000000000000000000001603000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.08009", + "side": "B", + "time": 1761074710380, + "startPosition": "-316.18532", + "dir": "Close Short", + "closedPnl": "95.130902", + "hash": "0x11c5cb4ad7220770133f042dedfdec02037e003072252642b58e769d9625e15a", + "oid": 208532972889, + "crossed": true, + "fee": "1.876821", + "tid": 848884439861849, + "cloid": "0x00000000000000000000001603000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.00947", + "side": "B", + "time": 1761074710380, + "startPosition": "-316.10523", + "dir": "Close Short", + "closedPnl": "11.248466", + "hash": "0x11c5cb4ad7220770133f042dedfdec02037e003072252642b58e769d9625e15a", + "oid": 208532972889, + "crossed": true, + "fee": "0.221919", + "tid": 704803775125762, + "cloid": "0x00000000000000000000001603000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.0002", + "side": "B", + "time": 1761074711566, + "startPosition": "-316.09576", + "dir": "Close Short", + "closedPnl": "0.23756", + "hash": "0xfc452179ed049d11fdbe042dedfdf8020150005f8807bbe4a00dccccac0876fc", + "oid": 208532984574, + "crossed": true, + "fee": "0.004686", + "tid": 989547374193905, + "cloid": "0x00000000000000000000001603000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.08936", + "side": "B", + "time": 1761074711566, + "startPosition": "-316.09556", + "dir": "Close Short", + "closedPnl": "106.141808", + "hash": "0xfc452179ed049d11fdbe042dedfdf8020150005f8807bbe4a00dccccac0876fc", + "oid": 208532984574, + "crossed": true, + "fee": "2.094053", + "tid": 171255282703024, + "cloid": "0x00000000000000000000001603000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.02108", + "side": "B", + "time": 1761074712837, + "startPosition": "-316.0062", + "dir": "Close Short", + "closedPnl": "25.038824", + "hash": "0x8daa62491c57bbc78f24042dedfe080202bd002eb75ada9931730d9bdb5b95b2", + "oid": 208532992227, + "crossed": true, + "fee": "0.493986", + "tid": 48914559094596, + "cloid": "0x00000000000000000000001603000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.06848", + "side": "B", + "time": 1761074712837, + "startPosition": "-315.98512", + "dir": "Close Short", + "closedPnl": "81.340544", + "hash": "0x8daa62491c57bbc78f24042dedfe080202bd002eb75ada9931730d9bdb5b95b2", + "oid": 208532992227, + "crossed": true, + "fee": "1.604753", + "tid": 176082349640560, + "cloid": "0x00000000000000000000001603000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.08957", + "side": "B", + "time": 1761074714972, + "startPosition": "-315.91664", + "dir": "Close Short", + "closedPnl": "106.391246", + "hash": "0x424e339e8992b0c043c7042dedfe2802041100842495cf92e616def148968aaa", + "oid": 208533010540, + "crossed": true, + "fee": "2.098974", + "tid": 1066848433963726, + "cloid": "0x00000000000000000000001603000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111596.0", + "sz": "0.08957", + "side": "B", + "time": 1761074725505, + "startPosition": "-315.82707", + "dir": "Close Short", + "closedPnl": "105.853826", + "hash": "0x4f75f25df4ec070750ef042dedfea30209e700438fef25d9f33e9db0b3efe0f1", + "oid": 208533146256, + "crossed": true, + "fee": "2.099087", + "tid": 553045760602483, + "cloid": "0x00000000000000000000001603000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111592.0", + "sz": "0.08957", + "side": "B", + "time": 1761074729284, + "startPosition": "-315.7375", + "dir": "Close Short", + "closedPnl": "106.212106", + "hash": "0x048356d54f6bf62305fd042dedfed102046900baea6f14f5a84c02280e6fd00d", + "oid": 208533192987, + "crossed": true, + "fee": "2.099012", + "tid": 9332338019391, + "cloid": "0x00000000000000000000001603000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111607.0", + "sz": "0.00011", + "side": "B", + "time": 1761074737369, + "startPosition": "-315.64793", + "dir": "Close Short", + "closedPnl": "0.128788", + "hash": "0xb3724b3d1d8d308db4ec042dedff2f0203450022b8804f5f573af68fdc810a78", + "oid": 208533300122, + "crossed": true, + "fee": "0.002578", + "tid": 106659846321130, + "cloid": "0x00000000000000000000001603000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111608.0", + "sz": "0.00011", + "side": "B", + "time": 1761074737369, + "startPosition": "-315.64782", + "dir": "Close Short", + "closedPnl": "0.128678", + "hash": "0xb3724b3d1d8d308db4ec042dedff2f0203450022b8804f5f573af68fdc810a78", + "oid": 208533300122, + "crossed": true, + "fee": "0.002578", + "tid": 216077813964862, + "cloid": "0x00000000000000000000001603000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111609.0", + "sz": "0.00011", + "side": "B", + "time": 1761074737369, + "startPosition": "-315.64771", + "dir": "Close Short", + "closedPnl": "0.128568", + "hash": "0xb3724b3d1d8d308db4ec042dedff2f0203450022b8804f5f573af68fdc810a78", + "oid": 208533300122, + "crossed": true, + "fee": "0.002578", + "tid": 116935149882643, + "cloid": "0x00000000000000000000001603000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111610.0", + "sz": "0.00014", + "side": "B", + "time": 1761074737369, + "startPosition": "-315.6476", + "dir": "Close Short", + "closedPnl": "0.163492", + "hash": "0xb3724b3d1d8d308db4ec042dedff2f0203450022b8804f5f573af68fdc810a78", + "oid": 208533300122, + "crossed": true, + "fee": "0.003281", + "tid": 792195703242228, + "cloid": "0x00000000000000000000001603000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111610.0", + "sz": "0.00011", + "side": "B", + "time": 1761074737369, + "startPosition": "-315.64746", + "dir": "Close Short", + "closedPnl": "0.128458", + "hash": "0xb3724b3d1d8d308db4ec042dedff2f0203450022b8804f5f573af68fdc810a78", + "oid": 208533300122, + "crossed": true, + "fee": "0.002578", + "tid": 1085889940607626, + "cloid": "0x00000000000000000000001603000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111610.0", + "sz": "0.00089", + "side": "B", + "time": 1761074737369, + "startPosition": "-315.64735", + "dir": "Close Short", + "closedPnl": "1.039342", + "hash": "0xb3724b3d1d8d308db4ec042dedff2f0203450022b8804f5f573af68fdc810a78", + "oid": 208533300122, + "crossed": true, + "fee": "0.020859", + "tid": 225278863767060, + "cloid": "0x00000000000000000000001603000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111611.0", + "sz": "0.00011", + "side": "B", + "time": 1761074737369, + "startPosition": "-315.64646", + "dir": "Close Short", + "closedPnl": "0.128348", + "hash": "0xb3724b3d1d8d308db4ec042dedff2f0203450022b8804f5f573af68fdc810a78", + "oid": 208533300122, + "crossed": true, + "fee": "0.002578", + "tid": 264693577831476, + "cloid": "0x00000000000000000000001603000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111611.0", + "sz": "0.08799", + "side": "B", + "time": 1761074737369, + "startPosition": "-315.64635", + "dir": "Close Short", + "closedPnl": "102.666732", + "hash": "0xb3724b3d1d8d308db4ec042dedff2f0203450022b8804f5f573af68fdc810a78", + "oid": 208533300122, + "crossed": true, + "fee": "2.062336", + "tid": 239710474447622, + "cloid": "0x00000000000000000000001603000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111615.0", + "sz": "0.08955", + "side": "B", + "time": 1761074740466, + "startPosition": "-315.55836", + "dir": "Close Short", + "closedPnl": "104.12874", + "hash": "0x381f325777c98f9a3998042dedff530204d5003d12ccae6cdbe7ddaa36cd6984", + "oid": 208533340236, + "crossed": true, + "fee": "2.098975", + "tid": 552880802289027, + "cloid": "0x00000000000000000000001603000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111644.0", + "sz": "0.04092", + "side": "B", + "time": 1761074745427, + "startPosition": "-315.46881", + "dir": "Close Short", + "closedPnl": "46.395096", + "hash": "0x1c18e77da82b32c11d92042dedff8c0202ee0063432e5193bfe192d0672f0cab", + "oid": 208533385340, + "crossed": true, + "fee": "0.959379", + "tid": 976135170341687, + "cloid": "0x00000000000000000000001603000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111644.0", + "sz": "0.04862", + "side": "B", + "time": 1761074745427, + "startPosition": "-315.42789", + "dir": "Close Short", + "closedPnl": "55.125356", + "hash": "0x1c18e77da82b32c11d92042dedff8c0202ee0063432e5193bfe192d0672f0cab", + "oid": 208533385340, + "crossed": true, + "fee": "1.139907", + "tid": 1088118986246217, + "cloid": "0x00000000000000000000001603000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111656.0", + "sz": "0.01808", + "side": "B", + "time": 1761074748155, + "startPosition": "-315.37927", + "dir": "Close Short", + "closedPnl": "20.282144", + "hash": "0x950ec6113e18dfcf9688042dedffae02047b00f6d91bfea138d77163fd1cb9ba", + "oid": 208533418501, + "crossed": true, + "fee": "0.423935", + "tid": 468405218539675, + "cloid": "0x00000000000000000000001603000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111656.0", + "sz": "0.07144", + "side": "B", + "time": 1761074748155, + "startPosition": "-315.36119", + "dir": "Close Short", + "closedPnl": "80.141392", + "hash": "0x950ec6113e18dfcf9688042dedffae02047b00f6d91bfea138d77163fd1cb9ba", + "oid": 208533418501, + "crossed": true, + "fee": "1.675107", + "tid": 627470825920221, + "cloid": "0x00000000000000000000001603000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111661.0", + "sz": "0.03852", + "side": "B", + "time": 1761074759323, + "startPosition": "-315.28975", + "dir": "Close Short", + "closedPnl": "43.019136", + "hash": "0x7d1ba6cec1255fd47e95042dee003c02038e00b45c287ea620e45221802939bf", + "oid": 208533542975, + "crossed": true, + "fee": "0.903248", + "tid": 48273334531393, + "cloid": "0x00000000000000000000001603000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111661.0", + "sz": "0.05099", + "side": "B", + "time": 1761074759323, + "startPosition": "-315.25123", + "dir": "Close Short", + "closedPnl": "56.945632", + "hash": "0x7d1ba6cec1255fd47e95042dee003c02038e00b45c287ea620e45221802939bf", + "oid": 208533542975, + "crossed": true, + "fee": "1.195654", + "tid": 320650097113329, + "cloid": "0x00000000000000000000001603000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111661.0", + "sz": "0.00103", + "side": "B", + "time": 1761074762758, + "startPosition": "-315.20024", + "dir": "Close Short", + "closedPnl": "1.150304", + "hash": "0xf8352c7f928e299cf9ae042dee006802053800652d81486f9bfdd7d251820387", + "oid": 208533575581, + "crossed": true, + "fee": "0.024152", + "tid": 942528385626366, + "cloid": "0x00000000000000000000001603000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111661.0", + "sz": "0.08848", + "side": "B", + "time": 1761074762758, + "startPosition": "-315.19921", + "dir": "Close Short", + "closedPnl": "98.814464", + "hash": "0xf8352c7f928e299cf9ae042dee006802053800652d81486f9bfdd7d251820387", + "oid": 208533575581, + "crossed": true, + "fee": "2.07475", + "tid": 1005935439862008, + "cloid": "0x00000000000000000000001603000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111665.0", + "sz": "0.00039", + "side": "B", + "time": 1761074765556, + "startPosition": "-315.11073", + "dir": "Close Short", + "closedPnl": "0.433992", + "hash": "0x72a7f8f84174be497421042dee009002043700dddc77dd1b1670a44b00789834", + "oid": 208533604985, + "crossed": true, + "fee": "0.009145", + "tid": 854725552736769, + "cloid": "0x00000000000000000000001603000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111665.0", + "sz": "0.00014", + "side": "B", + "time": 1761074765556, + "startPosition": "-315.11034", + "dir": "Close Short", + "closedPnl": "0.155792", + "hash": "0x72a7f8f84174be497421042dee009002043700dddc77dd1b1670a44b00789834", + "oid": 208533604985, + "crossed": true, + "fee": "0.003282", + "tid": 45614893975885, + "cloid": "0x00000000000000000000001603000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111665.0", + "sz": "0.00011", + "side": "B", + "time": 1761074765556, + "startPosition": "-315.1102", + "dir": "Close Short", + "closedPnl": "0.122408", + "hash": "0x72a7f8f84174be497421042dee009002043700dddc77dd1b1670a44b00789834", + "oid": 208533604985, + "crossed": true, + "fee": "0.002579", + "tid": 245064987762624, + "cloid": "0x00000000000000000000001603000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111665.0", + "sz": "0.00842", + "side": "B", + "time": 1761074765556, + "startPosition": "-315.11009", + "dir": "Close Short", + "closedPnl": "9.369776", + "hash": "0x72a7f8f84174be497421042dee009002043700dddc77dd1b1670a44b00789834", + "oid": 208533604985, + "crossed": true, + "fee": "0.197446", + "tid": 99674608966621, + "cloid": "0x00000000000000000000001603000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111666.0", + "sz": "0.00011", + "side": "B", + "time": 1761074765556, + "startPosition": "-315.10167", + "dir": "Close Short", + "closedPnl": "0.122298", + "hash": "0x72a7f8f84174be497421042dee009002043700dddc77dd1b1670a44b00789834", + "oid": 208533604985, + "crossed": true, + "fee": "0.002579", + "tid": 460059940722493, + "cloid": "0x00000000000000000000001603000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111666.0", + "sz": "0.01684", + "side": "B", + "time": 1761074765556, + "startPosition": "-315.10156", + "dir": "Close Short", + "closedPnl": "18.722712", + "hash": "0x72a7f8f84174be497421042dee009002043700dddc77dd1b1670a44b00789834", + "oid": 208533604985, + "crossed": true, + "fee": "0.394895", + "tid": 1111257618895642, + "cloid": "0x00000000000000000000001603000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.00011", + "side": "B", + "time": 1761074765556, + "startPosition": "-315.08472", + "dir": "Close Short", + "closedPnl": "0.122188", + "hash": "0x72a7f8f84174be497421042dee009002043700dddc77dd1b1670a44b00789834", + "oid": 208533604985, + "crossed": true, + "fee": "0.002579", + "tid": 24479691735093, + "cloid": "0x00000000000000000000001603000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.00106", + "side": "B", + "time": 1761074765556, + "startPosition": "-315.08461", + "dir": "Close Short", + "closedPnl": "1.177448", + "hash": "0x72a7f8f84174be497421042dee009002043700dddc77dd1b1670a44b00789834", + "oid": 208533604985, + "crossed": true, + "fee": "0.024857", + "tid": 462711682258455, + "cloid": "0x00000000000000000000001603000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.00098", + "side": "B", + "time": 1761074765556, + "startPosition": "-315.08355", + "dir": "Close Short", + "closedPnl": "1.088584", + "hash": "0x72a7f8f84174be497421042dee009002043700dddc77dd1b1670a44b00789834", + "oid": 208533604985, + "crossed": true, + "fee": "0.022981", + "tid": 596661550209522, + "cloid": "0x00000000000000000000001603000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.02526", + "side": "B", + "time": 1761074765556, + "startPosition": "-315.08257", + "dir": "Close Short", + "closedPnl": "28.058808", + "hash": "0x72a7f8f84174be497421042dee009002043700dddc77dd1b1670a44b00789834", + "oid": 208533604985, + "crossed": true, + "fee": "0.592348", + "tid": 95645654465232, + "cloid": "0x00000000000000000000001603000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111668.0", + "sz": "0.00011", + "side": "B", + "time": 1761074765556, + "startPosition": "-315.05731", + "dir": "Close Short", + "closedPnl": "0.122078", + "hash": "0x72a7f8f84174be497421042dee009002043700dddc77dd1b1670a44b00789834", + "oid": 208533604985, + "crossed": true, + "fee": "0.002579", + "tid": 629613835028481, + "cloid": "0x00000000000000000000001603000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111668.0", + "sz": "0.03368", + "side": "B", + "time": 1761074765556, + "startPosition": "-315.0572", + "dir": "Close Short", + "closedPnl": "37.378064", + "hash": "0x72a7f8f84174be497421042dee009002043700dddc77dd1b1670a44b00789834", + "oid": 208533604985, + "crossed": true, + "fee": "0.789805", + "tid": 444487450691483, + "cloid": "0x00000000000000000000001603000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111669.0", + "sz": "0.00014", + "side": "B", + "time": 1761074765556, + "startPosition": "-315.02352", + "dir": "Close Short", + "closedPnl": "0.155232", + "hash": "0x72a7f8f84174be497421042dee009002043700dddc77dd1b1670a44b00789834", + "oid": 208533604985, + "crossed": true, + "fee": "0.003283", + "tid": 885135899338556, + "cloid": "0x00000000000000000000001603000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111669.0", + "sz": "0.00011", + "side": "B", + "time": 1761074765556, + "startPosition": "-315.02338", + "dir": "Close Short", + "closedPnl": "0.121968", + "hash": "0x72a7f8f84174be497421042dee009002043700dddc77dd1b1670a44b00789834", + "oid": 208533604985, + "crossed": true, + "fee": "0.002579", + "tid": 414429969962395, + "cloid": "0x00000000000000000000001603000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111669.0", + "sz": "0.00205", + "side": "B", + "time": 1761074765556, + "startPosition": "-315.02327", + "dir": "Close Short", + "closedPnl": "2.27304", + "hash": "0x72a7f8f84174be497421042dee009002043700dddc77dd1b1670a44b00789834", + "oid": 208533604985, + "crossed": true, + "fee": "0.048073", + "tid": 77298300064938, + "cloid": "0x00000000000000000000001603000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111664.0", + "sz": "0.08951", + "side": "B", + "time": 1761074767709, + "startPosition": "-315.02122", + "dir": "Close Short", + "closedPnl": "99.696238", + "hash": "0xcac1ef3a6077e084cc3b042dee00ad021056001ffb7aff566e8a9a8d1f7bba6f", + "oid": 208533642558, + "crossed": true, + "fee": "2.098959", + "tid": 532468053989430, + "cloid": "0x00000000000000000000001603000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111671.0", + "sz": "0.08951", + "side": "B", + "time": 1761074770260, + "startPosition": "-314.93171", + "dir": "Close Short", + "closedPnl": "99.069668", + "hash": "0x6792bee7b0aa7de9690c042dee00d102059d00cd4bad9cbb0b5b6a3a6fae57d4", + "oid": 208533685480, + "crossed": true, + "fee": "2.09909", + "tid": 357985973391806, + "cloid": "0x00000000000000000000001603000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111689.0", + "sz": "0.08949", + "side": "B", + "time": 1761074779289, + "startPosition": "-314.8422", + "dir": "Close Short", + "closedPnl": "97.436712", + "hash": "0x2370b0eae293e00924ea042dee01450205d000d07d96fedbc7395c3da197b9f3", + "oid": 208533767591, + "crossed": true, + "fee": "2.09896", + "tid": 938399043863105, + "cloid": "0x00000000000000000000001603000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111700.0", + "sz": "0.08949", + "side": "B", + "time": 1761074787215, + "startPosition": "-314.75271", + "dir": "Close Short", + "closedPnl": "96.452322", + "hash": "0x6f41f8c55aa1e09170bb042dee01a502021900aaf5a4ff63130aa41819a5ba7c", + "oid": 208533835350, + "crossed": true, + "fee": "2.099166", + "tid": 211831137338928, + "cloid": "0x00000000000000000000001603000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111716.0", + "sz": "0.08948", + "side": "B", + "time": 1761074788948, + "startPosition": "-314.66322", + "dir": "Close Short", + "closedPnl": "95.009864", + "hash": "0x62d93419441692266452042dee01bd02075000fedf19b0f806a1df6c031a6c11", + "oid": 208533858859, + "crossed": true, + "fee": "2.099233", + "tid": 606431698260947, + "cloid": "0x00000000000000000000001603000063", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111718.0", + "sz": "0.00011", + "side": "B", + "time": 1761074791987, + "startPosition": "-314.57374", + "dir": "Close Short", + "closedPnl": "0.116578", + "hash": "0xb5dc46c6744734dab756042dee01e502038300ac0f4a53ac59a4f219334b0ec5", + "oid": 208533889561, + "crossed": true, + "fee": "0.00258", + "tid": 428596918960462, + "cloid": "0x00000000000000000000001603000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111719.0", + "sz": "0.00011", + "side": "B", + "time": 1761074791987, + "startPosition": "-314.57363", + "dir": "Close Short", + "closedPnl": "0.116468", + "hash": "0xb5dc46c6744734dab756042dee01e502038300ac0f4a53ac59a4f219334b0ec5", + "oid": 208533889561, + "crossed": true, + "fee": "0.00258", + "tid": 512871761954321, + "cloid": "0x00000000000000000000001603000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111720.0", + "sz": "0.00018", + "side": "B", + "time": 1761074791987, + "startPosition": "-314.57352", + "dir": "Close Short", + "closedPnl": "0.190404", + "hash": "0xb5dc46c6744734dab756042dee01e502038300ac0f4a53ac59a4f219334b0ec5", + "oid": 208533889561, + "crossed": true, + "fee": "0.004223", + "tid": 111051769761880, + "cloid": "0x00000000000000000000001603000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111720.0", + "sz": "0.00014", + "side": "B", + "time": 1761074791987, + "startPosition": "-314.57334", + "dir": "Close Short", + "closedPnl": "0.148092", + "hash": "0xb5dc46c6744734dab756042dee01e502038300ac0f4a53ac59a4f219334b0ec5", + "oid": 208533889561, + "crossed": true, + "fee": "0.003284", + "tid": 1102541023850304, + "cloid": "0x00000000000000000000001603000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111720.0", + "sz": "0.00011", + "side": "B", + "time": 1761074791987, + "startPosition": "-314.5732", + "dir": "Close Short", + "closedPnl": "0.116358", + "hash": "0xb5dc46c6744734dab756042dee01e502038300ac0f4a53ac59a4f219334b0ec5", + "oid": 208533889561, + "crossed": true, + "fee": "0.00258", + "tid": 802247544254646, + "cloid": "0x00000000000000000000001603000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111721.0", + "sz": "0.00011", + "side": "B", + "time": 1761074791987, + "startPosition": "-314.57309", + "dir": "Close Short", + "closedPnl": "0.116248", + "hash": "0xb5dc46c6744734dab756042dee01e502038300ac0f4a53ac59a4f219334b0ec5", + "oid": 208533889561, + "crossed": true, + "fee": "0.00258", + "tid": 305661282318329, + "cloid": "0x00000000000000000000001603000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111722.0", + "sz": "0.00011", + "side": "B", + "time": 1761074791987, + "startPosition": "-314.57298", + "dir": "Close Short", + "closedPnl": "0.116138", + "hash": "0xb5dc46c6744734dab756042dee01e502038300ac0f4a53ac59a4f219334b0ec5", + "oid": 208533889561, + "crossed": true, + "fee": "0.00258", + "tid": 742339953808868, + "cloid": "0x00000000000000000000001603000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111723.0", + "sz": "0.00011", + "side": "B", + "time": 1761074791987, + "startPosition": "-314.57287", + "dir": "Close Short", + "closedPnl": "0.116028", + "hash": "0xb5dc46c6744734dab756042dee01e502038300ac0f4a53ac59a4f219334b0ec5", + "oid": 208533889561, + "crossed": true, + "fee": "0.00258", + "tid": 534088479293737, + "cloid": "0x00000000000000000000001603000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111724.0", + "sz": "0.00014", + "side": "B", + "time": 1761074791987, + "startPosition": "-314.57276", + "dir": "Close Short", + "closedPnl": "0.147532", + "hash": "0xb5dc46c6744734dab756042dee01e502038300ac0f4a53ac59a4f219334b0ec5", + "oid": 208533889561, + "crossed": true, + "fee": "0.003284", + "tid": 960192764179296, + "cloid": "0x00000000000000000000001603000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111724.0", + "sz": "0.00011", + "side": "B", + "time": 1761074791987, + "startPosition": "-314.57262", + "dir": "Close Short", + "closedPnl": "0.115918", + "hash": "0xb5dc46c6744734dab756042dee01e502038300ac0f4a53ac59a4f219334b0ec5", + "oid": 208533889561, + "crossed": true, + "fee": "0.00258", + "tid": 437635466441810, + "cloid": "0x00000000000000000000001603000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111725.0", + "sz": "0.00011", + "side": "B", + "time": 1761074791987, + "startPosition": "-314.57251", + "dir": "Close Short", + "closedPnl": "0.115808", + "hash": "0xb5dc46c6744734dab756042dee01e502038300ac0f4a53ac59a4f219334b0ec5", + "oid": 208533889561, + "crossed": true, + "fee": "0.00258", + "tid": 851346147859064, + "cloid": "0x00000000000000000000001603000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111725.0", + "sz": "0.08813", + "side": "B", + "time": 1761074791987, + "startPosition": "-314.5724", + "dir": "Close Short", + "closedPnl": "92.783264", + "hash": "0xb5dc46c6744734dab756042dee01e502038300ac0f4a53ac59a4f219334b0ec5", + "oid": 208533889561, + "crossed": true, + "fee": "2.067728", + "tid": 495471884319645, + "cloid": "0x00000000000000000000001603000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111731.0", + "sz": "0.08946", + "side": "B", + "time": 1761074793433, + "startPosition": "-314.48427", + "dir": "Close Short", + "closedPnl": "93.646728", + "hash": "0x57e3035623e2fecb595c042dee01f9020329003bbee61d9dfbabaea8e2e6d8b5", + "oid": 208533907349, + "crossed": true, + "fee": "2.099045", + "tid": 595835515283040, + "cloid": "0x00000000000000000000001603000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111731.0", + "sz": "0.08946", + "side": "B", + "time": 1761074795168, + "startPosition": "-314.39481", + "dir": "Close Short", + "closedPnl": "93.646728", + "hash": "0x66850ced6e33bf1367fe042dee020f02072800d30936dde50a4db8402d3798fe", + "oid": 208533934817, + "crossed": true, + "fee": "2.099045", + "tid": 147274133341605, + "cloid": "0x00000000000000000000001603000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111731.0", + "sz": "0.08945", + "side": "B", + "time": 1761074802595, + "startPosition": "-314.30535", + "dir": "Close Short", + "closedPnl": "93.63626", + "hash": "0x73df77549929c3237559042dee026e020a94003a342ce1f517a822a7582d9d0e", + "oid": 208533993812, + "crossed": true, + "fee": "2.09881", + "tid": 826949427121547, + "cloid": "0x00000000000000000000001603000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111731.0", + "sz": "0.08946", + "side": "B", + "time": 1761074804924, + "startPosition": "-314.2159", + "dir": "Close Short", + "closedPnl": "93.646728", + "hash": "0xddaf309f10499d25df28042dee02870204990084ab4cbbf78177dbf1cf4d7710", + "oid": 208534017684, + "crossed": true, + "fee": "2.099045", + "tid": 281264741998546, + "cloid": "0x00000000000000000000001603000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111731.0", + "sz": "0.08946", + "side": "B", + "time": 1761074806750, + "startPosition": "-314.12644", + "dir": "Close Short", + "closedPnl": "93.646728", + "hash": "0x9e303d91e992ed4c9fa9042dee02a00201b9007784960c1e41f8e8e4a896c737", + "oid": 208534037396, + "crossed": true, + "fee": "2.099045", + "tid": 545820451209305, + "cloid": "0x00000000000000000000001603000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111731.0", + "sz": "0.08946", + "side": "B", + "time": 1761074809670, + "startPosition": "-314.03698", + "dir": "Close Short", + "closedPnl": "93.646728", + "hash": "0x66558a22a9da45fe67cf042dee02c602051f000844dd64d00a1e357568de1fe9", + "oid": 208534071476, + "crossed": true, + "fee": "2.099045", + "tid": 378662585351576, + "cloid": "0x00000000000000000000001603000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111716.0", + "sz": "0.08947", + "side": "B", + "time": 1761074813099, + "startPosition": "-313.94752", + "dir": "Close Short", + "closedPnl": "94.999246", + "hash": "0x2709632f95bfa4902883042dee02f30204ec001530b2c362cad20e8254b37e7a", + "oid": 208534112606, + "crossed": true, + "fee": "2.098998", + "tid": 327211859749857, + "cloid": "0x00000000000000000000001603000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111701.0", + "sz": "0.08949", + "side": "B", + "time": 1761074821273, + "startPosition": "-313.85805", + "dir": "Close Short", + "closedPnl": "96.362832", + "hash": "0x0b344baaa4a3352e0cae042dee03650206f900903fa65400aefcf6fd63a70f18", + "oid": 208534190963, + "crossed": true, + "fee": "2.099185", + "tid": 1037082987045466, + "cloid": "0x00000000000000000000001603000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111693.0", + "sz": "0.01181", + "side": "B", + "time": 1761074822678, + "startPosition": "-313.76856", + "dir": "Close Short", + "closedPnl": "12.811488", + "hash": "0x23d0c5db018e565d254a042dee03760211e200c09c81752fc799712dc0823047", + "oid": 208534216839, + "crossed": true, + "fee": "0.277009", + "tid": 136506529036305, + "cloid": "0x00000000000000000000001603000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111693.0", + "sz": "0.07768", + "side": "B", + "time": 1761074822678, + "startPosition": "-313.75675", + "dir": "Close Short", + "closedPnl": "84.267264", + "hash": "0x23d0c5db018e565d254a042dee03760211e200c09c81752fc799712dc0823047", + "oid": 208534216839, + "crossed": true, + "fee": "1.822025", + "tid": 375986909940929, + "cloid": "0x00000000000000000000001603000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111692.0", + "sz": "0.08949", + "side": "B", + "time": 1761074825226, + "startPosition": "-313.67907", + "dir": "Close Short", + "closedPnl": "97.168242", + "hash": "0xb926fb7020659792baa0042dee039a02044c0055bb68b6645cefa6c2df69717d", + "oid": 208534255028, + "crossed": true, + "fee": "2.099016", + "tid": 278825541585373, + "cloid": "0x00000000000000000000001603000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111666.0", + "sz": "0.0895", + "side": "B", + "time": 1761074827668, + "startPosition": "-313.58958", + "dir": "Close Short", + "closedPnl": "99.5061", + "hash": "0x8e273f3c03a8d2458fa0042dee03bd0206b100219eabf11731efea8ec2acac30", + "oid": 208534290893, + "crossed": true, + "fee": "2.098762", + "tid": 865108880120079, + "cloid": "0x00000000000000000000001603000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111647.0", + "sz": "0.08952", + "side": "B", + "time": 1761074829277, + "startPosition": "-313.50008", + "dir": "Close Short", + "closedPnl": "101.229216", + "hash": "0x2524f81017fc8da6269e042dee03cf02076400f5b2ffac78c8eda362d6f06790", + "oid": 208534320285, + "crossed": true, + "fee": "2.098874", + "tid": 928477909489125, + "cloid": "0x00000000000000000000001603000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111646.0", + "sz": "0.08952", + "side": "B", + "time": 1761074832142, + "startPosition": "-313.41056", + "dir": "Close Short", + "closedPnl": "101.318736", + "hash": "0x9a8586caabab70769bff042dee03f30205a300b046ae8f483e4e321d6aaf4a61", + "oid": 208534366017, + "crossed": true, + "fee": "2.098855", + "tid": 184766012588576, + "cloid": "0x00000000000000000000001603000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111620.0", + "sz": "0.08954", + "side": "B", + "time": 1761074836994, + "startPosition": "-313.32104", + "dir": "Close Short", + "closedPnl": "103.669412", + "hash": "0xd59825f005ab1e00d711042dee042f02021700d5a0ae3cd27960d142c4aef7eb", + "oid": 208534417092, + "crossed": true, + "fee": "2.098835", + "tid": 1045620824659494, + "cloid": "0x00000000000000000000001603000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111642.0", + "sz": "0.01995", + "side": "B", + "time": 1761074840480, + "startPosition": "-313.2315", + "dir": "Close Short", + "closedPnl": "22.65921", + "hash": "0x497da1c6d6b60cf04af7042dee04580203c300ac71b92bc2ed464d1995b9e6da", + "oid": 208534461035, + "crossed": true, + "fee": "0.467724", + "tid": 671686288995699, + "cloid": "0x00000000000000000000001603000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111643.0", + "sz": "0.00011", + "side": "B", + "time": 1761074840480, + "startPosition": "-313.21155", + "dir": "Close Short", + "closedPnl": "0.124828", + "hash": "0x497da1c6d6b60cf04af7042dee04580203c300ac71b92bc2ed464d1995b9e6da", + "oid": 208534461035, + "crossed": true, + "fee": "0.002578", + "tid": 443526073325883, + "cloid": "0x00000000000000000000001603000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111644.0", + "sz": "0.00011", + "side": "B", + "time": 1761074840480, + "startPosition": "-313.21144", + "dir": "Close Short", + "closedPnl": "0.124718", + "hash": "0x497da1c6d6b60cf04af7042dee04580203c300ac71b92bc2ed464d1995b9e6da", + "oid": 208534461035, + "crossed": true, + "fee": "0.002578", + "tid": 337831734451982, + "cloid": "0x00000000000000000000001603000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111644.0", + "sz": "0.00014", + "side": "B", + "time": 1761074840480, + "startPosition": "-313.21133", + "dir": "Close Short", + "closedPnl": "0.158732", + "hash": "0x497da1c6d6b60cf04af7042dee04580203c300ac71b92bc2ed464d1995b9e6da", + "oid": 208534461035, + "crossed": true, + "fee": "0.003282", + "tid": 1029917517454921, + "cloid": "0x00000000000000000000001603000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111644.0", + "sz": "0.06922", + "side": "B", + "time": 1761074840480, + "startPosition": "-313.21119", + "dir": "Close Short", + "closedPnl": "78.481636", + "hash": "0x497da1c6d6b60cf04af7042dee04580203c300ac71b92bc2ed464d1995b9e6da", + "oid": 208534461035, + "crossed": true, + "fee": "1.622879", + "tid": 448431318794898, + "cloid": "0x00000000000000000000001603000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.03525", + "side": "B", + "time": 1761074850794, + "startPosition": "-313.14197", + "dir": "Close Short", + "closedPnl": "39.1557", + "hash": "0x7114772733c7929a728e042dee04df0205d9000ccecab16c14dd2279f2cb6c85", + "oid": 208534557723, + "crossed": true, + "fee": "0.826614", + "tid": 915205861063704, + "cloid": "0x00000000000000000000001603000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111669.0", + "sz": "0.05428", + "side": "B", + "time": 1761074850794, + "startPosition": "-313.10672", + "dir": "Close Short", + "closedPnl": "60.185664", + "hash": "0x7114772733c7929a728e042dee04df0205d9000ccecab16c14dd2279f2cb6c85", + "oid": 208534557723, + "crossed": true, + "fee": "1.272892", + "tid": 634587678735348, + "cloid": "0x00000000000000000000001603000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111681.0", + "sz": "0.08065", + "side": "B", + "time": 1761074855658, + "startPosition": "-313.05244", + "dir": "Close Short", + "closedPnl": "88.45692", + "hash": "0x6de87585036accac6f62042dee051f0209a3006a9e6deb7e11b120d7c26ea697", + "oid": 208534614555, + "crossed": true, + "fee": "1.891485", + "tid": 681736641694942, + "cloid": "0x00000000000000000000001603000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111681.0", + "sz": "0.00886", + "side": "B", + "time": 1761074855658, + "startPosition": "-312.97179", + "dir": "Close Short", + "closedPnl": "9.717648", + "hash": "0x6de87585036accac6f62042dee051f0209a3006a9e6deb7e11b120d7c26ea697", + "oid": 208534614555, + "crossed": true, + "fee": "0.207793", + "tid": 972940007268614, + "cloid": "0x00000000000000000000001603000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.08952", + "side": "B", + "time": 1761074864825, + "startPosition": "-312.96293", + "dir": "Close Short", + "closedPnl": "99.438816", + "hash": "0x8c0e22fc33b79a7a8d87042dee058f020bc000e1cebab94c2fd6ce4ef2bb7465", + "oid": 208534721063, + "crossed": true, + "fee": "2.09925", + "tid": 600845306123215, + "cloid": "0x00000000000000000000001603000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.08952", + "side": "B", + "time": 1761074866619, + "startPosition": "-312.87341", + "dir": "Close Short", + "closedPnl": "99.438816", + "hash": "0x5b749ae919530d615cee042dee05a502023c00ceb4562c33ff3d463bd856e74b", + "oid": 208534746907, + "crossed": true, + "fee": "2.09925", + "tid": 126987933668679, + "cloid": "0x00000000000000000000001603000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.08951", + "side": "B", + "time": 1761074869150, + "startPosition": "-312.78389", + "dir": "Close Short", + "closedPnl": "99.427708", + "hash": "0x38ac14be640124553a25042dee05c002055800a3ff044327dc74c0112304fe3f", + "oid": 208534775981, + "crossed": true, + "fee": "2.099015", + "tid": 247590699158787, + "cloid": "0x00000000000000000000001603000084", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.08951", + "side": "B", + "time": 1761074873825, + "startPosition": "-312.69438", + "dir": "Close Short", + "closedPnl": "99.427708", + "hash": "0xeb4263ebcbe91a52ecbc042dee05fa0203e400d166ec39248f0b0f3e8aecf43d", + "oid": 208534812314, + "crossed": true, + "fee": "2.099015", + "tid": 1124560012369291, + "cloid": "0x00000000000000000000001603000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111665.0", + "sz": "0.08951", + "side": "B", + "time": 1761074880225, + "startPosition": "-312.60487", + "dir": "Close Short", + "closedPnl": "99.606728", + "hash": "0x17d1dfa6004730ee194b042dee064b0201c5008b9b4a4fc0bb9a8af8bf4b0ad8", + "oid": 208534868494, + "crossed": true, + "fee": "2.098978", + "tid": 927353020319174, + "cloid": "0x00000000000000000000001603000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111665.0", + "sz": "0.001", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.51536", + "dir": "Close Short", + "closedPnl": "1.1128", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.023449", + "tid": 401412121379211, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111666.0", + "sz": "0.00011", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.51436", + "dir": "Close Short", + "closedPnl": "0.122298", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.002579", + "tid": 233330127834791, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.00011", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.51425", + "dir": "Close Short", + "closedPnl": "0.122188", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.002579", + "tid": 363210080498247, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111668.0", + "sz": "0.00011", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.51414", + "dir": "Close Short", + "closedPnl": "0.122078", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.002579", + "tid": 336115939067479, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111668.0", + "sz": "0.00108", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.51403", + "dir": "Close Short", + "closedPnl": "1.198584", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.025326", + "tid": 386180973954651, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111668.0", + "sz": "0.00112", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.51295", + "dir": "Close Short", + "closedPnl": "1.242976", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.026264", + "tid": 797611580465808, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111669.0", + "sz": "0.00011", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.51183", + "dir": "Close Short", + "closedPnl": "0.121968", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.002579", + "tid": 514557741264497, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111669.0", + "sz": "0.00014", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.51172", + "dir": "Close Short", + "closedPnl": "0.155232", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.003283", + "tid": 611821739054611, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111670.0", + "sz": "0.00011", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.51158", + "dir": "Close Short", + "closedPnl": "0.121858", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.002579", + "tid": 610529286322244, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111670.0", + "sz": "0.00128", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.51147", + "dir": "Close Short", + "closedPnl": "1.417984", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.030016", + "tid": 922934314495231, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111671.0", + "sz": "0.00011", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.51019", + "dir": "Close Short", + "closedPnl": "0.121748", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.002579", + "tid": 592522965607617, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111671.0", + "sz": "0.00106", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.51008", + "dir": "Close Short", + "closedPnl": "1.173208", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.024857", + "tid": 367765157173751, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111672.0", + "sz": "0.00011", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.50902", + "dir": "Close Short", + "closedPnl": "0.121638", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.002579", + "tid": 453698459749335, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111673.0", + "sz": "0.00014", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.50891", + "dir": "Close Short", + "closedPnl": "0.154672", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.003283", + "tid": 384644572032715, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111673.0", + "sz": "0.00111", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.50877", + "dir": "Close Short", + "closedPnl": "1.226328", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.02603", + "tid": 383360773777347, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111673.0", + "sz": "0.00011", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.50766", + "dir": "Close Short", + "closedPnl": "0.121528", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.002579", + "tid": 513727389309283, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111674.0", + "sz": "0.00011", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.50755", + "dir": "Close Short", + "closedPnl": "0.121418", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.002579", + "tid": 360908420110210, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111675.0", + "sz": "0.00011", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.50744", + "dir": "Close Short", + "closedPnl": "0.121308", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.002579", + "tid": 648169079487922, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111676.0", + "sz": "0.00011", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.50733", + "dir": "Close Short", + "closedPnl": "0.121198", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.002579", + "tid": 123495246176615, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111677.0", + "sz": "0.00011", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.50722", + "dir": "Close Short", + "closedPnl": "0.121088", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "0.002579", + "tid": 5724861866554, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111677.0", + "sz": "0.08126", + "side": "B", + "time": 1761074885917, + "startPosition": "-312.50711", + "dir": "Close Short", + "closedPnl": "89.451008", + "hash": "0xc811ba449dabea41c98b042dee069702058f002a38af09136bda65975cafc42c", + "oid": 208534925175, + "crossed": true, + "fee": "1.905723", + "tid": 469712737597756, + "cloid": "0x00000000000000000000001603000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111669.0", + "sz": "0.0895", + "side": "B", + "time": 1761074888401, + "startPosition": "-312.42585", + "dir": "Close Short", + "closedPnl": "99.2376", + "hash": "0xc41aa8ac75fe4b49c594042dee06b70203bc009210f16a1b67e353ff34f22534", + "oid": 208534969401, + "crossed": true, + "fee": "2.098818", + "tid": 43775555516378, + "cloid": "0x00000000000000000000001603000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111665.0", + "sz": "0.00087", + "side": "B", + "time": 1761074895391, + "startPosition": "-312.33635", + "dir": "Close Short", + "closedPnl": "0.968136", + "hash": "0x78e8a5575a1da3b57a62042dee07140204bd003cf510c2871cb150aa19117da0", + "oid": 208535051184, + "crossed": true, + "fee": "0.020401", + "tid": 434740844643390, + "cloid": "0x00000000000000000000001603000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111669.0", + "sz": "0.08864", + "side": "B", + "time": 1761074895391, + "startPosition": "-312.33548", + "dir": "Close Short", + "closedPnl": "98.284032", + "hash": "0x78e8a5575a1da3b57a62042dee07140204bd003cf510c2871cb150aa19117da0", + "oid": 208535051184, + "crossed": true, + "fee": "2.078651", + "tid": 132580223557082, + "cloid": "0x00000000000000000000001603000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.0063", + "side": "A", + "time": 1761074898047, + "startPosition": "-4121.302", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 208535032714, + "crossed": false, + "fee": "0.000705", + "tid": 712048365080976, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111671.0", + "sz": "0.00092", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24684", + "dir": "Close Short", + "closedPnl": "1.018256", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.021574", + "tid": 916769464183076, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111671.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24592", + "dir": "Close Short", + "closedPnl": "0.121748", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.002579", + "tid": 964263617857186, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111672.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24581", + "dir": "Close Short", + "closedPnl": "0.121638", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.002579", + "tid": 145939520979434, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111673.0", + "sz": "0.00014", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.2457", + "dir": "Close Short", + "closedPnl": "0.154672", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.003283", + "tid": 680501737402902, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111673.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24556", + "dir": "Close Short", + "closedPnl": "0.121528", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.002579", + "tid": 802799196296075, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111674.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24545", + "dir": "Close Short", + "closedPnl": "0.121418", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.002579", + "tid": 1004140297164229, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111675.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24534", + "dir": "Close Short", + "closedPnl": "0.121308", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.002579", + "tid": 136662076573825, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111676.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24523", + "dir": "Close Short", + "closedPnl": "0.121198", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.002579", + "tid": 683323994795471, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111677.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24512", + "dir": "Close Short", + "closedPnl": "0.121088", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.002579", + "tid": 289143125808335, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111678.0", + "sz": "0.00014", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24501", + "dir": "Close Short", + "closedPnl": "0.153972", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.003283", + "tid": 1016902799745876, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111678.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24487", + "dir": "Close Short", + "closedPnl": "0.120978", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.002579", + "tid": 487419692653020, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111679.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24476", + "dir": "Close Short", + "closedPnl": "0.120868", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.002579", + "tid": 117032420055584, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111680.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24465", + "dir": "Close Short", + "closedPnl": "0.120758", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.002579", + "tid": 730187276558718, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111681.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24454", + "dir": "Close Short", + "closedPnl": "0.120648", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.002579", + "tid": 389349761944874, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111682.0", + "sz": "0.00014", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24443", + "dir": "Close Short", + "closedPnl": "0.153412", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.003283", + "tid": 377577283909193, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111682.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24429", + "dir": "Close Short", + "closedPnl": "0.120538", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.002579", + "tid": 98546862457527, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111683.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24418", + "dir": "Close Short", + "closedPnl": "0.120428", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.002579", + "tid": 846176598131234, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111684.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24407", + "dir": "Close Short", + "closedPnl": "0.120318", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.002579", + "tid": 355312870353602, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111685.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24396", + "dir": "Close Short", + "closedPnl": "0.120208", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.002579", + "tid": 669614677039455, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111686.0", + "sz": "0.00014", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24385", + "dir": "Close Short", + "closedPnl": "0.152852", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.003283", + "tid": 158776348673375, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111686.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24371", + "dir": "Close Short", + "closedPnl": "0.120098", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.002579", + "tid": 822358695430781, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111687.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.2436", + "dir": "Close Short", + "closedPnl": "0.119988", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.002579", + "tid": 68492943412390, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111688.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24349", + "dir": "Close Short", + "closedPnl": "0.119878", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.002579", + "tid": 29012265050029, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111689.0", + "sz": "0.00044", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24338", + "dir": "Close Short", + "closedPnl": "0.479072", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.01032", + "tid": 410255551729372, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111689.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24294", + "dir": "Close Short", + "closedPnl": "0.119768", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.00258", + "tid": 142361607891061, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111690.0", + "sz": "0.00014", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24283", + "dir": "Close Short", + "closedPnl": "0.152292", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.003283", + "tid": 995280974559017, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111690.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24269", + "dir": "Close Short", + "closedPnl": "0.119658", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.00258", + "tid": 729078147995443, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111690.0", + "sz": "0.00089", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24258", + "dir": "Close Short", + "closedPnl": "0.968142", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.020874", + "tid": 205025561016994, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111690.0", + "sz": "0.015", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.24169", + "dir": "Close Short", + "closedPnl": "16.317", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.351823", + "tid": 268600415466867, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111691.0", + "sz": "0.00017", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.22669", + "dir": "Close Short", + "closedPnl": "0.184756", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.003987", + "tid": 1035038638484881, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111691.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.22652", + "dir": "Close Short", + "closedPnl": "0.119548", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.00258", + "tid": 373662898969927, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111691.0", + "sz": "0.00896", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.22641", + "dir": "Close Short", + "closedPnl": "9.737728", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.210157", + "tid": 921816842370977, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111692.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.21745", + "dir": "Close Short", + "closedPnl": "0.119438", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.00258", + "tid": 350695736991594, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111693.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.21734", + "dir": "Close Short", + "closedPnl": "0.119328", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.00258", + "tid": 444771402343332, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111694.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.21723", + "dir": "Close Short", + "closedPnl": "0.119218", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.00258", + "tid": 940870317519162, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111695.0", + "sz": "0.00014", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.21712", + "dir": "Close Short", + "closedPnl": "0.151592", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.003283", + "tid": 480737585044975, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111695.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.21698", + "dir": "Close Short", + "closedPnl": "0.119108", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.00258", + "tid": 1058938560259703, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111696.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.21687", + "dir": "Close Short", + "closedPnl": "0.118998", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.00258", + "tid": 651471973662345, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111697.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.21676", + "dir": "Close Short", + "closedPnl": "0.118888", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.00258", + "tid": 608181571871345, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111698.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.21665", + "dir": "Close Short", + "closedPnl": "0.118778", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.00258", + "tid": 1035340975602481, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111699.0", + "sz": "0.00014", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.21654", + "dir": "Close Short", + "closedPnl": "0.151032", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.003283", + "tid": 443688938827297, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111699.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.2164", + "dir": "Close Short", + "closedPnl": "0.118668", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.00258", + "tid": 405646610947315, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111700.0", + "sz": "0.02", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.21629", + "dir": "Close Short", + "closedPnl": "21.556", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.469139", + "tid": 655195602613894, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111700.0", + "sz": "0.00011", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.19629", + "dir": "Close Short", + "closedPnl": "0.118558", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.00258", + "tid": 758974521486082, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111700.0", + "sz": "0.008", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.19618", + "dir": "Close Short", + "closedPnl": "8.6224", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.187655", + "tid": 699701558765797, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111701.0", + "sz": "0.03085", + "side": "B", + "time": 1761074898446, + "startPosition": "-312.18818", + "dir": "Close Short", + "closedPnl": "33.21928", + "hash": "0x794df9f7e05edc3d7ac7042dee073c020ff900dd7b51fb0f1d16a54a9f52b628", + "oid": 208535100175, + "crossed": true, + "fee": "0.723654", + "tid": 73941418792134, + "cloid": "0x00000000000000000000001603000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.178", + "side": "A", + "time": 1761074898783, + "startPosition": "-4121.3083", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa10e571a991bd0aba288042dee07400151006f00341eef7d44d7026d581faa96", + "oid": 208535032714, + "crossed": false, + "fee": "0.019937", + "tid": 237031427532885, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.148", + "side": "A", + "time": 1761074898783, + "startPosition": "-4121.4863", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x06b54450cc3e55a3082f042dee07400153005c3667317475aa7defa38b322f8d", + "oid": 208535032714, + "crossed": false, + "fee": "0.016577", + "tid": 614124929962758, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.148", + "side": "A", + "time": 1761074898783, + "startPosition": "-4121.6343", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb988baebe5cf981ebb02042dee0740015400d2d180c2b6f05d51663ea4c37209", + "oid": 208535032714, + "crossed": false, + "fee": "0.016577", + "tid": 544240572173090, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.183", + "side": "A", + "time": 1761074898783, + "startPosition": "-4121.7823", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6c5c3186ff50da9a6dd5042dee0740015500496c9a53f96c1024dcd9be54b485", + "oid": 208535032714, + "crossed": false, + "fee": "0.020498", + "tid": 677022140356463, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.148", + "side": "A", + "time": 1761074898783, + "startPosition": "-4121.9653", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd2031ebd32735f91d37c042dee074001570036a2cd767e6375cbca0ff177397c", + "oid": 208535032714, + "crossed": false, + "fee": "0.016577", + "tid": 229781952430577, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.148", + "side": "A", + "time": 1761074898783, + "startPosition": "-4122.1133", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x84d695584c04a20d8650042dee0740015800ad3de707c0df289f40ab0b087bf8", + "oid": 208535032714, + "crossed": false, + "fee": "0.016577", + "tid": 537106419240726, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.183", + "side": "A", + "time": 1761074898783, + "startPosition": "-4122.2613", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe6c0249d7ec3bfd9e839042dee07400164003c8319c6deab8a88cff03dc799c4", + "oid": 208535032714, + "crossed": false, + "fee": "0.020498", + "tid": 830123396138394, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.148", + "side": "A", + "time": 1761074898783, + "startPosition": "-4122.4443", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x4c6711d3b1e644d14de0042dee074001660029b94ce963a3f02fbd2670ea1ebb", + "oid": 208535032714, + "crossed": false, + "fee": "0.016577", + "tid": 985355535620808, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.183", + "side": "A", + "time": 1761074898861, + "startPosition": "-4122.5923", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x18f959e5cf81c9101a73042dee074102038b00cb6a84e7e2bcc205388e85a2fa", + "oid": 208535032714, + "crossed": false, + "fee": "0.020498", + "tid": 411735926719018, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.183", + "side": "A", + "time": 1761074898861, + "startPosition": "-4122.7753", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x7ea0471c02a44e07801a042dee074102038d00019da76cd92268f26ec1a827f2", + "oid": 208535032714, + "crossed": false, + "fee": "0.020498", + "tid": 176391588265401, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.148", + "side": "A", + "time": 1761074898861, + "startPosition": "-4122.9583", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe447345235c6d2fee5c0042dee074102038f0037d0c9f1d0880fdfa4f4caace9", + "oid": 208535032714, + "crossed": false, + "fee": "0.016577", + "tid": 612694716431862, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.125", + "side": "A", + "time": 1761074898861, + "startPosition": "-4123.1063", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x49ee218868e957f64b67042dee0741020391006e03ec76c8edb6ccdb27ed31e0", + "oid": 208535032714, + "crossed": false, + "fee": "0.014001", + "tid": 552846132435893, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "1.499", + "side": "A", + "time": 1761074898861, + "startPosition": "-4123.2313", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x153bfbf4cf2e61e516b5042dee074102039500da6a2180b7b904a7478e223bcf", + "oid": 208535032714, + "crossed": false, + "fee": "0.167904", + "tid": 866666416764616, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.183", + "side": "A", + "time": 1761074898979, + "startPosition": "-4124.7303", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x80e9ddbc46f82fa38263042dee074202055500a1e1fb4e7524b2890f05fc098e", + "oid": 208535032714, + "crossed": false, + "fee": "0.020498", + "tid": 790896192624846, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.148", + "side": "A", + "time": 1761074898979, + "startPosition": "-4124.9133", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x33bd54576089721f3537042dee0742020556003cfb8c90f1d785ffaa1f8d4c09", + "oid": 208535032714, + "crossed": false, + "fee": "0.016577", + "tid": 232033969502671, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.148", + "side": "A", + "time": 1761074898979, + "startPosition": "-4125.0613", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe690caf27a1ab49ae80a042dee074202055700d8151dd36c8a597645391e8e85", + "oid": 208535032714, + "crossed": false, + "fee": "0.016577", + "tid": 1014457940601246, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.148", + "side": "A", + "time": 1761074898979, + "startPosition": "-4125.2093", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x9964418d93abf7169add042dee074202055800732eaf15e83d2cece052afd101", + "oid": 208535032714, + "crossed": false, + "fee": "0.016577", + "tid": 1031541803226557, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.124", + "side": "A", + "time": 1761074898979, + "startPosition": "-4125.3573", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x4c37b828ad3d39924db1042dee0742020559000e48305864f000637b6c31137c", + "oid": 208535032714, + "crossed": false, + "fee": "0.013889", + "tid": 437204886768281, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.183", + "side": "A", + "time": 1761074898979, + "startPosition": "-4125.4813", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xff0b2ec3c6ce7c0d0084042dee074202055a00a961c19ae0a2d3da1685c255f8", + "oid": 208535032714, + "crossed": false, + "fee": "0.020498", + "tid": 917858880106711, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.148", + "side": "A", + "time": 1761074898979, + "startPosition": "-4125.6643", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb1dea55ee05fbe89b358042dee074202055b00447b52dd5b55a750b19f539874", + "oid": 208535032714, + "crossed": false, + "fee": "0.016577", + "tid": 932431631268436, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.148", + "side": "A", + "time": 1761074898979, + "startPosition": "-4125.8123", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x64b21bf9f9e10105662b042dee074202055c00df94e41fd7087ac74cb8e4daf0", + "oid": 208535032714, + "crossed": false, + "fee": "0.016577", + "tid": 1080294683744961, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.148", + "side": "A", + "time": 1761074898979, + "startPosition": "-4125.9603", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x178592951372438118ff042dee074202055d007aae756253bb4e3de7d2761d6b", + "oid": 208535032714, + "crossed": false, + "fee": "0.016577", + "tid": 436141198163011, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.183", + "side": "A", + "time": 1761074898979, + "startPosition": "-4126.1083", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xca5909302d0385fccbd2042dee074202055e0015c806a4ce6e21b482ec075fe7", + "oid": 208535032714, + "crossed": false, + "fee": "0.020498", + "tid": 359798349676890, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.148", + "side": "A", + "time": 1761074898979, + "startPosition": "-4126.2913", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2ffff66660260af43179042dee0742020560004bfb2929c6d3c8a1b91f29e4de", + "oid": 208535032714, + "crossed": false, + "fee": "0.016577", + "tid": 2483184100522, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.183", + "side": "A", + "time": 1761074898979, + "startPosition": "-4126.4393", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x13c834a4131edc561541042dee07420205670089ae11fb28b790dff6d212b640", + "oid": 208535032714, + "crossed": false, + "fee": "0.020498", + "tid": 676247290046504, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.183", + "side": "A", + "time": 1761074898979, + "startPosition": "-4126.6223", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x100ad6b312bb752b1184042dee07420205710098adbe93fdb3d38205d1bf4f15", + "oid": 208535032714, + "crossed": false, + "fee": "0.020498", + "tid": 606111875408335, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.148", + "side": "A", + "time": 1761074898979, + "startPosition": "-4126.8053", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x75b1c3e945ddfa22772b042dee074202057300cee0d118f4197a6f3c04d1d40d", + "oid": 208535032714, + "crossed": false, + "fee": "0.016577", + "tid": 194591741447225, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4000.4", + "sz": "0.3487", + "side": "A", + "time": 1761074898979, + "startPosition": "-4126.9533", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0c4d78c212580e000dc7042dee074202057b00a7ad5b2cd2b0162414d15be7ea", + "oid": 208535032714, + "crossed": false, + "fee": "0.039058", + "tid": 984868197440043, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111706.0", + "sz": "0.00106", + "side": "B", + "time": 1761074902460, + "startPosition": "-312.15733", + "dir": "Close Short", + "closedPnl": "1.136108", + "hash": "0xb57bc69aaa64ae30b6f5042dee076c02035200804567cd02594471ed6968881b", + "oid": 208535163920, + "crossed": true, + "fee": "0.024865", + "tid": 285201631290822, + "cloid": "0x00000000000000000000001603000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111706.0", + "sz": "0.00011", + "side": "B", + "time": 1761074902460, + "startPosition": "-312.15627", + "dir": "Close Short", + "closedPnl": "0.117898", + "hash": "0xb57bc69aaa64ae30b6f5042dee076c02035200804567cd02594471ed6968881b", + "oid": 208535163920, + "crossed": true, + "fee": "0.00258", + "tid": 936966582707400, + "cloid": "0x00000000000000000000001603000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111706.0", + "sz": "0.08831", + "side": "B", + "time": 1761074902460, + "startPosition": "-312.15616", + "dir": "Close Short", + "closedPnl": "94.650658", + "hash": "0xb57bc69aaa64ae30b6f5042dee076c02035200804567cd02594471ed6968881b", + "oid": 208535163920, + "crossed": true, + "fee": "2.071598", + "tid": 694063660533103, + "cloid": "0x00000000000000000000001603000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111700.0", + "sz": "0.06705", + "side": "B", + "time": 1761074906970, + "startPosition": "-312.06785", + "dir": "Close Short", + "closedPnl": "72.26649", + "hash": "0xbb6d800c6c1bd53fbce7042dee07a902033400f2071ef4115f362b5f2b1faf2a", + "oid": 208535209761, + "crossed": true, + "fee": "1.572791", + "tid": 414130259811243, + "cloid": "0x00000000000000000000001603000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111700.0", + "sz": "0.02244", + "side": "B", + "time": 1761074906970, + "startPosition": "-312.0008", + "dir": "Close Short", + "closedPnl": "24.185832", + "hash": "0xbb6d800c6c1bd53fbce7042dee07a902033400f2071ef4115f362b5f2b1faf2a", + "oid": 208535209761, + "crossed": true, + "fee": "0.526375", + "tid": 244004743859338, + "cloid": "0x00000000000000000000001603000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111699.0", + "sz": "0.08949", + "side": "B", + "time": 1761074917971, + "startPosition": "-311.97836", + "dir": "Close Short", + "closedPnl": "96.541812", + "hash": "0xd3dfe95b31490973d559042dee08320201920040cc4c284577a894adf04ce35e", + "oid": 208535276317, + "crossed": true, + "fee": "2.099148", + "tid": 433095064754102, + "cloid": "0x00000000000000000000001603000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111698.0", + "sz": "0.08949", + "side": "B", + "time": 1761074921867, + "startPosition": "-311.88887", + "dir": "Close Short", + "closedPnl": "96.631302", + "hash": "0x4abf1f3264ea55784c38042dee08670201130017ffed744aee87ca8523ee2f62", + "oid": 208535297133, + "crossed": true, + "fee": "2.099129", + "tid": 732599718706046, + "cloid": "0x00000000000000000000001603000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111685.0", + "sz": "0.0895", + "side": "B", + "time": 1761074927959, + "startPosition": "-311.79938", + "dir": "Close Short", + "closedPnl": "97.8056", + "hash": "0x772d94d402d1592a78a7042dee08b202069300b99dd477fc1af64026c1d53315", + "oid": 208535358429, + "crossed": true, + "fee": "2.099119", + "tid": 145324189090034, + "cloid": "0x00000000000000000000001603000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.0895", + "side": "B", + "time": 1761074930779, + "startPosition": "-311.70988", + "dir": "Close Short", + "closedPnl": "99.4166", + "hash": "0xbed7cb293a5797c2c051042dee08d40204a1000ed55ab69462a0767bf95b71ad", + "oid": 208535382731, + "crossed": true, + "fee": "2.098781", + "tid": 711658549697317, + "cloid": "0x00000000000000000000001603000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.0895", + "side": "B", + "time": 1761074931909, + "startPosition": "-311.62038", + "dir": "Close Short", + "closedPnl": "99.4166", + "hash": "0x44ed99c86cc098b94667042dee08e502014b00ae07c3b78be8b6451b2bc472a3", + "oid": 208535386652, + "crossed": true, + "fee": "2.098781", + "tid": 908289196968488, + "cloid": "0x00000000000000000000001603000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.0895", + "side": "B", + "time": 1761074933919, + "startPosition": "-311.53088", + "dir": "Close Short", + "closedPnl": "99.4166", + "hash": "0xd36443f6bc47224cd4de042dee08fb02021500dc574a411e772cef497b4afc37", + "oid": 208535395937, + "crossed": true, + "fee": "2.098781", + "tid": 69255117784052, + "cloid": "0x00000000000000000000001603000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.0895", + "side": "B", + "time": 1761074935906, + "startPosition": "-311.44138", + "dir": "Close Short", + "closedPnl": "99.4166", + "hash": "0x7dbbad81c45988c77f35042dee091102025000675f5ca799218458d4835d62b2", + "oid": 208535407259, + "crossed": true, + "fee": "2.098781", + "tid": 272871867138296, + "cloid": "0x00000000000000000000001603000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.0895", + "side": "B", + "time": 1761074937114, + "startPosition": "-311.35188", + "dir": "Close Short", + "closedPnl": "99.4166", + "hash": "0xc390188af7f69a4dc509042dee0922020185007092f9b91f6758c3ddb6fa7438", + "oid": 208535411918, + "crossed": true, + "fee": "2.098781", + "tid": 934132846687983, + "cloid": "0x00000000000000000000001603000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.08951", + "side": "B", + "time": 1761074938347, + "startPosition": "-311.26238", + "dir": "Close Short", + "closedPnl": "99.427708", + "hash": "0x8f96f9583a809d769110042dee09340202bc003dd583bc48335fa4aaf9847761", + "oid": 208535421313, + "crossed": true, + "fee": "2.099015", + "tid": 779652951432221, + "cloid": "0x00000000000000000000001603000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.01664", + "side": "B", + "time": 1761074948307, + "startPosition": "-311.17287", + "dir": "Close Short", + "closedPnl": "18.483712", + "hash": "0xf74e91936e49561cf8c8042dee09b50201130079094c74ef9b173ce62d4d3007", + "oid": 208535489286, + "crossed": true, + "fee": "0.390209", + "tid": 113537555112115, + "cloid": "0x00000000000000000000001603000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.07287", + "side": "B", + "time": 1761074948307, + "startPosition": "-311.15623", + "dir": "Close Short", + "closedPnl": "80.943996", + "hash": "0xf74e91936e49561cf8c8042dee09b50201130079094c74ef9b173ce62d4d3007", + "oid": 208535489286, + "crossed": true, + "fee": "1.708806", + "tid": 680823301607184, + "cloid": "0x00000000000000000000001603000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.08951", + "side": "B", + "time": 1761074958378, + "startPosition": "-311.08336", + "dir": "Close Short", + "closedPnl": "99.427708", + "hash": "0x0dba1cb3a3fad06a0f33042dee0a240201bb00993efdef3cb182c80662feaa54", + "oid": 208535542703, + "crossed": true, + "fee": "2.099015", + "tid": 591331019105151, + "cloid": "0x00000000000000000000001603000103", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111659.0", + "sz": "0.08951", + "side": "B", + "time": 1761074966833, + "startPosition": "-310.99385", + "dir": "Close Short", + "closedPnl": "100.143788", + "hash": "0xd7cf0f884aed5b66d948042dee0a9502030d006de5e07a387b97badb09e13551", + "oid": 208535612791, + "crossed": true, + "fee": "2.098865", + "tid": 757171634933782, + "cloid": "0x00000000000000000000001603000104", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111656.0", + "sz": "0.08952", + "side": "B", + "time": 1761074968676, + "startPosition": "-310.90434", + "dir": "Close Short", + "closedPnl": "100.423536", + "hash": "0x4a0df7f44d5cb65c4b87042dee0aab0203de00d9e85fd52eedd6a3470c509046", + "oid": 208535642830, + "crossed": true, + "fee": "2.099043", + "tid": 1067895356849659, + "cloid": "0x00000000000000000000001603000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111662.0", + "sz": "0.00004", + "side": "B", + "time": 1761074973105, + "startPosition": "-310.81482", + "dir": "Close Short", + "closedPnl": "0.044632", + "hash": "0x262ca674bc17654027a6042dee0add020530005a571a8412c9f551c77b1b3f2a", + "oid": 208535691133, + "crossed": true, + "fee": "0.000937", + "tid": 661927954424135, + "cloid": "0x00000000000000000000001603000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111663.0", + "sz": "0.00011", + "side": "B", + "time": 1761074973105, + "startPosition": "-310.81478", + "dir": "Close Short", + "closedPnl": "0.122628", + "hash": "0x262ca674bc17654027a6042dee0add020530005a571a8412c9f551c77b1b3f2a", + "oid": 208535691133, + "crossed": true, + "fee": "0.002579", + "tid": 861280671786211, + "cloid": "0x00000000000000000000001603000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111663.0", + "sz": "0.08937", + "side": "B", + "time": 1761074973105, + "startPosition": "-310.81467", + "dir": "Close Short", + "closedPnl": "99.629676", + "hash": "0x262ca674bc17654027a6042dee0add020530005a571a8412c9f551c77b1b3f2a", + "oid": 208535691133, + "crossed": true, + "fee": "2.095657", + "tid": 527291194075347, + "cloid": "0x00000000000000000000001603000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111663.0", + "sz": "0.0045", + "side": "B", + "time": 1761074980719, + "startPosition": "-310.7253", + "dir": "Close Short", + "closedPnl": "5.0166", + "hash": "0x9ee3a4631962443aa05d042dee0b2e0201780048b465630c42ac4fb5d8661e25", + "oid": 208535746800, + "crossed": true, + "fee": "0.105521", + "tid": 792847612736876, + "cloid": "0x00000000000000000000001603000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111663.0", + "sz": "0.00448", + "side": "B", + "time": 1761074980719, + "startPosition": "-310.7208", + "dir": "Close Short", + "closedPnl": "4.994304", + "hash": "0x9ee3a4631962443aa05d042dee0b2e0201780048b465630c42ac4fb5d8661e25", + "oid": 208535746800, + "crossed": true, + "fee": "0.105052", + "tid": 909026050293689, + "cloid": "0x00000000000000000000001603000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111663.0", + "sz": "0.00011", + "side": "B", + "time": 1761074980719, + "startPosition": "-310.71632", + "dir": "Close Short", + "closedPnl": "0.122628", + "hash": "0x9ee3a4631962443aa05d042dee0b2e0201780048b465630c42ac4fb5d8661e25", + "oid": 208535746800, + "crossed": true, + "fee": "0.002579", + "tid": 974624391899078, + "cloid": "0x00000000000000000000001603000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111663.0", + "sz": "0.00896", + "side": "B", + "time": 1761074980719, + "startPosition": "-310.71621", + "dir": "Close Short", + "closedPnl": "9.988608", + "hash": "0x9ee3a4631962443aa05d042dee0b2e0201780048b465630c42ac4fb5d8661e25", + "oid": 208535746800, + "crossed": true, + "fee": "0.210105", + "tid": 597662707228624, + "cloid": "0x00000000000000000000001603000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111663.0", + "sz": "0.001", + "side": "B", + "time": 1761074980719, + "startPosition": "-310.70725", + "dir": "Close Short", + "closedPnl": "1.1148", + "hash": "0x9ee3a4631962443aa05d042dee0b2e0201780048b465630c42ac4fb5d8661e25", + "oid": 208535746800, + "crossed": true, + "fee": "0.023449", + "tid": 261145612710048, + "cloid": "0x00000000000000000000001603000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111664.0", + "sz": "0.00011", + "side": "B", + "time": 1761074980719, + "startPosition": "-310.70625", + "dir": "Close Short", + "closedPnl": "0.122518", + "hash": "0x9ee3a4631962443aa05d042dee0b2e0201780048b465630c42ac4fb5d8661e25", + "oid": 208535746800, + "crossed": true, + "fee": "0.002579", + "tid": 545702022521836, + "cloid": "0x00000000000000000000001603000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111664.0", + "sz": "0.00675", + "side": "B", + "time": 1761074980719, + "startPosition": "-310.70614", + "dir": "Close Short", + "closedPnl": "7.51815", + "hash": "0x9ee3a4631962443aa05d042dee0b2e0201780048b465630c42ac4fb5d8661e25", + "oid": 208535746800, + "crossed": true, + "fee": "0.158283", + "tid": 751873543776268, + "cloid": "0x00000000000000000000001603000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111665.0", + "sz": "0.00208", + "side": "B", + "time": 1761074980719, + "startPosition": "-310.69939", + "dir": "Close Short", + "closedPnl": "2.314624", + "hash": "0x9ee3a4631962443aa05d042dee0b2e0201780048b465630c42ac4fb5d8661e25", + "oid": 208535746800, + "crossed": true, + "fee": "0.048775", + "tid": 387256554847343, + "cloid": "0x00000000000000000000001603000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111665.0", + "sz": "0.00011", + "side": "B", + "time": 1761074980719, + "startPosition": "-310.69731", + "dir": "Close Short", + "closedPnl": "0.122408", + "hash": "0x9ee3a4631962443aa05d042dee0b2e0201780048b465630c42ac4fb5d8661e25", + "oid": 208535746800, + "crossed": true, + "fee": "0.002579", + "tid": 741947657913325, + "cloid": "0x00000000000000000000001603000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111666.0", + "sz": "0.00011", + "side": "B", + "time": 1761074980719, + "startPosition": "-310.6972", + "dir": "Close Short", + "closedPnl": "0.122298", + "hash": "0x9ee3a4631962443aa05d042dee0b2e0201780048b465630c42ac4fb5d8661e25", + "oid": 208535746800, + "crossed": true, + "fee": "0.002579", + "tid": 679504115190599, + "cloid": "0x00000000000000000000001603000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111666.0", + "sz": "0.00901", + "side": "B", + "time": 1761074980719, + "startPosition": "-310.69709", + "dir": "Close Short", + "closedPnl": "10.017318", + "hash": "0x9ee3a4631962443aa05d042dee0b2e0201780048b465630c42ac4fb5d8661e25", + "oid": 208535746800, + "crossed": true, + "fee": "0.211283", + "tid": 359837407546154, + "cloid": "0x00000000000000000000001603000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.00011", + "side": "B", + "time": 1761074980719, + "startPosition": "-310.68808", + "dir": "Close Short", + "closedPnl": "0.122188", + "hash": "0x9ee3a4631962443aa05d042dee0b2e0201780048b465630c42ac4fb5d8661e25", + "oid": 208535746800, + "crossed": true, + "fee": "0.002579", + "tid": 408678831410673, + "cloid": "0x00000000000000000000001603000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.00804", + "side": "B", + "time": 1761074980719, + "startPosition": "-310.68797", + "dir": "Close Short", + "closedPnl": "8.930832", + "hash": "0x9ee3a4631962443aa05d042dee0b2e0201780048b465630c42ac4fb5d8661e25", + "oid": 208535746800, + "crossed": true, + "fee": "0.188538", + "tid": 154668603753748, + "cloid": "0x00000000000000000000001603000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.00649", + "side": "B", + "time": 1761074980719, + "startPosition": "-310.67993", + "dir": "Close Short", + "closedPnl": "7.209092", + "hash": "0x9ee3a4631962443aa05d042dee0b2e0201780048b465630c42ac4fb5d8661e25", + "oid": 208535746800, + "crossed": true, + "fee": "0.15219", + "tid": 34502263275637, + "cloid": "0x00000000000000000000001603000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.01126", + "side": "B", + "time": 1761074980719, + "startPosition": "-310.67344", + "dir": "Close Short", + "closedPnl": "12.507608", + "hash": "0x9ee3a4631962443aa05d042dee0b2e0201780048b465630c42ac4fb5d8661e25", + "oid": 208535746800, + "crossed": true, + "fee": "0.264047", + "tid": 345076351889102, + "cloid": "0x00000000000000000000001603000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.02639", + "side": "B", + "time": 1761074980719, + "startPosition": "-310.66218", + "dir": "Close Short", + "closedPnl": "29.314012", + "hash": "0x9ee3a4631962443aa05d042dee0b2e0201780048b465630c42ac4fb5d8661e25", + "oid": 208535746800, + "crossed": true, + "fee": "0.618847", + "tid": 117115845356943, + "cloid": "0x00000000000000000000001603000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.08951", + "side": "B", + "time": 1761074990815, + "startPosition": "-310.63579", + "dir": "Close Short", + "closedPnl": "99.427708", + "hash": "0xe79caebf7f84f1bfe916042dee0bb70201bd00a51a8810918b655a123e88cbaa", + "oid": 208535815998, + "crossed": true, + "fee": "2.099015", + "tid": 412940780865414, + "cloid": "0x00000000000000000000001603000108", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111667.0", + "sz": "0.08951", + "side": "B", + "time": 1761075000953, + "startPosition": "-310.54628", + "dir": "Close Short", + "closedPnl": "99.427708", + "hash": "0x658bd897847435f36705042dee0c33020878007d1f7754c5095483ea43780fde", + "oid": 208535854324, + "crossed": true, + "fee": "2.099015", + "tid": 937989312277470, + "cloid": "0x00000000000000000000001603000109", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111656.0", + "sz": "0.0233", + "side": "B", + "time": 1761075002447, + "startPosition": "-310.45677", + "dir": "Close Short", + "closedPnl": "26.13794", + "hash": "0x35bed775c5ff30b13738042dee0c4402063b005b60f24f83d98782c884f30a9b", + "oid": 208535886548, + "crossed": true, + "fee": "0.546332", + "tid": 312893548000708, + "cloid": "0x00000000000000000000001603000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111656.0", + "sz": "0.06623", + "side": "B", + "time": 1761075002447, + "startPosition": "-310.43347", + "dir": "Close Short", + "closedPnl": "74.296814", + "hash": "0x35bed775c5ff30b13738042dee0c4402063b005b60f24f83d98782c884f30a9b", + "oid": 208535886548, + "crossed": true, + "fee": "1.552945", + "tid": 266950436173713, + "cloid": "0x00000000000000000000001603000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111586.0", + "sz": "0.08954", + "side": "B", + "time": 1761075004777, + "startPosition": "-310.36724", + "dir": "Close Short", + "closedPnl": "106.713772", + "hash": "0x6612551a7097f38b678c042dee0c6102092400000b9b125d09db006d2f9bcd76", + "oid": 208535941866, + "crossed": true, + "fee": "2.098196", + "tid": 1120589166407543, + "cloid": "0x00000000000000000000001603000111", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111584.0", + "sz": "0.0183", + "side": "B", + "time": 1761075009882, + "startPosition": "-310.2777", + "dir": "Close Short", + "closedPnl": "21.84654", + "hash": "0x8e9a2ca2c6db3a2b9013042dee0c9f020272008861de58fd3262d7f585df1416", + "oid": 208536025972, + "crossed": true, + "fee": "0.428817", + "tid": 1048134870366641, + "cloid": "0x00000000000000000000001603000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111584.0", + "sz": "0.01874", + "side": "B", + "time": 1761075009882, + "startPosition": "-310.2594", + "dir": "Close Short", + "closedPnl": "22.371812", + "hash": "0x8e9a2ca2c6db3a2b9013042dee0c9f020272008861de58fd3262d7f585df1416", + "oid": 208536025972, + "crossed": true, + "fee": "0.439127", + "tid": 431469137500469, + "cloid": "0x00000000000000000000001603000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111585.0", + "sz": "0.05252", + "side": "B", + "time": 1761075009882, + "startPosition": "-310.24066", + "dir": "Close Short", + "closedPnl": "62.645856", + "hash": "0x8e9a2ca2c6db3a2b9013042dee0c9f020272008861de58fd3262d7f585df1416", + "oid": 208536025972, + "crossed": true, + "fee": "1.230693", + "tid": 1032283301497042, + "cloid": "0x00000000000000000000001603000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.00011", + "side": "B", + "time": 1761075013174, + "startPosition": "-310.18814", + "dir": "Close Short", + "closedPnl": "0.130658", + "hash": "0x93faaa380b7b209f9574042dee0ccc0203ab001da67e3f7137c3558aca7efa8a", + "oid": 208536091088, + "crossed": true, + "fee": "0.002577", + "tid": 862558527447916, + "cloid": "0x00000000000000000000001603000113", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.019", + "side": "B", + "time": 1761075013174, + "startPosition": "-310.18803", + "dir": "Close Short", + "closedPnl": "22.5682", + "hash": "0x93faaa380b7b209f9574042dee0ccc0203ab001da67e3f7137c3558aca7efa8a", + "oid": 208536091088, + "crossed": true, + "fee": "0.445244", + "tid": 1001956038907242, + "cloid": "0x00000000000000000000001603000113", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.006", + "side": "B", + "time": 1761075013174, + "startPosition": "-310.16903", + "dir": "Close Short", + "closedPnl": "7.1268", + "hash": "0x93faaa380b7b209f9574042dee0ccc0203ab001da67e3f7137c3558aca7efa8a", + "oid": 208536091088, + "crossed": true, + "fee": "0.140603", + "tid": 733483054269798, + "cloid": "0x00000000000000000000001603000113", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.06446", + "side": "B", + "time": 1761075013174, + "startPosition": "-310.16303", + "dir": "Close Short", + "closedPnl": "76.565588", + "hash": "0x93faaa380b7b209f9574042dee0ccc0203ab001da67e3f7137c3558aca7efa8a", + "oid": 208536091088, + "crossed": true, + "fee": "1.510549", + "tid": 586904334998120, + "cloid": "0x00000000000000000000001603000113", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111589.0", + "sz": "0.08957", + "side": "B", + "time": 1761075014705, + "startPosition": "-310.09857", + "dir": "Close Short", + "closedPnl": "106.480816", + "hash": "0xa0b16b27ac87bf54a22b042dee0cdd0204cf000d478ade26447a167a6b8b993f", + "oid": 208536111296, + "crossed": true, + "fee": "2.098955", + "tid": 371021612288185, + "cloid": "0x00000000000000000000001603000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111570.0", + "sz": "0.08958", + "side": "B", + "time": 1761075017320, + "startPosition": "-310.009", + "dir": "Close Short", + "closedPnl": "108.194724", + "hash": "0xee3acb89c9778e14efb4042dee0cfe020211006f647aace6920376dc887b67ff", + "oid": 208536158164, + "crossed": true, + "fee": "2.098832", + "tid": 99407897588804, + "cloid": "0x00000000000000000000001603000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111560.0", + "sz": "0.08959", + "side": "B", + "time": 1761075018497, + "startPosition": "-309.91942", + "dir": "Close Short", + "closedPnl": "109.102702", + "hash": "0x8673ed3907a3d3dd87ed042dee0d0a0203b0001ea2a6f2af2a3c988bc6a7adc8", + "oid": 208536180387, + "crossed": true, + "fee": "2.098878", + "tid": 298121511192119, + "cloid": "0x00000000000000000000001603000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111559.0", + "sz": "0.0896", + "side": "B", + "time": 1761075019899, + "startPosition": "-309.82983", + "dir": "Close Short", + "closedPnl": "109.20448", + "hash": "0x516532e459c29f5952de042dee0d1902089700c9f4c5be2bf52dde3718c67943", + "oid": 208536205994, + "crossed": true, + "fee": "2.099094", + "tid": 459947742663827, + "cloid": "0x00000000000000000000001603000117", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111518.0", + "sz": "0.0896", + "side": "B", + "time": 1761075021538, + "startPosition": "-309.74023", + "dir": "Close Short", + "closedPnl": "112.87808", + "hash": "0x126c7a1dfcd4da4f13e6042dee0d3002043d000397d7f921b6352570bbd8b439", + "oid": 208536242965, + "crossed": true, + "fee": "2.098322", + "tid": 559857620888239, + "cloid": "0x00000000000000000000001603000118", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111538.0", + "sz": "0.00018", + "side": "B", + "time": 1761075025594, + "startPosition": "-309.65063", + "dir": "Close Short", + "closedPnl": "0.223164", + "hash": "0x4adc61a888c97c7b4c56042dee0d60020364008e23cc9b4deea50cfb47cd5665", + "oid": 208536295546, + "crossed": true, + "fee": "0.004216", + "tid": 263294138057791, + "cloid": "0x00000000000000000000001603000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111541.0", + "sz": "0.0016", + "side": "B", + "time": 1761075025594, + "startPosition": "-309.65045", + "dir": "Close Short", + "closedPnl": "1.97888", + "hash": "0x4adc61a888c97c7b4c56042dee0d60020364008e23cc9b4deea50cfb47cd5665", + "oid": 208536295546, + "crossed": true, + "fee": "0.037477", + "tid": 927616201967269, + "cloid": "0x00000000000000000000001603000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111543.0", + "sz": "0.08784", + "side": "B", + "time": 1761075025594, + "startPosition": "-309.64885", + "dir": "Close Short", + "closedPnl": "108.464832", + "hash": "0x4adc61a888c97c7b4c56042dee0d60020364008e23cc9b4deea50cfb47cd5665", + "oid": 208536295546, + "crossed": true, + "fee": "2.057566", + "tid": 484735779720753, + "cloid": "0x00000000000000000000001603000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111558.0", + "sz": "0.08961", + "side": "B", + "time": 1761075033480, + "startPosition": "-309.56101", + "dir": "Close Short", + "closedPnl": "109.306278", + "hash": "0x100c300b547616a91185042dee0dc00206f700f0ef79357bb3d4db5e1379f093", + "oid": 208536403510, + "crossed": true, + "fee": "2.099309", + "tid": 199538653158714, + "cloid": "0x00000000000000000000001603000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111570.0", + "sz": "0.00089", + "side": "B", + "time": 1761075034945, + "startPosition": "-309.4714", + "dir": "Close Short", + "closedPnl": "1.074942", + "hash": "0xc9fdabfd8b3c76e0cb77042dee0dcf020eb800e3263f95b26dc657504a3050cb", + "oid": 208536438644, + "crossed": true, + "fee": "0.020852", + "tid": 329076464710756, + "cloid": "0x00000000000000000000001603000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111571.0", + "sz": "0.00011", + "side": "B", + "time": 1761075034945, + "startPosition": "-309.47051", + "dir": "Close Short", + "closedPnl": "0.132748", + "hash": "0xc9fdabfd8b3c76e0cb77042dee0dcf020eb800e3263f95b26dc657504a3050cb", + "oid": 208536438644, + "crossed": true, + "fee": "0.002577", + "tid": 540446153564593, + "cloid": "0x00000000000000000000001603000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111572.0", + "sz": "0.00011", + "side": "B", + "time": 1761075034945, + "startPosition": "-309.4704", + "dir": "Close Short", + "closedPnl": "0.132638", + "hash": "0xc9fdabfd8b3c76e0cb77042dee0dcf020eb800e3263f95b26dc657504a3050cb", + "oid": 208536438644, + "crossed": true, + "fee": "0.002577", + "tid": 89051678928788, + "cloid": "0x00000000000000000000001603000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111573.0", + "sz": "0.00011", + "side": "B", + "time": 1761075034945, + "startPosition": "-309.47029", + "dir": "Close Short", + "closedPnl": "0.132528", + "hash": "0xc9fdabfd8b3c76e0cb77042dee0dcf020eb800e3263f95b26dc657504a3050cb", + "oid": 208536438644, + "crossed": true, + "fee": "0.002577", + "tid": 323972189036215, + "cloid": "0x00000000000000000000001603000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111574.0", + "sz": "0.00011", + "side": "B", + "time": 1761075034945, + "startPosition": "-309.47018", + "dir": "Close Short", + "closedPnl": "0.132418", + "hash": "0xc9fdabfd8b3c76e0cb77042dee0dcf020eb800e3263f95b26dc657504a3050cb", + "oid": 208536438644, + "crossed": true, + "fee": "0.002577", + "tid": 133416311586603, + "cloid": "0x00000000000000000000001603000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111575.0", + "sz": "0.00011", + "side": "B", + "time": 1761075034945, + "startPosition": "-309.47007", + "dir": "Close Short", + "closedPnl": "0.132308", + "hash": "0xc9fdabfd8b3c76e0cb77042dee0dcf020eb800e3263f95b26dc657504a3050cb", + "oid": 208536438644, + "crossed": true, + "fee": "0.002577", + "tid": 307045836119055, + "cloid": "0x00000000000000000000001603000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111576.0", + "sz": "0.00011", + "side": "B", + "time": 1761075034945, + "startPosition": "-309.46996", + "dir": "Close Short", + "closedPnl": "0.132198", + "hash": "0xc9fdabfd8b3c76e0cb77042dee0dcf020eb800e3263f95b26dc657504a3050cb", + "oid": 208536438644, + "crossed": true, + "fee": "0.002577", + "tid": 10154999042009, + "cloid": "0x00000000000000000000001603000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111577.0", + "sz": "0.00011", + "side": "B", + "time": 1761075034945, + "startPosition": "-309.46985", + "dir": "Close Short", + "closedPnl": "0.132088", + "hash": "0xc9fdabfd8b3c76e0cb77042dee0dcf020eb800e3263f95b26dc657504a3050cb", + "oid": 208536438644, + "crossed": true, + "fee": "0.002577", + "tid": 784350256275828, + "cloid": "0x00000000000000000000001603000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111577.0", + "sz": "0.08793", + "side": "B", + "time": 1761075034945, + "startPosition": "-309.46974", + "dir": "Close Short", + "closedPnl": "105.586344", + "hash": "0xc9fdabfd8b3c76e0cb77042dee0dcf020eb800e3263f95b26dc657504a3050cb", + "oid": 208536438644, + "crossed": true, + "fee": "2.060302", + "tid": 233962534311142, + "cloid": "0x00000000000000000000001603000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111565.0", + "sz": "0.08958", + "side": "B", + "time": 1761075037977, + "startPosition": "-309.38181", + "dir": "Close Short", + "closedPnl": "108.642624", + "hash": "0x75ac577e4245e4657726042dee0df40204d80063dd490337197502d10149be50", + "oid": 208536484977, + "crossed": true, + "fee": "2.098738", + "tid": 361645483651953, + "cloid": "0x00000000000000000000001603000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111583.0", + "sz": "0.08958", + "side": "B", + "time": 1761075049134, + "startPosition": "-309.29223", + "dir": "Close Short", + "closedPnl": "107.030184", + "hash": "0x26853f5c248803bd27fe042dee0e7c0201f40041bf8b228fca4deaaee38bdda7", + "oid": 208536583776, + "crossed": true, + "fee": "2.099077", + "tid": 361585015411183, + "cloid": "0x00000000000000000000001603000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111578.0", + "sz": "0.08958", + "side": "B", + "time": 1761075052165, + "startPosition": "-309.20265", + "dir": "Close Short", + "closedPnl": "107.478084", + "hash": "0x1b3b3c665b514f0e1cb4042dee0e9e0202bf004bf6546de0bf03e7b91a5528f8", + "oid": 208536619351, + "crossed": true, + "fee": "2.098983", + "tid": 241028383271171, + "cloid": "0x00000000000000000000001603000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111578.0", + "sz": "0.08958", + "side": "B", + "time": 1761075053371, + "startPosition": "-309.11307", + "dir": "Close Short", + "closedPnl": "107.478084", + "hash": "0xffbca2ceba0a8bd00136042dee0eb002010800b4550daaa3a3854e21790e65bb", + "oid": 208536630005, + "crossed": true, + "fee": "2.098983", + "tid": 808392639097693, + "cloid": "0x00000000000000000000001603000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111578.0", + "sz": "0.08958", + "side": "B", + "time": 1761075063776, + "startPosition": "-309.02349", + "dir": "Close Short", + "closedPnl": "107.478084", + "hash": "0x4deb65dfe7cd41824f65042dee0f2a02046200c582c06054f1b41132a6c11b6c", + "oid": 208536736270, + "crossed": true, + "fee": "2.098983", + "tid": 1120671105881844, + "cloid": "0x00000000000000000000001603000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111591.0", + "sz": "0.00007", + "side": "B", + "time": 1761075066322, + "startPosition": "-308.93391", + "dir": "Close Short", + "closedPnl": "0.083076", + "hash": "0x4b10d59f48ccf2144c8a042dee0f490206170084e3c010e6eed980f207c0cbfe", + "oid": 208536784131, + "crossed": true, + "fee": "0.00164", + "tid": 637102514655962, + "cloid": "0x00000000000000000000001603000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111592.0", + "sz": "0.00011", + "side": "B", + "time": 1761075066322, + "startPosition": "-308.93384", + "dir": "Close Short", + "closedPnl": "0.130438", + "hash": "0x4b10d59f48ccf2144c8a042dee0f490206170084e3c010e6eed980f207c0cbfe", + "oid": 208536784131, + "crossed": true, + "fee": "0.002577", + "tid": 1092115405809275, + "cloid": "0x00000000000000000000001603000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111593.0", + "sz": "0.00014", + "side": "B", + "time": 1761075066322, + "startPosition": "-308.93373", + "dir": "Close Short", + "closedPnl": "0.165872", + "hash": "0x4b10d59f48ccf2144c8a042dee0f490206170084e3c010e6eed980f207c0cbfe", + "oid": 208536784131, + "crossed": true, + "fee": "0.00328", + "tid": 852496660002867, + "cloid": "0x00000000000000000000001603000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111593.0", + "sz": "0.00011", + "side": "B", + "time": 1761075066322, + "startPosition": "-308.93359", + "dir": "Close Short", + "closedPnl": "0.130328", + "hash": "0x4b10d59f48ccf2144c8a042dee0f490206170084e3c010e6eed980f207c0cbfe", + "oid": 208536784131, + "crossed": true, + "fee": "0.002577", + "tid": 790692325913770, + "cloid": "0x00000000000000000000001603000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111594.0", + "sz": "0.00011", + "side": "B", + "time": 1761075066322, + "startPosition": "-308.93348", + "dir": "Close Short", + "closedPnl": "0.130218", + "hash": "0x4b10d59f48ccf2144c8a042dee0f490206170084e3c010e6eed980f207c0cbfe", + "oid": 208536784131, + "crossed": true, + "fee": "0.002577", + "tid": 898713155335862, + "cloid": "0x00000000000000000000001603000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111595.0", + "sz": "0.00011", + "side": "B", + "time": 1761075066322, + "startPosition": "-308.93337", + "dir": "Close Short", + "closedPnl": "0.130108", + "hash": "0x4b10d59f48ccf2144c8a042dee0f490206170084e3c010e6eed980f207c0cbfe", + "oid": 208536784131, + "crossed": true, + "fee": "0.002577", + "tid": 349889778674834, + "cloid": "0x00000000000000000000001603000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111596.0", + "sz": "0.00011", + "side": "B", + "time": 1761075066322, + "startPosition": "-308.93326", + "dir": "Close Short", + "closedPnl": "0.129998", + "hash": "0x4b10d59f48ccf2144c8a042dee0f490206170084e3c010e6eed980f207c0cbfe", + "oid": 208536784131, + "crossed": true, + "fee": "0.002577", + "tid": 595124064089922, + "cloid": "0x00000000000000000000001603000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111597.0", + "sz": "0.00014", + "side": "B", + "time": 1761075066322, + "startPosition": "-308.93315", + "dir": "Close Short", + "closedPnl": "0.165312", + "hash": "0x4b10d59f48ccf2144c8a042dee0f490206170084e3c010e6eed980f207c0cbfe", + "oid": 208536784131, + "crossed": true, + "fee": "0.00328", + "tid": 472149316240973, + "cloid": "0x00000000000000000000001603000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111597.0", + "sz": "0.00011", + "side": "B", + "time": 1761075066322, + "startPosition": "-308.93301", + "dir": "Close Short", + "closedPnl": "0.129888", + "hash": "0x4b10d59f48ccf2144c8a042dee0f490206170084e3c010e6eed980f207c0cbfe", + "oid": 208536784131, + "crossed": true, + "fee": "0.002577", + "tid": 1111566797412842, + "cloid": "0x00000000000000000000001603000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111597.0", + "sz": "0.00017", + "side": "B", + "time": 1761075066322, + "startPosition": "-308.9329", + "dir": "Close Short", + "closedPnl": "0.200736", + "hash": "0x4b10d59f48ccf2144c8a042dee0f490206170084e3c010e6eed980f207c0cbfe", + "oid": 208536784131, + "crossed": true, + "fee": "0.003984", + "tid": 50438042411424, + "cloid": "0x00000000000000000000001603000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111598.0", + "sz": "0.0001", + "side": "B", + "time": 1761075066322, + "startPosition": "-308.93273", + "dir": "Close Short", + "closedPnl": "0.11798", + "hash": "0x4b10d59f48ccf2144c8a042dee0f490206170084e3c010e6eed980f207c0cbfe", + "oid": 208536784131, + "crossed": true, + "fee": "0.002343", + "tid": 526547702198767, + "cloid": "0x00000000000000000000001603000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111598.0", + "sz": "0.00011", + "side": "B", + "time": 1761075066322, + "startPosition": "-308.93263", + "dir": "Close Short", + "closedPnl": "0.129778", + "hash": "0x4b10d59f48ccf2144c8a042dee0f490206170084e3c010e6eed980f207c0cbfe", + "oid": 208536784131, + "crossed": true, + "fee": "0.002577", + "tid": 177928714436472, + "cloid": "0x00000000000000000000001603000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111598.0", + "sz": "0.08817", + "side": "B", + "time": 1761075066322, + "startPosition": "-308.93252", + "dir": "Close Short", + "closedPnl": "104.022966", + "hash": "0x4b10d59f48ccf2144c8a042dee0f490206170084e3c010e6eed980f207c0cbfe", + "oid": 208536784131, + "crossed": true, + "fee": "2.066315", + "tid": 813143314862780, + "cloid": "0x00000000000000000000001603000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111599.0", + "sz": "0.08956", + "side": "B", + "time": 1761075067716, + "startPosition": "-308.84435", + "dir": "Close Short", + "closedPnl": "105.573328", + "hash": "0xef68746243410bf2f0e2042dee0f5a0205ea0047de442ac493311fb50244e5dd", + "oid": 208536809968, + "crossed": true, + "fee": "2.098909", + "tid": 1065882231043922, + "cloid": "0x00000000000000000000001603000128", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111599.0", + "sz": "0.08956", + "side": "B", + "time": 1761075071631, + "startPosition": "-308.75479", + "dir": "Close Short", + "closedPnl": "105.573328", + "hash": "0x03ef9e67e47c8e0f0569042dee0f900202e7004d7f7face1a7b849baa37067f9", + "oid": 208536858570, + "crossed": true, + "fee": "2.098909", + "tid": 379803650141985, + "cloid": "0x00000000000000000000001603000129", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111599.0", + "sz": "0.08957", + "side": "B", + "time": 1761075074443, + "startPosition": "-308.66523", + "dir": "Close Short", + "closedPnl": "105.585116", + "hash": "0x173e8fc54747b62618b8042dee0fb202047200aae24ad4f8bb073b18064b9010", + "oid": 208536897159, + "crossed": true, + "fee": "2.099143", + "tid": 357443023292167, + "cloid": "0x00000000000000000000001603000130", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.08957", + "side": "B", + "time": 1761075078745, + "startPosition": "-308.57566", + "dir": "Close Short", + "closedPnl": "106.391246", + "hash": "0xe2ad90bc96e3339fe427042dee0fe80201ee00a231e6527186763c0f55e70d8a", + "oid": 208536943348, + "crossed": true, + "fee": "2.098974", + "tid": 817468533285608, + "cloid": "0x00000000000000000000001603000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111581.0", + "sz": "0.00896", + "side": "B", + "time": 1761075083155, + "startPosition": "-308.48609", + "dir": "Close Short", + "closedPnl": "10.723328", + "hash": "0x23bddc15093555bb2537042dee101e0203cd00faa438748dc7868767c8392fa5", + "oid": 208536993275, + "crossed": true, + "fee": "0.20995", + "tid": 720585344152209, + "cloid": "0x00000000000000000000001603000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111581.0", + "sz": "0.08062", + "side": "B", + "time": 1761075083155, + "startPosition": "-308.47713", + "dir": "Close Short", + "closedPnl": "96.486016", + "hash": "0x23bddc15093555bb2537042dee101e0203cd00faa438748dc7868767c8392fa5", + "oid": 208536993275, + "crossed": true, + "fee": "1.889088", + "tid": 890054235415865, + "cloid": "0x00000000000000000000001603000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111581.0", + "sz": "0.00011", + "side": "B", + "time": 1761075084981, + "startPosition": "-308.39651", + "dir": "Close Short", + "closedPnl": "0.131648", + "hash": "0x6eb4d539ec2c7757702e042dee103602045c001f872f9629127d808cab205142", + "oid": 208537012271, + "crossed": true, + "fee": "0.002577", + "tid": 401330851365348, + "cloid": "0x00000000000000000000001603000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111581.0", + "sz": "0.00044", + "side": "B", + "time": 1761075084981, + "startPosition": "-308.3964", + "dir": "Close Short", + "closedPnl": "0.526592", + "hash": "0x6eb4d539ec2c7757702e042dee103602045c001f872f9629127d808cab205142", + "oid": 208537012271, + "crossed": true, + "fee": "0.01031", + "tid": 70641819669965, + "cloid": "0x00000000000000000000001603000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111581.0", + "sz": "0.08903", + "side": "B", + "time": 1761075084981, + "startPosition": "-308.39596", + "dir": "Close Short", + "closedPnl": "106.551104", + "hash": "0x6eb4d539ec2c7757702e042dee103602045c001f872f9629127d808cab205142", + "oid": 208537012271, + "crossed": true, + "fee": "2.086151", + "tid": 107355119498870, + "cloid": "0x00000000000000000000001603000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111582.0", + "sz": "0.00293", + "side": "B", + "time": 1761075091997, + "startPosition": "-308.30693", + "dir": "Close Short", + "closedPnl": "3.503694", + "hash": "0x83d7d7544f6b39658551042dee108e0208f80039ea6e583727a082a70e6f1350", + "oid": 208537068468, + "crossed": true, + "fee": "0.068656", + "tid": 236403910903151, + "cloid": "0x00000000000000000000001603000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111582.0", + "sz": "0.00011", + "side": "B", + "time": 1761075091997, + "startPosition": "-308.304", + "dir": "Close Short", + "closedPnl": "0.131538", + "hash": "0x83d7d7544f6b39658551042dee108e0208f80039ea6e583727a082a70e6f1350", + "oid": 208537068468, + "crossed": true, + "fee": "0.002577", + "tid": 900417435723025, + "cloid": "0x00000000000000000000001603000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111582.0", + "sz": "0.00716", + "side": "B", + "time": 1761075091997, + "startPosition": "-308.30389", + "dir": "Close Short", + "closedPnl": "8.561928", + "hash": "0x83d7d7544f6b39658551042dee108e0208f80039ea6e583727a082a70e6f1350", + "oid": 208537068468, + "crossed": true, + "fee": "0.167774", + "tid": 95386709767280, + "cloid": "0x00000000000000000000001603000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111582.0", + "sz": "0.07938", + "side": "B", + "time": 1761075091997, + "startPosition": "-308.29673", + "dir": "Close Short", + "closedPnl": "94.922604", + "hash": "0x83d7d7544f6b39658551042dee108e0208f80039ea6e583727a082a70e6f1350", + "oid": 208537068468, + "crossed": true, + "fee": "1.860049", + "tid": 771491239115358, + "cloid": "0x00000000000000000000001603000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111558.0", + "sz": "0.03899", + "side": "B", + "time": 1761075103298, + "startPosition": "-308.21735", + "dir": "Close Short", + "closedPnl": "47.560002", + "hash": "0x208a65c01293b3a52204042dee111702023600a5ad96d277c4531112d1978d8f", + "oid": 208537161186, + "crossed": true, + "fee": "0.913425", + "tid": 1042906548349997, + "cloid": "0x00000000000000000000001603000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111558.0", + "sz": "0.0506", + "side": "B", + "time": 1761075103298, + "startPosition": "-308.17836", + "dir": "Close Short", + "closedPnl": "61.72188", + "hash": "0x208a65c01293b3a52204042dee111702023600a5ad96d277c4531112d1978d8f", + "oid": 208537161186, + "crossed": true, + "fee": "1.185415", + "tid": 6968704593462, + "cloid": "0x00000000000000000000001603000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111556.0", + "sz": "0.0896", + "side": "B", + "time": 1761075113174, + "startPosition": "-308.12776", + "dir": "Close Short", + "closedPnl": "109.47328", + "hash": "0xa28c5880f4e3a14ba406042dee11880202ae00668fe6c01d465503d3b3e77b36", + "oid": 208537228623, + "crossed": true, + "fee": "2.099037", + "tid": 261875938144814, + "cloid": "0x00000000000000000000001603000136", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111555.0", + "sz": "0.08413", + "side": "B", + "time": 1761075116175, + "startPosition": "-308.03816", + "dir": "Close Short", + "closedPnl": "102.874164", + "hash": "0x32717b381fb5a80033eb042dee11ac02012f001dbab8c6d2d63a268adeb981ea", + "oid": 208537255362, + "crossed": true, + "fee": "1.970875", + "tid": 1057187180729694, + "cloid": "0x00000000000000000000001603000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111555.0", + "sz": "0.00547", + "side": "B", + "time": 1761075116175, + "startPosition": "-307.95403", + "dir": "Close Short", + "closedPnl": "6.688716", + "hash": "0x32717b381fb5a80033eb042dee11ac02012f001dbab8c6d2d63a268adeb981ea", + "oid": 208537255362, + "crossed": true, + "fee": "0.128143", + "tid": 883768443128892, + "cloid": "0x00000000000000000000001603000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111546.0", + "sz": "0.06818", + "side": "B", + "time": 1761075118489, + "startPosition": "-307.94856", + "dir": "Close Short", + "closedPnl": "83.984124", + "hash": "0x86965e04b957a2ac8810042dee11c402016100ea545ac17e2a5f0957785b7c97", + "oid": 208537275643, + "crossed": true, + "fee": "1.597093", + "tid": 579583064895496, + "cloid": "0x00000000000000000000001603000138", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111546.0", + "sz": "0.02142", + "side": "B", + "time": 1761075118489, + "startPosition": "-307.88038", + "dir": "Close Short", + "closedPnl": "26.385156", + "hash": "0x86965e04b957a2ac8810042dee11c402016100ea545ac17e2a5f0957785b7c97", + "oid": 208537275643, + "crossed": true, + "fee": "0.501756", + "tid": 93598227567337, + "cloid": "0x00000000000000000000001603000138", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111544.0", + "sz": "0.0896", + "side": "B", + "time": 1761075120877, + "startPosition": "-307.85896", + "dir": "Close Short", + "closedPnl": "110.54848", + "hash": "0xd9bf3e6b22f5981bdb38042dee11e30202300050bdf8b6ed7d87e9bde1f97206", + "oid": 208537309021, + "crossed": true, + "fee": "2.098811", + "tid": 323952521060882, + "cloid": "0x00000000000000000000001603000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111541.0", + "sz": "0.04205", + "side": "B", + "time": 1761075122274, + "startPosition": "-307.76936", + "dir": "Close Short", + "closedPnl": "52.00744", + "hash": "0x8ebefb90972d90c49038042dee11f4020d5600763220af963287a6e356216aaf", + "oid": 208537337515, + "crossed": true, + "fee": "0.984962", + "tid": 692100361427031, + "cloid": "0x00000000000000000000001603000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111541.0", + "sz": "0.04757", + "side": "B", + "time": 1761075122274, + "startPosition": "-307.72731", + "dir": "Close Short", + "closedPnl": "58.834576", + "hash": "0x8ebefb90972d90c49038042dee11f4020d5600763220af963287a6e356216aaf", + "oid": 208537337515, + "crossed": true, + "fee": "1.114261", + "tid": 405068141679759, + "cloid": "0x00000000000000000000001603000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111539.0", + "sz": "0.08963", + "side": "B", + "time": 1761075124895, + "startPosition": "-307.67974", + "dir": "Close Short", + "closedPnl": "111.033644", + "hash": "0x0e21467743fb42ce0f9b042dee120f0210e4005cdefe61a0b1e9f1ca02ff1cb8", + "oid": 208537396859, + "crossed": true, + "fee": "2.09942", + "tid": 237496956062244, + "cloid": "0x00000000000000000000001603000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111539.0", + "sz": "0.00337", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.59011", + "dir": "Close Short", + "closedPnl": "4.174756", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.078936", + "tid": 921525601209487, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111540.0", + "sz": "0.00011", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.58674", + "dir": "Close Short", + "closedPnl": "0.136158", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.002576", + "tid": 842850218599681, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111541.0", + "sz": "0.00011", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.58663", + "dir": "Close Short", + "closedPnl": "0.136048", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.002576", + "tid": 841287854753171, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111542.0", + "sz": "0.00011", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.58652", + "dir": "Close Short", + "closedPnl": "0.135938", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.002576", + "tid": 1055947182194032, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111543.0", + "sz": "0.00011", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.58641", + "dir": "Close Short", + "closedPnl": "0.135828", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.002576", + "tid": 842424483243068, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111544.0", + "sz": "0.00011", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.5863", + "dir": "Close Short", + "closedPnl": "0.135718", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.002576", + "tid": 785608298543568, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111545.0", + "sz": "0.00011", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.58619", + "dir": "Close Short", + "closedPnl": "0.135608", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.002576", + "tid": 951003517724357, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111546.0", + "sz": "0.00011", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.58608", + "dir": "Close Short", + "closedPnl": "0.135498", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.002576", + "tid": 975715932576718, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111546.0", + "sz": "0.00014", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.58597", + "dir": "Close Short", + "closedPnl": "0.172452", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.003279", + "tid": 837912107122916, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111547.0", + "sz": "0.00011", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.58583", + "dir": "Close Short", + "closedPnl": "0.135388", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.002576", + "tid": 751233339130520, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111547.0", + "sz": "0.00017", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.58572", + "dir": "Close Short", + "closedPnl": "0.209236", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.003982", + "tid": 480699616654999, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111548.0", + "sz": "0.00011", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.58555", + "dir": "Close Short", + "closedPnl": "0.135278", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.002576", + "tid": 194668284983447, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111549.0", + "sz": "0.00011", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.58544", + "dir": "Close Short", + "closedPnl": "0.135168", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.002576", + "tid": 168301857988932, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111550.0", + "sz": "0.00014", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.58533", + "dir": "Close Short", + "closedPnl": "0.171892", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.003279", + "tid": 706197262759383, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111550.0", + "sz": "0.00011", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.58519", + "dir": "Close Short", + "closedPnl": "0.135058", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.002576", + "tid": 1034074061976686, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111551.0", + "sz": "0.00018", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.58508", + "dir": "Close Short", + "closedPnl": "0.220824", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.004216", + "tid": 897927870208472, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111551.0", + "sz": "0.00011", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.5849", + "dir": "Close Short", + "closedPnl": "0.134948", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.002576", + "tid": 472658427256484, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111552.0", + "sz": "0.00011", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.58479", + "dir": "Close Short", + "closedPnl": "0.134838", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.002576", + "tid": 309690879882845, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111553.0", + "sz": "0.00011", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.58468", + "dir": "Close Short", + "closedPnl": "0.134728", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.002576", + "tid": 680941662498620, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111554.0", + "sz": "0.00011", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.58457", + "dir": "Close Short", + "closedPnl": "0.134618", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "0.002576", + "tid": 594296343534558, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111555.0", + "sz": "0.08395", + "side": "B", + "time": 1761075128124, + "startPosition": "-307.58446", + "dir": "Close Short", + "closedPnl": "102.65406", + "hash": "0x4d056d0f2b1220e34e7f042dee12340204ad00f4c6153fb5f0ce1861ea15facd", + "oid": 208537446492, + "crossed": true, + "fee": "1.966658", + "tid": 481453965823619, + "cloid": "0x00000000000000000000001603000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111555.0", + "sz": "0.0896", + "side": "B", + "time": 1761075133026, + "startPosition": "-307.50051", + "dir": "Close Short", + "closedPnl": "109.56288", + "hash": "0x235563aa17e1100024cf042dee126a020474008fb2e42ed2c71e0efcd6e4e9ea", + "oid": 208537517628, + "crossed": true, + "fee": "2.099018", + "tid": 758510782518903, + "cloid": "0x00000000000000000000001603000143", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111555.0", + "sz": "0.00011", + "side": "B", + "time": 1761075137661, + "startPosition": "-307.41091", + "dir": "Close Short", + "closedPnl": "0.134508", + "hash": "0x1711394f751b49d1188a042dee129e0206bb0035101e68a3bad9e4a2341f23bb", + "oid": 208537580206, + "crossed": true, + "fee": "0.002576", + "tid": 155266873018920, + "cloid": "0x00000000000000000000001603000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111556.0", + "sz": "0.00011", + "side": "B", + "time": 1761075137661, + "startPosition": "-307.4108", + "dir": "Close Short", + "closedPnl": "0.134398", + "hash": "0x1711394f751b49d1188a042dee129e0206bb0035101e68a3bad9e4a2341f23bb", + "oid": 208537580206, + "crossed": true, + "fee": "0.002576", + "tid": 1105651128237953, + "cloid": "0x00000000000000000000001603000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111557.0", + "sz": "0.00011", + "side": "B", + "time": 1761075137661, + "startPosition": "-307.41069", + "dir": "Close Short", + "closedPnl": "0.134288", + "hash": "0x1711394f751b49d1188a042dee129e0206bb0035101e68a3bad9e4a2341f23bb", + "oid": 208537580206, + "crossed": true, + "fee": "0.002576", + "tid": 873440948638588, + "cloid": "0x00000000000000000000001603000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111558.0", + "sz": "0.00011", + "side": "B", + "time": 1761075137661, + "startPosition": "-307.41058", + "dir": "Close Short", + "closedPnl": "0.134178", + "hash": "0x1711394f751b49d1188a042dee129e0206bb0035101e68a3bad9e4a2341f23bb", + "oid": 208537580206, + "crossed": true, + "fee": "0.002576", + "tid": 238545606685200, + "cloid": "0x00000000000000000000001603000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111559.0", + "sz": "0.00014", + "side": "B", + "time": 1761075137661, + "startPosition": "-307.41047", + "dir": "Close Short", + "closedPnl": "0.170632", + "hash": "0x1711394f751b49d1188a042dee129e0206bb0035101e68a3bad9e4a2341f23bb", + "oid": 208537580206, + "crossed": true, + "fee": "0.003279", + "tid": 395679332514420, + "cloid": "0x00000000000000000000001603000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111559.0", + "sz": "0.00011", + "side": "B", + "time": 1761075137661, + "startPosition": "-307.41033", + "dir": "Close Short", + "closedPnl": "0.134068", + "hash": "0x1711394f751b49d1188a042dee129e0206bb0035101e68a3bad9e4a2341f23bb", + "oid": 208537580206, + "crossed": true, + "fee": "0.002577", + "tid": 817477453023911, + "cloid": "0x00000000000000000000001603000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111560.0", + "sz": "0.00018", + "side": "B", + "time": 1761075137661, + "startPosition": "-307.41022", + "dir": "Close Short", + "closedPnl": "0.219204", + "hash": "0x1711394f751b49d1188a042dee129e0206bb0035101e68a3bad9e4a2341f23bb", + "oid": 208537580206, + "crossed": true, + "fee": "0.004216", + "tid": 820821207112630, + "cloid": "0x00000000000000000000001603000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111560.0", + "sz": "0.00011", + "side": "B", + "time": 1761075137661, + "startPosition": "-307.41004", + "dir": "Close Short", + "closedPnl": "0.133958", + "hash": "0x1711394f751b49d1188a042dee129e0206bb0035101e68a3bad9e4a2341f23bb", + "oid": 208537580206, + "crossed": true, + "fee": "0.002577", + "tid": 290414578215273, + "cloid": "0x00000000000000000000001603000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111561.0", + "sz": "0.00011", + "side": "B", + "time": 1761075137661, + "startPosition": "-307.40993", + "dir": "Close Short", + "closedPnl": "0.133848", + "hash": "0x1711394f751b49d1188a042dee129e0206bb0035101e68a3bad9e4a2341f23bb", + "oid": 208537580206, + "crossed": true, + "fee": "0.002577", + "tid": 281531557146286, + "cloid": "0x00000000000000000000001603000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111561.0", + "sz": "0.03525", + "side": "B", + "time": 1761075137661, + "startPosition": "-307.40982", + "dir": "Close Short", + "closedPnl": "42.8922", + "hash": "0x1711394f751b49d1188a042dee129e0206bb0035101e68a3bad9e4a2341f23bb", + "oid": 208537580206, + "crossed": true, + "fee": "0.82583", + "tid": 382512032924789, + "cloid": "0x00000000000000000000001603000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111562.0", + "sz": "0.00011", + "side": "B", + "time": 1761075137661, + "startPosition": "-307.37457", + "dir": "Close Short", + "closedPnl": "0.133738", + "hash": "0x1711394f751b49d1188a042dee129e0206bb0035101e68a3bad9e4a2341f23bb", + "oid": 208537580206, + "crossed": true, + "fee": "0.002577", + "tid": 567002491826200, + "cloid": "0x00000000000000000000001603000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111563.0", + "sz": "0.00014", + "side": "B", + "time": 1761075137661, + "startPosition": "-307.37446", + "dir": "Close Short", + "closedPnl": "0.170072", + "hash": "0x1711394f751b49d1188a042dee129e0206bb0035101e68a3bad9e4a2341f23bb", + "oid": 208537580206, + "crossed": true, + "fee": "0.003279", + "tid": 877948364273358, + "cloid": "0x00000000000000000000001603000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111563.0", + "sz": "0.0001", + "side": "B", + "time": 1761075137661, + "startPosition": "-307.37432", + "dir": "Close Short", + "closedPnl": "0.12148", + "hash": "0x1711394f751b49d1188a042dee129e0206bb0035101e68a3bad9e4a2341f23bb", + "oid": 208537580206, + "crossed": true, + "fee": "0.002342", + "tid": 104645187458112, + "cloid": "0x00000000000000000000001603000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111563.0", + "sz": "0.00011", + "side": "B", + "time": 1761075137661, + "startPosition": "-307.37422", + "dir": "Close Short", + "closedPnl": "0.133628", + "hash": "0x1711394f751b49d1188a042dee129e0206bb0035101e68a3bad9e4a2341f23bb", + "oid": 208537580206, + "crossed": true, + "fee": "0.002577", + "tid": 634666413653379, + "cloid": "0x00000000000000000000001603000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111563.0", + "sz": "0.0528", + "side": "B", + "time": 1761075137661, + "startPosition": "-307.37411", + "dir": "Close Short", + "closedPnl": "64.14144", + "hash": "0x1711394f751b49d1188a042dee129e0206bb0035101e68a3bad9e4a2341f23bb", + "oid": 208537580206, + "crossed": true, + "fee": "1.23701", + "tid": 914976796216775, + "cloid": "0x00000000000000000000001603000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111580.0", + "sz": "0.08959", + "side": "B", + "time": 1761075141899, + "startPosition": "-307.32131", + "dir": "Close Short", + "closedPnl": "107.310902", + "hash": "0xa003b56cbf4460bba17d042dee12cb0204b500525a477f8d43cc60bf7e483aa6", + "oid": 208537653510, + "crossed": true, + "fee": "2.099254", + "tid": 432085946708086, + "cloid": "0x00000000000000000000001603000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111595.0", + "sz": "0.04485", + "side": "B", + "time": 1761075145622, + "startPosition": "-307.23172", + "dir": "Close Short", + "closedPnl": "53.04858", + "hash": "0xad7cc51b690acce0aef6042dee12f502035f0001040debb25145706e280ea6cb", + "oid": 208537707531, + "crossed": true, + "fee": "1.051057", + "tid": 39127054619712, + "cloid": "0x00000000000000000000001603000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111595.0", + "sz": "0.04473", + "side": "B", + "time": 1761075145622, + "startPosition": "-307.18687", + "dir": "Close Short", + "closedPnl": "52.906644", + "hash": "0xad7cc51b690acce0aef6042dee12f502035f0001040debb25145706e280ea6cb", + "oid": 208537707531, + "crossed": true, + "fee": "1.048245", + "tid": 426681685587230, + "cloid": "0x00000000000000000000001603000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111595.0", + "sz": "0.08956", + "side": "B", + "time": 1761075151613, + "startPosition": "-307.14214", + "dir": "Close Short", + "closedPnl": "105.931568", + "hash": "0x8137027c60ed6c4f82b0042dee133c0203ea0061fbe08b2124ffadcf1fe1463a", + "oid": 208537766450, + "crossed": true, + "fee": "2.098834", + "tid": 856936528707593, + "cloid": "0x00000000000000000000001603000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111595.0", + "sz": "0.02266", + "side": "B", + "time": 1761075158247, + "startPosition": "-307.05258", + "dir": "Close Short", + "closedPnl": "26.802248", + "hash": "0xa9e30ef8bc93e4b6ab5c042dee139602031b00de579703884dabba4b7b97bea1", + "oid": 208537871911, + "crossed": true, + "fee": "0.531035", + "tid": 394392418530132, + "cloid": "0x00000000000000000000001603000148", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111595.0", + "sz": "0.06689", + "side": "B", + "time": 1761075158247, + "startPosition": "-307.02992", + "dir": "Close Short", + "closedPnl": "79.117492", + "hash": "0xa9e30ef8bc93e4b6ab5c042dee139602031b00de579703884dabba4b7b97bea1", + "oid": 208537871911, + "crossed": true, + "fee": "1.567563", + "tid": 1026021957230933, + "cloid": "0x00000000000000000000001603000148", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111581.0", + "sz": "0.02381", + "side": "B", + "time": 1761075163021, + "startPosition": "-306.96303", + "dir": "Close Short", + "closedPnl": "28.495808", + "hash": "0x4b61931f002a4c6f4cdb042dee13d1020e5500049b2d6b41ef2a3e71bf2e2659", + "oid": 208537939152, + "crossed": true, + "fee": "0.557916", + "tid": 488333538264174, + "cloid": "0x00000000000000000000001603000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111581.0", + "sz": "0.06577", + "side": "B", + "time": 1761075163021, + "startPosition": "-306.93922", + "dir": "Close Short", + "closedPnl": "78.713536", + "hash": "0x4b61931f002a4c6f4cdb042dee13d1020e5500049b2d6b41ef2a3e71bf2e2659", + "oid": 208537939152, + "crossed": true, + "fee": "1.541123", + "tid": 112825408384359, + "cloid": "0x00000000000000000000001603000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111527.0", + "sz": "0.0896", + "side": "B", + "time": 1761075165898, + "startPosition": "-306.87345", + "dir": "Close Short", + "closedPnl": "112.07168", + "hash": "0x3344064ae9f7963834bd042dee13f2020b95003084fab50ad70cb19da8fb7022", + "oid": 208538011248, + "crossed": true, + "fee": "2.098492", + "tid": 952850881056309, + "cloid": "0x00000000000000000000001603000150", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111545.0", + "sz": "0.0896", + "side": "B", + "time": 1761075170399, + "startPosition": "-306.78385", + "dir": "Close Short", + "closedPnl": "110.45888", + "hash": "0xf760597836f0e248f8da042dee142a0205cd005dd1f4011b9b2904caf5f4bc33", + "oid": 208538080163, + "crossed": true, + "fee": "2.09883", + "tid": 224165031099103, + "cloid": "0x00000000000000000000001603000151", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111545.0", + "sz": "0.0896", + "side": "B", + "time": 1761075172229, + "startPosition": "-306.69425", + "dir": "Close Short", + "closedPnl": "110.45888", + "hash": "0x535e461f6c696b5454d8042dee143e0204d80005076c8a26f726f1722b6d453e", + "oid": 208538101191, + "crossed": true, + "fee": "2.09883", + "tid": 253089169258991, + "cloid": "0x00000000000000000000001603000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111552.0", + "sz": "0.08961", + "side": "B", + "time": 1761075175977, + "startPosition": "-306.60465", + "dir": "Close Short", + "closedPnl": "109.843938", + "hash": "0xb2b615c0f5dd053ab42f042dee146502018400a690d0240c567ec113b4d0df25", + "oid": 208538144768, + "crossed": true, + "fee": "2.099196", + "tid": 292310096465319, + "cloid": "0x00000000000000000000001603000153", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111552.0", + "sz": "0.00011", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.51504", + "dir": "Close Short", + "closedPnl": "0.134838", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "0.002576", + "tid": 541619226226307, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111552.0", + "sz": "0.001", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.51493", + "dir": "Close Short", + "closedPnl": "1.2258", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "0.023425", + "tid": 320253221822167, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111553.0", + "sz": "0.00011", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.51393", + "dir": "Close Short", + "closedPnl": "0.134728", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "0.002576", + "tid": 311722262751043, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111554.0", + "sz": "0.00011", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.51382", + "dir": "Close Short", + "closedPnl": "0.134618", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "0.002576", + "tid": 6492033180810, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111555.0", + "sz": "0.00897", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.51371", + "dir": "Close Short", + "closedPnl": "10.968516", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "0.210136", + "tid": 660718999668275, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111555.0", + "sz": "0.00011", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.50474", + "dir": "Close Short", + "closedPnl": "0.134508", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "0.002576", + "tid": 645370128442124, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111555.0", + "sz": "0.00014", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.50463", + "dir": "Close Short", + "closedPnl": "0.171192", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "0.003279", + "tid": 871683909767308, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111556.0", + "sz": "0.00011", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.50449", + "dir": "Close Short", + "closedPnl": "0.134398", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "0.002576", + "tid": 1078617357609797, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111557.0", + "sz": "0.00011", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.50438", + "dir": "Close Short", + "closedPnl": "0.134288", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "0.002576", + "tid": 551088811617561, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111558.0", + "sz": "0.00011", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.50427", + "dir": "Close Short", + "closedPnl": "0.134178", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "0.002576", + "tid": 750521102832306, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111559.0", + "sz": "0.00014", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.50416", + "dir": "Close Short", + "closedPnl": "0.170632", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "0.003279", + "tid": 924545109360932, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111559.0", + "sz": "0.00011", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.50402", + "dir": "Close Short", + "closedPnl": "0.134068", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "0.002577", + "tid": 398562635335968, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111560.0", + "sz": "0.00018", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.50391", + "dir": "Close Short", + "closedPnl": "0.219204", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "0.004216", + "tid": 606303586790607, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111560.0", + "sz": "0.00011", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.50373", + "dir": "Close Short", + "closedPnl": "0.133958", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "0.002577", + "tid": 206075654389234, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111561.0", + "sz": "0.00011", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.50362", + "dir": "Close Short", + "closedPnl": "0.133848", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "0.002577", + "tid": 367378499980806, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111562.0", + "sz": "0.00011", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.50351", + "dir": "Close Short", + "closedPnl": "0.133738", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "0.002577", + "tid": 131523664858192, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111563.0", + "sz": "0.00014", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.5034", + "dir": "Close Short", + "closedPnl": "0.170072", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "0.003279", + "tid": 443526172779740, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111563.0", + "sz": "0.00011", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.50326", + "dir": "Close Short", + "closedPnl": "0.133628", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "0.002577", + "tid": 785795571903769, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111563.0", + "sz": "0.07771", + "side": "B", + "time": 1761075182338, + "startPosition": "-306.50315", + "dir": "Close Short", + "closedPnl": "94.402108", + "hash": "0xc86878b67fce1426c9e2042dee14c20203ea009c1ac132f86c3124093ec1ee11", + "oid": 208538216691, + "crossed": true, + "fee": "1.820607", + "tid": 256707367765338, + "cloid": "0x00000000000000000000001603000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111563.0", + "sz": "0.08959", + "side": "B", + "time": 1761075185155, + "startPosition": "-306.42544", + "dir": "Close Short", + "closedPnl": "108.833932", + "hash": "0x830c369dca02c7e28485042dee14e70202b500836505e6b426d4e1f08906a1cd", + "oid": 208538255813, + "crossed": true, + "fee": "2.098935", + "tid": 955813445149854, + "cloid": "0x00000000000000000000001603000155", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111583.0", + "sz": "0.08959", + "side": "B", + "time": 1761075191896, + "startPosition": "-306.33585", + "dir": "Close Short", + "closedPnl": "107.042132", + "hash": "0xfcc0ce600edfbb88fe3a042dee153c0205210045a9d2da5ba08979b2cdd39573", + "oid": 208538338070, + "crossed": true, + "fee": "2.099311", + "tid": 767712054827727, + "cloid": "0x00000000000000000000001603000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111604.0", + "sz": "0.08957", + "side": "B", + "time": 1761075199810, + "startPosition": "-306.24626", + "dir": "Close Short", + "closedPnl": "105.137266", + "hash": "0x35e66a4ebc25b4653760042dee15980202f200345728d337d9af15a17b298e4f", + "oid": 208538428578, + "crossed": true, + "fee": "2.099237", + "tid": 63107233785329, + "cloid": "0x00000000000000000000001603000157", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111604.0", + "sz": "0.08955", + "side": "B", + "time": 1761075202101, + "startPosition": "-306.15669", + "dir": "Close Short", + "closedPnl": "105.11379", + "hash": "0x17c1a555c264d119193b042dee15b8020456003b5d67efebbb8a50a88168ab03", + "oid": 208538452929, + "crossed": true, + "fee": "2.098769", + "tid": 138494695248794, + "cloid": "0x00000000000000000000001603000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111597.0", + "sz": "0.08956", + "side": "B", + "time": 1761075205323, + "startPosition": "-306.06714", + "dir": "Close Short", + "closedPnl": "105.752448", + "hash": "0x4933e4b0ba622daf4aad042dee15df0202d3009655654c81ecfc900379660799", + "oid": 208538491487, + "crossed": true, + "fee": "2.098871", + "tid": 788419305057582, + "cloid": "0x00000000000000000000001603000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111593.0", + "sz": "0.08956", + "side": "B", + "time": 1761075210770, + "startPosition": "-305.97758", + "dir": "Close Short", + "closedPnl": "106.110688", + "hash": "0xe688ceb86295cc52e802042dee16260203ab009dfd98eb248a517a0b2199a63d", + "oid": 208538570591, + "crossed": true, + "fee": "2.098796", + "tid": 282054378671342, + "cloid": "0x00000000000000000000001603000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111571.0", + "sz": "0.08958", + "side": "B", + "time": 1761075213073, + "startPosition": "-305.88802", + "dir": "Close Short", + "closedPnl": "108.105144", + "hash": "0xa41b23408ca71530a594042dee1645020319002627aa340247e3ce934baaef1b", + "oid": 208538622451, + "crossed": true, + "fee": "2.098851", + "tid": 525616373181571, + "cloid": "0x00000000000000000000001603000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111562.0", + "sz": "0.08959", + "side": "B", + "time": 1761075221210, + "startPosition": "-305.79844", + "dir": "Close Short", + "closedPnl": "108.923522", + "hash": "0x6d895cdd11276b116f03042dee16b20201c000c2ac2a89e31152082fd02b44fc", + "oid": 208538743849, + "crossed": true, + "fee": "2.098916", + "tid": 566746821417442, + "cloid": "0x00000000000000000000001603000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111562.0", + "sz": "0.001", + "side": "B", + "time": 1761075226383, + "startPosition": "-305.70885", + "dir": "Close Short", + "closedPnl": "1.2158", + "hash": "0x9899ede706bc342a9a13042dee16f202044100cca1bf52fc3c629939c5b00e15", + "oid": 208538808427, + "crossed": true, + "fee": "0.023428", + "tid": 55284166181431, + "cloid": "0x00000000000000000000001603000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111562.0", + "sz": "0.00011", + "side": "B", + "time": 1761075226383, + "startPosition": "-305.70785", + "dir": "Close Short", + "closedPnl": "0.133738", + "hash": "0x9899ede706bc342a9a13042dee16f202044100cca1bf52fc3c629939c5b00e15", + "oid": 208538808427, + "crossed": true, + "fee": "0.002577", + "tid": 1019599327599712, + "cloid": "0x00000000000000000000001603000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111563.0", + "sz": "0.00011", + "side": "B", + "time": 1761075226383, + "startPosition": "-305.70774", + "dir": "Close Short", + "closedPnl": "0.133628", + "hash": "0x9899ede706bc342a9a13042dee16f202044100cca1bf52fc3c629939c5b00e15", + "oid": 208538808427, + "crossed": true, + "fee": "0.002577", + "tid": 181502642015223, + "cloid": "0x00000000000000000000001603000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111564.0", + "sz": "0.00011", + "side": "B", + "time": 1761075226383, + "startPosition": "-305.70763", + "dir": "Close Short", + "closedPnl": "0.133518", + "hash": "0x9899ede706bc342a9a13042dee16f202044100cca1bf52fc3c629939c5b00e15", + "oid": 208538808427, + "crossed": true, + "fee": "0.002577", + "tid": 455819566862482, + "cloid": "0x00000000000000000000001603000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111565.0", + "sz": "0.00011", + "side": "B", + "time": 1761075226383, + "startPosition": "-305.70752", + "dir": "Close Short", + "closedPnl": "0.133408", + "hash": "0x9899ede706bc342a9a13042dee16f202044100cca1bf52fc3c629939c5b00e15", + "oid": 208538808427, + "crossed": true, + "fee": "0.002577", + "tid": 779937756041540, + "cloid": "0x00000000000000000000001603000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111566.0", + "sz": "0.00011", + "side": "B", + "time": 1761075226383, + "startPosition": "-305.70741", + "dir": "Close Short", + "closedPnl": "0.133298", + "hash": "0x9899ede706bc342a9a13042dee16f202044100cca1bf52fc3c629939c5b00e15", + "oid": 208538808427, + "crossed": true, + "fee": "0.002577", + "tid": 190309455491152, + "cloid": "0x00000000000000000000001603000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111567.0", + "sz": "0.001", + "side": "B", + "time": 1761075226383, + "startPosition": "-305.7073", + "dir": "Close Short", + "closedPnl": "1.2108", + "hash": "0x9899ede706bc342a9a13042dee16f202044100cca1bf52fc3c629939c5b00e15", + "oid": 208538808427, + "crossed": true, + "fee": "0.023429", + "tid": 696499776598157, + "cloid": "0x00000000000000000000001603000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111567.0", + "sz": "0.00014", + "side": "B", + "time": 1761075226383, + "startPosition": "-305.7063", + "dir": "Close Short", + "closedPnl": "0.169512", + "hash": "0x9899ede706bc342a9a13042dee16f202044100cca1bf52fc3c629939c5b00e15", + "oid": 208538808427, + "crossed": true, + "fee": "0.00328", + "tid": 660723809949555, + "cloid": "0x00000000000000000000001603000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111567.0", + "sz": "0.00011", + "side": "B", + "time": 1761075226383, + "startPosition": "-305.70616", + "dir": "Close Short", + "closedPnl": "0.133188", + "hash": "0x9899ede706bc342a9a13042dee16f202044100cca1bf52fc3c629939c5b00e15", + "oid": 208538808427, + "crossed": true, + "fee": "0.002577", + "tid": 1109355369641970, + "cloid": "0x00000000000000000000001603000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111568.0", + "sz": "0.00011", + "side": "B", + "time": 1761075226383, + "startPosition": "-305.70605", + "dir": "Close Short", + "closedPnl": "0.133078", + "hash": "0x9899ede706bc342a9a13042dee16f202044100cca1bf52fc3c629939c5b00e15", + "oid": 208538808427, + "crossed": true, + "fee": "0.002577", + "tid": 631418392834968, + "cloid": "0x00000000000000000000001603000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111569.0", + "sz": "0.03525", + "side": "B", + "time": 1761075226383, + "startPosition": "-305.70594", + "dir": "Close Short", + "closedPnl": "42.6102", + "hash": "0x9899ede706bc342a9a13042dee16f202044100cca1bf52fc3c629939c5b00e15", + "oid": 208538808427, + "crossed": true, + "fee": "0.825889", + "tid": 1091315343861444, + "cloid": "0x00000000000000000000001603000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111569.0", + "sz": "0.00011", + "side": "B", + "time": 1761075226383, + "startPosition": "-305.67069", + "dir": "Close Short", + "closedPnl": "0.132968", + "hash": "0x9899ede706bc342a9a13042dee16f202044100cca1bf52fc3c629939c5b00e15", + "oid": 208538808427, + "crossed": true, + "fee": "0.002577", + "tid": 401672568561268, + "cloid": "0x00000000000000000000001603000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111570.0", + "sz": "0.00011", + "side": "B", + "time": 1761075226383, + "startPosition": "-305.67058", + "dir": "Close Short", + "closedPnl": "0.132858", + "hash": "0x9899ede706bc342a9a13042dee16f202044100cca1bf52fc3c629939c5b00e15", + "oid": 208538808427, + "crossed": true, + "fee": "0.002577", + "tid": 404008812763263, + "cloid": "0x00000000000000000000001603000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111570.0", + "sz": "0.017", + "side": "B", + "time": 1761075226383, + "startPosition": "-305.67047", + "dir": "Close Short", + "closedPnl": "20.5326", + "hash": "0x9899ede706bc342a9a13042dee16f202044100cca1bf52fc3c629939c5b00e15", + "oid": 208538808427, + "crossed": true, + "fee": "0.398304", + "tid": 873053708934194, + "cloid": "0x00000000000000000000001603000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111571.0", + "sz": "0.00011", + "side": "B", + "time": 1761075226383, + "startPosition": "-305.65347", + "dir": "Close Short", + "closedPnl": "0.132748", + "hash": "0x9899ede706bc342a9a13042dee16f202044100cca1bf52fc3c629939c5b00e15", + "oid": 208538808427, + "crossed": true, + "fee": "0.002577", + "tid": 965595079814386, + "cloid": "0x00000000000000000000001603000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111571.0", + "sz": "0.0341", + "side": "B", + "time": 1761075226383, + "startPosition": "-305.65336", + "dir": "Close Short", + "closedPnl": "41.15188", + "hash": "0x9899ede706bc342a9a13042dee16f202044100cca1bf52fc3c629939c5b00e15", + "oid": 208538808427, + "crossed": true, + "fee": "0.798959", + "tid": 912693549293939, + "cloid": "0x00000000000000000000001603000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111584.0", + "sz": "0.08958", + "side": "B", + "time": 1761075233358, + "startPosition": "-305.61926", + "dir": "Close Short", + "closedPnl": "106.940604", + "hash": "0x52b5fa8c22a94e4a542f042dee173e0202dc0071bdac6d1cf67ea5dee1ad2834", + "oid": 208538893929, + "crossed": true, + "fee": "2.099095", + "tid": 389041902661580, + "cloid": "0x00000000000000000000001603000164", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52968", + "dir": "Close Short", + "closedPnl": "0.130658", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002577", + "tid": 785683068551901, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111591.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52957", + "dir": "Close Short", + "closedPnl": "0.130548", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002577", + "tid": 807067669098226, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111592.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52946", + "dir": "Close Short", + "closedPnl": "0.130438", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002577", + "tid": 88993741872246, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111593.0", + "sz": "0.00014", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52935", + "dir": "Close Short", + "closedPnl": "0.165872", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.00328", + "tid": 570244032933838, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111593.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52921", + "dir": "Close Short", + "closedPnl": "0.130328", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002577", + "tid": 5892416193001, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111594.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.5291", + "dir": "Close Short", + "closedPnl": "0.130218", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002577", + "tid": 973334700702297, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111595.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52899", + "dir": "Close Short", + "closedPnl": "0.130108", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002577", + "tid": 109540358864161, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111596.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52888", + "dir": "Close Short", + "closedPnl": "0.129998", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002577", + "tid": 834257249875344, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111597.0", + "sz": "0.00014", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52877", + "dir": "Close Short", + "closedPnl": "0.165312", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.00328", + "tid": 366485301987015, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111597.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52863", + "dir": "Close Short", + "closedPnl": "0.129888", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002577", + "tid": 1082638658732928, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111598.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52852", + "dir": "Close Short", + "closedPnl": "0.129778", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002577", + "tid": 732932302571899, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111599.0", + "sz": "0.00018", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52841", + "dir": "Close Short", + "closedPnl": "0.212184", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.004218", + "tid": 514534317259676, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111599.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52823", + "dir": "Close Short", + "closedPnl": "0.129668", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002577", + "tid": 782076796058718, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111600.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52812", + "dir": "Close Short", + "closedPnl": "0.129558", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002577", + "tid": 903856427531273, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111601.0", + "sz": "0.00014", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52801", + "dir": "Close Short", + "closedPnl": "0.164752", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.003281", + "tid": 95098592442835, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111601.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52787", + "dir": "Close Short", + "closedPnl": "0.129448", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002577", + "tid": 281192416344189, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111602.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52776", + "dir": "Close Short", + "closedPnl": "0.129338", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002578", + "tid": 274499131997424, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111603.0", + "sz": "0.00017", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52765", + "dir": "Close Short", + "closedPnl": "0.199716", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.003984", + "tid": 486405786080774, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111603.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52748", + "dir": "Close Short", + "closedPnl": "0.129228", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002578", + "tid": 53987626861438, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111604.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52737", + "dir": "Close Short", + "closedPnl": "0.129118", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002578", + "tid": 327199516795588, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111605.0", + "sz": "0.00014", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52726", + "dir": "Close Short", + "closedPnl": "0.164192", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.003281", + "tid": 833571474505110, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111605.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52712", + "dir": "Close Short", + "closedPnl": "0.129008", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002578", + "tid": 842024488209198, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111606.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52701", + "dir": "Close Short", + "closedPnl": "0.128898", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002578", + "tid": 999445872527561, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111607.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.5269", + "dir": "Close Short", + "closedPnl": "0.128788", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002578", + "tid": 778730594310124, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111608.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52679", + "dir": "Close Short", + "closedPnl": "0.128678", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002578", + "tid": 482756714642398, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111609.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52668", + "dir": "Close Short", + "closedPnl": "0.128568", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002578", + "tid": 894062967054302, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111610.0", + "sz": "0.00014", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52657", + "dir": "Close Short", + "closedPnl": "0.163492", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.003281", + "tid": 1121886305159033, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111610.0", + "sz": "0.00089", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52643", + "dir": "Close Short", + "closedPnl": "1.039342", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.020859", + "tid": 717066510672974, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111610.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52554", + "dir": "Close Short", + "closedPnl": "0.128458", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002578", + "tid": 579239170982753, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111610.0", + "sz": "0.03525", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.52543", + "dir": "Close Short", + "closedPnl": "41.16495", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.826193", + "tid": 250585036642945, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111611.0", + "sz": "0.00011", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.49018", + "dir": "Close Short", + "closedPnl": "0.128348", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "0.002578", + "tid": 234007226962961, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111611.0", + "sz": "0.04995", + "side": "B", + "time": 1761075235425, + "startPosition": "-305.49007", + "dir": "Close Short", + "closedPnl": "58.28166", + "hash": "0x2d64774c2f2efe772ede042dee17570202a70031ca221d49d12d229eee22d861", + "oid": 208538919173, + "crossed": true, + "fee": "1.170743", + "tid": 897469288599991, + "cloid": "0x00000000000000000000001603000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111612.0", + "sz": "0.08955", + "side": "B", + "time": 1761075240763, + "startPosition": "-305.44012", + "dir": "Close Short", + "closedPnl": "104.39739", + "hash": "0x47adbedc6afdc99a4927042dee179c02025300c205f0e86ceb766a2f29f1a384", + "oid": 208538967843, + "crossed": true, + "fee": "2.098919", + "tid": 789430976657572, + "cloid": "0x00000000000000000000001603000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111582.0", + "sz": "0.08957", + "side": "B", + "time": 1761075242713, + "startPosition": "-305.35057", + "dir": "Close Short", + "closedPnl": "107.107806", + "hash": "0x4ad11e628326d30b4c4a042dee17b502039100481e29f1ddee99c9b5422aacf5", + "oid": 208539008686, + "crossed": true, + "fee": "2.098823", + "tid": 976977431196116, + "cloid": "0x00000000000000000000001603000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111570.0", + "sz": "0.01833", + "side": "B", + "time": 1761075248534, + "startPosition": "-305.261", + "dir": "Close Short", + "closedPnl": "22.138974", + "hash": "0xb709764332b52a29b883042dee17fa0201d90028cdb848fb5ad22195f1b90414", + "oid": 208539097964, + "crossed": true, + "fee": "0.429466", + "tid": 70908923660403, + "cloid": "0x00000000000000000000001603000168", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111570.0", + "sz": "0.07126", + "side": "B", + "time": 1761075248534, + "startPosition": "-305.24267", + "dir": "Close Short", + "closedPnl": "86.067828", + "hash": "0xb709764332b52a29b883042dee17fa0201d90028cdb848fb5ad22195f1b90414", + "oid": 208539097964, + "crossed": true, + "fee": "1.6696", + "tid": 261012348016604, + "cloid": "0x00000000000000000000001603000168", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111570.0", + "sz": "0.04752", + "side": "B", + "time": 1761075250560, + "startPosition": "-305.17141", + "dir": "Close Short", + "closedPnl": "57.394656", + "hash": "0x141cba78b9b206941596042dee1811020316005e54b52566b7e565cb78b5e07e", + "oid": 208539126094, + "crossed": true, + "fee": "1.113379", + "tid": 813233697735168, + "cloid": "0x00000000000000000000001603000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111570.0", + "sz": "0.04207", + "side": "B", + "time": 1761075250560, + "startPosition": "-305.12389", + "dir": "Close Short", + "closedPnl": "50.812146", + "hash": "0x141cba78b9b206941596042dee1811020316005e54b52566b7e565cb78b5e07e", + "oid": 208539126094, + "crossed": true, + "fee": "0.985687", + "tid": 1059226861997676, + "cloid": "0x00000000000000000000001603000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111570.0", + "sz": "0.08959", + "side": "B", + "time": 1761075260459, + "startPosition": "-305.08182", + "dir": "Close Short", + "closedPnl": "108.206802", + "hash": "0xc9c4800971b686d4cb3e042dee188602038d00ef0cb9a5a66d8d2b5c30ba60bf", + "oid": 208539201895, + "crossed": true, + "fee": "2.099066", + "tid": 519650364246540, + "cloid": "0x00000000000000000000001603000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111567.0", + "sz": "0.0896", + "side": "B", + "time": 1761075263399, + "startPosition": "-304.99223", + "dir": "Close Short", + "closedPnl": "108.48768", + "hash": "0x63f42f89ab5c284a656d042dee18a9020248006f465f471c07bcdadc6a500235", + "oid": 208539231696, + "crossed": true, + "fee": "2.099244", + "tid": 198934669330373, + "cloid": "0x00000000000000000000001603000171", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111567.0", + "sz": "0.001", + "side": "B", + "time": 1761075269893, + "startPosition": "-304.90263", + "dir": "Close Short", + "closedPnl": "1.2108", + "hash": "0xcb83121350431ac5ccfc042dee18f8020aa400f8eb4639976f4bbd660f46f4b0", + "oid": 208539287264, + "crossed": true, + "fee": "0.023429", + "tid": 222126064095187, + "cloid": "0x00000000000000000000001603000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111567.0", + "sz": "0.00022", + "side": "B", + "time": 1761075269893, + "startPosition": "-304.90163", + "dir": "Close Short", + "closedPnl": "0.266376", + "hash": "0xcb83121350431ac5ccfc042dee18f8020aa400f8eb4639976f4bbd660f46f4b0", + "oid": 208539287264, + "crossed": true, + "fee": "0.005154", + "tid": 438685311898786, + "cloid": "0x00000000000000000000001603000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111567.0", + "sz": "0.00011", + "side": "B", + "time": 1761075269893, + "startPosition": "-304.90141", + "dir": "Close Short", + "closedPnl": "0.133188", + "hash": "0xcb83121350431ac5ccfc042dee18f8020aa400f8eb4639976f4bbd660f46f4b0", + "oid": 208539287264, + "crossed": true, + "fee": "0.002577", + "tid": 914553143911693, + "cloid": "0x00000000000000000000001603000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111568.0", + "sz": "0.00011", + "side": "B", + "time": 1761075269893, + "startPosition": "-304.9013", + "dir": "Close Short", + "closedPnl": "0.133078", + "hash": "0xcb83121350431ac5ccfc042dee18f8020aa400f8eb4639976f4bbd660f46f4b0", + "oid": 208539287264, + "crossed": true, + "fee": "0.002577", + "tid": 400384704100023, + "cloid": "0x00000000000000000000001603000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111570.0", + "sz": "0.00011", + "side": "B", + "time": 1761075269893, + "startPosition": "-304.90119", + "dir": "Close Short", + "closedPnl": "0.132858", + "hash": "0xcb83121350431ac5ccfc042dee18f8020aa400f8eb4639976f4bbd660f46f4b0", + "oid": 208539287264, + "crossed": true, + "fee": "0.002577", + "tid": 77266678605850, + "cloid": "0x00000000000000000000001603000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111570.0", + "sz": "0.00897", + "side": "B", + "time": 1761075269893, + "startPosition": "-304.90108", + "dir": "Close Short", + "closedPnl": "10.833966", + "hash": "0xcb83121350431ac5ccfc042dee18f8020aa400f8eb4639976f4bbd660f46f4b0", + "oid": 208539287264, + "crossed": true, + "fee": "0.210164", + "tid": 266985349255605, + "cloid": "0x00000000000000000000001603000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111571.0", + "sz": "0.00011", + "side": "B", + "time": 1761075269893, + "startPosition": "-304.89211", + "dir": "Close Short", + "closedPnl": "0.132748", + "hash": "0xcb83121350431ac5ccfc042dee18f8020aa400f8eb4639976f4bbd660f46f4b0", + "oid": 208539287264, + "crossed": true, + "fee": "0.002577", + "tid": 755277748675349, + "cloid": "0x00000000000000000000001603000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111572.0", + "sz": "0.00011", + "side": "B", + "time": 1761075269893, + "startPosition": "-304.892", + "dir": "Close Short", + "closedPnl": "0.132638", + "hash": "0xcb83121350431ac5ccfc042dee18f8020aa400f8eb4639976f4bbd660f46f4b0", + "oid": 208539287264, + "crossed": true, + "fee": "0.002577", + "tid": 959058826439655, + "cloid": "0x00000000000000000000001603000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111572.0", + "sz": "0.00014", + "side": "B", + "time": 1761075269893, + "startPosition": "-304.89189", + "dir": "Close Short", + "closedPnl": "0.168812", + "hash": "0xcb83121350431ac5ccfc042dee18f8020aa400f8eb4639976f4bbd660f46f4b0", + "oid": 208539287264, + "crossed": true, + "fee": "0.00328", + "tid": 88457234833499, + "cloid": "0x00000000000000000000001603000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111573.0", + "sz": "0.00011", + "side": "B", + "time": 1761075269893, + "startPosition": "-304.89175", + "dir": "Close Short", + "closedPnl": "0.132528", + "hash": "0xcb83121350431ac5ccfc042dee18f8020aa400f8eb4639976f4bbd660f46f4b0", + "oid": 208539287264, + "crossed": true, + "fee": "0.002577", + "tid": 582557493499748, + "cloid": "0x00000000000000000000001603000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111574.0", + "sz": "0.00011", + "side": "B", + "time": 1761075269893, + "startPosition": "-304.89164", + "dir": "Close Short", + "closedPnl": "0.132418", + "hash": "0xcb83121350431ac5ccfc042dee18f8020aa400f8eb4639976f4bbd660f46f4b0", + "oid": 208539287264, + "crossed": true, + "fee": "0.002577", + "tid": 514955049598007, + "cloid": "0x00000000000000000000001603000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111575.0", + "sz": "0.00011", + "side": "B", + "time": 1761075269893, + "startPosition": "-304.89153", + "dir": "Close Short", + "closedPnl": "0.132308", + "hash": "0xcb83121350431ac5ccfc042dee18f8020aa400f8eb4639976f4bbd660f46f4b0", + "oid": 208539287264, + "crossed": true, + "fee": "0.002577", + "tid": 843328211960703, + "cloid": "0x00000000000000000000001603000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111576.0", + "sz": "0.00014", + "side": "B", + "time": 1761075269893, + "startPosition": "-304.89142", + "dir": "Close Short", + "closedPnl": "0.168252", + "hash": "0xcb83121350431ac5ccfc042dee18f8020aa400f8eb4639976f4bbd660f46f4b0", + "oid": 208539287264, + "crossed": true, + "fee": "0.00328", + "tid": 59915696255811, + "cloid": "0x00000000000000000000001603000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111576.0", + "sz": "0.00011", + "side": "B", + "time": 1761075269893, + "startPosition": "-304.89128", + "dir": "Close Short", + "closedPnl": "0.132198", + "hash": "0xcb83121350431ac5ccfc042dee18f8020aa400f8eb4639976f4bbd660f46f4b0", + "oid": 208539287264, + "crossed": true, + "fee": "0.002577", + "tid": 1094624899697206, + "cloid": "0x00000000000000000000001603000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111577.0", + "sz": "0.00011", + "side": "B", + "time": 1761075269893, + "startPosition": "-304.89117", + "dir": "Close Short", + "closedPnl": "0.132088", + "hash": "0xcb83121350431ac5ccfc042dee18f8020aa400f8eb4639976f4bbd660f46f4b0", + "oid": 208539287264, + "crossed": true, + "fee": "0.002577", + "tid": 969803864775880, + "cloid": "0x00000000000000000000001603000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111577.0", + "sz": "0.07802", + "side": "B", + "time": 1761075269893, + "startPosition": "-304.89106", + "dir": "Close Short", + "closedPnl": "93.686416", + "hash": "0xcb83121350431ac5ccfc042dee18f8020aa400f8eb4639976f4bbd660f46f4b0", + "oid": 208539287264, + "crossed": true, + "fee": "1.828099", + "tid": 972744485289310, + "cloid": "0x00000000000000000000001603000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111587.0", + "sz": "0.00011", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.81304", + "dir": "Close Short", + "closedPnl": "0.130988", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.002577", + "tid": 908652694999800, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111588.0", + "sz": "0.00014", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.81293", + "dir": "Close Short", + "closedPnl": "0.166572", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.00328", + "tid": 537069821879347, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111588.0", + "sz": "0.00011", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.81279", + "dir": "Close Short", + "closedPnl": "0.130878", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.002577", + "tid": 1087650788730897, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111589.0", + "sz": "0.00011", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.81268", + "dir": "Close Short", + "closedPnl": "0.130768", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.002577", + "tid": 883593922860926, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.00011", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.81257", + "dir": "Close Short", + "closedPnl": "0.130658", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.002577", + "tid": 831626235318838, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111591.0", + "sz": "0.00011", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.81246", + "dir": "Close Short", + "closedPnl": "0.130548", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.002577", + "tid": 9509718424766, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111592.0", + "sz": "0.0001", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.81235", + "dir": "Close Short", + "closedPnl": "0.11858", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.002343", + "tid": 824415580016946, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111592.0", + "sz": "0.00011", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.81225", + "dir": "Close Short", + "closedPnl": "0.130438", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.002577", + "tid": 451263371156235, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111593.0", + "sz": "0.00014", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.81214", + "dir": "Close Short", + "closedPnl": "0.165872", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.00328", + "tid": 337133030220326, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111593.0", + "sz": "0.00011", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.812", + "dir": "Close Short", + "closedPnl": "0.130328", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.002577", + "tid": 707237771274987, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111594.0", + "sz": "0.00011", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.81189", + "dir": "Close Short", + "closedPnl": "0.130218", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.002577", + "tid": 1052717448469623, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111595.0", + "sz": "0.00011", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.81178", + "dir": "Close Short", + "closedPnl": "0.130108", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.002577", + "tid": 892146637753245, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111596.0", + "sz": "0.00011", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.81167", + "dir": "Close Short", + "closedPnl": "0.129998", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.002577", + "tid": 637652500126399, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111597.0", + "sz": "0.00014", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.81156", + "dir": "Close Short", + "closedPnl": "0.165312", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.00328", + "tid": 324244602786301, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111597.0", + "sz": "0.00011", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.81142", + "dir": "Close Short", + "closedPnl": "0.129888", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.002577", + "tid": 1112556459604915, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111598.0", + "sz": "0.00011", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.81131", + "dir": "Close Short", + "closedPnl": "0.129778", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.002577", + "tid": 782449559574352, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111599.0", + "sz": "0.00011", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.8112", + "dir": "Close Short", + "closedPnl": "0.129668", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.002577", + "tid": 602643361969088, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111600.0", + "sz": "0.00011", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.81109", + "dir": "Close Short", + "closedPnl": "0.129558", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.002577", + "tid": 606736807092080, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111600.0", + "sz": "0.00089", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.81098", + "dir": "Close Short", + "closedPnl": "1.048242", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.020858", + "tid": 908513189411397, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111600.0", + "sz": "0.00448", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.81009", + "dir": "Close Short", + "closedPnl": "5.276544", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.104993", + "tid": 1121391265346430, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111601.0", + "sz": "0.00014", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.80561", + "dir": "Close Short", + "closedPnl": "0.164752", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.003281", + "tid": 693179109859284, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111601.0", + "sz": "0.00011", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.80547", + "dir": "Close Short", + "closedPnl": "0.129448", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.002577", + "tid": 712466069401782, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111602.0", + "sz": "0.00011", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.80536", + "dir": "Close Short", + "closedPnl": "0.129338", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.002578", + "tid": 132876105727874, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111603.0", + "sz": "0.00018", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.80525", + "dir": "Close Short", + "closedPnl": "0.211464", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.004218", + "tid": 1030785278183090, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111603.0", + "sz": "0.00017", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.80507", + "dir": "Close Short", + "closedPnl": "0.199716", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.003984", + "tid": 796400271281438, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111603.0", + "sz": "0.00011", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.8049", + "dir": "Close Short", + "closedPnl": "0.129228", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "0.002578", + "tid": 35806923386710, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111603.0", + "sz": "0.08133", + "side": "B", + "time": 1761075271732, + "startPosition": "-304.80479", + "dir": "Close Short", + "closedPnl": "95.546484", + "hash": "0x1700457efcf32731187a042dee190e0209b9006497f64603bac8f0d1bbf7011b", + "oid": 208539337058, + "crossed": true, + "fee": "1.906101", + "tid": 355540899186497, + "cloid": "0x00000000000000000000001603000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111595.0", + "sz": "0.08956", + "side": "B", + "time": 1761075275872, + "startPosition": "-304.72346", + "dir": "Close Short", + "closedPnl": "105.931568", + "hash": "0x465a22e60bbaa12747d3042dee193d02025a00cba6bdbff9ea22ce38cabe7b11", + "oid": 208539385938, + "crossed": true, + "fee": "2.098834", + "tid": 116693331311053, + "cloid": "0x00000000000000000000001603000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111595.0", + "sz": "0.08956", + "side": "B", + "time": 1761075277344, + "startPosition": "-304.6339", + "dir": "Close Short", + "closedPnl": "105.931568", + "hash": "0x20c0129cc1626a1a2239042dee194e02015800825c6588ecc488bdef80664404", + "oid": 208539400697, + "crossed": true, + "fee": "2.098834", + "tid": 917788852941610, + "cloid": "0x00000000000000000000001603000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111595.0", + "sz": "0.001", + "side": "B", + "time": 1761075285891, + "startPosition": "-304.54434", + "dir": "Close Short", + "closedPnl": "1.1828", + "hash": "0xd83ed6e142f7e1ebd9b8042dee19af02083400c6ddfb00bd7c07823401fbbbd6", + "oid": 208539479516, + "crossed": true, + "fee": "0.023434", + "tid": 653641437201074, + "cloid": "0x00000000000000000000001603000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111595.0", + "sz": "0.00011", + "side": "B", + "time": 1761075285891, + "startPosition": "-304.54334", + "dir": "Close Short", + "closedPnl": "0.130108", + "hash": "0xd83ed6e142f7e1ebd9b8042dee19af02083400c6ddfb00bd7c07823401fbbbd6", + "oid": 208539479516, + "crossed": true, + "fee": "0.002577", + "tid": 704562244507186, + "cloid": "0x00000000000000000000001603000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111596.0", + "sz": "0.00011", + "side": "B", + "time": 1761075285891, + "startPosition": "-304.54323", + "dir": "Close Short", + "closedPnl": "0.129998", + "hash": "0xd83ed6e142f7e1ebd9b8042dee19af02083400c6ddfb00bd7c07823401fbbbd6", + "oid": 208539479516, + "crossed": true, + "fee": "0.002577", + "tid": 756185229408084, + "cloid": "0x00000000000000000000001603000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111597.0", + "sz": "0.00011", + "side": "B", + "time": 1761075285891, + "startPosition": "-304.54312", + "dir": "Close Short", + "closedPnl": "0.129888", + "hash": "0xd83ed6e142f7e1ebd9b8042dee19af02083400c6ddfb00bd7c07823401fbbbd6", + "oid": 208539479516, + "crossed": true, + "fee": "0.002577", + "tid": 1070132649640205, + "cloid": "0x00000000000000000000001603000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111598.0", + "sz": "0.00011", + "side": "B", + "time": 1761075285891, + "startPosition": "-304.54301", + "dir": "Close Short", + "closedPnl": "0.129778", + "hash": "0xd83ed6e142f7e1ebd9b8042dee19af02083400c6ddfb00bd7c07823401fbbbd6", + "oid": 208539479516, + "crossed": true, + "fee": "0.002577", + "tid": 1079757488346537, + "cloid": "0x00000000000000000000001603000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111599.0", + "sz": "0.00011", + "side": "B", + "time": 1761075285891, + "startPosition": "-304.5429", + "dir": "Close Short", + "closedPnl": "0.129668", + "hash": "0xd83ed6e142f7e1ebd9b8042dee19af02083400c6ddfb00bd7c07823401fbbbd6", + "oid": 208539479516, + "crossed": true, + "fee": "0.002577", + "tid": 743159036619173, + "cloid": "0x00000000000000000000001603000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111600.0", + "sz": "0.00011", + "side": "B", + "time": 1761075285891, + "startPosition": "-304.54279", + "dir": "Close Short", + "closedPnl": "0.129558", + "hash": "0xd83ed6e142f7e1ebd9b8042dee19af02083400c6ddfb00bd7c07823401fbbbd6", + "oid": 208539479516, + "crossed": true, + "fee": "0.002577", + "tid": 309333215996258, + "cloid": "0x00000000000000000000001603000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111601.0", + "sz": "0.00014", + "side": "B", + "time": 1761075285891, + "startPosition": "-304.54268", + "dir": "Close Short", + "closedPnl": "0.164752", + "hash": "0xd83ed6e142f7e1ebd9b8042dee19af02083400c6ddfb00bd7c07823401fbbbd6", + "oid": 208539479516, + "crossed": true, + "fee": "0.003281", + "tid": 596384831476422, + "cloid": "0x00000000000000000000001603000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111601.0", + "sz": "0.00011", + "side": "B", + "time": 1761075285891, + "startPosition": "-304.54254", + "dir": "Close Short", + "closedPnl": "0.129448", + "hash": "0xd83ed6e142f7e1ebd9b8042dee19af02083400c6ddfb00bd7c07823401fbbbd6", + "oid": 208539479516, + "crossed": true, + "fee": "0.002577", + "tid": 654494591706521, + "cloid": "0x00000000000000000000001603000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111602.0", + "sz": "0.00011", + "side": "B", + "time": 1761075285891, + "startPosition": "-304.54243", + "dir": "Close Short", + "closedPnl": "0.129338", + "hash": "0xd83ed6e142f7e1ebd9b8042dee19af02083400c6ddfb00bd7c07823401fbbbd6", + "oid": 208539479516, + "crossed": true, + "fee": "0.002578", + "tid": 1081274377482223, + "cloid": "0x00000000000000000000001603000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111602.0", + "sz": "0.08754", + "side": "B", + "time": 1761075285891, + "startPosition": "-304.54232", + "dir": "Close Short", + "closedPnl": "102.929532", + "hash": "0xd83ed6e142f7e1ebd9b8042dee19af02083400c6ddfb00bd7c07823401fbbbd6", + "oid": 208539479516, + "crossed": true, + "fee": "2.051624", + "tid": 488466653241437, + "cloid": "0x00000000000000000000001603000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111612.0", + "sz": "0.08955", + "side": "B", + "time": 1761075288764, + "startPosition": "-304.45478", + "dir": "Close Short", + "closedPnl": "104.39739", + "hash": "0xff2e6e9138d18ce700a8042dee19d20203530076d3d4abbaa2f719e3f7d566d2", + "oid": 208539535426, + "crossed": true, + "fee": "2.098919", + "tid": 794458721855472, + "cloid": "0x00000000000000000000001603000177", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111627.0", + "sz": "0.00705", + "side": "B", + "time": 1761075299167, + "startPosition": "-304.36523", + "dir": "Close Short", + "closedPnl": "8.11314", + "hash": "0x9dfb39f23ba4dd849f74042dee1a5e02034c00d7d6a7fc5641c3e544faa8b76f", + "oid": 208539649263, + "crossed": true, + "fee": "0.165263", + "tid": 836579216810181, + "cloid": "0x00000000000000000000001603000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111627.0", + "sz": "0.001", + "side": "B", + "time": 1761075299167, + "startPosition": "-304.35818", + "dir": "Close Short", + "closedPnl": "1.1508", + "hash": "0x9dfb39f23ba4dd849f74042dee1a5e02034c00d7d6a7fc5641c3e544faa8b76f", + "oid": 208539649263, + "crossed": true, + "fee": "0.023441", + "tid": 629824115881882, + "cloid": "0x00000000000000000000001603000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111627.0", + "sz": "0.00011", + "side": "B", + "time": 1761075299167, + "startPosition": "-304.35718", + "dir": "Close Short", + "closedPnl": "0.126588", + "hash": "0x9dfb39f23ba4dd849f74042dee1a5e02034c00d7d6a7fc5641c3e544faa8b76f", + "oid": 208539649263, + "crossed": true, + "fee": "0.002578", + "tid": 598984025163885, + "cloid": "0x00000000000000000000001603000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111627.0", + "sz": "0.03083", + "side": "B", + "time": 1761075299167, + "startPosition": "-304.35707", + "dir": "Close Short", + "closedPnl": "35.479164", + "hash": "0x9dfb39f23ba4dd849f74042dee1a5e02034c00d7d6a7fc5641c3e544faa8b76f", + "oid": 208539649263, + "crossed": true, + "fee": "0.722706", + "tid": 84302866242299, + "cloid": "0x00000000000000000000001603000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111627.0", + "sz": "0.05055", + "side": "B", + "time": 1761075299167, + "startPosition": "-304.32624", + "dir": "Close Short", + "closedPnl": "58.17294", + "hash": "0x9dfb39f23ba4dd849f74042dee1a5e02034c00d7d6a7fc5641c3e544faa8b76f", + "oid": 208539649263, + "crossed": true, + "fee": "1.184976", + "tid": 75831236278933, + "cloid": "0x00000000000000000000001603000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111628.0", + "sz": "0.00011", + "side": "B", + "time": 1761075301048, + "startPosition": "-304.27569", + "dir": "Close Short", + "closedPnl": "0.126478", + "hash": "0x0c4662c2d15a3c0c0dc0042dee1a7a0204d300a86c5d5adeb00f0e15905e15f6", + "oid": 208539673556, + "crossed": true, + "fee": "0.002578", + "tid": 952505772010521, + "cloid": "0x00000000000000000000001603000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111629.0", + "sz": "0.0001", + "side": "B", + "time": 1761075301048, + "startPosition": "-304.27558", + "dir": "Close Short", + "closedPnl": "0.11488", + "hash": "0x0c4662c2d15a3c0c0dc0042dee1a7a0204d300a86c5d5adeb00f0e15905e15f6", + "oid": 208539673556, + "crossed": true, + "fee": "0.002344", + "tid": 435523778871523, + "cloid": "0x00000000000000000000001603000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111629.0", + "sz": "0.00011", + "side": "B", + "time": 1761075301048, + "startPosition": "-304.27548", + "dir": "Close Short", + "closedPnl": "0.126368", + "hash": "0x0c4662c2d15a3c0c0dc0042dee1a7a0204d300a86c5d5adeb00f0e15905e15f6", + "oid": 208539673556, + "crossed": true, + "fee": "0.002578", + "tid": 145292130815878, + "cloid": "0x00000000000000000000001603000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111630.0", + "sz": "0.00011", + "side": "B", + "time": 1761075301048, + "startPosition": "-304.27537", + "dir": "Close Short", + "closedPnl": "0.126258", + "hash": "0x0c4662c2d15a3c0c0dc0042dee1a7a0204d300a86c5d5adeb00f0e15905e15f6", + "oid": 208539673556, + "crossed": true, + "fee": "0.002578", + "tid": 673660322664892, + "cloid": "0x00000000000000000000001603000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111631.0", + "sz": "0.00014", + "side": "B", + "time": 1761075301048, + "startPosition": "-304.27526", + "dir": "Close Short", + "closedPnl": "0.160552", + "hash": "0x0c4662c2d15a3c0c0dc0042dee1a7a0204d300a86c5d5adeb00f0e15905e15f6", + "oid": 208539673556, + "crossed": true, + "fee": "0.003281", + "tid": 969970034203281, + "cloid": "0x00000000000000000000001603000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111631.0", + "sz": "0.00011", + "side": "B", + "time": 1761075301048, + "startPosition": "-304.27512", + "dir": "Close Short", + "closedPnl": "0.126148", + "hash": "0x0c4662c2d15a3c0c0dc0042dee1a7a0204d300a86c5d5adeb00f0e15905e15f6", + "oid": 208539673556, + "crossed": true, + "fee": "0.002578", + "tid": 566015628564252, + "cloid": "0x00000000000000000000001603000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111632.0", + "sz": "0.00011", + "side": "B", + "time": 1761075301048, + "startPosition": "-304.27501", + "dir": "Close Short", + "closedPnl": "0.126038", + "hash": "0x0c4662c2d15a3c0c0dc0042dee1a7a0204d300a86c5d5adeb00f0e15905e15f6", + "oid": 208539673556, + "crossed": true, + "fee": "0.002578", + "tid": 461910846404143, + "cloid": "0x00000000000000000000001603000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111632.0", + "sz": "0.00896", + "side": "B", + "time": 1761075301048, + "startPosition": "-304.2749", + "dir": "Close Short", + "closedPnl": "10.266368", + "hash": "0x0c4662c2d15a3c0c0dc0042dee1a7a0204d300a86c5d5adeb00f0e15905e15f6", + "oid": 208539673556, + "crossed": true, + "fee": "0.210046", + "tid": 388832595962921, + "cloid": "0x00000000000000000000001603000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111633.0", + "sz": "0.00011", + "side": "B", + "time": 1761075301048, + "startPosition": "-304.26594", + "dir": "Close Short", + "closedPnl": "0.125928", + "hash": "0x0c4662c2d15a3c0c0dc0042dee1a7a0204d300a86c5d5adeb00f0e15905e15f6", + "oid": 208539673556, + "crossed": true, + "fee": "0.002578", + "tid": 201755040231850, + "cloid": "0x00000000000000000000001603000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111634.0", + "sz": "0.00011", + "side": "B", + "time": 1761075301048, + "startPosition": "-304.26583", + "dir": "Close Short", + "closedPnl": "0.125818", + "hash": "0x0c4662c2d15a3c0c0dc0042dee1a7a0204d300a86c5d5adeb00f0e15905e15f6", + "oid": 208539673556, + "crossed": true, + "fee": "0.002578", + "tid": 296599734326362, + "cloid": "0x00000000000000000000001603000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111635.0", + "sz": "0.00014", + "side": "B", + "time": 1761075301048, + "startPosition": "-304.26572", + "dir": "Close Short", + "closedPnl": "0.159992", + "hash": "0x0c4662c2d15a3c0c0dc0042dee1a7a0204d300a86c5d5adeb00f0e15905e15f6", + "oid": 208539673556, + "crossed": true, + "fee": "0.003282", + "tid": 115447965234627, + "cloid": "0x00000000000000000000001603000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111635.0", + "sz": "0.00011", + "side": "B", + "time": 1761075301048, + "startPosition": "-304.26558", + "dir": "Close Short", + "closedPnl": "0.125708", + "hash": "0x0c4662c2d15a3c0c0dc0042dee1a7a0204d300a86c5d5adeb00f0e15905e15f6", + "oid": 208539673556, + "crossed": true, + "fee": "0.002578", + "tid": 392046534557766, + "cloid": "0x00000000000000000000001603000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111636.0", + "sz": "0.00011", + "side": "B", + "time": 1761075301048, + "startPosition": "-304.26547", + "dir": "Close Short", + "closedPnl": "0.125598", + "hash": "0x0c4662c2d15a3c0c0dc0042dee1a7a0204d300a86c5d5adeb00f0e15905e15f6", + "oid": 208539673556, + "crossed": true, + "fee": "0.002578", + "tid": 209722126250474, + "cloid": "0x00000000000000000000001603000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111637.0", + "sz": "0.00011", + "side": "B", + "time": 1761075301048, + "startPosition": "-304.26536", + "dir": "Close Short", + "closedPnl": "0.125488", + "hash": "0x0c4662c2d15a3c0c0dc0042dee1a7a0204d300a86c5d5adeb00f0e15905e15f6", + "oid": 208539673556, + "crossed": true, + "fee": "0.002578", + "tid": 96847653418775, + "cloid": "0x00000000000000000000001603000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111638.0", + "sz": "0.00011", + "side": "B", + "time": 1761075301048, + "startPosition": "-304.26525", + "dir": "Close Short", + "closedPnl": "0.125378", + "hash": "0x0c4662c2d15a3c0c0dc0042dee1a7a0204d300a86c5d5adeb00f0e15905e15f6", + "oid": 208539673556, + "crossed": true, + "fee": "0.002578", + "tid": 1027850168630812, + "cloid": "0x00000000000000000000001603000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111639.0", + "sz": "0.00014", + "side": "B", + "time": 1761075301048, + "startPosition": "-304.26514", + "dir": "Close Short", + "closedPnl": "0.159432", + "hash": "0x0c4662c2d15a3c0c0dc0042dee1a7a0204d300a86c5d5adeb00f0e15905e15f6", + "oid": 208539673556, + "crossed": true, + "fee": "0.003282", + "tid": 23459865458146, + "cloid": "0x00000000000000000000001603000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111639.0", + "sz": "0.00011", + "side": "B", + "time": 1761075301048, + "startPosition": "-304.265", + "dir": "Close Short", + "closedPnl": "0.125268", + "hash": "0x0c4662c2d15a3c0c0dc0042dee1a7a0204d300a86c5d5adeb00f0e15905e15f6", + "oid": 208539673556, + "crossed": true, + "fee": "0.002578", + "tid": 469401628022145, + "cloid": "0x00000000000000000000001603000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111639.0", + "sz": "0.07873", + "side": "B", + "time": 1761075301048, + "startPosition": "-304.26489", + "dir": "Close Short", + "closedPnl": "89.657724", + "hash": "0x0c4662c2d15a3c0c0dc0042dee1a7a0204d300a86c5d5adeb00f0e15905e15f6", + "oid": 208539673556, + "crossed": true, + "fee": "1.845761", + "tid": 571811298248691, + "cloid": "0x00000000000000000000001603000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111639.0", + "sz": "0.08953", + "side": "B", + "time": 1761075302526, + "startPosition": "-304.18616", + "dir": "Close Short", + "closedPnl": "101.956764", + "hash": "0x20f6f01205cd97bb2270042dee1a8d02031300f7a0c0b68dc4bf9b64c4c171a5", + "oid": 208539694974, + "crossed": true, + "fee": "2.098958", + "tid": 1124342227798868, + "cloid": "0x00000000000000000000001603000180", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111639.0", + "sz": "0.00011", + "side": "B", + "time": 1761075303990, + "startPosition": "-304.09663", + "dir": "Close Short", + "closedPnl": "0.125268", + "hash": "0x0f2c36d54603b40f10a5042dee1a9d02056700bae106d2e1b2f4e22805078df9", + "oid": 208539713410, + "crossed": true, + "fee": "0.002578", + "tid": 223302012000496, + "cloid": "0x00000000000000000000001603000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111639.0", + "sz": "0.00896", + "side": "B", + "time": 1761075303990, + "startPosition": "-304.09652", + "dir": "Close Short", + "closedPnl": "10.203648", + "hash": "0x0f2c36d54603b40f10a5042dee1a9d02056700bae106d2e1b2f4e22805078df9", + "oid": 208539713410, + "crossed": true, + "fee": "0.210059", + "tid": 408132167972440, + "cloid": "0x00000000000000000000001603000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111639.0", + "sz": "0.03933", + "side": "B", + "time": 1761075303990, + "startPosition": "-304.08756", + "dir": "Close Short", + "closedPnl": "44.789004", + "hash": "0x0f2c36d54603b40f10a5042dee1a9d02056700bae106d2e1b2f4e22805078df9", + "oid": 208539713410, + "crossed": true, + "fee": "0.922059", + "tid": 544165919191859, + "cloid": "0x00000000000000000000001603000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111639.0", + "sz": "0.04113", + "side": "B", + "time": 1761075303990, + "startPosition": "-304.04823", + "dir": "Close Short", + "closedPnl": "46.838844", + "hash": "0x0f2c36d54603b40f10a5042dee1a9d02056700bae106d2e1b2f4e22805078df9", + "oid": 208539713410, + "crossed": true, + "fee": "0.964259", + "tid": 210882820111940, + "cloid": "0x00000000000000000000001603000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111639.0", + "sz": "0.08953", + "side": "B", + "time": 1761075305404, + "startPosition": "-304.0071", + "dir": "Close Short", + "closedPnl": "101.956764", + "hash": "0x2229965ec483050423a3042dee1ab00203f000445f8623d6c5f241b18386deee", + "oid": 208539730293, + "crossed": true, + "fee": "2.098958", + "tid": 786833428806886, + "cloid": "0x00000000000000000000001603000182", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111639.0", + "sz": "0.00785", + "side": "B", + "time": 1761075308011, + "startPosition": "-303.91757", + "dir": "Close Short", + "closedPnl": "8.93958", + "hash": "0x39171ff355f1cb8f3a90042dee1ad702051c00d8f0f4ea61dcdfcb4614f5a579", + "oid": 208539762919, + "crossed": true, + "fee": "0.184036", + "tid": 161458295627106, + "cloid": "0x00000000000000000000001603000183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111639.0", + "sz": "0.08167", + "side": "B", + "time": 1761075308011, + "startPosition": "-303.90972", + "dir": "Close Short", + "closedPnl": "93.005796", + "hash": "0x39171ff355f1cb8f3a90042dee1ad702051c00d8f0f4ea61dcdfcb4614f5a579", + "oid": 208539762919, + "crossed": true, + "fee": "1.914686", + "tid": 895483759279560, + "cloid": "0x00000000000000000000001603000183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111643.0", + "sz": "0.00011", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.82805", + "dir": "Close Short", + "closedPnl": "0.124828", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.002578", + "tid": 928186698087159, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111644.0", + "sz": "0.00014", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.82794", + "dir": "Close Short", + "closedPnl": "0.158732", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.003282", + "tid": 279327381637626, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111644.0", + "sz": "0.00011", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.8278", + "dir": "Close Short", + "closedPnl": "0.124718", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.002578", + "tid": 699658644867675, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111645.0", + "sz": "0.00011", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.82769", + "dir": "Close Short", + "closedPnl": "0.124608", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.002578", + "tid": 1026051263494837, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111646.0", + "sz": "0.00011", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.82758", + "dir": "Close Short", + "closedPnl": "0.124498", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.002579", + "tid": 451887534401234, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111647.0", + "sz": "0.00011", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.82747", + "dir": "Close Short", + "closedPnl": "0.124388", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.002579", + "tid": 930163561857638, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111648.0", + "sz": "0.00014", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.82736", + "dir": "Close Short", + "closedPnl": "0.158172", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.003282", + "tid": 889861472096938, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111648.0", + "sz": "0.00011", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.82722", + "dir": "Close Short", + "closedPnl": "0.124278", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.002579", + "tid": 885653811581995, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111649.0", + "sz": "0.0728", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.82711", + "dir": "Close Short", + "closedPnl": "82.17664", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "1.706889", + "tid": 85309744156446, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111649.0", + "sz": "0.00011", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.75431", + "dir": "Close Short", + "closedPnl": "0.124168", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.002579", + "tid": 81287225223538, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111650.0", + "sz": "0.00011", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.7542", + "dir": "Close Short", + "closedPnl": "0.124058", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.002579", + "tid": 901582848628347, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111651.0", + "sz": "0.00011", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.75409", + "dir": "Close Short", + "closedPnl": "0.123948", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.002579", + "tid": 425842968051297, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111652.0", + "sz": "0.00014", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.75398", + "dir": "Close Short", + "closedPnl": "0.157612", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.003282", + "tid": 212937599759943, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111652.0", + "sz": "0.00011", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.75384", + "dir": "Close Short", + "closedPnl": "0.123838", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.002579", + "tid": 84535660593379, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111653.0", + "sz": "0.00011", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.75373", + "dir": "Close Short", + "closedPnl": "0.123728", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.002579", + "tid": 215280489443780, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111654.0", + "sz": "0.00011", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.75362", + "dir": "Close Short", + "closedPnl": "0.123618", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.002579", + "tid": 1033135874637517, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111655.0", + "sz": "0.00011", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.75351", + "dir": "Close Short", + "closedPnl": "0.123508", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.002579", + "tid": 1045846843703259, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111656.0", + "sz": "0.00014", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.7534", + "dir": "Close Short", + "closedPnl": "0.157052", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.003282", + "tid": 680469088726690, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111656.0", + "sz": "0.00011", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.75326", + "dir": "Close Short", + "closedPnl": "0.123398", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.002579", + "tid": 571478743777870, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111656.0", + "sz": "0.01463", + "side": "B", + "time": 1761075310779, + "startPosition": "-303.75315", + "dir": "Close Short", + "closedPnl": "16.411934", + "hash": "0x334e1adba690592634c7042dee1afc02033d00c1419377f8d716c62e65943310", + "oid": 208539806489, + "crossed": true, + "fee": "0.34304", + "tid": 178053340452247, + "cloid": "0x00000000000000000000001603000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111647.0", + "sz": "0.08952", + "side": "B", + "time": 1761075312803, + "startPosition": "-303.73852", + "dir": "Close Short", + "closedPnl": "101.229216", + "hash": "0x74a88c02a3ba836f7622042dee1b150204a200e83ebda2411871375562be5d5a", + "oid": 208539832994, + "crossed": true, + "fee": "2.098874", + "tid": 446048708592569, + "cloid": "0x00000000000000000000001603000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111643.0", + "sz": "0.0022", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.649", + "dir": "Close Short", + "closedPnl": "2.49656", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.051579", + "tid": 894068500467541, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111643.0", + "sz": "0.00011", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.6468", + "dir": "Close Short", + "closedPnl": "0.124828", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.002578", + "tid": 592107614132494, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111644.0", + "sz": "0.00011", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.64669", + "dir": "Close Short", + "closedPnl": "0.124718", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.002578", + "tid": 256205023086052, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111645.0", + "sz": "0.00011", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.64658", + "dir": "Close Short", + "closedPnl": "0.124608", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.002578", + "tid": 462612193843605, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111646.0", + "sz": "0.00011", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.64647", + "dir": "Close Short", + "closedPnl": "0.124498", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.002579", + "tid": 875617434940603, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111647.0", + "sz": "0.00011", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.64636", + "dir": "Close Short", + "closedPnl": "0.124388", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.002579", + "tid": 446611978511397, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111648.0", + "sz": "0.00014", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.64625", + "dir": "Close Short", + "closedPnl": "0.158172", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.003282", + "tid": 436682891670094, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111648.0", + "sz": "0.00011", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.64611", + "dir": "Close Short", + "closedPnl": "0.124278", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.002579", + "tid": 794102039281542, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111649.0", + "sz": "0.00011", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.646", + "dir": "Close Short", + "closedPnl": "0.124168", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.002579", + "tid": 543786485329149, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111650.0", + "sz": "0.00011", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.64589", + "dir": "Close Short", + "closedPnl": "0.124058", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.002579", + "tid": 299907436703013, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111651.0", + "sz": "0.00011", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.64578", + "dir": "Close Short", + "closedPnl": "0.123948", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.002579", + "tid": 863695479661774, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111652.0", + "sz": "0.00014", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.64567", + "dir": "Close Short", + "closedPnl": "0.157612", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.003282", + "tid": 827466515080726, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111652.0", + "sz": "0.00011", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.64553", + "dir": "Close Short", + "closedPnl": "0.123838", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.002579", + "tid": 117531629936776, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111653.0", + "sz": "0.00011", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.64542", + "dir": "Close Short", + "closedPnl": "0.123728", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.002579", + "tid": 1008228376425426, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111654.0", + "sz": "0.00011", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.64531", + "dir": "Close Short", + "closedPnl": "0.123618", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.002579", + "tid": 729982325078889, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111655.0", + "sz": "0.00011", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.6452", + "dir": "Close Short", + "closedPnl": "0.123508", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.002579", + "tid": 434033725510449, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111656.0", + "sz": "0.00011", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.64509", + "dir": "Close Short", + "closedPnl": "0.123398", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.002579", + "tid": 1105411537116705, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111656.0", + "sz": "0.00014", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.64498", + "dir": "Close Short", + "closedPnl": "0.157052", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.003282", + "tid": 1117914531887403, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111656.0", + "sz": "0.001", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.64484", + "dir": "Close Short", + "closedPnl": "1.1218", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.023447", + "tid": 658512971180192, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111657.0", + "sz": "0.00011", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.64384", + "dir": "Close Short", + "closedPnl": "0.123288", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "0.002579", + "tid": 779330317267534, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111657.0", + "sz": "0.08426", + "side": "B", + "time": 1761075316521, + "startPosition": "-303.64373", + "dir": "Close Short", + "closedPnl": "94.438608", + "hash": "0x9697ef8999585c5f9811042dee1b4202036b006f345b7b313a609adc585c364a", + "oid": 208539889601, + "crossed": true, + "fee": "1.975725", + "tid": 857943922885504, + "cloid": "0x00000000000000000000001603000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111657.0", + "sz": "0.0895", + "side": "B", + "time": 1761075319659, + "startPosition": "-303.55947", + "dir": "Close Short", + "closedPnl": "100.3116", + "hash": "0xbed31ea87db17dd6c04c042dee1b62020301008e18b49ca8629bc9fb3cb557c1", + "oid": 208539917239, + "crossed": true, + "fee": "2.098593", + "tid": 784001700893898, + "cloid": "0x00000000000000000000001603000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111659.0", + "sz": "0.00011", + "side": "B", + "time": 1761075324577, + "startPosition": "-303.46997", + "dir": "Close Short", + "closedPnl": "0.123068", + "hash": "0xfad3290dfa9c53f9fc4c042dee1b9f02020e00f3959f72cc9e9bd460b9902de4", + "oid": 208539959426, + "crossed": true, + "fee": "0.002579", + "tid": 903573376351398, + "cloid": "0x00000000000000000000001603000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111659.0", + "sz": "0.0894", + "side": "B", + "time": 1761075324577, + "startPosition": "-303.46986", + "dir": "Close Short", + "closedPnl": "100.02072", + "hash": "0xfad3290dfa9c53f9fc4c042dee1b9f02020e00f3959f72cc9e9bd460b9902de4", + "oid": 208539959426, + "crossed": true, + "fee": "2.096286", + "tid": 354872577991677, + "cloid": "0x00000000000000000000001603000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111659.0", + "sz": "0.08951", + "side": "B", + "time": 1761075325787, + "startPosition": "-303.38046", + "dir": "Close Short", + "closedPnl": "100.143788", + "hash": "0x955603274c87ed8596cf042dee1bac020284000ce78b0c57391eae7a0b8bc770", + "oid": 208539966243, + "crossed": true, + "fee": "2.098865", + "tid": 1053761331404174, + "cloid": "0x00000000000000000000001603000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111659.0", + "sz": "0.08951", + "side": "B", + "time": 1761075327196, + "startPosition": "-303.29095", + "dir": "Close Short", + "closedPnl": "100.143788", + "hash": "0xdebfdfd351df3b70e039042dee1bbb02021600b8ecd25a4282888b2610d3155b", + "oid": 208539987422, + "crossed": true, + "fee": "2.098865", + "tid": 799147373234875, + "cloid": "0x00000000000000000000001603000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111651.0", + "sz": "0.08952", + "side": "B", + "time": 1761075334820, + "startPosition": "-303.20144", + "dir": "Close Short", + "closedPnl": "100.871136", + "hash": "0x73919301b16b01e8750b042dee1c1c0201d200e74c6e20ba175a3e54706edbd3", + "oid": 208540075053, + "crossed": true, + "fee": "2.098949", + "tid": 942220607626908, + "cloid": "0x00000000000000000000001603000191", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111654.0", + "sz": "0.08951", + "side": "B", + "time": 1761075346234, + "startPosition": "-303.11192", + "dir": "Close Short", + "closedPnl": "100.591338", + "hash": "0x9e18fbce141982989f92042dee1ca802027900b3af1ca16a41e1a720d31d5c83", + "oid": 208540165240, + "crossed": true, + "fee": "2.098771", + "tid": 662617756251858, + "cloid": "0x00000000000000000000001603000192", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111678.0", + "sz": "0.0895", + "side": "B", + "time": 1761075356110, + "startPosition": "-303.02241", + "dir": "Close Short", + "closedPnl": "98.4321", + "hash": "0xb22e55f31e2ea489b3a8042dee1d2902027d00d8b921c35b55f70145dd227e74", + "oid": 208540241723, + "crossed": true, + "fee": "2.098988", + "tid": 750798570204014, + "cloid": "0x00000000000000000000001603000193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111681.0", + "sz": "0.00014", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93291", + "dir": "Close Short", + "closedPnl": "0.153552", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.003283", + "tid": 89390365777058, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111681.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93277", + "dir": "Close Short", + "closedPnl": "0.120648", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.002579", + "tid": 609391521541387, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111682.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93266", + "dir": "Close Short", + "closedPnl": "0.120538", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.002579", + "tid": 1037027443321948, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111683.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93255", + "dir": "Close Short", + "closedPnl": "0.120428", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.002579", + "tid": 854992907430703, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111684.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93244", + "dir": "Close Short", + "closedPnl": "0.120318", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.002579", + "tid": 171137034716741, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111685.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93233", + "dir": "Close Short", + "closedPnl": "0.120208", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.002579", + "tid": 44130162960633, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111686.0", + "sz": "0.00014", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93222", + "dir": "Close Short", + "closedPnl": "0.152852", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.003283", + "tid": 840243891456960, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111686.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93208", + "dir": "Close Short", + "closedPnl": "0.120098", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.002579", + "tid": 210069239394184, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111687.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93197", + "dir": "Close Short", + "closedPnl": "0.119988", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.002579", + "tid": 679813811284878, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111688.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93186", + "dir": "Close Short", + "closedPnl": "0.119878", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.002579", + "tid": 665478936544470, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111689.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93175", + "dir": "Close Short", + "closedPnl": "0.119768", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 576812448233356, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111690.0", + "sz": "0.00014", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93164", + "dir": "Close Short", + "closedPnl": "0.152292", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.003283", + "tid": 961205604856005, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111690.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.9315", + "dir": "Close Short", + "closedPnl": "0.119658", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 740774020067672, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111691.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93139", + "dir": "Close Short", + "closedPnl": "0.119548", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 1085904300305941, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111692.0", + "sz": "0.00014", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93128", + "dir": "Close Short", + "closedPnl": "0.152012", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.003283", + "tid": 631941748245819, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111692.0", + "sz": "0.00053", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93114", + "dir": "Close Short", + "closedPnl": "0.575474", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.012431", + "tid": 995805082581464, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111692.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93061", + "dir": "Close Short", + "closedPnl": "0.119438", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 1087483790393424, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111693.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.9305", + "dir": "Close Short", + "closedPnl": "0.119328", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 682289913153137, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111694.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93039", + "dir": "Close Short", + "closedPnl": "0.119218", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 99299969436699, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111695.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93028", + "dir": "Close Short", + "closedPnl": "0.119108", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 854616778067035, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111696.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93017", + "dir": "Close Short", + "closedPnl": "0.118998", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 837902733913560, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111697.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.93006", + "dir": "Close Short", + "closedPnl": "0.118888", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 720638527776452, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111697.0", + "sz": "0.00017", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.92995", + "dir": "Close Short", + "closedPnl": "0.183736", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.003987", + "tid": 757221471162632, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111698.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.92978", + "dir": "Close Short", + "closedPnl": "0.118778", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 37749503056914, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111699.0", + "sz": "0.00014", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.92967", + "dir": "Close Short", + "closedPnl": "0.151032", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.003283", + "tid": 367521198929337, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111699.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.92953", + "dir": "Close Short", + "closedPnl": "0.118668", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 889239562174468, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111700.0", + "sz": "0.01", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.92942", + "dir": "Close Short", + "closedPnl": "10.778", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.234569", + "tid": 1050495178030251, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111700.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.91942", + "dir": "Close Short", + "closedPnl": "0.118558", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 698424193015623, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111700.0", + "sz": "0.015", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.91931", + "dir": "Close Short", + "closedPnl": "16.167", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.351854", + "tid": 176858041946397, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111701.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.90431", + "dir": "Close Short", + "closedPnl": "0.118448", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 720371905134486, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111702.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.9042", + "dir": "Close Short", + "closedPnl": "0.118338", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 415044449262144, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111703.0", + "sz": "0.00014", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.90409", + "dir": "Close Short", + "closedPnl": "0.150472", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.003284", + "tid": 1015656493074798, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111703.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.90395", + "dir": "Close Short", + "closedPnl": "0.118228", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 676668835328356, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111704.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.90384", + "dir": "Close Short", + "closedPnl": "0.118118", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 949722613529469, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111705.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.90373", + "dir": "Close Short", + "closedPnl": "0.118008", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 590161031726367, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111705.0", + "sz": "0.04479", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.90362", + "dir": "Close Short", + "closedPnl": "48.050712", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "1.050686", + "tid": 153222969665891, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111706.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.85883", + "dir": "Close Short", + "closedPnl": "0.117898", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 121361606116783, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111706.0", + "sz": "0.00448", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.85872", + "dir": "Close Short", + "closedPnl": "4.801664", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.105093", + "tid": 960167903290584, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111707.0", + "sz": "0.00014", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.85424", + "dir": "Close Short", + "closedPnl": "0.149912", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.003284", + "tid": 469422372423165, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111707.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.8541", + "dir": "Close Short", + "closedPnl": "0.117788", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 349085556771925, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111708.0", + "sz": "0.00011", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.85399", + "dir": "Close Short", + "closedPnl": "0.117678", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.00258", + "tid": 451125093785123, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111712.0", + "sz": "0.00014", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.85388", + "dir": "Close Short", + "closedPnl": "0.149212", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.003284", + "tid": 242476944590309, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111712.0", + "sz": "0.00026", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.85374", + "dir": "Close Short", + "closedPnl": "0.277108", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.006099", + "tid": 1013291141848110, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111713.0", + "sz": "0.01005", + "side": "B", + "time": 1761075365576, + "startPosition": "-302.85348", + "dir": "Close Short", + "closedPnl": "10.70124", + "hash": "0x565f9d26a87f800757d9042dee1da3021988000c43729ed9fa284879677359f1", + "oid": 208540345689, + "crossed": true, + "fee": "0.23577", + "tid": 110273270546748, + "cloid": "0x00000000000000000000001603000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111707.0", + "sz": "0.00529", + "side": "B", + "time": 1761075376451, + "startPosition": "-302.84343", + "dir": "Close Short", + "closedPnl": "5.664532", + "hash": "0x1be6270bef0fc07e1d5f042dee1e2802018000f18a02df50bfaed25eae039a68", + "oid": 208540448037, + "crossed": true, + "fee": "0.124095", + "tid": 293796951648052, + "cloid": "0x00000000000000000000001603000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111708.0", + "sz": "0.00011", + "side": "B", + "time": 1761075376451, + "startPosition": "-302.83814", + "dir": "Close Short", + "closedPnl": "0.117678", + "hash": "0x1be6270bef0fc07e1d5f042dee1e2802018000f18a02df50bfaed25eae039a68", + "oid": 208540448037, + "crossed": true, + "fee": "0.00258", + "tid": 946757353446507, + "cloid": "0x00000000000000000000001603000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111709.0", + "sz": "0.0179", + "side": "B", + "time": 1761075376451, + "startPosition": "-302.83803", + "dir": "Close Short", + "closedPnl": "19.13152", + "hash": "0x1be6270bef0fc07e1d5f042dee1e2802018000f18a02df50bfaed25eae039a68", + "oid": 208540448037, + "crossed": true, + "fee": "0.419914", + "tid": 30540092967265, + "cloid": "0x00000000000000000000001603000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111709.0", + "sz": "0.00011", + "side": "B", + "time": 1761075376451, + "startPosition": "-302.82013", + "dir": "Close Short", + "closedPnl": "0.117568", + "hash": "0x1be6270bef0fc07e1d5f042dee1e2802018000f18a02df50bfaed25eae039a68", + "oid": 208540448037, + "crossed": true, + "fee": "0.00258", + "tid": 388812814551443, + "cloid": "0x00000000000000000000001603000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111710.0", + "sz": "0.02685", + "side": "B", + "time": 1761075376451, + "startPosition": "-302.82002", + "dir": "Close Short", + "closedPnl": "28.67043", + "hash": "0x1be6270bef0fc07e1d5f042dee1e2802018000f18a02df50bfaed25eae039a68", + "oid": 208540448037, + "crossed": true, + "fee": "0.629876", + "tid": 975449501607592, + "cloid": "0x00000000000000000000001603000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111710.0", + "sz": "0.00011", + "side": "B", + "time": 1761075376451, + "startPosition": "-302.79317", + "dir": "Close Short", + "closedPnl": "0.117458", + "hash": "0x1be6270bef0fc07e1d5f042dee1e2802018000f18a02df50bfaed25eae039a68", + "oid": 208540448037, + "crossed": true, + "fee": "0.00258", + "tid": 1047393629912504, + "cloid": "0x00000000000000000000001603000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111711.0", + "sz": "0.00011", + "side": "B", + "time": 1761075376451, + "startPosition": "-302.79306", + "dir": "Close Short", + "closedPnl": "0.117348", + "hash": "0x1be6270bef0fc07e1d5f042dee1e2802018000f18a02df50bfaed25eae039a68", + "oid": 208540448037, + "crossed": true, + "fee": "0.00258", + "tid": 901144447064152, + "cloid": "0x00000000000000000000001603000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111711.0", + "sz": "0.0358", + "side": "B", + "time": 1761075376451, + "startPosition": "-302.79295", + "dir": "Close Short", + "closedPnl": "38.19144", + "hash": "0x1be6270bef0fc07e1d5f042dee1e2802018000f18a02df50bfaed25eae039a68", + "oid": 208540448037, + "crossed": true, + "fee": "0.839843", + "tid": 1041103445460830, + "cloid": "0x00000000000000000000001603000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111712.0", + "sz": "0.00011", + "side": "B", + "time": 1761075376451, + "startPosition": "-302.75715", + "dir": "Close Short", + "closedPnl": "0.117238", + "hash": "0x1be6270bef0fc07e1d5f042dee1e2802018000f18a02df50bfaed25eae039a68", + "oid": 208540448037, + "crossed": true, + "fee": "0.00258", + "tid": 383598981292050, + "cloid": "0x00000000000000000000001603000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111712.0", + "sz": "0.00014", + "side": "B", + "time": 1761075376451, + "startPosition": "-302.75704", + "dir": "Close Short", + "closedPnl": "0.149212", + "hash": "0x1be6270bef0fc07e1d5f042dee1e2802018000f18a02df50bfaed25eae039a68", + "oid": 208540448037, + "crossed": true, + "fee": "0.003284", + "tid": 158329872031542, + "cloid": "0x00000000000000000000001603000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111712.0", + "sz": "0.00294", + "side": "B", + "time": 1761075376451, + "startPosition": "-302.7569", + "dir": "Close Short", + "closedPnl": "3.133452", + "hash": "0x1be6270bef0fc07e1d5f042dee1e2802018000f18a02df50bfaed25eae039a68", + "oid": 208540448037, + "crossed": true, + "fee": "0.06897", + "tid": 859714641046683, + "cloid": "0x00000000000000000000001603000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111715.0", + "sz": "0.08947", + "side": "B", + "time": 1761075378053, + "startPosition": "-302.75396", + "dir": "Close Short", + "closedPnl": "95.088716", + "hash": "0x8536ae0f041439b586b0042dee1e3f02014600f49f17588728ff5961c31813a0", + "oid": 208540465447, + "crossed": true, + "fee": "2.098979", + "tid": 389646742078262, + "cloid": "0x00000000000000000000001603000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111716.0", + "sz": "0.00011", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.66449", + "dir": "Close Short", + "closedPnl": "0.116798", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.00258", + "tid": 545433649014360, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111716.0", + "sz": "0.00014", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.66438", + "dir": "Close Short", + "closedPnl": "0.148652", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.003284", + "tid": 342778103441238, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111717.0", + "sz": "0.00011", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.66424", + "dir": "Close Short", + "closedPnl": "0.116688", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.00258", + "tid": 477082289872036, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111718.0", + "sz": "0.00011", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.66413", + "dir": "Close Short", + "closedPnl": "0.116578", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.00258", + "tid": 132678504309069, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111719.0", + "sz": "0.00011", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.66402", + "dir": "Close Short", + "closedPnl": "0.116468", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.00258", + "tid": 380910329194760, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111720.0", + "sz": "0.00018", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.66391", + "dir": "Close Short", + "closedPnl": "0.190404", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.004223", + "tid": 284586852288906, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111720.0", + "sz": "0.00014", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.66373", + "dir": "Close Short", + "closedPnl": "0.148092", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.003284", + "tid": 423473162072922, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111720.0", + "sz": "0.00011", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.66359", + "dir": "Close Short", + "closedPnl": "0.116358", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.00258", + "tid": 92019418869233, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111721.0", + "sz": "0.00011", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.66348", + "dir": "Close Short", + "closedPnl": "0.116248", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.00258", + "tid": 819807432246036, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111722.0", + "sz": "0.00011", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.66337", + "dir": "Close Short", + "closedPnl": "0.116138", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.00258", + "tid": 233700665272481, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111723.0", + "sz": "0.00011", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.66326", + "dir": "Close Short", + "closedPnl": "0.116028", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.00258", + "tid": 219496119425227, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111724.0", + "sz": "0.00014", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.66315", + "dir": "Close Short", + "closedPnl": "0.147532", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.003284", + "tid": 779242800548321, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111724.0", + "sz": "0.00011", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.66301", + "dir": "Close Short", + "closedPnl": "0.115918", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.00258", + "tid": 144985998831251, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111725.0", + "sz": "0.00011", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.6629", + "dir": "Close Short", + "closedPnl": "0.115808", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.00258", + "tid": 450927479011393, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111726.0", + "sz": "0.00017", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.66279", + "dir": "Close Short", + "closedPnl": "0.178806", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.003988", + "tid": 90700275950038, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111726.0", + "sz": "0.00011", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.66262", + "dir": "Close Short", + "closedPnl": "0.115698", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.00258", + "tid": 397102273741979, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111727.0", + "sz": "0.00011", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.66251", + "dir": "Close Short", + "closedPnl": "0.115588", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.00258", + "tid": 8678471250626, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111727.0", + "sz": "0.03525", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.6624", + "dir": "Close Short", + "closedPnl": "37.0407", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.827059", + "tid": 735870735989143, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111728.0", + "sz": "0.00014", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.62715", + "dir": "Close Short", + "closedPnl": "0.146972", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.003284", + "tid": 864553880104341, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111728.0", + "sz": "0.00011", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.62701", + "dir": "Close Short", + "closedPnl": "0.115478", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.00258", + "tid": 889560168292641, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111729.0", + "sz": "0.00011", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.6269", + "dir": "Close Short", + "closedPnl": "0.115368", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.00258", + "tid": 25602236666107, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111730.0", + "sz": "0.00011", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.62679", + "dir": "Close Short", + "closedPnl": "0.115258", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.00258", + "tid": 941723836343465, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111731.0", + "sz": "0.00011", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.62668", + "dir": "Close Short", + "closedPnl": "0.115148", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "0.00258", + "tid": 1013801110147200, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111731.0", + "sz": "0.05155", + "side": "B", + "time": 1761075382230, + "startPosition": "-302.62657", + "dir": "Close Short", + "closedPnl": "53.96254", + "hash": "0xe54d7dc2560ec5a1e6c7042dee1e74021af400a7f101e4738916291515029f8c", + "oid": 208540527278, + "crossed": true, + "fee": "1.209543", + "tid": 834995142178631, + "cloid": "0x00000000000000000000001603000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111733.0", + "sz": "0.08946", + "side": "B", + "time": 1761075387394, + "startPosition": "-302.57502", + "dir": "Close Short", + "closedPnl": "93.467808", + "hash": "0x8ff6323e28c557d0916f042dee1ebe02020e0023c3c876a233bedd90e7c931bb", + "oid": 208540588362, + "crossed": true, + "fee": "2.099083", + "tid": 797433213345974, + "cloid": "0x00000000000000000000001603000198", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111726.0", + "sz": "0.08947", + "side": "B", + "time": 1761075389713, + "startPosition": "-302.48556", + "dir": "Close Short", + "closedPnl": "94.104546", + "hash": "0x514d0e808a53040452c6042dee1ed90202c80066255622d6f515b9d34956ddee", + "oid": 208540624218, + "crossed": true, + "fee": "2.099186", + "tid": 877435139496531, + "cloid": "0x00000000000000000000001603000199", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111709.0", + "sz": "0.02697", + "side": "B", + "time": 1761075391351, + "startPosition": "-302.39609", + "dir": "Close Short", + "closedPnl": "28.825536", + "hash": "0x4e01c154c6f4be484f7b042dee1eee0209f9003a61f7dd1af1ca6ca785f89832", + "oid": 208540660142, + "crossed": true, + "fee": "0.632686", + "tid": 392129482266053, + "cloid": "0x00000000000000000000001603000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111709.0", + "sz": "0.06251", + "side": "B", + "time": 1761075391351, + "startPosition": "-302.36912", + "dir": "Close Short", + "closedPnl": "66.810688", + "hash": "0x4e01c154c6f4be484f7b042dee1eee0209f9003a61f7dd1af1ca6ca785f89832", + "oid": 208540660142, + "crossed": true, + "fee": "1.466415", + "tid": 905455859444307, + "cloid": "0x00000000000000000000001603000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111674.0", + "sz": "0.0895", + "side": "B", + "time": 1761077229774, + "startPosition": "-302.30661", + "dir": "Close Short", + "closedPnl": "98.7901", + "hash": "0xe5ae4d217ddf007fe728042dee774c020341000718d21f518976f8743cd2da6a", + "oid": 208561826161, + "crossed": true, + "fee": "2.098912", + "tid": 1069640742382174, + "cloid": "0x00000000000000000000001604000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111629.0", + "sz": "0.08953", + "side": "B", + "time": 1761077233196, + "startPosition": "-302.21711", + "dir": "Close Short", + "closedPnl": "102.852064", + "hash": "0x45ec3c70239954ad4765042dee77780204210055be9c737fe9b4e7c2e29d2e97", + "oid": 208561914884, + "crossed": true, + "fee": "2.09877", + "tid": 1077145072915217, + "cloid": "0x00000000000000000000001604000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111612.0", + "sz": "0.08955", + "side": "B", + "time": 1761077237122, + "startPosition": "-302.12758", + "dir": "Close Short", + "closedPnl": "104.39739", + "hash": "0x28a1405cfdbd99362a1a042dee77b00204fb004298b0b808cc69ebafbcb17320", + "oid": 208561992204, + "crossed": true, + "fee": "2.098919", + "tid": 465066047936646, + "cloid": "0x00000000000000000000001604000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111621.0", + "sz": "0.00201", + "side": "B", + "time": 1761077242023, + "startPosition": "-302.03803", + "dir": "Close Short", + "closedPnl": "2.325168", + "hash": "0x631eec4bb1600d266498042dee77f602091000314c632bf806e7979e7063e711", + "oid": 208562086907, + "crossed": true, + "fee": "0.047115", + "tid": 446883379739729, + "cloid": "0x00000000000000000000001604000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111622.0", + "sz": "0.00011", + "side": "B", + "time": 1761077242023, + "startPosition": "-302.03602", + "dir": "Close Short", + "closedPnl": "0.127138", + "hash": "0x631eec4bb1600d266498042dee77f602091000314c632bf806e7979e7063e711", + "oid": 208562086907, + "crossed": true, + "fee": "0.002578", + "tid": 510578202349731, + "cloid": "0x00000000000000000000001604000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111622.0", + "sz": "0.03525", + "side": "B", + "time": 1761077242023, + "startPosition": "-302.03591", + "dir": "Close Short", + "closedPnl": "40.74195", + "hash": "0x631eec4bb1600d266498042dee77f602091000314c632bf806e7979e7063e711", + "oid": 208562086907, + "crossed": true, + "fee": "0.826281", + "tid": 430703346741528, + "cloid": "0x00000000000000000000001604000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111623.0", + "sz": "0.00011", + "side": "B", + "time": 1761077242023, + "startPosition": "-302.00066", + "dir": "Close Short", + "closedPnl": "0.127028", + "hash": "0x631eec4bb1600d266498042dee77f602091000314c632bf806e7979e7063e711", + "oid": 208562086907, + "crossed": true, + "fee": "0.002578", + "tid": 906223602240922, + "cloid": "0x00000000000000000000001604000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111623.0", + "sz": "0.04045", + "side": "B", + "time": 1761077242023, + "startPosition": "-302.00055", + "dir": "Close Short", + "closedPnl": "46.71166", + "hash": "0x631eec4bb1600d266498042dee77f602091000314c632bf806e7979e7063e711", + "oid": 208562086907, + "crossed": true, + "fee": "0.948181", + "tid": 130121209155055, + "cloid": "0x00000000000000000000001604000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111624.0", + "sz": "0.01163", + "side": "B", + "time": 1761077242023, + "startPosition": "-301.9601", + "dir": "Close Short", + "closedPnl": "13.418694", + "hash": "0x631eec4bb1600d266498042dee77f602091000314c632bf806e7979e7063e711", + "oid": 208562086907, + "crossed": true, + "fee": "0.272619", + "tid": 718135360123730, + "cloid": "0x00000000000000000000001604000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111612.0", + "sz": "0.08956", + "side": "B", + "time": 1761077245478, + "startPosition": "-301.94847", + "dir": "Close Short", + "closedPnl": "104.409048", + "hash": "0xfa3110dd74d264affbaa042dee782102034800c30fd583829df9bc3033d63e9a", + "oid": 208562137126, + "crossed": true, + "fee": "2.099153", + "tid": 268340338065480, + "cloid": "0x00000000000000000000001604000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111616.0", + "sz": "0.00074", + "side": "B", + "time": 1761077250208, + "startPosition": "-301.85891", + "dir": "Close Short", + "closedPnl": "0.859732", + "hash": "0x88ce0e94bf07f8158a47042dee785e0204f2007a5a0b16e72c96b9e77e0bd200", + "oid": 208562207334, + "crossed": true, + "fee": "0.017345", + "tid": 483240522969367, + "cloid": "0x00000000000000000000001604000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111617.0", + "sz": "0.00011", + "side": "B", + "time": 1761077250208, + "startPosition": "-301.85817", + "dir": "Close Short", + "closedPnl": "0.127688", + "hash": "0x88ce0e94bf07f8158a47042dee785e0204f2007a5a0b16e72c96b9e77e0bd200", + "oid": 208562207334, + "crossed": true, + "fee": "0.002578", + "tid": 854098906845566, + "cloid": "0x00000000000000000000001604000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111618.0", + "sz": "0.00014", + "side": "B", + "time": 1761077250208, + "startPosition": "-301.85806", + "dir": "Close Short", + "closedPnl": "0.162372", + "hash": "0x88ce0e94bf07f8158a47042dee785e0204f2007a5a0b16e72c96b9e77e0bd200", + "oid": 208562207334, + "crossed": true, + "fee": "0.003281", + "tid": 8355102414284, + "cloid": "0x00000000000000000000001604000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111618.0", + "sz": "0.00011", + "side": "B", + "time": 1761077250208, + "startPosition": "-301.85792", + "dir": "Close Short", + "closedPnl": "0.127578", + "hash": "0x88ce0e94bf07f8158a47042dee785e0204f2007a5a0b16e72c96b9e77e0bd200", + "oid": 208562207334, + "crossed": true, + "fee": "0.002578", + "tid": 367368506451468, + "cloid": "0x00000000000000000000001604000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111618.0", + "sz": "0.04479", + "side": "B", + "time": 1761077250208, + "startPosition": "-301.85781", + "dir": "Close Short", + "closedPnl": "51.947442", + "hash": "0x88ce0e94bf07f8158a47042dee785e0204f2007a5a0b16e72c96b9e77e0bd200", + "oid": 208562207334, + "crossed": true, + "fee": "1.049867", + "tid": 865557819063161, + "cloid": "0x00000000000000000000001604000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111619.0", + "sz": "0.00011", + "side": "B", + "time": 1761077250208, + "startPosition": "-301.81302", + "dir": "Close Short", + "closedPnl": "0.127468", + "hash": "0x88ce0e94bf07f8158a47042dee785e0204f2007a5a0b16e72c96b9e77e0bd200", + "oid": 208562207334, + "crossed": true, + "fee": "0.002578", + "tid": 885758472663800, + "cloid": "0x00000000000000000000001604000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111619.0", + "sz": "0.04355", + "side": "B", + "time": 1761077250208, + "startPosition": "-301.81291", + "dir": "Close Short", + "closedPnl": "50.46574", + "hash": "0x88ce0e94bf07f8158a47042dee785e0204f2007a5a0b16e72c96b9e77e0bd200", + "oid": 208562207334, + "crossed": true, + "fee": "1.020811", + "tid": 1005263466538664, + "cloid": "0x00000000000000000000001604000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111610.0", + "sz": "0.08955", + "side": "B", + "time": 1761077259227, + "startPosition": "-301.76936", + "dir": "Close Short", + "closedPnl": "104.57649", + "hash": "0x5c12e7dc4275c2065d8c042dee78da0203d500c1dd78e0d8ffdb932f01799bf0", + "oid": 208562321886, + "crossed": true, + "fee": "2.098881", + "tid": 299499014252175, + "cloid": "0x00000000000000000000001604000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111609.0", + "sz": "0.08956", + "side": "B", + "time": 1761077260761, + "startPosition": "-301.67981", + "dir": "Close Short", + "closedPnl": "104.677728", + "hash": "0x2444f091b971039f25be042dee78ed020326007754742271c80d9be47874dd89", + "oid": 208562350896, + "crossed": true, + "fee": "2.099097", + "tid": 978533100040974, + "cloid": "0x00000000000000000000001604000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111601.0", + "sz": "0.08957", + "side": "B", + "time": 1761077263318, + "startPosition": "-301.59025", + "dir": "Close Short", + "closedPnl": "105.405976", + "hash": "0x5ed4a76d04ab68e4604e042dee791102039d00529fae87b6029d52bfc3af42cf", + "oid": 208562401097, + "crossed": true, + "fee": "2.099181", + "tid": 607412273091748, + "cloid": "0x00000000000000000000001604000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.00011", + "side": "B", + "time": 1761077273479, + "startPosition": "-301.50068", + "dir": "Close Short", + "closedPnl": "0.130658", + "hash": "0x6985d809bb1a8ea96aff042dee79980201b900ef561dad7b0d4e835c7a1e6894", + "oid": 208562519635, + "crossed": true, + "fee": "0.002577", + "tid": 588781225105574, + "cloid": "0x00000000000000000000001604000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111590.0", + "sz": "0.001", + "side": "B", + "time": 1761077273479, + "startPosition": "-301.50057", + "dir": "Close Short", + "closedPnl": "1.1878", + "hash": "0x6985d809bb1a8ea96aff042dee79980201b900ef561dad7b0d4e835c7a1e6894", + "oid": 208562519635, + "crossed": true, + "fee": "0.023433", + "tid": 494429613874011, + "cloid": "0x00000000000000000000001604000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111591.0", + "sz": "0.00011", + "side": "B", + "time": 1761077273479, + "startPosition": "-301.49957", + "dir": "Close Short", + "closedPnl": "0.130548", + "hash": "0x6985d809bb1a8ea96aff042dee79980201b900ef561dad7b0d4e835c7a1e6894", + "oid": 208562519635, + "crossed": true, + "fee": "0.002577", + "tid": 232648128928591, + "cloid": "0x00000000000000000000001604000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111592.0", + "sz": "0.00011", + "side": "B", + "time": 1761077273479, + "startPosition": "-301.49946", + "dir": "Close Short", + "closedPnl": "0.130438", + "hash": "0x6985d809bb1a8ea96aff042dee79980201b900ef561dad7b0d4e835c7a1e6894", + "oid": 208562519635, + "crossed": true, + "fee": "0.002577", + "tid": 787080548980207, + "cloid": "0x00000000000000000000001604000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111593.0", + "sz": "0.00011", + "side": "B", + "time": 1761077273479, + "startPosition": "-301.49935", + "dir": "Close Short", + "closedPnl": "0.130328", + "hash": "0x6985d809bb1a8ea96aff042dee79980201b900ef561dad7b0d4e835c7a1e6894", + "oid": 208562519635, + "crossed": true, + "fee": "0.002577", + "tid": 67045168052354, + "cloid": "0x00000000000000000000001604000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111594.0", + "sz": "0.00011", + "side": "B", + "time": 1761077273479, + "startPosition": "-301.49924", + "dir": "Close Short", + "closedPnl": "0.130218", + "hash": "0x6985d809bb1a8ea96aff042dee79980201b900ef561dad7b0d4e835c7a1e6894", + "oid": 208562519635, + "crossed": true, + "fee": "0.002577", + "tid": 388492906699215, + "cloid": "0x00000000000000000000001604000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111595.0", + "sz": "0.00011", + "side": "B", + "time": 1761077273479, + "startPosition": "-301.49913", + "dir": "Close Short", + "closedPnl": "0.130108", + "hash": "0x6985d809bb1a8ea96aff042dee79980201b900ef561dad7b0d4e835c7a1e6894", + "oid": 208562519635, + "crossed": true, + "fee": "0.002577", + "tid": 213004450911396, + "cloid": "0x00000000000000000000001604000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111596.0", + "sz": "0.00011", + "side": "B", + "time": 1761077273479, + "startPosition": "-301.49902", + "dir": "Close Short", + "closedPnl": "0.129998", + "hash": "0x6985d809bb1a8ea96aff042dee79980201b900ef561dad7b0d4e835c7a1e6894", + "oid": 208562519635, + "crossed": true, + "fee": "0.002577", + "tid": 200043913801608, + "cloid": "0x00000000000000000000001604000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111597.0", + "sz": "0.00011", + "side": "B", + "time": 1761077273479, + "startPosition": "-301.49891", + "dir": "Close Short", + "closedPnl": "0.129888", + "hash": "0x6985d809bb1a8ea96aff042dee79980201b900ef561dad7b0d4e835c7a1e6894", + "oid": 208562519635, + "crossed": true, + "fee": "0.002577", + "tid": 1006363023319665, + "cloid": "0x00000000000000000000001604000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111597.0", + "sz": "0.00014", + "side": "B", + "time": 1761077273479, + "startPosition": "-301.4988", + "dir": "Close Short", + "closedPnl": "0.165312", + "hash": "0x6985d809bb1a8ea96aff042dee79980201b900ef561dad7b0d4e835c7a1e6894", + "oid": 208562519635, + "crossed": true, + "fee": "0.00328", + "tid": 728784544853731, + "cloid": "0x00000000000000000000001604000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111597.0", + "sz": "0.00037", + "side": "B", + "time": 1761077273479, + "startPosition": "-301.49866", + "dir": "Close Short", + "closedPnl": "0.436896", + "hash": "0x6985d809bb1a8ea96aff042dee79980201b900ef561dad7b0d4e835c7a1e6894", + "oid": 208562519635, + "crossed": true, + "fee": "0.008671", + "tid": 838438450939328, + "cloid": "0x00000000000000000000001604000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111598.0", + "sz": "0.00011", + "side": "B", + "time": 1761077273479, + "startPosition": "-301.49829", + "dir": "Close Short", + "closedPnl": "0.129778", + "hash": "0x6985d809bb1a8ea96aff042dee79980201b900ef561dad7b0d4e835c7a1e6894", + "oid": 208562519635, + "crossed": true, + "fee": "0.002577", + "tid": 107461628042720, + "cloid": "0x00000000000000000000001604000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111599.0", + "sz": "0.08707", + "side": "B", + "time": 1761077273479, + "startPosition": "-301.49818", + "dir": "Close Short", + "closedPnl": "102.638116", + "hash": "0x6985d809bb1a8ea96aff042dee79980201b900ef561dad7b0d4e835c7a1e6894", + "oid": 208562519635, + "crossed": true, + "fee": "2.040554", + "tid": 842016445597467, + "cloid": "0x00000000000000000000001604000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111601.0", + "sz": "0.08957", + "side": "B", + "time": 1761077275732, + "startPosition": "-301.41111", + "dir": "Close Short", + "closedPnl": "105.405976", + "hash": "0xeba09b7a7a3524dfed1a042dee79b301b400b360153843b18f6946cd3938feca", + "oid": 208562545013, + "crossed": true, + "fee": "2.099181", + "tid": 653269707515860, + "cloid": "0x00000000000000000000001604000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111577.0", + "sz": "0.08958", + "side": "B", + "time": 1761077277676, + "startPosition": "-301.32154", + "dir": "Close Short", + "closedPnl": "107.567664", + "hash": "0x05e211a7ee3dca9a075b042dee79cc0205b7008d8930e96ca9aabcfaad31a484", + "oid": 208562570223, + "crossed": true, + "fee": "2.098964", + "tid": 260863327943614, + "cloid": "0x00000000000000000000001604000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111584.0", + "sz": "0.00011", + "side": "B", + "time": 1761077286730, + "startPosition": "-301.23196", + "dir": "Close Short", + "closedPnl": "0.131318", + "hash": "0x20a8af26b936f1462222042dee7a380206cb000c543a1018c4715a79783acb30", + "oid": 208562687743, + "crossed": true, + "fee": "0.002577", + "tid": 582525996545157, + "cloid": "0x00000000000000000000001604000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111584.0", + "sz": "0.08947", + "side": "B", + "time": 1761077286730, + "startPosition": "-301.23185", + "dir": "Close Short", + "closedPnl": "106.809286", + "hash": "0x20a8af26b936f1462222042dee7a380206cb000c543a1018c4715a79783acb30", + "oid": 208562687743, + "crossed": true, + "fee": "2.096518", + "tid": 671161167818111, + "cloid": "0x00000000000000000000001604000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111609.0", + "sz": "0.08958", + "side": "B", + "time": 1761077290973, + "startPosition": "-301.14238", + "dir": "Close Short", + "closedPnl": "104.701104", + "hash": "0x602d973dd4d2c14661a7042dee7a70020b7d00236fd5e01803f6429093d69b31", + "oid": 208562753585, + "crossed": true, + "fee": "2.099566", + "tid": 18442276661640, + "cloid": "0x00000000000000000000001604000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111610.0", + "sz": "0.00011", + "side": "B", + "time": 1761077294826, + "startPosition": "-301.0528", + "dir": "Close Short", + "closedPnl": "0.128458", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.002578", + "tid": 512154701897780, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111611.0", + "sz": "0.00011", + "side": "B", + "time": 1761077294826, + "startPosition": "-301.05269", + "dir": "Close Short", + "closedPnl": "0.128348", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.002578", + "tid": 678890749260228, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111612.0", + "sz": "0.00011", + "side": "B", + "time": 1761077294826, + "startPosition": "-301.05258", + "dir": "Close Short", + "closedPnl": "0.128238", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.002578", + "tid": 994343850133975, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111613.0", + "sz": "0.00011", + "side": "B", + "time": 1761077294826, + "startPosition": "-301.05247", + "dir": "Close Short", + "closedPnl": "0.128128", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.002578", + "tid": 68312070460636, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111613.0", + "sz": "0.00231", + "side": "B", + "time": 1761077294826, + "startPosition": "-301.05236", + "dir": "Close Short", + "closedPnl": "2.690688", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.054143", + "tid": 791314422744601, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111613.0", + "sz": "0.00785", + "side": "B", + "time": 1761077294826, + "startPosition": "-301.05005", + "dir": "Close Short", + "closedPnl": "9.14368", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.183994", + "tid": 358594362811436, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111614.0", + "sz": "0.00014", + "side": "B", + "time": 1761077294826, + "startPosition": "-301.0422", + "dir": "Close Short", + "closedPnl": "0.162932", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.003281", + "tid": 887443874181711, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111614.0", + "sz": "0.00011", + "side": "B", + "time": 1761077294826, + "startPosition": "-301.04206", + "dir": "Close Short", + "closedPnl": "0.128018", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.002578", + "tid": 710240978228380, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111615.0", + "sz": "0.00011", + "side": "B", + "time": 1761077294826, + "startPosition": "-301.04195", + "dir": "Close Short", + "closedPnl": "0.127908", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.002578", + "tid": 1076387988745872, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111615.0", + "sz": "0.00176", + "side": "B", + "time": 1761077294826, + "startPosition": "-301.04184", + "dir": "Close Short", + "closedPnl": "2.046528", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.041252", + "tid": 972088570911626, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111615.0", + "sz": "0.01177", + "side": "B", + "time": 1761077294826, + "startPosition": "-301.04008", + "dir": "Close Short", + "closedPnl": "13.686156", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.275878", + "tid": 566214325066158, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111616.0", + "sz": "0.00011", + "side": "B", + "time": 1761077294826, + "startPosition": "-301.02831", + "dir": "Close Short", + "closedPnl": "0.127798", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.002578", + "tid": 141767121836351, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111616.0", + "sz": "0.0157", + "side": "B", + "time": 1761077294826, + "startPosition": "-301.0282", + "dir": "Close Short", + "closedPnl": "18.24026", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.367997", + "tid": 551240901164271, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111617.0", + "sz": "0.00011", + "side": "B", + "time": 1761077294826, + "startPosition": "-301.0125", + "dir": "Close Short", + "closedPnl": "0.127688", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.002578", + "tid": 875360578705893, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111617.0", + "sz": "0.00317", + "side": "B", + "time": 1761077294826, + "startPosition": "-301.01239", + "dir": "Close Short", + "closedPnl": "3.679736", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.074303", + "tid": 206775131458475, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111617.0", + "sz": "0.01963", + "side": "B", + "time": 1761077294826, + "startPosition": "-301.00922", + "dir": "Close Short", + "closedPnl": "22.786504", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.460118", + "tid": 716647333741953, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111617.0", + "sz": "0.00026", + "side": "B", + "time": 1761077294826, + "startPosition": "-300.98959", + "dir": "Close Short", + "closedPnl": "0.301808", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.006094", + "tid": 438997193070213, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111618.0", + "sz": "0.00014", + "side": "B", + "time": 1761077294826, + "startPosition": "-300.98933", + "dir": "Close Short", + "closedPnl": "0.162372", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.003281", + "tid": 327852671487476, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111618.0", + "sz": "0.00011", + "side": "B", + "time": 1761077294826, + "startPosition": "-300.98919", + "dir": "Close Short", + "closedPnl": "0.127578", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.002578", + "tid": 1025458766409790, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111618.0", + "sz": "0.0024", + "side": "B", + "time": 1761077294826, + "startPosition": "-300.98908", + "dir": "Close Short", + "closedPnl": "2.78352", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.056255", + "tid": 61743990745676, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111618.0", + "sz": "0.00635", + "side": "B", + "time": 1761077294826, + "startPosition": "-300.98668", + "dir": "Close Short", + "closedPnl": "7.36473", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.148842", + "tid": 466117570618224, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111618.0", + "sz": "0.01708", + "side": "B", + "time": 1761077294826, + "startPosition": "-300.98033", + "dir": "Close Short", + "closedPnl": "19.809384", + "hash": "0x98dd4a9ac8fe3f129a57042dee7aa102035a008063f15de43ca5f5ed87f218fd", + "oid": 208562819808, + "crossed": true, + "fee": "0.400351", + "tid": 539673252469490, + "cloid": "0x00000000000000000000001604000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111619.0", + "sz": "0.08955", + "side": "B", + "time": 1761077297048, + "startPosition": "-300.96325", + "dir": "Close Short", + "closedPnl": "103.77054", + "hash": "0x6a2ec79bb8f6ef3e6ba8042dee7abc020293008153fa0e100df772ee77fac929", + "oid": 208562851217, + "crossed": true, + "fee": "2.099051", + "tid": 1116173412239739, + "cloid": "0x00000000000000000000001604000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111610.0", + "sz": "0.08956", + "side": "B", + "time": 1761077298667, + "startPosition": "-300.8737", + "dir": "Close Short", + "closedPnl": "104.588168", + "hash": "0x0f15a5700ab1e3d4108f042dee7ad20203210055a5b502a6b2de50c2c9b5bdbe", + "oid": 208562873014, + "crossed": true, + "fee": "2.099116", + "tid": 64649939089952, + "cloid": "0x00000000000000000000001604000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111595.0", + "sz": "0.08957", + "side": "B", + "time": 1761077303184, + "startPosition": "-300.78414", + "dir": "Close Short", + "closedPnl": "105.943396", + "hash": "0x0ba1388e52f2a8d30d1a042dee7b0a02032d0073edf5c7a5af69e3e111f682bd", + "oid": 208562926609, + "crossed": true, + "fee": "2.099068", + "tid": 463889463963475, + "cloid": "0x00000000000000000000001604000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111593.0", + "sz": "0.08958", + "side": "B", + "time": 1761077304619, + "startPosition": "-300.69457", + "dir": "Close Short", + "closedPnl": "106.134384", + "hash": "0xbc2ece8bd4f9f12cbda8042dee7b1f02032400716ffd0ffe5ff779de93fdcb17", + "oid": 208562955117, + "crossed": true, + "fee": "2.099265", + "tid": 29238446112702, + "cloid": "0x00000000000000000000001604000019", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111577.0", + "sz": "0.08959", + "side": "B", + "time": 1761077315234, + "startPosition": "-300.60499", + "dir": "Close Short", + "closedPnl": "107.579672", + "hash": "0x9f99c918f2da5f2ea113042dee7bb30204ce00fe8ddd7e004362746bb1de3919", + "oid": 208563087856, + "crossed": true, + "fee": "2.099198", + "tid": 811010334186938, + "cloid": "0x00000000000000000000001604000020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111577.0", + "sz": "0.08959", + "side": "B", + "time": 1761077319153, + "startPosition": "-300.5154", + "dir": "Close Short", + "closedPnl": "107.579672", + "hash": "0x1e691d941f2b3d821fe2042dee7be3020deb0079ba2e5c54c231c8e6de2f176c", + "oid": 208563127090, + "crossed": true, + "fee": "2.099198", + "tid": 393576950448074, + "cloid": "0x00000000000000000000001604000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111535.0", + "sz": "0.05328", + "side": "B", + "time": 1761077321334, + "startPosition": "-300.42581", + "dir": "Close Short", + "closedPnl": "66.216384", + "hash": "0xa87dcf2e411802d9a9f7042dee7c000207110013dc1b21ab4c467a81001bdcc4", + "oid": 208563155990, + "crossed": true, + "fee": "1.247942", + "tid": 682394832494969, + "cloid": "0x00000000000000000000001604000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111535.0", + "sz": "0.03632", + "side": "B", + "time": 1761077321334, + "startPosition": "-300.37253", + "dir": "Close Short", + "closedPnl": "45.138496", + "hash": "0xa87dcf2e411802d9a9f7042dee7c000207110013dc1b21ab4c467a81001bdcc4", + "oid": 208563155990, + "crossed": true, + "fee": "0.850699", + "tid": 841865400794543, + "cloid": "0x00000000000000000000001604000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111573.0", + "sz": "0.00975", + "side": "B", + "time": 1761077325287, + "startPosition": "-300.33621", + "dir": "Close Short", + "closedPnl": "11.7468", + "hash": "0xf3893410d32dc09ef502042dee7c3102012500f66e20df719751df6392219a89", + "oid": 208563213696, + "crossed": true, + "fee": "0.228445", + "tid": 827379357132395, + "cloid": "0x00000000000000000000001604000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111573.0", + "sz": "0.03525", + "side": "B", + "time": 1761077325287, + "startPosition": "-300.32646", + "dir": "Close Short", + "closedPnl": "42.4692", + "hash": "0xf3893410d32dc09ef502042dee7c3102012500f66e20df719751df6392219a89", + "oid": 208563213696, + "crossed": true, + "fee": "0.825919", + "tid": 794207305776705, + "cloid": "0x00000000000000000000001604000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111573.0", + "sz": "0.04459", + "side": "B", + "time": 1761077325287, + "startPosition": "-300.29121", + "dir": "Close Short", + "closedPnl": "53.722032", + "hash": "0xf3893410d32dc09ef502042dee7c3102012500f66e20df719751df6392219a89", + "oid": 208563213696, + "crossed": true, + "fee": "1.044758", + "tid": 806290132193340, + "cloid": "0x00000000000000000000001604000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111574.0", + "sz": "0.0458", + "side": "B", + "time": 1761077326934, + "startPosition": "-300.24662", + "dir": "Close Short", + "closedPnl": "55.13404", + "hash": "0xae78af345fb88bf7aff2042dee7c440206370019fabbaac952415a871ebc65e2", + "oid": 208563243108, + "crossed": true, + "fee": "1.073118", + "tid": 238677934270005, + "cloid": "0x00000000000000000000001604000024", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111574.0", + "sz": "0.04378", + "side": "B", + "time": 1761077326934, + "startPosition": "-300.20082", + "dir": "Close Short", + "closedPnl": "52.702364", + "hash": "0xae78af345fb88bf7aff2042dee7c440206370019fabbaac952415a871ebc65e2", + "oid": 208563243108, + "crossed": true, + "fee": "1.025789", + "tid": 616459089687526, + "cloid": "0x00000000000000000000001604000024", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111570.0", + "sz": "0.08958", + "side": "B", + "time": 1761077337154, + "startPosition": "-300.15704", + "dir": "Close Short", + "closedPnl": "108.194724", + "hash": "0x6f53619a078eab7270cd042dee7cc8020328007fa281ca44131c0cecc682855d", + "oid": 208563322529, + "crossed": true, + "fee": "2.098832", + "tid": 578634823164984, + "cloid": "0x00000000000000000000001604000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111557.0", + "sz": "0.08958", + "side": "B", + "time": 1761077344225, + "startPosition": "-300.06746", + "dir": "Close Short", + "closedPnl": "109.359264", + "hash": "0x17eb454094bf633c1965042dee7d210206f600262fb2820ebbb3f09353b33d26", + "oid": 208563420873, + "crossed": true, + "fee": "2.098587", + "tid": 676028460020365, + "cloid": "0x00000000000000000000001604000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111540.0", + "sz": "0.08959", + "side": "B", + "time": 1761077347246, + "startPosition": "-299.97788", + "dir": "Close Short", + "closedPnl": "110.894502", + "hash": "0x6ac6064227e484b56c3f042dee7d47020c630027c2e7a3870e8eb194e6e85ea0", + "oid": 208563478503, + "crossed": true, + "fee": "2.098502", + "tid": 26936180333129, + "cloid": "0x00000000000000000000001604000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111533.0", + "sz": "0.0896", + "side": "B", + "time": 1761077348612, + "startPosition": "-299.88829", + "dir": "Close Short", + "closedPnl": "111.53408", + "hash": "0x87f69a37b977882d8970042dee7d5a020645001d547aa6ff2bbf458a787b6218", + "oid": 208563500524, + "crossed": true, + "fee": "2.098604", + "tid": 406574935809106, + "cloid": "0x00000000000000000000001604000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111511.0", + "sz": "0.04358", + "side": "B", + "time": 1761077351195, + "startPosition": "-299.79869", + "dir": "Close Short", + "closedPnl": "55.207144", + "hash": "0x495dc6d7af17929b4ad7042dee7d7802079900bd4a1ab16ded26722a6e1b6c85", + "oid": 208563548387, + "crossed": true, + "fee": "1.020526", + "tid": 1045743111262933, + "cloid": "0x00000000000000000000001604000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111511.0", + "sz": "0.04602", + "side": "B", + "time": 1761077351195, + "startPosition": "-299.75511", + "dir": "Close Short", + "closedPnl": "58.298136", + "hash": "0x495dc6d7af17929b4ad7042dee7d7802079900bd4a1ab16ded26722a6e1b6c85", + "oid": 208563548387, + "crossed": true, + "fee": "1.077664", + "tid": 1061629923727972, + "cloid": "0x00000000000000000000001604000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111518.0", + "sz": "0.0298", + "side": "B", + "time": 1761077354922, + "startPosition": "-299.70909", + "dir": "Close Short", + "closedPnl": "37.54204", + "hash": "0x0006bd2424e4bfe50180042dee7da70202d30009bfe7deb7a3cf6876e3e899cf", + "oid": 208563593588, + "crossed": true, + "fee": "0.697879", + "tid": 1078092530473072, + "cloid": "0x00000000000000000000001604000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111518.0", + "sz": "0.0598", + "side": "B", + "time": 1761077354922, + "startPosition": "-299.67929", + "dir": "Close Short", + "closedPnl": "75.33604", + "hash": "0x0006bd2424e4bfe50180042dee7da70202d30009bfe7deb7a3cf6876e3e899cf", + "oid": 208563593588, + "crossed": true, + "fee": "1.400443", + "tid": 191053857479645, + "cloid": "0x00000000000000000000001604000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111503.0", + "sz": "0.08961", + "side": "B", + "time": 1761077356252, + "startPosition": "-299.61949", + "dir": "Close Short", + "closedPnl": "114.234828", + "hash": "0x8750a90b7aa1dcf188ca042dee7db602020400f115a4fbc32b19545e39a5b6dc", + "oid": 208563605945, + "crossed": true, + "fee": "2.098274", + "tid": 265113430537752, + "cloid": "0x00000000000000000000001604000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111499.0", + "sz": "0.06506", + "side": "B", + "time": 1761077357840, + "startPosition": "-299.52988", + "dir": "Close Short", + "closedPnl": "83.198728", + "hash": "0x3e53b026a1071a2e3fcd042dee7dcb020631000c3c0a3900e21c5b79600af418", + "oid": 208563629089, + "crossed": true, + "fee": "1.523366", + "tid": 497039836035340, + "cloid": "0x00000000000000000000001604000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111499.0", + "sz": "0.02455", + "side": "B", + "time": 1761077357840, + "startPosition": "-299.46482", + "dir": "Close Short", + "closedPnl": "31.39454", + "hash": "0x3e53b026a1071a2e3fcd042dee7dcb020631000c3c0a3900e21c5b79600af418", + "oid": 208563629089, + "crossed": true, + "fee": "0.574833", + "tid": 247035550690492, + "cloid": "0x00000000000000000000001604000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111471.0", + "sz": "0.00649", + "side": "B", + "time": 1761077359695, + "startPosition": "-299.44027", + "dir": "Close Short", + "closedPnl": "8.481132", + "hash": "0x7862bf16a213816079dc042dee7de20202b700fc3d16a0321c2b6a6961175b4b", + "oid": 208563653951, + "crossed": true, + "fee": "0.151923", + "tid": 709954842043725, + "cloid": "0x00000000000000000000001604000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111471.0", + "sz": "0.08315", + "side": "B", + "time": 1761077359695, + "startPosition": "-299.43378", + "dir": "Close Short", + "closedPnl": "108.66042", + "hash": "0x7862bf16a213816079dc042dee7de20202b700fc3d16a0321c2b6a6961175b4b", + "oid": 208563653951, + "crossed": true, + "fee": "1.94645", + "tid": 842688377627215, + "cloid": "0x00000000000000000000001604000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111500.0", + "sz": "0.009", + "side": "B", + "time": 1761077362290, + "startPosition": "-299.35063", + "dir": "Close Short", + "closedPnl": "11.5002", + "hash": "0x277e25311f89539a28f7042dee7e03020b410016ba8c726ccb46d083de8d2d84", + "oid": 208563687032, + "crossed": true, + "fee": "0.210734", + "tid": 857399510738392, + "cloid": "0x00000000000000000000001604000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111503.0", + "sz": "0.001", + "side": "B", + "time": 1761077362290, + "startPosition": "-299.34163", + "dir": "Close Short", + "closedPnl": "1.2748", + "hash": "0x277e25311f89539a28f7042dee7e03020b410016ba8c726ccb46d083de8d2d84", + "oid": 208563687032, + "crossed": true, + "fee": "0.023415", + "tid": 1059772544217290, + "cloid": "0x00000000000000000000001604000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111516.0", + "sz": "0.00014", + "side": "B", + "time": 1761077362290, + "startPosition": "-299.34063", + "dir": "Close Short", + "closedPnl": "0.176652", + "hash": "0x277e25311f89539a28f7042dee7e03020b410016ba8c726ccb46d083de8d2d84", + "oid": 208563687032, + "crossed": true, + "fee": "0.003278", + "tid": 902636980889626, + "cloid": "0x00000000000000000000001604000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111517.0", + "sz": "0.001", + "side": "B", + "time": 1761077362290, + "startPosition": "-299.34049", + "dir": "Close Short", + "closedPnl": "1.2608", + "hash": "0x277e25311f89539a28f7042dee7e03020b410016ba8c726ccb46d083de8d2d84", + "oid": 208563687032, + "crossed": true, + "fee": "0.023418", + "tid": 219083900039744, + "cloid": "0x00000000000000000000001604000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111520.0", + "sz": "0.00018", + "side": "B", + "time": 1761077362290, + "startPosition": "-299.33949", + "dir": "Close Short", + "closedPnl": "0.226404", + "hash": "0x277e25311f89539a28f7042dee7e03020b410016ba8c726ccb46d083de8d2d84", + "oid": 208563687032, + "crossed": true, + "fee": "0.004215", + "tid": 727961456389516, + "cloid": "0x00000000000000000000001604000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111521.0", + "sz": "0.00014", + "side": "B", + "time": 1761077362290, + "startPosition": "-299.33931", + "dir": "Close Short", + "closedPnl": "0.175952", + "hash": "0x277e25311f89539a28f7042dee7e03020b410016ba8c726ccb46d083de8d2d84", + "oid": 208563687032, + "crossed": true, + "fee": "0.003278", + "tid": 194882297279647, + "cloid": "0x00000000000000000000001604000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111523.0", + "sz": "0.07817", + "side": "B", + "time": 1761077362290, + "startPosition": "-299.33917", + "dir": "Close Short", + "closedPnl": "98.087716", + "hash": "0x277e25311f89539a28f7042dee7e03020b410016ba8c726ccb46d083de8d2d84", + "oid": 208563687032, + "crossed": true, + "fee": "1.830728", + "tid": 14852248067390, + "cloid": "0x00000000000000000000001604000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111507.0", + "sz": "0.00446", + "side": "B", + "time": 1761077372559, + "startPosition": "-299.261", + "dir": "Close Short", + "closedPnl": "5.667768", + "hash": "0xb51196532b9184d1b68b042dee7e7f02013e0038c694a3a358da41a5ea955ebc", + "oid": 208563799982, + "crossed": true, + "fee": "0.104437", + "tid": 796252268363155, + "cloid": "0x00000000000000000000001604000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111509.0", + "sz": "0.08516", + "side": "B", + "time": 1761077372559, + "startPosition": "-299.25654", + "dir": "Close Short", + "closedPnl": "108.051008", + "hash": "0xb51196532b9184d1b68b042dee7e7f02013e0038c694a3a358da41a5ea955ebc", + "oid": 208563799982, + "crossed": true, + "fee": "1.994182", + "tid": 837378784244718, + "cloid": "0x00000000000000000000001604000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111515.0", + "sz": "0.08962", + "side": "B", + "time": 1761077374079, + "startPosition": "-299.17138", + "dir": "Close Short", + "closedPnl": "113.172136", + "hash": "0x1a54a33544095d041bce042dee7e920207be001adf0c7bd6be1d4e88030d36ee", + "oid": 208563817851, + "crossed": true, + "fee": "2.098734", + "tid": 266760814031957, + "cloid": "0x00000000000000000000001604000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111503.0", + "sz": "0.08962", + "side": "B", + "time": 1761077382960, + "startPosition": "-299.08176", + "dir": "Close Short", + "closedPnl": "114.247576", + "hash": "0xed3ee5de55ad5feaeeb8042dee7ef802016a00c3f0a07ebc9107913114a139d5", + "oid": 208563917061, + "crossed": true, + "fee": "2.098508", + "tid": 540506494447686, + "cloid": "0x00000000000000000000001604000037", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111503.0", + "sz": "0.08962", + "side": "B", + "time": 1761077384164, + "startPosition": "-298.99214", + "dir": "Close Short", + "closedPnl": "114.247576", + "hash": "0x2b29f6af596184d82ca3042dee7f0a02012c0094f464a3aacef2a20218655ec2", + "oid": 208563925160, + "crossed": true, + "fee": "2.098508", + "tid": 860416315817808, + "cloid": "0x00000000000000000000001604000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111503.0", + "sz": "0.08962", + "side": "B", + "time": 1761077386381, + "startPosition": "-298.90252", + "dir": "Close Short", + "closedPnl": "114.247576", + "hash": "0xa5b2624d7d2e802ca72c042dee7f2602013c003318219efe497b0da03c225a17", + "oid": 208563948469, + "crossed": true, + "fee": "2.098508", + "tid": 361839163221220, + "cloid": "0x00000000000000000000001604000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111495.0", + "sz": "0.08963", + "side": "B", + "time": 1761077387977, + "startPosition": "-298.8129", + "dir": "Close Short", + "closedPnl": "114.977364", + "hash": "0x5a7c2325f3423a075bf5042dee7f3d02043b000b8e4558d9fe44ce78b24613f1", + "oid": 208563968297, + "crossed": true, + "fee": "2.098592", + "tid": 657624580017391, + "cloid": "0x00000000000000000000001604000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111505.0", + "sz": "0.08961", + "side": "B", + "time": 1761077392115, + "startPosition": "-298.72327", + "dir": "Close Short", + "closedPnl": "114.055608", + "hash": "0xba733ea2c9282890bbec042dee7f6c02081e0088642b47625e3be9f5882c027b", + "oid": 208564033551, + "crossed": true, + "fee": "2.098312", + "tid": 1090807957071284, + "cloid": "0x00000000000000000000001604000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111499.0", + "sz": "0.08963", + "side": "B", + "time": 1761077394327, + "startPosition": "-298.63366", + "dir": "Close Short", + "closedPnl": "114.618844", + "hash": "0xc8678702895929b8c9e1042dee7f8202052b00e8245c488a6c303255485d03a3", + "oid": 208564068605, + "crossed": true, + "fee": "2.098667", + "tid": 1101883391069849, + "cloid": "0x00000000000000000000001604000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111499.0", + "sz": "0.08963", + "side": "B", + "time": 1761077398217, + "startPosition": "-298.54403", + "dir": "Close Short", + "closedPnl": "114.618844", + "hash": "0xaba2e6fffca1cb37ad1c042dee7fb802019a00e597a4ea094f6b9252bba5a522", + "oid": 208564109286, + "crossed": true, + "fee": "2.098667", + "tid": 179657082790835, + "cloid": "0x00000000000000000000001604000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111484.0", + "sz": "0.08963", + "side": "B", + "time": 1761077401858, + "startPosition": "-298.4544", + "dir": "Close Short", + "closedPnl": "115.963294", + "hash": "0x18a5ead0b1bab6701a1f042dee7fed02064a00b64cbdd542bc6e962370be905a", + "oid": 208564148924, + "crossed": true, + "fee": "2.098385", + "tid": 776364688581924, + "cloid": "0x00000000000000000000001604000044", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111484.0", + "sz": "0.08963", + "side": "B", + "time": 1761077403332, + "startPosition": "-298.36477", + "dir": "Close Short", + "closedPnl": "115.963294", + "hash": "0xbf2e97bea9dbc64dc0a8042dee8000021d7d00a444dee51f62f7431168dfa038", + "oid": 208564173043, + "crossed": true, + "fee": "2.098385", + "tid": 806428344114932, + "cloid": "0x00000000000000000000001604000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111396.0", + "sz": "0.0897", + "side": "B", + "time": 1761077405339, + "startPosition": "-298.27514", + "dir": "Close Short", + "closedPnl": "123.94746", + "hash": "0x9e612179f5ddded79fda042dee80180205c5005f90d0fda94229ccccb4d1b8c2", + "oid": 208564222196, + "crossed": true, + "fee": "2.098366", + "tid": 643143658678862, + "cloid": "0x00000000000000000000001604000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111347.0", + "sz": "0.08972", + "side": "B", + "time": 1761077408239, + "startPosition": "-298.18544", + "dir": "Close Short", + "closedPnl": "128.371376", + "hash": "0xcfda68d45588c571d154042dee803b02088900b9f08be44373a31427148c9f5c", + "oid": 208564279884, + "crossed": true, + "fee": "2.097911", + "tid": 952407248137620, + "cloid": "0x00000000000000000000001604000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111372.0", + "sz": "0.08974", + "side": "B", + "time": 1761077412589, + "startPosition": "-298.09572", + "dir": "Close Short", + "closedPnl": "126.156492", + "hash": "0xa0c1411562002322a23a042dee806d02041700fafd0341f44489ec682103fd0d", + "oid": 208564348128, + "crossed": true, + "fee": "2.098849", + "tid": 214197720181740, + "cloid": "0x00000000000000000000001604000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111390.0", + "sz": "0.00085", + "side": "B", + "time": 1761077414195, + "startPosition": "-298.00598", + "dir": "Close Short", + "closedPnl": "1.17963", + "hash": "0xb945fd8b54d9059ebabf042dee807f0212f20070efdc24705d0ea8de13dcdf89", + "oid": 208564377619, + "crossed": true, + "fee": "0.019883", + "tid": 687253514576943, + "cloid": "0x00000000000000000000001604000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111394.0", + "sz": "0.08887", + "side": "B", + "time": 1761077414195, + "startPosition": "-298.00513", + "dir": "Close Short", + "closedPnl": "122.978306", + "hash": "0xb945fd8b54d9059ebabf042dee807f0212f20070efdc24705d0ea8de13dcdf89", + "oid": 208564377619, + "crossed": true, + "fee": "2.078912", + "tid": 464295973195282, + "cloid": "0x00000000000000000000001604000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111402.0", + "sz": "0.08971", + "side": "B", + "time": 1761077416455, + "startPosition": "-297.91626", + "dir": "Close Short", + "closedPnl": "123.423018", + "hash": "0x90b6706b927221929230042dee809a020a1500512d754064347f1bbe5175fb7d", + "oid": 208564415184, + "crossed": true, + "fee": "2.098713", + "tid": 952410279980958, + "cloid": "0x00000000000000000000001604000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111428.0", + "sz": "0.03344", + "side": "B", + "time": 1761077420117, + "startPosition": "-297.82655", + "dir": "Close Short", + "closedPnl": "45.137312", + "hash": "0xe7300d37f321c5cde8a9042dee80c5020941001d8e24e49f8af8b88ab2259fb8", + "oid": 208564468194, + "crossed": true, + "fee": "0.782491", + "tid": 573523221684899, + "cloid": "0x00000000000000000000001604000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111438.0", + "sz": "0.05625", + "side": "B", + "time": 1761077420117, + "startPosition": "-297.79311", + "dir": "Close Short", + "closedPnl": "75.36375", + "hash": "0xe7300d37f321c5cde8a9042dee80c5020941001d8e24e49f8af8b88ab2259fb8", + "oid": 208564468194, + "crossed": true, + "fee": "1.316361", + "tid": 381660482113022, + "cloid": "0x00000000000000000000001604000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111450.0", + "sz": "0.08967", + "side": "B", + "time": 1761077421986, + "startPosition": "-297.73686", + "dir": "Close Short", + "closedPnl": "119.063826", + "hash": "0xfafc1247c2cc76a4fc75042dee80de020a0e002d5dcf95779ec4bd9a81c0508f", + "oid": 208564507823, + "crossed": true, + "fee": "2.098681", + "tid": 302783226379416, + "cloid": "0x00000000000000000000001604000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111433.0", + "sz": "0.08969", + "side": "B", + "time": 1761077424333, + "startPosition": "-297.64719", + "dir": "Close Short", + "closedPnl": "120.615112", + "hash": "0x2ae85ef31442fbb52c62042dee80f80208e400d8af461a87ceb10a45d346d59f", + "oid": 208564550444, + "crossed": true, + "fee": "2.098829", + "tid": 1073936497416156, + "cloid": "0x00000000000000000000001604000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111410.0", + "sz": "0.01149", + "side": "B", + "time": 1761077432112, + "startPosition": "-297.5575", + "dir": "Close Short", + "closedPnl": "15.716022", + "hash": "0x048d0b8a43c465660606042dee81500202e4006fdec78438a855b6dd02c83f50", + "oid": 208564641957, + "crossed": true, + "fee": "0.268821", + "tid": 1091669770031897, + "cloid": "0x00000000000000000000001604000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111410.0", + "sz": "0.0782", + "side": "B", + "time": 1761077432112, + "startPosition": "-297.54601", + "dir": "Close Short", + "closedPnl": "106.96196", + "hash": "0x048d0b8a43c465660606042dee81500202e4006fdec78438a855b6dd02c83f50", + "oid": 208564641957, + "crossed": true, + "fee": "1.829575", + "tid": 848318683977927, + "cloid": "0x00000000000000000000001604000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111417.0", + "sz": "0.0897", + "side": "B", + "time": 1761077436258, + "startPosition": "-297.46781", + "dir": "Close Short", + "closedPnl": "122.06376", + "hash": "0x790aed06c90f911b7a84042dee818502048f00ec6402afed1cd3985988036b06", + "oid": 208564691704, + "crossed": true, + "fee": "2.098762", + "tid": 468056352003517, + "cloid": "0x00000000000000000000001604000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111417.0", + "sz": "0.08969", + "side": "B", + "time": 1761077438187, + "startPosition": "-297.37811", + "dir": "Close Short", + "closedPnl": "122.050152", + "hash": "0xce1d5cdd54f82687cf97042dee819e02046900c2effb455971e6083013fc0072", + "oid": 208564712891, + "crossed": true, + "fee": "2.098528", + "tid": 290639423427864, + "cloid": "0x00000000000000000000001604000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111410.0", + "sz": "0.08971", + "side": "B", + "time": 1761077441211, + "startPosition": "-297.28842", + "dir": "Close Short", + "closedPnl": "122.705338", + "hash": "0x5b13e8f39ffd981a5c8d042dee81c802024700d93af0b6ecfedc94465ef17204", + "oid": 208564748382, + "crossed": true, + "fee": "2.098864", + "tid": 609752904068706, + "cloid": "0x00000000000000000000001604000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111406.0", + "sz": "0.08971", + "side": "B", + "time": 1761077448597, + "startPosition": "-297.19871", + "dir": "Close Short", + "closedPnl": "123.064178", + "hash": "0xe14726c39287139ce2c0042dee82290202b300a92d8a326e850fd216518aed87", + "oid": 208564812424, + "crossed": true, + "fee": "2.098788", + "tid": 711545597085357, + "cloid": "0x00000000000000000000001604000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111404.0", + "sz": "0.08971", + "side": "B", + "time": 1761077450806, + "startPosition": "-297.109", + "dir": "Close Short", + "closedPnl": "123.243598", + "hash": "0x879334c29338b11d890c042dee82460204a500a82e3bcfef2b5be015523c8b08", + "oid": 208564849229, + "crossed": true, + "fee": "2.098751", + "tid": 948640471177632, + "cloid": "0x00000000000000000000001604000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111383.0", + "sz": "0.08973", + "side": "B", + "time": 1761077459394, + "startPosition": "-297.01929", + "dir": "Close Short", + "closedPnl": "125.155404", + "hash": "0x6637f261770e692e67b1042dee82c40205f40047120188000a009db436024319", + "oid": 208564956977, + "crossed": true, + "fee": "2.098823", + "tid": 366035388564332, + "cloid": "0x00000000000000000000001604000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111380.0", + "sz": "0.08974", + "side": "B", + "time": 1761077469109, + "startPosition": "-296.92956", + "dir": "Close Short", + "closedPnl": "125.438572", + "hash": "0x262517bd2c8dede9279e042dee834702033d00a2c7810cbbc9edc30feb81c7d3", + "oid": 208565061462, + "crossed": true, + "fee": "2.099", + "tid": 269550512310056, + "cloid": "0x00000000000000000000001604000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111359.0", + "sz": "0.0778", + "side": "B", + "time": 1761077472617, + "startPosition": "-296.83982", + "dir": "Close Short", + "closedPnl": "110.38264", + "hash": "0x57786f9483500fa158f2042dee8373020456007a1e532e73fb411ae74253e98b", + "oid": 208565118834, + "crossed": true, + "fee": "1.819383", + "tid": 715351580136878, + "cloid": "0x00000000000000000000001604000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111359.0", + "sz": "0.01194", + "side": "B", + "time": 1761077472617, + "startPosition": "-296.76202", + "dir": "Close Short", + "closedPnl": "16.940472", + "hash": "0x57786f9483500fa158f2042dee8373020456007a1e532e73fb411ae74253e98b", + "oid": 208565118834, + "crossed": true, + "fee": "0.279221", + "tid": 521785466491106, + "cloid": "0x00000000000000000000001604000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111369.0", + "sz": "0.02286", + "side": "B", + "time": 1761077477354, + "startPosition": "-296.75008", + "dir": "Close Short", + "closedPnl": "32.205168", + "hash": "0x2261147b39c7302523da042dee83ab02063d0060d4ca4ef7c629bfcdf8cb0a0f", + "oid": 208565186605, + "crossed": true, + "fee": "0.534638", + "tid": 1094065226346129, + "cloid": "0x00000000000000000000001604000063", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111370.0", + "sz": "0.06688", + "side": "B", + "time": 1761077477354, + "startPosition": "-296.72722", + "dir": "Close Short", + "closedPnl": "94.153664", + "hash": "0x2261147b39c7302523da042dee83ab02063d0060d4ca4ef7c629bfcdf8cb0a0f", + "oid": 208565186605, + "crossed": true, + "fee": "1.564169", + "tid": 925337508902599, + "cloid": "0x00000000000000000000001604000063", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111377.0", + "sz": "0.00014", + "side": "B", + "time": 1761077479699, + "startPosition": "-296.66034", + "dir": "Close Short", + "closedPnl": "0.196112", + "hash": "0x1e60dc4eb5202f1e1fda042dee83c4020526003450234df0c22987a174240908", + "oid": 208565236480, + "crossed": true, + "fee": "0.003274", + "tid": 908675256248837, + "cloid": "0x00000000000000000000001604000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111377.0", + "sz": "0.00011", + "side": "B", + "time": 1761077479699, + "startPosition": "-296.6602", + "dir": "Close Short", + "closedPnl": "0.154088", + "hash": "0x1e60dc4eb5202f1e1fda042dee83c4020526003450234df0c22987a174240908", + "oid": 208565236480, + "crossed": true, + "fee": "0.002572", + "tid": 825356285898149, + "cloid": "0x00000000000000000000001604000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111378.0", + "sz": "0.00011", + "side": "B", + "time": 1761077479699, + "startPosition": "-296.66009", + "dir": "Close Short", + "closedPnl": "0.153978", + "hash": "0x1e60dc4eb5202f1e1fda042dee83c4020526003450234df0c22987a174240908", + "oid": 208565236480, + "crossed": true, + "fee": "0.002572", + "tid": 266653385215924, + "cloid": "0x00000000000000000000001604000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111379.0", + "sz": "0.00011", + "side": "B", + "time": 1761077479699, + "startPosition": "-296.65998", + "dir": "Close Short", + "closedPnl": "0.153868", + "hash": "0x1e60dc4eb5202f1e1fda042dee83c4020526003450234df0c22987a174240908", + "oid": 208565236480, + "crossed": true, + "fee": "0.002572", + "tid": 355679899140207, + "cloid": "0x00000000000000000000001604000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111380.0", + "sz": "0.00011", + "side": "B", + "time": 1761077479699, + "startPosition": "-296.65987", + "dir": "Close Short", + "closedPnl": "0.153758", + "hash": "0x1e60dc4eb5202f1e1fda042dee83c4020526003450234df0c22987a174240908", + "oid": 208565236480, + "crossed": true, + "fee": "0.002572", + "tid": 681231780849389, + "cloid": "0x00000000000000000000001604000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111380.0", + "sz": "0.08915", + "side": "B", + "time": 1761077479699, + "startPosition": "-296.65976", + "dir": "Close Short", + "closedPnl": "124.61387", + "hash": "0x1e60dc4eb5202f1e1fda042dee83c4020526003450234df0c22987a174240908", + "oid": 208565236480, + "crossed": true, + "fee": "2.0852", + "tid": 235446614009738, + "cloid": "0x00000000000000000000001604000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111380.0", + "sz": "0.08971", + "side": "B", + "time": 1761077485663, + "startPosition": "-296.57061", + "dir": "Close Short", + "closedPnl": "125.396638", + "hash": "0x3d25f8c27dd6d53b3e9f042dee840c02038100a818d9f40de0eea4153cdaaf25", + "oid": 208565331504, + "crossed": true, + "fee": "2.098298", + "tid": 595036669953015, + "cloid": "0x00000000000000000000001604000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111380.0", + "sz": "0.08973", + "side": "B", + "time": 1761077489100, + "startPosition": "-296.4809", + "dir": "Close Short", + "closedPnl": "125.424594", + "hash": "0x9195656394171d05930f042dee843702026e00492f1a3bd7355e10b6531af6f0", + "oid": 208565389934, + "crossed": true, + "fee": "2.098766", + "tid": 251162585299161, + "cloid": "0x00000000000000000000001604000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111381.0", + "sz": "0.08973", + "side": "B", + "time": 1761077492285, + "startPosition": "-296.39117", + "dir": "Close Short", + "closedPnl": "125.334864", + "hash": "0xbeebf8d4f0a15267c065042dee846202020800ba8ba4713962b4a427afa52c52", + "oid": 208565425123, + "crossed": true, + "fee": "2.098785", + "tid": 354638525963273, + "cloid": "0x00000000000000000000001604000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111358.0", + "sz": "0.08974", + "side": "B", + "time": 1761077495074, + "startPosition": "-296.30144", + "dir": "Close Short", + "closedPnl": "127.412852", + "hash": "0xe930f2c1b12779daeaaa042dee8482020ab000a74c2a98ac8cf99e14702b53c5", + "oid": 208565467188, + "crossed": true, + "fee": "2.098586", + "tid": 420206811263764, + "cloid": "0x00000000000000000000001604000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111371.0", + "sz": "0.08973", + "side": "B", + "time": 1761077500059, + "startPosition": "-296.2117", + "dir": "Close Short", + "closedPnl": "126.232164", + "hash": "0x1db6630efcb6f3cf1f30042dee84bf0206e000f497ba12a1c17f0e61bbbacdb9", + "oid": 208565539615, + "crossed": true, + "fee": "2.098597", + "tid": 228051959964378, + "cloid": "0x00000000000000000000001604000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111371.0", + "sz": "0.08973", + "side": "B", + "time": 1761077502183, + "startPosition": "-296.12197", + "dir": "Close Short", + "closedPnl": "126.232164", + "hash": "0x6f33830c8660befd70ad042dee84da02036c00f22163ddcf12fc2e5f456498e8", + "oid": 208565567924, + "crossed": true, + "fee": "2.098597", + "tid": 217452280325787, + "cloid": "0x00000000000000000000001604000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111371.0", + "sz": "0.08974", + "side": "B", + "time": 1761077507649, + "startPosition": "-296.03224", + "dir": "Close Short", + "closedPnl": "126.246232", + "hash": "0x2d2467c96dec9aad2e9e042dee85250203ed00af08efb97fd0ed131c2ce07497", + "oid": 208565627274, + "crossed": true, + "fee": "2.098831", + "tid": 900651599745336, + "cloid": "0x00000000000000000000001604000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111317.0", + "sz": "0.08976", + "side": "B", + "time": 1761077513459, + "startPosition": "-295.9425", + "dir": "Close Short", + "closedPnl": "131.121408", + "hash": "0x368718fee077d6873800042dee8574020c3300e47b7af559da4fc4519f7bb071", + "oid": 208565732688, + "crossed": true, + "fee": "2.09828", + "tid": 1042275689848118, + "cloid": "0x00000000000000000000001604000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111233.0", + "sz": "0.08984", + "side": "B", + "time": 1761077515804, + "startPosition": "-295.85274", + "dir": "Close Short", + "closedPnl": "138.784832", + "hash": "0x502b401c2dde8d8251a4042dee85900207ed0001c8d1ac54f3f3eb6eecd2676c", + "oid": 208565792710, + "crossed": true, + "fee": "2.098566", + "tid": 919865160024897, + "cloid": "0x00000000000000000000001604000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111236.0", + "sz": "0.0262", + "side": "B", + "time": 1761077517377, + "startPosition": "-295.7629", + "dir": "Close Short", + "closedPnl": "40.39516", + "hash": "0xc8a0988e4919aea4ca1a042dee85a50202980073e41ccd766c6943e1081d888f", + "oid": 208565822848, + "crossed": true, + "fee": "0.61202", + "tid": 928700775835613, + "cloid": "0x00000000000000000000001604000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111245.0", + "sz": "0.06363", + "side": "B", + "time": 1761077517377, + "startPosition": "-295.7367", + "dir": "Close Short", + "closedPnl": "97.532064", + "hash": "0xc8a0988e4919aea4ca1a042dee85a50202980073e41ccd766c6943e1081d888f", + "oid": 208565822848, + "crossed": true, + "fee": "1.486489", + "tid": 593401827598747, + "cloid": "0x00000000000000000000001604000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111265.0", + "sz": "0.08982", + "side": "B", + "time": 1761077519098, + "startPosition": "-295.67307", + "dir": "Close Short", + "closedPnl": "135.879696", + "hash": "0xcfdfa3fdfcb5df49d159042dee85ba0202b900e397b8fe1b73a84f50bbb9b934", + "oid": 208565855372, + "crossed": true, + "fee": "2.098702", + "tid": 882436210322175, + "cloid": "0x00000000000000000000001604000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111273.0", + "sz": "0.08981", + "side": "B", + "time": 1761077520293, + "startPosition": "-295.58325", + "dir": "Close Short", + "closedPnl": "135.146088", + "hash": "0xbd5695987fe2f9f5bed0042dee85c7020363007e1ae618c7611f40eb3ee6d3e0", + "oid": 208565873810, + "crossed": true, + "fee": "2.098619", + "tid": 436096746216966, + "cloid": "0x00000000000000000000001604000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111267.0", + "sz": "0.01438", + "side": "B", + "time": 1761077522259, + "startPosition": "-295.49344", + "dir": "Close Short", + "closedPnl": "21.725304", + "hash": "0x87448d4a9b7951e288be042dee85e1020a820030367c70b42b0d389d5a7d2bcd", + "oid": 208565912581, + "crossed": true, + "fee": "0.336004", + "tid": 352307925279814, + "cloid": "0x00000000000000000000001604000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111267.0", + "sz": "0.07544", + "side": "B", + "time": 1761077522259, + "startPosition": "-295.47906", + "dir": "Close Short", + "closedPnl": "113.974752", + "hash": "0x87448d4a9b7951e288be042dee85e1020a820030367c70b42b0d389d5a7d2bcd", + "oid": 208565912581, + "crossed": true, + "fee": "1.762736", + "tid": 550238006147812, + "cloid": "0x00000000000000000000001604000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111278.0", + "sz": "0.08981", + "side": "B", + "time": 1761077527708, + "startPosition": "-295.40362", + "dir": "Close Short", + "closedPnl": "134.697038", + "hash": "0xb3cb260411c4eabcb544042dee862b02033d00e9acc8098e5793d156d0c8c4a7", + "oid": 208565975871, + "crossed": true, + "fee": "2.098714", + "tid": 675754237703038, + "cloid": "0x00000000000000000000001604000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111299.0", + "sz": "0.00011", + "side": "B", + "time": 1761077529943, + "startPosition": "-295.31381", + "dir": "Close Short", + "closedPnl": "0.162668", + "hash": "0xad90dcda0047b969af0a042dee864602129e00bf9b4ad83b5159882cbf4b9354", + "oid": 208566015184, + "crossed": true, + "fee": "0.002571", + "tid": 187490133935065, + "cloid": "0x00000000000000000000001604000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111300.0", + "sz": "0.00011", + "side": "B", + "time": 1761077529943, + "startPosition": "-295.3137", + "dir": "Close Short", + "closedPnl": "0.162558", + "hash": "0xad90dcda0047b969af0a042dee864602129e00bf9b4ad83b5159882cbf4b9354", + "oid": 208566015184, + "crossed": true, + "fee": "0.002571", + "tid": 899040426541809, + "cloid": "0x00000000000000000000001604000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111301.0", + "sz": "0.00011", + "side": "B", + "time": 1761077529943, + "startPosition": "-295.31359", + "dir": "Close Short", + "closedPnl": "0.162448", + "hash": "0xad90dcda0047b969af0a042dee864602129e00bf9b4ad83b5159882cbf4b9354", + "oid": 208566015184, + "crossed": true, + "fee": "0.002571", + "tid": 727263825535693, + "cloid": "0x00000000000000000000001604000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111302.0", + "sz": "0.00011", + "side": "B", + "time": 1761077529943, + "startPosition": "-295.31348", + "dir": "Close Short", + "closedPnl": "0.162338", + "hash": "0xad90dcda0047b969af0a042dee864602129e00bf9b4ad83b5159882cbf4b9354", + "oid": 208566015184, + "crossed": true, + "fee": "0.002571", + "tid": 516897330728301, + "cloid": "0x00000000000000000000001604000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111303.0", + "sz": "0.00017", + "side": "B", + "time": 1761077529943, + "startPosition": "-295.31337", + "dir": "Close Short", + "closedPnl": "0.250716", + "hash": "0xad90dcda0047b969af0a042dee864602129e00bf9b4ad83b5159882cbf4b9354", + "oid": 208566015184, + "crossed": true, + "fee": "0.003973", + "tid": 1081115045623845, + "cloid": "0x00000000000000000000001604000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111303.0", + "sz": "0.00011", + "side": "B", + "time": 1761077529943, + "startPosition": "-295.3132", + "dir": "Close Short", + "closedPnl": "0.162228", + "hash": "0xad90dcda0047b969af0a042dee864602129e00bf9b4ad83b5159882cbf4b9354", + "oid": 208566015184, + "crossed": true, + "fee": "0.002571", + "tid": 63713004365151, + "cloid": "0x00000000000000000000001604000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111304.0", + "sz": "0.00011", + "side": "B", + "time": 1761077529943, + "startPosition": "-295.31309", + "dir": "Close Short", + "closedPnl": "0.162118", + "hash": "0xad90dcda0047b969af0a042dee864602129e00bf9b4ad83b5159882cbf4b9354", + "oid": 208566015184, + "crossed": true, + "fee": "0.002571", + "tid": 601489377782617, + "cloid": "0x00000000000000000000001604000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111305.0", + "sz": "0.00018", + "side": "B", + "time": 1761077529943, + "startPosition": "-295.31298", + "dir": "Close Short", + "closedPnl": "0.265104", + "hash": "0xad90dcda0047b969af0a042dee864602129e00bf9b4ad83b5159882cbf4b9354", + "oid": 208566015184, + "crossed": true, + "fee": "0.004207", + "tid": 988701874441487, + "cloid": "0x00000000000000000000001604000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111305.0", + "sz": "0.00011", + "side": "B", + "time": 1761077529943, + "startPosition": "-295.3128", + "dir": "Close Short", + "closedPnl": "0.162008", + "hash": "0xad90dcda0047b969af0a042dee864602129e00bf9b4ad83b5159882cbf4b9354", + "oid": 208566015184, + "crossed": true, + "fee": "0.002571", + "tid": 162127873408115, + "cloid": "0x00000000000000000000001604000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111306.0", + "sz": "0.00011", + "side": "B", + "time": 1761077529943, + "startPosition": "-295.31269", + "dir": "Close Short", + "closedPnl": "0.161898", + "hash": "0xad90dcda0047b969af0a042dee864602129e00bf9b4ad83b5159882cbf4b9354", + "oid": 208566015184, + "crossed": true, + "fee": "0.002571", + "tid": 341206388403148, + "cloid": "0x00000000000000000000001604000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111307.0", + "sz": "0.00011", + "side": "B", + "time": 1761077529943, + "startPosition": "-295.31258", + "dir": "Close Short", + "closedPnl": "0.161788", + "hash": "0xad90dcda0047b969af0a042dee864602129e00bf9b4ad83b5159882cbf4b9354", + "oid": 208566015184, + "crossed": true, + "fee": "0.002571", + "tid": 406378149606040, + "cloid": "0x00000000000000000000001604000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111307.0", + "sz": "0.08847", + "side": "B", + "time": 1761077529943, + "startPosition": "-295.31247", + "dir": "Close Short", + "closedPnl": "130.121676", + "hash": "0xad90dcda0047b969af0a042dee864602129e00bf9b4ad83b5159882cbf4b9354", + "oid": 208566015184, + "crossed": true, + "fee": "2.067939", + "tid": 591888420856137, + "cloid": "0x00000000000000000000001604000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111305.0", + "sz": "0.08979", + "side": "B", + "time": 1761077532056, + "startPosition": "-295.224", + "dir": "Close Short", + "closedPnl": "132.242712", + "hash": "0x2027709ca46ba0d921a1042dee865c02054200823f6ebfabc3f01bef636f7ac3", + "oid": 208566058752, + "crossed": true, + "fee": "2.098755", + "tid": 78353515766100, + "cloid": "0x00000000000000000000001604000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111287.0", + "sz": "0.0898", + "side": "B", + "time": 1761077533235, + "startPosition": "-295.13421", + "dir": "Close Short", + "closedPnl": "133.87384", + "hash": "0x86fd4e1ce989ab9f8877042dee86690204630002848cca712ac5f96fa88d858a", + "oid": 208566076709, + "crossed": true, + "fee": "2.09865", + "tid": 228047771720978, + "cloid": "0x00000000000000000000001604000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111306.0", + "sz": "0.00016", + "side": "B", + "time": 1761077534720, + "startPosition": "-295.04441", + "dir": "Close Short", + "closedPnl": "0.235488", + "hash": "0x422c73490edfe07143a6042dee867d02051c002ea9d2ff43e5f51e9bcdd3ba5b", + "oid": 208566103777, + "crossed": true, + "fee": "0.003739", + "tid": 215267846913097, + "cloid": "0x00000000000000000000001604000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111306.0", + "sz": "0.00011", + "side": "B", + "time": 1761077534720, + "startPosition": "-295.04425", + "dir": "Close Short", + "closedPnl": "0.161898", + "hash": "0x422c73490edfe07143a6042dee867d02051c002ea9d2ff43e5f51e9bcdd3ba5b", + "oid": 208566103777, + "crossed": true, + "fee": "0.002571", + "tid": 8656289933897, + "cloid": "0x00000000000000000000001604000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111307.0", + "sz": "0.00011", + "side": "B", + "time": 1761077534720, + "startPosition": "-295.04414", + "dir": "Close Short", + "closedPnl": "0.161788", + "hash": "0x422c73490edfe07143a6042dee867d02051c002ea9d2ff43e5f51e9bcdd3ba5b", + "oid": 208566103777, + "crossed": true, + "fee": "0.002571", + "tid": 775639603231050, + "cloid": "0x00000000000000000000001604000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111308.0", + "sz": "0.03525", + "side": "B", + "time": 1761077534720, + "startPosition": "-295.04403", + "dir": "Close Short", + "closedPnl": "51.81045", + "hash": "0x422c73490edfe07143a6042dee867d02051c002ea9d2ff43e5f51e9bcdd3ba5b", + "oid": 208566103777, + "crossed": true, + "fee": "0.823957", + "tid": 158413196665977, + "cloid": "0x00000000000000000000001604000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111308.0", + "sz": "0.00011", + "side": "B", + "time": 1761077534720, + "startPosition": "-295.00878", + "dir": "Close Short", + "closedPnl": "0.161678", + "hash": "0x422c73490edfe07143a6042dee867d02051c002ea9d2ff43e5f51e9bcdd3ba5b", + "oid": 208566103777, + "crossed": true, + "fee": "0.002571", + "tid": 194291465153807, + "cloid": "0x00000000000000000000001604000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111309.0", + "sz": "0.00014", + "side": "B", + "time": 1761077534720, + "startPosition": "-295.00867", + "dir": "Close Short", + "closedPnl": "0.205632", + "hash": "0x422c73490edfe07143a6042dee867d02051c002ea9d2ff43e5f51e9bcdd3ba5b", + "oid": 208566103777, + "crossed": true, + "fee": "0.003272", + "tid": 920499266139174, + "cloid": "0x00000000000000000000001604000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111309.0", + "sz": "0.00011", + "side": "B", + "time": 1761077534720, + "startPosition": "-295.00853", + "dir": "Close Short", + "closedPnl": "0.161568", + "hash": "0x422c73490edfe07143a6042dee867d02051c002ea9d2ff43e5f51e9bcdd3ba5b", + "oid": 208566103777, + "crossed": true, + "fee": "0.002571", + "tid": 754226993873141, + "cloid": "0x00000000000000000000001604000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111310.0", + "sz": "0.00011", + "side": "B", + "time": 1761077534720, + "startPosition": "-295.00842", + "dir": "Close Short", + "closedPnl": "0.161458", + "hash": "0x422c73490edfe07143a6042dee867d02051c002ea9d2ff43e5f51e9bcdd3ba5b", + "oid": 208566103777, + "crossed": true, + "fee": "0.002571", + "tid": 841139645234166, + "cloid": "0x00000000000000000000001604000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111310.0", + "sz": "0.021", + "side": "B", + "time": 1761077534720, + "startPosition": "-295.00831", + "dir": "Close Short", + "closedPnl": "30.8238", + "hash": "0x422c73490edfe07143a6042dee867d02051c002ea9d2ff43e5f51e9bcdd3ba5b", + "oid": 208566103777, + "crossed": true, + "fee": "0.490877", + "tid": 306045121657085, + "cloid": "0x00000000000000000000001604000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111311.0", + "sz": "0.00011", + "side": "B", + "time": 1761077534720, + "startPosition": "-294.98731", + "dir": "Close Short", + "closedPnl": "0.161348", + "hash": "0x422c73490edfe07143a6042dee867d02051c002ea9d2ff43e5f51e9bcdd3ba5b", + "oid": 208566103777, + "crossed": true, + "fee": "0.002571", + "tid": 780855574214789, + "cloid": "0x00000000000000000000001604000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111311.0", + "sz": "0.03259", + "side": "B", + "time": 1761077534720, + "startPosition": "-294.9872", + "dir": "Close Short", + "closedPnl": "47.803012", + "hash": "0x422c73490edfe07143a6042dee867d02051c002ea9d2ff43e5f51e9bcdd3ba5b", + "oid": 208566103777, + "crossed": true, + "fee": "0.761801", + "tid": 115691238772994, + "cloid": "0x00000000000000000000001604000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111287.0", + "sz": "0.08978", + "side": "B", + "time": 1761077536142, + "startPosition": "-294.95461", + "dir": "Close Short", + "closedPnl": "133.844024", + "hash": "0x26963dc0d2e250a8280f042dee869002046600a66de56f7aca5ee91391e62a92", + "oid": 208566134184, + "crossed": true, + "fee": "2.098182", + "tid": 374801601080368, + "cloid": "0x00000000000000000000001604000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111287.0", + "sz": "0.0898", + "side": "B", + "time": 1761077542269, + "startPosition": "-294.86483", + "dir": "Close Short", + "closedPnl": "133.87384", + "hash": "0xc07f7d752e79d169c1f9042dee86e6020559005ac97cf03b644828c7ed7dab54", + "oid": 208566191928, + "crossed": true, + "fee": "2.09865", + "tid": 561216015497698, + "cloid": "0x00000000000000000000001604000084", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111192.0", + "sz": "0.00011", + "side": "B", + "time": 1761077549227, + "startPosition": "-294.77503", + "dir": "Close Short", + "closedPnl": "0.174438", + "hash": "0xfad936abff13e65bfc52042dee87400205b100919a17052e9ea1e1febe17c046", + "oid": 208566297352, + "crossed": true, + "fee": "0.002568", + "tid": 752217187031810, + "cloid": "0x00000000000000000000001604000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111192.0", + "sz": "0.08969", + "side": "B", + "time": 1761077549227, + "startPosition": "-294.77492", + "dir": "Close Short", + "closedPnl": "142.230402", + "hash": "0xfad936abff13e65bfc52042dee87400205b100919a17052e9ea1e1febe17c046", + "oid": 208566297352, + "crossed": true, + "fee": "2.09429", + "tid": 613636491548217, + "cloid": "0x00000000000000000000001604000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111196.0", + "sz": "0.08986", + "side": "B", + "time": 1761077551461, + "startPosition": "-294.68523", + "dir": "Close Short", + "closedPnl": "142.140548", + "hash": "0xe6eeae1e80143f96e868042dee875c0206b500041b175e688ab759713f181981", + "oid": 208566338801, + "crossed": true, + "fee": "2.098335", + "tid": 29456372113220, + "cloid": "0x00000000000000000000001604000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111210.0", + "sz": "0.00011", + "side": "B", + "time": 1761077554288, + "startPosition": "-294.59537", + "dir": "Close Short", + "closedPnl": "0.172458", + "hash": "0x908273b8ea599bfb91fc042dee877e0204cf009e855cbacd344b1f0ba95d75e6", + "oid": 208566374014, + "crossed": true, + "fee": "0.002568", + "tid": 542830221854992, + "cloid": "0x00000000000000000000001604000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111210.0", + "sz": "0.08976", + "side": "B", + "time": 1761077554288, + "startPosition": "-294.59526", + "dir": "Close Short", + "closedPnl": "140.725728", + "hash": "0x908273b8ea599bfb91fc042dee877e0204cf009e855cbacd344b1f0ba95d75e6", + "oid": 208566374014, + "crossed": true, + "fee": "2.096264", + "tid": 8102791101551, + "cloid": "0x00000000000000000000001604000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111224.0", + "sz": "0.08986", + "side": "B", + "time": 1761077565544, + "startPosition": "-294.5055", + "dir": "Close Short", + "closedPnl": "139.624468", + "hash": "0xea4b7662307ba0d7ebc5042dee880a0205c50047cb7ebfa98e1421b4ef7f7ac2", + "oid": 208566479395, + "crossed": true, + "fee": "2.098863", + "tid": 226686632558152, + "cloid": "0x00000000000000000000001604000088", + "feeToken": "USDC", + "twapId": null + } + ], + "user_fees": { + "dailyUserVlm": [ + { + "date": "2025-10-13", + "userCross": "31420283.75", + "userAdd": "3041333.8300000001", + "exchange": "10574495799.9799995422" + }, + { + "date": "2025-10-14", + "userCross": "35579691.200000003", + "userAdd": "2711922.75", + "exchange": "17079292917.3500003815" + }, + { + "date": "2025-10-15", + "userCross": "18159824.75", + "userAdd": "1100529.02", + "exchange": "11449850843.8299999237" + }, + { + "date": "2025-10-16", + "userCross": "36670967.6199999973", + "userAdd": "1433912.5900000001", + "exchange": "12251944520.9500007629" + }, + { + "date": "2025-10-17", + "userCross": "2819754.8999999999", + "userAdd": "851904.5600000001", + "exchange": "12926676720.2999992371" + }, + { + "date": "2025-10-18", + "userCross": "34920.91", + "userAdd": "0.0", + "exchange": "3857436766.4600000381" + }, + { + "date": "2025-10-19", + "userCross": "11783898.8699999992", + "userAdd": "371563.53", + "exchange": "5666147024.9399995804" + }, + { + "date": "2025-10-20", + "userCross": "5175572.3099999996", + "userAdd": "339099.55", + "exchange": "8968179498.8600006104" + }, + { + "date": "2025-10-21", + "userCross": "56348714.4799999967", + "userAdd": "107018.3", + "exchange": "15421314316.1100006104" + }, + { + "date": "2025-10-22", + "userCross": "27765103.0100000016", + "userAdd": "612723.92", + "exchange": "12413722514.0200004578" + }, + { + "date": "2025-10-23", + "userCross": "12021044.2400000002", + "userAdd": "1941632.96", + "exchange": "9453148934.0400009155" + }, + { + "date": "2025-10-24", + "userCross": "0.0", + "userAdd": "0.0", + "exchange": "7176352634.4499998093" + }, + { + "date": "2025-10-25", + "userCross": "2028350.6699999999", + "userAdd": "7584.22", + "exchange": "3635812557.3200001717" + }, + { + "date": "2025-10-26", + "userCross": "46609.44", + "userAdd": "16484.51", + "exchange": "6757753944.5500001907" + }, + { + "date": "2025-10-27", + "userCross": "27386794.0300000012", + "userAdd": "42571.77", + "exchange": "3414622946.6100001335" + } + ], + "feeSchedule": { + "cross": "0.00045", + "add": "0.00015", + "spotCross": "0.0007", + "spotAdd": "0.0004", + "tiers": { + "vip": [ + { + "ntlCutoff": "5000000.0", + "cross": "0.0004", + "add": "0.00012", + "spotCross": "0.0006", + "spotAdd": "0.0003" + }, + { + "ntlCutoff": "25000000.0", + "cross": "0.00035", + "add": "0.00008", + "spotCross": "0.0005", + "spotAdd": "0.0002" + }, + { + "ntlCutoff": "100000000.0", + "cross": "0.0003", + "add": "0.00004", + "spotCross": "0.0004", + "spotAdd": "0.0001" + }, + { + "ntlCutoff": "500000000.0", + "cross": "0.00028", + "add": "0.0", + "spotCross": "0.00035", + "spotAdd": "0.0" + }, + { + "ntlCutoff": "2000000000.0", + "cross": "0.00026", + "add": "0.0", + "spotCross": "0.0003", + "spotAdd": "0.0" + }, + { + "ntlCutoff": "7000000000.0", + "cross": "0.00024", + "add": "0.0", + "spotCross": "0.00025", + "spotAdd": "0.0" + } + ], + "mm": [ + { + "makerFractionCutoff": "0.005", + "add": "-0.00001" + }, + { + "makerFractionCutoff": "0.015", + "add": "-0.00002" + }, + { + "makerFractionCutoff": "0.03", + "add": "-0.00003" + } + ] + }, + "referralDiscount": "0.04", + "stakingDiscountTiers": [ + { + "bpsOfMaxSupply": "0.0", + "discount": "0.0" + }, + { + "bpsOfMaxSupply": "0.0001", + "discount": "0.05" + }, + { + "bpsOfMaxSupply": "0.001", + "discount": "0.1" + }, + { + "bpsOfMaxSupply": "0.01", + "discount": "0.15" + }, + { + "bpsOfMaxSupply": "0.1", + "discount": "0.2" + }, + { + "bpsOfMaxSupply": "1.0", + "discount": "0.3" + }, + { + "bpsOfMaxSupply": "5.0", + "discount": "0.4" + } + ] + }, + "userCrossRate": "0.00021", + "userAddRate": "0.000028", + "userSpotCrossRate": "0.00028", + "userSpotAddRate": "0.00007", + "activeReferralDiscount": "0.0", + "trial": null, + "feeTrialEscrow": "0.0", + "nextTrialAvailableTimestamp": null, + "stakingLink": null, + "activeStakingDiscount": { + "bpsOfMaxSupply": "1.1273554164", + "discount": "0.3" + } + }, + "rate_limit": { + "cumVlm": "2727423832.2300000191", + "nRequestsUsed": 1751930, + "nRequestsCap": 2727433832 + }, + "funding_payments": [ + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "850.471708", + "szi": "-613.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "196.373674", + "szi": "-4117.202", + "fundingRate": "0.0000117916", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.08759", + "szi": "-147.42", + "fundingRate": "-0.0000030753", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.118116", + "szi": "-109217.0", + "fundingRate": "0.00000538", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.615562", + "szi": "-18747.2", + "fundingRate": "0.0000037169", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.451839", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.227146", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "340.777709", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.783129", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "156.45438", + "szi": "-2085005129.0", + "fundingRate": "0.0000181734", + "nSamples": null + } + }, + { + "time": 1760954400031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.828844", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "848.754976", + "szi": "-613.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "139.323166", + "szi": "-4117.202", + "fundingRate": "0.0000084048", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.019286", + "szi": "-147.42", + "fundingRate": "-0.0000006827", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.184946", + "szi": "-109217.0", + "fundingRate": "0.0000084484", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.008501", + "szi": "-18747.2", + "fundingRate": "-0.0000000514", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.367034", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.223524", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "338.536683", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.572895", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "106.569824", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760958000001, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.781467", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "850.831915", + "szi": "-613.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "207.661375", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.062057", + "szi": "-147.42", + "fundingRate": "0.0000021902", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.273452", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.306108", + "szi": "-18747.2", + "fundingRate": "-0.0000139074", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "10.719184", + "szi": "-408699.7", + "fundingRate": "0.0000100117", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.621322", + "szi": "-39691.0", + "fundingRate": "0.0000063696", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "230.099614", + "szi": "-708624.89", + "fundingRate": "0.0000084521", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.649156", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "106.439511", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760961600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "1.062166", + "szi": "-186707.0", + "fundingRate": "0.0000047539", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "849.506046", + "szi": "-613.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "207.795184", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.016103", + "szi": "-147.42", + "fundingRate": "0.0000005667", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.273957", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.027587", + "szi": "-18747.2", + "fundingRate": "-0.0000061845", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.424252", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.245382", + "szi": "-39691.0", + "fundingRate": "0.0000025203", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "344.232255", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.769217", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "106.02251", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760965200016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.777733", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "851.943191", + "szi": "-613.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "207.856942", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.3422", + "szi": "-147.42", + "fundingRate": "0.0000120642", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.275117", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.882189", + "szi": "-18747.2", + "fundingRate": "-0.0000052502", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.47585", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.071077", + "szi": "-39691.0", + "fundingRate": "0.0000007278", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "347.350205", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.926892", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "105.761885", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760968800008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.777266", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "852.341718", + "szi": "-613.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "207.867235", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.086374", + "szi": "-147.42", + "fundingRate": "-0.0000030613", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.179049", + "szi": "-109217.0", + "fundingRate": "0.0000081432", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.813043", + "szi": "-18747.2", + "fundingRate": "0.0000048376", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "0.836798", + "szi": "-408699.7", + "fundingRate": "0.0000007812", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.442759", + "szi": "-39691.0", + "fundingRate": "0.0000045155", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "180.808786", + "szi": "-708624.89", + "fundingRate": "0.0000064824", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.877941", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "105.344884", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760972400038, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.472245", + "szi": "-186707.0", + "fundingRate": "0.0000111272", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "858.705381", + "szi": "-618.11829", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "206.096839", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.171455", + "szi": "-147.42", + "fundingRate": "0.0000061049", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.157838", + "szi": "-109217.0", + "fundingRate": "0.0000072502", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.078923", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "8.150882", + "szi": "-408699.7", + "fundingRate": "0.0000076765", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.103717", + "szi": "-39691.0", + "fundingRate": "0.0000112916", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-893.117868", + "szi": "-708624.89", + "fundingRate": "-0.0000324248", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.55383", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "103.312004", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760976000065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.755795", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "109.872827", + "szi": "-618.11829", + "fundingRate": "0.0000016059", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "203.286848", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.049148", + "szi": "-147.42", + "fundingRate": "-0.0000017774", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.215202", + "szi": "-109217.0", + "fundingRate": "0.0000099335", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.056099", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.099847", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.604431", + "szi": "-39691.0", + "fundingRate": "0.0000062292", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-295.992802", + "szi": "-708624.89", + "fundingRate": "-0.0000108975", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.006603", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "101.409436", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.681112", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "57.388394", + "szi": "-618.11829", + "fundingRate": "0.0000008419", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "203.338313", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.088849", + "szi": "-147.42", + "fundingRate": "0.0000032116", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.165688", + "szi": "-109217.0", + "fundingRate": "0.0000076569", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.595891", + "szi": "-18747.2", + "fundingRate": "0.0000097121", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.117216", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.056377", + "szi": "-39691.0", + "fundingRate": "0.0000005776", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-1136.937699", + "szi": "-708624.89", + "fundingRate": "-0.0000425228", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.968987", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.141993", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.641437", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "756.402225", + "szi": "-618.11829", + "fundingRate": "0.0000110306", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "204.542595", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.134321", + "szi": "-147.42", + "fundingRate": "0.0000048414", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.081535", + "szi": "-109217.0", + "fundingRate": "0.000003757", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.83018", + "szi": "-18747.2", + "fundingRate": "0.000005035", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.092476", + "szi": "-408699.7", + "fundingRate": "0.0000105091", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.436004", + "szi": "-39691.0", + "fundingRate": "0.0000044385", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "126.903059", + "szi": "-708624.89", + "fundingRate": "0.0000046938", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.037004", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.558994", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.678545", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "476.670263", + "szi": "-618.11829", + "fundingRate": "0.0000069584", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "204.897704", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.323879", + "szi": "-147.42", + "fundingRate": "0.0000116316", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.162166", + "szi": "-109217.0", + "fundingRate": "0.0000074367", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.166036", + "szi": "-18747.2", + "fundingRate": "0.0000010024", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "10.258442", + "szi": "-408699.7", + "fundingRate": "0.0000096968", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.397604", + "szi": "-39691.0", + "fundingRate": "0.0000039634", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "336.446239", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.165824", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.767495", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.684613", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "330.900272", + "szi": "-583.16111", + "fundingRate": "0.0000051083", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "205.757169", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.351043", + "szi": "-147.42", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.113883", + "szi": "-109217.0", + "fundingRate": "0.000005216", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.248291", + "szi": "-18747.2", + "fundingRate": "-0.0000014999", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.244424", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.08284", + "szi": "-39691.0", + "fundingRate": "-0.0000008245", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-725.764672", + "szi": "-708624.89", + "fundingRate": "-0.0000267545", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.123571", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "100.549372", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.295633", + "szi": "-186707.0", + "fundingRate": "0.0000106196", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "152.44253", + "szi": "-583.16111", + "fundingRate": "0.0000023643", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "204.666111", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.294648", + "szi": "-147.42", + "fundingRate": "0.0000105763", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.064299", + "szi": "-109217.0", + "fundingRate": "0.000002961", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.054224", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.72255", + "szi": "-408699.7", + "fundingRate": "0.0000120919", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.582396", + "szi": "-39691.0", + "fundingRate": "0.0000058877", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "4.481004", + "szi": "-708624.89", + "fundingRate": "0.0000001679", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.01021", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "100.054183", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.707484", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "405.125971", + "szi": "-583.4111", + "fundingRate": "0.0000062676", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "205.443408", + "szi": "-4120.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.351504", + "szi": "-147.42", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.126766", + "szi": "-109217.0", + "fundingRate": "0.0000057939", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.16148", + "szi": "-18747.2", + "fundingRate": "0.0000070507", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.21888", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.813901", + "szi": "-39691.0", + "fundingRate": "0.0000082086", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "337.128291", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.279186", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "100.809997", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.72032", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "156.757601", + "szi": "-583.4111", + "fundingRate": "0.0000024307", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "204.948971", + "szi": "-4120.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.180156", + "szi": "-147.42", + "fundingRate": "0.0000064417", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.160511", + "szi": "-109217.0", + "fundingRate": "0.0000073483", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.675217", + "szi": "-18747.2", + "fundingRate": "0.0000041193", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.153488", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.780893", + "szi": "-39691.0", + "fundingRate": "0.0000078855", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "336.127358", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.191588", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "101.018498", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.704684", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "265.666759", + "szi": "-583.4111", + "fundingRate": "0.0000041224", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "204.583295", + "szi": "-4120.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.327676", + "szi": "-147.42", + "fundingRate": "0.0000117599", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.16892", + "szi": "-109217.0", + "fundingRate": "0.0000077302", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.03864", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "5.66519", + "szi": "-408699.7", + "fundingRate": "0.0000054014", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.998051", + "szi": "-39691.0", + "fundingRate": "0.0000101144", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "336.667685", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.183859", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "101.018498", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.705617", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "144.696467", + "szi": "-583.4111", + "fundingRate": "0.0000022574", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "203.378106", + "szi": "-4120.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.074909", + "szi": "-147.42", + "fundingRate": "0.0000027204", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.034517", + "szi": "-109217.0", + "fundingRate": "0.0000015939", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.022354", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "8.471259", + "szi": "-408699.7", + "fundingRate": "0.0000081363", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.163804", + "szi": "-39691.0", + "fundingRate": "-0.000001672", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-13.911178", + "szi": "-708624.89", + "fundingRate": "-0.0000005234", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.076166", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "100.002058", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.667342", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "75.893362", + "szi": "-528.63289", + "fundingRate": "0.0000013109", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "202.487091", + "szi": "-4120.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.118351", + "szi": "-147.42", + "fundingRate": "0.0000043146", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.12536", + "szi": "-109217.0", + "fundingRate": "0.0000058454", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.014269", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.976215", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.454999", + "szi": "-39691.0", + "fundingRate": "0.0000046777", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "138.043569", + "szi": "-708624.89", + "fundingRate": "0.0000052336", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.836045", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.402619", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.619732", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "117.84067", + "szi": "-528.63289", + "fundingRate": "0.0000020437", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "202.033858", + "szi": "-4120.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.318232", + "szi": "-147.42", + "fundingRate": "0.0000116321", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.068385", + "szi": "-109217.0", + "fundingRate": "0.0000031848", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.173765", + "szi": "-18747.2", + "fundingRate": "0.0000073344", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.923084", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.41362", + "szi": "-39691.0", + "fundingRate": "0.0000042486", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "328.562788", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.736081", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.350494", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.606429", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-75.955692", + "szi": "-510.10414", + "fundingRate": "-0.0000013815", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "198.389175", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.013923", + "szi": "-147.42", + "fundingRate": "0.000000514", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.062055", + "szi": "-109217.0", + "fundingRate": "-0.0000029409", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.964472", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "7.523367", + "szi": "-408699.7", + "fundingRate": "0.000007419", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.098547", + "szi": "-39691.0", + "fundingRate": "0.0000010245", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "320.466748", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.057458", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "97.421864", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.510042", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-360.135145", + "szi": "-472.94566", + "fundingRate": "-0.0000070809", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "199.048583", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.194569", + "szi": "-147.42", + "fundingRate": "0.0000071792", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.172736", + "szi": "-109217.0", + "fundingRate": "-0.000008169", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.113039", + "szi": "-18747.2", + "fundingRate": "0.0000070764", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-4.78485", + "szi": "-408699.7", + "fundingRate": "-0.0000047211", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.457249", + "szi": "-39691.0", + "fundingRate": "-0.0000047528", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "435.245646", + "szi": "-708624.89", + "fundingRate": "0.0000172531", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.187824", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.350494", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.537114", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "152.451909", + "szi": "-438.12458", + "fundingRate": "0.0000032246", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "200.254064", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.067187", + "szi": "-147.42", + "fundingRate": "-0.0000024705", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.160338", + "szi": "-109217.0", + "fundingRate": "-0.0000075717", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.552427", + "szi": "-18747.2", + "fundingRate": "-0.0000034986", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-15.22879", + "szi": "-408699.7", + "fundingRate": "-0.0000149321", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.559203", + "szi": "-39691.0", + "fundingRate": "-0.0000057943", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "317.711969", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.25481", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "102.947128", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.557885", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "118.552126", + "szi": "-417.3499", + "fundingRate": "0.0000026276", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "200.55801", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.00081", + "szi": "-147.42", + "fundingRate": "-0.0000000297", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.177733", + "szi": "-109217.0", + "fundingRate": "-0.0000083759", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.179685", + "szi": "-18747.2", + "fundingRate": "-0.000001139", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-10.199203", + "szi": "-408699.7", + "fundingRate": "-0.0000099638", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.494734", + "szi": "-39691.0", + "fundingRate": "-0.0000051358", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "962.571713", + "szi": "-708624.89", + "fundingRate": "0.0000377146", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.978262", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "103.598692", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.571888", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-116.883842", + "szi": "-367.35012", + "fundingRate": "-0.0000029544", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "175.954451", + "szi": "-4121.302", + "fundingRate": "0.0000110391", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.320061", + "szi": "-147.42", + "fundingRate": "-0.0000117821", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.122497", + "szi": "-109217.0", + "fundingRate": "-0.0000058051", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.347087", + "szi": "-18747.2", + "fundingRate": "-0.0000022199", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-7.185111", + "szi": "-376577.6", + "fundingRate": "-0.0000076871", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.700167", + "szi": "-39691.0", + "fundingRate": "-0.0000073139", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "911.04626", + "szi": "-708624.89", + "fundingRate": "0.0000360006", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.846866", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "102.243439", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.566287", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "381.465753", + "szi": "-338.01603", + "fundingRate": "0.0000104736", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "199.089796", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.096354", + "szi": "-147.42", + "fundingRate": "0.0000035447", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.006148", + "szi": "-109217.0", + "fundingRate": "0.0000002908", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.514751", + "szi": "-18747.2", + "fundingRate": "-0.0000224933", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-1.971256", + "szi": "-376577.6", + "fundingRate": "-0.000002109", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.127192", + "szi": "-39691.0", + "fundingRate": "0.0000013304", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "316.976771", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.806159", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "101.95675", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.566754", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "458.43424", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "200.078908", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.224578", + "szi": "-147.42", + "fundingRate": "0.0000081934", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.058363", + "szi": "-109217.0", + "fundingRate": "-0.0000027487", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.178218", + "szi": "-18747.2", + "fundingRate": "-0.0000011324", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-2.042026", + "szi": "-376577.6", + "fundingRate": "-0.0000021748", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.058506", + "szi": "-39691.0", + "fundingRate": "-0.0000006099", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "317.765116", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.923643", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "94.333021", + "szi": "-2085005129.0", + "fundingRate": "0.0000116128", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.577023", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "458.772256", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "200.408613", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.159852", + "szi": "-147.42", + "fundingRate": "0.0000058207", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.219658", + "szi": "-109217.0", + "fundingRate": "-0.0000103388", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.664258", + "szi": "-18747.2", + "fundingRate": "-0.000010512", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-2.737697", + "szi": "-376577.6", + "fundingRate": "-0.0000029108", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.440675", + "szi": "-39691.0", + "fundingRate": "-0.0000045649", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "604.575255", + "szi": "-708624.89", + "fundingRate": "0.0000236197", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.959712", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "-4.424788", + "szi": "-2085005129.0", + "fundingRate": "-0.0000005442", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.590326", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "459.667999", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "199.89345", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.16847", + "szi": "-147.42", + "fundingRate": "0.0000061282", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.265186", + "szi": "-109217.0", + "fundingRate": "-0.0000124721", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.340159", + "szi": "-18747.2", + "fundingRate": "0.0000021409", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-6.409274", + "szi": "-376577.6", + "fundingRate": "-0.0000067895", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.83543", + "szi": "-39691.0", + "fundingRate": "-0.0000086815", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "322.973509", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.005057", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "41.627383", + "szi": "-2085005129.0", + "fundingRate": "0.0000052074", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.585891", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "458.125801", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "199.172222", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.005249", + "szi": "-147.42", + "fundingRate": "-0.0000001924", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.178492", + "szi": "-109217.0", + "fundingRate": "-0.0000083848", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.260461", + "szi": "-18747.2", + "fundingRate": "-0.0000016355", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-2.626069", + "szi": "-376577.6", + "fundingRate": "-0.0000027906", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.548931", + "szi": "-39691.0", + "fundingRate": "-0.000005732", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "318.695186", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.794823", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.585057", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.584258", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "473.974527", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "207.136638", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.355153", + "szi": "-147.42", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.051525", + "szi": "-109217.0", + "fundingRate": "0.0000023238", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.081185", + "szi": "-18747.2", + "fundingRate": "0.0000004826", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.453891", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.267138", + "szi": "-39691.0", + "fundingRate": "-0.0000027066", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "334.763255", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.088175", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "105.032133", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.711452", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "479.222226", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "210.273979", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "23.12335", + "szi": "-10147.42", + "fundingRate": "0.000011612", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.036903", + "szi": "-109217.0", + "fundingRate": "0.0000016531", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.1223", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.559333", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.251506", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "335.560458", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "31.309194", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000193223", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "107.195326", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.751594", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "475.601229", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "207.538465", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-2.796472", + "szi": "-10147.42", + "fundingRate": "-0.0000014312", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.125553", + "szi": "-109217.0", + "fundingRate": "0.0000057236", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.098749", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.339977", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.233497", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "330.201483", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "30.458963", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000190988", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "104.615132", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.667342", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-96.218975", + "szi": "-320.21407", + "fundingRate": "-0.0000026826", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "206.822389", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-1.502444", + "szi": "-10147.42", + "fundingRate": "-0.0000007599", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.099772", + "szi": "-109217.0", + "fundingRate": "0.0000045345", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.107888", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.2962", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.210723", + "szi": "-39691.0", + "fundingRate": "0.0000122358", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "51.793922", + "szi": "-708624.89", + "fundingRate": "0.0000019525", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.120637", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "105.214571", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.667576", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-26.001957", + "szi": "-320.21407", + "fundingRate": "-0.0000007251", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "206.791479", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-6.027768", + "szi": "-1492.18", + "fundingRate": "-0.0000208043", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.275527", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.10074", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.306085", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.948338", + "szi": "-39691.0", + "fundingRate": "-0.0000096161", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "328.952531", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "25.784904", + "szi": "-4122236.7999999998", + "fundingRate": "0.000016077", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "105.032133", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.65824", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-113.283179", + "szi": "-302.30661", + "fundingRate": "-0.0000033525", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "206.122621", + "szi": "-4127.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-1.193266", + "szi": "-359.37", + "fundingRate": "-0.0000171227", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.275063", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.656753", + "szi": "-18747.2", + "fundingRate": "0.0000039428", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "5.143003", + "szi": "-376577.6", + "fundingRate": "0.0000052595", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.212691", + "szi": "-39691.0", + "fundingRate": "-0.0000122542", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-19.427362", + "szi": "-708624.89", + "fundingRate": "-0.0000007419", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.90525", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "105.110321", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.639803", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-450.026358", + "szi": "-232.57257", + "fundingRate": "-0.0000174662", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "127.217555", + "szi": "-4127.302", + "fundingRate": "0.0000077975", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.701077", + "szi": "-359.37", + "fundingRate": "-0.000010192", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.272277", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.770557", + "szi": "-18747.2", + "fundingRate": "0.0000107648", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "2.226135", + "szi": "-376577.6", + "fundingRate": "0.0000023023", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.826703", + "szi": "-39691.0", + "fundingRate": "-0.0000084186", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-105.886418", + "szi": "-708624.89", + "fundingRate": "-0.0000041229", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "39.380194", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000250982", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "102.686502", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.605496", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-141.065667", + "szi": "-167.10108", + "fundingRate": "-0.0000076151", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "35.232018", + "szi": "-3895.1147", + "fundingRate": "0.0000022918", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.165628", + "szi": "-359.37", + "fundingRate": "0.0000024086", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.271704", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.70445", + "szi": "-18747.2", + "fundingRate": "0.000004292", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-2.995525", + "szi": "-376577.6", + "fundingRate": "-0.0000030953", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.094359", + "szi": "-39691.0", + "fundingRate": "-0.000011129", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "325.565171", + "szi": "-709794.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "26.860712", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000171421", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "102.217376", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.593593", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-244.259914", + "szi": "-167.10108", + "fundingRate": "-0.0000134023", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-137.604621", + "szi": "-3900.1147", + "fundingRate": "-0.0000090437", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.590704", + "szi": "-359.37", + "fundingRate": "0.0000087172", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.140999", + "szi": "-109217.0", + "fundingRate": "0.0000065911", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.006653", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "0.020251", + "szi": "-376577.6", + "fundingRate": "0.0000000213", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.061507", + "szi": "-39691.0", + "fundingRate": "-0.0000109522", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "316.870183", + "szi": "-709794.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "33.298562", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000218472", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "98.724992", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.494405", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "10.235703", + "szi": "-111.97908", + "fundingRate": "0.0000008439", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-224.474631", + "szi": "-3902.1147", + "fundingRate": "-0.0000148528", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.17328", + "szi": "-359.37", + "fundingRate": "-0.0000025974", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.001595", + "szi": "-109217.0", + "fundingRate": "-0.0000000752", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.594478", + "szi": "-18747.2", + "fundingRate": "0.0000100694", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-4.502149", + "szi": "-376577.6", + "fundingRate": "-0.0000048033", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.193561", + "szi": "-39691.0", + "fundingRate": "-0.0000124149", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "18.505394", + "szi": "-709794.89", + "fundingRate": "0.0000007366", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.803583", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "96.405424", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-6.19254", + "szi": "-186707.0", + "fundingRate": "-0.0000318425", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "91.225496", + "szi": "-111.97908", + "fundingRate": "0.000007544", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-177.683603", + "szi": "-3902.1147", + "fundingRate": "-0.000011851", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.478621", + "szi": "-359.37", + "fundingRate": "-0.0000071727", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.076199", + "szi": "-109217.0", + "fundingRate": "-0.0000036049", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.12103", + "szi": "-18747.2", + "fundingRate": "-0.0000071298", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-15.140925", + "szi": "-376577.6", + "fundingRate": "-0.0000162228", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.452444", + "szi": "-39691.0", + "fundingRate": "-0.0000047248", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "309.577041", + "szi": "-709794.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.604685", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "93.799168", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-5.110213", + "szi": "-186707.0", + "fundingRate": "-0.0000262922", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "151.681262", + "szi": "-111.97908", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-52.46592", + "szi": "-3902.1147", + "fundingRate": "-0.0000034748", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.027365", + "szi": "-359.37", + "fundingRate": "0.0000004072", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.127233", + "szi": "-109217.0", + "fundingRate": "-0.0000059864", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.75455", + "szi": "-18747.2", + "fundingRate": "-0.0000111205", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-15.879033", + "szi": "-376577.6", + "fundingRate": "-0.0000169501", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.154009", + "szi": "-39691.0", + "fundingRate": "-0.0000016003", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "310.890161", + "szi": "-709794.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.591803", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "94.711357", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-6.669924", + "szi": "-186707.0", + "fundingRate": "-0.0000344328", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "151.461503", + "szi": "-111.97908", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-44.00522", + "szi": "-3902.1147", + "fundingRate": "-0.0000029198", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.170998", + "szi": "-359.37", + "fundingRate": "0.0000025593", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.093266", + "szi": "-109217.0", + "fundingRate": "-0.0000043943", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.706376", + "szi": "-18747.2", + "fundingRate": "-0.000004499", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-17.098485", + "szi": "-376577.6", + "fundingRate": "-0.000018265", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.323944", + "szi": "-39691.0", + "fundingRate": "-0.000003367", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "314.323794", + "szi": "-709794.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.612929", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "95.493234", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-3.217488", + "szi": "-186707.0", + "fundingRate": "-0.0000164435", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "151.474101", + "szi": "-111.97908", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-47.834879", + "szi": "-3902.1147", + "fundingRate": "-0.0000031762", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.318082", + "szi": "-359.37", + "fundingRate": "-0.0000047782", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.033615", + "szi": "-109217.0", + "fundingRate": "-0.0000015881", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.099405", + "szi": "-18747.2", + "fundingRate": "0.0000006354", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-26.368288", + "szi": "-376577.6", + "fundingRate": "-0.000028321", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.818714", + "szi": "-39691.0", + "fundingRate": "-0.0000085215", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "312.629159", + "szi": "-709794.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.544912", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "96.118736", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-5.739822", + "szi": "-186707.0", + "fundingRate": "-0.0000293989", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "152.031197", + "szi": "-111.97908", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "8.286644", + "szi": "-3902.1147", + "fundingRate": "0.0000005475", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.327035", + "szi": "-359.37", + "fundingRate": "-0.0000048955", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.043164", + "szi": "-109217.0", + "fundingRate": "-0.0000020283", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.375334", + "szi": "-18747.2", + "fundingRate": "-0.0000023792", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-16.468496", + "szi": "-376577.6", + "fundingRate": "-0.0000175793", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.341809", + "szi": "-39691.0", + "fundingRate": "-0.0000138744", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "1130.15975", + "szi": "-709794.89", + "fundingRate": "0.0000456502", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.59541", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "96.405424", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-5.688007", + "szi": "-186707.0", + "fundingRate": "-0.0000288084", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "151.406914", + "szi": "-111.97908", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "40.061156", + "szi": "-3902.1147", + "fundingRate": "0.0000026594", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.121555", + "szi": "-359.37", + "fundingRate": "-0.0000018326", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.088101", + "szi": "-109217.0", + "fundingRate": "-0.0000042053", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.47135", + "szi": "-18747.2", + "fundingRate": "-0.0000157969", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-13.678082", + "szi": "-376577.6", + "fundingRate": "-0.0000150209", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.226608", + "szi": "-39691.0", + "fundingRate": "-0.0000128456", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "1991.482992", + "szi": "-724239.8", + "fundingRate": "0.0000790342", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.31046", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "96.587862", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-0.188774", + "szi": "-186707.0", + "fundingRate": "-0.0000009605", + "nSamples": null + } + }, + { + "time": 1761116400071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "151.145162", + "szi": "-111.97908", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761116400071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "51.510371", + "szi": "-3902.1147", + "fundingRate": "0.0000034262", + "nSamples": null + } + }, + { + "time": 1761116400071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.162786", + "szi": "-359.37", + "fundingRate": "0.0000024606", + "nSamples": null + } + }, + { + "time": 1761116400071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.036531", + "szi": "-109217.0", + "fundingRate": "-0.0000017484", + "nSamples": null + } + }, + { + "time": 1761116400071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.049357", + "szi": "-18747.2", + "fundingRate": "-0.000006752", + "nSamples": null + } + } + ], + "ledger_updates": [ + { + "time": 1761115272390, + "hash": "0x075bb06d562b929808d5042df5c1d302012b0052f12eb16aab245bc0152f6c82", + "delta": { + "type": "accountClassTransfer", + "usdc": "2237313.04", + "toPerp": true + } + }, + { + "time": 1761115303659, + "hash": "0x42e650d53d2db536ea81294f1010dc0267ad00b60a579868a3ad6ec087347124", + "delta": { + "type": "withdraw", + "usdc": "9999999.0", + "nonce": 1761115039997000, + "fee": "1.0" + } + }, + { + "time": 1761115410063, + "hash": "0x611b6ea0b6ca926e971013bab76698f201fd2e20fa34a00ea4656b293e677a0b", + "delta": { + "type": "withdraw", + "usdc": "8999999.0", + "nonce": 1761115141287000, + "fee": "1.0" + } + }, + { + "time": 1761132614550, + "hash": "0x05ead67544a1520ced1244a0d5f59043067f6e9e8a57b8e30f5a3be71634bd06", + "delta": { + "type": "withdraw", + "usdc": "9999999.0", + "nonce": 1761132342433000, + "fee": "1.0" + } + }, + { + "time": 1761201557287, + "hash": "0xb7e9c3ae398e4974b963042e0658dc0203e40093d48168465bb26f00f882235f", + "delta": { + "type": "accountClassTransfer", + "usdc": "2000000.0", + "toPerp": false + } + }, + { + "time": 1761417266859, + "hash": "0xd1828370da2b23f84efd3908e020de5a63b075742055edddc208c7f7d134f41f", + "delta": { + "type": "deposit", + "usdc": "2000000.0" + } + }, + { + "time": 1761430099211, + "hash": "0xab60ac1c371861c50c47d843322c88445e475c1aa8ce6d2191d1a6a563cdca2e", + "delta": { + "type": "deposit", + "usdc": "2000000.8" + } + }, + { + "time": 1761468311644, + "hash": "0x32b7bce8c9e667193431042e39c25e0201d000ce64e985ebd680683b88ea4103", + "delta": { + "type": "send", + "user": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "destination": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "sourceDex": "spot", + "destinationDex": "", + "token": "USDC", + "amount": "900000.0", + "usdcValue": "900000.0", + "fee": "0.0", + "nativeTokenFee": "0.0", + "nonce": 1761467995524, + "feeToken": "" + } + }, + { + "time": 1761470326658, + "hash": "0x88fe14d0854370a62127bdc9ce9bda70ca4999244ef94b61eef97066ab96ea93", + "delta": { + "type": "deposit", + "usdc": "5000000.0" + } + } + ], + "referral_state": { + "referredBy": null, + "cumVlm": "2705995561.6700000763", + "unclaimedRewards": "1211.48930369", + "claimedRewards": "23302.099542", + "builderRewards": "0.0", + "referrerState": { + "stage": "ready", + "data": { + "code": "EGAF", + "nReferrals": 3, + "referralStates": [ + { + "cumVlm": "2946736663.3400001526", + "cumRewardedFeesSinceReferred": "568728.35694463", + "cumFeesRewardedToReferrer": "23302.099542", + "timeJoined": 1740074524733, + "user": "0x5b5d51203a0f9079f8aeb098a6523a13f298c060", + "tokenToState": [ + [ + 0, + { + "cumVlm": "2946736663.3400001526", + "cumRewardedFeesSinceReferred": "568728.35694463", + "cumFeesRewardedToReferrer": "23302.099542" + } + ] + ] + }, + { + "cumVlm": "31767287.4200000018", + "cumRewardedFeesSinceReferred": "12114.95159313", + "cumFeesRewardedToReferrer": "1211.48930369", + "timeJoined": 1750501639492, + "user": "0xc327d213545d49a1644cf3f154375034ac6e24e8", + "tokenToState": [ + [ + 0, + { + "cumVlm": "31767287.4200000018", + "cumRewardedFeesSinceReferred": "12114.95159313", + "cumFeesRewardedToReferrer": "1211.48930369" + } + ] + ] + }, + { + "cumVlm": "0.0", + "cumRewardedFeesSinceReferred": "0.0", + "cumFeesRewardedToReferrer": "0.0", + "timeJoined": 1751022900093, + "user": "0x7096a82cd4c980f61a490a391d680a2e0259f7f0", + "tokenToState": [] + } + ] + } + }, + "rewardHistory": [], + "tokenToState": [ + [ + 0, + { + "cumVlm": "2705995561.6700000763", + "unclaimedRewards": "1211.48930369", + "claimedRewards": "23302.099542", + "builderRewards": "0.0" + } + ] + ] + }, + "sub_accounts": null, + "funding_history": { + "BTC": [ + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001352645", + "time": 1760954400031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001272886", + "time": 1760958000001 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001165919", + "time": 1760961600008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000136049", + "time": 1760965200016 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002338981", + "time": 1760968800008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003899218", + "time": 1760972400038 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003885256", + "time": 1760976000065 + }, + { + "coin": "BTC", + "fundingRate": "0.0000016059", + "premium": "-0.0004871525", + "time": 1760979600004 + }, + { + "coin": "BTC", + "fundingRate": "0.0000008419", + "premium": "-0.0004932651", + "time": 1760983200050 + }, + { + "coin": "BTC", + "fundingRate": "0.0000110306", + "premium": "-0.0004117548", + "time": 1760986800049 + }, + { + "coin": "BTC", + "fundingRate": "0.0000069584", + "premium": "-0.0004443329", + "time": 1760990400017 + }, + { + "coin": "BTC", + "fundingRate": "0.0000051083", + "premium": "-0.0004591332", + "time": 1760994000028 + }, + { + "coin": "BTC", + "fundingRate": "0.0000023643", + "premium": "-0.0004810854", + "time": 1760997600031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000062676", + "premium": "-0.0004498594", + "time": 1761001200065 + }, + { + "coin": "BTC", + "fundingRate": "0.0000024307", + "premium": "-0.0004805546", + "time": 1761004800019 + }, + { + "coin": "BTC", + "fundingRate": "0.0000041224", + "premium": "-0.0004670205", + "time": 1761008400007 + }, + { + "coin": "BTC", + "fundingRate": "0.0000022574", + "premium": "-0.0004819408", + "time": 1761012000031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000013109", + "premium": "-0.0004895131", + "time": 1761015600071 + }, + { + "coin": "BTC", + "fundingRate": "0.0000020437", + "premium": "-0.0004836506", + "time": 1761019200035 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000013815", + "premium": "-0.000511052", + "time": 1761022800063 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000070809", + "premium": "-0.0005566472", + "time": 1761026400008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000032246", + "premium": "-0.0004742033", + "time": 1761030000118 + }, + { + "coin": "BTC", + "fundingRate": "0.0000026276", + "premium": "-0.0004789796", + "time": 1761033600010 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000029544", + "premium": "-0.0005236355", + "time": 1761037200003 + }, + { + "coin": "BTC", + "fundingRate": "0.0000104736", + "premium": "-0.000416211", + "time": 1761040800028 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003548212", + "time": 1761044400076 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001751239", + "time": 1761048000078 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001683407", + "time": 1761051600030 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003711413", + "time": 1761055200096 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002222974", + "time": 1761058800047 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000122508", + "time": 1761062400042 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002984871", + "time": 1761066000058 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000026826", + "premium": "-0.0005214606", + "time": 1761069600016 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000007251", + "premium": "-0.0005058006", + "time": 1761073200080 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000033525", + "premium": "-0.0005268203", + "time": 1761076800060 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000174662", + "premium": "-0.0006397296", + "time": 1761080400019 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000076151", + "premium": "-0.0005609207", + "time": 1761084000011 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000134023", + "premium": "-0.0006072185", + "time": 1761087600060 + }, + { + "coin": "BTC", + "fundingRate": "0.0000008439", + "premium": "-0.0004932485", + "time": 1761091200025 + }, + { + "coin": "BTC", + "fundingRate": "0.000007544", + "premium": "-0.0004396483", + "time": 1761094800050 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002975444", + "time": 1761098400020 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003179832", + "time": 1761102000081 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003568722", + "time": 1761105600076 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003954795", + "time": 1761109200035 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003318022", + "time": 1761112800009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002520846", + "time": 1761116400071 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003883788", + "time": 1761120000062 + }, + { + "coin": "BTC", + "fundingRate": "0.000011671", + "premium": "-0.000406632", + "time": 1761123600059 + }, + { + "coin": "BTC", + "fundingRate": "0.0000073978", + "premium": "-0.0004408173", + "time": 1761127200074 + }, + { + "coin": "BTC", + "fundingRate": "0.0000052163", + "premium": "-0.0004582696", + "time": 1761130800056 + }, + { + "coin": "BTC", + "fundingRate": "0.0000033829", + "premium": "-0.0004729366", + "time": 1761134400032 + }, + { + "coin": "BTC", + "fundingRate": "0.0000073123", + "premium": "-0.0004415018", + "time": 1761138000031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000107638", + "premium": "-0.0004138899", + "time": 1761141600029 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001179009", + "time": 1761145200025 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002026969", + "time": 1761148800036 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000288323", + "time": 1761152400033 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000220857", + "time": 1761156000008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000837721", + "time": 1761159600089 + }, + { + "coin": "BTC", + "fundingRate": "0.0000075109", + "premium": "-0.0004399124", + "time": 1761163200002 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003984073", + "time": 1761166800025 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003158637", + "time": 1761170400027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003799932", + "time": 1761174000005 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000393111", + "time": 1761177600009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003335732", + "time": 1761181200016 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000127278", + "time": 1761184800031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000611793", + "time": 1761188400006 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000281721", + "time": 1761192000069 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000607776", + "time": 1761195600027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001393975", + "time": 1761199200059 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002208432", + "time": 1761202800050 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001904973", + "time": 1761206400047 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001506049", + "time": 1761210000058 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001219538", + "time": 1761213600041 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001931805", + "time": 1761217200009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001015844", + "time": 1761220800003 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000161843", + "time": 1761224400028 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001085288", + "time": 1761228000017 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002192891", + "time": 1761231600071 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000838156", + "time": 1761235200077 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000329185", + "time": 1761238800066 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001430906", + "time": 1761242400067 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002213978", + "time": 1761246000064 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001776608", + "time": 1761249600111 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001673456", + "time": 1761253200075 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000597556", + "time": 1761256800059 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000146871", + "time": 1761260400061 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000964892", + "time": 1761264000027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001058102", + "time": 1761267600017 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000732839", + "time": 1761271200037 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001243328", + "time": 1761274800019 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000172338", + "time": 1761278400025 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000752913", + "time": 1761282000030 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000889222", + "time": 1761285600025 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000407236", + "time": 1761289200071 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000031435", + "time": 1761292800077 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001203023", + "time": 1761296400061 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001343542", + "time": 1761300000120 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000960592", + "time": 1761303600104 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001479164", + "time": 1761307200013 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003044698", + "time": 1761310800033 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004006079", + "time": 1761314400009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005794671", + "time": 1761318000027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005716088", + "time": 1761321600171 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000513325", + "time": 1761325200036 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005445322", + "time": 1761328800052 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004764841", + "time": 1761332400043 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004228874", + "time": 1761336000021 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004113976", + "time": 1761339600031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004538869", + "time": 1761343200007 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004716946", + "time": 1761346800032 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004243927", + "time": 1761350400014 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003267751", + "time": 1761354000081 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003430884", + "time": 1761357600085 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003492443", + "time": 1761361200008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003368894", + "time": 1761364800066 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003204868", + "time": 1761368400028 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003473872", + "time": 1761372000036 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004158499", + "time": 1761375600008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004908448", + "time": 1761379200043 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000484888", + "time": 1761382800025 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004952546", + "time": 1761386400021 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004783556", + "time": 1761390000057 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005190806", + "time": 1761393600047 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005508971", + "time": 1761397200046 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004645111", + "time": 1761400800058 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002742317", + "time": 1761404400016 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001583254", + "time": 1761408000041 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000734766", + "time": 1761411600015 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001723186", + "time": 1761415200027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002461631", + "time": 1761418800030 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003475385", + "time": 1761422400002 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003257242", + "time": 1761426000073 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003117672", + "time": 1761429600055 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003188996", + "time": 1761433200044 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003026988", + "time": 1761436800032 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003465539", + "time": 1761440400040 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003386333", + "time": 1761444000006 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002688927", + "time": 1761447600063 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001830748", + "time": 1761451200133 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000556778", + "time": 1761454800021 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000713956", + "time": 1761458400088 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000725262", + "time": 1761462000054 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001433561", + "time": 1761465600009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002166459", + "time": 1761469200041 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000278095", + "time": 1761472800028 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003047142", + "time": 1761476400068 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003250711", + "time": 1761480000084 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000340227", + "time": 1761483600054 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003502875", + "time": 1761487200041 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003389626", + "time": 1761490800079 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000311226", + "time": 1761494400039 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003087198", + "time": 1761498000074 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002717117", + "time": 1761501600030 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000347195", + "time": 1761505200059 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004400754", + "time": 1761508800056 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003669282", + "time": 1761512400033 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.00030163", + "time": 1761516000019 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005099901", + "time": 1761519600009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003886856", + "time": 1761523200020 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005006626", + "time": 1761526800007 + }, + { + "coin": "BTC", + "fundingRate": "0.0000177275", + "premium": "0.00064182", + "time": 1761530400080 + }, + { + "coin": "BTC", + "fundingRate": "0.0000201933", + "premium": "0.0006615468", + "time": 1761534000034 + }, + { + "coin": "BTC", + "fundingRate": "0.0000246072", + "premium": "0.0006968576", + "time": 1761537600050 + }, + { + "coin": "BTC", + "fundingRate": "0.0000306179", + "premium": "0.0007449431", + "time": 1761541200056 + }, + { + "coin": "BTC", + "fundingRate": "0.0000321483", + "premium": "0.0007571862", + "time": 1761544800073 + }, + { + "coin": "BTC", + "fundingRate": "0.0000257439", + "premium": "0.0007059508", + "time": 1761548400002 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004680155", + "time": 1761552000067 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001815506", + "time": 1761555600016 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000258357", + "time": 1761559200082 + } + ], + "ETH": [ + { + "coin": "ETH", + "fundingRate": "0.0000117916", + "premium": "-0.0004056671", + "time": 1760954400031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000084048", + "premium": "-0.0004327618", + "time": 1760958000001 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003619879", + "time": 1760961600008 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000307263", + "time": 1760965200016 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002453205", + "time": 1760968800008 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002086067", + "time": 1760972400038 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001759044", + "time": 1760976000065 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002790004", + "time": 1760979600004 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001851621", + "time": 1760983200050 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002010051", + "time": 1760986800049 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003175336", + "time": 1760990400017 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002648332", + "time": 1760994000028 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003429959", + "time": 1760997600031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000325434", + "time": 1761001200065 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000318293", + "time": 1761004800019 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003768053", + "time": 1761008400007 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002966119", + "time": 1761012000031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002011445", + "time": 1761015600071 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000436169", + "time": 1761019200035 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001897127", + "time": 1761022800063 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001436807", + "time": 1761026400008 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003042976", + "time": 1761030000118 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002560929", + "time": 1761033600010 + }, + { + "coin": "ETH", + "fundingRate": "0.0000110391", + "premium": "-0.0004116868", + "time": 1761037200003 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003337129", + "time": 1761040800028 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003193498", + "time": 1761044400076 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002287856", + "time": 1761048000078 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000892195", + "time": 1761051600030 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001510062", + "time": 1761055200096 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000517515", + "time": 1761058800047 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001853071", + "time": 1761062400042 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000094919", + "time": 1761066000058 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000072822", + "time": 1761069600016 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000121835", + "time": 1761073200080 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003673479", + "time": 1761076800060 + }, + { + "coin": "ETH", + "fundingRate": "0.0000077975", + "premium": "-0.0004376202", + "time": 1761080400019 + }, + { + "coin": "ETH", + "fundingRate": "0.0000022918", + "premium": "-0.0004816653", + "time": 1761084000011 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000090437", + "premium": "-0.0005723496", + "time": 1761087600060 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000148528", + "premium": "-0.0006188225", + "time": 1761091200025 + }, + { + "coin": "ETH", + "fundingRate": "-0.000011851", + "premium": "-0.0005948082", + "time": 1761094800050 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000034748", + "premium": "-0.0005277986", + "time": 1761098400020 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000029198", + "premium": "-0.0005233587", + "time": 1761102000081 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000031762", + "premium": "-0.0005254093", + "time": 1761105600076 + }, + { + "coin": "ETH", + "fundingRate": "0.0000005475", + "premium": "-0.0004956204", + "time": 1761109200035 + }, + { + "coin": "ETH", + "fundingRate": "0.0000026594", + "premium": "-0.000478725", + "time": 1761112800009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000034262", + "premium": "-0.0004725901", + "time": 1761116400071 + }, + { + "coin": "ETH", + "fundingRate": "0.0000075521", + "premium": "-0.0004395833", + "time": 1761120000062 + }, + { + "coin": "ETH", + "fundingRate": "0.0000102056", + "premium": "-0.0004183555", + "time": 1761123600059 + }, + { + "coin": "ETH", + "fundingRate": "0.0000080995", + "premium": "-0.0004352043", + "time": 1761127200074 + }, + { + "coin": "ETH", + "fundingRate": "0.0000099086", + "premium": "-0.0004207315", + "time": 1761130800056 + }, + { + "coin": "ETH", + "fundingRate": "0.0000064496", + "premium": "-0.0004484035", + "time": 1761134400032 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003398574", + "time": 1761138000031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003126328", + "time": 1761141600029 + }, + { + "coin": "ETH", + "fundingRate": "0.0000118332", + "premium": "-0.0004053341", + "time": 1761145200025 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000041865", + "premium": "-0.0005334917", + "time": 1761148800036 + }, + { + "coin": "ETH", + "fundingRate": "-0.000012775", + "premium": "-0.0006021997", + "time": 1761152400033 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000094025", + "premium": "-0.0005752198", + "time": 1761156000008 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000099926", + "premium": "-0.0005799406", + "time": 1761159600089 + }, + { + "coin": "ETH", + "fundingRate": "0.0000006318", + "premium": "-0.0004949454", + "time": 1761163200002 + }, + { + "coin": "ETH", + "fundingRate": "0.000000636", + "premium": "-0.0004949116", + "time": 1761166800025 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000021812", + "premium": "-0.0005174499", + "time": 1761170400027 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000095086", + "premium": "-0.0005760687", + "time": 1761174000005 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000017587", + "premium": "-0.0005140696", + "time": 1761177600009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000047453", + "premium": "-0.0004620376", + "time": 1761181200016 + }, + { + "coin": "ETH", + "fundingRate": "0.0000039805", + "premium": "-0.0004681563", + "time": 1761184800031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000069551", + "premium": "-0.0004443593", + "time": 1761188400006 + }, + { + "coin": "ETH", + "fundingRate": "0.0000061453", + "premium": "-0.0004508377", + "time": 1761192000069 + }, + { + "coin": "ETH", + "fundingRate": "0.0000056013", + "premium": "-0.00045519", + "time": 1761195600027 + }, + { + "coin": "ETH", + "fundingRate": "0.0000106185", + "premium": "-0.000415052", + "time": 1761199200059 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003625454", + "time": 1761202800050 + }, + { + "coin": "ETH", + "fundingRate": "0.0000084962", + "premium": "-0.0004320301", + "time": 1761206400047 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003425294", + "time": 1761210000058 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002814714", + "time": 1761213600041 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001350224", + "time": 1761217200009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000579583", + "time": 1761220800003 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000637819", + "time": 1761224400028 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000491112", + "time": 1761228000017 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000265103", + "time": 1761231600071 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000633233", + "time": 1761235200077 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001762556", + "time": 1761238800066 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001438487", + "time": 1761242400067 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000678628", + "time": 1761246000064 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000642349", + "time": 1761249600111 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000644468", + "time": 1761253200075 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002626957", + "time": 1761256800059 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002883672", + "time": 1761260400061 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000741096", + "time": 1761264000027 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000078495", + "time": 1761267600017 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000736892", + "time": 1761271200037 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001152003", + "time": 1761274800019 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000212291", + "time": 1761278400025 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000303098", + "time": 1761282000030 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0002320454", + "time": 1761285600025 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0002069007", + "time": 1761289200071 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001459459", + "time": 1761292800077 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000610695", + "time": 1761296400061 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000687375", + "time": 1761300000120 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001389247", + "time": 1761303600104 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001060309", + "time": 1761307200013 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001771318", + "time": 1761310800033 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001454371", + "time": 1761314400009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001690049", + "time": 1761318000027 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001970031", + "time": 1761321600171 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001485934", + "time": 1761325200036 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001562667", + "time": 1761328800052 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001054509", + "time": 1761332400043 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001360957", + "time": 1761336000021 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0003065801", + "time": 1761339600031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0003237599", + "time": 1761343200007 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0003332077", + "time": 1761346800032 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0002439774", + "time": 1761350400014 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000128523", + "time": 1761354000081 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001531508", + "time": 1761357600085 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001625471", + "time": 1761361200008 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001372684", + "time": 1761364800066 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001154002", + "time": 1761368400028 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000883615", + "time": 1761372000036 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000974643", + "time": 1761375600008 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000793815", + "time": 1761379200043 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000744869", + "time": 1761382800025 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000957654", + "time": 1761386400021 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000753839", + "time": 1761390000057 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001177421", + "time": 1761393600047 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001489224", + "time": 1761397200046 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000150952", + "time": 1761400800058 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001092355", + "time": 1761404400016 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000618235", + "time": 1761408000041 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000833954", + "time": 1761411600015 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001093273", + "time": 1761415200027 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000607707", + "time": 1761418800030 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000761181", + "time": 1761422400002 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000743616", + "time": 1761426000073 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000928337", + "time": 1761429600055 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001198571", + "time": 1761433200044 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000668206", + "time": 1761436800032 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000425907", + "time": 1761440400040 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000239282", + "time": 1761444000006 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000133243", + "time": 1761447600063 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000137014", + "time": 1761451200133 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000446889", + "time": 1761454800021 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000292407", + "time": 1761458400088 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000285564", + "time": 1761462000054 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000103596", + "time": 1761465600009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000003341", + "time": 1761469200041 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001069926", + "time": 1761472800028 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001196414", + "time": 1761476400068 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001034774", + "time": 1761480000084 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000976692", + "time": 1761483600054 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000521771", + "time": 1761487200041 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000418968", + "time": 1761490800079 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000327784", + "time": 1761494400039 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000666907", + "time": 1761498000074 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000143709", + "time": 1761501600030 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000974679", + "time": 1761505200059 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000914429", + "time": 1761508800056 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000220714", + "time": 1761512400033 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000851196", + "time": 1761516000019 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0003167121", + "time": 1761519600009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0002698647", + "time": 1761523200020 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001867574", + "time": 1761526800007 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0002702429", + "time": 1761530400080 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0004019255", + "time": 1761534000034 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000387318", + "time": 1761537600050 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0003906413", + "time": 1761541200056 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000450167", + "time": 1761544800073 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0004721017", + "time": 1761548400002 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0005395542", + "time": 1761552000067 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0004103561", + "time": 1761555600016 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0003460069", + "time": 1761559200082 + } + ], + "SOL": [ + { + "coin": "SOL", + "fundingRate": "-0.0000030753", + "premium": "-0.0005246027", + "time": 1760954400031 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000006827", + "premium": "-0.0005054616", + "time": 1760958000001 + }, + { + "coin": "SOL", + "fundingRate": "0.0000021902", + "premium": "-0.0004824782", + "time": 1760961600008 + }, + { + "coin": "SOL", + "fundingRate": "0.0000005667", + "premium": "-0.0004954664", + "time": 1760965200016 + }, + { + "coin": "SOL", + "fundingRate": "0.0000120642", + "premium": "-0.0004034867", + "time": 1760968800008 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000030613", + "premium": "-0.0005244906", + "time": 1760972400038 + }, + { + "coin": "SOL", + "fundingRate": "0.0000061049", + "premium": "-0.0004511609", + "time": 1760976000065 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000017774", + "premium": "-0.0005142195", + "time": 1760979600004 + }, + { + "coin": "SOL", + "fundingRate": "0.0000032116", + "premium": "-0.000474307", + "time": 1760983200050 + }, + { + "coin": "SOL", + "fundingRate": "0.0000048414", + "premium": "-0.000461269", + "time": 1760986800049 + }, + { + "coin": "SOL", + "fundingRate": "0.0000116316", + "premium": "-0.0004069468", + "time": 1760990400017 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003183752", + "time": 1760994000028 + }, + { + "coin": "SOL", + "fundingRate": "0.0000105763", + "premium": "-0.0004153898", + "time": 1760997600031 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.000374574", + "time": 1761001200065 + }, + { + "coin": "SOL", + "fundingRate": "0.0000064417", + "premium": "-0.000448466", + "time": 1761004800019 + }, + { + "coin": "SOL", + "fundingRate": "0.0000117599", + "premium": "-0.0004059207", + "time": 1761008400007 + }, + { + "coin": "SOL", + "fundingRate": "0.0000027204", + "premium": "-0.0004782371", + "time": 1761012000031 + }, + { + "coin": "SOL", + "fundingRate": "0.0000043146", + "premium": "-0.0004654832", + "time": 1761015600071 + }, + { + "coin": "SOL", + "fundingRate": "0.0000116321", + "premium": "-0.0004069436", + "time": 1761019200035 + }, + { + "coin": "SOL", + "fundingRate": "0.000000514", + "premium": "-0.0004958881", + "time": 1761022800063 + }, + { + "coin": "SOL", + "fundingRate": "0.0000071792", + "premium": "-0.000442566", + "time": 1761026400008 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000024705", + "premium": "-0.0005197639", + "time": 1761030000118 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000000297", + "premium": "-0.0005002378", + "time": 1761033600010 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000117821", + "premium": "-0.0005942568", + "time": 1761037200003 + }, + { + "coin": "SOL", + "fundingRate": "0.0000035447", + "premium": "-0.0004716424", + "time": 1761040800028 + }, + { + "coin": "SOL", + "fundingRate": "0.0000081934", + "premium": "-0.0004344532", + "time": 1761044400076 + }, + { + "coin": "SOL", + "fundingRate": "0.0000058207", + "premium": "-0.0004534347", + "time": 1761048000078 + }, + { + "coin": "SOL", + "fundingRate": "0.0000061282", + "premium": "-0.000450974", + "time": 1761051600030 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000001924", + "premium": "-0.0005015391", + "time": 1761055200096 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.000371774", + "time": 1761058800047 + }, + { + "coin": "SOL", + "fundingRate": "0.000011612", + "premium": "-0.0004071039", + "time": 1761062400042 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000014312", + "premium": "-0.0005114493", + "time": 1761066000058 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000007599", + "premium": "-0.000506079", + "time": 1761069600016 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000208043", + "premium": "-0.0006664344", + "time": 1761073200080 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000171227", + "premium": "-0.0006369819", + "time": 1761076800060 + }, + { + "coin": "SOL", + "fundingRate": "-0.000010192", + "premium": "-0.000581536", + "time": 1761080400019 + }, + { + "coin": "SOL", + "fundingRate": "0.0000024086", + "premium": "-0.0004807312", + "time": 1761084000011 + }, + { + "coin": "SOL", + "fundingRate": "0.0000087172", + "premium": "-0.000430262", + "time": 1761087600060 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000025974", + "premium": "-0.0005207791", + "time": 1761091200025 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000071727", + "premium": "-0.0005573819", + "time": 1761094800050 + }, + { + "coin": "SOL", + "fundingRate": "0.0000004072", + "premium": "-0.0004967423", + "time": 1761098400020 + }, + { + "coin": "SOL", + "fundingRate": "0.0000025593", + "premium": "-0.0004795255", + "time": 1761102000081 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000047782", + "premium": "-0.0005382256", + "time": 1761105600076 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000048955", + "premium": "-0.0005391639", + "time": 1761109200035 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000018326", + "premium": "-0.000514661", + "time": 1761112800009 + }, + { + "coin": "SOL", + "fundingRate": "0.0000024606", + "premium": "-0.0004803149", + "time": 1761116400071 + }, + { + "coin": "SOL", + "fundingRate": "-0.00001134", + "premium": "-0.0005907203", + "time": 1761120000062 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000112563", + "premium": "-0.0005900501", + "time": 1761123600059 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000124411", + "premium": "-0.0005995287", + "time": 1761127200074 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000099317", + "premium": "-0.0005794534", + "time": 1761130800056 + }, + { + "coin": "SOL", + "fundingRate": "0.0000006656", + "premium": "-0.0004946753", + "time": 1761134400032 + }, + { + "coin": "SOL", + "fundingRate": "0.0000105979", + "premium": "-0.0004152164", + "time": 1761138000031 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003132918", + "time": 1761141600029 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003976975", + "time": 1761145200025 + }, + { + "coin": "SOL", + "fundingRate": "0.0000102271", + "premium": "-0.0004181836", + "time": 1761148800036 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003135737", + "time": 1761152400033 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003829325", + "time": 1761156000008 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000010469", + "premium": "-0.0005083751", + "time": 1761159600089 + }, + { + "coin": "SOL", + "fundingRate": "0.0000010546", + "premium": "-0.0004915628", + "time": 1761163200002 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000129326", + "premium": "-0.0006034608", + "time": 1761166800025 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000082901", + "premium": "-0.0005663208", + "time": 1761170400027 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000178903", + "premium": "-0.0006431226", + "time": 1761174000005 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000063956", + "premium": "-0.0005511645", + "time": 1761177600009 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000049175", + "premium": "-0.0005393401", + "time": 1761181200016 + }, + { + "coin": "SOL", + "fundingRate": "0.0000024885", + "premium": "-0.0004800922", + "time": 1761184800031 + }, + { + "coin": "SOL", + "fundingRate": "0.0000102251", + "premium": "-0.0004181991", + "time": 1761188400006 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003424945", + "time": 1761192000069 + }, + { + "coin": "SOL", + "fundingRate": "0.0000123014", + "premium": "-0.0004015887", + "time": 1761195600027 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003973601", + "time": 1761199200059 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003161634", + "time": 1761202800050 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003618314", + "time": 1761206400047 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001577689", + "time": 1761210000058 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001087311", + "time": 1761213600041 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.000100426", + "time": 1761217200009 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002343418", + "time": 1761220800003 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001463744", + "time": 1761224400028 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001902542", + "time": 1761228000017 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000940197", + "time": 1761231600071 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000307334", + "time": 1761235200077 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000457865", + "time": 1761238800066 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001242897", + "time": 1761242400067 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001704841", + "time": 1761246000064 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003133038", + "time": 1761249600111 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003980109", + "time": 1761253200075 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000001044", + "premium": "-0.0005008352", + "time": 1761256800059 + }, + { + "coin": "SOL", + "fundingRate": "0.0000010685", + "premium": "-0.0004914519", + "time": 1761260400061 + }, + { + "coin": "SOL", + "fundingRate": "0.0000067343", + "premium": "-0.0004461253", + "time": 1761264000027 + }, + { + "coin": "SOL", + "fundingRate": "0.000010908", + "premium": "-0.0004127359", + "time": 1761267600017 + }, + { + "coin": "SOL", + "fundingRate": "0.0000097212", + "premium": "-0.0004222301", + "time": 1761271200037 + }, + { + "coin": "SOL", + "fundingRate": "0.0000011463", + "premium": "-0.0004908293", + "time": 1761274800019 + }, + { + "coin": "SOL", + "fundingRate": "0.000000059", + "premium": "-0.0004995278", + "time": 1761278400025 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003752989", + "time": 1761282000030 + }, + { + "coin": "SOL", + "fundingRate": "0.0000052528", + "premium": "-0.0004579773", + "time": 1761285600025 + }, + { + "coin": "SOL", + "fundingRate": "0.0000120973", + "premium": "-0.0004032212", + "time": 1761289200071 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003567801", + "time": 1761292800077 + }, + { + "coin": "SOL", + "fundingRate": "0.0000074683", + "premium": "-0.0004402539", + "time": 1761296400061 + }, + { + "coin": "SOL", + "fundingRate": "0.0000081756", + "premium": "-0.000434595", + "time": 1761300000120 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000002325", + "premium": "-0.0005018601", + "time": 1761303600104 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000082387", + "premium": "-0.0005659098", + "time": 1761307200013 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000075289", + "premium": "-0.0005602314", + "time": 1761310800033 + }, + { + "coin": "SOL", + "fundingRate": "-0.000001767", + "premium": "-0.0005141357", + "time": 1761314400009 + }, + { + "coin": "SOL", + "fundingRate": "0.0000012646", + "premium": "-0.0004898834", + "time": 1761318000027 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000039815", + "premium": "-0.000531852", + "time": 1761321600171 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000073971", + "premium": "-0.000559177", + "time": 1761325200036 + }, + { + "coin": "SOL", + "fundingRate": "0.0000052071", + "premium": "-0.0004583431", + "time": 1761328800052 + }, + { + "coin": "SOL", + "fundingRate": "0.0000009949", + "premium": "-0.0004920407", + "time": 1761332400043 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003602674", + "time": 1761336000021 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003807111", + "time": 1761339600031 + }, + { + "coin": "SOL", + "fundingRate": "0.0000113998", + "premium": "-0.0004088019", + "time": 1761343200007 + }, + { + "coin": "SOL", + "fundingRate": "0.0000108705", + "premium": "-0.0004130361", + "time": 1761346800032 + }, + { + "coin": "SOL", + "fundingRate": "0.0000085421", + "premium": "-0.0004316635", + "time": 1761350400014 + }, + { + "coin": "SOL", + "fundingRate": "0.0000003076", + "premium": "-0.0004975395", + "time": 1761354000081 + }, + { + "coin": "SOL", + "fundingRate": "0.0000019314", + "premium": "-0.0004845489", + "time": 1761357600085 + }, + { + "coin": "SOL", + "fundingRate": "0.0000101325", + "premium": "-0.0004189401", + "time": 1761361200008 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003945183", + "time": 1761364800066 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003084353", + "time": 1761368400028 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003896029", + "time": 1761372000036 + }, + { + "coin": "SOL", + "fundingRate": "0.0000120798", + "premium": "-0.0004033619", + "time": 1761375600008 + }, + { + "coin": "SOL", + "fundingRate": "0.0000054476", + "premium": "-0.0004564192", + "time": 1761379200043 + }, + { + "coin": "SOL", + "fundingRate": "0.0000057688", + "premium": "-0.0004538492", + "time": 1761382800025 + }, + { + "coin": "SOL", + "fundingRate": "0.0000070128", + "premium": "-0.0004438974", + "time": 1761386400021 + }, + { + "coin": "SOL", + "fundingRate": "0.0000042522", + "premium": "-0.0004659823", + "time": 1761390000057 + }, + { + "coin": "SOL", + "fundingRate": "0.000011386", + "premium": "-0.0004089121", + "time": 1761393600047 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003431662", + "time": 1761397200046 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003878945", + "time": 1761400800058 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000092738", + "premium": "-0.0005741902", + "time": 1761404400016 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000065131", + "premium": "-0.000552105", + "time": 1761408000041 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000116481", + "premium": "-0.0005931848", + "time": 1761411600015 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000038845", + "premium": "-0.0005310757", + "time": 1761415200027 + }, + { + "coin": "SOL", + "fundingRate": "0.0000116902", + "premium": "-0.0004064787", + "time": 1761418800030 + }, + { + "coin": "SOL", + "fundingRate": "0.0000089342", + "premium": "-0.0004285268", + "time": 1761422400002 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003935629", + "time": 1761426000073 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002780613", + "time": 1761429600055 + }, + { + "coin": "SOL", + "fundingRate": "0.0000111112", + "premium": "-0.0004111106", + "time": 1761433200044 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003304611", + "time": 1761436800032 + }, + { + "coin": "SOL", + "fundingRate": "0.0000095835", + "premium": "-0.0004233319", + "time": 1761440400040 + }, + { + "coin": "SOL", + "fundingRate": "0.0000108432", + "premium": "-0.0004132542", + "time": 1761444000006 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003134045", + "time": 1761447600063 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002791668", + "time": 1761451200133 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002890506", + "time": 1761454800021 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003875814", + "time": 1761458400088 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003102352", + "time": 1761462000054 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003197074", + "time": 1761465600009 + }, + { + "coin": "SOL", + "fundingRate": "0.0000109795", + "premium": "-0.000412164", + "time": 1761469200041 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002309353", + "time": 1761472800028 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000511212", + "time": 1761476400068 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000133266", + "time": 1761480000084 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000312538", + "time": 1761483600054 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000227339", + "time": 1761487200041 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001234348", + "time": 1761490800079 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003574461", + "time": 1761494400039 + }, + { + "coin": "SOL", + "fundingRate": "0.0000087164", + "premium": "-0.0004302685", + "time": 1761498000074 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003264781", + "time": 1761501600030 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002048436", + "time": 1761505200059 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002522871", + "time": 1761508800056 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002936289", + "time": 1761512400033 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003865549", + "time": 1761516000019 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.000166149", + "time": 1761519600009 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000322778", + "time": 1761523200020 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.000057235", + "time": 1761526800007 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001538916", + "time": 1761530400080 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.000091662", + "time": 1761534000034 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001029194", + "time": 1761537600050 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0002174421", + "time": 1761541200056 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001560984", + "time": 1761544800073 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001229887", + "time": 1761548400002 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000460836", + "time": 1761552000067 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002062495", + "time": 1761555600016 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001503546", + "time": 1761559200082 + } + ] + } + } +} \ No newline at end of file diff --git a/hyperliquid_wallet_data_0xb83de012_20251027_180309.json b/hyperliquid_wallet_data_0xb83de012_20251027_180309.json new file mode 100644 index 0000000..f06b8d9 --- /dev/null +++ b/hyperliquid_wallet_data_0xb83de012_20251027_180309.json @@ -0,0 +1,46664 @@ +{ + "wallet_address": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "timestamp": "2025-10-27T18:03:00.292506", + "data": { + "user_state": { + "marginSummary": { + "accountValue": "23103130.9381910004", + "totalNtlPos": "165465367.9404500127", + "totalRawUsd": "188568498.8786410093", + "totalMarginUsed": "21279350.1880550012" + }, + "crossMarginSummary": { + "accountValue": "23103130.9381910004", + "totalNtlPos": "165465367.9404500127", + "totalRawUsd": "188568498.8786410093", + "totalMarginUsed": "21279350.1880550012" + }, + "crossMaintenanceMarginUsed": "5123421.628153", + "withdrawable": "1818181.6568460001", + "assetPositions": [ + { + "type": "oneWay", + "position": { + "coin": "BTC", + "szi": "-498.13677", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "115143.7", + "positionValue": "57564187.0044300035", + "unrealizedPnl": "-206851.571791", + "returnOnEquity": "-0.0360636648", + "liquidationPx": "151207.3172084659", + "marginUsed": "5756418.7004429996", + "maxLeverage": 40, + "cumFunding": { + "allTime": "-6921086.1846070001", + "sinceOpen": "-6921086.1905479999", + "sinceChange": "0.0" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "ETH", + "szi": "-12082.059", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "4089.57", + "positionValue": "50915004.8319000006", + "unrealizedPnl": "-1504476.3031329999", + "returnOnEquity": "-0.3044849646", + "liquidationPx": "5673.0538083065", + "marginUsed": "5091500.4831900001", + "maxLeverage": 25, + "cumFunding": { + "allTime": "-6607941.6185609996", + "sinceOpen": "-6607941.6185609996", + "sinceChange": "0.0" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "SOL", + "szi": "-45921.84", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "200.6514", + "positionValue": "9287692.1400000006", + "unrealizedPnl": "-73408.431058", + "returnOnEquity": "-0.0796680821", + "liquidationPx": "584.2290281633", + "marginUsed": "928769.214", + "maxLeverage": 20, + "cumFunding": { + "allTime": "-792385.57816", + "sinceOpen": "-414.725174", + "sinceChange": "0.0" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "DOGE", + "szi": "-109217.0", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "0.279959", + "positionValue": "22325.04697", + "unrealizedPnl": "8251.325689", + "returnOnEquity": "2.6985953439", + "liquidationPx": "156.9889094481", + "marginUsed": "2232.504697", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-1874.908351", + "sinceOpen": "-1874.908351", + "sinceChange": "46.354838" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "INJ", + "szi": "-18747.2", + "leverage": { + "type": "cross", + "value": 3 + }, + "entryPx": "13.01496", + "positionValue": "165271.56576", + "unrealizedPnl": "78722.65214", + "returnOnEquity": "0.9679243978", + "liquidationPx": "887.5625768156", + "marginUsed": "55090.52192", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-533.703915", + "sinceOpen": "-533.703915", + "sinceChange": "-1.937707" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "SUI", + "szi": "-376577.6", + "leverage": { + "type": "cross", + "value": 3 + }, + "entryPx": "3.85881", + "positionValue": "998533.16416", + "unrealizedPnl": "454611.093601", + "returnOnEquity": "0.938539497", + "liquidationPx": "48.1230584092", + "marginUsed": "332844.388053", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-45755.94248", + "sinceOpen": "-45755.937643", + "sinceChange": "-1196.362573" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "XRP", + "szi": "-39691.0", + "leverage": { + "type": "cross", + "value": 20 + }, + "entryPx": "2.468585", + "positionValue": "106649.717", + "unrealizedPnl": "-8669.0947", + "returnOnEquity": "-1.7695528966", + "liquidationPx": "444.6305089736", + "marginUsed": "5332.48585", + "maxLeverage": 20, + "cumFunding": { + "allTime": "-2641.406394", + "sinceOpen": "-112.043225", + "sinceChange": "-112.043225" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "HYPE", + "szi": "-750315.16", + "leverage": { + "type": "cross", + "value": 5 + }, + "entryPx": "43.3419", + "positionValue": "35422378.7035999969", + "unrealizedPnl": "-2902268.1089479998", + "returnOnEquity": "-0.4462266665", + "liquidationPx": "68.9944329333", + "marginUsed": "7084475.7407200001", + "maxLeverage": 5, + "cumFunding": { + "allTime": "-1880262.4974199999", + "sinceOpen": "-1880262.4974199999", + "sinceChange": "-43925.914738" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "FARTCOIN", + "szi": "-4122236.7999999998", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "0.80127", + "positionValue": "1739790.0414400001", + "unrealizedPnl": "1563272.3443460001", + "returnOnEquity": "4.7327969071", + "liquidationPx": "4.575992024", + "marginUsed": "173979.004144", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-72773.504483", + "sinceOpen": "-51103.629859", + "sinceChange": "-6336.405057" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "PUMP", + "szi": "-1921732999.0", + "leverage": { + "type": "cross", + "value": 5 + }, + "entryPx": "0.005551", + "positionValue": "9243535.7251900006", + "unrealizedPnl": "1424477.5851950001", + "returnOnEquity": "0.66763958", + "liquidationPx": "0.0135698644", + "marginUsed": "1848707.1450380001", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-195655.715979", + "sinceOpen": "-195655.715979", + "sinceChange": "-9543.836301" + } + } + } + ], + "time": 1761584581835 + }, + "spot_state": { + "balances": [ + { + "coin": "USDC", + "token": 0, + "total": "85165.03263363", + "hold": "0.0", + "entryNtl": "0.0" + }, + { + "coin": "HYPE", + "token": 150, + "total": "45401.36651867", + "hold": "0.0", + "entryNtl": "1742715.1297323401" + }, + { + "coin": "UBTC", + "token": 197, + "total": "0.0", + "hold": "0.0", + "entryNtl": "0.0" + }, + { + "coin": "LATINA", + "token": 223, + "total": "35470.3668", + "hold": "0.0", + "entryNtl": "0.0" + }, + { + "coin": "USDT0", + "token": 268, + "total": "106501.47093445", + "hold": "103038.77", + "entryNtl": "106521.92756495" + }, + { + "coin": "UFART", + "token": 269, + "total": "4132582.4960630001", + "hold": "0.0", + "entryNtl": "3313065.8106947001" + }, + { + "coin": "UPUMP", + "token": 299, + "total": "358268528.5250939727", + "hold": "0.0", + "entryNtl": "2442751.2693156502" + }, + { + "coin": "LICKO", + "token": 307, + "total": "11189.06185739", + "hold": "0.0", + "entryNtl": "0.06713437" + } + ] + }, + "open_orders": [ + { + "coin": "WLFI", + "side": "B", + "limitPx": "0.10447", + "sz": "2624.0", + "oid": 194029229960, + "timestamp": 1760131688558, + "origSz": "12760.0", + "cloid": "0x00000000000000000000001261000016" + }, + { + "coin": "@166", + "side": "A", + "limitPx": "1.01", + "sz": "103038.77", + "oid": 174787748753, + "timestamp": 1758819420037, + "origSz": "3000000.0" + } + ], + "recent_fills": [ + { + "coin": "SOL", + "px": "202.25", + "sz": "24.72", + "side": "A", + "time": 1761584582495, + "startPosition": "-45921.84", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x88781cd96fb21f1189f1042e50475502022200bf0ab53de32c40c82c2eb5f8fc", + "oid": 214110193465, + "crossed": true, + "fee": "1.04992", + "tid": 1070573654637559, + "cloid": "0x00000000000000000000000059000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "202.25", + "sz": "24.72", + "side": "A", + "time": 1761584581232, + "startPosition": "-45897.12", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x714ec108c1bd48ae72c8042e50474302041c00ee5cb0678015176c5b80b12299", + "oid": 214110174338, + "crossed": true, + "fee": "1.04992", + "tid": 539234090491533, + "cloid": "0x00000000000000000000000059000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115555.0", + "sz": "0.17313", + "side": "A", + "time": 1761584580575, + "startPosition": "-497.96364", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa0f5b0dda7ee16e7a26f042e50473b02079f00c342e135b944be5c3066e1f0d2", + "oid": 214110162712, + "crossed": true, + "fee": "4.201267", + "tid": 1115978116246156, + "cloid": "0x00000000000000000000000060000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4214.1", + "sz": "2.3736", + "side": "A", + "time": 1761584580127, + "startPosition": "-12079.6854", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb59237cc9b852ce2b70b042e50473502038700b236884bb4595ae31f5a8906cd", + "oid": 214110153699, + "crossed": true, + "fee": "2.100543", + "tid": 1115128071277101, + "cloid": "0x00000000000000000000000061000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "202.25", + "sz": "24.73", + "side": "A", + "time": 1761584579732, + "startPosition": "-45872.39", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x572d8639078708f358a7042e504730020920001ea28a27c5faf6318bc68ae2dd", + "oid": 214110147275, + "crossed": true, + "fee": "1.050344", + "tid": 875430864619392, + "cloid": "0x00000000000000000000000059000020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115547.0", + "sz": "0.17314", + "side": "A", + "time": 1761584579180, + "startPosition": "-497.7905", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x01f7457467f186b00371042e50472b020298005a02f4a582a5bff0c726f5609a", + "oid": 214110136254, + "crossed": true, + "fee": "4.201219", + "tid": 77816455723477, + "cloid": "0x00000000000000000000000060000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4213.7", + "sz": "2.374", + "side": "A", + "time": 1761584578176, + "startPosition": "-12077.3114", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xdd7d4c1300212604def7042e5047210201c500f89b2444d68145f765bf24ffef", + "oid": 214110123129, + "crossed": true, + "fee": "2.100697", + "tid": 208408723748422, + "cloid": "0x00000000000000000000000061000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4213.9", + "sz": "2.3698", + "side": "A", + "time": 1761584575852, + "startPosition": "-12074.9416", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x73753452f6da50db74ee042e504703020a7e003891dd6fad173ddfa5b5de2ac6", + "oid": 214110094905, + "crossed": true, + "fee": "2.097081", + "tid": 304330912908019, + "cloid": "0x00000000000000000000000061000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4214.0", + "sz": "0.0036", + "side": "A", + "time": 1761584575852, + "startPosition": "-12074.938", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x73753452f6da50db74ee042e504703020a7e003891dd6fad173ddfa5b5de2ac6", + "oid": 214110094905, + "crossed": true, + "fee": "0.003185", + "tid": 270797562583811, + "cloid": "0x00000000000000000000000061000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115548.0", + "sz": "0.07509", + "side": "A", + "time": 1761584575651, + "startPosition": "-497.71541", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x9ed1a5ba7aacb53da04b042e50470102084d00a015afd40f429a510d39a08f28", + "oid": 214110085870, + "crossed": true, + "fee": "1.822064", + "tid": 49479682903901, + "cloid": "0x00000000000000000000000060000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115550.0", + "sz": "0.05802", + "side": "A", + "time": 1761584575651, + "startPosition": "-497.65739", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x9ed1a5ba7aacb53da04b042e50470102084d00a015afd40f429a510d39a08f28", + "oid": 214110085870, + "crossed": true, + "fee": "1.407884", + "tid": 498037293841884, + "cloid": "0x00000000000000000000000060000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115551.0", + "sz": "0.00013", + "side": "A", + "time": 1761584575651, + "startPosition": "-497.65726", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x9ed1a5ba7aacb53da04b042e50470102084d00a015afd40f429a510d39a08f28", + "oid": 214110085870, + "crossed": true, + "fee": "0.003154", + "tid": 455686731561228, + "cloid": "0x00000000000000000000000060000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115555.0", + "sz": "0.00013", + "side": "A", + "time": 1761584575651, + "startPosition": "-497.65713", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x9ed1a5ba7aacb53da04b042e50470102084d00a015afd40f429a510d39a08f28", + "oid": 214110085870, + "crossed": true, + "fee": "0.003154", + "tid": 820693791208674, + "cloid": "0x00000000000000000000000060000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115560.0", + "sz": "0.00013", + "side": "A", + "time": 1761584575651, + "startPosition": "-497.657", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x9ed1a5ba7aacb53da04b042e50470102084d00a015afd40f429a510d39a08f28", + "oid": 214110085870, + "crossed": true, + "fee": "0.003154", + "tid": 527209787461958, + "cloid": "0x00000000000000000000000060000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115562.0", + "sz": "0.03962", + "side": "A", + "time": 1761584575651, + "startPosition": "-497.61738", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x9ed1a5ba7aacb53da04b042e50470102084d00a015afd40f429a510d39a08f28", + "oid": 214110085870, + "crossed": true, + "fee": "0.961498", + "tid": 701805856857747, + "cloid": "0x00000000000000000000000060000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "202.26", + "sz": "24.72", + "side": "A", + "time": 1761584574587, + "startPosition": "-45847.67", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd6c0a31d9a18868dd83a042e5046f402015d0003351ba55f7a894e70591c6078", + "oid": 214110067190, + "crossed": true, + "fee": "1.049972", + "tid": 187318620493597, + "cloid": "0x00000000000000000000000059000019", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "202.26", + "sz": "3.6", + "side": "A", + "time": 1761584573165, + "startPosition": "-45844.07", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xafdc2ecd26f8a384b155042e5046e302037000b2c1fbc25653a4da1fe5fc7d6f", + "oid": 214110055075, + "crossed": true, + "fee": "0.152908", + "tid": 1112056496111485, + "cloid": "0x00000000000000000000000059000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "202.26", + "sz": "13.85", + "side": "A", + "time": 1761584573165, + "startPosition": "-45830.22", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xafdc2ecd26f8a384b155042e5046e302037000b2c1fbc25653a4da1fe5fc7d6f", + "oid": 214110055075, + "crossed": true, + "fee": "0.588273", + "tid": 618269749252767, + "cloid": "0x00000000000000000000000059000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "202.26", + "sz": "7.27", + "side": "A", + "time": 1761584573165, + "startPosition": "-45822.95", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xafdc2ecd26f8a384b155042e5046e302037000b2c1fbc25653a4da1fe5fc7d6f", + "oid": 214110055075, + "crossed": true, + "fee": "0.30879", + "tid": 643975174529061, + "cloid": "0x00000000000000000000000059000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4214.6", + "sz": "1.4207", + "side": "A", + "time": 1761584571954, + "startPosition": "-12073.5173", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x92e41b16f7080d5a945d042e5046d50203df00fc920b2c2c36acc669b60be745", + "oid": 214110043809, + "crossed": true, + "fee": "1.257413", + "tid": 900279740992341, + "cloid": "0x00000000000000000000000061000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4214.6", + "sz": "0.9527", + "side": "A", + "time": 1761584571954, + "startPosition": "-12072.5646", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x92e41b16f7080d5a945d042e5046d50203df00fc920b2c2c36acc669b60be745", + "oid": 214110043809, + "crossed": true, + "fee": "0.843202", + "tid": 512209640049984, + "cloid": "0x00000000000000000000000061000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "202.26", + "sz": "12.38", + "side": "A", + "time": 1761584571954, + "startPosition": "-45810.57", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x61ef53745da07e746369042e5046d50203d90059f8a39d4605b7fec71ca4585f", + "oid": 214110043805, + "crossed": true, + "fee": "0.525835", + "tid": 471587913580509, + "cloid": "0x00000000000000000000000059000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "202.28", + "sz": "9.87", + "side": "A", + "time": 1761584571954, + "startPosition": "-45800.7", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x61ef53745da07e746369042e5046d50203d90059f8a39d4605b7fec71ca4585f", + "oid": 214110043805, + "crossed": true, + "fee": "0.419265", + "tid": 68031841107405, + "cloid": "0x00000000000000000000000059000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "202.28", + "sz": "2.47", + "side": "A", + "time": 1761584571954, + "startPosition": "-45798.23", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x61ef53745da07e746369042e5046d50203d90059f8a39d4605b7fec71ca4585f", + "oid": 214110043805, + "crossed": true, + "fee": "0.104922", + "tid": 405902818229518, + "cloid": "0x00000000000000000000000059000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "202.3", + "sz": "24.72", + "side": "A", + "time": 1761584569250, + "startPosition": "-45773.51", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb28cd5f4717f6248b406042e5046b702043400da0c72811a5655814730733c33", + "oid": 214110016505, + "crossed": true, + "fee": "1.050179", + "tid": 1049007697240243, + "cloid": "0x00000000000000000000000059000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115562.0", + "sz": "0.09933", + "side": "A", + "time": 1761584569250, + "startPosition": "-497.51805", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x81980e51d817d3628311042e5046b702042e0037731af2342560b9a4971bad4d", + "oid": 214110016501, + "crossed": true, + "fee": "2.410542", + "tid": 258899696919558, + "cloid": "0x00000000000000000000000060000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115564.0", + "sz": "0.00013", + "side": "A", + "time": 1761584569250, + "startPosition": "-497.51792", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x81980e51d817d3628311042e5046b702042e0037731af2342560b9a4971bad4d", + "oid": 214110016501, + "crossed": true, + "fee": "0.003154", + "tid": 518091912227529, + "cloid": "0x00000000000000000000000060000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115566.0", + "sz": "0.03469", + "side": "A", + "time": 1761584569250, + "startPosition": "-497.48323", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x81980e51d817d3628311042e5046b702042e0037731af2342560b9a4971bad4d", + "oid": 214110016501, + "crossed": true, + "fee": "0.841886", + "tid": 589343217787598, + "cloid": "0x00000000000000000000000060000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115568.0", + "sz": "0.00013", + "side": "A", + "time": 1761584569250, + "startPosition": "-497.4831", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x81980e51d817d3628311042e5046b702042e0037731af2342560b9a4971bad4d", + "oid": 214110016501, + "crossed": true, + "fee": "0.003155", + "tid": 473476307510782, + "cloid": "0x00000000000000000000000060000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115569.0", + "sz": "0.03754", + "side": "A", + "time": 1761584569250, + "startPosition": "-497.44556", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x81980e51d817d3628311042e5046b702042e0037731af2342560b9a4971bad4d", + "oid": 214110016501, + "crossed": true, + "fee": "0.911076", + "tid": 51251386795794, + "cloid": "0x00000000000000000000000060000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115573.0", + "sz": "0.0013", + "side": "A", + "time": 1761584569250, + "startPosition": "-497.44426", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x81980e51d817d3628311042e5046b702042e0037731af2342560b9a4971bad4d", + "oid": 214110016501, + "crossed": true, + "fee": "0.031551", + "tid": 706835891364327, + "cloid": "0x00000000000000000000000060000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "202.33", + "sz": "4.61", + "side": "A", + "time": 1761584567653, + "startPosition": "-45768.9", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x4489f69993b106ad4603042e5046a302095c007f2eb4257fe852a1ec52b4e097", + "oid": 214109989398, + "crossed": true, + "fee": "0.195875", + "tid": 384504226067294, + "cloid": "0x00000000000000000000000059000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4215.0", + "sz": "2.3657", + "side": "A", + "time": 1761584567349, + "startPosition": "-12070.1989", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc8d1457fc8d548e3ca4b042e50469f020592006563d867b56c99f0d287d922ce", + "oid": 214109981029, + "crossed": true, + "fee": "2.093999", + "tid": 182538961260221, + "cloid": "0x00000000000000000000000061000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4215.3", + "sz": "0.0036", + "side": "A", + "time": 1761584567349, + "startPosition": "-12070.1953", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc8d1457fc8d548e3ca4b042e50469f020592006563d867b56c99f0d287d922ce", + "oid": 214109981029, + "crossed": true, + "fee": "0.003186", + "tid": 976741478020995, + "cloid": "0x00000000000000000000000061000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4215.6", + "sz": "0.0036", + "side": "A", + "time": 1761584567349, + "startPosition": "-12070.1917", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc8d1457fc8d548e3ca4b042e50469f020592006563d867b56c99f0d287d922ce", + "oid": 214109981029, + "crossed": true, + "fee": "0.003186", + "tid": 667195844994799, + "cloid": "0x00000000000000000000000061000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115578.0", + "sz": "0.05824", + "side": "A", + "time": 1761584566856, + "startPosition": "-497.38602", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb9bb0b36cfc77d9cbb34042e504699020777001c6aca9c6e5d83b6898ecb5787", + "oid": 214109971484, + "crossed": true, + "fee": "1.413565", + "tid": 435553180410359, + "cloid": "0x00000000000000000000000060000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115578.0", + "sz": "0.08206", + "side": "A", + "time": 1761584566856, + "startPosition": "-497.30396", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb9bb0b36cfc77d9cbb34042e504699020777001c6aca9c6e5d83b6898ecb5787", + "oid": 214109971484, + "crossed": true, + "fee": "1.991709", + "tid": 653291498366222, + "cloid": "0x00000000000000000000000060000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115578.0", + "sz": "0.03278", + "side": "A", + "time": 1761584566856, + "startPosition": "-497.27118", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb9bb0b36cfc77d9cbb34042e504699020777001c6aca9c6e5d83b6898ecb5787", + "oid": 214109971484, + "crossed": true, + "fee": "0.795615", + "tid": 25207498164015, + "cloid": "0x00000000000000000000000060000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "202.38", + "sz": "19.65", + "side": "A", + "time": 1761584565637, + "startPosition": "-45749.25", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfcf97ac9ec1d6cabfe73042e50468b02054a00af87108b7ea0c2261cab114696", + "oid": 214109947182, + "crossed": true, + "fee": "0.835121", + "tid": 458225257898437, + "cloid": "0x00000000000000000000000059000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "202.38", + "sz": "0.14", + "side": "A", + "time": 1761584565637, + "startPosition": "-45749.11", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfcf97ac9ec1d6cabfe73042e50468b02054a00af87108b7ea0c2261cab114696", + "oid": 214109947182, + "crossed": true, + "fee": "0.005949", + "tid": 806702827294321, + "cloid": "0x00000000000000000000000059000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "202.38", + "sz": "0.08", + "side": "A", + "time": 1761584565637, + "startPosition": "-45749.03", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfcf97ac9ec1d6cabfe73042e50468b02054a00af87108b7ea0c2261cab114696", + "oid": 214109947182, + "crossed": true, + "fee": "0.003399", + "tid": 556310598034581, + "cloid": "0x00000000000000000000000059000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "202.41", + "sz": "0.14", + "side": "A", + "time": 1761584565637, + "startPosition": "-45748.89", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfcf97ac9ec1d6cabfe73042e50468b02054a00af87108b7ea0c2261cab114696", + "oid": 214109947182, + "crossed": true, + "fee": "0.00595", + "tid": 802862911396364, + "cloid": "0x00000000000000000000000059000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "202.42", + "sz": "0.08", + "side": "A", + "time": 1761584565637, + "startPosition": "-45748.81", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfcf97ac9ec1d6cabfe73042e50468b02054a00af87108b7ea0c2261cab114696", + "oid": 214109947182, + "crossed": true, + "fee": "0.0034", + "tid": 932032172731520, + "cloid": "0x00000000000000000000000059000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4215.9", + "sz": "2.3507", + "side": "A", + "time": 1761584565139, + "startPosition": "-12067.841", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfb7c278764c22e98fcf5042e5046850210ab006cffc54d6b9f44d2da23c60883", + "oid": 214109939034, + "crossed": true, + "fee": "2.081166", + "tid": 663932864632436, + "cloid": "0x00000000000000000000000061000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4215.9", + "sz": "0.0036", + "side": "A", + "time": 1761584565139, + "startPosition": "-12067.8374", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfb7c278764c22e98fcf5042e5046850210ab006cffc54d6b9f44d2da23c60883", + "oid": 214109939034, + "crossed": true, + "fee": "0.003187", + "tid": 483720421365407, + "cloid": "0x00000000000000000000000061000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4216.1", + "sz": "0.0144", + "side": "A", + "time": 1761584565139, + "startPosition": "-12067.823", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfb7c278764c22e98fcf5042e5046850210ab006cffc54d6b9f44d2da23c60883", + "oid": 214109939034, + "crossed": true, + "fee": "0.012749", + "tid": 863580371328019, + "cloid": "0x00000000000000000000000061000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "4216.2", + "sz": "0.0036", + "side": "A", + "time": 1761584565139, + "startPosition": "-12067.8194", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfb7c278764c22e98fcf5042e5046850210ab006cffc54d6b9f44d2da23c60883", + "oid": 214109939034, + "crossed": true, + "fee": "0.003187", + "tid": 471590253031362, + "cloid": "0x00000000000000000000000061000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115578.0", + "sz": "0.17308", + "side": "A", + "time": 1761584564790, + "startPosition": "-497.0981", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2c78c1e4427bf46d2df2042e50468102035200c9dd7f133fd0416d37017fce57", + "oid": 214109932912, + "crossed": true, + "fee": "4.20089", + "tid": 1007349478172830, + "cloid": "0x00000000000000000000000060000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "115578.0", + "sz": "0.17309", + "side": "A", + "time": 1761584563487, + "startPosition": "-496.92501", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x310839221e59d02b3281042e50466d0205240007b95ceefdd4d0e474dd5daa15", + "oid": 214109920993, + "crossed": true, + "fee": "4.201133", + "tid": 104339938001254, + "cloid": "0x00000000000000000000000060000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "202.45", + "sz": "3.44", + "side": "A", + "time": 1761584563487, + "startPosition": "-45745.37", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x65ba5eb5b814c63c6734042e50466d020520009b5317e50e09830a087718a027", + "oid": 214109920990, + "crossed": true, + "fee": "0.146249", + "tid": 1087096796624535, + "cloid": "0x00000000000000000000000059000013", + "feeToken": "USDC", + "twapId": null + } + ], + "fills_last_7_days": [ + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131641.0", + "side": "B", + "time": 1761230825900, + "startPosition": "-2074204090.0", + "dir": "Close Short", + "closedPnl": "230.766673", + "hash": "0x8ed358752db0bde9904d042e0bfe67020628005ac8b3dcbb329c03c7ecb497d4", + "oid": 210445028808, + "crossed": true, + "fee": "0.104994", + "tid": 51080248761192, + "cloid": "0x00000000000000000000001644000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131622.0", + "side": "B", + "time": 1761230827452, + "startPosition": "-2074072449.0", + "dir": "Close Short", + "closedPnl": "230.601744", + "hash": "0x4ef3b546d7d791ae506d042e0bfe79020f40002c72dab080f2bc609996db6b98", + "oid": 210445066320, + "crossed": true, + "fee": "0.105006", + "tid": 507612595662187, + "cloid": "0x00000000000000000000001644000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131683.0", + "side": "B", + "time": 1761230828925, + "startPosition": "-2073940827.0", + "dir": "Close Short", + "closedPnl": "230.576933", + "hash": "0xe892b011d223bb24ea0c042e0bfe8c02038e00f76d26d9f68c5b5b649127950f", + "oid": 210445085010, + "crossed": true, + "fee": "0.105083", + "tid": 542767568062385, + "cloid": "0x00000000000000000000001644000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "26328.0", + "side": "B", + "time": 1761230836023, + "startPosition": "-2073809144.0", + "dir": "Close Short", + "closedPnl": "46.100328", + "hash": "0xd62e7e39eb7130d5d7a8042e0bfee502036e001f86744fa779f7298caa750ac0", + "oid": 210445132343, + "crossed": false, + "fee": "0.002801", + "tid": 198074113784189, + "cloid": "0x00000000000000000000001644000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "105258.0", + "side": "B", + "time": 1761230847911, + "startPosition": "-2073782816.0", + "dir": "Close Short", + "closedPnl": "184.306758", + "hash": "0x1ec374149f100d36203d042e0bff820202e700fa3a132c08c28c1f675e13e720", + "oid": 210445303482, + "crossed": true, + "fee": "0.083995", + "tid": 1069174419575556, + "cloid": "0x00000000000000000000001644000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131590.0", + "side": "B", + "time": 1761230849305, + "startPosition": "-2073677558.0", + "dir": "Close Short", + "closedPnl": "230.41409", + "hash": "0xed82aba2248b8264eefc042e0bff9402027c0087bf8ea136914b56f4e38f5c4f", + "oid": 210445315145, + "crossed": true, + "fee": "0.105008", + "tid": 471027918573330, + "cloid": "0x00000000000000000000001644000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131607.0", + "side": "B", + "time": 1761230854493, + "startPosition": "-2073545968.0", + "dir": "Close Short", + "closedPnl": "230.443857", + "hash": "0xbb4b93974c8d3fb4bcc5042e0bffce02025a007ce7805e865f143eea0b81199f", + "oid": 210445344275, + "crossed": true, + "fee": "0.105022", + "tid": 963100584004808, + "cloid": "0x00000000000000000000001644000148", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131588.0", + "side": "B", + "time": 1761230855648, + "startPosition": "-2073414361.0", + "dir": "Close Short", + "closedPnl": "230.410588", + "hash": "0x91bbe8b13f16187c9335042e0bffda02012f0096da19374e35849403fe19f267", + "oid": 210445353314, + "crossed": true, + "fee": "0.105007", + "tid": 617555028566675, + "cloid": "0x00000000000000000000001644000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131614.0", + "side": "B", + "time": 1761230857057, + "startPosition": "-2073282773.0", + "dir": "Close Short", + "closedPnl": "230.456114", + "hash": "0x7b2eca52c176d8807ca8042e0bffea0201f500385c79f7521ef775a5807ab26b", + "oid": 210445372487, + "crossed": true, + "fee": "0.105027", + "tid": 838296653772251, + "cloid": "0x00000000000000000000001644000150", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131544.0", + "side": "B", + "time": 1761230860449, + "startPosition": "-2073151159.0", + "dir": "Close Short", + "closedPnl": "230.596632", + "hash": "0x6fdd7bc9f1bbb57f7157042e0c001002045b00af8cbed45113a6271cb0bf8f6a", + "oid": 210445421812, + "crossed": true, + "fee": "0.104916", + "tid": 818626915001373, + "cloid": "0x00000000000000000000001644000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131718.0", + "side": "B", + "time": 1761230862002, + "startPosition": "-2073019615.0", + "dir": "Close Short", + "closedPnl": "230.901654", + "hash": "0xb0e8361e60eefc63b261042e0c002502039d0003fbe21b3554b0e1711fe2d64e", + "oid": 210445444215, + "crossed": true, + "fee": "0.105055", + "tid": 216198318675387, + "cloid": "0x00000000000000000000001644000153", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131711.0", + "side": "B", + "time": 1761230863425, + "startPosition": "-2072887897.0", + "dir": "Close Short", + "closedPnl": "230.889383", + "hash": "0x736a4ca827be46ec74e4042e0c00370201b8008dc2b165be1732f7fae6b220d7", + "oid": 210445463037, + "crossed": true, + "fee": "0.10505", + "tid": 920028565363166, + "cloid": "0x00000000000000000000001644000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131718.0", + "side": "B", + "time": 1761230864704, + "startPosition": "-2072756186.0", + "dir": "Close Short", + "closedPnl": "230.901654", + "hash": "0xfa2ddc7ee4470702fba7042e0c004802055400647f4a25d59df687d1a34ae0ed", + "oid": 210445481238, + "crossed": true, + "fee": "0.105055", + "tid": 596257619719784, + "cloid": "0x00000000000000000000001644000155", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131718.0", + "side": "B", + "time": 1761230865903, + "startPosition": "-2072624468.0", + "dir": "Close Short", + "closedPnl": "230.901654", + "hash": "0xe9686e0680e5fcc9eae2042e0c005802035e00ec1be91b9b8d3119593fe9d6b4", + "oid": 210445488990, + "crossed": true, + "fee": "0.105055", + "tid": 494902969209395, + "cloid": "0x00000000000000000000001644000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.9", + "sz": "0.0051", + "side": "A", + "time": 1761230867032, + "startPosition": "-2076.388", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210445441313, + "crossed": false, + "fee": "0.000549", + "tid": 154451497963978, + "cloid": "0x00000000000000000000001643000740", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "75716.0", + "side": "B", + "time": 1761230867378, + "startPosition": "-2072492750.0", + "dir": "Close Short", + "closedPnl": "132.730148", + "hash": "0xeac871331e840f6dec42042e0c006e02015a0018b9872e3f8e911c85dd87e958", + "oid": 210445501114, + "crossed": true, + "fee": "0.060389", + "tid": 1020954694635311, + "cloid": "0x00000000000000000000001644000157", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "56002.0", + "side": "B", + "time": 1761230867378, + "startPosition": "-2072417034.0", + "dir": "Close Short", + "closedPnl": "98.171506", + "hash": "0xeac871331e840f6dec42042e0c006e02015a0018b9872e3f8e911c85dd87e958", + "oid": 210445501114, + "crossed": true, + "fee": "0.044666", + "tid": 873987865086440, + "cloid": "0x00000000000000000000001644000157", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131683.0", + "side": "B", + "time": 1761230869791, + "startPosition": "-2072361032.0", + "dir": "Close Short", + "closedPnl": "230.971982", + "hash": "0x891cd167811ac7ff8a96042e0c009402012d004d1c1de6d12ce57cba401ea1ea", + "oid": 210445520068, + "crossed": true, + "fee": "0.105", + "tid": 94895329084095, + "cloid": "0x00000000000000000000001644000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "111515.0", + "side": "B", + "time": 1761230871572, + "startPosition": "-2072229349.0", + "dir": "Close Short", + "closedPnl": "195.59731", + "hash": "0x75d748da9d93d4c07751042e0c00a902010c00c03896f392199ff42d5c97aeab", + "oid": 210445530032, + "crossed": true, + "fee": "0.088918", + "tid": 637505541782743, + "cloid": "0x00000000000000000000001644000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "20172.0", + "side": "B", + "time": 1761230871572, + "startPosition": "-2072117834.0", + "dir": "Close Short", + "closedPnl": "35.381688", + "hash": "0x75d748da9d93d4c07751042e0c00a902010c00c03896f392199ff42d5c97aeab", + "oid": 210445530032, + "crossed": true, + "fee": "0.016084", + "tid": 562821530340170, + "cloid": "0x00000000000000000000001644000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131718.0", + "side": "B", + "time": 1761230872856, + "startPosition": "-2072097662.0", + "dir": "Close Short", + "closedPnl": "231.033372", + "hash": "0x9c147ccbb083ba119d8e042e0c00b602081200b14b86d8e33fdd281e6f8793fc", + "oid": 210445539028, + "crossed": true, + "fee": "0.105027", + "tid": 812203478340737, + "cloid": "0x00000000000000000000001644000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131723.0", + "side": "B", + "time": 1761230874184, + "startPosition": "-2071965944.0", + "dir": "Close Short", + "closedPnl": "231.042142", + "hash": "0x08040566e6e9572d097d042e0c00c3020367004c81ec75ffabccb0b9a5ed3117", + "oid": 210445550495, + "crossed": true, + "fee": "0.105031", + "tid": 518958615491988, + "cloid": "0x00000000000000000000001644000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131752.0", + "side": "B", + "time": 1761230875481, + "startPosition": "-2071834221.0", + "dir": "Close Short", + "closedPnl": "231.093008", + "hash": "0xdc3b143e2930ac92ddb4042e0c00d102010e0023c433cb648003bf90e834867d", + "oid": 210445562382, + "crossed": true, + "fee": "0.105055", + "tid": 1063237695154602, + "cloid": "0x00000000000000000000001644000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131740.0", + "side": "B", + "time": 1761230878438, + "startPosition": "-2071702469.0", + "dir": "Close Short", + "closedPnl": "231.07196", + "hash": "0xb250d1622d73accbb3ca042e0c00f70202b40047c876cb9d56197cb4ec7786b6", + "oid": 210445588108, + "crossed": true, + "fee": "0.105045", + "tid": 738220146351224, + "cloid": "0x00000000000000000000001644000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "109593.0", + "side": "B", + "time": 1761230879745, + "startPosition": "-2071570729.0", + "dir": "Close Short", + "closedPnl": "192.226122", + "hash": "0xfdd52e97114cb561ff4e042e0c010902031f007cac4fd434a19dd9e9d0408f4c", + "oid": 210445597760, + "crossed": true, + "fee": "0.087386", + "tid": 178133040343481, + "cloid": "0x00000000000000000000001644000164", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "22125.0", + "side": "B", + "time": 1761230879745, + "startPosition": "-2071461136.0", + "dir": "Close Short", + "closedPnl": "38.80725", + "hash": "0xfdd52e97114cb561ff4e042e0c010902031f007cac4fd434a19dd9e9d0408f4c", + "oid": 210445597760, + "crossed": true, + "fee": "0.017641", + "tid": 113253328230420, + "cloid": "0x00000000000000000000001644000164", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131718.0", + "side": "B", + "time": 1761230880972, + "startPosition": "-2071439011.0", + "dir": "Close Short", + "closedPnl": "231.033372", + "hash": "0x7302cf6dc2f417a0747c042e0c01190201a200535df7367216cb7ac081f7f18b", + "oid": 210445608051, + "crossed": true, + "fee": "0.105027", + "tid": 648719785563220, + "cloid": "0x00000000000000000000001644000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131730.0", + "side": "B", + "time": 1761230882482, + "startPosition": "-2071307293.0", + "dir": "Close Short", + "closedPnl": "231.05442", + "hash": "0xe9dc0ee3852431f8eb55042e0c012d02075900c9202750ca8da4ba3644280be3", + "oid": 210445622587, + "crossed": true, + "fee": "0.105037", + "tid": 999086732907712, + "cloid": "0x00000000000000000000001644000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "34727.0", + "side": "B", + "time": 1761230883818, + "startPosition": "-2071175563.0", + "dir": "Close Short", + "closedPnl": "60.911158", + "hash": "0x4f8e41430a7bf10a5107042e0c013f02019c0028a57f0fdcf356ec95c97fcaf4", + "oid": 210445644266, + "crossed": true, + "fee": "0.02769", + "tid": 613543515546920, + "cloid": "0x00000000000000000000001644000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "97025.0", + "side": "B", + "time": 1761230883818, + "startPosition": "-2071140836.0", + "dir": "Close Short", + "closedPnl": "170.18185", + "hash": "0x4f8e41430a7bf10a5107042e0c013f02019c0028a57f0fdcf356ec95c97fcaf4", + "oid": 210445644266, + "crossed": true, + "fee": "0.077364", + "tid": 483404756310243, + "cloid": "0x00000000000000000000001644000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131752.0", + "side": "B", + "time": 1761230885030, + "startPosition": "-2071043811.0", + "dir": "Close Short", + "closedPnl": "231.093008", + "hash": "0x21bafe2532e877d82334042e0c014d0201f5000acdeb96aac583a977f1ec51c2", + "oid": 210445652480, + "crossed": true, + "fee": "0.105055", + "tid": 815707720610327, + "cloid": "0x00000000000000000000001644000168", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131705.0", + "side": "B", + "time": 1761230886854, + "startPosition": "-2070912059.0", + "dir": "Close Short", + "closedPnl": "231.01057", + "hash": "0xff218e11e368b5bc009b042e0c016602060000f77e6bd48fa2ea3964a26c8fa7", + "oid": 210445688048, + "crossed": true, + "fee": "0.105017", + "tid": 743557204531120, + "cloid": "0x00000000000000000000001644000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.6", + "sz": "2.5964", + "side": "A", + "time": 1761230890016, + "startPosition": "-2076.3931", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfeaa4ef7189eec810024042e0c019002037900dcb3920b54a272fa49d792c66c", + "oid": 210445719549, + "crossed": false, + "fee": "0.279572", + "tid": 169189932722271, + "cloid": "0x00000000000000000000001643000744", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131683.0", + "side": "B", + "time": 1761230890218, + "startPosition": "-2070780354.0", + "dir": "Close Short", + "closedPnl": "230.708616", + "hash": "0x457195d21f46a13646eb042e0c01930202cd00b7ba49c008e93a4124de4a7b20", + "oid": 210445730865, + "crossed": true, + "fee": "0.105055", + "tid": 1062513665278315, + "cloid": "0x00000000000000000000001644000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131614.0", + "side": "B", + "time": 1761230892584, + "startPosition": "-2070648671.0", + "dir": "Close Short", + "closedPnl": "230.456114", + "hash": "0x19b362ab7605681a1b2d042e0c01b30206790091110886ecbd7c0dfe35094204", + "oid": 210445767274, + "crossed": true, + "fee": "0.105027", + "tid": 995958352323872, + "cloid": "0x00000000000000000000001644000171", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131621.0", + "side": "B", + "time": 1761230896980, + "startPosition": "-2070517057.0", + "dir": "Close Short", + "closedPnl": "230.468371", + "hash": "0x3c3b4da1ef4eeff73db5042e0c01ec02025000878a420ec9e003f8f4ae42c9e1", + "oid": 210445816855, + "crossed": true, + "fee": "0.105033", + "tid": 125963847964384, + "cloid": "0x00000000000000000000001644000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131657.0", + "side": "B", + "time": 1761230898188, + "startPosition": "-2070385436.0", + "dir": "Close Short", + "closedPnl": "230.663064", + "hash": "0x2a60223dcc073bea2bd9042e0c01f90206fb0023670a5abcce28cd908b0b15d4", + "oid": 210445835019, + "crossed": true, + "fee": "0.105034", + "tid": 21258192025619, + "cloid": "0x00000000000000000000001644000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131682.0", + "side": "B", + "time": 1761230899552, + "startPosition": "-2070253779.0", + "dir": "Close Short", + "closedPnl": "230.970228", + "hash": "0x65aa5675581549366724042e0c020a020a4f005af3186808097301c817192321", + "oid": 210445862651, + "crossed": true, + "fee": "0.104999", + "tid": 397096505520568, + "cloid": "0x00000000000000000000001644000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131718.0", + "side": "B", + "time": 1761230900944, + "startPosition": "-2070122097.0", + "dir": "Close Short", + "closedPnl": "230.901654", + "hash": "0x73d5007f84acdfa1754e042e0c021a0206b000651faffe73179dabd243a0b98c", + "oid": 210445881895, + "crossed": true, + "fee": "0.105055", + "tid": 686639589415942, + "cloid": "0x00000000000000000000001644000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131705.0", + "side": "B", + "time": 1761230902988, + "startPosition": "-2069990379.0", + "dir": "Close Short", + "closedPnl": "230.878865", + "hash": "0xc0bed172b6437570c238042e0c023302029d00585146944264877cc575474f5b", + "oid": 210445904823, + "crossed": true, + "fee": "0.105045", + "tid": 910225671411967, + "cloid": "0x00000000000000000000001644000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131648.0", + "side": "B", + "time": 1761230905888, + "startPosition": "-2069858674.0", + "dir": "Close Short", + "closedPnl": "230.647296", + "hash": "0xccd28f2ce1a7c683ce4c042e0c02560202d400127caae555709b3a7fa0aba06e", + "oid": 210445927394, + "crossed": true, + "fee": "0.105027", + "tid": 220479326031881, + "cloid": "0x00000000000000000000001644000177", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131614.0", + "side": "B", + "time": 1761230908507, + "startPosition": "-2069727026.0", + "dir": "Close Short", + "closedPnl": "230.587728", + "hash": "0xb16620f42ac8553db2df042e0c027602029600d9c5cb740f552ecc46e9cc2f28", + "oid": 210445959725, + "crossed": true, + "fee": "0.105", + "tid": 720993599443868, + "cloid": "0x00000000000000000000001644000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131752.0", + "side": "B", + "time": 1761230910139, + "startPosition": "-2069595412.0", + "dir": "Close Short", + "closedPnl": "230.961256", + "hash": "0x67352c90fd44e88b68ae042e0c028d02014b00769848075d0afdd7e3bc48c276", + "oid": 210445979523, + "crossed": true, + "fee": "0.105082", + "tid": 49671721855414, + "cloid": "0x00000000000000000000001644000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131670.0", + "side": "B", + "time": 1761230911812, + "startPosition": "-2069463660.0", + "dir": "Close Short", + "closedPnl": "230.81751", + "hash": "0x17ea6b490f1e775d1964042e0c02a40206bd002eaa11962fbbb3169bce125147", + "oid": 210445996966, + "crossed": true, + "fee": "0.105017", + "tid": 406228197576587, + "cloid": "0x00000000000000000000001644000180", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.5", + "sz": "0.4764", + "side": "A", + "time": 1761230913205, + "startPosition": "-2078.9895", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x89e9cb76483ddb008b63042e0c02b90208f6005be330f9d22db276c90731b4eb", + "oid": 210446034601, + "crossed": true, + "fee": "0.384919", + "tid": 1009326661645705, + "cloid": "0x00000000000000000000001643000750", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.5", + "sz": "0.831", + "side": "A", + "time": 1761230913205, + "startPosition": "-2079.4659", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x89e9cb76483ddb008b63042e0c02b90208f6005be330f9d22db276c90731b4eb", + "oid": 210446034601, + "crossed": true, + "fee": "0.671427", + "tid": 529677473351239, + "cloid": "0x00000000000000000000001643000750", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.5", + "sz": "1.2922", + "side": "A", + "time": 1761230913205, + "startPosition": "-2080.2969", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x89e9cb76483ddb008b63042e0c02b90208f6005be330f9d22db276c90731b4eb", + "oid": 210446034601, + "crossed": true, + "fee": "1.044065", + "tid": 444717259348581, + "cloid": "0x00000000000000000000001643000750", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131579.0", + "side": "B", + "time": 1761230914494, + "startPosition": "-2069331990.0", + "dir": "Close Short", + "closedPnl": "230.394829", + "hash": "0x8d8a82426c1d517f8f04042e0c02c902039400280710705131532d952b112b6a", + "oid": 210446056795, + "crossed": true, + "fee": "0.105", + "tid": 906081471769725, + "cloid": "0x00000000000000000000001644000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131614.0", + "side": "B", + "time": 1761230915779, + "startPosition": "-2069200411.0", + "dir": "Close Short", + "closedPnl": "230.456114", + "hash": "0x11171038c17707611290042e0c02d80202cf001e5c7a2633b4dfbb8b807ae14b", + "oid": 210446069135, + "crossed": true, + "fee": "0.105027", + "tid": 966221951252415, + "cloid": "0x00000000000000000000001644000182", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131623.0", + "side": "B", + "time": 1761230917442, + "startPosition": "-2069068797.0", + "dir": "Close Short", + "closedPnl": "230.471873", + "hash": "0x8f9a4371b9ab89279113042e0c02ea020670005754aea7f93362eec478af6312", + "oid": 210446081673, + "crossed": true, + "fee": "0.105035", + "tid": 364919253617680, + "cloid": "0x00000000000000000000001644000183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131601.0", + "side": "B", + "time": 1761230918825, + "startPosition": "-2068937174.0", + "dir": "Close Short", + "closedPnl": "230.433351", + "hash": "0x582abbe99b21fcf059a4042e0c02f90201bd00cf36251bc2fbf3673c5a25d6da", + "oid": 210446099983, + "crossed": true, + "fee": "0.105017", + "tid": 274386129513999, + "cloid": "0x00000000000000000000001644000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.6", + "sz": "0.0347", + "side": "A", + "time": 1761230919031, + "startPosition": "-2081.5891", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210446084586, + "crossed": false, + "fee": "0.003739", + "tid": 136910689641877, + "cloid": "0x00000000000000000000001643000751", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131648.0", + "side": "B", + "time": 1761230920084, + "startPosition": "-2068805573.0", + "dir": "Close Short", + "closedPnl": "230.515648", + "hash": "0xd07f0e431ff60b29d1f8042e0c03080204070028baf929fb7447b995def9e514", + "oid": 210446110536, + "crossed": true, + "fee": "0.105055", + "tid": 957577133292942, + "cloid": "0x00000000000000000000001644000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131671.0", + "side": "B", + "time": 1761230921619, + "startPosition": "-2068673925.0", + "dir": "Close Short", + "closedPnl": "230.819263", + "hash": "0x5e6679601835ba065fe0042e0c03190204160045b338d8d8022f24b2d73993f1", + "oid": 210446123549, + "crossed": true, + "fee": "0.105018", + "tid": 823711920826984, + "cloid": "0x00000000000000000000001644000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "129112.0", + "side": "B", + "time": 1761230924792, + "startPosition": "-2068542254.0", + "dir": "Close Short", + "closedPnl": "226.59156", + "hash": "0xfd6192cc9d3ea7b3fedb042e0c034302069400b23831c686a12a3e1f5c32819e", + "oid": 210446165927, + "crossed": true, + "fee": "0.102922", + "tid": 938395237378590, + "cloid": "0x00000000000000000000001644000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "2571.0", + "side": "B", + "time": 1761230924792, + "startPosition": "-2068413142.0", + "dir": "Close Short", + "closedPnl": "4.512105", + "hash": "0xfd6192cc9d3ea7b3fedb042e0c034302069400b23831c686a12a3e1f5c32819e", + "oid": 210446165927, + "crossed": true, + "fee": "0.002049", + "tid": 129492635074502, + "cloid": "0x00000000000000000000001644000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131752.0", + "side": "B", + "time": 1761230926305, + "startPosition": "-2068410571.0", + "dir": "Close Short", + "closedPnl": "230.961256", + "hash": "0xf997bc4a84fe3beffb11042e0c03560204d100301ff15ac29d60679d43f215da", + "oid": 210446188122, + "crossed": true, + "fee": "0.105082", + "tid": 906015137659795, + "cloid": "0x00000000000000000000001644000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "131756.0", + "side": "B", + "time": 1761230927513, + "startPosition": "-2068278819.0", + "dir": "Close Short", + "closedPnl": "231.363536", + "hash": "0xf79fb77e24f63175f919042e0c036402060b0063bff950489b6862d0e3fa0b60", + "oid": 210446203980, + "crossed": true, + "fee": "0.105002", + "tid": 133873330335846, + "cloid": "0x00000000000000000000001644000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131752.0", + "side": "B", + "time": 1761230930571, + "startPosition": "-2068147063.0", + "dir": "Close Short", + "closedPnl": "231.22476", + "hash": "0x9ab6c067e4492aa59c30042e0c038a02018a004d7f4c49773e7f6bbaa34d0490", + "oid": 210446239185, + "crossed": true, + "fee": "0.105027", + "tid": 382872954717150, + "cloid": "0x00000000000000000000001644000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131787.0", + "side": "B", + "time": 1761230934398, + "startPosition": "-2068015311.0", + "dir": "Close Short", + "closedPnl": "231.022611", + "hash": "0x9ef1744773d6ed59a06b042e0c03b10202e8002d0eda0c2b42ba1f9a32dac744", + "oid": 210446271950, + "crossed": true, + "fee": "0.10511", + "tid": 522327100168007, + "cloid": "0x00000000000000000000001644000192", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131683.0", + "side": "B", + "time": 1761230935558, + "startPosition": "-2067883524.0", + "dir": "Close Short", + "closedPnl": "230.840299", + "hash": "0x359f7648fa33c5553719042e0c03bf020178002e9536e427d968219bb9379f3f", + "oid": 210446279920, + "crossed": true, + "fee": "0.105027", + "tid": 816339074407217, + "cloid": "0x00000000000000000000001644000193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131695.0", + "side": "B", + "time": 1761230937326, + "startPosition": "-2067751841.0", + "dir": "Close Short", + "closedPnl": "230.72964", + "hash": "0x89456a61d0a143848abf042e0c03d502018900476ba462562d0e15b48fa51d6f", + "oid": 210446298920, + "crossed": true, + "fee": "0.105064", + "tid": 810572413851709, + "cloid": "0x00000000000000000000001644000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "115910.0", + "side": "B", + "time": 1761230938475, + "startPosition": "-2067620146.0", + "dir": "Close Short", + "closedPnl": "202.95841", + "hash": "0xaf6b45f5e7d14097b0e5042e0c03e30203ae00db82d45f695333f148a6d51a82", + "oid": 210446312828, + "crossed": true, + "fee": "0.092496", + "tid": 620886029092698, + "cloid": "0x00000000000000000000001644000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "15754.0", + "side": "B", + "time": 1761230938475, + "startPosition": "-2067504236.0", + "dir": "Close Short", + "closedPnl": "27.585254", + "hash": "0xaf6b45f5e7d14097b0e5042e0c03e30203ae00db82d45f695333f148a6d51a82", + "oid": 210446312828, + "crossed": true, + "fee": "0.012571", + "tid": 396646283686185, + "cloid": "0x00000000000000000000001644000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131648.0", + "side": "B", + "time": 1761230939764, + "startPosition": "-2067488482.0", + "dir": "Close Short", + "closedPnl": "230.647296", + "hash": "0xbf70e84a299a9a5bc0ea042e0c03f5020250002fc49db92d6339939ce89e7446", + "oid": 210446320903, + "crossed": true, + "fee": "0.105027", + "tid": 137598329192542, + "cloid": "0x00000000000000000000001644000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131668.0", + "side": "B", + "time": 1761230940939, + "startPosition": "-2067356834.0", + "dir": "Close Short", + "closedPnl": "230.814004", + "hash": "0x5f749e77c5e0040660ee042e0c040502030d005d60e322d8033d49ca84e3ddf1", + "oid": 210446332228, + "crossed": true, + "fee": "0.105015", + "tid": 492043108542786, + "cloid": "0x00000000000000000000001644000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.2", + "sz": "2.5639", + "side": "A", + "time": 1761230946494, + "startPosition": "-2081.6238", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8a270352efd07f3d8ba0042e0c04490203b000388ad39e0f2defaea5aed45928", + "oid": 210446432208, + "crossed": true, + "fee": "2.070867", + "tid": 272086363040659, + "cloid": "0x00000000000000000000001643000755", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131787.0", + "side": "B", + "time": 1761230950165, + "startPosition": "-2067225166.0", + "dir": "Close Short", + "closedPnl": "231.154398", + "hash": "0xf4bfcfc83870cc65f639042e0c047702056400add373eb3898887b1af774a650", + "oid": 210446490742, + "crossed": true, + "fee": "0.105083", + "tid": 1047961969106558, + "cloid": "0x00000000000000000000001644000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131766.0", + "side": "B", + "time": 1761230954035, + "startPosition": "-2067093379.0", + "dir": "Close Short", + "closedPnl": "231.117564", + "hash": "0x6a5a97f9b4bb9e1a6bd4042e0c04ab0201c400df4fbebcec0e23434c73bf7805", + "oid": 210446528972, + "crossed": true, + "fee": "0.105066", + "tid": 190775990051385, + "cloid": "0x00000000000000000000001644000203", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "15776.0", + "side": "B", + "time": 1761230956600, + "startPosition": "-2066961613.0", + "dir": "Close Short", + "closedPnl": "27.671104", + "hash": "0x15ef23976d9010931768042e0c04c60206bb007d08932f65b9b7ceea2c93ea7d", + "oid": 210446553990, + "crossed": true, + "fee": "0.012579", + "tid": 809983149680973, + "cloid": "0x00000000000000000000001644000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "115976.0", + "side": "B", + "time": 1761230956600, + "startPosition": "-2066945837.0", + "dir": "Close Short", + "closedPnl": "203.421904", + "hash": "0x15ef23976d9010931768042e0c04c60206bb007d08932f65b9b7ceea2c93ea7d", + "oid": 210446553990, + "crossed": true, + "fee": "0.092475", + "tid": 535123051442197, + "cloid": "0x00000000000000000000001644000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131822.0", + "side": "B", + "time": 1761230972096, + "startPosition": "-2066829861.0", + "dir": "Close Short", + "closedPnl": "232.138542", + "hash": "0xa6359b5a5f4999dda7af042e0c05810202a7003ffa4cb8af49fe46ad1e4d73c8", + "oid": 210446764543, + "crossed": true, + "fee": "0.104917", + "tid": 542650396301149, + "cloid": "0x00000000000000000000001644000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131926.0", + "side": "B", + "time": 1761230974478, + "startPosition": "-2066698039.0", + "dir": "Close Short", + "closedPnl": "232.453612", + "hash": "0x7e1447335db27d9f7f8e042e0c059b0202240018f8b59c7121dcf2861cb6578a", + "oid": 210446795219, + "crossed": true, + "fee": "0.104972", + "tid": 165818323687911, + "cloid": "0x00000000000000000000001644000210", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.2", + "sz": "0.6613", + "side": "A", + "time": 1761230991603, + "startPosition": "-2084.1877", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd647ad117d7c6474d7c1042e0c067702043400f7187f83467a1058643c703e5f", + "oid": 210446975839, + "crossed": true, + "fee": "0.534133", + "tid": 365803553616980, + "cloid": "0x00000000000000000000001643000765", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.2", + "sz": "0.755", + "side": "A", + "time": 1761230991603, + "startPosition": "-2084.849", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd647ad117d7c6474d7c1042e0c067702043400f7187f83467a1058643c703e5f", + "oid": 210446975839, + "crossed": true, + "fee": "0.609815", + "tid": 362544429251517, + "cloid": "0x00000000000000000000001643000765", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.2", + "sz": "1.1834", + "side": "A", + "time": 1761230991603, + "startPosition": "-2085.604", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd647ad117d7c6474d7c1042e0c067702043400f7187f83467a1058643c703e5f", + "oid": 210446975839, + "crossed": true, + "fee": "0.955834", + "tid": 1086249926780182, + "cloid": "0x00000000000000000000001643000765", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131908.0", + "side": "B", + "time": 1761231007053, + "startPosition": "-2066566113.0", + "dir": "Close Short", + "closedPnl": "232.289988", + "hash": "0x10d808d7605bcfee1251042e0c072b020e0e00bcfb5eeec0b4a0b42a1f5fa9d8", + "oid": 210447185188, + "crossed": true, + "fee": "0.104985", + "tid": 545479163214959, + "cloid": "0x00000000000000000000001644000219", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3842.6", + "sz": "2.6", + "side": "A", + "time": 1761231008546, + "startPosition": "-2086.7874", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x39115cf4ee5ffda83a8b042e0c0740020cc500da89531c7adcda0847ad53d792", + "oid": 210447185189, + "crossed": false, + "fee": "0.279741", + "tid": 990309147701805, + "cloid": "0x00000000000000000000001643000768", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "73305.0", + "side": "B", + "time": 1761231011395, + "startPosition": "-2066434205.0", + "dir": "Close Short", + "closedPnl": "129.236715", + "hash": "0x5a1a7f04f83baa2a5b94042e0c0768020a4b00ea933ec8fcfde32a57b73f8414", + "oid": 210447267531, + "crossed": true, + "fee": "0.058312", + "tid": 221617999466486, + "cloid": "0x00000000000000000000001644000220", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "58625.0", + "side": "B", + "time": 1761231011395, + "startPosition": "-2066360900.0", + "dir": "Close Short", + "closedPnl": "103.29725", + "hash": "0x5a1a7f04f83baa2a5b94042e0c0768020a4b00ea933ec8fcfde32a57b73f8414", + "oid": 210447267531, + "crossed": true, + "fee": "0.046647", + "tid": 653700102047758, + "cloid": "0x00000000000000000000001644000220", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3842.1", + "sz": "0.5865", + "side": "A", + "time": 1761231013959, + "startPosition": "-2089.3874", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb8aab11f98316e32ba24042e0c07850208fa000533348d045c735c725735481d", + "oid": 210447311891, + "crossed": true, + "fee": "0.473212", + "tid": 631698281440634, + "cloid": "0x00000000000000000000001643000770", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3842.1", + "sz": "0.3859", + "side": "A", + "time": 1761231013959, + "startPosition": "-2089.9739", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb8aab11f98316e32ba24042e0c07850208fa000533348d045c735c725735481d", + "oid": 210447311891, + "crossed": true, + "fee": "0.311359", + "tid": 136603735443028, + "cloid": "0x00000000000000000000001643000770", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3842.1", + "sz": "0.6152", + "side": "A", + "time": 1761231013959, + "startPosition": "-2090.3598", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb8aab11f98316e32ba24042e0c07850208fa000533348d045c735c725735481d", + "oid": 210447311891, + "crossed": true, + "fee": "0.496368", + "tid": 823302841023108, + "cloid": "0x00000000000000000000001643000770", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3842.1", + "sz": "0.3859", + "side": "A", + "time": 1761231013959, + "startPosition": "-2090.975", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb8aab11f98316e32ba24042e0c07850208fa000533348d045c735c725735481d", + "oid": 210447311891, + "crossed": true, + "fee": "0.311359", + "tid": 268300579220622, + "cloid": "0x00000000000000000000001643000770", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3842.1", + "sz": "0.3859", + "side": "A", + "time": 1761231013959, + "startPosition": "-2091.3609", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb8aab11f98316e32ba24042e0c07850208fa000533348d045c735c725735481d", + "oid": 210447311891, + "crossed": true, + "fee": "0.311359", + "tid": 192531062986536, + "cloid": "0x00000000000000000000001643000770", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3842.1", + "sz": "0.2424", + "side": "A", + "time": 1761231013959, + "startPosition": "-2091.7468", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb8aab11f98316e32ba24042e0c07850208fa000533348d045c735c725735481d", + "oid": 210447311891, + "crossed": true, + "fee": "0.195578", + "tid": 111400022488651, + "cloid": "0x00000000000000000000001643000770", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131996.0", + "side": "B", + "time": 1761231013959, + "startPosition": "-2066302275.0", + "dir": "Close Short", + "closedPnl": "232.576952", + "hash": "0xfe5c7ea27de95d60ffd6042e0c078502090d008818ec7c33a22529f53ced374b", + "oid": 210447311909, + "crossed": true, + "fee": "0.105027", + "tid": 653541780521624, + "cloid": "0x00000000000000000000001644000221", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "132019.0", + "side": "B", + "time": 1761231015457, + "startPosition": "-2066170279.0", + "dir": "Close Short", + "closedPnl": "232.617478", + "hash": "0xcacaf5c687e7f4c8cc44042e0c079a02058400ac22eb139a6e93a11946ebceb3", + "oid": 210447342267, + "crossed": true, + "fee": "0.105046", + "tid": 1003135143700352, + "cloid": "0x00000000000000000000001644000222", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "85198.0", + "side": "B", + "time": 1761231016894, + "startPosition": "-2066038260.0", + "dir": "Close Short", + "closedPnl": "150.204074", + "hash": "0x9ce03881e52921319e59042e0c07a90203ed0067802c400340a8e3d4a42cfb1c", + "oid": 210447351397, + "crossed": true, + "fee": "0.067773", + "tid": 202912890934784, + "cloid": "0x00000000000000000000001644000223", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "46833.0", + "side": "B", + "time": 1761231016894, + "startPosition": "-2065953062.0", + "dir": "Close Short", + "closedPnl": "82.566579", + "hash": "0x9ce03881e52921319e59042e0c07a90203ed0067802c400340a8e3d4a42cfb1c", + "oid": 210447351397, + "crossed": true, + "fee": "0.037254", + "tid": 709570794175582, + "cloid": "0x00000000000000000000001644000223", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3842.8", + "sz": "0.0144", + "side": "A", + "time": 1761231018311, + "startPosition": "-2091.9892", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0cb4c7c8abb46bf00e2e042e0c07b80204b300ae46b78ac2b07d731b6ab845da", + "oid": 210447367415, + "crossed": true, + "fee": "0.01162", + "tid": 1043014986991019, + "cloid": "0x00000000000000000000001643000771", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132046.0", + "side": "B", + "time": 1761231018501, + "startPosition": "-2065906229.0", + "dir": "Close Short", + "closedPnl": "233.06119", + "hash": "0x32425f80de2f9e6433bc042e0c07ba0203e800667922bd36d60b0ad39d23784e", + "oid": 210447370627, + "crossed": true, + "fee": "0.104984", + "tid": 982250909080684, + "cloid": "0x00000000000000000000001644000224", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132066.0", + "side": "B", + "time": 1761231019920, + "startPosition": "-2065774183.0", + "dir": "Close Short", + "closedPnl": "233.09649", + "hash": "0xf73d00f87fa97f52f8b6042e0c07cb0207ab00de1aac9e259b05ac4b3ead593d", + "oid": 210447401315, + "crossed": true, + "fee": "0.105", + "tid": 30729207868238, + "cloid": "0x00000000000000000000001644000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132080.0", + "side": "B", + "time": 1761231021302, + "startPosition": "-2065642117.0", + "dir": "Close Short", + "closedPnl": "233.1212", + "hash": "0x6c0c75a065bc93af6d86042e0c07df020450008600bfb2810fd520f324b06d9a", + "oid": 210447419690, + "crossed": true, + "fee": "0.105011", + "tid": 324820427556457, + "cloid": "0x00000000000000000000001644000226", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132081.0", + "side": "B", + "time": 1761231023000, + "startPosition": "-2065510037.0", + "dir": "Close Short", + "closedPnl": "232.990884", + "hash": "0x0c30ee52f9922bf50daa042e0c07f5020350003894954ac7aff999a5b89605df", + "oid": 210447437080, + "crossed": true, + "fee": "0.10504", + "tid": 517087691793274, + "cloid": "0x00000000000000000000001644000227", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132158.0", + "side": "B", + "time": 1761231029446, + "startPosition": "-2065377956.0", + "dir": "Close Short", + "closedPnl": "233.25887", + "hash": "0xbf3991d93d5627afc0b3042e0c084402032100bed859468163023d2bfc5a019a", + "oid": 210447528927, + "crossed": true, + "fee": "0.105073", + "tid": 79087431065575, + "cloid": "0x00000000000000000000001644000230", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132004.0", + "side": "B", + "time": 1761231030599, + "startPosition": "-2065245798.0", + "dir": "Close Short", + "closedPnl": "232.98706", + "hash": "0xa4805569c0c5f01ea5fa042e0c085502075b004f5bc90ef0484900bc7fc9ca09", + "oid": 210447543700, + "crossed": true, + "fee": "0.104951", + "tid": 293543690416916, + "cloid": "0x00000000000000000000001644000231", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "96.0", + "side": "B", + "time": 1761231030599, + "startPosition": "-2065113794.0", + "dir": "Close Short", + "closedPnl": "0.16944", + "hash": "0xa4805569c0c5f01ea5fa042e0c085502075b004f5bc90ef0484900bc7fc9ca09", + "oid": 210447543700, + "crossed": true, + "fee": "0.000076", + "tid": 27238715610888, + "cloid": "0x00000000000000000000001644000231", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3843.0", + "sz": "1.4437", + "side": "A", + "time": 1761231043354, + "startPosition": "-2092.0036", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf70ad273148d7b6cf884042e0c08fc0204740058af809a3f9ad37dc5d3815557", + "oid": 210447710660, + "crossed": true, + "fee": "1.165109", + "tid": 128564926674610, + "cloid": "0x00000000000000000000001643000776", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3843.0", + "sz": "1.1445", + "side": "A", + "time": 1761231043354, + "startPosition": "-2093.4473", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf70ad273148d7b6cf884042e0c08fc0204740058af809a3f9ad37dc5d3815557", + "oid": 210447710660, + "crossed": true, + "fee": "0.923645", + "tid": 235417523193988, + "cloid": "0x00000000000000000000001643000776", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3843.0", + "sz": "0.1535", + "side": "A", + "time": 1761231054042, + "startPosition": "-2094.5918", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf6360d6b92407c08f7af042e0c098a02016a00512d439adb99feb8be514455f3", + "oid": 210447797351, + "crossed": false, + "fee": "0.016517", + "tid": 788490182288399, + "cloid": "0x00000000000000000000001643000778", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "132117.0", + "side": "B", + "time": 1761231064379, + "startPosition": "-2065113698.0", + "dir": "Close Short", + "closedPnl": "234.375558", + "hash": "0x3ed57f0c37fbf71e404f042e0c0a090204c200f1d2ff15f0e29e2a5ef6ffd108", + "oid": 210448011614, + "crossed": true, + "fee": "0.104791", + "tid": 1003148858018278, + "cloid": "0x00000000000000000000001644000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.2", + "sz": "2.4486", + "side": "A", + "time": 1761231070879, + "startPosition": "-2094.7453", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xea8b52fea9a24f48ec05042e0c0a5a02044000e444a56e1a8e53fe5168a62933", + "oid": 210448126487, + "crossed": true, + "fee": "1.974139", + "tid": 345664881343816, + "cloid": "0x00000000000000000000001643000783", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3840.4", + "sz": "2.6045", + "side": "A", + "time": 1761231075229, + "startPosition": "-2097.1939", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x391625012a498c563a8f042e0c0a9502067300e6c54cab28dcded053e94d6640", + "oid": 210448180463, + "crossed": true, + "fee": "2.100487", + "tid": 262101267475027, + "cloid": "0x00000000000000000000001643000785", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3840.8", + "sz": "0.6838", + "side": "A", + "time": 1761231083764, + "startPosition": "-2099.7984", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1d7790f0750f245e1ef1042e0c0b010204e300d610024330c1403c433402fe48", + "oid": 210448298037, + "crossed": true, + "fee": "0.551531", + "tid": 1053052587073162, + "cloid": "0x00000000000000000000001643000787", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3840.8", + "sz": "1.4549", + "side": "A", + "time": 1761231083764, + "startPosition": "-2100.4822", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1d7790f0750f245e1ef1042e0c0b010204e300d610024330c1403c433402fe48", + "oid": 210448298037, + "crossed": true, + "fee": "1.173475", + "tid": 847719550268639, + "cloid": "0x00000000000000000000001643000787", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3840.8", + "sz": "0.465", + "side": "A", + "time": 1761231083764, + "startPosition": "-2101.9371", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1d7790f0750f245e1ef1042e0c0b010204e300d610024330c1403c433402fe48", + "oid": 210448298037, + "crossed": true, + "fee": "0.375054", + "tid": 487333181548239, + "cloid": "0x00000000000000000000001643000787", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3841.8", + "sz": "2.6032", + "side": "A", + "time": 1761231085677, + "startPosition": "-2102.4021", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8110da34d3533833828a042e0c0b1b02050e001a6e56570524d985879257121e", + "oid": 210448330298, + "crossed": false, + "fee": "0.280027", + "tid": 845201596777871, + "cloid": "0x00000000000000000000001643000788", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3843.1", + "sz": "0.005", + "side": "A", + "time": 1761231107050, + "startPosition": "-2105.0053", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210448597232, + "crossed": false, + "fee": "0.000538", + "tid": 901378911568914, + "cloid": "0x00000000000000000000001643000792", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3843.1", + "sz": "0.0309", + "side": "A", + "time": 1761231107413, + "startPosition": "-2105.0103", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x74f4937af2758f96766e042e0c0c3602050900608d78ae6818bd3ecdb1796981", + "oid": 210448597232, + "crossed": false, + "fee": "0.003325", + "tid": 191436547403346, + "cloid": "0x00000000000000000000001643000792", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132484.0", + "side": "B", + "time": 1761231129385, + "startPosition": "-2064981581.0", + "dir": "Close Short", + "closedPnl": "235.954004", + "hash": "0x77ec8a3ee4d54c5c7966042e0c0d4c02053100247fd86b2e1bb53591a3d92647", + "oid": 210448983367, + "crossed": true, + "fee": "0.104887", + "tid": 195124653519432, + "cloid": "0x00000000000000000000001644000263", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132661.0", + "side": "B", + "time": 1761231130931, + "startPosition": "-2064849097.0", + "dir": "Close Short", + "closedPnl": "236.269241", + "hash": "0xa84e39ac2e449565a9c7042e0c0d61020db70091c947b4374c16e4feed486f50", + "oid": 210449015378, + "crossed": true, + "fee": "0.105027", + "tid": 595727604829044, + "cloid": "0x00000000000000000000001644000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132674.0", + "side": "B", + "time": 1761231132411, + "startPosition": "-2064716436.0", + "dir": "Close Short", + "closedPnl": "236.292394", + "hash": "0x4996a11320d75dae4b10042e0c0d72020bb300f8bbda7c80ed5f4c65dfdb3798", + "oid": 210449035352, + "crossed": true, + "fee": "0.105038", + "tid": 54885298359662, + "cloid": "0x00000000000000000000001644000265", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132675.0", + "side": "B", + "time": 1761231134251, + "startPosition": "-2064583762.0", + "dir": "Close Short", + "closedPnl": "236.294175", + "hash": "0xe0ccb85cc7521435e246042e0c0d890209a8004262553307849563af8655ee20", + "oid": 210449069160, + "crossed": true, + "fee": "0.105038", + "tid": 1095467597587324, + "cloid": "0x00000000000000000000001644000266", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3840.2", + "sz": "0.0412", + "side": "A", + "time": 1761231134384, + "startPosition": "-2105.0412", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x5baf9a2709f975f25d29042e0c0d8b0209d8000ca4fc94c4ff784579c8fd4fdc", + "oid": 210449072445, + "crossed": true, + "fee": "0.033225", + "tid": 313460471865345, + "cloid": "0x00000000000000000000001643000798", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3840.2", + "sz": "2.5254", + "side": "A", + "time": 1761231134384, + "startPosition": "-2105.0824", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x5baf9a2709f975f25d29042e0c0d8b0209d8000ca4fc94c4ff784579c8fd4fdc", + "oid": 210449072445, + "crossed": true, + "fee": "2.036588", + "tid": 577470917976762, + "cloid": "0x00000000000000000000001643000798", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132556.0", + "side": "B", + "time": 1761231147144, + "startPosition": "-2064451087.0", + "dir": "Close Short", + "closedPnl": "236.082236", + "hash": "0x882688c50063c84b89a0042e0c0e3202035400aa9b66e71d2bef3417bf67a236", + "oid": 210449249053, + "crossed": true, + "fee": "0.104944", + "tid": 60604513451475, + "cloid": "0x00000000000000000000001644000271", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132696.0", + "side": "B", + "time": 1761231148734, + "startPosition": "-2064318531.0", + "dir": "Close Short", + "closedPnl": "236.331576", + "hash": "0x57545ea8b4f15bbd58ce042e0c0e43020270008e4ff47a8ffb1d09fb73f535a7", + "oid": 210449265373, + "crossed": true, + "fee": "0.105055", + "tid": 729958183817562, + "cloid": "0x00000000000000000000001644000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "115737.0", + "side": "B", + "time": 1761231149949, + "startPosition": "-2064185835.0", + "dir": "Close Short", + "closedPnl": "206.359071", + "hash": "0xdecd60a770809fbae047042e0c0e50020290008d0b83be8c82960bfa2f8479a5", + "oid": 210449285999, + "crossed": true, + "fee": "0.09158", + "tid": 247098810712968, + "cloid": "0x00000000000000000000001644000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "16963.0", + "side": "B", + "time": 1761231149949, + "startPosition": "-2064070098.0", + "dir": "Close Short", + "closedPnl": "30.228066", + "hash": "0xdecd60a770809fbae047042e0c0e50020290008d0b83be8c82960bfa2f8479a5", + "oid": 210449285999, + "crossed": true, + "fee": "0.013426", + "tid": 779887548220251, + "cloid": "0x00000000000000000000001644000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132732.0", + "side": "B", + "time": 1761231151356, + "startPosition": "-2064053135.0", + "dir": "Close Short", + "closedPnl": "236.661156", + "hash": "0x9242637c9b3b810b93bc042e0c0e630201d40062363e9fdd360b0ecf5a3f5af6", + "oid": 210449301621, + "crossed": true, + "fee": "0.105028", + "tid": 827225945449582, + "cloid": "0x00000000000000000000001644000274", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "132696.0", + "side": "B", + "time": 1761231152733, + "startPosition": "-2063920403.0", + "dir": "Close Short", + "closedPnl": "236.464272", + "hash": "0x526303e1e439391e53dc042e0c0e7502050a00c77f3c57f0f62baf34a33d1308", + "oid": 210449317819, + "crossed": true, + "fee": "0.105027", + "tid": 632985196855181, + "cloid": "0x00000000000000000000001644000275", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3840.5", + "sz": "2.5", + "side": "A", + "time": 1761231153784, + "startPosition": "-2107.6078", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xdf640bbe214b4965e0dd042e0c0e810206c700a3bc4e6837832cb710e04f2350", + "oid": 210449332856, + "crossed": true, + "fee": "2.016262", + "tid": 618112047718767, + "cloid": "0x00000000000000000000001643000801", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3840.5", + "sz": "0.1035", + "side": "A", + "time": 1761231153784, + "startPosition": "-2110.1078", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xdf640bbe214b4965e0dd042e0c0e810206c700a3bc4e6837832cb710e04f2350", + "oid": 210449332856, + "crossed": true, + "fee": "0.083473", + "tid": 245079197436720, + "cloid": "0x00000000000000000000001643000801", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132763.0", + "side": "B", + "time": 1761231154253, + "startPosition": "-2063787707.0", + "dir": "Close Short", + "closedPnl": "236.716429", + "hash": "0x0028148b5eb8235f01a1042e0c0e870203180070f9bb4231a3f0bfde1dbbfd49", + "oid": 210449337190, + "crossed": true, + "fee": "0.105052", + "tid": 155808476397846, + "cloid": "0x00000000000000000000001644000276", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132695.0", + "side": "B", + "time": 1761231155628, + "startPosition": "-2063654944.0", + "dir": "Close Short", + "closedPnl": "236.595185", + "hash": "0xc0c7c56e3a55ca15c241042e0c0e9b02037e0053d558e8e7649070c0f959a400", + "oid": 210449353169, + "crossed": true, + "fee": "0.104998", + "tid": 536847032017420, + "cloid": "0x00000000000000000000001644000277", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "37.0", + "side": "B", + "time": 1761231155628, + "startPosition": "-2063522249.0", + "dir": "Close Short", + "closedPnl": "0.065971", + "hash": "0xc0c7c56e3a55ca15c241042e0c0e9b02037e0053d558e8e7649070c0f959a400", + "oid": 210449353169, + "crossed": true, + "fee": "0.000029", + "tid": 555693178083822, + "cloid": "0x00000000000000000000001644000277", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132767.0", + "side": "B", + "time": 1761231156971, + "startPosition": "-2063522212.0", + "dir": "Close Short", + "closedPnl": "236.723561", + "hash": "0x4fb437bbf0176e17512d042e0c0eac02052500a18b1a8ce9f37ce30eaf1b4801", + "oid": 210449373306, + "crossed": true, + "fee": "0.105055", + "tid": 521188154985179, + "cloid": "0x00000000000000000000001644000278", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132767.0", + "side": "B", + "time": 1761231158113, + "startPosition": "-2063389445.0", + "dir": "Close Short", + "closedPnl": "236.723561", + "hash": "0xdfad1e97395ae7b6e126042e0c0eb90203d8007cd45e06888375c9e9f85ec1a1", + "oid": 210449386881, + "crossed": true, + "fee": "0.105055", + "tid": 337174361571532, + "cloid": "0x00000000000000000000001644000279", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "78990.0", + "side": "B", + "time": 1761231159645, + "startPosition": "-2063256678.0", + "dir": "Close Short", + "closedPnl": "140.83917", + "hash": "0x3fe757e3325b546a4161042e0c0ecf0202fa00c8cd5e733ce3b00335f15f2e54", + "oid": 210449406692, + "crossed": true, + "fee": "0.062503", + "tid": 1105620683969292, + "cloid": "0x00000000000000000000001644000280", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "53742.0", + "side": "B", + "time": 1761231159645, + "startPosition": "-2063177688.0", + "dir": "Close Short", + "closedPnl": "95.821986", + "hash": "0x3fe757e3325b546a4161042e0c0ecf0202fa00c8cd5e733ce3b00335f15f2e54", + "oid": 210449406692, + "crossed": true, + "fee": "0.042524", + "tid": 395869824624900, + "cloid": "0x00000000000000000000001644000280", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "77410.0", + "side": "B", + "time": 1761231161058, + "startPosition": "-2063123946.0", + "dir": "Close Short", + "closedPnl": "138.02203", + "hash": "0xbabd9f528daa3f66bc37042e0c0ee402044e003828ad5e385e864aa54cae1951", + "oid": 210449429145, + "crossed": true, + "fee": "0.061252", + "tid": 805600851441613, + "cloid": "0x00000000000000000000001644000281", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "55345.0", + "side": "B", + "time": 1761231161058, + "startPosition": "-2063046536.0", + "dir": "Close Short", + "closedPnl": "98.680135", + "hash": "0xbabd9f528daa3f66bc37042e0c0ee402044e003828ad5e385e864aa54cae1951", + "oid": 210449429145, + "crossed": true, + "fee": "0.043793", + "tid": 997599677348644, + "cloid": "0x00000000000000000000001644000281", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "80502.0", + "side": "B", + "time": 1761231162496, + "startPosition": "-2062991191.0", + "dir": "Close Short", + "closedPnl": "143.615568", + "hash": "0xc8b9117b84f43cb9ca32042e0c0ef60202b100611ff75b8b6c81bcce43f816a4", + "oid": 210449450318, + "crossed": true, + "fee": "0.063682", + "tid": 335796353674523, + "cloid": "0x00000000000000000000001644000282", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "52269.0", + "side": "B", + "time": 1761231162496, + "startPosition": "-2062910689.0", + "dir": "Close Short", + "closedPnl": "93.247896", + "hash": "0xc8b9117b84f43cb9ca32042e0c0ef60202b100611ff75b8b6c81bcce43f816a4", + "oid": 210449450318, + "crossed": true, + "fee": "0.041348", + "tid": 1119691230100500, + "cloid": "0x00000000000000000000001644000282", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132781.0", + "side": "B", + "time": 1761231164305, + "startPosition": "-2062858420.0", + "dir": "Close Short", + "closedPnl": "236.881304", + "hash": "0xbbd1a1af4a1b561fbd4b042e0c0f0c0201e50094e51e74f15f9a4d02091f300a", + "oid": 210449475688, + "crossed": true, + "fee": "0.105039", + "tid": 900282317297492, + "cloid": "0x00000000000000000000001644000283", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132807.0", + "side": "B", + "time": 1761231165601, + "startPosition": "-2062725639.0", + "dir": "Close Short", + "closedPnl": "236.927688", + "hash": "0x911dc4813f101a969297042e0c0f1d0207a00066da13396834e66fd3fe13f481", + "oid": 210449499481, + "crossed": true, + "fee": "0.105059", + "tid": 876010232762095, + "cloid": "0x00000000000000000000001644000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132837.0", + "side": "B", + "time": 1761231169333, + "startPosition": "-2062592832.0", + "dir": "Close Short", + "closedPnl": "237.114045", + "hash": "0x8615685f34753544878f042e0c0f4b0202000044cf78541629de13b1f3790f2f", + "oid": 210449550547, + "crossed": true, + "fee": "0.105055", + "tid": 1073011362011774, + "cloid": "0x00000000000000000000001644000286", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132827.0", + "side": "B", + "time": 1761231172751, + "startPosition": "-2062459995.0", + "dir": "Close Short", + "closedPnl": "237.096195", + "hash": "0x22ce36be7bbeafa82447042e0c0f7002011b00a416b1ce7ac696e2113ab28992", + "oid": 210449597042, + "crossed": true, + "fee": "0.105047", + "tid": 684836876207499, + "cloid": "0x00000000000000000000001644000288", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132837.0", + "side": "B", + "time": 1761231176812, + "startPosition": "-2062327168.0", + "dir": "Close Short", + "closedPnl": "237.114045", + "hash": "0xdaa3bb2c6f64a667dc1d042e0c0fa102065900120a67c5397e6c667f2e688052", + "oid": 210449643609, + "crossed": true, + "fee": "0.105055", + "tid": 20796821031317, + "cloid": "0x00000000000000000000001644000290", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "132837.0", + "side": "B", + "time": 1761231184001, + "startPosition": "-2062194331.0", + "dir": "Close Short", + "closedPnl": "237.911067", + "hash": "0x0d2d911d01218f0a0ea7042e0c100602071c00029c24addcb0f63c6fc02568f4", + "oid": 210449746701, + "crossed": false, + "fee": "0.013985", + "tid": 429124577341947, + "cloid": "0x00000000000000000000001644000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133120.0", + "side": "B", + "time": 1761231186342, + "startPosition": "-2062061494.0", + "dir": "Close Short", + "closedPnl": "238.81728", + "hash": "0x0fac126c4d4d571c1125042e0c102602068e0051e84075eeb374bdbf0c413106", + "oid": 210449812603, + "crossed": true, + "fee": "0.105027", + "tid": 800889789010289, + "cloid": "0x00000000000000000000001644000294", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133108.0", + "side": "B", + "time": 1761231188098, + "startPosition": "-2061928374.0", + "dir": "Close Short", + "closedPnl": "238.662644", + "hash": "0x5588fb18d0aa8fee5702042e0c103e0213bc00fe6badaec0f951a66b8fae69d8", + "oid": 210449846460, + "crossed": true, + "fee": "0.105046", + "tid": 585747404841434, + "cloid": "0x00000000000000000000001644000295", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3836.7", + "sz": "0.2267", + "side": "A", + "time": 1761231189234, + "startPosition": "-2110.2113", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2b5b79fb5ed3b15b2cd5042e0c104d02150c00e0f9d6d02dcf24254e1dd78b45", + "oid": 210449869357, + "crossed": true, + "fee": "0.182653", + "tid": 900607007726319, + "cloid": "0x00000000000000000000001643000810", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3836.7", + "sz": "0.7594", + "side": "A", + "time": 1761231189234, + "startPosition": "-2110.438", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2b5b79fb5ed3b15b2cd5042e0c104d02150c00e0f9d6d02dcf24254e1dd78b45", + "oid": 210449869357, + "crossed": true, + "fee": "0.611853", + "tid": 149048699373844, + "cloid": "0x00000000000000000000001643000810", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3836.7", + "sz": "1.6179", + "side": "A", + "time": 1761231189234, + "startPosition": "-2111.1974", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2b5b79fb5ed3b15b2cd5042e0c104d02150c00e0f9d6d02dcf24254e1dd78b45", + "oid": 210449869357, + "crossed": true, + "fee": "1.303553", + "tid": 404407104922836, + "cloid": "0x00000000000000000000001643000810", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133046.0", + "side": "B", + "time": 1761231190005, + "startPosition": "-2061795266.0", + "dir": "Close Short", + "closedPnl": "238.418432", + "hash": "0xe82455fb4912309de99e042e0c105702159e00e0e4154f6f8bed014e08160a88", + "oid": 210449887323, + "crossed": true, + "fee": "0.105025", + "tid": 74548553506803, + "cloid": "0x00000000000000000000001644000296", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "133048.0", + "side": "B", + "time": 1761231191491, + "startPosition": "-2061662220.0", + "dir": "Close Short", + "closedPnl": "238.288968", + "hash": "0x641f3510104786606598042e0c106702073900f5ab4aa53207e7e062cf4b604b", + "oid": 210449920263, + "crossed": true, + "fee": "0.105054", + "tid": 241878419084262, + "cloid": "0x00000000000000000000001644000297", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133109.0", + "side": "B", + "time": 1761231193148, + "startPosition": "-2061529172.0", + "dir": "Close Short", + "closedPnl": "238.531328", + "hash": "0x31ba9fb306713db33334042e0c107e0204e10098a1745c85d5834b05c575179d", + "oid": 210449948974, + "crossed": true, + "fee": "0.105074", + "tid": 160031231000944, + "cloid": "0x00000000000000000000001644000298", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "132986.0", + "side": "B", + "time": 1761231194749, + "startPosition": "-2061396063.0", + "dir": "Close Short", + "closedPnl": "238.310912", + "hash": "0x39bf6da84d2650793b39042e0c1092020220008de8296f4bdd8818fb0c2a2a63", + "oid": 210449965229, + "crossed": true, + "fee": "0.104977", + "tid": 1002235957058402, + "cloid": "0x00000000000000000000001644000299", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "108.0", + "side": "B", + "time": 1761231194749, + "startPosition": "-2061263077.0", + "dir": "Close Short", + "closedPnl": "0.193536", + "hash": "0x39bf6da84d2650793b39042e0c1092020220008de8296f4bdd8818fb0c2a2a63", + "oid": 210449965229, + "crossed": true, + "fee": "0.000085", + "tid": 756155998458804, + "cloid": "0x00000000000000000000001644000299", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133109.0", + "side": "B", + "time": 1761231195957, + "startPosition": "-2061262969.0", + "dir": "Close Short", + "closedPnl": "238.531328", + "hash": "0x0fa9887b75f63e721123042e0c10a002026f006110f95d44b37233ce34fa185c", + "oid": 210449982130, + "crossed": true, + "fee": "0.105074", + "tid": 986466178492479, + "cloid": "0x00000000000000000000001644000300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133072.0", + "side": "B", + "time": 1761231197172, + "startPosition": "-2061129860.0", + "dir": "Close Short", + "closedPnl": "238.598096", + "hash": "0xd2f847c0681082f8d472042e0c10ad0204e000a60313a1ca76c0f31327145ce3", + "oid": 210449995825, + "crossed": true, + "fee": "0.105017", + "tid": 590085341004809, + "cloid": "0x00000000000000000000001644000301", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "132964.0", + "side": "B", + "time": 1761231198610, + "startPosition": "-2060996788.0", + "dir": "Close Short", + "closedPnl": "238.404452", + "hash": "0x2007e66cd3246b832181042e0c10bd02056900526e278a55c3d091bf9228456d", + "oid": 210450015650, + "crossed": true, + "fee": "0.104932", + "tid": 1068284561145552, + "cloid": "0x00000000000000000000001644000302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "156.0", + "side": "B", + "time": 1761231198610, + "startPosition": "-2060863824.0", + "dir": "Close Short", + "closedPnl": "0.279552", + "hash": "0x2007e66cd3246b832181042e0c10bd02056900526e278a55c3d091bf9228456d", + "oid": 210450015650, + "crossed": true, + "fee": "0.000123", + "tid": 110583404337596, + "cloid": "0x00000000000000000000001644000302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133120.0", + "side": "B", + "time": 1761231200017, + "startPosition": "-2060863668.0", + "dir": "Close Short", + "closedPnl": "238.68416", + "hash": "0x8fc4fb8cce845bdc913e042e0c10cd02043f007269877aae338da6df8d8835c7", + "oid": 210450037358, + "crossed": true, + "fee": "0.105055", + "tid": 294840691927137, + "cloid": "0x00000000000000000000001644000303", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3838.4", + "sz": "0.0461", + "side": "A", + "time": 1761231207097, + "startPosition": "-2112.8153", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210450080539, + "crossed": false, + "fee": "0.004954", + "tid": 369275750563377, + "cloid": "0x00000000000000000000001643000813", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133216.0", + "side": "B", + "time": 1761231207578, + "startPosition": "-2060730548.0", + "dir": "Close Short", + "closedPnl": "238.856288", + "hash": "0x082f934ddc5fe87709a9042e0c11300208f5003377530749abf83ea09b53c261", + "oid": 210450130959, + "crossed": true, + "fee": "0.105131", + "tid": 834873714097011, + "cloid": "0x00000000000000000000001644000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133151.0", + "side": "B", + "time": 1761231209528, + "startPosition": "-2060597332.0", + "dir": "Close Short", + "closedPnl": "238.739743", + "hash": "0x292689fefbc443022aa0042e0c114a02050200e496c761d4ccef3551bac81cec", + "oid": 210450158132, + "crossed": true, + "fee": "0.10508", + "tid": 206471557606891, + "cloid": "0x00000000000000000000001644000307", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "85403.0", + "side": "B", + "time": 1761231210740, + "startPosition": "-2060464181.0", + "dir": "Close Short", + "closedPnl": "153.127579", + "hash": "0xa95d2e9148c3b3d0aad6042e0c115c0202780076e3c6d2a24d25d9e407c78dbb", + "oid": 210450172373, + "crossed": true, + "fee": "0.067398", + "tid": 116655942685245, + "cloid": "0x00000000000000000000001644000308", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "47733.0", + "side": "B", + "time": 1761231210740, + "startPosition": "-2060378778.0", + "dir": "Close Short", + "closedPnl": "85.585269", + "hash": "0xa95d2e9148c3b3d0aad6042e0c115c0202780076e3c6d2a24d25d9e407c78dbb", + "oid": 210450172373, + "crossed": true, + "fee": "0.037669", + "tid": 259637287142760, + "cloid": "0x00000000000000000000001644000308", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133156.0", + "side": "B", + "time": 1761231212028, + "startPosition": "-2060331045.0", + "dir": "Close Short", + "closedPnl": "238.748708", + "hash": "0x84f011c6eaa69cae8669042e0c116f0202a700ac85a9bb8028b8bd19a9aa7699", + "oid": 210450189385, + "crossed": true, + "fee": "0.105084", + "tid": 1014962398034989, + "cloid": "0x00000000000000000000001644000309", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133103.0", + "side": "B", + "time": 1761231213237, + "startPosition": "-2060197889.0", + "dir": "Close Short", + "closedPnl": "238.653679", + "hash": "0xf648b8bc0153cb35f7c2042e0c118002023500a19c56ea089a11640ec057a520", + "oid": 210450205505, + "crossed": true, + "fee": "0.105042", + "tid": 714531098747237, + "cloid": "0x00000000000000000000001644000310", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3838.4", + "sz": "0.026", + "side": "A", + "time": 1761231213308, + "startPosition": "-2112.8614", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf73645c5f3aa65f5f8b0042e0c11810201dd00ab8ead84c89afef118b2ae3fe0", + "oid": 210450080539, + "crossed": false, + "fee": "0.002794", + "tid": 1095416441675595, + "cloid": "0x00000000000000000000001643000813", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133156.0", + "side": "B", + "time": 1761231214915, + "startPosition": "-2060064786.0", + "dir": "Close Short", + "closedPnl": "238.881864", + "hash": "0xfa09ccafae7119dafb83042e0c11960203e90095497438ad9dd278026d74f3c5", + "oid": 210450226566, + "crossed": true, + "fee": "0.105056", + "tid": 825851537102721, + "cloid": "0x00000000000000000000001644000311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133021.0", + "side": "B", + "time": 1761231216720, + "startPosition": "-2059931630.0", + "dir": "Close Short", + "closedPnl": "238.639674", + "hash": "0x4238408089efdd5e43b1042e0c11ab02028f006624e2fc30e600ebd348e3b748", + "oid": 210450247079, + "crossed": true, + "fee": "0.104949", + "tid": 913317256253194, + "cloid": "0x00000000000000000000001644000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "122.0", + "side": "B", + "time": 1761231216720, + "startPosition": "-2059798609.0", + "dir": "Close Short", + "closedPnl": "0.218868", + "hash": "0x4238408089efdd5e43b1042e0c11ab02028f006624e2fc30e600ebd348e3b748", + "oid": 210450247079, + "crossed": true, + "fee": "0.000096", + "tid": 952555244924526, + "cloid": "0x00000000000000000000001644000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133156.0", + "side": "B", + "time": 1761231217929, + "startPosition": "-2059798487.0", + "dir": "Close Short", + "closedPnl": "238.881864", + "hash": "0xcd6ea07045d28886cee8042e0c11b80202a50055e0d5a75871374bc304d66271", + "oid": 210450258903, + "crossed": true, + "fee": "0.105056", + "tid": 634262954296387, + "cloid": "0x00000000000000000000001644000313", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "63435.0", + "side": "B", + "time": 1761231222608, + "startPosition": "-2059665331.0", + "dir": "Close Short", + "closedPnl": "113.80239", + "hash": "0x7ed0b08bbafaf047804a042e0c11f402019b007155fe0f1922995bde79feca32", + "oid": 210450316071, + "crossed": true, + "fee": "0.050048", + "tid": 1045867431561911, + "cloid": "0x00000000000000000000001644000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "69788.0", + "side": "B", + "time": 1761231222608, + "startPosition": "-2059601896.0", + "dir": "Close Short", + "closedPnl": "125.199672", + "hash": "0x7ed0b08bbafaf047804a042e0c11f402019b007155fe0f1922995bde79feca32", + "oid": 210450316071, + "crossed": true, + "fee": "0.05506", + "tid": 837534414260665, + "cloid": "0x00000000000000000000001644000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.1", + "sz": "0.6273", + "side": "A", + "time": 1761231225569, + "startPosition": "-2112.8874", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xbdc47e9028faf1d3bf3e042e0c121c0204b30075c3fe10a5618d29e2e7fecbbe", + "oid": 210450356516, + "crossed": true, + "fee": "0.505736", + "tid": 729760097033014, + "cloid": "0x00000000000000000000001643000814", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.1", + "sz": "0.8566", + "side": "A", + "time": 1761231225569, + "startPosition": "-2113.5147", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xbdc47e9028faf1d3bf3e042e0c121c0204b30075c3fe10a5618d29e2e7fecbbe", + "oid": 210450356516, + "crossed": true, + "fee": "0.6906", + "tid": 115283658796304, + "cloid": "0x00000000000000000000001643000814", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.1", + "sz": "0.8868", + "side": "A", + "time": 1761231225569, + "startPosition": "-2114.3713", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xbdc47e9028faf1d3bf3e042e0c121c0204b30075c3fe10a5618d29e2e7fecbbe", + "oid": 210450356516, + "crossed": true, + "fee": "0.714947", + "tid": 733263748571639, + "cloid": "0x00000000000000000000001643000814", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.1", + "sz": "0.1627", + "side": "A", + "time": 1761231225569, + "startPosition": "-2115.2581", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xbdc47e9028faf1d3bf3e042e0c121c0204b30075c3fe10a5618d29e2e7fecbbe", + "oid": 210450356516, + "crossed": true, + "fee": "0.13117", + "tid": 812588697405864, + "cloid": "0x00000000000000000000001643000814", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133191.0", + "side": "B", + "time": 1761231226845, + "startPosition": "-2059532108.0", + "dir": "Close Short", + "closedPnl": "239.077845", + "hash": "0x5ceb19db3677911f5e64042e0c122e02037100c0d17aaff100b3c52df57b6b0a", + "oid": 210450375891, + "crossed": true, + "fee": "0.105055", + "tid": 157203110781476, + "cloid": "0x00000000000000000000001644000317", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3838.2", + "sz": "0.9504", + "side": "A", + "time": 1761231232597, + "startPosition": "-2115.4208", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x5c228b28a9bcc38b5d9c042e0c1279010e00a30e44bfe25dffeb367b68b09d75", + "oid": 210450452400, + "crossed": false, + "fee": "0.102139", + "tid": 496627822298809, + "cloid": "0x00000000000000000000001643000816", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3838.2", + "sz": "0.2416", + "side": "A", + "time": 1761231232744, + "startPosition": "-2116.3712", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3fbb6fbb57fc89ae4135042e0c127b02050800a0f2ffa880e3841b0e16f06398", + "oid": 210450452400, + "crossed": false, + "fee": "0.025964", + "tid": 1106989381735138, + "cloid": "0x00000000000000000000001643000816", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3838.2", + "sz": "0.0142", + "side": "A", + "time": 1761231232744, + "startPosition": "-2116.6128", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb66204e0d70c07c2b7db042e0c127b02052100c6720f26945a2ab033960fe1ad", + "oid": 210450452400, + "crossed": false, + "fee": "0.001526", + "tid": 558614217678407, + "cloid": "0x00000000000000000000001643000816", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3838.2", + "sz": "1.3987", + "side": "A", + "time": 1761231232939, + "startPosition": "-2116.627", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2189eff523f3cf002303042e0c127e02027900dabef6edd2c5529b47e2f7a8ea", + "oid": 210450452400, + "crossed": false, + "fee": "0.150317", + "tid": 452962217051123, + "cloid": "0x00000000000000000000001643000816", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.1", + "sz": "0.5819", + "side": "A", + "time": 1761231235349, + "startPosition": "-2118.0257", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xda9945d08a0440b8dc13042e0c129e0201e200b625075f8a7e61f12349081aa3", + "oid": 210450501253, + "crossed": true, + "fee": "0.469134", + "tid": 1095287223332216, + "cloid": "0x00000000000000000000001643000817", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.1", + "sz": "0.5038", + "side": "A", + "time": 1761231235349, + "startPosition": "-2118.6076", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xda9945d08a0440b8dc13042e0c129e0201e200b625075f8a7e61f12349081aa3", + "oid": 210450501253, + "crossed": true, + "fee": "0.406169", + "tid": 314157709457719, + "cloid": "0x00000000000000000000001643000817", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.1", + "sz": "0.7163", + "side": "A", + "time": 1761231235349, + "startPosition": "-2119.1114", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xda9945d08a0440b8dc13042e0c129e0201e200b625075f8a7e61f12349081aa3", + "oid": 210450501253, + "crossed": true, + "fee": "0.577488", + "tid": 621953257836958, + "cloid": "0x00000000000000000000001643000817", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.1", + "sz": "0.803", + "side": "A", + "time": 1761231235349, + "startPosition": "-2119.8277", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xda9945d08a0440b8dc13042e0c129e0201e200b625075f8a7e61f12349081aa3", + "oid": 210450501253, + "crossed": true, + "fee": "0.647387", + "tid": 378462246885343, + "cloid": "0x00000000000000000000001643000817", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.5", + "sz": "0.1041", + "side": "A", + "time": 1761231238792, + "startPosition": "-2120.6307", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xdba5b906a10a04d1dd1f042e0c12ca0206f600ec3c0d23a37f6e6459600ddebc", + "oid": 210450521728, + "crossed": false, + "fee": "0.011191", + "tid": 342768479781922, + "cloid": "0x00000000000000000000001643000818", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133198.0", + "side": "B", + "time": 1761231240399, + "startPosition": "-2059398917.0", + "dir": "Close Short", + "closedPnl": "238.957212", + "hash": "0x4303683b676f09d6447d042e0c12e0020b5e0021026228a8e6cc138e2662e3c0", + "oid": 210450578857, + "crossed": true, + "fee": "0.105089", + "tid": 837837635041079, + "cloid": "0x00000000000000000000001644000322", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133159.0", + "side": "B", + "time": 1761231241846, + "startPosition": "-2059265719.0", + "dir": "Close Short", + "closedPnl": "238.887246", + "hash": "0x1d80d218e8422d2e1efa042e0c12f0020c4c00fe83454c00c1497d6ba7460718", + "oid": 210450599154, + "crossed": true, + "fee": "0.105058", + "tid": 672059475103787, + "cloid": "0x00000000000000000000001644000323", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3838.6", + "sz": "0.0347", + "side": "A", + "time": 1761231249066, + "startPosition": "-2120.7348", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210450686908, + "crossed": false, + "fee": "0.003729", + "tid": 635617004046344, + "cloid": "0x00000000000000000000001643000820", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3838.6", + "sz": "0.5972", + "side": "A", + "time": 1761231250137, + "startPosition": "-2120.7695", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1a24ca8b2b425a1e1b9e042e0c13570201b90070c64578f0bded75ddea463408", + "oid": 210450686908, + "crossed": false, + "fee": "0.064187", + "tid": 524539630049028, + "cloid": "0x00000000000000000000001643000820", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3838.6", + "sz": "0.0861", + "side": "A", + "time": 1761231250385, + "startPosition": "-2121.3667", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x91a150ca0201a666931b042e0c135902027b00af9d04c5383569fc1cc1058051", + "oid": 210450686908, + "crossed": false, + "fee": "0.009254", + "tid": 394467251503029, + "cloid": "0x00000000000000000000001643000820", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3838.6", + "sz": "0.026", + "side": "A", + "time": 1761231251591, + "startPosition": "-2121.4528", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa1eda5264433f3a7a367042e0c136802010b000bdf37127945b650790337cd92", + "oid": 210450686908, + "crossed": false, + "fee": "0.002794", + "tid": 583194259636, + "cloid": "0x00000000000000000000001643000820", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003755", + "sz": "133191.0", + "side": "B", + "time": 1761231257955, + "startPosition": "-2059132560.0", + "dir": "Close Short", + "closedPnl": "239.211036", + "hash": "0x30c6958bfdeef7873240042e0c13c00204a6007198e21659d48f40debce2d171", + "oid": 210450767248, + "crossed": true, + "fee": "0.105027", + "tid": 425909144415390, + "cloid": "0x00000000000000000000001644000329", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133209.0", + "side": "B", + "time": 1761231261058, + "startPosition": "-2058999369.0", + "dir": "Close Short", + "closedPnl": "239.110155", + "hash": "0x120618f0950a34eb137f042e0c13ee02038200d6300d53bdb5cec443540e0ed5", + "oid": 210450811351, + "crossed": true, + "fee": "0.105069", + "tid": 336641426561986, + "cloid": "0x00000000000000000000001644000331", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133164.0", + "side": "B", + "time": 1761231262473, + "startPosition": "-2058866160.0", + "dir": "Close Short", + "closedPnl": "238.896216", + "hash": "0x30aa0ed9745a677d3223042e0c140002046500bf0f5d864fd472ba2c335e4167", + "oid": 210450829740, + "crossed": true, + "fee": "0.105062", + "tid": 568094746110634, + "cloid": "0x00000000000000000000001644000332", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3838.7", + "sz": "1.7566", + "side": "A", + "time": 1761231266151, + "startPosition": "-2121.4788", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x98b2b47047a951b39a2c042e0c14300201720055e2ac70853c7b5fc306ad2b9e", + "oid": 210450879291, + "crossed": true, + "fee": "1.416042", + "tid": 108307018775220, + "cloid": "0x00000000000000000000001643000822", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133179.0", + "side": "B", + "time": 1761231271326, + "startPosition": "-2058732996.0", + "dir": "Close Short", + "closedPnl": "239.056305", + "hash": "0xde3ed4ac46d34ec8dfb8042e0c14690202000091e1d66d9a82077fff05d728b3", + "oid": 210450944463, + "crossed": true, + "fee": "0.105046", + "tid": 837892044795026, + "cloid": "0x00000000000000000000001644000334", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133202.0", + "side": "B", + "time": 1761231275879, + "startPosition": "-2058599817.0", + "dir": "Close Short", + "closedPnl": "238.964388", + "hash": "0xe82b55b8dcf1fc49e9a5042e0c149c020573009e77f51b1b8bf4010b9bf5d634", + "oid": 210451004144, + "crossed": true, + "fee": "0.105092", + "tid": 245937501802327, + "cloid": "0x00000000000000000000001644000336", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "132952.0", + "side": "B", + "time": 1761231277089, + "startPosition": "-2058466615.0", + "dir": "Close Short", + "closedPnl": "238.515888", + "hash": "0xcee6242dbb582e95d05f042e0c14ac0201f90013565b4d6772aecf807a5c0880", + "oid": 210451024754, + "crossed": true, + "fee": "0.104895", + "tid": 966801063115153, + "cloid": "0x00000000000000000000001644000337", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "168.0", + "side": "B", + "time": 1761231277089, + "startPosition": "-2058333663.0", + "dir": "Close Short", + "closedPnl": "0.301224", + "hash": "0xcee6242dbb582e95d05f042e0c14ac0201f90013565b4d6772aecf807a5c0880", + "oid": 210451024754, + "crossed": true, + "fee": "0.000132", + "tid": 1107106554008632, + "cloid": "0x00000000000000000000001644000337", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133146.0", + "side": "B", + "time": 1761231278315, + "startPosition": "-2058333495.0", + "dir": "Close Short", + "closedPnl": "238.730778", + "hash": "0x45eebd4e8231542d4768042e0c14be0202bd00341d3472ffe9b768a141352e17", + "oid": 210451040560, + "crossed": true, + "fee": "0.105076", + "tid": 684662875842350, + "cloid": "0x00000000000000000000001644000338", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.3", + "sz": "0.0347", + "side": "A", + "time": 1761231279039, + "startPosition": "-2123.2354", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210451004145, + "crossed": false, + "fee": "0.00373", + "tid": 387435170658586, + "cloid": "0x00000000000000000000001643000824", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133156.0", + "side": "B", + "time": 1761231280229, + "startPosition": "-2058200349.0", + "dir": "Close Short", + "closedPnl": "238.748708", + "hash": "0x77a5b1e654d73e5c791f042e0c14d702033a00cbefda5d2e1b6e5d3913db1847", + "oid": 210451066449, + "crossed": true, + "fee": "0.105084", + "tid": 613715555169399, + "cloid": "0x00000000000000000000001644000339", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133107.0", + "side": "B", + "time": 1761231281549, + "startPosition": "-2058067193.0", + "dir": "Close Short", + "closedPnl": "238.660851", + "hash": "0xb22a672becb34dd5b3a4042e0c14e902038e001187b66ca755f3127eabb727c0", + "oid": 210451089064, + "crossed": true, + "fee": "0.105045", + "tid": 956629277987795, + "cloid": "0x00000000000000000000001644000340", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133108.0", + "side": "B", + "time": 1761231282936, + "startPosition": "-2057934086.0", + "dir": "Close Short", + "closedPnl": "238.662644", + "hash": "0xb3522dacc795d779b4cb042e0c14fa02015700926298f64b571ad8ff8699b164", + "oid": 210451100071, + "crossed": true, + "fee": "0.105046", + "tid": 1050057497931927, + "cloid": "0x00000000000000000000001644000341", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133108.0", + "side": "B", + "time": 1761231284158, + "startPosition": "-2057800978.0", + "dir": "Close Short", + "closedPnl": "238.662644", + "hash": "0xf93e12dcc66e4364fab7042e0c150a02027c00c2616162379d06be2f85621d4f", + "oid": 210451112209, + "crossed": true, + "fee": "0.105046", + "tid": 548859569049296, + "cloid": "0x00000000000000000000001644000342", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "57391.0", + "side": "B", + "time": 1761231285551, + "startPosition": "-2057667870.0", + "dir": "Close Short", + "closedPnl": "102.902063", + "hash": "0xebd7b45cc850e04ded51042e0c151e02018f00426353ff1f8fa05faf8754ba38", + "oid": 210451126900, + "crossed": true, + "fee": "0.045291", + "tid": 298920950471834, + "cloid": "0x00000000000000000000001644000343", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "75717.0", + "side": "B", + "time": 1761231285551, + "startPosition": "-2057610479.0", + "dir": "Close Short", + "closedPnl": "135.760581", + "hash": "0xebd7b45cc850e04ded51042e0c151e02018f00426353ff1f8fa05faf8754ba38", + "oid": 210451126900, + "crossed": true, + "fee": "0.059754", + "tid": 937970235953310, + "cloid": "0x00000000000000000000001644000343", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3840.1", + "sz": "0.002", + "side": "A", + "time": 1761231287039, + "startPosition": "-2123.2701", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210451085612, + "crossed": false, + "fee": "0.000215", + "tid": 17841193806705, + "cloid": "0x00000000000000000000001643000825", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133085.0", + "side": "B", + "time": 1761231287521, + "startPosition": "-2057534762.0", + "dir": "Close Short", + "closedPnl": "238.48832", + "hash": "0x6e1a2088174dbcfc6f93042e0c153b020605006db240dbce11e2cbdad64196e7", + "oid": 210451151403, + "crossed": true, + "fee": "0.105055", + "tid": 428790909214041, + "cloid": "0x00000000000000000000001644000344", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133068.0", + "side": "B", + "time": 1761231288916, + "startPosition": "-2057401677.0", + "dir": "Close Short", + "closedPnl": "238.457856", + "hash": "0x2ae4f953275ca2232c5e042e0c15500204850038c25fc0f5ceada4a5e6507c0d", + "oid": 210451171267, + "crossed": true, + "fee": "0.105042", + "tid": 117092760899665, + "cloid": "0x00000000000000000000001644000345", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "133060.0", + "side": "B", + "time": 1761231290265, + "startPosition": "-2057268609.0", + "dir": "Close Short", + "closedPnl": "238.31046", + "hash": "0xdf8711710dae1585e100042e0c15650202090056a8a13457834fbcc3cca1ef70", + "oid": 210451189016, + "crossed": true, + "fee": "0.105064", + "tid": 317684480975890, + "cloid": "0x00000000000000000000001644000346", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133073.0", + "side": "B", + "time": 1761231291612, + "startPosition": "-2057135549.0", + "dir": "Close Short", + "closedPnl": "238.466816", + "hash": "0x0df67037462bb2f80f70042e0c157902036d001ce12ed1cab1bf1b8a052f8ce2", + "oid": 210451204998, + "crossed": true, + "fee": "0.105046", + "tid": 1003734463839420, + "cloid": "0x00000000000000000000001644000347", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "132973.0", + "side": "B", + "time": 1761231292838, + "startPosition": "-2057002476.0", + "dir": "Close Short", + "closedPnl": "238.287616", + "hash": "0x672b93f6d534f99c68a5042e0c158a02067100dc7038186e0af43f499438d387", + "oid": 210451225135, + "crossed": true, + "fee": "0.104967", + "tid": 575351650973842, + "cloid": "0x00000000000000000000001644000348", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "147.0", + "side": "B", + "time": 1761231292838, + "startPosition": "-2056869503.0", + "dir": "Close Short", + "closedPnl": "0.263424", + "hash": "0x672b93f6d534f99c68a5042e0c158a02067100dc7038186e0af43f499438d387", + "oid": 210451225135, + "crossed": true, + "fee": "0.000116", + "tid": 924513110047839, + "cloid": "0x00000000000000000000001644000348", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133147.0", + "side": "B", + "time": 1761231294488, + "startPosition": "-2056869356.0", + "dir": "Close Short", + "closedPnl": "238.998865", + "hash": "0xb280b94a83c0691ab3fa042e0c159e0208de00301ec387ec5649649d42c44305", + "oid": 210451251296, + "crossed": true, + "fee": "0.105021", + "tid": 490984401363550, + "cloid": "0x00000000000000000000001644000349", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.0", + "sz": "0.6497", + "side": "A", + "time": 1761231300470, + "startPosition": "-2123.2721", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa9311bf2323869b9aaaa042e0c15ed02059200d7cd3b888b4cf9c744f13c43a4", + "oid": 210451341023, + "crossed": true, + "fee": "0.523781", + "tid": 223978136329472, + "cloid": "0x00000000000000000000001643000827", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.0", + "sz": "1.9188", + "side": "A", + "time": 1761231300470, + "startPosition": "-2123.9218", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa9311bf2323869b9aaaa042e0c15ed02059200d7cd3b888b4cf9c744f13c43a4", + "oid": 210451341023, + "crossed": true, + "fee": "1.546917", + "tid": 243249904022609, + "cloid": "0x00000000000000000000001643000827", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003754", + "sz": "133214.0", + "side": "B", + "time": 1761231305799, + "startPosition": "-2056736209.0", + "dir": "Close Short", + "closedPnl": "239.385558", + "hash": "0x2c2037b71508ad302d99042e0c162f02067d009cb00bcc02cfe8e309d40c871a", + "oid": 210451410655, + "crossed": true, + "fee": "0.105017", + "tid": 514719135383034, + "cloid": "0x00000000000000000000001644000353", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.8", + "sz": "1.672", + "side": "A", + "time": 1761231307538, + "startPosition": "-2125.8406", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1573ee4157574e0816ed042e0c1644020fc10026f25a6cdab93c9994165b27f2", + "oid": 210451442979, + "crossed": true, + "fee": "1.34823", + "tid": 234663926365678, + "cloid": "0x00000000000000000000001643000829", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.8", + "sz": "0.4878", + "side": "A", + "time": 1761231307538, + "startPosition": "-2127.5126", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1573ee4157574e0816ed042e0c1644020fc10026f25a6cdab93c9994165b27f2", + "oid": 210451442979, + "crossed": true, + "fee": "0.393341", + "tid": 351856770412758, + "cloid": "0x00000000000000000000001643000829", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.8", + "sz": "0.4455", + "side": "A", + "time": 1761231307538, + "startPosition": "-2128.0004", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1573ee4157574e0816ed042e0c1644020fc10026f25a6cdab93c9994165b27f2", + "oid": 210451442979, + "crossed": true, + "fee": "0.359232", + "tid": 1105328520897700, + "cloid": "0x00000000000000000000001643000829", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133179.0", + "side": "B", + "time": 1761231309502, + "startPosition": "-2056602995.0", + "dir": "Close Short", + "closedPnl": "238.789947", + "hash": "0xea0461a6c24cb17deb7e042e0c165d02030b008c5d4fd04f8dcd0cf981408b68", + "oid": 210451470551, + "crossed": true, + "fee": "0.105102", + "tid": 415869012757717, + "cloid": "0x00000000000000000000001644000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133108.0", + "side": "B", + "time": 1761231311118, + "startPosition": "-2056469816.0", + "dir": "Close Short", + "closedPnl": "238.662644", + "hash": "0x472f20031474e84d48a8042e0c167302063800e8af78071feaf7cb55d378c237", + "oid": 210451498385, + "crossed": true, + "fee": "0.105046", + "tid": 395907197993786, + "cloid": "0x00000000000000000000001644000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133120.0", + "side": "B", + "time": 1761231316390, + "startPosition": "-2056336708.0", + "dir": "Close Short", + "closedPnl": "238.68416", + "hash": "0x99796e8b8abb64909af3042e0c16b902035e007125be83623d4219de49bf3e7b", + "oid": 210451570274, + "crossed": true, + "fee": "0.105055", + "tid": 949500517396352, + "cloid": "0x00000000000000000000001644000357", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.9", + "sz": "0.507", + "side": "A", + "time": 1761231321483, + "startPosition": "-2128.4459", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x822713773b44f98a83a0042e0c16fa02034a005cd648185c25efbec9fa48d375", + "oid": 210451642379, + "crossed": true, + "fee": "0.408834", + "tid": 718579034457645, + "cloid": "0x00000000000000000000001643000832", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.9", + "sz": "0.5068", + "side": "A", + "time": 1761231321483, + "startPosition": "-2128.9529", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x822713773b44f98a83a0042e0c16fa02034a005cd648185c25efbec9fa48d375", + "oid": 210451642379, + "crossed": true, + "fee": "0.408672", + "tid": 556187149289280, + "cloid": "0x00000000000000000000001643000832", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.9", + "sz": "0.873", + "side": "A", + "time": 1761231321483, + "startPosition": "-2129.4597", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x822713773b44f98a83a0042e0c16fa02034a005cd648185c25efbec9fa48d375", + "oid": 210451642379, + "crossed": true, + "fee": "0.703968", + "tid": 262075228670951, + "cloid": "0x00000000000000000000001643000832", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.9", + "sz": "0.7177", + "side": "A", + "time": 1761231321483, + "startPosition": "-2130.3327", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x822713773b44f98a83a0042e0c16fa02034a005cd648185c25efbec9fa48d375", + "oid": 210451642379, + "crossed": true, + "fee": "0.578738", + "tid": 906150656516881, + "cloid": "0x00000000000000000000001643000832", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133073.0", + "side": "B", + "time": 1761231323309, + "startPosition": "-2056203588.0", + "dir": "Close Short", + "closedPnl": "238.466816", + "hash": "0xf263174af9d96660f3dc042e0c170c020241003094dc8533962bc29db8dd404b", + "oid": 210451672059, + "crossed": true, + "fee": "0.105046", + "tid": 184639734708642, + "cloid": "0x00000000000000000000001644000358", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133156.0", + "side": "B", + "time": 1761231324837, + "startPosition": "-2056070515.0", + "dir": "Close Short", + "closedPnl": "238.881864", + "hash": "0xf6b16d84d86d29d8f82b042e0c171c0206c2006a736048ab9a7a18d7976103c3", + "oid": 210451693873, + "crossed": true, + "fee": "0.105056", + "tid": 936764986424716, + "cloid": "0x00000000000000000000001644000359", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3838.8", + "sz": "0.01", + "side": "A", + "time": 1761231328817, + "startPosition": "-2131.0504", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x067d5c31f2dc4bd007f7042e0c174e02038700178ddf6aa2aa460784b1d025ba", + "oid": 210451730429, + "crossed": false, + "fee": "0.001074", + "tid": 233946974781278, + "cloid": "0x00000000000000000000001643000834", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3838.8", + "sz": "1.8775", + "side": "A", + "time": 1761231330014, + "startPosition": "-2131.0604", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x077d36649f05aaae08f6042e0c175d0201b7004a3a08c980ab45e1b75e098498", + "oid": 210451730429, + "crossed": false, + "fee": "0.201805", + "tid": 752250768066734, + "cloid": "0x00000000000000000000001643000834", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3838.8", + "sz": "0.7173", + "side": "A", + "time": 1761231330135, + "startPosition": "-2132.9379", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1ec35b23f8f9e3e4203d042e0c175f020224000993fd02b6c28c0676b7fdbdce", + "oid": 210451730429, + "crossed": false, + "fee": "0.077099", + "tid": 766305660150218, + "cloid": "0x00000000000000000000001643000834", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003754", + "sz": "133183.0", + "side": "B", + "time": 1761231335877, + "startPosition": "-2055937359.0", + "dir": "Close Short", + "closedPnl": "239.329851", + "hash": "0xae70836b836b3461afea042e0c17ae02029800511e6e533352392ebe426f0e4c", + "oid": 210451847232, + "crossed": true, + "fee": "0.104993", + "tid": 1081529048802104, + "cloid": "0x00000000000000000000001644000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133226.0", + "side": "B", + "time": 1761231343425, + "startPosition": "-2055804176.0", + "dir": "Close Short", + "closedPnl": "239.007444", + "hash": "0x4d2e756a56bad5914ea8042e0c18120203a1004ff1bdf463f0f720bd15beaf7b", + "oid": 210451948754, + "crossed": true, + "fee": "0.105111", + "tid": 249215239726816, + "cloid": "0x00000000000000000000001644000367", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "83474.0", + "side": "B", + "time": 1761231344918, + "startPosition": "-2055670950.0", + "dir": "Close Short", + "closedPnl": "149.752356", + "hash": "0x32cc7ef40d8cd4053446042e0c182302028100d9a88ff2d7d6952a46cc80adef", + "oid": 210451973853, + "crossed": true, + "fee": "0.065858", + "tid": 282157481846859, + "cloid": "0x00000000000000000000001644000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "49611.0", + "side": "B", + "time": 1761231344918, + "startPosition": "-2055587476.0", + "dir": "Close Short", + "closedPnl": "89.002134", + "hash": "0x32cc7ef40d8cd4053446042e0c182302028100d9a88ff2d7d6952a46cc80adef", + "oid": 210451973853, + "crossed": true, + "fee": "0.039141", + "tid": 771789974261472, + "cloid": "0x00000000000000000000001644000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133110.0", + "side": "B", + "time": 1761231346265, + "startPosition": "-2055537865.0", + "dir": "Close Short", + "closedPnl": "238.66623", + "hash": "0x699ade480cb306576b14042e0c1831020726002da7b625290d63899acbb6e042", + "oid": 210451994825, + "crossed": true, + "fee": "0.105047", + "tid": 740388582976232, + "cloid": "0x00000000000000000000001644000369", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133110.0", + "side": "B", + "time": 1761231347630, + "startPosition": "-2055404755.0", + "dir": "Close Short", + "closedPnl": "238.66623", + "hash": "0x3b986348ffe1f40d3d12042e0c1841020981002e9ae512dfdf610e9bbee5cdf7", + "oid": 210452019180, + "crossed": true, + "fee": "0.105047", + "tid": 1072702308245530, + "cloid": "0x00000000000000000000001644000370", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "132979.0", + "side": "B", + "time": 1761231349111, + "startPosition": "-2055271645.0", + "dir": "Close Short", + "closedPnl": "238.431347", + "hash": "0xf96fd26b72ee20f8fae9042e0c185202021c00510de13fcb9d387dbe31e1fae3", + "oid": 210452041016, + "crossed": true, + "fee": "0.104944", + "tid": 720166486378826, + "cloid": "0x00000000000000000000001644000371", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "129.0", + "side": "B", + "time": 1761231349111, + "startPosition": "-2055138666.0", + "dir": "Close Short", + "closedPnl": "0.231297", + "hash": "0xf96fd26b72ee20f8fae9042e0c185202021c00510de13fcb9d387dbe31e1fae3", + "oid": 210452041016, + "crossed": true, + "fee": "0.000101", + "tid": 137864795937930, + "cloid": "0x00000000000000000000001644000371", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133108.0", + "side": "B", + "time": 1761231350920, + "startPosition": "-2055138537.0", + "dir": "Close Short", + "closedPnl": "238.662644", + "hash": "0x8e1ca90c3c598c6b8f96042e0c18670202a200f1d75cab3d31e5545efb5d6656", + "oid": 210452058612, + "crossed": true, + "fee": "0.105046", + "tid": 1835153945547, + "cloid": "0x00000000000000000000001644000372", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133108.0", + "side": "B", + "time": 1761231352338, + "startPosition": "-2055005429.0", + "dir": "Close Short", + "closedPnl": "238.662644", + "hash": "0x34277594ecc1b10435a1042e0c187802022c007a87c4cfd6d7f020e7abc58aee", + "oid": 210452071049, + "crossed": true, + "fee": "0.105046", + "tid": 155164347353266, + "cloid": "0x00000000000000000000001644000373", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133120.0", + "side": "B", + "time": 1761231353692, + "startPosition": "-2054872321.0", + "dir": "Close Short", + "closedPnl": "238.68416", + "hash": "0xbcee2d978c1c4387be67042e0c188d0201c0007d271f625960b6d8ea4b101d72", + "oid": 210452088791, + "crossed": true, + "fee": "0.105055", + "tid": 908987831597332, + "cloid": "0x00000000000000000000001644000374", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133156.0", + "side": "B", + "time": 1761231355059, + "startPosition": "-2054739201.0", + "dir": "Close Short", + "closedPnl": "238.881864", + "hash": "0xf07e3f781d8efd52f1f7042e0c189d02039f005db8821c259446eacadc82d73d", + "oid": 210452103481, + "crossed": true, + "fee": "0.105056", + "tid": 13909777777519, + "cloid": "0x00000000000000000000001644000375", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133132.0", + "side": "B", + "time": 1761231357644, + "startPosition": "-2054606045.0", + "dir": "Close Short", + "closedPnl": "238.838808", + "hash": "0x039e3c87e9f370a00517042e0c18c102014a006d84f68f72a766e7daa8f74a8a", + "oid": 210452128619, + "crossed": true, + "fee": "0.105037", + "tid": 115680755746985, + "cloid": "0x00000000000000000000001644000376", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133156.0", + "side": "B", + "time": 1761231358852, + "startPosition": "-2054472913.0", + "dir": "Close Short", + "closedPnl": "239.01502", + "hash": "0x545ae8c7c158621b55d4042e0c18ce02012f00ad5c5b80edf823941a805c3c05", + "oid": 210452132626, + "crossed": true, + "fee": "0.105028", + "tid": 716480944490600, + "cloid": "0x00000000000000000000001644000377", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133156.0", + "side": "B", + "time": 1761231360133, + "startPosition": "-2054339757.0", + "dir": "Close Short", + "closedPnl": "239.01502", + "hash": "0x36530e8742f253c937cc042e0c18de020209006cddf5729bda1bb9da01f62db3", + "oid": 210452136239, + "crossed": true, + "fee": "0.105028", + "tid": 504875307026940, + "cloid": "0x00000000000000000000001644000378", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "97251.0", + "side": "B", + "time": 1761231363688, + "startPosition": "-2054206601.0", + "dir": "Close Short", + "closedPnl": "174.273792", + "hash": "0x736498ae953c23aa74de042e0c190802047b0094303f427c172d4401543ffd95", + "oid": 210452185164, + "crossed": true, + "fee": "0.076768", + "tid": 174385787211472, + "cloid": "0x00000000000000000000001644000380", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "35948.0", + "side": "B", + "time": 1761231363688, + "startPosition": "-2054109350.0", + "dir": "Close Short", + "closedPnl": "64.418816", + "hash": "0x736498ae953c23aa74de042e0c190802047b0094303f427c172d4401543ffd95", + "oid": 210452185164, + "crossed": true, + "fee": "0.028376", + "tid": 11229284951118, + "cloid": "0x00000000000000000000001644000380", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133085.0", + "side": "B", + "time": 1761231364983, + "startPosition": "-2054073402.0", + "dir": "Close Short", + "closedPnl": "238.48832", + "hash": "0xa271684ec3c72202a3eb042e0c1919020c3700345eca40d4463a13a182cafbed", + "oid": 210452199411, + "crossed": true, + "fee": "0.105055", + "tid": 3940223105772, + "cloid": "0x00000000000000000000001644000381", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "106144.0", + "side": "B", + "time": 1761231368422, + "startPosition": "-2053940317.0", + "dir": "Close Short", + "closedPnl": "190.103904", + "hash": "0x98cc615611bdf1de9a46042e0c194302071c003bacb110b03c950ca8d0b1cbc9", + "oid": 210452267661, + "crossed": true, + "fee": "0.083811", + "tid": 127651192685576, + "cloid": "0x00000000000000000000001644000382", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "26826.0", + "side": "B", + "time": 1761231368422, + "startPosition": "-2053834173.0", + "dir": "Close Short", + "closedPnl": "48.045366", + "hash": "0x98cc615611bdf1de9a46042e0c194302071c003bacb110b03c950ca8d0b1cbc9", + "oid": 210452267661, + "crossed": true, + "fee": "0.021181", + "tid": 517690328700084, + "cloid": "0x00000000000000000000001644000382", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "212.0", + "side": "B", + "time": 1761231372997, + "startPosition": "-2053807347.0", + "dir": "Close Short", + "closedPnl": "0.380328", + "hash": "0x633f81b100c0dc4264b9042e0c198002024400969bc3fb1407082d03bfc4b62d", + "oid": 210452341704, + "crossed": true, + "fee": "0.000167", + "tid": 894947478984934, + "cloid": "0x00000000000000000000001644000383", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "132859.0", + "side": "B", + "time": 1761231372997, + "startPosition": "-2053807135.0", + "dir": "Close Short", + "closedPnl": "238.349046", + "hash": "0x633f81b100c0dc4264b9042e0c198002024400969bc3fb1407082d03bfc4b62d", + "oid": 210452341704, + "crossed": true, + "fee": "0.104821", + "tid": 732507198109418, + "cloid": "0x00000000000000000000001644000383", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133147.0", + "side": "B", + "time": 1761231374288, + "startPosition": "-2053674276.0", + "dir": "Close Short", + "closedPnl": "238.865718", + "hash": "0xd4703c57e8c4e003d5e9042e0c198f020239003d83c7fed57838e7aaa7c8b9ee", + "oid": 210452359652, + "crossed": true, + "fee": "0.105048", + "tid": 12627209881898, + "cloid": "0x00000000000000000000001644000384", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133120.0", + "side": "B", + "time": 1761231376360, + "startPosition": "-2053541129.0", + "dir": "Close Short", + "closedPnl": "238.81728", + "hash": "0x30e5cc1fdadd773a325f042e0c19a9020300000575d0960cd4ae777299d15124", + "oid": 210452384561, + "crossed": true, + "fee": "0.105027", + "tid": 131763121890502, + "cloid": "0x00000000000000000000001644000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3837.9", + "sz": "1.5071", + "side": "A", + "time": 1761231377271, + "startPosition": "-2133.6552", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xbe65c2afdb1403febfdf042e0c19b70204de0095761722d0622e6e029a17dde9", + "oid": 210452404379, + "crossed": true, + "fee": "1.21466", + "tid": 31745844282573, + "cloid": "0x00000000000000000000001643000843", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3837.9", + "sz": "0.7139", + "side": "A", + "time": 1761231377271, + "startPosition": "-2135.1623", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xbe65c2afdb1403febfdf042e0c19b70204de0095761722d0622e6e029a17dde9", + "oid": 210452404379, + "crossed": true, + "fee": "0.575374", + "tid": 487353900750381, + "cloid": "0x00000000000000000000001643000843", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3837.9", + "sz": "0.3839", + "side": "A", + "time": 1761231377271, + "startPosition": "-2135.8762", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xbe65c2afdb1403febfdf042e0c19b70204de0095761722d0622e6e029a17dde9", + "oid": 210452404379, + "crossed": true, + "fee": "0.309407", + "tid": 595332081410901, + "cloid": "0x00000000000000000000001643000843", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133049.0", + "side": "B", + "time": 1761231378161, + "startPosition": "-2053408009.0", + "dir": "Close Short", + "closedPnl": "238.423808", + "hash": "0x0401cf437c8a1a5e057b042e0c19c30206d10029178d3930a7ca7a963b8df448", + "oid": 210452422470, + "crossed": true, + "fee": "0.105027", + "tid": 251481661731484, + "cloid": "0x00000000000000000000001644000386", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133085.0", + "side": "B", + "time": 1761231381748, + "startPosition": "-2053274960.0", + "dir": "Close Short", + "closedPnl": "238.621405", + "hash": "0xe2321b4c0bb4062be3ab042e0c19f10203d60031a6b724fd85fac69ecab7e016", + "oid": 210452474384, + "crossed": true, + "fee": "0.105028", + "tid": 470661671145726, + "cloid": "0x00000000000000000000001644000387", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133097.0", + "side": "B", + "time": 1761231383564, + "startPosition": "-2053141875.0", + "dir": "Close Short", + "closedPnl": "238.642921", + "hash": "0xe180a2ba585e4e0ce2fa042e0c1a0b02032e009ff3516cde85494e0d175227f7", + "oid": 210452495606, + "crossed": true, + "fee": "0.105037", + "tid": 486096924851536, + "cloid": "0x00000000000000000000001644000388", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133049.0", + "side": "B", + "time": 1761231384845, + "startPosition": "-2053008778.0", + "dir": "Close Short", + "closedPnl": "238.423808", + "hash": "0xd6aaaeac6e793235d824042e0c1a1d0201060092097c51077a7359ff2d7d0c20", + "oid": 210452506926, + "crossed": true, + "fee": "0.105027", + "tid": 953241328296310, + "cloid": "0x00000000000000000000001644000389", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133085.0", + "side": "B", + "time": 1761231386969, + "startPosition": "-2052875729.0", + "dir": "Close Short", + "closedPnl": "238.75449", + "hash": "0xcbae65be0d68fb07cd28042e0c1a3802060600a3a86c19d96f771110cc6cd4f2", + "oid": 210452548251, + "crossed": true, + "fee": "0.105", + "tid": 916947208481471, + "cloid": "0x00000000000000000000001644000390", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133049.0", + "side": "B", + "time": 1761231389602, + "startPosition": "-2052742644.0", + "dir": "Close Short", + "closedPnl": "238.556857", + "hash": "0xf923e0b30b2e6b47fa9d042e0c1a5e0203040098a6218a1a9cec8c05ca224532", + "oid": 210452588164, + "crossed": true, + "fee": "0.104999", + "tid": 854183504772090, + "cloid": "0x00000000000000000000001644000391", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133120.0", + "side": "B", + "time": 1761231391221, + "startPosition": "-2052609595.0", + "dir": "Close Short", + "closedPnl": "238.68416", + "hash": "0xd392d5344e542422d50c042e0c1a760204370019e95742f4775b80870d57fe0d", + "oid": 210452609628, + "crossed": true, + "fee": "0.105055", + "tid": 122844662723598, + "cloid": "0x00000000000000000000001644000392", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3837.6", + "sz": "2.6048", + "side": "A", + "time": 1761231392522, + "startPosition": "-2136.2601", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x25cc4d8f6f468b152746042e0c1a8902047f00750a49a9e7c994f8e22e4a64ff", + "oid": 210452623746, + "crossed": false, + "fee": "0.279893", + "tid": 633082757715194, + "cloid": "0x00000000000000000000001643000849", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133073.0", + "side": "B", + "time": 1761231392522, + "startPosition": "-2052476475.0", + "dir": "Close Short", + "closedPnl": "238.466816", + "hash": "0xe99f6c19d4c4c6adeb19042e0c1a8902049700ff6fc7e57f8d68176c93c8a098", + "oid": 210452634996, + "crossed": true, + "fee": "0.105046", + "tid": 317372847880336, + "cloid": "0x00000000000000000000001644000393", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133061.0", + "side": "B", + "time": 1761231393825, + "startPosition": "-2052343402.0", + "dir": "Close Short", + "closedPnl": "238.445312", + "hash": "0x617e181dc2c92ca062f7042e0c1a9d02031300035dcc4b720546c37081cd068b", + "oid": 210452655642, + "crossed": true, + "fee": "0.105037", + "tid": 76614930479372, + "cloid": "0x00000000000000000000001644000394", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133014.0", + "side": "B", + "time": 1761231395655, + "startPosition": "-2052210341.0", + "dir": "Close Short", + "closedPnl": "238.361088", + "hash": "0xf8cba98e347f3d8cfa45042e0c1ab30202f80073cf725c5f9c9454e0f3731777", + "oid": 210452676850, + "crossed": true, + "fee": "0.104999", + "tid": 947882928386541, + "cloid": "0x00000000000000000000001644000395", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "130155.0", + "side": "B", + "time": 1761231398029, + "startPosition": "-2052077327.0", + "dir": "Close Short", + "closedPnl": "233.49807", + "hash": "0x47a0a15f3fee82c8491a042e0c1ad10204b10044dae1a19aeb694cb1fee25cb2", + "oid": 210452718323, + "crossed": true, + "fee": "0.102688", + "tid": 823333461265276, + "cloid": "0x00000000000000000000001644000396", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "2894.0", + "side": "B", + "time": 1761231398029, + "startPosition": "-2051947172.0", + "dir": "Close Short", + "closedPnl": "5.188942", + "hash": "0x47a0a15f3fee82c8491a042e0c1ad10204b10044dae1a19aeb694cb1fee25cb2", + "oid": 210452718323, + "crossed": true, + "fee": "0.002283", + "tid": 289252106981729, + "cloid": "0x00000000000000000000001644000396", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3839.9", + "sz": "2.6054", + "side": "A", + "time": 1761231428276, + "startPosition": "-2138.8649", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x4c45642b94b5d7fd4dbf042e0c1c4b0201a400112fb8f6cff00e0f7e53b9b1e7", + "oid": 210453128003, + "crossed": true, + "fee": "2.100939", + "tid": 838008410472008, + "cloid": "0x00000000000000000000001643000857", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3840.8", + "sz": "0.1323", + "side": "A", + "time": 1761231442776, + "startPosition": "-2141.4703", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfea262604a9dc998001c042e0c1d050205900045e590e86ba26b0db30991a383", + "oid": 210453339457, + "crossed": true, + "fee": "0.106708", + "tid": 736574376184888, + "cloid": "0x00000000000000000000001643000861", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3840.8", + "sz": "2.4713", + "side": "A", + "time": 1761231442776, + "startPosition": "-2141.6026", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfea262604a9dc998001c042e0c1d050205900045e590e86ba26b0db30991a383", + "oid": 210453339457, + "crossed": true, + "fee": "1.993271", + "tid": 811755149529390, + "cloid": "0x00000000000000000000001643000861", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3841.6", + "sz": "2.6034", + "side": "A", + "time": 1761231446993, + "startPosition": "-2144.0739", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x133094655376d5b914aa042e0c1d370206d4004aee79f48bb6f93fb8127aafa3", + "oid": 210453382757, + "crossed": false, + "fee": "0.280034", + "tid": 994823231677103, + "cloid": "0x00000000000000000000001643000862", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "133049.0", + "side": "B", + "time": 1761231447667, + "startPosition": "-2051944278.0", + "dir": "Close Short", + "closedPnl": "237.226367", + "hash": "0xb58c34c5a2521955b705042e0c1d40020c0500ab3d5538275954e0186155f340", + "oid": 210453416880, + "crossed": true, + "fee": "0.105279", + "tid": 563474744000053, + "cloid": "0x00000000000000000000001644000409", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "132732.0", + "side": "B", + "time": 1761231449296, + "startPosition": "-2051811229.0", + "dir": "Close Short", + "closedPnl": "236.528424", + "hash": "0x64be04c07132ff216637042e0c1d550203fa00a60c361df30886b0133036d90c", + "oid": 210453447337, + "crossed": true, + "fee": "0.105056", + "tid": 958773964856372, + "cloid": "0x00000000000000000000001644000410", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132730.0", + "side": "B", + "time": 1761231450833, + "startPosition": "-2051678497.0", + "dir": "Close Short", + "closedPnl": "236.79032", + "hash": "0x3a99cc012bc0f4c43c13042e0c1d6b02019d00e6c6c41396de627753eac4ceae", + "oid": 210453469319, + "crossed": true, + "fee": "0.104998", + "tid": 575448575041913, + "cloid": "0x00000000000000000000001644000411", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132723.0", + "side": "B", + "time": 1761231452138, + "startPosition": "-2051545767.0", + "dir": "Close Short", + "closedPnl": "236.645109", + "hash": "0xcd9a9ea5766151a7cf14042e0c1d7c0203c2008b11647079716349f835652b92", + "oid": 210453485879, + "crossed": true, + "fee": "0.105021", + "tid": 96409259939665, + "cloid": "0x00000000000000000000001644000412", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "58338.0", + "side": "B", + "time": 1761231453499, + "startPosition": "-2051413044.0", + "dir": "Close Short", + "closedPnl": "104.13333", + "hash": "0xeafa26e89e5b09e9ec73042e0c1d8d02018400ce395e28bb8ec2d23b5d5ee3d4", + "oid": 210453496632, + "crossed": true, + "fee": "0.046137", + "tid": 1025953086669689, + "cloid": "0x00000000000000000000001644000413", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "74416.0", + "side": "B", + "time": 1761231453499, + "startPosition": "-2051354706.0", + "dir": "Close Short", + "closedPnl": "132.758144", + "hash": "0xeafa26e89e5b09e9ec73042e0c1d8d02018400ce395e28bb8ec2d23b5d5ee3d4", + "oid": 210453496632, + "crossed": true, + "fee": "0.058868", + "tid": 933950133740867, + "cloid": "0x00000000000000000000001644000413", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132802.0", + "side": "B", + "time": 1761231454693, + "startPosition": "-2051280290.0", + "dir": "Close Short", + "closedPnl": "236.785966", + "hash": "0xdeb795532f8f64aee031042e0c1d9c0202840038ca828380828040a5ee833e99", + "oid": 210453509364, + "crossed": true, + "fee": "0.105083", + "tid": 607781768568612, + "cloid": "0x00000000000000000000001644000414", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132788.0", + "side": "B", + "time": 1761231455924, + "startPosition": "-2051147488.0", + "dir": "Close Short", + "closedPnl": "237.02658", + "hash": "0x62049b0abb99233e637e042e0c1daa02032700f0569c421005cd465d7a9cfd29", + "oid": 210453530121, + "crossed": true, + "fee": "0.105016", + "tid": 498509417023431, + "cloid": "0x00000000000000000000001644000415", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132802.0", + "side": "B", + "time": 1761231457198, + "startPosition": "-2051014700.0", + "dir": "Close Short", + "closedPnl": "236.918768", + "hash": "0xca4e1e11ed5b416ccbc7042e0c1db602036700f7885e603e6e16c964ac5f1b57", + "oid": 210453546406, + "crossed": true, + "fee": "0.105055", + "tid": 1118761159088134, + "cloid": "0x00000000000000000000001644000416", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132790.0", + "side": "B", + "time": 1761231458592, + "startPosition": "-2050881898.0", + "dir": "Close Short", + "closedPnl": "236.89736", + "hash": "0x6f9328150aba83e4710c042e0c1dc80205d300faa5bda2b6135bd367c9be5dcf", + "oid": 210453565917, + "crossed": true, + "fee": "0.105046", + "tid": 419424083171333, + "cloid": "0x00000000000000000000001644000417", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "129730.0", + "side": "B", + "time": 1761231459911, + "startPosition": "-2050749108.0", + "dir": "Close Short", + "closedPnl": "231.56805", + "hash": "0xfa53bfe56062149efbcd042e0c1dda02050c00cafb6533719e1c6b381f65ee89", + "oid": 210453584830, + "crossed": true, + "fee": "0.102598", + "tid": 522211790174504, + "cloid": "0x00000000000000000000001644000418", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "3037.0", + "side": "B", + "time": 1761231459911, + "startPosition": "-2050619378.0", + "dir": "Close Short", + "closedPnl": "5.421045", + "hash": "0xfa53bfe56062149efbcd042e0c1dda02050c00cafb6533719e1c6b381f65ee89", + "oid": 210453584830, + "crossed": true, + "fee": "0.002401", + "tid": 177258146608984, + "cloid": "0x00000000000000000000001644000418", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.4", + "sz": "0.5053", + "side": "A", + "time": 1761231460939, + "startPosition": "-2146.6773", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x7c9bbe6c2ef9de097e15042e0c1de80204170051c9fcfcdb206469beedfdb7f4", + "oid": 210453601226, + "crossed": true, + "fee": "0.40794", + "tid": 1045685498721308, + "cloid": "0x00000000000000000000001643000865", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.4", + "sz": "0.3815", + "side": "A", + "time": 1761231460939, + "startPosition": "-2147.1826", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x7c9bbe6c2ef9de097e15042e0c1de80204170051c9fcfcdb206469beedfdb7f4", + "oid": 210453601226, + "crossed": true, + "fee": "0.307994", + "tid": 448308333850737, + "cloid": "0x00000000000000000000001643000865", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.4", + "sz": "0.705", + "side": "A", + "time": 1761231460939, + "startPosition": "-2147.5641", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x7c9bbe6c2ef9de097e15042e0c1de80204170051c9fcfcdb206469beedfdb7f4", + "oid": 210453601226, + "crossed": true, + "fee": "0.569163", + "tid": 680456641999891, + "cloid": "0x00000000000000000000001643000865", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.4", + "sz": "0.3664", + "side": "A", + "time": 1761231460939, + "startPosition": "-2148.2691", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x7c9bbe6c2ef9de097e15042e0c1de80204170051c9fcfcdb206469beedfdb7f4", + "oid": 210453601226, + "crossed": true, + "fee": "0.295803", + "tid": 520536831226694, + "cloid": "0x00000000000000000000001643000865", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.4", + "sz": "0.6433", + "side": "A", + "time": 1761231460939, + "startPosition": "-2148.6355", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x7c9bbe6c2ef9de097e15042e0c1de80204170051c9fcfcdb206469beedfdb7f4", + "oid": 210453601226, + "crossed": true, + "fee": "0.519351", + "tid": 776610035911703, + "cloid": "0x00000000000000000000001643000865", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132802.0", + "side": "B", + "time": 1761231461363, + "startPosition": "-2050616341.0", + "dir": "Close Short", + "closedPnl": "237.05157", + "hash": "0xb1f47b6e1bbb970fb36e042e0c1dec0209af0053b6beb5e155bd26c0dabf70fa", + "oid": 210453609290, + "crossed": true, + "fee": "0.105027", + "tid": 400956469792957, + "cloid": "0x00000000000000000000001644000419", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132767.0", + "side": "B", + "time": 1761231462730, + "startPosition": "-2050483539.0", + "dir": "Close Short", + "closedPnl": "236.856328", + "hash": "0xe584d0e24c053528e6fe042e0c1dfc0205ac00c7e70853fa894d7c350b090f13", + "oid": 210453645034, + "crossed": true, + "fee": "0.105027", + "tid": 885906796496260, + "cloid": "0x00000000000000000000001644000420", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.3", + "sz": "0.1339", + "side": "A", + "time": 1761231462872, + "startPosition": "-2149.2788", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x4534d6512fabeb4546ae042e0c1dfe020a6c0036caaf0a17e8fd81a3eeafc52f", + "oid": 210453636260, + "crossed": false, + "fee": "0.01442", + "tid": 1119214914277769, + "cloid": "0x00000000000000000000001643000866", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132767.0", + "side": "B", + "time": 1761231464236, + "startPosition": "-2050350772.0", + "dir": "Close Short", + "closedPnl": "236.856328", + "hash": "0xc775eea265f19cd2c8ef042e0c1e1002023f008800f4bba46b3e99f524f576bd", + "oid": 210453672759, + "crossed": true, + "fee": "0.105027", + "tid": 624966641662778, + "cloid": "0x00000000000000000000001644000421", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132767.0", + "side": "B", + "time": 1761231465481, + "startPosition": "-2050218005.0", + "dir": "Close Short", + "closedPnl": "236.856328", + "hash": "0x9f529db03e9a1ab0a0cc042e0c1e1f0203ce0095d99d3982431b4902fd9df49b", + "oid": 210453690492, + "crossed": true, + "fee": "0.105027", + "tid": 343378447463390, + "cloid": "0x00000000000000000000001644000422", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.3", + "sz": "0.0051", + "side": "A", + "time": 1761231467067, + "startPosition": "-2149.4127", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210453636260, + "crossed": false, + "fee": "0.000549", + "tid": 539809593170357, + "cloid": "0x00000000000000000000001643000866", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132766.0", + "side": "B", + "time": 1761231471447, + "startPosition": "-2050085238.0", + "dir": "Close Short", + "closedPnl": "236.854544", + "hash": "0xeb68356a22fe525cece1042e0c1e71020aea004fbdf1712e8f30e0bce1f22c47", + "oid": 210453767615, + "crossed": true, + "fee": "0.105027", + "tid": 276183389400492, + "cloid": "0x00000000000000000000001644000423", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132777.0", + "side": "B", + "time": 1761231472861, + "startPosition": "-2049952472.0", + "dir": "Close Short", + "closedPnl": "236.741391", + "hash": "0x2c62e2f49cf61f552ddc042e0c1e830203b000da37f93e27d02b8e475bf9f93f", + "oid": 210453781506, + "crossed": true, + "fee": "0.105063", + "tid": 19879908178868, + "cloid": "0x00000000000000000000001644000424", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132802.0", + "side": "B", + "time": 1761231474279, + "startPosition": "-2049819695.0", + "dir": "Close Short", + "closedPnl": "236.918768", + "hash": "0x5c065f02f8c7d8dd5d80042e0c1e9502079b00e893caf7afffcf0a55b7cbb2c7", + "oid": 210453795478, + "crossed": true, + "fee": "0.105055", + "tid": 273572494430676, + "cloid": "0x00000000000000000000001644000425", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132837.0", + "side": "B", + "time": 1761231479946, + "startPosition": "-2049686893.0", + "dir": "Close Short", + "closedPnl": "237.114045", + "hash": "0x66f2fdd5d9f6c98a686c042e0c1ed702035c00bb74f9e85c0abba92898faa375", + "oid": 210453871898, + "crossed": true, + "fee": "0.105055", + "tid": 403635962006187, + "cloid": "0x00000000000000000000001644000427", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.7", + "sz": "2.4612", + "side": "A", + "time": 1761231483811, + "startPosition": "-2149.4178", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x7a830edfbd9ff8627bfc042e0c1f05020a4000c5589317341e4bba327c93d24d", + "oid": 210453936053, + "crossed": false, + "fee": "0.264952", + "tid": 885998201548290, + "cloid": "0x00000000000000000000001643000870", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132767.0", + "side": "B", + "time": 1761231483811, + "startPosition": "-2049554056.0", + "dir": "Close Short", + "closedPnl": "236.989095", + "hash": "0xb8ba2080a281193aba33042e0c1f05020a6700663d84380c5c82cbd36184f325", + "oid": 210453941182, + "crossed": true, + "fee": "0.105", + "tid": 1077331714421832, + "cloid": "0x00000000000000000000001644000428", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "107481.0", + "side": "B", + "time": 1761231486341, + "startPosition": "-2049421289.0", + "dir": "Close Short", + "closedPnl": "191.853585", + "hash": "0x51ec362cf4a4a6045365042e0c1f240202fe00128fa7c4d6f5b4e17fb3a87fee", + "oid": 210453983173, + "crossed": true, + "fee": "0.085002", + "tid": 44342198970805, + "cloid": "0x00000000000000000000001644000429", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "25321.0", + "side": "B", + "time": 1761231486341, + "startPosition": "-2049313808.0", + "dir": "Close Short", + "closedPnl": "45.197985", + "hash": "0x51ec362cf4a4a6045365042e0c1f240202fe00128fa7c4d6f5b4e17fb3a87fee", + "oid": 210453983173, + "crossed": true, + "fee": "0.020025", + "tid": 367842155511227, + "cloid": "0x00000000000000000000001644000429", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132802.0", + "side": "B", + "time": 1761231496437, + "startPosition": "-2049288487.0", + "dir": "Close Short", + "closedPnl": "237.05157", + "hash": "0xccf4588abf32a7b5ce6e042e0c1fa202019900705a35c68770bd03dd7e3681a0", + "oid": 210454109225, + "crossed": true, + "fee": "0.105027", + "tid": 677359355214340, + "cloid": "0x00000000000000000000001644000430", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132767.0", + "side": "B", + "time": 1761231497669, + "startPosition": "-2049155685.0", + "dir": "Close Short", + "closedPnl": "236.856328", + "hash": "0x8d1c44830ec4ce1a8e96042e0c1fb00203340068a9c7ecec30e4efd5cdc8a805", + "oid": 210454126937, + "crossed": true, + "fee": "0.105027", + "tid": 289244013473265, + "cloid": "0x00000000000000000000001644000431", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "132719.0", + "side": "B", + "time": 1761231500298, + "startPosition": "-2049022918.0", + "dir": "Close Short", + "closedPnl": "236.505258", + "hash": "0xc58a0d78a57d983bc703042e0c1fd502075e005e4070b70d6952b8cb64717226", + "oid": 210454159409, + "crossed": true, + "fee": "0.105045", + "tid": 687558867696778, + "cloid": "0x00000000000000000000001644000432", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132696.0", + "side": "B", + "time": 1761231504337, + "startPosition": "-2048890199.0", + "dir": "Close Short", + "closedPnl": "236.596968", + "hash": "0x68053cf626313ff4697e042e0c200902034600dbc1345ec60bcde848e53519df", + "oid": 210454214098, + "crossed": true, + "fee": "0.104999", + "tid": 317995377380050, + "cloid": "0x00000000000000000000001644000433", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132780.0", + "side": "B", + "time": 1761231505744, + "startPosition": "-2048757503.0", + "dir": "Close Short", + "closedPnl": "236.87952", + "hash": "0x59f803743646359a5b71042e0c201902029f0059d149546cfdc0aec6f54a0f84", + "oid": 210454231378, + "crossed": true, + "fee": "0.105038", + "tid": 192083199791265, + "cloid": "0x00000000000000000000001644000434", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132802.0", + "side": "B", + "time": 1761231507269, + "startPosition": "-2048624723.0", + "dir": "Close Short", + "closedPnl": "236.918768", + "hash": "0x6b31c3109b53ab746cab042e0c20290203c800f63656ca460efa6e635a57855f", + "oid": 210454246843, + "crossed": true, + "fee": "0.105055", + "tid": 440224646411565, + "cloid": "0x00000000000000000000001644000435", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132766.0", + "side": "B", + "time": 1761231508756, + "startPosition": "-2048491921.0", + "dir": "Close Short", + "closedPnl": "236.854544", + "hash": "0x15e050cb075cd5cd175a042e0c203f02019a00b0a25ff49fb9a8fc1dc650afb7", + "oid": 210454260615, + "crossed": true, + "fee": "0.105027", + "tid": 790867706495837, + "cloid": "0x00000000000000000000001644000436", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003765", + "sz": "132802.0", + "side": "B", + "time": 1761231509997, + "startPosition": "-2048359155.0", + "dir": "Close Short", + "closedPnl": "237.184372", + "hash": "0x12f3952b7de53468146d042e0c20500201d6001118e8533ab6bc407e3ce90e52", + "oid": 210454280006, + "crossed": true, + "fee": "0.104999", + "tid": 133809696109231, + "cloid": "0x00000000000000000000001644000437", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132848.0", + "side": "B", + "time": 1761231523696, + "startPosition": "-2048226353.0", + "dir": "Close Short", + "closedPnl": "237.13368", + "hash": "0x8a959e39fef5f36e8c0f042e0c20fe020329001f99f912402e5e498cbdf9cd59", + "oid": 210454487312, + "crossed": true, + "fee": "0.105064", + "tid": 1116166949562349, + "cloid": "0x00000000000000000000001644000441", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132814.0", + "side": "B", + "time": 1761231524836, + "startPosition": "-2048093505.0", + "dir": "Close Short", + "closedPnl": "237.07299", + "hash": "0x56b3f92e0cbb50fc582d042e0c210f0206500013a7be6fcefa7ca480cbbf2ae6", + "oid": 210454504612, + "crossed": true, + "fee": "0.105037", + "tid": 677264948664743, + "cloid": "0x00000000000000000000001644000442", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132846.0", + "side": "B", + "time": 1761231528021, + "startPosition": "-2047960691.0", + "dir": "Close Short", + "closedPnl": "236.997264", + "hash": "0x039fc6c17496ca7f0519042e0c213902012c00a70f99e951a7687214339aa469", + "oid": 210454537846, + "crossed": true, + "fee": "0.10509", + "tid": 1046604609288305, + "cloid": "0x00000000000000000000001644000444", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132766.0", + "side": "B", + "time": 1761231529407, + "startPosition": "-2047827845.0", + "dir": "Close Short", + "closedPnl": "236.854544", + "hash": "0x3b9b5d27fedf010a3d15042e0c2149020120000d99d21fdcdf64087abdd2daf4", + "oid": 210454554620, + "crossed": true, + "fee": "0.105027", + "tid": 509162320753849, + "cloid": "0x00000000000000000000001644000445", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "107473.0", + "side": "B", + "time": 1761231530616, + "startPosition": "-2047695079.0", + "dir": "Close Short", + "closedPnl": "191.731832", + "hash": "0x67dfeb07c4c885976959042e0c215702011100ed5fcba4690ba8965a83cc5f82", + "oid": 210454562191, + "crossed": true, + "fee": "0.085018", + "tid": 738528140070285, + "cloid": "0x00000000000000000000001644000446", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "25294.0", + "side": "B", + "time": 1761231530616, + "startPosition": "-2047587606.0", + "dir": "Close Short", + "closedPnl": "45.124496", + "hash": "0x67dfeb07c4c885976959042e0c215702011100ed5fcba4690ba8965a83cc5f82", + "oid": 210454562191, + "crossed": true, + "fee": "0.020009", + "tid": 521116258934108, + "cloid": "0x00000000000000000000001644000446", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132783.0", + "side": "B", + "time": 1761231531877, + "startPosition": "-2047562312.0", + "dir": "Close Short", + "closedPnl": "236.884872", + "hash": "0x8b1e59c43344e9b38c98042e0c21670203e900a9ce4808852ee70516f248c39e", + "oid": 210454572037, + "crossed": true, + "fee": "0.10504", + "tid": 39309117645579, + "cloid": "0x00000000000000000000001644000447", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132755.0", + "side": "B", + "time": 1761231533330, + "startPosition": "-2047429529.0", + "dir": "Close Short", + "closedPnl": "236.83492", + "hash": "0x6e147eb50ab346826f8e042e0c217b020214009aa5b6655411dd2a07c9b7206d", + "oid": 210454581702, + "crossed": true, + "fee": "0.105018", + "tid": 295327073708828, + "cloid": "0x00000000000000000000001644000448", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132766.0", + "side": "B", + "time": 1761231534525, + "startPosition": "-2047296774.0", + "dir": "Close Short", + "closedPnl": "236.721778", + "hash": "0xab6904e1b0ac2266ace2042e0c218c0202b600c74baf41384f31b0346faffc51", + "oid": 210454590961, + "crossed": true, + "fee": "0.105055", + "tid": 740914870011749, + "cloid": "0x00000000000000000000001644000449", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132766.0", + "side": "B", + "time": 1761231535778, + "startPosition": "-2047164008.0", + "dir": "Close Short", + "closedPnl": "236.721778", + "hash": "0x40f3182ed85bca5f426c042e0c219f02024a0014735ee931e4bbc381975fa449", + "oid": 210454604717, + "crossed": true, + "fee": "0.105055", + "tid": 537839449849440, + "cloid": "0x00000000000000000000001644000450", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132780.0", + "side": "B", + "time": 1761231537670, + "startPosition": "-2047031242.0", + "dir": "Close Short", + "closedPnl": "236.87952", + "hash": "0x5555a7e305c1c43f56cf042e0c21b902023700c8a0c4e311f91e5335c4c59e29", + "oid": 210454631274, + "crossed": true, + "fee": "0.105038", + "tid": 1119805038127676, + "cloid": "0x00000000000000000000001644000451", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132802.0", + "side": "B", + "time": 1761231538836, + "startPosition": "-2046898462.0", + "dir": "Close Short", + "closedPnl": "237.05157", + "hash": "0x350437024317d451367d042e0c21c802014900e7de1af323d8cce255021bae3b", + "oid": 210454646217, + "crossed": true, + "fee": "0.105027", + "tid": 1111274812308575, + "cloid": "0x00000000000000000000001644000452", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132873.0", + "side": "B", + "time": 1761231553697, + "startPosition": "-2046765660.0", + "dir": "Close Short", + "closedPnl": "237.178305", + "hash": "0xbc1e7e5505000621bd98042e0c228e020162003aa00324f35fe729a7c403e00c", + "oid": 210454828702, + "crossed": true, + "fee": "0.105083", + "tid": 155589155404259, + "cloid": "0x00000000000000000000001644000455", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.9", + "sz": "0.4909", + "side": "A", + "time": 1761231553697, + "startPosition": "-2151.879", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6ef1f4f01e91489d706b042e0c228e02016300d5b994676f12baa042dd952288", + "oid": 210454828703, + "crossed": true, + "fee": "0.396469", + "tid": 823346516164443, + "cloid": "0x00000000000000000000001643000883", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.9", + "sz": "1.5", + "side": "A", + "time": 1761231553697, + "startPosition": "-2152.3699", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6ef1f4f01e91489d706b042e0c228e02016300d5b994676f12baa042dd952288", + "oid": 210454828703, + "crossed": true, + "fee": "1.211458", + "tid": 885985212982998, + "cloid": "0x00000000000000000000001643000883", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.9", + "sz": "0.6097", + "side": "A", + "time": 1761231553697, + "startPosition": "-2153.8699", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6ef1f4f01e91489d706b042e0c228e02016300d5b994676f12baa042dd952288", + "oid": 210454828703, + "crossed": true, + "fee": "0.492417", + "tid": 387580964602405, + "cloid": "0x00000000000000000000001643000883", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132837.0", + "side": "B", + "time": 1761231557562, + "startPosition": "-2046632787.0", + "dir": "Close Short", + "closedPnl": "237.114045", + "hash": "0x44f93cb7e526de594672042e0c22bc02034e009d8029fd2be8c1e80aa42ab843", + "oid": 210454871318, + "crossed": true, + "fee": "0.105055", + "tid": 237898194161339, + "cloid": "0x00000000000000000000001644000457", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132790.0", + "side": "B", + "time": 1761231562479, + "startPosition": "-2046499950.0", + "dir": "Close Short", + "closedPnl": "237.03015", + "hash": "0x979890daca18466f9912042e0c22f702030e00c0651b65413b613c2d891c205a", + "oid": 210454901064, + "crossed": true, + "fee": "0.105018", + "tid": 10419638850110, + "cloid": "0x00000000000000000000001644000458", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132802.0", + "side": "B", + "time": 1761231573287, + "startPosition": "-2046367160.0", + "dir": "Close Short", + "closedPnl": "237.05157", + "hash": "0xf09bd0fe7d21692af215042e0c23840206e600e4182487fd94647c513c254315", + "oid": 210454987260, + "crossed": true, + "fee": "0.105027", + "tid": 692734295497272, + "cloid": "0x00000000000000000000001644000459", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132819.0", + "side": "B", + "time": 1761231578379, + "startPosition": "-2046234358.0", + "dir": "Close Short", + "closedPnl": "237.081915", + "hash": "0x8172588c167f644082ec042e0c23bf0203dc0071b1728312253b03ded5733e2b", + "oid": 210455039571, + "crossed": true, + "fee": "0.105041", + "tid": 945696640869529, + "cloid": "0x00000000000000000000001644000461", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "129552.0", + "side": "B", + "time": 1761231581658, + "startPosition": "-2046101539.0", + "dir": "Close Short", + "closedPnl": "231.25032", + "hash": "0x2f92219dd23387b2310b042e0c23e702043000836d36a684d35accf09137619c", + "oid": 210455066599, + "crossed": true, + "fee": "0.102457", + "tid": 333926847853497, + "cloid": "0x00000000000000000000001644000463", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "3281.0", + "side": "B", + "time": 1761231581658, + "startPosition": "-2045971987.0", + "dir": "Close Short", + "closedPnl": "5.853304", + "hash": "0x2f92219dd23387b2310b042e0c23e702043000836d36a684d35accf09137619c", + "oid": 210455066599, + "crossed": true, + "fee": "0.002595", + "tid": 728090649889091, + "cloid": "0x00000000000000000000001644000463", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132784.0", + "side": "B", + "time": 1761231583001, + "startPosition": "-2045968706.0", + "dir": "Close Short", + "closedPnl": "236.886656", + "hash": "0x3033add7e35d268731ad042e0c23fa02037300bd7e504559d3fc592aa2510071", + "oid": 210455094421, + "crossed": true, + "fee": "0.105041", + "tid": 126567293976449, + "cloid": "0x00000000000000000000001644000464", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132802.0", + "side": "B", + "time": 1761231589332, + "startPosition": "-2045835922.0", + "dir": "Close Short", + "closedPnl": "236.918768", + "hash": "0xe228d4d12be1c29fe3a2042e0c24510201f100b6c6e4e17185f18023eae59c8a", + "oid": 210455138565, + "crossed": true, + "fee": "0.105055", + "tid": 783491798856360, + "cloid": "0x00000000000000000000001644000465", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132790.0", + "side": "B", + "time": 1761231590757, + "startPosition": "-2045703120.0", + "dir": "Close Short", + "closedPnl": "236.89736", + "hash": "0x52252e9c51bac5fd539e042e0c24620205410081ecbde4cff5edd9ef10be9fe7", + "oid": 210455156942, + "crossed": true, + "fee": "0.105046", + "tid": 1068397666238205, + "cloid": "0x00000000000000000000001644000466", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132788.0", + "side": "B", + "time": 1761231592017, + "startPosition": "-2045570330.0", + "dir": "Close Short", + "closedPnl": "236.893792", + "hash": "0x1893daf84e2b10c91a0d042e0c247202015000dde92e2f9bbc5c864b0d2eeab3", + "oid": 210455174596, + "crossed": true, + "fee": "0.105044", + "tid": 1019911895441024, + "cloid": "0x00000000000000000000001644000467", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.1", + "sz": "2.6006", + "side": "A", + "time": 1761231592625, + "startPosition": "-2154.4796", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x050cef2b4aff327b0686042e0c247b0201b80010e5f2514da8d59a7e09f30c65", + "oid": 210455165774, + "crossed": false, + "fee": "0.280133", + "tid": 833537789378293, + "cloid": "0x00000000000000000000001643000887", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132733.0", + "side": "B", + "time": 1761231593502, + "startPosition": "-2045437542.0", + "dir": "Close Short", + "closedPnl": "236.795672", + "hash": "0xed5a0717184dcebeeed3042e0c24850202a300fcb340ed909122b269d741a8a9", + "oid": 210455192127, + "crossed": true, + "fee": "0.105001", + "tid": 165828108417408, + "cloid": "0x00000000000000000000001644000468", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "54.0", + "side": "B", + "time": 1761231593502, + "startPosition": "-2045304809.0", + "dir": "Close Short", + "closedPnl": "0.096336", + "hash": "0xed5a0717184dcebeeed3042e0c24850202a300fcb340ed909122b269d741a8a9", + "oid": 210455192127, + "crossed": true, + "fee": "0.000042", + "tid": 1075096820698803, + "cloid": "0x00000000000000000000001644000468", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132802.0", + "side": "B", + "time": 1761231594897, + "startPosition": "-2045304755.0", + "dir": "Close Short", + "closedPnl": "236.918768", + "hash": "0xd0ede07584a070c1d267042e0c2496020144005b1fa38f9374b68bc843a44aac", + "oid": 210455208669, + "crossed": true, + "fee": "0.105055", + "tid": 845807677858152, + "cloid": "0x00000000000000000000001644000469", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132545.0", + "side": "B", + "time": 1761231596272, + "startPosition": "-2045171953.0", + "dir": "Close Short", + "closedPnl": "236.46028", + "hash": "0x2d61953c2054143b2edb042e0c24a502012c0021bb57330dd12a408edf57ee25", + "oid": 210455220345, + "crossed": true, + "fee": "0.104852", + "tid": 268669250272511, + "cloid": "0x00000000000000000000001644000470", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "263.0", + "side": "B", + "time": 1761231596272, + "startPosition": "-2045039408.0", + "dir": "Close Short", + "closedPnl": "0.469192", + "hash": "0x2d61953c2054143b2edb042e0c24a502012c0021bb57330dd12a408edf57ee25", + "oid": 210455220345, + "crossed": true, + "fee": "0.000208", + "tid": 37691681531505, + "cloid": "0x00000000000000000000001644000470", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132826.0", + "side": "B", + "time": 1761231599568, + "startPosition": "-2045039145.0", + "dir": "Close Short", + "closedPnl": "236.563106", + "hash": "0xf2195c783d9a5b4df393042e0c24cf0203ce005dd89d7a2095e207cafc9e3538", + "oid": 210455253935, + "crossed": true, + "fee": "0.105158", + "tid": 189105614320357, + "cloid": "0x00000000000000000000001644000472", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.8", + "sz": "2.5991", + "side": "A", + "time": 1761231601921, + "startPosition": "-2157.0802", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x973898c2218c4b0a98b2042e0c24ea02019e00a7bc8f69dc3b014414e08024f5", + "oid": 210455277487, + "crossed": false, + "fee": "0.280022", + "tid": 396512982112636, + "cloid": "0x00000000000000000000001643000888", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.7", + "sz": "1.7", + "side": "A", + "time": 1761231606504, + "startPosition": "-2159.6793", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3365de12be48d23134df042e0c25200201bc00f8594bf103d72e89657d4cac1b", + "oid": 210455346271, + "crossed": true, + "fee": "1.373628", + "tid": 644853049648358, + "cloid": "0x00000000000000000000001643000889", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.7", + "sz": "0.8992", + "side": "A", + "time": 1761231606504, + "startPosition": "-2161.3793", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3365de12be48d23134df042e0c25200201bc00f8594bf103d72e89657d4cac1b", + "oid": 210455346271, + "crossed": true, + "fee": "0.726568", + "tid": 375119849787076, + "cloid": "0x00000000000000000000001643000889", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.6", + "sz": "2.5993", + "side": "A", + "time": 1761231608279, + "startPosition": "-2162.2785", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0f196203884077831093042e0c253902031f00e923439655b2e20d564744516d", + "oid": 210455359873, + "crossed": true, + "fee": "2.100224", + "tid": 663516414246539, + "cloid": "0x00000000000000000000001643000890", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003778", + "sz": "132626.0", + "side": "B", + "time": 1761231610629, + "startPosition": "-2044906319.0", + "dir": "Close Short", + "closedPnl": "235.145898", + "hash": "0x6e7f85377ff609bf6ff9042e0c2558020277001d1af928911248308a3ef9e3aa", + "oid": 210455400986, + "crossed": true, + "fee": "0.105222", + "tid": 734694750459371, + "cloid": "0x00000000000000000000001644000475", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003779", + "sz": "132345.0", + "side": "B", + "time": 1761231613268, + "startPosition": "-2044773693.0", + "dir": "Close Short", + "closedPnl": "234.51534", + "hash": "0x1c56c13fe4ec45f71dd0042e0c25780201fe00257fef64c9c01f6c92a3e01fe1", + "oid": 210455439691, + "crossed": true, + "fee": "0.105027", + "tid": 515216144057132, + "cloid": "0x00000000000000000000001644000476", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.7", + "sz": "2.5991", + "side": "A", + "time": 1761231614566, + "startPosition": "-2164.8778", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8b1efdc2e7612d3e8c98042e0c258b0202c700a882644c102ee7a915a6650729", + "oid": 210455421658, + "crossed": false, + "fee": "0.280088", + "tid": 930128679519125, + "cloid": "0x00000000000000000000001643000892", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003779", + "sz": "132350.0", + "side": "B", + "time": 1761231615998, + "startPosition": "-2044641348.0", + "dir": "Close Short", + "closedPnl": "234.5242", + "hash": "0x61c043f5962120b4633a042e0c25a002036a00db31243f860588ef485524fa9f", + "oid": 210455478210, + "crossed": true, + "fee": "0.105031", + "tid": 203712478848677, + "cloid": "0x00000000000000000000001644000477", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003779", + "sz": "132380.0", + "side": "B", + "time": 1761231617298, + "startPosition": "-2044508998.0", + "dir": "Close Short", + "closedPnl": "234.57736", + "hash": "0xac3f99f9bc783425adb9042e0c25b202023d00df577b52f75008454c7b7c0e10", + "oid": 210455489211, + "crossed": true, + "fee": "0.105055", + "tid": 1060463187676585, + "cloid": "0x00000000000000000000001644000478", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003778", + "sz": "132367.0", + "side": "B", + "time": 1761231619263, + "startPosition": "-2044376618.0", + "dir": "Close Short", + "closedPnl": "234.686691", + "hash": "0xca163e36634431f6cb8f042e0c25c9020d7f001bfe4750c86ddee98922480be1", + "oid": 210455526302, + "crossed": true, + "fee": "0.105017", + "tid": 1052252764276644, + "cloid": "0x00000000000000000000001644000479", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003778", + "sz": "132430.0", + "side": "B", + "time": 1761231620685, + "startPosition": "-2044244251.0", + "dir": "Close Short", + "closedPnl": "234.79839", + "hash": "0x1be8a761fa8fcd461d62042e0c25d90206c300479582ec18bfb152b4b983a730", + "oid": 210455551748, + "crossed": true, + "fee": "0.105067", + "tid": 740393101480335, + "cloid": "0x00000000000000000000001644000480", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "132438.0", + "side": "B", + "time": 1761231622196, + "startPosition": "-2044111821.0", + "dir": "Close Short", + "closedPnl": "234.945012", + "hash": "0xc9add9d5447a29adcb27042e0c25eb0201e000badf7d487f6d768528037e0398", + "oid": 210455571398, + "crossed": true, + "fee": "0.105045", + "tid": 405531234962450, + "cloid": "0x00000000000000000000001644000481", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "50610.0", + "side": "B", + "time": 1761231625966, + "startPosition": "-2043979383.0", + "dir": "Close Short", + "closedPnl": "89.78214", + "hash": "0xdf58aefba57bf77ee0d2042e0c261c0203bb00e1407f165083215a4e647fd169", + "oid": 210455611396, + "crossed": true, + "fee": "0.040142", + "tid": 839464369752669, + "cloid": "0x00000000000000000000001644000483", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "50617.0", + "side": "B", + "time": 1761231625966, + "startPosition": "-2043928773.0", + "dir": "Close Short", + "closedPnl": "89.794558", + "hash": "0xdf58aefba57bf77ee0d2042e0c261c0203bb00e1407f165083215a4e647fd169", + "oid": 210455611396, + "crossed": true, + "fee": "0.040147", + "tid": 933628210908322, + "cloid": "0x00000000000000000000001644000483", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003778", + "sz": "31246.0", + "side": "B", + "time": 1761231625966, + "startPosition": "-2043878156.0", + "dir": "Close Short", + "closedPnl": "55.399158", + "hash": "0xdf58aefba57bf77ee0d2042e0c261c0203bb00e1407f165083215a4e647fd169", + "oid": 210455611396, + "crossed": true, + "fee": "0.024789", + "tid": 283689273583303, + "cloid": "0x00000000000000000000001644000483", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.8", + "sz": "2.5983", + "side": "A", + "time": 1761231626578, + "startPosition": "-2167.4769", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6f30f51bc69ab4aa70aa042e0c262302013a0001619dd37c12f9a06e859e8e95", + "oid": 210455613280, + "crossed": true, + "fee": "2.099525", + "tid": 598197658849849, + "cloid": "0x00000000000000000000001643000894", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003778", + "sz": "132450.0", + "side": "B", + "time": 1761231627349, + "startPosition": "-2043846910.0", + "dir": "Close Short", + "closedPnl": "234.83385", + "hash": "0x9149bbec4f70672d92c3042e0c262d02014600d1ea7385ff3512673f0e744118", + "oid": 210455617121, + "crossed": true, + "fee": "0.105083", + "tid": 1099459235298720, + "cloid": "0x00000000000000000000001644000484", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "132472.0", + "side": "B", + "time": 1761231630878, + "startPosition": "-2043714460.0", + "dir": "Close Short", + "closedPnl": "235.005328", + "hash": "0x9bba9c3e58f30bc09d34042e0c26530202600023f3f62a923f83479117f6e5ab", + "oid": 210455663781, + "crossed": true, + "fee": "0.105072", + "tid": 254556771765848, + "cloid": "0x00000000000000000000001644000486", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003779", + "sz": "132380.0", + "side": "B", + "time": 1761231640814, + "startPosition": "-2043581988.0", + "dir": "Close Short", + "closedPnl": "234.57736", + "hash": "0xd9b154e724369e32db2b042e0c26d70203a000ccbf39bd047d7a0039e33a781d", + "oid": 210455747845, + "crossed": true, + "fee": "0.105055", + "tid": 212889131965344, + "cloid": "0x00000000000000000000001644000487", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003779", + "sz": "132380.0", + "side": "B", + "time": 1761231642127, + "startPosition": "-2043449608.0", + "dir": "Close Short", + "closedPnl": "234.57736", + "hash": "0xf35aa90282e5eb74f4d4042e0c26e40202c200e81de90a479723545541e9c55f", + "oid": 210455760282, + "crossed": true, + "fee": "0.105055", + "tid": 299539088155140, + "cloid": "0x00000000000000000000001644000488", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.5", + "sz": "0.3673", + "side": "A", + "time": 1761231647291, + "startPosition": "-2170.0752", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8c02cd0de20a94708d7c042e0c271f02031d00f37d0db3422fcb7860a10e6e5b", + "oid": 210455812690, + "crossed": true, + "fee": "0.296846", + "tid": 333968004683473, + "cloid": "0x00000000000000000000001643000896", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.5", + "sz": "0.9138", + "side": "A", + "time": 1761231647291, + "startPosition": "-2170.4425", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8c02cd0de20a94708d7c042e0c271f02031d00f37d0db3422fcb7860a10e6e5b", + "oid": 210455812690, + "crossed": true, + "fee": "0.738519", + "tid": 213028335431484, + "cloid": "0x00000000000000000000001643000896", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.5", + "sz": "0.3673", + "side": "A", + "time": 1761231647291, + "startPosition": "-2171.3563", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8c02cd0de20a94708d7c042e0c271f02031d00f37d0db3422fcb7860a10e6e5b", + "oid": 210455812690, + "crossed": true, + "fee": "0.296846", + "tid": 337280286759058, + "cloid": "0x00000000000000000000001643000896", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.5", + "sz": "0.9507", + "side": "A", + "time": 1761231647291, + "startPosition": "-2171.7236", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8c02cd0de20a94708d7c042e0c271f02031d00f37d0db3422fcb7860a10e6e5b", + "oid": 210455812690, + "crossed": true, + "fee": "0.768341", + "tid": 237455885247310, + "cloid": "0x00000000000000000000001643000896", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003778", + "sz": "132380.0", + "side": "B", + "time": 1761231648476, + "startPosition": "-2043317228.0", + "dir": "Close Short", + "closedPnl": "234.70974", + "hash": "0x022524b7bd218d9a039e042e0c272c02029e009d5824ac6ca5edd00a7c256784", + "oid": 210455829658, + "crossed": true, + "fee": "0.105027", + "tid": 1060552095719879, + "cloid": "0x00000000000000000000001644000489", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003779", + "sz": "132362.0", + "side": "B", + "time": 1761231649974, + "startPosition": "-2043184848.0", + "dir": "Close Short", + "closedPnl": "234.545464", + "hash": "0xbae2c6f56f7ab609bc5c042e0c273d0201f600db0a7dd4db5eab72482e7e8ff4", + "oid": 210455854360, + "crossed": true, + "fee": "0.105041", + "tid": 1053761379927386, + "cloid": "0x00000000000000000000001644000490", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "132368.0", + "side": "B", + "time": 1761231651180, + "startPosition": "-2043052486.0", + "dir": "Close Short", + "closedPnl": "234.423728", + "hash": "0x633e75b16acb2a9064b8042e0c274b0201ad009705ce49620707210429cf047b", + "oid": 210455866028, + "crossed": true, + "fee": "0.105073", + "tid": 601660212633572, + "cloid": "0x00000000000000000000001644000491", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003778", + "sz": "132333.0", + "side": "B", + "time": 1761231661340, + "startPosition": "-2042920118.0", + "dir": "Close Short", + "closedPnl": "234.626409", + "hash": "0x0fabb73f84cc5b011125042e0c27d30203a500251fcf79d3b374629243c034eb", + "oid": 210456017274, + "crossed": true, + "fee": "0.10499", + "tid": 979094229721801, + "cloid": "0x00000000000000000000001644000495", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.0", + "sz": "1.8191", + "side": "A", + "time": 1761231666818, + "startPosition": "-2172.6743", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x754f94b51f56103776c9042e0c281d020344009aba592f0919184007de59ea22", + "oid": 210456111461, + "crossed": true, + "fee": "1.469978", + "tid": 113722668954592, + "cloid": "0x00000000000000000000001643000900", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.0", + "sz": "0.7797", + "side": "A", + "time": 1761231666818, + "startPosition": "-2174.4934", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x754f94b51f56103776c9042e0c281d020344009aba592f0919184007de59ea22", + "oid": 210456111461, + "crossed": true, + "fee": "0.630059", + "tid": 16091614139629, + "cloid": "0x00000000000000000000001643000900", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.9", + "sz": "1.1873", + "side": "A", + "time": 1761231669002, + "startPosition": "-2175.2731", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x406aa1aff682fa3641e4042e0c28390208a3009591861908e4334d02b586d420", + "oid": 210456152069, + "crossed": true, + "fee": "0.959408", + "tid": 166302879298156, + "cloid": "0x00000000000000000000001643000901", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.9", + "sz": "1.0881", + "side": "A", + "time": 1761231669002, + "startPosition": "-2176.4604", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x406aa1aff682fa3641e4042e0c28390208a3009591861908e4334d02b586d420", + "oid": 210456152069, + "crossed": true, + "fee": "0.879248", + "tid": 617938843525913, + "cloid": "0x00000000000000000000001643000901", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.9", + "sz": "0.3238", + "side": "A", + "time": 1761231669002, + "startPosition": "-2177.5485", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x406aa1aff682fa3641e4042e0c28390208a3009591861908e4334d02b586d420", + "oid": 210456152069, + "crossed": true, + "fee": "0.261649", + "tid": 554623234903401, + "cloid": "0x00000000000000000000001643000901", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132485.0", + "side": "B", + "time": 1761231669548, + "startPosition": "-2042787785.0", + "dir": "Close Short", + "closedPnl": "235.955785", + "hash": "0xd7bdc57be7d3f7ded937042e0c284002031d006182d716b07b8670cea6d7d1c9", + "oid": 210456160960, + "crossed": true, + "fee": "0.104888", + "tid": 729878059304974, + "cloid": "0x00000000000000000000001644000498", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132766.0", + "side": "B", + "time": 1761231677047, + "startPosition": "-2042655300.0", + "dir": "Close Short", + "closedPnl": "236.721778", + "hash": "0x429da7ff22b37d744417042e0c289b0203f400e4bdb69c46e6665351e1b7575e", + "oid": 210456219286, + "crossed": true, + "fee": "0.105055", + "tid": 729649418111183, + "cloid": "0x00000000000000000000001644000499", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "132823.0", + "side": "B", + "time": 1761231693450, + "startPosition": "-2042522534.0", + "dir": "Close Short", + "closedPnl": "237.885993", + "hash": "0x3b9ff722220b2aaa3d19042e0c29770201650007bd0e497cdf68a274e10f0494", + "oid": 210456461457, + "crossed": true, + "fee": "0.104877", + "tid": 70003783997719, + "cloid": "0x00000000000000000000001644000504", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "133077.0", + "side": "B", + "time": 1761231695303, + "startPosition": "-2042389711.0", + "dir": "Close Short", + "closedPnl": "238.340907", + "hash": "0x58d8a35d950bfef95a52042e0c29910212130043300f1dcbfca14eb0540fd8e3", + "oid": 210456496311, + "crossed": true, + "fee": "0.105077", + "tid": 828831656804885, + "cloid": "0x00000000000000000000001644000505", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "133020.0", + "side": "B", + "time": 1761231696754, + "startPosition": "-2042256634.0", + "dir": "Close Short", + "closedPnl": "238.23882", + "hash": "0x197fe3671614f8501af9042e0c29a1020afc004cb1181722bd488eb9d518d23a", + "oid": 210456521231, + "crossed": true, + "fee": "0.105032", + "tid": 213501597789576, + "cloid": "0x00000000000000000000001644000506", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.3", + "sz": "0.0347", + "side": "A", + "time": 1761231699005, + "startPosition": "-2177.8723", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210456505762, + "crossed": false, + "fee": "0.003737", + "tid": 373587428833770, + "cloid": "0x00000000000000000000001643000906", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "133043.0", + "side": "B", + "time": 1761231703242, + "startPosition": "-2042123614.0", + "dir": "Close Short", + "closedPnl": "238.280013", + "hash": "0x557cdf6376e3103756f6042e0c29f802019e004911e62f09f9458ab635e6ea21", + "oid": 210456592410, + "crossed": true, + "fee": "0.10505", + "tid": 544752730789980, + "cloid": "0x00000000000000000000001644000509", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133085.0", + "side": "B", + "time": 1761231704938, + "startPosition": "-2041990571.0", + "dir": "Close Short", + "closedPnl": "238.48832", + "hash": "0x31e5b3b27075c749335f042e0c2a0d02027600980b78e61bd5ae5f052f79a133", + "oid": 210456623365, + "crossed": true, + "fee": "0.105055", + "tid": 778721085187008, + "cloid": "0x00000000000000000000001644000510", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133135.0", + "side": "B", + "time": 1761231706462, + "startPosition": "-2041857486.0", + "dir": "Close Short", + "closedPnl": "238.711055", + "hash": "0x5fed9debb0fa42a36167042e0c2a1e0205a900d14bfd617503b6493e6ffe1c8e", + "oid": 210456656660, + "crossed": true, + "fee": "0.105067", + "tid": 496159996968159, + "cloid": "0x00000000000000000000001644000511", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133191.0", + "side": "B", + "time": 1761231712708, + "startPosition": "-2041724351.0", + "dir": "Close Short", + "closedPnl": "238.944654", + "hash": "0xcdc187a17bd5d7efcf3b042e0c2a640204a9008716d8f6c1718a32f43ad9b1da", + "oid": 210456756345, + "crossed": true, + "fee": "0.105083", + "tid": 742479205877210, + "cloid": "0x00000000000000000000001644000514", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3843.3", + "sz": "0.8987", + "side": "A", + "time": 1761231714671, + "startPosition": "-2177.907", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x63b30f7b9b8ea200652c042e0c2a7a02026e00613681c0d2077bbace5a827beb", + "oid": 210456780574, + "crossed": true, + "fee": "0.725334", + "tid": 382797163709925, + "cloid": "0x00000000000000000000001643000910", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3843.3", + "sz": "1.6654", + "side": "A", + "time": 1761231714671, + "startPosition": "-2178.8057", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x63b30f7b9b8ea200652c042e0c2a7a02026e00613681c0d2077bbace5a827beb", + "oid": 210456780574, + "crossed": true, + "fee": "1.344132", + "tid": 636760650606500, + "cloid": "0x00000000000000000000001643000910", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133120.0", + "side": "B", + "time": 1761231717099, + "startPosition": "-2041591160.0", + "dir": "Close Short", + "closedPnl": "238.81728", + "hash": "0x65ca1c3defa147fa6743042e0c2a970203af00238aa466cc0992c790aea521e5", + "oid": 210456820574, + "crossed": true, + "fee": "0.105027", + "tid": 666172882085306, + "cloid": "0x00000000000000000000001644000515", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "97422.0", + "side": "B", + "time": 1761231718367, + "startPosition": "-2041458040.0", + "dir": "Close Short", + "closedPnl": "174.775068", + "hash": "0x7ccb8bc06efcf3977e45042e0c2aa702021c00a609f01269209437132df0cd82", + "oid": 210456832905, + "crossed": true, + "fee": "0.076863", + "tid": 434868828082194, + "cloid": "0x00000000000000000000001644000516", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "13308.0", + "side": "B", + "time": 1761231718367, + "startPosition": "-2041360618.0", + "dir": "Close Short", + "closedPnl": "23.874552", + "hash": "0x7ccb8bc06efcf3977e45042e0c2aa702021c00a609f01269209437132df0cd82", + "oid": 210456832905, + "crossed": true, + "fee": "0.010499", + "tid": 941157362161848, + "cloid": "0x00000000000000000000001644000516", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "22426.0", + "side": "B", + "time": 1761231718367, + "startPosition": "-2041347310.0", + "dir": "Close Short", + "closedPnl": "40.232244", + "hash": "0x7ccb8bc06efcf3977e45042e0c2aa702021c00a609f01269209437132df0cd82", + "oid": 210456832905, + "crossed": true, + "fee": "0.017693", + "tid": 905325382851837, + "cloid": "0x00000000000000000000001644000516", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "86767.0", + "side": "B", + "time": 1761231719966, + "startPosition": "-2041324884.0", + "dir": "Close Short", + "closedPnl": "155.659998", + "hash": "0x69756f42588cbdd06aef042e0c2ab90207430027f38fdca20d3e1a95178097bb", + "oid": 210456854049, + "crossed": true, + "fee": "0.068456", + "tid": 241809581661983, + "cloid": "0x00000000000000000000001644000517", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "46360.0", + "side": "B", + "time": 1761231719966, + "startPosition": "-2041238117.0", + "dir": "Close Short", + "closedPnl": "83.16984", + "hash": "0x69756f42588cbdd06aef042e0c2ab90207430027f38fdca20d3e1a95178097bb", + "oid": 210456854049, + "crossed": true, + "fee": "0.036576", + "tid": 1000097562721748, + "cloid": "0x00000000000000000000001644000517", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.0", + "sz": "2.6017", + "side": "A", + "time": 1761231720908, + "startPosition": "-2180.4711", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1b45db77da6c710b1cbf042e0c2ac402039a005d756f8fddbf0e86ca99604af5", + "oid": 210456817806, + "crossed": false, + "fee": "0.280026", + "tid": 650970215159709, + "cloid": "0x00000000000000000000001643000911", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133132.0", + "side": "B", + "time": 1761231723316, + "startPosition": "-2041191757.0", + "dir": "Close Short", + "closedPnl": "238.705676", + "hash": "0xc1920b40aa8980b2c30b042e0c2ae102029b0026458c9f84655ab693698d5a9d", + "oid": 210456898438, + "crossed": true, + "fee": "0.105065", + "tid": 609255733546807, + "cloid": "0x00000000000000000000001644000518", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133132.0", + "side": "B", + "time": 1761231725770, + "startPosition": "-2041058625.0", + "dir": "Close Short", + "closedPnl": "238.838808", + "hash": "0x9fcecfda51907119a148042e0c2afc02016d00bfec938feb43977b2d10944b04", + "oid": 210456925938, + "crossed": true, + "fee": "0.105037", + "tid": 221478403959331, + "cloid": "0x00000000000000000000001644000519", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133156.0", + "side": "B", + "time": 1761231726973, + "startPosition": "-2040925493.0", + "dir": "Close Short", + "closedPnl": "238.881864", + "hash": "0x57f5e773a61e5080596f042e0c2b0c0201a5005941116f52fbbe92c665122a6a", + "oid": 210456941308, + "crossed": true, + "fee": "0.105056", + "tid": 268349622384458, + "cloid": "0x00000000000000000000001644000520", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3843.9", + "sz": "2.6018", + "side": "A", + "time": 1761231728257, + "startPosition": "-2183.0728", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x13b270afcc466c4c152c042e0c2b1a02023a009567498b1eb77b1c028b4a4636", + "oid": 210456920685, + "crossed": false, + "fee": "0.280029", + "tid": 957754264011821, + "cloid": "0x00000000000000000000001643000912", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "106752.0", + "side": "B", + "time": 1761231729042, + "startPosition": "-2040792337.0", + "dir": "Close Short", + "closedPnl": "191.513088", + "hash": "0xf42dca540452e882f5a7042e0c2b240202b100399f56075597f675a6c356c26d", + "oid": 210456965996, + "crossed": true, + "fee": "0.084224", + "tid": 52190387760220, + "cloid": "0x00000000000000000000001644000521", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "26391.0", + "side": "B", + "time": 1761231729042, + "startPosition": "-2040685585.0", + "dir": "Close Short", + "closedPnl": "47.345454", + "hash": "0xf42dca540452e882f5a7042e0c2b240202b100399f56075597f675a6c356c26d", + "oid": 210456965996, + "crossed": true, + "fee": "0.020821", + "tid": 1054958139575154, + "cloid": "0x00000000000000000000001644000521", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133143.0", + "side": "B", + "time": 1761231730470, + "startPosition": "-2040659194.0", + "dir": "Close Short", + "closedPnl": "238.725399", + "hash": "0xa70c4284d13280caa885042e0c2b360202d5006a6c359f9c4ad4edd790365ab5", + "oid": 210456985658, + "crossed": true, + "fee": "0.105073", + "tid": 40104580039838, + "cloid": "0x00000000000000000000001644000522", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "106810.0", + "side": "B", + "time": 1761231740245, + "startPosition": "-2040526051.0", + "dir": "Close Short", + "closedPnl": "191.51033", + "hash": "0x71b096349ed758a5732a042e0c2bac0201f1001a39da7777157941875ddb3290", + "oid": 210457111309, + "crossed": true, + "fee": "0.084292", + "tid": 338352362446055, + "cloid": "0x00000000000000000000001644000526", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "26381.0", + "side": "B", + "time": 1761231740245, + "startPosition": "-2040419241.0", + "dir": "Close Short", + "closedPnl": "47.301133", + "hash": "0x71b096349ed758a5732a042e0c2bac0201f1001a39da7777157941875ddb3290", + "oid": 210457111309, + "crossed": true, + "fee": "0.020819", + "tid": 590726118057209, + "cloid": "0x00000000000000000000001644000526", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133108.0", + "side": "B", + "time": 1761231742582, + "startPosition": "-2040392860.0", + "dir": "Close Short", + "closedPnl": "238.529536", + "hash": "0x1110e3cf57221e39128a042e0c2bce020a9400b4f2253d0bb4d98f221625f823", + "oid": 210457137862, + "crossed": true, + "fee": "0.105074", + "tid": 571702546662862, + "cloid": "0x00000000000000000000001644000527", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "132860.0", + "side": "B", + "time": 1761231744046, + "startPosition": "-2040259752.0", + "dir": "Close Short", + "closedPnl": "238.08512", + "hash": "0x3111051857eb09ce328a042e0c2be0020aa600fdf2ee28a0d4d9b06b16eee3b8", + "oid": 210457161754, + "crossed": true, + "fee": "0.104878", + "tid": 631417968431377, + "cloid": "0x00000000000000000000001644000528", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "225.0", + "side": "B", + "time": 1761231744046, + "startPosition": "-2040126892.0", + "dir": "Close Short", + "closedPnl": "0.4032", + "hash": "0x3111051857eb09ce328a042e0c2be0020aa600fdf2ee28a0d4d9b06b16eee3b8", + "oid": 210457161754, + "crossed": true, + "fee": "0.000177", + "tid": 695716675805986, + "cloid": "0x00000000000000000000001644000528", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "133073.0", + "side": "B", + "time": 1761231745544, + "startPosition": "-2040126667.0", + "dir": "Close Short", + "closedPnl": "238.333743", + "hash": "0x284562ff87e0bc8f29bf042e0c2bf20205cc00e522e3db61cc0e0e5246e49679", + "oid": 210457184712, + "crossed": true, + "fee": "0.105074", + "tid": 259324667887870, + "cloid": "0x00000000000000000000001644000529", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.1", + "sz": "0.8474", + "side": "A", + "time": 1761231747114, + "startPosition": "-2185.6746", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x63b7838542a7f4a16531042e0c2c050208b9006addab137307802ed801abce8c", + "oid": 210457218744, + "crossed": true, + "fee": "0.68425", + "tid": 525263953698875, + "cloid": "0x00000000000000000000001643000917", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.1", + "sz": "0.3062", + "side": "A", + "time": 1761231747114, + "startPosition": "-2186.522", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x63b7838542a7f4a16531042e0c2c050208b9006addab137307802ed801abce8c", + "oid": 210457218744, + "crossed": true, + "fee": "0.247247", + "tid": 1048084147763573, + "cloid": "0x00000000000000000000001643000917", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.1", + "sz": "0.8897", + "side": "A", + "time": 1761231747114, + "startPosition": "-2186.8282", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x63b7838542a7f4a16531042e0c2c050208b9006addab137307802ed801abce8c", + "oid": 210457218744, + "crossed": true, + "fee": "0.718406", + "tid": 514997903950284, + "cloid": "0x00000000000000000000001643000917", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.1", + "sz": "0.5578", + "side": "A", + "time": 1761231747114, + "startPosition": "-2187.7179", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x63b7838542a7f4a16531042e0c2c050208b9006addab137307802ed801abce8c", + "oid": 210457218744, + "crossed": true, + "fee": "0.450407", + "tid": 828841669770805, + "cloid": "0x00000000000000000000001643000917", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "133085.0", + "side": "B", + "time": 1761231753130, + "startPosition": "-2039993594.0", + "dir": "Close Short", + "closedPnl": "238.355235", + "hash": "0xbc01be9f95e82fa7bd7b042e0c2c50020356008530eb4e795fca69f254ec0992", + "oid": 210457285159, + "crossed": true, + "fee": "0.105083", + "tid": 784151863080991, + "cloid": "0x00000000000000000000001644000532", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133049.0", + "side": "B", + "time": 1761231754984, + "startPosition": "-2039860509.0", + "dir": "Close Short", + "closedPnl": "238.423808", + "hash": "0xeaa95a1191215619ec23042e0c2c690204ed00f72c2474eb8e72056450253004", + "oid": 210457310395, + "crossed": true, + "fee": "0.105027", + "tid": 595609897094457, + "cloid": "0x00000000000000000000001644000533", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.5", + "sz": "2.6007", + "side": "A", + "time": 1761231755251, + "startPosition": "-2188.2757", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x79443a8b629722f97abd042e0c2c6b0203920070fd9a41cb1d0ce5de219afce4", + "oid": 210457312931, + "crossed": true, + "fee": "2.099662", + "tid": 149499844622994, + "cloid": "0x00000000000000000000001643000920", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133120.0", + "side": "B", + "time": 1761231758860, + "startPosition": "-2039727460.0", + "dir": "Close Short", + "closedPnl": "238.68416", + "hash": "0xdbeca4c913a0f984dd66042e0c2c9e02018c00aeaea418567fb5501bd2a4d36f", + "oid": 210457348653, + "crossed": true, + "fee": "0.105055", + "tid": 888547682017349, + "cloid": "0x00000000000000000000001644000534", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133120.0", + "side": "B", + "time": 1761231760303, + "startPosition": "-2039594340.0", + "dir": "Close Short", + "closedPnl": "238.68416", + "hash": "0x4660f8b6b7f7309847da042e0c2cb002033f009c52fa4f6aea29a40976fb0a82", + "oid": 210457361408, + "crossed": true, + "fee": "0.105055", + "tid": 958274076313149, + "cloid": "0x00000000000000000000001644000535", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133129.0", + "side": "B", + "time": 1761231761828, + "startPosition": "-2039461220.0", + "dir": "Close Short", + "closedPnl": "238.700297", + "hash": "0x034a973b99c5de7604c4042e0c2cc0020214002134c8fd48a713428e58c9b860", + "oid": 210457379719, + "crossed": true, + "fee": "0.105062", + "tid": 804930095024061, + "cloid": "0x00000000000000000000001644000536", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133156.0", + "side": "B", + "time": 1761231763267, + "startPosition": "-2039328091.0", + "dir": "Close Short", + "closedPnl": "238.748708", + "hash": "0x0aa868651f21d7d20c22042e0c2cd002028a004aba24f6a4ae7113b7de25b1bc", + "oid": 210457400225, + "crossed": true, + "fee": "0.105084", + "tid": 529798897384317, + "cloid": "0x00000000000000000000001644000537", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "132874.0", + "side": "B", + "time": 1761231765068, + "startPosition": "-2039194935.0", + "dir": "Close Short", + "closedPnl": "238.243082", + "hash": "0x8e951f5565f04179900e042e0c2ce6020191003b00f3604b325dcaa824f41b64", + "oid": 210457418597, + "crossed": true, + "fee": "0.104861", + "tid": 858237949009316, + "cloid": "0x00000000000000000000001644000538", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "269.0", + "side": "B", + "time": 1761231765068, + "startPosition": "-2039062061.0", + "dir": "Close Short", + "closedPnl": "0.482317", + "hash": "0x8e951f5565f04179900e042e0c2ce6020191003b00f3604b325dcaa824f41b64", + "oid": 210457418597, + "crossed": true, + "fee": "0.000212", + "tid": 1009771014795163, + "cloid": "0x00000000000000000000001644000538", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133169.0", + "side": "B", + "time": 1761231773755, + "startPosition": "-2039061792.0", + "dir": "Close Short", + "closedPnl": "238.905186", + "hash": "0xeab277f88159aaf4ec2c042e0c2d5502024c00de1c5cc9c68e7b234b405d84df", + "oid": 210457526371, + "crossed": true, + "fee": "0.105066", + "tid": 769499423330373, + "cloid": "0x00000000000000000000001644000539", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.6", + "sz": "1.4985", + "side": "A", + "time": 1761231774002, + "startPosition": "-2190.8764", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x26810b7580cbaf5327fa042e0c2d59020347005b1bcece25ca49b6c83fcf893d", + "oid": 210457532965, + "crossed": true, + "fee": "1.209837", + "tid": 225587205104922, + "cloid": "0x00000000000000000000001643000923", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.6", + "sz": "0.2818", + "side": "A", + "time": 1761231774002, + "startPosition": "-2192.3749", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x26810b7580cbaf5327fa042e0c2d59020347005b1bcece25ca49b6c83fcf893d", + "oid": 210457532965, + "crossed": true, + "fee": "0.227515", + "tid": 295844846867767, + "cloid": "0x00000000000000000000001643000923", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.6", + "sz": "0.6043", + "side": "A", + "time": 1761231774002, + "startPosition": "-2192.6567", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x26810b7580cbaf5327fa042e0c2d59020347005b1bcece25ca49b6c83fcf893d", + "oid": 210457532965, + "crossed": true, + "fee": "0.487891", + "tid": 98367463967458, + "cloid": "0x00000000000000000000001643000923", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.6", + "sz": "0.2165", + "side": "A", + "time": 1761231774002, + "startPosition": "-2193.261", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x26810b7580cbaf5327fa042e0c2d59020347005b1bcece25ca49b6c83fcf893d", + "oid": 210457532965, + "crossed": true, + "fee": "0.174794", + "tid": 672273123251340, + "cloid": "0x00000000000000000000001643000923", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133191.0", + "side": "B", + "time": 1761231779128, + "startPosition": "-2038928623.0", + "dir": "Close Short", + "closedPnl": "239.077845", + "hash": "0xc7937537f8ce2748c90d042e0c2da0020124001d93c1461a6b5c208ab7c20133", + "oid": 210457571583, + "crossed": true, + "fee": "0.105055", + "tid": 712798751356444, + "cloid": "0x00000000000000000000001644000541", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.8", + "sz": "0.271", + "side": "A", + "time": 1761231783494, + "startPosition": "-2193.4775", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x84bae16ca077395d8634042e0c2dd60202c900523b7a582f28838cbf5f7b1348", + "oid": 210457611669, + "crossed": true, + "fee": "0.218807", + "tid": 588337439666543, + "cloid": "0x00000000000000000000001643000924", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.8", + "sz": "1.1721", + "side": "A", + "time": 1761231783494, + "startPosition": "-2193.7485", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x84bae16ca077395d8634042e0c2dd60202c900523b7a582f28838cbf5f7b1348", + "oid": 210457611669, + "crossed": true, + "fee": "0.946362", + "tid": 985469211469557, + "cloid": "0x00000000000000000000001643000924", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.8", + "sz": "0.5558", + "side": "A", + "time": 1761231783494, + "startPosition": "-2194.9206", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x84bae16ca077395d8634042e0c2dd60202c900523b7a582f28838cbf5f7b1348", + "oid": 210457611669, + "crossed": true, + "fee": "0.448757", + "tid": 360544747970943, + "cloid": "0x00000000000000000000001643000924", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.8", + "sz": "0.6024", + "side": "A", + "time": 1761231783494, + "startPosition": "-2195.4764", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x84bae16ca077395d8634042e0c2dd60202c900523b7a582f28838cbf5f7b1348", + "oid": 210457611669, + "crossed": true, + "fee": "0.486382", + "tid": 921877122021210, + "cloid": "0x00000000000000000000001643000924", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.9", + "sz": "0.011", + "side": "A", + "time": 1761231786105, + "startPosition": "-2196.0788", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xccaba80008faf94bce25042e0c2df50203b600e5a3fe181d70745352c7fed336", + "oid": 210457645898, + "crossed": false, + "fee": "0.001184", + "tid": 809605471745861, + "cloid": "0x00000000000000000000001643000925", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "79820.0", + "side": "B", + "time": 1761231786982, + "startPosition": "-2038795432.0", + "dir": "Close Short", + "closedPnl": "143.03744", + "hash": "0xa96981e971389c30aae3042e0c2dff02072800cf0c3bbb024d322d3c303c761b", + "oid": 210457676492, + "crossed": true, + "fee": "0.063009", + "tid": 566569999989883, + "cloid": "0x00000000000000000000001644000544", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "53394.0", + "side": "B", + "time": 1761231786982, + "startPosition": "-2038715612.0", + "dir": "Close Short", + "closedPnl": "95.682048", + "hash": "0xa96981e971389c30aae3042e0c2dff02072800cf0c3bbb024d322d3c303c761b", + "oid": 210457676492, + "crossed": true, + "fee": "0.042148", + "tid": 377338701643633, + "cloid": "0x00000000000000000000001644000544", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.5", + "sz": "0.0317", + "side": "A", + "time": 1761231789001, + "startPosition": "-2196.0898", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210457699850, + "crossed": false, + "fee": "0.003414", + "tid": 756797683886661, + "cloid": "0x00000000000000000000001643000926", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "133014.0", + "side": "B", + "time": 1761231792069, + "startPosition": "-2038662218.0", + "dir": "Close Short", + "closedPnl": "238.228074", + "hash": "0xaefd30f636b6e784b076042e0c2e4002023b00dbd1ba065652c5dc48f5bac16f", + "oid": 210457763523, + "crossed": true, + "fee": "0.105027", + "tid": 282062014712027, + "cloid": "0x00000000000000000000001644000546", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.8", + "sz": "2.5577", + "side": "A", + "time": 1761231792467, + "startPosition": "-2196.1215", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x967b8191e37eb1bf97f5042e0c2e440203d300777e71d0913a442ce4a2728baa", + "oid": 210457767331, + "crossed": true, + "fee": "2.065644", + "tid": 823127901039037, + "cloid": "0x00000000000000000000001643000928", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "133016.0", + "side": "B", + "time": 1761231793269, + "startPosition": "-2038529204.0", + "dir": "Close Short", + "closedPnl": "238.231656", + "hash": "0x7fa5d62a0f018a89811f042e0c2e4c0203cc000faa04a95b236e817cce056474", + "oid": 210457778415, + "crossed": true, + "fee": "0.105029", + "tid": 15263293825614, + "cloid": "0x00000000000000000000001644000547", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.5", + "sz": "2.6001", + "side": "A", + "time": 1761231795487, + "startPosition": "-2198.6792", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x9a1fcc96e4ac9d919b99042e0c2e6a020320007c7fafbc633de877e9a3a0777c", + "oid": 210457808204, + "crossed": false, + "fee": "0.280035", + "tid": 110244635800611, + "cloid": "0x00000000000000000000001643000929", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "79659.0", + "side": "B", + "time": 1761231839907, + "startPosition": "-2038396188.0", + "dir": "Close Short", + "closedPnl": "142.111656", + "hash": "0x2f51759a8cbf8b4030cb042e0c309c0201cf008027b2aa12d31a20ed4bb3652a", + "oid": 210458355467, + "crossed": true, + "fee": "0.063015", + "tid": 1088317036151514, + "cloid": "0x00000000000000000000001644000553", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "53355.0", + "side": "B", + "time": 1761231839907, + "startPosition": "-2038316529.0", + "dir": "Close Short", + "closedPnl": "95.18532", + "hash": "0x2f51759a8cbf8b4030cb042e0c309c0201cf008027b2aa12d31a20ed4bb3652a", + "oid": 210458355467, + "crossed": true, + "fee": "0.042207", + "tid": 511426083975049, + "cloid": "0x00000000000000000000001644000553", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "26302.0", + "side": "B", + "time": 1761231841241, + "startPosition": "-2038263174.0", + "dir": "Close Short", + "closedPnl": "46.922768", + "hash": "0x03b02d2c5ed9271e0529042e0c30ac0204f10011f9dc45f0a778d87f1ddd0108", + "oid": 210458366849, + "crossed": true, + "fee": "0.020806", + "tid": 920166198689497, + "cloid": "0x00000000000000000000001644000554", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "79658.0", + "side": "B", + "time": 1761231841241, + "startPosition": "-2038236872.0", + "dir": "Close Short", + "closedPnl": "142.109872", + "hash": "0x03b02d2c5ed9271e0529042e0c30ac0204f10011f9dc45f0a778d87f1ddd0108", + "oid": 210458366849, + "crossed": true, + "fee": "0.063015", + "tid": 495619434323269, + "cloid": "0x00000000000000000000001644000554", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "26807.0", + "side": "B", + "time": 1761231841241, + "startPosition": "-2038157214.0", + "dir": "Close Short", + "closedPnl": "47.823688", + "hash": "0x03b02d2c5ed9271e0529042e0c30ac0204f10011f9dc45f0a778d87f1ddd0108", + "oid": 210458366849, + "crossed": true, + "fee": "0.021206", + "tid": 16962623240350, + "cloid": "0x00000000000000000000001644000554", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003762", + "sz": "132829.0", + "side": "B", + "time": 1761231846361, + "startPosition": "-2038130407.0", + "dir": "Close Short", + "closedPnl": "237.631081", + "hash": "0x0c6363f2c05b22420ddd042e0c30f002027500d85b5e4114b02c0f457f5efc2c", + "oid": 210458416256, + "crossed": true, + "fee": "0.104937", + "tid": 276814652823727, + "cloid": "0x00000000000000000000001644000556", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133014.0", + "side": "B", + "time": 1761231849314, + "startPosition": "-2037997578.0", + "dir": "Close Short", + "closedPnl": "238.361088", + "hash": "0x3e2c4055de817a1a3fa5042e0c3117020a4d003b798498ece1f4eba89d855404", + "oid": 210458452211, + "crossed": true, + "fee": "0.104999", + "tid": 397032254124442, + "cloid": "0x00000000000000000000001644000557", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "21169.0", + "side": "B", + "time": 1761231850973, + "startPosition": "-2037864564.0", + "dir": "Close Short", + "closedPnl": "37.956017", + "hash": "0x89c0aa54b785fc9c8b3a042e0c312c021134003a52891b6e2d8955a77689d687", + "oid": 210458488779, + "crossed": true, + "fee": "0.016706", + "tid": 1040932710960274, + "cloid": "0x00000000000000000000001644000558", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "111916.0", + "side": "B", + "time": 1761231850973, + "startPosition": "-2037843395.0", + "dir": "Close Short", + "closedPnl": "200.665388", + "hash": "0x89c0aa54b785fc9c8b3a042e0c312c021134003a52891b6e2d8955a77689d687", + "oid": 210458488779, + "crossed": true, + "fee": "0.088321", + "tid": 1001120320320830, + "cloid": "0x00000000000000000000001644000558", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.0", + "sz": "0.0415", + "side": "A", + "time": 1761231853994, + "startPosition": "-2201.2793", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe3ff126eee98e87be578042e0c3153020bca0054899c074d87c7bdc1ad9cc266", + "oid": 210458554864, + "crossed": true, + "fee": "0.033509", + "tid": 1094139629323506, + "cloid": "0x00000000000000000000001643000938", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.0", + "sz": "2.5576", + "side": "A", + "time": 1761231853994, + "startPosition": "-2201.3208", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe3ff126eee98e87be578042e0c3153020bca0054899c074d87c7bdc1ad9cc266", + "oid": 210458554864, + "crossed": true, + "fee": "2.065134", + "tid": 484476720142892, + "cloid": "0x00000000000000000000001643000938", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133233.0", + "side": "B", + "time": 1761231855346, + "startPosition": "-2037731479.0", + "dir": "Close Short", + "closedPnl": "239.020002", + "hash": "0x74ce2df72e63149d7647042e0c316202054400dcc966336f1896d949ed66ee88", + "oid": 210458574953, + "crossed": true, + "fee": "0.105116", + "tid": 553236741035319, + "cloid": "0x00000000000000000000001644000560", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.9", + "sz": "0.0051", + "side": "A", + "time": 1761231857053, + "startPosition": "-2203.8784", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210458581701, + "crossed": false, + "fee": "0.000549", + "tid": 1079246826172373, + "cloid": "0x00000000000000000000001643000939", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.9", + "sz": "0.0106", + "side": "A", + "time": 1761231857053, + "startPosition": "-2203.8835", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe6a5c3a00844bfa1e81f042e0c31750204f30085a347de738a6e6ef2c748998c", + "oid": 210458581701, + "crossed": false, + "fee": "0.001141", + "tid": 528753975590274, + "cloid": "0x00000000000000000000001643000939", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133120.0", + "side": "B", + "time": 1761231857141, + "startPosition": "-2037598246.0", + "dir": "Close Short", + "closedPnl": "238.81728", + "hash": "0x141cb5906a98deaf1596042e0c317602039b0076059bfd81b7e560e3299cb899", + "oid": 210458598417, + "crossed": true, + "fee": "0.105027", + "tid": 795364508412670, + "cloid": "0x00000000000000000000001644000561", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133094.0", + "side": "B", + "time": 1761231863123, + "startPosition": "-2037465126.0", + "dir": "Close Short", + "closedPnl": "238.504448", + "hash": "0xb24eba7aa19547b1b3c8042e0c31bb02067200603c986683561765cd6099219c", + "oid": 210458657010, + "crossed": true, + "fee": "0.105063", + "tid": 941095539639550, + "cloid": "0x00000000000000000000001644000562", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.8", + "sz": "0.8839", + "side": "A", + "time": 1761231863956, + "startPosition": "-2203.8941", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xeeacaed2c7b998edf026042e0c31c402053700b862bcb7bf92755a2586bd72d8", + "oid": 210458675069, + "crossed": true, + "fee": "0.714039", + "tid": 1118050386403430, + "cloid": "0x00000000000000000000001643000940", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.8", + "sz": "0.798", + "side": "A", + "time": 1761231863956, + "startPosition": "-2204.778", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xeeacaed2c7b998edf026042e0c31c402053700b862bcb7bf92755a2586bd72d8", + "oid": 210458675069, + "crossed": true, + "fee": "0.644646", + "tid": 925711749772442, + "cloid": "0x00000000000000000000001643000940", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.8", + "sz": "0.798", + "side": "A", + "time": 1761231863956, + "startPosition": "-2205.576", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xeeacaed2c7b998edf026042e0c31c402053700b862bcb7bf92755a2586bd72d8", + "oid": 210458675069, + "crossed": true, + "fee": "0.644646", + "tid": 127847054744446, + "cloid": "0x00000000000000000000001643000940", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.8", + "sz": "0.1048", + "side": "A", + "time": 1761231863956, + "startPosition": "-2206.374", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xeeacaed2c7b998edf026042e0c31c402053700b862bcb7bf92755a2586bd72d8", + "oid": 210458675069, + "crossed": true, + "fee": "0.08466", + "tid": 502249996648621, + "cloid": "0x00000000000000000000001643000940", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "132985.0", + "side": "B", + "time": 1761231867616, + "startPosition": "-2037332032.0", + "dir": "Close Short", + "closedPnl": "238.57509", + "hash": "0xa362cd50eed75204a4dc042e0c31f2020513003689da70d6472b78a3addb2bef", + "oid": 210458732453, + "crossed": true, + "fee": "0.104921", + "tid": 132973452448565, + "cloid": "0x00000000000000000000001644000564", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133120.0", + "side": "B", + "time": 1761231869245, + "startPosition": "-2037199047.0", + "dir": "Close Short", + "closedPnl": "238.81728", + "hash": "0xb4fcd7b114c4edcbb676042e0c32090203170096afc80c9d58c58303d3c8c7b6", + "oid": 210458763390, + "crossed": true, + "fee": "0.105027", + "tid": 669131833471176, + "cloid": "0x00000000000000000000001644000565", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133120.0", + "side": "B", + "time": 1761231875064, + "startPosition": "-2037065927.0", + "dir": "Close Short", + "closedPnl": "238.81728", + "hash": "0xa8e2966fc678b846aa5c042e0c324a0202e50055617bd7184cab41c2857c9231", + "oid": 210458821002, + "crossed": true, + "fee": "0.105027", + "tid": 454719818615902, + "cloid": "0x00000000000000000000001644000566", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133139.0", + "side": "B", + "time": 1761231876422, + "startPosition": "-2036932807.0", + "dir": "Close Short", + "closedPnl": "238.851366", + "hash": "0xe28a30d2cf8bfd60e403042e0c325e02013a00b86a8f1c328652dc258e8fd74b", + "oid": 210458834022, + "crossed": true, + "fee": "0.105042", + "tid": 962690176995977, + "cloid": "0x00000000000000000000001644000567", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133163.0", + "side": "B", + "time": 1761231877694, + "startPosition": "-2036799668.0", + "dir": "Close Short", + "closedPnl": "238.894422", + "hash": "0x36374eb4dd1277bb37b1042e0c32700202a1009a7815968dd9fffa079c1651a5", + "oid": 210458847065, + "crossed": true, + "fee": "0.105061", + "tid": 869189182331850, + "cloid": "0x00000000000000000000001644000568", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133191.0", + "side": "B", + "time": 1761231881660, + "startPosition": "-2036666505.0", + "dir": "Close Short", + "closedPnl": "238.944654", + "hash": "0x80070728a668c6ca8180042e0c32a70201ab000e416be59c23cfb27b656ca0b5", + "oid": 210458892537, + "crossed": true, + "fee": "0.105083", + "tid": 1050212538299979, + "cloid": "0x00000000000000000000001644000570", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133163.0", + "side": "B", + "time": 1761231882840, + "startPosition": "-2036533314.0", + "dir": "Close Short", + "closedPnl": "239.027585", + "hash": "0x926ddc0dc71cceb693e7042e0c32b902011400f3621fed88363687608610a8a1", + "oid": 210458904194, + "crossed": true, + "fee": "0.105033", + "tid": 543575608438823, + "cloid": "0x00000000000000000000001644000571", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133191.0", + "side": "B", + "time": 1761231887324, + "startPosition": "-2036400151.0", + "dir": "Close Short", + "closedPnl": "239.077845", + "hash": "0xfc92bb64ffd6f52dfe0c042e0c32f70202ca004a9ada1400a05b66b7bedacf18", + "oid": 210458959135, + "crossed": true, + "fee": "0.105055", + "tid": 1122178239624917, + "cloid": "0x00000000000000000000001644000573", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133200.0", + "side": "B", + "time": 1761231891899, + "startPosition": "-2036266960.0", + "dir": "Close Short", + "closedPnl": "238.9608", + "hash": "0x84526e143f531b2385cc042e0c3331020ae000f9da5639f5281b1966fe56f50e", + "oid": 210459021295, + "crossed": true, + "fee": "0.10509", + "tid": 250250436643854, + "cloid": "0x00000000000000000000001644000575", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133168.0", + "side": "B", + "time": 1761231893408, + "startPosition": "-2036133760.0", + "dir": "Close Short", + "closedPnl": "239.03656", + "hash": "0x70371637d397cbd771b0042e0c3344020725001d6e9aeaa913ffc18a929ba5c2", + "oid": 210459053279, + "crossed": true, + "fee": "0.105037", + "tid": 389853828581668, + "cloid": "0x00000000000000000000001644000576", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.6", + "sz": "0.5157", + "side": "A", + "time": 1761231894629, + "startPosition": "-2206.4788", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa3df079c9e88367ca558042e0c33530202210082398b554e47a7b2ef5d8c1067", + "oid": 210459071625, + "crossed": true, + "fee": "0.416466", + "tid": 594066636073662, + "cloid": "0x00000000000000000000001643000947", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.6", + "sz": "0.4856", + "side": "A", + "time": 1761231894629, + "startPosition": "-2206.9945", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa3df079c9e88367ca558042e0c33530202210082398b554e47a7b2ef5d8c1067", + "oid": 210459071625, + "crossed": true, + "fee": "0.392158", + "tid": 1109288235085425, + "cloid": "0x00000000000000000000001643000947", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.6", + "sz": "0.9259", + "side": "A", + "time": 1761231894629, + "startPosition": "-2207.4801", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa3df079c9e88367ca558042e0c33530202210082398b554e47a7b2ef5d8c1067", + "oid": 210459071625, + "crossed": true, + "fee": "0.747734", + "tid": 494112844237473, + "cloid": "0x00000000000000000000001643000947", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.6", + "sz": "0.2237", + "side": "A", + "time": 1761231894629, + "startPosition": "-2208.406", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa3df079c9e88367ca558042e0c33530202210082398b554e47a7b2ef5d8c1067", + "oid": 210459071625, + "crossed": true, + "fee": "0.180654", + "tid": 441499190640030, + "cloid": "0x00000000000000000000001643000947", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.6", + "sz": "0.4232", + "side": "A", + "time": 1761231894629, + "startPosition": "-2208.6297", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa3df079c9e88367ca558042e0c33530202210082398b554e47a7b2ef5d8c1067", + "oid": 210459071625, + "crossed": true, + "fee": "0.341766", + "tid": 389541121062640, + "cloid": "0x00000000000000000000001643000947", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.6", + "sz": "0.0252", + "side": "A", + "time": 1761231894629, + "startPosition": "-2209.0529", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa3df079c9e88367ca558042e0c33530202210082398b554e47a7b2ef5d8c1067", + "oid": 210459071625, + "crossed": true, + "fee": "0.02035", + "tid": 67558238420628, + "cloid": "0x00000000000000000000001643000947", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133097.0", + "side": "B", + "time": 1761231894765, + "startPosition": "-2036000592.0", + "dir": "Close Short", + "closedPnl": "238.642921", + "hash": "0x43910a2c871656de450a042e0c33540202cd0012221975b0e759b57f461a30c8", + "oid": 210459072904, + "crossed": true, + "fee": "0.105037", + "tid": 350652992859342, + "cloid": "0x00000000000000000000001644000577", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133120.0", + "side": "B", + "time": 1761231896192, + "startPosition": "-2035867495.0", + "dir": "Close Short", + "closedPnl": "238.68416", + "hash": "0x5829d9c1517773da59a3042e0c33680204ff00a6ec7a92acfbf28514107b4dc4", + "oid": 210459090323, + "crossed": true, + "fee": "0.105055", + "tid": 429812727126061, + "cloid": "0x00000000000000000000001644000578", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133120.0", + "side": "B", + "time": 1761231897601, + "startPosition": "-2035734375.0", + "dir": "Close Short", + "closedPnl": "238.55104", + "hash": "0x5b9b58ac401951415d15042e0c337a02019f0091db1c7013ff6403feff1d2b2b", + "oid": 210459105043, + "crossed": true, + "fee": "0.105083", + "tid": 423462034156739, + "cloid": "0x00000000000000000000001644000579", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "121424.0", + "side": "B", + "time": 1761231898905, + "startPosition": "-2035601255.0", + "dir": "Close Short", + "closedPnl": "217.591808", + "hash": "0x1e7b9b64d28ce9ac1ff5042e0c3388020198004a6d80087ec24446b79180c396", + "oid": 210459122932, + "crossed": true, + "fee": "0.09585", + "tid": 795257894596296, + "cloid": "0x00000000000000000000001644000580", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "11700.0", + "side": "B", + "time": 1761231898905, + "startPosition": "-2035479831.0", + "dir": "Close Short", + "closedPnl": "20.9664", + "hash": "0x1e7b9b64d28ce9ac1ff5042e0c3388020198004a6d80087ec24446b79180c396", + "oid": 210459122932, + "crossed": true, + "fee": "0.009235", + "tid": 124230850509463, + "cloid": "0x00000000000000000000001644000580", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133085.0", + "side": "B", + "time": 1761231900516, + "startPosition": "-2035468131.0", + "dir": "Close Short", + "closedPnl": "238.48832", + "hash": "0x7d216ca4e759145c7e9b042e0c3399020158008a825c332e20ea17f7a65cee47", + "oid": 210459137635, + "crossed": true, + "fee": "0.105055", + "tid": 560731689916415, + "cloid": "0x00000000000000000000001644000581", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133129.0", + "side": "B", + "time": 1761231901968, + "startPosition": "-2035335046.0", + "dir": "Close Short", + "closedPnl": "238.567168", + "hash": "0xa64f55cbcf5166daa7c9042e0c33ab0203fe00b16a5485ac4a18011e8e5540c5", + "oid": 210459147400, + "crossed": true, + "fee": "0.10509", + "tid": 45131607088908, + "cloid": "0x00000000000000000000001644000582", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133108.0", + "side": "B", + "time": 1761231903429, + "startPosition": "-2035201917.0", + "dir": "Close Short", + "closedPnl": "238.529536", + "hash": "0xa245f70aedc103c4a3bf042e0c33bd0203a300f088c42296460ea25dacc4ddaf", + "oid": 210459173962, + "crossed": true, + "fee": "0.105074", + "tid": 767726056059975, + "cloid": "0x00000000000000000000001644000583", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133119.0", + "side": "B", + "time": 1761231904924, + "startPosition": "-2035068809.0", + "dir": "Close Short", + "closedPnl": "238.549248", + "hash": "0xf2c517d721a663d1f43e042e0c33d40202de00bcbca982a4968dc329e0aa3dbc", + "oid": 210459198076, + "crossed": true, + "fee": "0.105082", + "tid": 904789025096020, + "cloid": "0x00000000000000000000001644000584", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "133096.0", + "side": "B", + "time": 1761231906289, + "startPosition": "-2034935690.0", + "dir": "Close Short", + "closedPnl": "238.374936", + "hash": "0xc74bdd80f1e49c9cc8c5042e0c33e60202a800668ce7bb6e6b1488d3b0e87687", + "oid": 210459220937, + "crossed": true, + "fee": "0.105092", + "tid": 840018224667331, + "cloid": "0x00000000000000000000001644000585", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132802.0", + "side": "B", + "time": 1761231929636, + "startPosition": "-2034802594.0", + "dir": "Close Short", + "closedPnl": "236.918768", + "hash": "0xbd6a747778c686d0bee4042e0c350a020a92005d13c9a5a261331fca37ca60bb", + "oid": 210459602254, + "crossed": true, + "fee": "0.105055", + "tid": 554073004970915, + "cloid": "0x00000000000000000000001644000590", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "251.0", + "side": "B", + "time": 1761231929636, + "startPosition": "-2034669792.0", + "dir": "Close Short", + "closedPnl": "0.447784", + "hash": "0xbd6a747778c686d0bee4042e0c350a020a92005d13c9a5a261331fca37ca60bb", + "oid": 210459602254, + "crossed": true, + "fee": "0.000198", + "tid": 217665863842909, + "cloid": "0x00000000000000000000001644000590", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.4", + "sz": "0.2517", + "side": "A", + "time": 1761231929810, + "startPosition": "-2209.0781", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1dc8a07b54df52821f42042e0c350c020d710060efd27154c1914bce13d32c6c", + "oid": 210459607371, + "crossed": true, + "fee": "0.203309", + "tid": 774409337692210, + "cloid": "0x00000000000000000000001643000956", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.4", + "sz": "0.7591", + "side": "A", + "time": 1761231929810, + "startPosition": "-2209.3298", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1dc8a07b54df52821f42042e0c350c020d710060efd27154c1914bce13d32c6c", + "oid": 210459607371, + "crossed": true, + "fee": "0.613158", + "tid": 368911165923077, + "cloid": "0x00000000000000000000001643000956", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.4", + "sz": "0.4764", + "side": "A", + "time": 1761231929810, + "startPosition": "-2210.0889", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1dc8a07b54df52821f42042e0c350c020d710060efd27154c1914bce13d32c6c", + "oid": 210459607371, + "crossed": true, + "fee": "0.384809", + "tid": 751327457980305, + "cloid": "0x00000000000000000000001643000956", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.4", + "sz": "0.398", + "side": "A", + "time": 1761231929810, + "startPosition": "-2210.5653", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1dc8a07b54df52821f42042e0c350c020d710060efd27154c1914bce13d32c6c", + "oid": 210459607371, + "crossed": true, + "fee": "0.321482", + "tid": 859204614201483, + "cloid": "0x00000000000000000000001643000956", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.4", + "sz": "0.2055", + "side": "A", + "time": 1761231929810, + "startPosition": "-2210.9633", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1dc8a07b54df52821f42042e0c350c020d710060efd27154c1914bce13d32c6c", + "oid": 210459607371, + "crossed": true, + "fee": "0.165991", + "tid": 42672787809493, + "cloid": "0x00000000000000000000001643000956", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.4", + "sz": "0.3026", + "side": "A", + "time": 1761231929810, + "startPosition": "-2211.1688", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1dc8a07b54df52821f42042e0c350c020d710060efd27154c1914bce13d32c6c", + "oid": 210459607371, + "crossed": true, + "fee": "0.244423", + "tid": 537911376038945, + "cloid": "0x00000000000000000000001643000956", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.4", + "sz": "0.2073", + "side": "A", + "time": 1761231929810, + "startPosition": "-2211.4714", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1dc8a07b54df52821f42042e0c350c020d710060efd27154c1914bce13d32c6c", + "oid": 210459607371, + "crossed": true, + "fee": "0.167445", + "tid": 401947656272813, + "cloid": "0x00000000000000000000001643000956", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132737.0", + "side": "B", + "time": 1761231931452, + "startPosition": "-2034669541.0", + "dir": "Close Short", + "closedPnl": "236.670071", + "hash": "0x856d88df596b139f86e7042e0c351f02060300c4f46e327129363432186eed8a", + "oid": 210459633901, + "crossed": true, + "fee": "0.105032", + "tid": 231719558957863, + "cloid": "0x00000000000000000000001644000591", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132766.0", + "side": "B", + "time": 1761231932801, + "startPosition": "-2034536804.0", + "dir": "Close Short", + "closedPnl": "236.854544", + "hash": "0x5a7a670623f6c5125bf4042e0c352f02074400ebbef9e3e4fe431258e2fa9efc", + "oid": 210459651998, + "crossed": true, + "fee": "0.105027", + "tid": 701099893184047, + "cloid": "0x00000000000000000000001644000592", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132785.0", + "side": "B", + "time": 1761231934079, + "startPosition": "-2034404038.0", + "dir": "Close Short", + "closedPnl": "237.021225", + "hash": "0x8660c8b71e4bfbbd87da042e0c3541020557009cb94f1a8f2a297409dd4fd5a8", + "oid": 210459667859, + "crossed": true, + "fee": "0.105014", + "tid": 449756246162860, + "cloid": "0x00000000000000000000001644000593", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132885.0", + "side": "B", + "time": 1761231944372, + "startPosition": "-2034271253.0", + "dir": "Close Short", + "closedPnl": "237.199725", + "hash": "0x44336d89f549c5cd45ad042e0c35c10201c7006f904ce49fe7fc18dcb44d9fb7", + "oid": 210459793524, + "crossed": true, + "fee": "0.105093", + "tid": 607075183432655, + "cloid": "0x00000000000000000000001644000596", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003765", + "sz": "132802.0", + "side": "B", + "time": 1761231953999, + "startPosition": "-2034138368.0", + "dir": "Close Short", + "closedPnl": "237.184372", + "hash": "0x42ec1095f849dc5e4465042e0c363a02035a007b934cfb30e6b4bbe8b74db648", + "oid": 210459897949, + "crossed": true, + "fee": "0.104999", + "tid": 1102800101737396, + "cloid": "0x00000000000000000000001644000597", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132807.0", + "side": "B", + "time": 1761231955275, + "startPosition": "-2034005566.0", + "dir": "Close Short", + "closedPnl": "237.060495", + "hash": "0xfea17008e758fbfe001b042e0c364c02029900ee825c1ad1a26a1b5ba65cd5e9", + "oid": 210459906614, + "crossed": true, + "fee": "0.105031", + "tid": 448724731545672, + "cloid": "0x00000000000000000000001644000598", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132829.0", + "side": "B", + "time": 1761231958770, + "startPosition": "-2033872759.0", + "dir": "Close Short", + "closedPnl": "237.099765", + "hash": "0xb580846c2aa5da3db6fa042e0c36750203090051c5a8f90f59492fbee9a9b428", + "oid": 210459940112, + "crossed": true, + "fee": "0.105049", + "tid": 909990845011962, + "cloid": "0x00000000000000000000001644000600", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.5", + "sz": "0.1328", + "side": "A", + "time": 1761231962082, + "startPosition": "-2211.6787", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x587fcf9b7fe694ba59f9042e0c369c02027a00811ae9b38cfc487aee3eea6ea4", + "oid": 210459980956, + "crossed": true, + "fee": "0.107326", + "tid": 286584151467715, + "cloid": "0x00000000000000000000001643000961", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.5", + "sz": "0.1844", + "side": "A", + "time": 1761231962082, + "startPosition": "-2211.8115", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x587fcf9b7fe694ba59f9042e0c369c02027a00811ae9b38cfc487aee3eea6ea4", + "oid": 210459980956, + "crossed": true, + "fee": "0.149029", + "tid": 1119766979546354, + "cloid": "0x00000000000000000000001643000961", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.5", + "sz": "0.0789", + "side": "A", + "time": 1761231962082, + "startPosition": "-2211.9959", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x587fcf9b7fe694ba59f9042e0c369c02027a00811ae9b38cfc487aee3eea6ea4", + "oid": 210459980956, + "crossed": true, + "fee": "0.063765", + "tid": 654639439998575, + "cloid": "0x00000000000000000000001643000961", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.5", + "sz": "0.4484", + "side": "A", + "time": 1761231962082, + "startPosition": "-2212.0748", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x587fcf9b7fe694ba59f9042e0c369c02027a00811ae9b38cfc487aee3eea6ea4", + "oid": 210459980956, + "crossed": true, + "fee": "0.36239", + "tid": 916131287192724, + "cloid": "0x00000000000000000000001643000961", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.5", + "sz": "0.586", + "side": "A", + "time": 1761231962082, + "startPosition": "-2212.5232", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x587fcf9b7fe694ba59f9042e0c369c02027a00811ae9b38cfc487aee3eea6ea4", + "oid": 210459980956, + "crossed": true, + "fee": "0.473596", + "tid": 1041612080427218, + "cloid": "0x00000000000000000000001643000961", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.5", + "sz": "0.6867", + "side": "A", + "time": 1761231962082, + "startPosition": "-2213.1092", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x587fcf9b7fe694ba59f9042e0c369c02027a00811ae9b38cfc487aee3eea6ea4", + "oid": 210459980956, + "crossed": true, + "fee": "0.55498", + "tid": 1059173246654935, + "cloid": "0x00000000000000000000001643000961", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.5", + "sz": "0.3245", + "side": "A", + "time": 1761231962082, + "startPosition": "-2213.7959", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x587fcf9b7fe694ba59f9042e0c369c02027a00811ae9b38cfc487aee3eea6ea4", + "oid": 210459980956, + "crossed": true, + "fee": "0.262256", + "tid": 696540984902713, + "cloid": "0x00000000000000000000001643000961", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.5", + "sz": "0.1578", + "side": "A", + "time": 1761231962082, + "startPosition": "-2214.1204", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x587fcf9b7fe694ba59f9042e0c369c02027a00811ae9b38cfc487aee3eea6ea4", + "oid": 210459980956, + "crossed": true, + "fee": "0.127531", + "tid": 584909821294220, + "cloid": "0x00000000000000000000001643000961", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3849.1", + "sz": "1.1483", + "side": "A", + "time": 1761231967277, + "startPosition": "-2214.2782", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x46a52a071de097c4481e042e0c36d902036900ecb8e3b696ea6dd559dce471ae", + "oid": 210460044931, + "crossed": true, + "fee": "0.928183", + "tid": 508635776774286, + "cloid": "0x00000000000000000000001643000962", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3849.1", + "sz": "1.4503", + "side": "A", + "time": 1761231967277, + "startPosition": "-2215.4265", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x46a52a071de097c4481e042e0c36d902036900ecb8e3b696ea6dd559dce471ae", + "oid": 210460044931, + "crossed": true, + "fee": "1.172293", + "tid": 1000657428942178, + "cloid": "0x00000000000000000000001643000962", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "44345.0", + "side": "B", + "time": 1761231967740, + "startPosition": "-2033739930.0", + "dir": "Close Short", + "closedPnl": "79.155825", + "hash": "0x0462794692b7c9a405dc042e0c36e0020adb002c2dbae876a82b249951bba38e", + "oid": 210460059089, + "crossed": true, + "fee": "0.03507", + "tid": 630799602127352, + "cloid": "0x00000000000000000000001644000602", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "88525.0", + "side": "B", + "time": 1761231967740, + "startPosition": "-2033695585.0", + "dir": "Close Short", + "closedPnl": "158.017125", + "hash": "0x0462794692b7c9a405dc042e0c36e0020adb002c2dbae876a82b249951bba38e", + "oid": 210460059089, + "crossed": true, + "fee": "0.07001", + "tid": 295384897847279, + "cloid": "0x00000000000000000000001644000602", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "15246.0", + "side": "B", + "time": 1761231971037, + "startPosition": "-2033607060.0", + "dir": "Close Short", + "closedPnl": "27.305586", + "hash": "0x02ce7540a059cc910448042e0c370b020aae00263b5ceb63a69720935f5da67b", + "oid": 210460117069, + "crossed": false, + "fee": "0.001605", + "tid": 665521852325975, + "cloid": "0x00000000000000000000001644000603", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.7", + "sz": "2.4571", + "side": "A", + "time": 1761231972366, + "startPosition": "-2216.8768", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x05d19968feb07003074b042e0c371e0201e5004e99b38ed5a99a44bbbdb449ed", + "oid": 210460155592, + "crossed": true, + "fee": "1.984346", + "tid": 569510317589906, + "cloid": "0x00000000000000000000001643000964", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.7", + "sz": "0.0525", + "side": "A", + "time": 1761231972366, + "startPosition": "-2219.3339", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x05d19968feb07003074b042e0c371e0201e5004e99b38ed5a99a44bbbdb449ed", + "oid": 210460155592, + "crossed": true, + "fee": "0.042398", + "tid": 870580604314540, + "cloid": "0x00000000000000000000001643000964", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.7", + "sz": "0.0907", + "side": "A", + "time": 1761231972366, + "startPosition": "-2219.3864", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x05d19968feb07003074b042e0c371e0201e5004e99b38ed5a99a44bbbdb449ed", + "oid": 210460155592, + "crossed": true, + "fee": "0.073249", + "tid": 68057565726966, + "cloid": "0x00000000000000000000001643000964", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "117727.0", + "side": "B", + "time": 1761231972974, + "startPosition": "-2033591814.0", + "dir": "Close Short", + "closedPnl": "211.084511", + "hash": "0x59bc20f4e05b09a45b35042e0c37260206e700da7b5e2876fd84cc479f5ee38e", + "oid": 210460168636, + "crossed": true, + "fee": "0.092907", + "tid": 882644124272507, + "cloid": "0x00000000000000000000001644000604", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133156.0", + "side": "B", + "time": 1761231974377, + "startPosition": "-2033474087.0", + "dir": "Close Short", + "closedPnl": "238.881864", + "hash": "0x82d2d3889c0ee60b844c042e0c37390201bb006e370204dd269b7edb5b02bff6", + "oid": 210460198381, + "crossed": true, + "fee": "0.105056", + "tid": 172056280844402, + "cloid": "0x00000000000000000000001644000605", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133120.0", + "side": "B", + "time": 1761231976773, + "startPosition": "-2033340931.0", + "dir": "Close Short", + "closedPnl": "238.81728", + "hash": "0x259077e432b3d12b270a042e0c375402079700c9cdb6effdc9592336f1b7ab15", + "oid": 210460239703, + "crossed": true, + "fee": "0.105027", + "tid": 98322307082486, + "cloid": "0x00000000000000000000001644000606", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.2", + "sz": "0.3826", + "side": "A", + "time": 1761231979750, + "startPosition": "-2219.4771", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x924935740a05539393c2042e0c37760207aa0059a50872653611e0c6c9092d7e", + "oid": 210460303095, + "crossed": true, + "fee": "0.308866", + "tid": 539092655169672, + "cloid": "0x00000000000000000000001643000967", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.2", + "sz": "0.3891", + "side": "A", + "time": 1761231979750, + "startPosition": "-2219.8597", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x924935740a05539393c2042e0c37760207aa0059a50872653611e0c6c9092d7e", + "oid": 210460303095, + "crossed": true, + "fee": "0.314113", + "tid": 362027058506133, + "cloid": "0x00000000000000000000001643000967", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.2", + "sz": "0.5531", + "side": "A", + "time": 1761231979750, + "startPosition": "-2220.2488", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x924935740a05539393c2042e0c37760207aa0059a50872653611e0c6c9092d7e", + "oid": 210460303095, + "crossed": true, + "fee": "0.446507", + "tid": 436552722628937, + "cloid": "0x00000000000000000000001643000967", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.2", + "sz": "0.455", + "side": "A", + "time": 1761231979750, + "startPosition": "-2220.8019", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x924935740a05539393c2042e0c37760207aa0059a50872653611e0c6c9092d7e", + "oid": 210460303095, + "crossed": true, + "fee": "0.367313", + "tid": 169275804302074, + "cloid": "0x00000000000000000000001643000967", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.2", + "sz": "0.0399", + "side": "A", + "time": 1761231979750, + "startPosition": "-2221.2569", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x924935740a05539393c2042e0c37760207aa0059a50872653611e0c6c9092d7e", + "oid": 210460303095, + "crossed": true, + "fee": "0.03221", + "tid": 614052580288886, + "cloid": "0x00000000000000000000001643000967", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.2", + "sz": "0.631", + "side": "A", + "time": 1761231979750, + "startPosition": "-2221.2968", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x924935740a05539393c2042e0c37760207aa0059a50872653611e0c6c9092d7e", + "oid": 210460303095, + "crossed": true, + "fee": "0.509394", + "tid": 309240653271605, + "cloid": "0x00000000000000000000001643000967", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.2", + "sz": "0.1503", + "side": "A", + "time": 1761231979750, + "startPosition": "-2221.9278", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x924935740a05539393c2042e0c37760207aa0059a50872653611e0c6c9092d7e", + "oid": 210460303095, + "crossed": true, + "fee": "0.121334", + "tid": 224921960446385, + "cloid": "0x00000000000000000000001643000967", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133227.0", + "side": "B", + "time": 1761231981426, + "startPosition": "-2033207811.0", + "dir": "Close Short", + "closedPnl": "239.142465", + "hash": "0x8f84a9b64e2dc14290fe042e0c378902019d009be920e014334d55090d219b2d", + "oid": 210460332173, + "crossed": true, + "fee": "0.105084", + "tid": 881635654032573, + "cloid": "0x00000000000000000000001644000608", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.6", + "sz": "0.461", + "side": "A", + "time": 1761231981631, + "startPosition": "-2222.0781", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x97bdbac10bfd91409937042e0c378c02033300a6a6f0b0123b866613caf16b2b", + "oid": 210460336483, + "crossed": true, + "fee": "0.372195", + "tid": 1042249294111854, + "cloid": "0x00000000000000000000001643000968", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.6", + "sz": "0.0303", + "side": "A", + "time": 1761231981631, + "startPosition": "-2222.5391", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x97bdbac10bfd91409937042e0c378c02033300a6a6f0b0123b866613caf16b2b", + "oid": 210460336483, + "crossed": true, + "fee": "0.024463", + "tid": 719650483644699, + "cloid": "0x00000000000000000000001643000968", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3844.6", + "sz": "2.11", + "side": "A", + "time": 1761231981631, + "startPosition": "-2222.5694", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x97bdbac10bfd91409937042e0c378c02033300a6a6f0b0123b866613caf16b2b", + "oid": 210460336483, + "crossed": true, + "fee": "1.703542", + "tid": 512909660334864, + "cloid": "0x00000000000000000000001643000968", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133120.0", + "side": "B", + "time": 1761231984958, + "startPosition": "-2033074584.0", + "dir": "Close Short", + "closedPnl": "238.81728", + "hash": "0xde2c66714a2fd349dfa6042e0c37b40203460056e522f21b81f511c40923ad34", + "oid": 210460383799, + "crossed": true, + "fee": "0.105027", + "tid": 939448266773842, + "cloid": "0x00000000000000000000001644000609", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3845.5", + "sz": "0.0431", + "side": "A", + "time": 1761231987075, + "startPosition": "-2224.6794", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210460401628, + "crossed": false, + "fee": "0.00464", + "tid": 1013379113185315, + "cloid": "0x00000000000000000000001643000970", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133156.0", + "side": "B", + "time": 1761231991993, + "startPosition": "-2032941464.0", + "dir": "Close Short", + "closedPnl": "238.881864", + "hash": "0x49840ddf111ad9314afd042e0c38150202e800c4ac1df803ed4cb931d01eb31b", + "oid": 210460469900, + "crossed": true, + "fee": "0.105056", + "tid": 394397035368035, + "cloid": "0x00000000000000000000001644000610", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133156.0", + "side": "B", + "time": 1761231993343, + "startPosition": "-2032808308.0", + "dir": "Close Short", + "closedPnl": "238.881864", + "hash": "0x1b2ab2443f39e7571ca4042e0c38250201ca0029da3d0629bef35d96fe3dc141", + "oid": 210460485825, + "crossed": true, + "fee": "0.105056", + "tid": 645801338108230, + "cloid": "0x00000000000000000000001644000611", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.4", + "sz": "0.2035", + "side": "A", + "time": 1761231994488, + "startPosition": "-2224.7225", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x7e9a126f49046a828013042e0c383202046e0054e40789542262bdc20808446d", + "oid": 210460508895, + "crossed": true, + "fee": "0.164375", + "tid": 113973486828960, + "cloid": "0x00000000000000000000001643000971", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.4", + "sz": "0.4368", + "side": "A", + "time": 1761231994488, + "startPosition": "-2224.926", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x7e9a126f49046a828013042e0c383202046e0054e40789542262bdc20808446d", + "oid": 210460508895, + "crossed": true, + "fee": "0.352822", + "tid": 446450570267950, + "cloid": "0x00000000000000000000001643000971", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.4", + "sz": "0.5435", + "side": "A", + "time": 1761231994488, + "startPosition": "-2225.3628", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x7e9a126f49046a828013042e0c383202046e0054e40789542262bdc20808446d", + "oid": 210460508895, + "crossed": true, + "fee": "0.439008", + "tid": 736631940334723, + "cloid": "0x00000000000000000000001643000971", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.4", + "sz": "1.3741", + "side": "A", + "time": 1761231994488, + "startPosition": "-2225.9063", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x7e9a126f49046a828013042e0c383202046e0054e40789542262bdc20808446d", + "oid": 210460508895, + "crossed": true, + "fee": "1.109921", + "tid": 677288604874550, + "cloid": "0x00000000000000000000001643000971", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "42084.0", + "side": "B", + "time": 1761231995816, + "startPosition": "-2032675152.0", + "dir": "Close Short", + "closedPnl": "75.54078", + "hash": "0x864f07c8325727bc87c8042e0c384202027b00adcd5a468e2a17b31af15b01a7", + "oid": 210460528586, + "crossed": true, + "fee": "0.033194", + "tid": 332402955323866, + "cloid": "0x00000000000000000000001644000612", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "91081.0", + "side": "B", + "time": 1761231995816, + "startPosition": "-2032633068.0", + "dir": "Close Short", + "closedPnl": "163.490395", + "hash": "0x864f07c8325727bc87c8042e0c384202027b00adcd5a468e2a17b31af15b01a7", + "oid": 210460528586, + "crossed": true, + "fee": "0.071841", + "tid": 38448852390430, + "cloid": "0x00000000000000000000001644000612", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133165.0", + "side": "B", + "time": 1761231997429, + "startPosition": "-2032541987.0", + "dir": "Close Short", + "closedPnl": "239.031175", + "hash": "0x26ca82e05ab811b92844042e0c385802020300c5f5bb308bca932e3319bbeba3", + "oid": 210460545148, + "crossed": true, + "fee": "0.105035", + "tid": 164592996630063, + "cloid": "0x00000000000000000000001644000613", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.8", + "sz": "0.1978", + "side": "A", + "time": 1761231998850, + "startPosition": "-2227.2804", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x513cd9acfa16de8752b6042e0c386b0207ca00929519fd59f50584ffb91ab871", + "oid": 210460565325, + "crossed": true, + "fee": "0.159788", + "tid": 167387451837109, + "cloid": "0x00000000000000000000001643000972", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.8", + "sz": "0.1978", + "side": "A", + "time": 1761231998850, + "startPosition": "-2227.4782", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x513cd9acfa16de8752b6042e0c386b0207ca00929519fd59f50584ffb91ab871", + "oid": 210460565325, + "crossed": true, + "fee": "0.159788", + "tid": 109409011734893, + "cloid": "0x00000000000000000000001643000972", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.8", + "sz": "0.4147", + "side": "A", + "time": 1761231998850, + "startPosition": "-2227.676", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x513cd9acfa16de8752b6042e0c386b0207ca00929519fd59f50584ffb91ab871", + "oid": 210460565325, + "crossed": true, + "fee": "0.335006", + "tid": 833730071309988, + "cloid": "0x00000000000000000000001643000972", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.8", + "sz": "0.1978", + "side": "A", + "time": 1761231998850, + "startPosition": "-2228.0907", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x513cd9acfa16de8752b6042e0c386b0207ca00929519fd59f50584ffb91ab871", + "oid": 210460565325, + "crossed": true, + "fee": "0.159788", + "tid": 1030570629780204, + "cloid": "0x00000000000000000000001643000972", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.8", + "sz": "0.5701", + "side": "A", + "time": 1761231998850, + "startPosition": "-2228.2885", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x513cd9acfa16de8752b6042e0c386b0207ca00929519fd59f50584ffb91ab871", + "oid": 210460565325, + "crossed": true, + "fee": "0.460542", + "tid": 218918566224514, + "cloid": "0x00000000000000000000001643000972", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.8", + "sz": "0.4974", + "side": "A", + "time": 1761231998850, + "startPosition": "-2228.8586", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x513cd9acfa16de8752b6042e0c386b0207ca00929519fd59f50584ffb91ab871", + "oid": 210460565325, + "crossed": true, + "fee": "0.401813", + "tid": 1122712323423588, + "cloid": "0x00000000000000000000001643000972", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.8", + "sz": "0.4344", + "side": "A", + "time": 1761231998850, + "startPosition": "-2229.356", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x513cd9acfa16de8752b6042e0c386b0207ca00929519fd59f50584ffb91ab871", + "oid": 210460565325, + "crossed": true, + "fee": "0.35092", + "tid": 348744605210549, + "cloid": "0x00000000000000000000001643000972", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.8", + "sz": "0.023", + "side": "A", + "time": 1761231998850, + "startPosition": "-2229.7904", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x513cd9acfa16de8752b6042e0c386b0207ca00929519fd59f50584ffb91ab871", + "oid": 210460565325, + "crossed": true, + "fee": "0.01858", + "tid": 637093135010629, + "cloid": "0x00000000000000000000001643000972", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3846.8", + "sz": "0.0671", + "side": "A", + "time": 1761231998850, + "startPosition": "-2229.8134", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x513cd9acfa16de8752b6042e0c386b0207ca00929519fd59f50584ffb91ab871", + "oid": 210460565325, + "crossed": true, + "fee": "0.054205", + "tid": 444456227652460, + "cloid": "0x00000000000000000000001643000972", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133191.0", + "side": "B", + "time": 1761232000796, + "startPosition": "-2032408822.0", + "dir": "Close Short", + "closedPnl": "238.811463", + "hash": "0xe6018fd1fd0ffad3e77b042e0c387f02016d00b7980319a589ca3b24bc03d4be", + "oid": 210460589002, + "crossed": true, + "fee": "0.105111", + "tid": 591161153095901, + "cloid": "0x00000000000000000000001644000615", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.1", + "sz": "1.0892", + "side": "A", + "time": 1761232002319, + "startPosition": "-2229.8805", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3397253192f5e9df3510042e0c388d02065e00172df908b1d75fd08451f9c3c9", + "oid": 210460613378, + "crossed": true, + "fee": "0.879954", + "tid": 656744189952493, + "cloid": "0x00000000000000000000001643000973", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.1", + "sz": "0.2574", + "side": "A", + "time": 1761232002319, + "startPosition": "-2230.9697", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3397253192f5e9df3510042e0c388d02065e00172df908b1d75fd08451f9c3c9", + "oid": 210460613378, + "crossed": true, + "fee": "0.207951", + "tid": 737408096152093, + "cloid": "0x00000000000000000000001643000973", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.1", + "sz": "0.4027", + "side": "A", + "time": 1761232002319, + "startPosition": "-2231.2271", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3397253192f5e9df3510042e0c388d02065e00172df908b1d75fd08451f9c3c9", + "oid": 210460613378, + "crossed": true, + "fee": "0.325337", + "tid": 138954802583580, + "cloid": "0x00000000000000000000001643000973", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.1", + "sz": "0.484", + "side": "A", + "time": 1761232002319, + "startPosition": "-2231.6298", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3397253192f5e9df3510042e0c388d02065e00172df908b1d75fd08451f9c3c9", + "oid": 210460613378, + "crossed": true, + "fee": "0.391019", + "tid": 1109104126048669, + "cloid": "0x00000000000000000000001643000973", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.1", + "sz": "0.3667", + "side": "A", + "time": 1761232002319, + "startPosition": "-2232.1138", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3397253192f5e9df3510042e0c388d02065e00172df908b1d75fd08451f9c3c9", + "oid": 210460613378, + "crossed": true, + "fee": "0.296253", + "tid": 1108703909186358, + "cloid": "0x00000000000000000000001643000973", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133085.0", + "side": "B", + "time": 1761232002747, + "startPosition": "-2032275631.0", + "dir": "Close Short", + "closedPnl": "238.621405", + "hash": "0x59e2acb51427c7865b5c042e0c3892021010009aaf2ae658fdab5807d32ba170", + "oid": 210460626717, + "crossed": true, + "fee": "0.105028", + "tid": 180930785331861, + "cloid": "0x00000000000000000000001644000616", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "132943.0", + "side": "B", + "time": 1761232005134, + "startPosition": "-2032142546.0", + "dir": "Close Short", + "closedPnl": "238.100913", + "hash": "0x6e065d1b857704d76f80042e0c38ab0202b00001207a23a911cf086e447adec2", + "oid": 210460679736, + "crossed": true, + "fee": "0.104971", + "tid": 631405413622067, + "cloid": "0x00000000000000000000001644000617", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "133019.0", + "side": "B", + "time": 1761232006561, + "startPosition": "-2032009603.0", + "dir": "Close Short", + "closedPnl": "238.237029", + "hash": "0x34b42c58dce4f080362d042e0c38bc02062a003e77e80f52d87cd7ab9be8ca6a", + "oid": 210460697350, + "crossed": true, + "fee": "0.105031", + "tid": 2287521395650, + "cloid": "0x00000000000000000000001644000618", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133049.0", + "side": "B", + "time": 1761232007764, + "startPosition": "-2031876584.0", + "dir": "Close Short", + "closedPnl": "238.423808", + "hash": "0xe57845ca9abe4043e6f2042e0c38cb02028400b035b15f158940f11d59b21a2e", + "oid": 210460716044, + "crossed": true, + "fee": "0.105027", + "tid": 1085390402220788, + "cloid": "0x00000000000000000000001644000619", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133006.0", + "side": "B", + "time": 1761232008986, + "startPosition": "-2031743535.0", + "dir": "Close Short", + "closedPnl": "238.346752", + "hash": "0x3462baf74b887a0035dc042e0c38dd02083f00dce68b98d2d82b664a0a8c53ea", + "oid": 210460732430, + "crossed": true, + "fee": "0.104993", + "tid": 722455285904300, + "cloid": "0x00000000000000000000001644000620", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "55.0", + "side": "B", + "time": 1761232008986, + "startPosition": "-2031610529.0", + "dir": "Close Short", + "closedPnl": "0.098505", + "hash": "0x3462baf74b887a0035dc042e0c38dd02083f00dce68b98d2d82b664a0a8c53ea", + "oid": 210460732430, + "crossed": true, + "fee": "0.000043", + "tid": 1037380769505825, + "cloid": "0x00000000000000000000001644000620", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "133078.0", + "side": "B", + "time": 1761232010382, + "startPosition": "-2031610474.0", + "dir": "Close Short", + "closedPnl": "238.342698", + "hash": "0x120011ebd6b1a39d1379042e0c38f00202cb00d171b4c26fb5c8bd3e95b57d87", + "oid": 210460756587, + "crossed": true, + "fee": "0.105078", + "tid": 11189151292329, + "cloid": "0x00000000000000000000001644000621", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3851.6", + "sz": "0.0845", + "side": "A", + "time": 1761232016167, + "startPosition": "-2232.4805", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa298ec3bfd149b1da412042e0c393502020800219817b9ef4661978ebc187508", + "oid": 210460799868, + "crossed": false, + "fee": "0.009112", + "tid": 1040802740753354, + "cloid": "0x00000000000000000000001643000975", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3851.6", + "sz": "0.046", + "side": "A", + "time": 1761232017090, + "startPosition": "-2232.565", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210460799868, + "crossed": false, + "fee": "0.00496", + "tid": 1038240661436832, + "cloid": "0x00000000000000000000001643000975", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3851.6", + "sz": "0.9984", + "side": "A", + "time": 1761232017949, + "startPosition": "-2232.611", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x19f865f8890da0451b72042e0c394702064500de2400bf17bdc1114b48017a2f", + "oid": 210460799868, + "crossed": false, + "fee": "0.107672", + "tid": 781903454451517, + "cloid": "0x00000000000000000000001643000975", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133020.0", + "side": "B", + "time": 1761232024845, + "startPosition": "-2031477396.0", + "dir": "Close Short", + "closedPnl": "238.50486", + "hash": "0x2f33479725ca132d30ad042e0c399e0203fe007cc0cd31ffd2fbf2e9e4cded17", + "oid": 210460947939, + "crossed": true, + "fee": "0.104976", + "tid": 376701494565741, + "cloid": "0x00000000000000000000001644000625", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133137.0", + "side": "B", + "time": 1761232026135, + "startPosition": "-2031344376.0", + "dir": "Close Short", + "closedPnl": "238.847778", + "hash": "0xe192af4a6009bcd0e30c042e0c39ae0206f2002ffb0cdba2855b5a9d1f0d96bb", + "oid": 210460964266, + "crossed": true, + "fee": "0.105041", + "tid": 977337611612950, + "cloid": "0x00000000000000000000001644000626", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133120.0", + "side": "B", + "time": 1761232027737, + "startPosition": "-2031211239.0", + "dir": "Close Short", + "closedPnl": "238.68416", + "hash": "0xcd7735a424d2fb5dcef0042e0c39c10206280089bfd61a2f713fe0f6e3d6d548", + "oid": 210460992234, + "crossed": true, + "fee": "0.105055", + "tid": 289595551602369, + "cloid": "0x00000000000000000000001644000627", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133120.0", + "side": "B", + "time": 1761232029159, + "startPosition": "-2031078119.0", + "dir": "Close Short", + "closedPnl": "238.68416", + "hash": "0xd601fa4c966a14a4d77b042e0c39d30207cf0032316d337679caa59f556dee8f", + "oid": 210461021407, + "crossed": true, + "fee": "0.105055", + "tid": 885053428587022, + "cloid": "0x00000000000000000000001644000628", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003755", + "sz": "133156.0", + "side": "B", + "time": 1761232030372, + "startPosition": "-2030944999.0", + "dir": "Close Short", + "closedPnl": "239.148176", + "hash": "0x35c4b241a235e554373e042e0c39e302024400273d390426d98d5d946139bf3e", + "oid": 210461039558, + "crossed": true, + "fee": "0.105", + "tid": 278761777545988, + "cloid": "0x00000000000000000000001644000629", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3851.9", + "sz": "0.0057", + "side": "A", + "time": 1761232033426, + "startPosition": "-2233.6094", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe251ee48d02aba7fe3cb042e0c3a11020415002e6b2dd951861a999b8f2e946a", + "oid": 210461084258, + "crossed": true, + "fee": "0.00461", + "tid": 481325199641927, + "cloid": "0x00000000000000000000001643000979", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3851.5", + "sz": "1.4627", + "side": "A", + "time": 1761232033426, + "startPosition": "-2233.6151", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe251ee48d02aba7fe3cb042e0c3a11020415002e6b2dd951861a999b8f2e946a", + "oid": 210461084258, + "crossed": true, + "fee": "1.183053", + "tid": 1021045749222437, + "cloid": "0x00000000000000000000001643000979", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133189.0", + "side": "B", + "time": 1761232034075, + "startPosition": "-2030811843.0", + "dir": "Close Short", + "closedPnl": "239.074255", + "hash": "0xf32ba6b5133eeebaf4a5042e0c3a1a020281009aae320d8d96f45207d232c8a5", + "oid": 210461095857, + "crossed": true, + "fee": "0.105054", + "tid": 867770721877389, + "cloid": "0x00000000000000000000001644000631", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3851.3", + "sz": "0.6428", + "side": "A", + "time": 1761232040499, + "startPosition": "-2235.0778", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb43e0ff6bc8ee01eb5b7042e0c3a7302036100dc5781fef05806bb497b82ba09", + "oid": 210461132925, + "crossed": false, + "fee": "0.069317", + "tid": 564035780624199, + "cloid": "0x00000000000000000000001643000980", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003755", + "sz": "133182.0", + "side": "B", + "time": 1761232043594, + "startPosition": "-2030678654.0", + "dir": "Close Short", + "closedPnl": "239.194872", + "hash": "0x2328ea000cf8e9be24a2042e0c3a9702034c00e5a7fc0890c6f19552cbfcc3a8", + "oid": 210461251774, + "crossed": true, + "fee": "0.10502", + "tid": 963950025495305, + "cloid": "0x00000000000000000000001644000634", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133195.0", + "side": "B", + "time": 1761232048704, + "startPosition": "-2030545472.0", + "dir": "Close Short", + "closedPnl": "239.085025", + "hash": "0xb26577264277b614b3df042e0c3adc02064b000bdd7ad4e6562e2279017b8fff", + "oid": 210461306759, + "crossed": true, + "fee": "0.105058", + "tid": 1078641762570485, + "cloid": "0x00000000000000000000001644000636", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "45545.0", + "side": "B", + "time": 1761232052992, + "startPosition": "-2030412277.0", + "dir": "Close Short", + "closedPnl": "81.753275", + "hash": "0x25d6e41534310c2c2750042e0c3b15020aea00facf342afec99f8f67f334e616", + "oid": 210461370510, + "crossed": true, + "fee": "0.035924", + "tid": 332367127396922, + "cloid": "0x00000000000000000000001644000637", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "87575.0", + "side": "B", + "time": 1761232052992, + "startPosition": "-2030366732.0", + "dir": "Close Short", + "closedPnl": "157.197125", + "hash": "0x25d6e41534310c2c2750042e0c3b15020aea00facf342afec99f8f67f334e616", + "oid": 210461370510, + "crossed": true, + "fee": "0.069075", + "tid": 815698695012307, + "cloid": "0x00000000000000000000001644000637", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003754", + "sz": "133156.0", + "side": "B", + "time": 1761232054896, + "startPosition": "-2030279157.0", + "dir": "Close Short", + "closedPnl": "239.281332", + "hash": "0x732f0fcaf612dbf074a8042e0c3b2d020c4000b09115fac216f7bb1db516b5db", + "oid": 210461416877, + "crossed": true, + "fee": "0.104972", + "tid": 1017432600556953, + "cloid": "0x00000000000000000000001644000638", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.8", + "sz": "0.2116", + "side": "A", + "time": 1761232059481, + "startPosition": "-2235.7206", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x70c91441f7a5dc717242042e0c3b6c020746002792a8fb431491bf94b6a9b65c", + "oid": 210461502371, + "crossed": true, + "fee": "0.171025", + "tid": 984469322483052, + "cloid": "0x00000000000000000000001643000985", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.8", + "sz": "0.5287", + "side": "A", + "time": 1761232059481, + "startPosition": "-2235.9322", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x70c91441f7a5dc717242042e0c3b6c020746002792a8fb431491bf94b6a9b65c", + "oid": 210461502371, + "crossed": true, + "fee": "0.42732", + "tid": 1017390555761861, + "cloid": "0x00000000000000000000001643000985", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.8", + "sz": "0.4457", + "side": "A", + "time": 1761232059481, + "startPosition": "-2236.4609", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x70c91441f7a5dc717242042e0c3b6c020746002792a8fb431491bf94b6a9b65c", + "oid": 210461502371, + "crossed": true, + "fee": "0.360236", + "tid": 49278366827469, + "cloid": "0x00000000000000000000001643000985", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.8", + "sz": "0.768", + "side": "A", + "time": 1761232059481, + "startPosition": "-2236.9066", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x70c91441f7a5dc717242042e0c3b6c020746002792a8fb431491bf94b6a9b65c", + "oid": 210461502371, + "crossed": true, + "fee": "0.620734", + "tid": 270111453774784, + "cloid": "0x00000000000000000000001643000985", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133262.0", + "side": "B", + "time": 1761232062710, + "startPosition": "-2030146001.0", + "dir": "Close Short", + "closedPnl": "238.938766", + "hash": "0x10f88e8a3ed9ca831272042e0c3b94020669006fd9dce955b4c139dcfddda46d", + "oid": 210461558181, + "crossed": true, + "fee": "0.105167", + "tid": 518800076363801, + "cloid": "0x00000000000000000000001644000641", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3849.8", + "sz": "0.2325", + "side": "A", + "time": 1761232063525, + "startPosition": "-2237.6746", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x02b3185c8c233729042c042e0c3b9f02058f0042272655fba67bc3af4b271113", + "oid": 210461570763, + "crossed": true, + "fee": "0.187966", + "tid": 452257685626291, + "cloid": "0x00000000000000000000001643000986", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3849.8", + "sz": "0.2343", + "side": "A", + "time": 1761232063525, + "startPosition": "-2237.9071", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x02b3185c8c233729042c042e0c3b9f02058f0042272655fba67bc3af4b271113", + "oid": 210461570763, + "crossed": true, + "fee": "0.189421", + "tid": 101188084451973, + "cloid": "0x00000000000000000000001643000986", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3849.8", + "sz": "0.2906", + "side": "A", + "time": 1761232063525, + "startPosition": "-2238.1414", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x02b3185c8c233729042c042e0c3b9f02058f0042272655fba67bc3af4b271113", + "oid": 210461570763, + "crossed": true, + "fee": "0.234937", + "tid": 580070762820346, + "cloid": "0x00000000000000000000001643000986", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3849.8", + "sz": "0.4566", + "side": "A", + "time": 1761232063525, + "startPosition": "-2238.432", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x02b3185c8c233729042c042e0c3b9f02058f0042272655fba67bc3af4b271113", + "oid": 210461570763, + "crossed": true, + "fee": "0.369141", + "tid": 114192969931637, + "cloid": "0x00000000000000000000001643000986", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3849.8", + "sz": "1.3838", + "side": "A", + "time": 1761232063525, + "startPosition": "-2238.8886", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x02b3185c8c233729042c042e0c3b9f02058f0042272655fba67bc3af4b271113", + "oid": 210461570763, + "crossed": true, + "fee": "1.118744", + "tid": 407789795388395, + "cloid": "0x00000000000000000000001643000986", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133085.0", + "side": "B", + "time": 1761232064744, + "startPosition": "-2030012739.0", + "dir": "Close Short", + "closedPnl": "238.75449", + "hash": "0x5947c4e011d8bca15ac1042e0c3baf02035200c5acdbdb73fd107032d0dc968b", + "oid": 210461583516, + "crossed": true, + "fee": "0.105", + "tid": 60758571521673, + "cloid": "0x00000000000000000000001644000642", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133120.0", + "side": "B", + "time": 1761232070000, + "startPosition": "-2029879654.0", + "dir": "Close Short", + "closedPnl": "238.9504", + "hash": "0xb4b6b4b212653dbeb630042e0c3bee0203c80097ad685c90587f6004d16917a9", + "oid": 210461627609, + "crossed": true, + "fee": "0.104999", + "tid": 385245759516202, + "cloid": "0x00000000000000000000001644000643", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133121.0", + "side": "B", + "time": 1761232071426, + "startPosition": "-2029746534.0", + "dir": "Close Short", + "closedPnl": "238.952195", + "hash": "0xedb752495a2f696eef31042e0c3bfe020554002ef5228840917ffd9c19234359", + "oid": 210461646873, + "crossed": true, + "fee": "0.105", + "tid": 105901936859164, + "cloid": "0x00000000000000000000001644000644", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133134.0", + "side": "B", + "time": 1761232072752, + "startPosition": "-2029613413.0", + "dir": "Close Short", + "closedPnl": "238.97553", + "hash": "0xeb8008d1cfbe4bf0ecf9042e0c3c0b02021400b76ab16ac28f48b4248eb225db", + "oid": 210461665007, + "crossed": true, + "fee": "0.10501", + "tid": 273751777726380, + "cloid": "0x00000000000000000000001644000645", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3850.2", + "sz": "2.5978", + "side": "A", + "time": 1761232073037, + "startPosition": "-2240.2724", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x79ac0761d32b163f7b25042e0c3c0e02071400476e2e35111d74b2b4922ef02a", + "oid": 210461663717, + "crossed": false, + "fee": "0.280057", + "tid": 1097326975535338, + "cloid": "0x00000000000000000000001643000988", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133155.0", + "side": "B", + "time": 1761232073979, + "startPosition": "-2029480279.0", + "dir": "Close Short", + "closedPnl": "239.013225", + "hash": "0x373aa5e7507277a338b4042e0c3c170204c400cceb759675db03513a0f76518d", + "oid": 210461679242, + "crossed": true, + "fee": "0.105027", + "tid": 183261226415737, + "cloid": "0x00000000000000000000001644000646", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133156.0", + "side": "B", + "time": 1761232075361, + "startPosition": "-2029347124.0", + "dir": "Close Short", + "closedPnl": "239.01502", + "hash": "0x8788d59ac820bd028902042e0c3c2502023100806323dbd42b5180ed872496ed", + "oid": 210461694348, + "crossed": true, + "fee": "0.105028", + "tid": 71000189548263, + "cloid": "0x00000000000000000000001644000647", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133085.0", + "side": "B", + "time": 1761232076746, + "startPosition": "-2029213968.0", + "dir": "Close Short", + "closedPnl": "238.887575", + "hash": "0xdc12cacbc5a91d6ddd8c042e0c3c35020b7900b160ac3c3f7fdb761e84acf758", + "oid": 210461711988, + "crossed": true, + "fee": "0.104972", + "tid": 596134267088565, + "cloid": "0x00000000000000000000001644000648", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133102.0", + "side": "B", + "time": 1761232078269, + "startPosition": "-2029080883.0", + "dir": "Close Short", + "closedPnl": "238.91809", + "hash": "0xd9e4eb7c3708464cdb5e042e0c3c4902019b0061d20b651e7dad96cef60c2037", + "oid": 210461731125, + "crossed": true, + "fee": "0.104985", + "tid": 759565500069769, + "cloid": "0x00000000000000000000001644000649", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133120.0", + "side": "B", + "time": 1761232079477, + "startPosition": "-2028947781.0", + "dir": "Close Short", + "closedPnl": "238.9504", + "hash": "0xa5db7bebe58feb3ba755042e0c3c5802023800d180830a0d49a4273ea483c526", + "oid": 210461740170, + "crossed": true, + "fee": "0.104999", + "tid": 891914160146742, + "cloid": "0x00000000000000000000001644000650", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133156.0", + "side": "B", + "time": 1761232083115, + "startPosition": "-2028814661.0", + "dir": "Close Short", + "closedPnl": "239.01502", + "hash": "0xc2e06c391f23caeec45a042e0c3c830202cb001eba26e9c066a9178bde27a4d9", + "oid": 210461786531, + "crossed": true, + "fee": "0.105028", + "tid": 1095784875506249, + "cloid": "0x00000000000000000000001644000651", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133125.0", + "side": "B", + "time": 1761232084320, + "startPosition": "-2028681505.0", + "dir": "Close Short", + "closedPnl": "238.959375", + "hash": "0x31983694be2ae1d53311042e0c3c930205eb007a592e00a7d560e1e77d2ebbbf", + "oid": 210461808382, + "crossed": true, + "fee": "0.105003", + "tid": 879379911397302, + "cloid": "0x00000000000000000000001644000652", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3850.6", + "sz": "0.1601", + "side": "A", + "time": 1761232084926, + "startPosition": "-2242.8702", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xee50a06d44eb90b6efca042e0c3c9a0208d40052dfeeaf8892194bc003ef6aa1", + "oid": 210461818268, + "crossed": true, + "fee": "0.129461", + "tid": 309110579580559, + "cloid": "0x00000000000000000000001643000990", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133155.0", + "side": "B", + "time": 1761232085718, + "startPosition": "-2028548380.0", + "dir": "Close Short", + "closedPnl": "239.013225", + "hash": "0xc6a37cf7f2117f77c81d042e0c3ca402026d00dd8d149e496a6c284ab1155962", + "oid": 210461831523, + "crossed": true, + "fee": "0.105027", + "tid": 1018015525904877, + "cloid": "0x00000000000000000000001644000653", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3850.3", + "sz": "0.0347", + "side": "A", + "time": 1761232089009, + "startPosition": "-2243.0303", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210461818268, + "crossed": false, + "fee": "0.00374", + "tid": 228458836981403, + "cloid": "0x00000000000000000000001643000990", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133190.0", + "side": "B", + "time": 1761232090177, + "startPosition": "-2028415225.0", + "dir": "Close Short", + "closedPnl": "239.07605", + "hash": "0x78847bc72a6e63b579fe042e0c3ce202018400acc56182871c4d2719e9623da0", + "oid": 210461892431, + "crossed": true, + "fee": "0.105054", + "tid": 972509967207267, + "cloid": "0x00000000000000000000001644000655", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133131.0", + "side": "B", + "time": 1761232091544, + "startPosition": "-2028282035.0", + "dir": "Close Short", + "closedPnl": "238.970145", + "hash": "0x289a2b1050eeb9962a13042e0c3cf10205a100f5ebe1d868cc62d6630fe29380", + "oid": 210461909943, + "crossed": true, + "fee": "0.105008", + "tid": 1066593795066899, + "cloid": "0x00000000000000000000001644000656", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3850.3", + "sz": "1.9541", + "side": "A", + "time": 1761232093030, + "startPosition": "-2243.065", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210461818268, + "crossed": false, + "fee": "0.210668", + "tid": 987389433766014, + "cloid": "0x00000000000000000000001643000990", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003755", + "sz": "78151.0", + "side": "B", + "time": 1761232093340, + "startPosition": "-2028148904.0", + "dir": "Close Short", + "closedPnl": "140.359196", + "hash": "0x9b37833ebdd946bb9cb1042e0c3d0302026e002458dc658d3f002e917cdd20a6", + "oid": 210461930510, + "crossed": true, + "fee": "0.061625", + "tid": 639506991602363, + "cloid": "0x00000000000000000000001644000657", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003755", + "sz": "55004.0", + "side": "B", + "time": 1761232093340, + "startPosition": "-2028070753.0", + "dir": "Close Short", + "closedPnl": "98.787184", + "hash": "0x9b37833ebdd946bb9cb1042e0c3d0302026e002458dc658d3f002e917cdd20a6", + "oid": 210461930510, + "crossed": true, + "fee": "0.043373", + "tid": 804521812180895, + "cloid": "0x00000000000000000000001644000657", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003755", + "sz": "76495.0", + "side": "B", + "time": 1761232098332, + "startPosition": "-2028015749.0", + "dir": "Close Short", + "closedPnl": "137.38502", + "hash": "0xd1b68fc620eeda98d330042e0c3d3d02042500abbbe1f96a757f3b18dfe2b483", + "oid": 210461986006, + "crossed": true, + "fee": "0.06032", + "tid": 782935370704677, + "cloid": "0x00000000000000000000001644000659", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "56687.0", + "side": "B", + "time": 1761232098332, + "startPosition": "-2027939254.0", + "dir": "Close Short", + "closedPnl": "101.753165", + "hash": "0xd1b68fc620eeda98d330042e0c3d3d02042500abbbe1f96a757f3b18dfe2b483", + "oid": 210461986006, + "crossed": true, + "fee": "0.044712", + "tid": 214369013023270, + "cloid": "0x00000000000000000000001644000659", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133164.0", + "side": "B", + "time": 1761232099579, + "startPosition": "-2027882567.0", + "dir": "Close Short", + "closedPnl": "238.763052", + "hash": "0xab85b144d9e47634acff042e0c3d4d0209e5002a74e795064f4e5c9798e8501f", + "oid": 210462006618, + "crossed": true, + "fee": "0.10509", + "tid": 538258685615555, + "cloid": "0x00000000000000000000001644000660", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3851.3", + "sz": "0.4483", + "side": "A", + "time": 1761232100700, + "startPosition": "-2245.0191", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xcc69d3a601b84405cde3042e0c3d5902132e008b9cbb62d770327ef8c0bc1df0", + "oid": 210462026545, + "crossed": true, + "fee": "0.362572", + "tid": 837209136548552, + "cloid": "0x00000000000000000000001643000991", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133085.0", + "side": "B", + "time": 1761232101105, + "startPosition": "-2027749403.0", + "dir": "Close Short", + "closedPnl": "238.75449", + "hash": "0x26242165e0ca2ea6279d042e0c3d5d020233004b7bcd4d78c9ecccb89fce0890", + "oid": 210462031141, + "crossed": true, + "fee": "0.105", + "tid": 537546303906005, + "cloid": "0x00000000000000000000001644000661", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133182.0", + "side": "B", + "time": 1761232108036, + "startPosition": "-2027616318.0", + "dir": "Close Short", + "closedPnl": "239.06169", + "hash": "0x6227e1ce0a6eec4363a1042e0c3db00202fe00b3a5620b1505f08d20c962c62e", + "oid": 210462095017, + "crossed": true, + "fee": "0.105048", + "tid": 147689334614270, + "cloid": "0x00000000000000000000001644000663", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003755", + "sz": "133196.0", + "side": "B", + "time": 1761232112981, + "startPosition": "-2027483136.0", + "dir": "Close Short", + "closedPnl": "239.220016", + "hash": "0x9c24807405a10bab9d9e042e0c3de9020bf50059a0a42a7d3fed2bc6c4a4e596", + "oid": 210462147632, + "crossed": true, + "fee": "0.105031", + "tid": 796926885979525, + "cloid": "0x00000000000000000000001644000665", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3852.7", + "sz": "0.3986", + "side": "A", + "time": 1761232115450, + "startPosition": "-2245.4674", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1463bacf536c7bd915dd042e0c3e0402016a00b4ee6f9aabb82c6622126055c3", + "oid": 210462177942, + "crossed": false, + "fee": "0.042999", + "tid": 412702682570701, + "cloid": "0x00000000000000000000001643000994", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3852.7", + "sz": "2.1979", + "side": "A", + "time": 1761232115450, + "startPosition": "-2245.866", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1463bacf536c7bd915dd042e0c3e0402016a00b4ee6f9aabb82c6622126055c3", + "oid": 210462177942, + "crossed": false, + "fee": "0.237099", + "tid": 901773279858416, + "cloid": "0x00000000000000000000001643000994", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "79822.0", + "side": "B", + "time": 1761232124040, + "startPosition": "-2027349940.0", + "dir": "Close Short", + "closedPnl": "143.041024", + "hash": "0x96f311a0369e5079986c042e0c3e6f0201be0085d1916f4b3abbbcf2f5922a64", + "oid": 210462291070, + "crossed": true, + "fee": "0.06301", + "tid": 802060971111778, + "cloid": "0x00000000000000000000001644000667", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "53369.0", + "side": "B", + "time": 1761232124040, + "startPosition": "-2027270118.0", + "dir": "Close Short", + "closedPnl": "95.637248", + "hash": "0x96f311a0369e5079986c042e0c3e6f0201be0085d1916f4b3abbbcf2f5922a64", + "oid": 210462291070, + "crossed": true, + "fee": "0.042128", + "tid": 247065756320144, + "cloid": "0x00000000000000000000001644000667", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3852.8", + "sz": "0.1298", + "side": "A", + "time": 1761232133175, + "startPosition": "-2248.0639", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd3a35fd824ab02b7d51d042e0c3ee70201ef00bdbfae2189776c0b2ae3aedca2", + "oid": 210462403607, + "crossed": true, + "fee": "0.105019", + "tid": 664851998149720, + "cloid": "0x00000000000000000000001643000996", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3852.8", + "sz": "2.4656", + "side": "A", + "time": 1761232133175, + "startPosition": "-2248.1937", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd3a35fd824ab02b7d51d042e0c3ee70201ef00bdbfae2189776c0b2ae3aedca2", + "oid": 210462403607, + "crossed": true, + "fee": "1.994887", + "tid": 363223666458547, + "cloid": "0x00000000000000000000001643000996", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3855.8", + "sz": "0.6882", + "side": "A", + "time": 1761232137227, + "startPosition": "-2250.6593", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xcebaa47e731e798bd034042e0c3f20020f9100640e11985d72834fd132125376", + "oid": 210462470182, + "crossed": true, + "fee": "0.557247", + "tid": 794059258523353, + "cloid": "0x00000000000000000000001643000998", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3855.8", + "sz": "0.1673", + "side": "A", + "time": 1761232137227, + "startPosition": "-2251.3475", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xcebaa47e731e798bd034042e0c3f20020f9100640e11985d72834fd132125376", + "oid": 210462470182, + "crossed": true, + "fee": "0.135465", + "tid": 121939061708834, + "cloid": "0x00000000000000000000001643000998", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3855.8", + "sz": "0.1673", + "side": "A", + "time": 1761232137227, + "startPosition": "-2251.5148", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xcebaa47e731e798bd034042e0c3f20020f9100640e11985d72834fd132125376", + "oid": 210462470182, + "crossed": true, + "fee": "0.135465", + "tid": 963259927739937, + "cloid": "0x00000000000000000000001643000998", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3855.8", + "sz": "0.1673", + "side": "A", + "time": 1761232137227, + "startPosition": "-2251.6821", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xcebaa47e731e798bd034042e0c3f20020f9100640e11985d72834fd132125376", + "oid": 210462470182, + "crossed": true, + "fee": "0.135465", + "tid": 222563288831278, + "cloid": "0x00000000000000000000001643000998", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3855.4", + "sz": "0.6882", + "side": "A", + "time": 1761232137227, + "startPosition": "-2251.8494", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xcebaa47e731e798bd034042e0c3f20020f9100640e11985d72834fd132125376", + "oid": 210462470182, + "crossed": true, + "fee": "0.55719", + "tid": 600785836897244, + "cloid": "0x00000000000000000000001643000998", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3855.4", + "sz": "0.1673", + "side": "A", + "time": 1761232137227, + "startPosition": "-2252.5376", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xcebaa47e731e798bd034042e0c3f20020f9100640e11985d72834fd132125376", + "oid": 210462470182, + "crossed": true, + "fee": "0.135451", + "tid": 15915948571274, + "cloid": "0x00000000000000000000001643000998", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3855.4", + "sz": "0.1673", + "side": "A", + "time": 1761232137227, + "startPosition": "-2252.7049", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xcebaa47e731e798bd034042e0c3f20020f9100640e11985d72834fd132125376", + "oid": 210462470182, + "crossed": true, + "fee": "0.135451", + "tid": 501076112610340, + "cloid": "0x00000000000000000000001643000998", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3855.4", + "sz": "0.1673", + "side": "A", + "time": 1761232137227, + "startPosition": "-2252.8722", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xcebaa47e731e798bd034042e0c3f20020f9100640e11985d72834fd132125376", + "oid": 210462470182, + "crossed": true, + "fee": "0.135451", + "tid": 1097964829659207, + "cloid": "0x00000000000000000000001643000998", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3855.4", + "sz": "0.1673", + "side": "A", + "time": 1761232137227, + "startPosition": "-2253.0395", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xcebaa47e731e798bd034042e0c3f20020f9100640e11985d72834fd132125376", + "oid": 210462470182, + "crossed": true, + "fee": "0.135451", + "tid": 715237370538150, + "cloid": "0x00000000000000000000001643000998", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3855.2", + "sz": "0.0477", + "side": "A", + "time": 1761232137227, + "startPosition": "-2253.2068", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xcebaa47e731e798bd034042e0c3f20020f9100640e11985d72834fd132125376", + "oid": 210462470182, + "crossed": true, + "fee": "0.038617", + "tid": 1089545681790235, + "cloid": "0x00000000000000000000001643000998", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "133085.0", + "side": "B", + "time": 1761232140051, + "startPosition": "-2027216749.0", + "dir": "Close Short", + "closedPnl": "236.09279", + "hash": "0xe71c5ac12eef1c1ae896042e0c3f4602061800a6c9e23aec8ae50613ede2f605", + "oid": 210462526578, + "crossed": true, + "fee": "0.105559", + "tid": 155771733829221, + "cloid": "0x00000000000000000000001644000674", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3854.9", + "sz": "2.5938", + "side": "A", + "time": 1761232143850, + "startPosition": "-2253.2545", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x633b096c8d354d2f64b4042e0c3f72020669005228386c010703b4bf4c39271a", + "oid": 210462583981, + "crossed": false, + "fee": "0.279967", + "tid": 873770888141496, + "cloid": "0x00000000000000000000001643001000", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003778", + "sz": "13300.0", + "side": "B", + "time": 1761232148569, + "startPosition": "-2027083664.0", + "dir": "Close Short", + "closedPnl": "23.5809", + "hash": "0x1afa23fa2f70305d1c73042e0c3faf021c3c00dfca734f2fbec2cf4cee740a47", + "oid": 210462698229, + "crossed": true, + "fee": "0.010551", + "tid": 1118885461742125, + "cloid": "0x00000000000000000000001644000677", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "119185.0", + "side": "B", + "time": 1761232148569, + "startPosition": "-2027070364.0", + "dir": "Close Short", + "closedPnl": "211.076635", + "hash": "0x1afa23fa2f70305d1c73042e0c3faf021c3c00dfca734f2fbec2cf4cee740a47", + "oid": 210462698229, + "crossed": true, + "fee": "0.094609", + "tid": 787609965891751, + "cloid": "0x00000000000000000000001644000677", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3857.9", + "sz": "2.5935", + "side": "A", + "time": 1761232148838, + "startPosition": "-2255.8483", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xba260e0d1db0d816bb9f042e0c3fb2021b7100f2b8b3f6e85deeb95fdcb4b201", + "oid": 210462698260, + "crossed": false, + "fee": "0.280152", + "tid": 554128105867492, + "cloid": "0x00000000000000000000001643001002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "132345.0", + "side": "B", + "time": 1761232151495, + "startPosition": "-2026951179.0", + "dir": "Close Short", + "closedPnl": "234.382995", + "hash": "0x1038df3d939094fd11b2042e0c3fda020db700232e93b3cfb4018a9052946ee7", + "oid": 210462755087, + "crossed": true, + "fee": "0.105055", + "tid": 287446757343199, + "cloid": "0x00000000000000000000001644000678", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3858.4", + "sz": "0.0258", + "side": "A", + "time": 1761232152155, + "startPosition": "-2258.4418", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2ad74f898a01cf9f2c51042e0c3fe4020504006f2504ee71ce9ffadc4905a989", + "oid": 210462757655, + "crossed": false, + "fee": "0.002787", + "tid": 152891753603229, + "cloid": "0x00000000000000000000001643001003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3858.4", + "sz": "2.5662", + "side": "A", + "time": 1761232152555, + "startPosition": "-2258.4676", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x480c23f880dd4a4d4985042e0c3fe80216e500de1bd0691febd4cf4b3fd12437", + "oid": 210462757655, + "crossed": false, + "fee": "0.277239", + "tid": 453229433206387, + "cloid": "0x00000000000000000000001643001003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3860.6", + "sz": "0.0671", + "side": "A", + "time": 1761232155593, + "startPosition": "-2261.0338", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x40b7dd694a30f7f04231042e0c400f0214e8004ee53416c2e48088bc0934d1da", + "oid": 210462826252, + "crossed": true, + "fee": "0.054399", + "tid": 282076464107976, + "cloid": "0x00000000000000000000001643001004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3860.6", + "sz": "0.0671", + "side": "A", + "time": 1761232155593, + "startPosition": "-2261.1009", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x40b7dd694a30f7f04231042e0c400f0214e8004ee53416c2e48088bc0934d1da", + "oid": 210462826252, + "crossed": true, + "fee": "0.054399", + "tid": 476701051048110, + "cloid": "0x00000000000000000000001643001004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3860.6", + "sz": "0.2721", + "side": "A", + "time": 1761232155593, + "startPosition": "-2261.168", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x40b7dd694a30f7f04231042e0c400f0214e8004ee53416c2e48088bc0934d1da", + "oid": 210462826252, + "crossed": true, + "fee": "0.220598", + "tid": 358575497302415, + "cloid": "0x00000000000000000000001643001004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3860.6", + "sz": "0.0946", + "side": "A", + "time": 1761232155593, + "startPosition": "-2261.4401", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x40b7dd694a30f7f04231042e0c400f0214e8004ee53416c2e48088bc0934d1da", + "oid": 210462826252, + "crossed": true, + "fee": "0.076694", + "tid": 548327373093658, + "cloid": "0x00000000000000000000001643001004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3860.6", + "sz": "0.0671", + "side": "A", + "time": 1761232155593, + "startPosition": "-2261.5347", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x40b7dd694a30f7f04231042e0c400f0214e8004ee53416c2e48088bc0934d1da", + "oid": 210462826252, + "crossed": true, + "fee": "0.054399", + "tid": 145669025463438, + "cloid": "0x00000000000000000000001643001004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3860.6", + "sz": "0.2721", + "side": "A", + "time": 1761232155593, + "startPosition": "-2261.6018", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x40b7dd694a30f7f04231042e0c400f0214e8004ee53416c2e48088bc0934d1da", + "oid": 210462826252, + "crossed": true, + "fee": "0.220598", + "tid": 1013033869384065, + "cloid": "0x00000000000000000000001643001004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3860.6", + "sz": "0.0671", + "side": "A", + "time": 1761232155593, + "startPosition": "-2261.8739", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x40b7dd694a30f7f04231042e0c400f0214e8004ee53416c2e48088bc0934d1da", + "oid": 210462826252, + "crossed": true, + "fee": "0.054399", + "tid": 773198660308197, + "cloid": "0x00000000000000000000001643001004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3860.6", + "sz": "0.2721", + "side": "A", + "time": 1761232155593, + "startPosition": "-2261.941", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x40b7dd694a30f7f04231042e0c400f0214e8004ee53416c2e48088bc0934d1da", + "oid": 210462826252, + "crossed": true, + "fee": "0.220598", + "tid": 1074008232711517, + "cloid": "0x00000000000000000000001643001004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3860.6", + "sz": "0.0671", + "side": "A", + "time": 1761232155593, + "startPosition": "-2262.2131", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x40b7dd694a30f7f04231042e0c400f0214e8004ee53416c2e48088bc0934d1da", + "oid": 210462826252, + "crossed": true, + "fee": "0.054399", + "tid": 336162908504298, + "cloid": "0x00000000000000000000001643001004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3860.6", + "sz": "0.2721", + "side": "A", + "time": 1761232155593, + "startPosition": "-2262.2802", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x40b7dd694a30f7f04231042e0c400f0214e8004ee53416c2e48088bc0934d1da", + "oid": 210462826252, + "crossed": true, + "fee": "0.220598", + "tid": 503315318026138, + "cloid": "0x00000000000000000000001643001004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3860.6", + "sz": "0.0671", + "side": "A", + "time": 1761232155593, + "startPosition": "-2262.5523", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x40b7dd694a30f7f04231042e0c400f0214e8004ee53416c2e48088bc0934d1da", + "oid": 210462826252, + "crossed": true, + "fee": "0.054399", + "tid": 380273635527297, + "cloid": "0x00000000000000000000001643001004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3860.6", + "sz": "0.8848", + "side": "A", + "time": 1761232155593, + "startPosition": "-2262.6194", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x40b7dd694a30f7f04231042e0c400f0214e8004ee53416c2e48088bc0934d1da", + "oid": 210462826252, + "crossed": true, + "fee": "0.71733", + "tid": 254521710606844, + "cloid": "0x00000000000000000000001643001004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3860.6", + "sz": "0.1206", + "side": "A", + "time": 1761232155593, + "startPosition": "-2263.5042", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x40b7dd694a30f7f04231042e0c400f0214e8004ee53416c2e48088bc0934d1da", + "oid": 210462826252, + "crossed": true, + "fee": "0.097773", + "tid": 1008879457600664, + "cloid": "0x00000000000000000000001643001004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3860.8", + "sz": "2.5904", + "side": "A", + "time": 1761232158664, + "startPosition": "-2263.6248", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x24ce5b7e2681fdea2648042e0c40380215680063c1851cbcc89706d0e585d7d4", + "oid": 210462866024, + "crossed": false, + "fee": "0.280028", + "tid": 538462532571585, + "cloid": "0x00000000000000000000001643001005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132217.0", + "side": "B", + "time": 1761232161836, + "startPosition": "-2026818834.0", + "dir": "Close Short", + "closedPnl": "233.363005", + "hash": "0x4af16c3cc08c210f4c6b042e0c406002094000225b8f3fe1eeba178f7f8ffaf9", + "oid": 210462938291, + "crossed": true, + "fee": "0.10512", + "tid": 10947430870927, + "cloid": "0x00000000000000000000001644000681", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3862.1", + "sz": "0.0642", + "side": "A", + "time": 1761232163306, + "startPosition": "-2266.2152", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x257f6a0b745886ef26f9042e0c40730204e600f10f5ba5c1c948155e335c60d9", + "oid": 210462920177, + "crossed": false, + "fee": "0.006942", + "tid": 397239683120284, + "cloid": "0x00000000000000000000001643001006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132056.0", + "side": "B", + "time": 1761232163942, + "startPosition": "-2026686617.0", + "dir": "Close Short", + "closedPnl": "232.814728", + "hash": "0x9dca30732de0dca49f43042e0c407b0210bf0058c8e3fb764192dbc5ece4b68f", + "oid": 210462968911, + "crossed": true, + "fee": "0.105047", + "tid": 153342956507362, + "cloid": "0x00000000000000000000001644000682", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3861.8", + "sz": "0.379", + "side": "A", + "time": 1761232169176, + "startPosition": "-2266.2794", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x396a98db0789456d3ae4042e0c40b702053d00c0a28c643fdd33442dc68d1f57", + "oid": 210463078027, + "crossed": true, + "fee": "0.30736", + "tid": 557113410535536, + "cloid": "0x00000000000000000000001643001008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3861.8", + "sz": "0.379", + "side": "A", + "time": 1761232169176, + "startPosition": "-2266.6584", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x396a98db0789456d3ae4042e0c40b702053d00c0a28c643fdd33442dc68d1f57", + "oid": 210463078027, + "crossed": true, + "fee": "0.30736", + "tid": 902852322006917, + "cloid": "0x00000000000000000000001643001008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3861.8", + "sz": "1.5", + "side": "A", + "time": 1761232169176, + "startPosition": "-2267.0374", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x396a98db0789456d3ae4042e0c40b702053d00c0a28c643fdd33442dc68d1f57", + "oid": 210463078027, + "crossed": true, + "fee": "1.216467", + "tid": 220254864688333, + "cloid": "0x00000000000000000000001643001008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3861.8", + "sz": "0.2673", + "side": "A", + "time": 1761232169176, + "startPosition": "-2268.5374", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x396a98db0789456d3ae4042e0c40b702053d00c0a28c643fdd33442dc68d1f57", + "oid": 210463078027, + "crossed": true, + "fee": "0.216774", + "tid": 512620905600, + "cloid": "0x00000000000000000000001643001008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "132170.0", + "side": "B", + "time": 1761232172075, + "startPosition": "-2026554561.0", + "dir": "Close Short", + "closedPnl": "232.75137", + "hash": "0x5cb44cc0c83ae3a35e2e042e0c40d902025600a6633e0275007cf813873ebd8e", + "oid": 210463125307, + "crossed": true, + "fee": "0.105194", + "tid": 466022086926499, + "cloid": "0x00000000000000000000001644000685", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3862.7", + "sz": "0.2747", + "side": "A", + "time": 1761232172777, + "startPosition": "-2268.8047", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8bb85b2a082ed6618d32042e0c40e30201fb000fa321f5332f81067cc722b04c", + "oid": 210463125308, + "crossed": false, + "fee": "0.02971", + "tid": 244799023364689, + "cloid": "0x00000000000000000000001643001009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3862.7", + "sz": "2.3144", + "side": "A", + "time": 1761232172978, + "startPosition": "-2269.0794", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6728a0d95c1c9ce768a2042e0c40e502030800bef71fbbb90af14c2c1b1076d2", + "oid": 210463125308, + "crossed": false, + "fee": "0.250315", + "tid": 290895452039958, + "cloid": "0x00000000000000000000001643001009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131996.0", + "side": "B", + "time": 1761232174073, + "startPosition": "-2026422391.0", + "dir": "Close Short", + "closedPnl": "232.444956", + "hash": "0x22cd6c5b18327a002447042e0c40f402078f0040b33598d2c69617add73653ea", + "oid": 210463165594, + "crossed": true, + "fee": "0.105055", + "tid": 988477184159446, + "cloid": "0x00000000000000000000001644000686", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131974.0", + "side": "B", + "time": 1761232175723, + "startPosition": "-2026290395.0", + "dir": "Close Short", + "closedPnl": "232.538188", + "hash": "0x849308e867e938ce860c042e0c41080203de00ce02ec57a0285bb43b26ed12b9", + "oid": 210463200772, + "crossed": true, + "fee": "0.10501", + "tid": 1099327056280842, + "cloid": "0x00000000000000000000001644000687", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "132024.0", + "side": "B", + "time": 1761232177230, + "startPosition": "-2026158421.0", + "dir": "Close Short", + "closedPnl": "232.494264", + "hash": "0xb2839ac4acadcbeab3fd042e0c411a02023000aa47a0eabc564c46176ba1a5d5", + "oid": 210463230014, + "crossed": true, + "fee": "0.105077", + "tid": 6310661484196, + "cloid": "0x00000000000000000000001644000688", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3865.4", + "sz": "2.5876", + "side": "A", + "time": 1761232177432, + "startPosition": "-2271.3938", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xdb2069d8e70a4ff4dc9a042e0c411c02033c00be820d6ec67ee9152ba60e29df", + "oid": 210463221582, + "crossed": false, + "fee": "0.280059", + "tid": 776306309692779, + "cloid": "0x00000000000000000000001643001011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "131961.0", + "side": "B", + "time": 1761232179043, + "startPosition": "-2026026397.0", + "dir": "Close Short", + "closedPnl": "232.647243", + "hash": "0x720664f2914bcca27380042e0c412f0207e100d82c4eeb7415cf1045504fa68d", + "oid": 210463264979, + "crossed": true, + "fee": "0.104972", + "tid": 1081561287845642, + "cloid": "0x00000000000000000000001644000689", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "5252.0", + "side": "B", + "time": 1761232180792, + "startPosition": "-2025894436.0", + "dir": "Close Short", + "closedPnl": "9.26978", + "hash": "0x65ebe1752094c4546765042e0c4140020589005abb97e32609b48cc7df989e3f", + "oid": 210463288815, + "crossed": true, + "fee": "0.004175", + "tid": 222248492803069, + "cloid": "0x00000000000000000000001644000690", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "126837.0", + "side": "B", + "time": 1761232180792, + "startPosition": "-2025889184.0", + "dir": "Close Short", + "closedPnl": "223.740468", + "hash": "0x65ebe1752094c4546765042e0c4140020589005abb97e32609b48cc7df989e3f", + "oid": 210463288815, + "crossed": true, + "fee": "0.100869", + "tid": 670775627642304, + "cloid": "0x00000000000000000000001644000690", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132016.0", + "side": "B", + "time": 1761232182727, + "startPosition": "-2025762347.0", + "dir": "Close Short", + "closedPnl": "232.876224", + "hash": "0x5d510eab3d561f9c5eca042e0c415b02056e0090d8593e6e0119b9fdfc59f987", + "oid": 210463323482, + "crossed": true, + "fee": "0.104988", + "tid": 695893403899183, + "cloid": "0x00000000000000000000001644000691", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132100.0", + "side": "B", + "time": 1761232184503, + "startPosition": "-2025630331.0", + "dir": "Close Short", + "closedPnl": "233.1565", + "hash": "0xeab1fbedccf5ff5bec2b042e0c416e020cd900d367f91e2d8e7aa7408bf9d946", + "oid": 210463360600, + "crossed": true, + "fee": "0.105027", + "tid": 46661692029541, + "cloid": "0x00000000000000000000001644000692", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3864.8", + "sz": "2.5868", + "side": "A", + "time": 1761232190881, + "startPosition": "-2273.9814", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf1ec81f8fff6c2f7f366042e0c41c20202e500de9af9e1ca95b52d4bbefa9ce2", + "oid": 210463475136, + "crossed": true, + "fee": "2.099467", + "tid": 768396987974336, + "cloid": "0x00000000000000000000001643001016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3865.9", + "sz": "1.25", + "side": "A", + "time": 1761232195143, + "startPosition": "-2276.5682", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x553ba56ed372ce9f56b5042e0c41f902038a00546e75ed71f90450c19276a889", + "oid": 210463546257, + "crossed": true, + "fee": "1.014798", + "tid": 282215606026393, + "cloid": "0x00000000000000000000001643001018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3865.9", + "sz": "1.3376", + "side": "A", + "time": 1761232195143, + "startPosition": "-2277.8182", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x553ba56ed372ce9f56b5042e0c41f902038a00546e75ed71f90450c19276a889", + "oid": 210463546257, + "crossed": true, + "fee": "1.085915", + "tid": 1020906430874905, + "cloid": "0x00000000000000000000001643001018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132264.0", + "side": "B", + "time": 1761232196748, + "startPosition": "-2025498231.0", + "dir": "Close Short", + "closedPnl": "233.313696", + "hash": "0x6878060fdd844e4a69f1042e0c420d020c6f00f578876d1c0c40b1629c882835", + "oid": 210463577647, + "crossed": true, + "fee": "0.105185", + "tid": 128021047851842, + "cloid": "0x00000000000000000000001644000697", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "132007.0", + "side": "B", + "time": 1761232198515, + "startPosition": "-2025365967.0", + "dir": "Close Short", + "closedPnl": "232.596334", + "hash": "0xbcfb7a68b11ced4dbe75042e0c42210205ac004e4c100c1f60c425bb7010c738", + "oid": 210463612921, + "crossed": true, + "fee": "0.105036", + "tid": 693439925838237, + "cloid": "0x00000000000000000000001644000698", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "132014.0", + "side": "B", + "time": 1761232200018, + "startPosition": "-2025233960.0", + "dir": "Close Short", + "closedPnl": "232.476654", + "hash": "0x4ffc4d0cfbbd4a315176042e0c42320207d100f296b06903f3c4f85fbab1241b", + "oid": 210463649988, + "crossed": true, + "fee": "0.105069", + "tid": 660700964161105, + "cloid": "0x00000000000000000000001644000699", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3869.5", + "sz": "2.587", + "side": "A", + "time": 1761232200583, + "startPosition": "-2279.1558", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x5d5f59903ed70abe5ed9042e0c42380206350075d9da2990012804e2fddae4a9", + "oid": 210463668080, + "crossed": true, + "fee": "2.102183", + "tid": 474147869375627, + "cloid": "0x00000000000000000000001643001020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3872.0", + "sz": "1.4", + "side": "A", + "time": 1761232202758, + "startPosition": "-2281.7428", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x904341a6fda814d891bc042e0c42530207e3008c98ab33aa340becf9bcabeec3", + "oid": 210463715881, + "crossed": true, + "fee": "1.138368", + "tid": 516923341375210, + "cloid": "0x00000000000000000000001643001021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3872.0", + "sz": "1.183", + "side": "A", + "time": 1761232202758, + "startPosition": "-2283.1428", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x904341a6fda814d891bc042e0c42530207e3008c98ab33aa340becf9bcabeec3", + "oid": 210463715881, + "crossed": true, + "fee": "0.96192", + "tid": 830156613817492, + "cloid": "0x00000000000000000000001643001021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "131926.0", + "side": "B", + "time": 1761232209426, + "startPosition": "-2025101946.0", + "dir": "Close Short", + "closedPnl": "232.717464", + "hash": "0x191340b04cdb6a0d1a8c042e0c429f020bd20095e7de88dfbcdbec030bdf43f7", + "oid": 210463858362, + "crossed": true, + "fee": "0.104916", + "tid": 928109476237424, + "cloid": "0x00000000000000000000001644000702", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3869.9", + "sz": "2.5832", + "side": "A", + "time": 1761232210052, + "startPosition": "-2284.3258", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc784e081084e5a73c8fe042e0c42a602013e0066a34179456b4d8bd3c742345e", + "oid": 210463872877, + "crossed": false, + "fee": "0.279908", + "tid": 644529187292177, + "cloid": "0x00000000000000000000001643001023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132046.0", + "side": "B", + "time": 1761232210985, + "startPosition": "-2024970020.0", + "dir": "Close Short", + "closedPnl": "233.06119", + "hash": "0xe5b046c47eee5fc9e72a042e0c42b20214fc00aa19e17e9b8978f2173de239b4", + "oid": 210463894209, + "crossed": true, + "fee": "0.104984", + "tid": 1053334290956557, + "cloid": "0x00000000000000000000001644000703", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132049.0", + "side": "B", + "time": 1761232213259, + "startPosition": "-2024837974.0", + "dir": "Close Short", + "closedPnl": "233.066485", + "hash": "0xcc743bcdba3df424cded042e0c42c90210c600b3553112f6703ce7207931ce0f", + "oid": 210463944249, + "crossed": true, + "fee": "0.104986", + "tid": 197149919166095, + "cloid": "0x00000000000000000000001644000704", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131951.0", + "side": "B", + "time": 1761232215303, + "startPosition": "-2024705925.0", + "dir": "Close Short", + "closedPnl": "232.365711", + "hash": "0xcd2cdcd1283096e9cea6042e0c42db021acc00b6c333b5bb70f58823e73470d4", + "oid": 210463983061, + "crossed": true, + "fee": "0.105019", + "tid": 100562371296586, + "cloid": "0x00000000000000000000001644000705", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3867.8", + "sz": "2.5853", + "side": "A", + "time": 1761232216084, + "startPosition": "-2286.909", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3b2d5a0371dc362c3ca7042e0c42e402208900e90cdf54fedef6055630d01016", + "oid": 210463997864, + "crossed": true, + "fee": "2.099878", + "tid": 747150661925848, + "cloid": "0x00000000000000000000001643001025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131938.0", + "side": "B", + "time": 1761232216878, + "startPosition": "-2024573974.0", + "dir": "Close Short", + "closedPnl": "232.342818", + "hash": "0xd8c7c55a4dc920d7da41042e0c42ed0209b3003fe8cc3fa97c9070ad0cccfac2", + "oid": 210464009399, + "crossed": true, + "fee": "0.105009", + "tid": 556961892653398, + "cloid": "0x00000000000000000000001644000706", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.3", + "sz": "2.5842", + "side": "A", + "time": 1761232220877, + "startPosition": "-2289.4943", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x085293da18b7b57c09cc042e0c432502042200bfb3bad44eac1b3f2cd7bb8f66", + "oid": 210464090861, + "crossed": true, + "fee": "2.100884", + "tid": 305659783373029, + "cloid": "0x00000000000000000000001643001027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3872.2", + "sz": "2.1674", + "side": "A", + "time": 1761232226708, + "startPosition": "-2292.0785", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8060549df00230da81da042e0c4367020b9500838b054fac2428fff0af060ac5", + "oid": 210464189778, + "crossed": true, + "fee": "1.762447", + "tid": 1021070351012235, + "cloid": "0x00000000000000000000001643001029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.9", + "sz": "0.4153", + "side": "A", + "time": 1761232226708, + "startPosition": "-2294.2459", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x9ea2468b8788bbe9a01c042e0c4367020bcd0071228bdabb426af1de468c95d4", + "oid": 210464189778, + "crossed": false, + "fee": "0.045024", + "tid": 754271233501390, + "cloid": "0x00000000000000000000001643001029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.7", + "sz": "2.5826", + "side": "A", + "time": 1761232232135, + "startPosition": "-2294.6612", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x82280e93a804385f83a1042e0c43b00209e800794307573125f0b9e66708124a", + "oid": 210464272607, + "crossed": false, + "fee": "0.279901", + "tid": 782681967558818, + "cloid": "0x00000000000000000000001643001031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3872.4", + "sz": "1.25", + "side": "A", + "time": 1761232235248, + "startPosition": "-2297.2438", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc896dc0db5a1ec8fca10042e0c43d802070a00f350a50b616c5f876074a5c67a", + "oid": 210464333828, + "crossed": true, + "fee": "1.016504", + "tid": 621414973850812, + "cloid": "0x00000000000000000000001643001032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3872.4", + "sz": "0.0346", + "side": "A", + "time": 1761232235739, + "startPosition": "-2298.4938", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe0da354388c5e3fce253042e0c43de02166e002923c902ce84a2e09647c9bde7", + "oid": 210464333828, + "crossed": false, + "fee": "0.003751", + "tid": 475195890996577, + "cloid": "0x00000000000000000000001643001032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "13300.0", + "side": "B", + "time": 1761232236603, + "startPosition": "-2024442036.0", + "dir": "Close Short", + "closedPnl": "23.3149", + "hash": "0x9bb147c39fd080449d2b042e0c43e702041a00a93ad39f163f79f3165ed45a2f", + "oid": 210464363470, + "crossed": true, + "fee": "0.010607", + "tid": 74203571455636, + "cloid": "0x00000000000000000000001644000712", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "118626.0", + "side": "B", + "time": 1761232236603, + "startPosition": "-2024428736.0", + "dir": "Close Short", + "closedPnl": "207.951378", + "hash": "0x9bb147c39fd080449d2b042e0c43e702041a00a93ad39f163f79f3165ed45a2f", + "oid": 210464363470, + "crossed": true, + "fee": "0.094613", + "tid": 990951022423038, + "cloid": "0x00000000000000000000001644000712", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.3", + "sz": "1.298", + "side": "A", + "time": 1761232237627, + "startPosition": "-2298.5284", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x7e6f0e3ee517e1ec7fe8042e0c43f60205030024801b00be2237b991a41bbbd7", + "oid": 210464388201, + "crossed": true, + "fee": "1.056329", + "tid": 939724510216730, + "cloid": "0x00000000000000000000001643001033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131658.0", + "side": "B", + "time": 1761232238298, + "startPosition": "-2024310110.0", + "dir": "Close Short", + "closedPnl": "230.664816", + "hash": "0xea7cf7367eeaf149ebf6042e0c43fe020980001c19ee101b8e45a2893deecb34", + "oid": 210464396323, + "crossed": true, + "fee": "0.105035", + "tid": 988603036248859, + "cloid": "0x00000000000000000000001644000713", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131648.0", + "side": "B", + "time": 1761232240350, + "startPosition": "-2024178452.0", + "dir": "Close Short", + "closedPnl": "230.910592", + "hash": "0xaa4f9a00c0eb478dabc9042e0c4417020e6300e65bee665f4e1845537fef2178", + "oid": 210464431752, + "crossed": true, + "fee": "0.104972", + "tid": 597519092831865, + "cloid": "0x00000000000000000000001644000714", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131741.0", + "side": "B", + "time": 1761232242025, + "startPosition": "-2024046804.0", + "dir": "Close Short", + "closedPnl": "231.073714", + "hash": "0x9d18952bc786efb59e92042e0c44290208830011628a0e8740e1407e868ac9a0", + "oid": 210464461196, + "crossed": true, + "fee": "0.105046", + "tid": 94346409864203, + "cloid": "0x00000000000000000000001644000715", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131683.0", + "side": "B", + "time": 1761232243701, + "startPosition": "-2023915063.0", + "dir": "Close Short", + "closedPnl": "230.971982", + "hash": "0x91fc10dfaca452889375042e0c443e02037c00c547a7715a35c4bc326ba82c73", + "oid": 210464481009, + "crossed": true, + "fee": "0.105", + "tid": 878153571108025, + "cloid": "0x00000000000000000000001644000716", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3874.0", + "sz": "0.565", + "side": "A", + "time": 1761232246586, + "startPosition": "-2299.8264", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfe8574c47f4cc9b1ffff042e0c446202088200aa1a4fe884a24e20173e40a39c", + "oid": 210464515574, + "crossed": false, + "fee": "0.061286", + "tid": 465922041003305, + "cloid": "0x00000000000000000000001643001036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3874.0", + "sz": "0.1045", + "side": "A", + "time": 1761232246859, + "startPosition": "-2300.3914", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb0a39b016942fa6db21d042e0c446602090e00e70446193f546c46542846d458", + "oid": 210464515574, + "crossed": false, + "fee": "0.011335", + "tid": 662843434453897, + "cloid": "0x00000000000000000000001643001036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3874.5", + "sz": "1.912", + "side": "A", + "time": 1761232249255, + "startPosition": "-2300.4959", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x27edb92c1f4c7d3b2967042e0c44840206580011ba4f9c0dcbb6647ede405725", + "oid": 210464551036, + "crossed": false, + "fee": "0.207425", + "tid": 824227819728370, + "cloid": "0x00000000000000000000001643001037", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "97852.0", + "side": "B", + "time": 1761232250421, + "startPosition": "-2023783380.0", + "dir": "Close Short", + "closedPnl": "171.73026", + "hash": "0x1b143794e45338821c8d042e0c449202110b007a7f565754bedce2e7a357126c", + "oid": 210464583434, + "crossed": true, + "fee": "0.078003", + "tid": 901436291077329, + "cloid": "0x00000000000000000000001644000717", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "33831.0", + "side": "B", + "time": 1761232250421, + "startPosition": "-2023685528.0", + "dir": "Close Short", + "closedPnl": "59.373405", + "hash": "0x1b143794e45338821c8d042e0c449202110b007a7f565754bedce2e7a357126c", + "oid": 210464583434, + "crossed": true, + "fee": "0.026968", + "tid": 873187914915171, + "cloid": "0x00000000000000000000001644000717", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.5", + "sz": "2.5825", + "side": "A", + "time": 1761232261456, + "startPosition": "-2302.4079", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90fd600fdce59f709277042e0c451f0212fb00f577e8be4234c60b629be9795b", + "oid": 210464803904, + "crossed": false, + "fee": "0.279948", + "tid": 909835014202528, + "cloid": "0x00000000000000000000001643001041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.1", + "sz": "1.9542", + "side": "A", + "time": 1761232266080, + "startPosition": "-2304.9904", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x5211404ceac43fa1538a042e0c4553021585003285c75e73f5d9eb9fa9c8198b", + "oid": 210464886343, + "crossed": true, + "fee": "1.590271", + "tid": 632515053712971, + "cloid": "0x00000000000000000000001643001043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.1", + "sz": "0.6279", + "side": "A", + "time": 1761232266080, + "startPosition": "-2306.9446", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x5211404ceac43fa1538a042e0c4553021585003285c75e73f5d9eb9fa9c8198b", + "oid": 210464886343, + "crossed": true, + "fee": "0.510966", + "tid": 539740554594427, + "cloid": "0x00000000000000000000001643001043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3874.9", + "sz": "2.5814", + "side": "A", + "time": 1761232272573, + "startPosition": "-2307.5725", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x7282828701b1667473fc042e0c459f020f50006c9cb48546164b2dd9c0b5405f", + "oid": 210465005320, + "crossed": false, + "fee": "0.280074", + "tid": 617030384440524, + "cloid": "0x00000000000000000000001643001045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3873.6", + "sz": "2.58", + "side": "A", + "time": 1761232277758, + "startPosition": "-2310.1539", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb8660a8603b90bb5b9df042e0c45d8020793006b9ebc2a875c2eb5d8c2bce5a0", + "oid": 210465117488, + "crossed": false, + "fee": "0.279828", + "tid": 252563931638172, + "cloid": "0x00000000000000000000001643001047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131822.0", + "side": "B", + "time": 1761232278951, + "startPosition": "-2023651697.0", + "dir": "Close Short", + "closedPnl": "230.952144", + "hash": "0x37cd3ed722f86fb83946042e0c45e402146b00bcbdfb8e8adb95ea29e1fc49a2", + "oid": 210465157204, + "crossed": true, + "fee": "0.105166", + "tid": 649965650335253, + "cloid": "0x00000000000000000000001644000727", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "6560.0", + "side": "B", + "time": 1761232280589, + "startPosition": "-2023519875.0", + "dir": "Close Short", + "closedPnl": "11.49968", + "hash": "0x5024154dfae62ea2519d042e0c45f80207de003395e94d74f3ecc0a0b9ea088c", + "oid": 210465184591, + "crossed": true, + "fee": "0.005232", + "tid": 374544949908144, + "cloid": "0x00000000000000000000001644000728", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "125123.0", + "side": "B", + "time": 1761232280589, + "startPosition": "-2023513315.0", + "dir": "Close Short", + "closedPnl": "219.340619", + "hash": "0x5024154dfae62ea2519d042e0c45f80207de003395e94d74f3ecc0a0b9ea088c", + "oid": 210465184591, + "crossed": true, + "fee": "0.099795", + "tid": 982851846943297, + "cloid": "0x00000000000000000000001644000728", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131653.0", + "side": "B", + "time": 1761232282148, + "startPosition": "-2023388192.0", + "dir": "Close Short", + "closedPnl": "230.787709", + "hash": "0xdfdf927f701588fae159042e0c460f0202f600650b18a7cc83a83dd22f1962e5", + "oid": 210465209405, + "crossed": true, + "fee": "0.105003", + "tid": 420448471720048, + "cloid": "0x00000000000000000000001644000729", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131734.0", + "side": "B", + "time": 1761232283646, + "startPosition": "-2023256539.0", + "dir": "Close Short", + "closedPnl": "231.061436", + "hash": "0xe426bef017805047e5a0042e0c462302062100d5b2836f1987ef6a42d6842a32", + "oid": 210465231848, + "crossed": true, + "fee": "0.10504", + "tid": 96483706451977, + "cloid": "0x00000000000000000000001644000730", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131752.0", + "side": "B", + "time": 1761232285121, + "startPosition": "-2023124805.0", + "dir": "Close Short", + "closedPnl": "231.22476", + "hash": "0x1d1fef2a894a9b7f1e99042e0c4637020c390010244dba51c0e89a7d484e7569", + "oid": 210465258625, + "crossed": true, + "fee": "0.105027", + "tid": 670660824971508, + "cloid": "0x00000000000000000000001644000731", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131752.0", + "side": "B", + "time": 1761232286461, + "startPosition": "-2022993053.0", + "dir": "Close Short", + "closedPnl": "231.093008", + "hash": "0xa07d88d3484d9c96a1f7042e0c464802079400b8e340bb684446342607417681", + "oid": 210465280164, + "crossed": true, + "fee": "0.105055", + "tid": 870882303714276, + "cloid": "0x00000000000000000000001644000732", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3872.7", + "sz": "0.0001", + "side": "A", + "time": 1761232286658, + "startPosition": "-2312.7339", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x4ceb7950e330f1f44e65042e0c464b020ccc00367e3410c6f0b424a3a234cbde", + "oid": 210465268211, + "crossed": false, + "fee": "0.00001", + "tid": 806491233758054, + "cloid": "0x00000000000000000000001643001050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131658.0", + "side": "B", + "time": 1761232288087, + "startPosition": "-2022861301.0", + "dir": "Close Short", + "closedPnl": "230.664816", + "hash": "0xbd1024c7a605768cbe89042e0c465e0206e200ad4108955e60d8d01a65095077", + "oid": 210465314205, + "crossed": true, + "fee": "0.105035", + "tid": 171783573636295, + "cloid": "0x00000000000000000000001644000733", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131768.0", + "side": "B", + "time": 1761232292172, + "startPosition": "-2022729643.0", + "dir": "Close Short", + "closedPnl": "230.857536", + "hash": "0x384a6cfd6efe6ef039c4042e0c46900206cf00e309f18dc2dc1318502df248da", + "oid": 210465388227, + "crossed": true, + "fee": "0.105123", + "tid": 205756338025909, + "cloid": "0x00000000000000000000001644000735", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.5", + "sz": "2.5814", + "side": "A", + "time": 1761232292357, + "startPosition": "-2312.734", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x25ff0bd565168d312778042e0c469302053200bb0019ac03c9c7b728241a671b", + "oid": 210465395050, + "crossed": true, + "fee": "2.100885", + "tid": 1075089701440966, + "cloid": "0x00000000000000000000001643001052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131614.0", + "side": "B", + "time": 1761232293723, + "startPosition": "-2022597875.0", + "dir": "Close Short", + "closedPnl": "230.587728", + "hash": "0x37504598955f5d7038ca042e0c46a202084b007e30527c42db18f0eb5453375a", + "oid": 210465420657, + "crossed": true, + "fee": "0.105", + "tid": 1117280884540731, + "cloid": "0x00000000000000000000001644000736", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131682.0", + "side": "B", + "time": 1761232295445, + "startPosition": "-2022466261.0", + "dir": "Close Short", + "closedPnl": "230.970228", + "hash": "0xe94a9ae76bb8a154eac4042e0c46ba02022900cd06bbc0268d13463a2abc7b3f", + "oid": 210465446067, + "crossed": true, + "fee": "0.104999", + "tid": 640834509617565, + "cloid": "0x00000000000000000000001644000737", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131718.0", + "side": "B", + "time": 1761232296607, + "startPosition": "-2022334579.0", + "dir": "Close Short", + "closedPnl": "231.033372", + "hash": "0xa37b9f186bcef8dea4f5042e0c46ca02088200fe06c217b047444a6b2ac2d2c9", + "oid": 210465462310, + "crossed": true, + "fee": "0.105027", + "tid": 167612057678096, + "cloid": "0x00000000000000000000001644000738", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131752.0", + "side": "B", + "time": 1761232297878, + "startPosition": "-2022202861.0", + "dir": "Close Short", + "closedPnl": "231.22476", + "hash": "0x69ea29aa98c3d1836b63042e0c46da020782009033c6f0550db2d4fd57c7ab6e", + "oid": 210465483755, + "crossed": true, + "fee": "0.105027", + "tid": 5116073725056, + "cloid": "0x00000000000000000000001644000739", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "131752.0", + "side": "B", + "time": 1761232299288, + "startPosition": "-2022071109.0", + "dir": "Close Short", + "closedPnl": "231.356512", + "hash": "0xbc23c3cf8921aa9cbd9d042e0c46ed0204d900b52424c96e5fec6f2248258487", + "oid": 210465509620, + "crossed": true, + "fee": "0.104999", + "tid": 521273853121708, + "cloid": "0x00000000000000000000001644000740", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3874.5", + "sz": "2.58", + "side": "A", + "time": 1761232301748, + "startPosition": "-2315.3154", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x768f2341413f63317808042e0c470d0206620026dc3282031a57ce9400333d1c", + "oid": 210465552285, + "crossed": false, + "fee": "0.279893", + "tid": 701395944057801, + "cloid": "0x00000000000000000000001643001056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "105137.0", + "side": "B", + "time": 1761232302742, + "startPosition": "-2021939357.0", + "dir": "Close Short", + "closedPnl": "184.620572", + "hash": "0xadbbaec40c09e365af35042e0c4717020ce500a9a70d023751845a16cb0dbd50", + "oid": 210465582606, + "crossed": true, + "fee": "0.083788", + "tid": 987915593572446, + "cloid": "0x00000000000000000000001644000742", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "26702.0", + "side": "B", + "time": 1761232302742, + "startPosition": "-2021834220.0", + "dir": "Close Short", + "closedPnl": "46.888712", + "hash": "0xadbbaec40c09e365af35042e0c4717020ce500a9a70d023751845a16cb0dbd50", + "oid": 210465582606, + "crossed": true, + "fee": "0.02128", + "tid": 396416896830409, + "cloid": "0x00000000000000000000001644000742", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "131752.0", + "side": "B", + "time": 1761232304152, + "startPosition": "-2021807518.0", + "dir": "Close Short", + "closedPnl": "231.356512", + "hash": "0x4ce28da2b86d66ff4e5c042e0c47290205c10088536085d1f0ab38f5776140e9", + "oid": 210465604505, + "crossed": true, + "fee": "0.104999", + "tid": 975154272141772, + "cloid": "0x00000000000000000000001644000743", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3873.8", + "sz": "0.2799", + "side": "A", + "time": 1761232306587, + "startPosition": "-2317.8954", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2a817c04fb14a00b2bfb042e0c474702070e00ea9617beddce4a2757ba1879f5", + "oid": 210465654615, + "crossed": true, + "fee": "0.227698", + "tid": 838191488937056, + "cloid": "0x00000000000000000000001643001058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3873.8", + "sz": "1.5", + "side": "A", + "time": 1761232306587, + "startPosition": "-2318.1753", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2a817c04fb14a00b2bfb042e0c474702070e00ea9617beddce4a2757ba1879f5", + "oid": 210465654615, + "crossed": true, + "fee": "1.220247", + "tid": 302937382442868, + "cloid": "0x00000000000000000000001643001058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3873.7", + "sz": "0.0051", + "side": "A", + "time": 1761232307095, + "startPosition": "-2319.6753", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210465654615, + "crossed": false, + "fee": "0.000553", + "tid": 610674512559531, + "cloid": "0x00000000000000000000001643001058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "87850.0", + "side": "B", + "time": 1761232314953, + "startPosition": "-2021675766.0", + "dir": "Close Short", + "closedPnl": "154.2646", + "hash": "0x0a3d4bc133e43e960bb7042e0c47a302065700a6cee75d68ae05f713f2e81880", + "oid": 210465792169, + "crossed": true, + "fee": "0.070012", + "tid": 396912130718182, + "cloid": "0x00000000000000000000001644000747", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "43945.0", + "side": "B", + "time": 1761232314953, + "startPosition": "-2021587916.0", + "dir": "Close Short", + "closedPnl": "77.16742", + "hash": "0x0a3d4bc133e43e960bb7042e0c47a302065700a6cee75d68ae05f713f2e81880", + "oid": 210465792169, + "crossed": true, + "fee": "0.035021", + "tid": 755185609286421, + "cloid": "0x00000000000000000000001644000747", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003792", + "sz": "131822.0", + "side": "B", + "time": 1761232325484, + "startPosition": "-2021543971.0", + "dir": "Close Short", + "closedPnl": "231.874898", + "hash": "0xbde3e5f12ef7524dbf5d042e0c481f0208c400d6c9fa711f61ac9143edfb2c38", + "oid": 210465952885, + "crossed": true, + "fee": "0.104972", + "tid": 34393580891655, + "cloid": "0x00000000000000000000001644000752", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3873.5", + "sz": "0.7964", + "side": "A", + "time": 1761232344530, + "startPosition": "-2319.6804", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x379900d43c0dda013912042e0c490402178400b9d700f8d3db61ac26fb01b3eb", + "oid": 210466307447, + "crossed": true, + "fee": "0.647819", + "tid": 1023110104436370, + "cloid": "0x00000000000000000000001643001071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131812.0", + "side": "B", + "time": 1761232345582, + "startPosition": "-2021412149.0", + "dir": "Close Short", + "closedPnl": "230.934624", + "hash": "0x79b77b49454764d57b31042e0c4911021237002ee04a83a71d80269c044b3ec0", + "oid": 210466327351, + "crossed": true, + "fee": "0.105158", + "tid": 189770088423254, + "cloid": "0x00000000000000000000001644000760", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131697.0", + "side": "B", + "time": 1761232347293, + "startPosition": "-2021280337.0", + "dir": "Close Short", + "closedPnl": "231.128235", + "hash": "0x4efd60d6af334c325077042e0c492602020500bc4a366b04f2c60c296e37261c", + "oid": 210466358037, + "crossed": true, + "fee": "0.104983", + "tid": 134745311284443, + "cloid": "0x00000000000000000000001644000761", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131857.0", + "side": "B", + "time": 1761232357373, + "startPosition": "-2021148640.0", + "dir": "Close Short", + "closedPnl": "231.409035", + "hash": "0x1f4a395557043aa420c3042e0c49a10206e3003af2075976c312e4a81608148e", + "oid": 210466489347, + "crossed": true, + "fee": "0.105111", + "tid": 150054941591150, + "cloid": "0x00000000000000000000001644000765", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131790.0", + "side": "B", + "time": 1761232366867, + "startPosition": "-2021016783.0", + "dir": "Close Short", + "closedPnl": "232.21398", + "hash": "0x3182c02ef582a57f32fc042e0c4a150203c700149085c451d54b6b81b4867f69", + "oid": 210466620952, + "crossed": true, + "fee": "0.104863", + "tid": 1090800131131009, + "cloid": "0x00000000000000000000001644000768", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "132031.0", + "side": "B", + "time": 1761232368379, + "startPosition": "-2020884993.0", + "dir": "Close Short", + "closedPnl": "232.638622", + "hash": "0x3842dceae5fa59a739bc042e0c4a280203c700d080fd7879dc0b883da4fe3391", + "oid": 210466645281, + "crossed": true, + "fee": "0.105055", + "tid": 378364035095792, + "cloid": "0x00000000000000000000001644000769", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3869.5", + "sz": "2.5816", + "side": "A", + "time": 1761232368379, + "startPosition": "-2320.4768", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x494284da31e752c44abc042e0c4a280203de00bfccea7196ed0b302cf0eb2cae", + "oid": 210466645300, + "crossed": true, + "fee": "2.097795", + "tid": 803155191355199, + "cloid": "0x00000000000000000000001643001078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "131961.0", + "side": "B", + "time": 1761232373741, + "startPosition": "-2020752962.0", + "dir": "Close Short", + "closedPnl": "232.647243", + "hash": "0x542772bc9e3f7eaa55a1042e0c4a6e020a0d00a239329d7cf7f01e0f5d335894", + "oid": 210466747415, + "crossed": true, + "fee": "0.104972", + "tid": 91425850327310, + "cloid": "0x00000000000000000000001644000772", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132091.0", + "side": "B", + "time": 1761232375676, + "startPosition": "-2020621001.0", + "dir": "Close Short", + "closedPnl": "232.876433", + "hash": "0x8085bb21f40ba7ce81ff042e0c4a860203fa00078f0ec6a0244e6674b30f81b9", + "oid": 210466770056, + "crossed": true, + "fee": "0.105075", + "tid": 26639762162397, + "cloid": "0x00000000000000000000001644000773", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132107.0", + "side": "B", + "time": 1761232377240, + "startPosition": "-2020488910.0", + "dir": "Close Short", + "closedPnl": "233.036748", + "hash": "0x57acf807cdada1c55926042e0c4a9902090500ed68a0c097fb75a35a8ca17baf", + "oid": 210466795248, + "crossed": true, + "fee": "0.10506", + "tid": 342260169387451, + "cloid": "0x00000000000000000000001644000774", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.4", + "sz": "2.5399", + "side": "A", + "time": 1761232384023, + "startPosition": "-2323.0584", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1102fe93b7aaf576127c042e0c4ae6021064007952ae1448b4cba9e676aecf60", + "oid": 210466900217, + "crossed": true, + "fee": "2.06439", + "tid": 602464377369826, + "cloid": "0x00000000000000000000001643001083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.4", + "sz": "0.044", + "side": "A", + "time": 1761232384023, + "startPosition": "-2325.5983", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1102fe93b7aaf576127c042e0c4ae6021064007952ae1448b4cba9e676aecf60", + "oid": 210466900217, + "crossed": true, + "fee": "0.035762", + "tid": 801454800194313, + "cloid": "0x00000000000000000000001643001083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "132170.0", + "side": "B", + "time": 1761232396594, + "startPosition": "-2020356803.0", + "dir": "Close Short", + "closedPnl": "234.07307", + "hash": "0x85fa15f7b9c766208773042e0c4b81018f002ddd54ca84f229c2c14a78cb400b", + "oid": 210467108533, + "crossed": true, + "fee": "0.104916", + "tid": 1100932609287236, + "cloid": "0x00000000000000000000001644000781", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003779", + "sz": "132380.0", + "side": "B", + "time": 1761232398207, + "startPosition": "-2020224633.0", + "dir": "Close Short", + "closedPnl": "234.57736", + "hash": "0xe83e5da52dcbbd1de9b8042e0c4b970202e1008ac8cedbef8c0708f7eccf9708", + "oid": 210467144840, + "crossed": true, + "fee": "0.105055", + "tid": 200864907292481, + "cloid": "0x00000000000000000000001644000782", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "132367.0", + "side": "B", + "time": 1761232399719, + "startPosition": "-2020092253.0", + "dir": "Close Short", + "closedPnl": "234.421957", + "hash": "0x14534e465025521e15cd042e0c4ba7020da7002beb2870f0b81bf9990f292c08", + "oid": 210467167619, + "crossed": true, + "fee": "0.105072", + "tid": 568604005799998, + "cloid": "0x00000000000000000000001644000783", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3866.0", + "sz": "2.5845", + "side": "A", + "time": 1761232399862, + "startPosition": "-2325.6423", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xbc2e55170157c891bda8042e0c4ba802096d00fc9c5ae7635ff70069c05ba27c", + "oid": 210467167592, + "crossed": false, + "fee": "0.279766", + "tid": 768096654019252, + "cloid": "0x00000000000000000000001643001087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003779", + "sz": "132363.0", + "side": "B", + "time": 1761232401571, + "startPosition": "-2019959886.0", + "dir": "Close Short", + "closedPnl": "234.547236", + "hash": "0x0e681105c12113d20fe1042e0c4bbb0203d300eb5c2432a4b230bc588024edbc", + "oid": 210467199721, + "crossed": true, + "fee": "0.105041", + "tid": 1062481502003063, + "cloid": "0x00000000000000000000001644000784", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003779", + "sz": "132415.0", + "side": "B", + "time": 1761232403016, + "startPosition": "-2019827523.0", + "dir": "Close Short", + "closedPnl": "234.63938", + "hash": "0x1d8fef8666e868741f09042e0c4bcf020f2b006c01eb8746c1589ad925ec425e", + "oid": 210467222550, + "crossed": true, + "fee": "0.105083", + "tid": 1087039346799714, + "cloid": "0x00000000000000000000001644000785", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003778", + "sz": "132445.0", + "side": "B", + "time": 1761232404503, + "startPosition": "-2019695108.0", + "dir": "Close Short", + "closedPnl": "234.824985", + "hash": "0x170e05d7aaad6ef81887042e0c4be202092800bd45a08dcabad6b12a69a148e2", + "oid": 210467240267, + "crossed": true, + "fee": "0.105079", + "tid": 522421641934409, + "cloid": "0x00000000000000000000001644000786", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "132450.0", + "side": "B", + "time": 1761232406175, + "startPosition": "-2019562663.0", + "dir": "Close Short", + "closedPnl": "234.9663", + "hash": "0xa0b1fa86a83c3e01a22b042e0c4bf50207ca006c433f5cd3447aa5d9673017ec", + "oid": 210467269175, + "crossed": true, + "fee": "0.105055", + "tid": 827917506673957, + "cloid": "0x00000000000000000000001644000787", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003778", + "sz": "132485.0", + "side": "B", + "time": 1761232422525, + "startPosition": "-2019430213.0", + "dir": "Close Short", + "closedPnl": "234.895905", + "hash": "0xa8c8a8f14a3cc2c1aa42042e0c4ccc02027700d6e53fe1934c91544409309cac", + "oid": 210467533683, + "crossed": true, + "fee": "0.10511", + "tid": 604184608598332, + "cloid": "0x00000000000000000000001644000792", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003776", + "sz": "132450.0", + "side": "B", + "time": 1761232423855, + "startPosition": "-2019297728.0", + "dir": "Close Short", + "closedPnl": "235.09875", + "hash": "0x46d25d8760b9bc0e484c042e0c4cdf020680006cfbbcdae0ea9b08da1fbd95f8", + "oid": 210467553911, + "crossed": true, + "fee": "0.105027", + "tid": 442780100958876, + "cloid": "0x00000000000000000000001644000793", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "9402.0", + "side": "B", + "time": 1761232455640, + "startPosition": "-2019165278.0", + "dir": "Close Short", + "closedPnl": "16.754364", + "hash": "0xf1d1a3aef3e01940f34b042e0c4e6e02052000948ee33813959a4f01b2e3f32b", + "oid": 210468062688, + "crossed": true, + "fee": "0.007441", + "tid": 410230705119208, + "cloid": "0x00000000000000000000001644000806", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "123134.0", + "side": "B", + "time": 1761232455640, + "startPosition": "-2019155876.0", + "dir": "Close Short", + "closedPnl": "219.301654", + "hash": "0xf1d1a3aef3e01940f34b042e0c4e6e02052000948ee33813959a4f01b2e3f32b", + "oid": 210468062688, + "crossed": true, + "fee": "0.097485", + "tid": 933234847151348, + "cloid": "0x00000000000000000000001644000806", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "132672.0", + "side": "B", + "time": 1761232457717, + "startPosition": "-2019032742.0", + "dir": "Close Short", + "closedPnl": "236.421504", + "hash": "0x64ce9db0148191906648042e0c4e87020d7d0095af84b06208974902d3856b7b", + "oid": 210468100201, + "crossed": true, + "fee": "0.105008", + "tid": 1082329053789450, + "cloid": "0x00000000000000000000001644000807", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132685.0", + "side": "B", + "time": 1761232459799, + "startPosition": "-2018900070.0", + "dir": "Close Short", + "closedPnl": "236.311985", + "hash": "0xdadb99c819b9085fdc55042e0c4ea002060b00adb4bc27317ea4451ad8bce24a", + "oid": 210468137632, + "crossed": true, + "fee": "0.105046", + "tid": 766398222992003, + "cloid": "0x00000000000000000000001644000808", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3862.4", + "sz": "0.4044", + "side": "A", + "time": 1761232460211, + "startPosition": "-2328.2268", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd978449ec1275331daf2042e0c4ea402058600845c2a72037d40eff1802b2d1c", + "oid": 210468142382, + "crossed": true, + "fee": "0.32801", + "tid": 605636545796068, + "cloid": "0x00000000000000000000001643001103", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3862.4", + "sz": "1.5", + "side": "A", + "time": 1761232460211, + "startPosition": "-2328.6312", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd978449ec1275331daf2042e0c4ea402058600845c2a72037d40eff1802b2d1c", + "oid": 210468142382, + "crossed": true, + "fee": "1.216656", + "tid": 1087665794141486, + "cloid": "0x00000000000000000000001643001103", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3862.4", + "sz": "0.6825", + "side": "A", + "time": 1761232460211, + "startPosition": "-2330.1312", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd978449ec1275331daf2042e0c4ea402058600845c2a72037d40eff1802b2d1c", + "oid": 210468142382, + "crossed": true, + "fee": "0.553578", + "tid": 869086978629164, + "cloid": "0x00000000000000000000001643001103", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "132696.0", + "side": "B", + "time": 1761232461542, + "startPosition": "-2018767385.0", + "dir": "Close Short", + "closedPnl": "236.464272", + "hash": "0xcaa56a610d9ed8ddcc1f042e0c4eb50204d00046a891f7af6e6e15b3cc92b2c8", + "oid": 210468158286, + "crossed": true, + "fee": "0.105027", + "tid": 602157468940251, + "cloid": "0x00000000000000000000001644000809", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132702.0", + "side": "B", + "time": 1761232463634, + "startPosition": "-2018634689.0", + "dir": "Close Short", + "closedPnl": "236.342262", + "hash": "0x4c514be7feb06c834dcb042e0c4ed1020a2600cd99b38b55f019f73abdb4466d", + "oid": 210468185527, + "crossed": true, + "fee": "0.10506", + "tid": 138752152638077, + "cloid": "0x00000000000000000000001644000810", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "107698.0", + "side": "B", + "time": 1761232464978, + "startPosition": "-2018501987.0", + "dir": "Close Short", + "closedPnl": "191.810138", + "hash": "0x5e324be3c3fde0155fac042e0c4ee502023600c95ef0fee701faf73682f1ba00", + "oid": 210468209521, + "crossed": true, + "fee": "0.085264", + "tid": 793658727209607, + "cloid": "0x00000000000000000000001644000811", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "24973.0", + "side": "B", + "time": 1761232464978, + "startPosition": "-2018394289.0", + "dir": "Close Short", + "closedPnl": "44.476913", + "hash": "0x5e324be3c3fde0155fac042e0c4ee502023600c95ef0fee701faf73682f1ba00", + "oid": 210468209521, + "crossed": true, + "fee": "0.019771", + "tid": 834809635014723, + "cloid": "0x00000000000000000000001644000811", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "72049.0", + "side": "B", + "time": 1761232466794, + "startPosition": "-2018369316.0", + "dir": "Close Short", + "closedPnl": "128.319269", + "hash": "0x4a3e9cc1e804d7414bb8042e0c4efa0203f600a78307f613ee074814a708b12b", + "oid": 210468234001, + "crossed": true, + "fee": "0.057041", + "tid": 778314165361119, + "cloid": "0x00000000000000000000001644000812", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3863.5", + "sz": "2.5884", + "side": "A", + "time": 1761232469789, + "startPosition": "-2330.8137", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xbf1fd76b4a3ce71fc099042e0c4f1c020ae70050e53005f162e882be0930c10a", + "oid": 210468262522, + "crossed": false, + "fee": "0.280007", + "tid": 640540168954375, + "cloid": "0x00000000000000000000001643001106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "60636.0", + "side": "B", + "time": 1761232485139, + "startPosition": "-2018297267.0", + "dir": "Close Short", + "closedPnl": "107.992716", + "hash": "0x3aa0664d318392613c1a042e0c4fd00201a00032cc86b133de69119ff0876c4b", + "oid": 210468483073, + "crossed": true, + "fee": "0.048005", + "tid": 288764265793051, + "cloid": "0x00000000000000000000001644000819", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132696.0", + "side": "B", + "time": 1761232489492, + "startPosition": "-2018236631.0", + "dir": "Close Short", + "closedPnl": "236.331576", + "hash": "0x38e62f309765ec1e3a5f042e0c50040205aa001632690af0dcaeda835669c608", + "oid": 210468536097, + "crossed": true, + "fee": "0.105055", + "tid": 882443750932520, + "cloid": "0x00000000000000000000001644000821", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132575.0", + "side": "B", + "time": 1761232490703, + "startPosition": "-2018103935.0", + "dir": "Close Short", + "closedPnl": "236.116075", + "hash": "0x6d24896ff0b62da56e9e042e0c50140202b700558bb94c7710ed34c2afba0790", + "oid": 210468550633, + "crossed": true, + "fee": "0.104959", + "tid": 627697610235318, + "cloid": "0x00000000000000000000001644000822", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "121.0", + "side": "B", + "time": 1761232490703, + "startPosition": "-2017971360.0", + "dir": "Close Short", + "closedPnl": "0.215501", + "hash": "0x6d24896ff0b62da56e9e042e0c50140202b700558bb94c7710ed34c2afba0790", + "oid": 210468550633, + "crossed": true, + "fee": "0.000095", + "tid": 592779764431026, + "cloid": "0x00000000000000000000001644000822", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132696.0", + "side": "B", + "time": 1761232492119, + "startPosition": "-2017971239.0", + "dir": "Close Short", + "closedPnl": "236.331576", + "hash": "0xc681bb477de41136c7fb042e0c5027020263002d18e730086a4a669a3ce7eb21", + "oid": 210468574036, + "crossed": true, + "fee": "0.105055", + "tid": 47171824414551, + "cloid": "0x00000000000000000000001644000823", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132351.0", + "side": "B", + "time": 1761232493502, + "startPosition": "-2017838543.0", + "dir": "Close Short", + "closedPnl": "235.717131", + "hash": "0xe4a6c27c9a0fc74be620042e0c503702032500623502e61d886f6dcf5903a136", + "oid": 210468593118, + "crossed": true, + "fee": "0.104782", + "tid": 387636289598605, + "cloid": "0x00000000000000000000001644000824", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3867.1", + "sz": "1.74", + "side": "A", + "time": 1761232509193, + "startPosition": "-2333.4021", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2d20650c89c1de212e9a042e0c50ef0209e900f224c4fcf3d0e9105f48c5b80b", + "oid": 210468871271, + "crossed": true, + "fee": "1.413038", + "tid": 1044948476466729, + "cloid": "0x00000000000000000000001643001114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3867.1", + "sz": "0.8474", + "side": "A", + "time": 1761232509193, + "startPosition": "-2335.1421", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2d20650c89c1de212e9a042e0c50ef0209e900f224c4fcf3d0e9105f48c5b80b", + "oid": 210468871271, + "crossed": true, + "fee": "0.688165", + "tid": 198189396012478, + "cloid": "0x00000000000000000000001643001114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3868.4", + "sz": "0.2354", + "side": "A", + "time": 1761232537019, + "startPosition": "-2335.9895", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210469297963, + "crossed": false, + "fee": "0.025497", + "tid": 35887944923489, + "cloid": "0x00000000000000000000001643001122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "132631.0", + "side": "B", + "time": 1761232550161, + "startPosition": "-2017706192.0", + "dir": "Close Short", + "closedPnl": "234.889501", + "hash": "0xf7f1a03b6af6fbfef96b042e0c52f2020325002105fa1ad19bba4b8e29fad5e9", + "oid": 210469479148, + "crossed": true, + "fee": "0.105282", + "tid": 736350263339085, + "cloid": "0x00000000000000000000001644000846", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003779", + "sz": "132380.0", + "side": "B", + "time": 1761232551607, + "startPosition": "-2017573561.0", + "dir": "Close Short", + "closedPnl": "234.57736", + "hash": "0x0b5d7c51492cf9100cd7042e0c53040204260036e42017e2af2627a40820d2fa", + "oid": 210469485973, + "crossed": true, + "fee": "0.105055", + "tid": 173157841549192, + "cloid": "0x00000000000000000000001644000847", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "132380.0", + "side": "B", + "time": 1761232553049, + "startPosition": "-2017441181.0", + "dir": "Close Short", + "closedPnl": "234.44498", + "hash": "0x700a4222a2a06c877183042e0c53160205a400083da38b5913d2ed7561a44672", + "oid": 210469513417, + "crossed": true, + "fee": "0.105083", + "tid": 61749340842067, + "cloid": "0x00000000000000000000001644000848", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "132380.0", + "side": "B", + "time": 1761232554741, + "startPosition": "-2017308801.0", + "dir": "Close Short", + "closedPnl": "234.84212", + "hash": "0x4771074745925dd048ea042e0c532a020947002ce0957ca2eb39b29a049637ba", + "oid": 210469544450, + "crossed": true, + "fee": "0.104999", + "tid": 53460900659968, + "cloid": "0x00000000000000000000001644000849", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003775", + "sz": "132457.0", + "side": "B", + "time": 1761232555986, + "startPosition": "-2017176421.0", + "dir": "Close Short", + "closedPnl": "235.243632", + "hash": "0xdd59ac20a738aa1fded3042e0c53390201e60006423bc8f181225773663c840a", + "oid": 210469562958, + "crossed": true, + "fee": "0.105005", + "tid": 1024489589593324, + "cloid": "0x00000000000000000000001644000850", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "52968.0", + "side": "B", + "time": 1761232564136, + "startPosition": "-2017043964.0", + "dir": "Close Short", + "closedPnl": "94.336008", + "hash": "0x37ca79a006093c703944042e0c53a40210040085a10c5b42db9324f2c50d165a", + "oid": 210469677196, + "crossed": false, + "fee": "0.005591", + "tid": 787777635140127, + "cloid": "0x00000000000000000000001644000853", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "79553.0", + "side": "B", + "time": 1761232564243, + "startPosition": "-2016990996.0", + "dir": "Close Short", + "closedPnl": "141.683893", + "hash": "0xe981f60ad4aaf7fdeafb042e0c53a501b9000df06fae16cf8d4aa15d93aed1e8", + "oid": 210469677196, + "crossed": false, + "fee": "0.008397", + "tid": 176730610032671, + "cloid": "0x00000000000000000000001644000853", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "97852.0", + "side": "B", + "time": 1761232565675, + "startPosition": "-2016911443.0", + "dir": "Close Short", + "closedPnl": "174.372264", + "hash": "0x1ae825819dde6d901c61042e0c53ba02169b006738d18c62beb0d0d45cd2477a", + "oid": 210469711350, + "crossed": true, + "fee": "0.077448", + "tid": 804035546770953, + "cloid": "0x00000000000000000000001644000854", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "34880.0", + "side": "B", + "time": 1761232565675, + "startPosition": "-2016813591.0", + "dir": "Close Short", + "closedPnl": "62.15616", + "hash": "0x1ae825819dde6d901c61042e0c53ba02169b006738d18c62beb0d0d45cd2477a", + "oid": 210469711350, + "crossed": true, + "fee": "0.027607", + "tid": 1006855425287912, + "cloid": "0x00000000000000000000001644000854", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132726.0", + "side": "B", + "time": 1761232567890, + "startPosition": "-2016778711.0", + "dir": "Close Short", + "closedPnl": "236.650458", + "hash": "0x9b7893ff81ce42e39cf2042e0c53d701e100abe51cc161b53f413f5240c21cce", + "oid": 210469746829, + "crossed": true, + "fee": "0.105023", + "tid": 415308997716796, + "cloid": "0x00000000000000000000001644000855", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "132732.0", + "side": "B", + "time": 1761232569687, + "startPosition": "-2016645985.0", + "dir": "Close Short", + "closedPnl": "236.528424", + "hash": "0x5041ef7a899fa64951bb042e0c53ee020cb300602492c51bf40a9acd48938033", + "oid": 210469775123, + "crossed": true, + "fee": "0.105056", + "tid": 503281564641126, + "cloid": "0x00000000000000000000001644000856", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "132722.0", + "side": "B", + "time": 1761232571317, + "startPosition": "-2016513253.0", + "dir": "Close Short", + "closedPnl": "236.510604", + "hash": "0xdfadd7a340438f63e127042e0c54010202b70088db46ae35837682f5ff47694e", + "oid": 210469800669, + "crossed": true, + "fee": "0.105048", + "tid": 1080821241097794, + "cloid": "0x00000000000000000000001644000857", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132810.0", + "side": "B", + "time": 1761232572998, + "startPosition": "-2016380531.0", + "dir": "Close Short", + "closedPnl": "236.93304", + "hash": "0x44f0c2bb894ff56f466a042e0c5414020c2800a124431441e8b96e0e4843cf59", + "oid": 210469833640, + "crossed": true, + "fee": "0.105062", + "tid": 308305928542274, + "cloid": "0x00000000000000000000001644000858", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3863.8", + "sz": "1.74", + "side": "A", + "time": 1761232576833, + "startPosition": "-2336.2249", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x9c47dfc7e71aba7e9dc1042e0c543d02048000ad821dd95040108b1aa61e9469", + "oid": 210469892288, + "crossed": true, + "fee": "1.411832", + "tid": 164049934498668, + "cloid": "0x00000000000000000000001643001133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3863.8", + "sz": "0.6091", + "side": "A", + "time": 1761232576833, + "startPosition": "-2337.9649", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x9c47dfc7e71aba7e9dc1042e0c543d02048000ad821dd95040108b1aa61e9469", + "oid": 210469892288, + "crossed": true, + "fee": "0.494222", + "tid": 868594580339952, + "cloid": "0x00000000000000000000001643001133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "49495.0", + "side": "B", + "time": 1761232581297, + "startPosition": "-2016247721.0", + "dir": "Close Short", + "closedPnl": "88.645545", + "hash": "0x440ae3f312d7fc6c4584042e0c546f02122200d8addb1b3ee7d38f45d1dbd656", + "oid": 210469977082, + "crossed": true, + "fee": "0.039081", + "tid": 25144259155295, + "cloid": "0x00000000000000000000001644000862", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "83422.0", + "side": "B", + "time": 1761232582942, + "startPosition": "-2016198226.0", + "dir": "Close Short", + "closedPnl": "149.408802", + "hash": "0x144eba5626231e0015c8042e0c54830204bb003bc1263cd2b81765a8e526f7ea", + "oid": 210469977082, + "crossed": false, + "fee": "0.008782", + "tid": 791758520620474, + "cloid": "0x00000000000000000000001644000862", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133120.0", + "side": "B", + "time": 1761232584430, + "startPosition": "-2016114804.0", + "dir": "Close Short", + "closedPnl": "238.55104", + "hash": "0x06e85bd62815bae90862042e0c54970203ce00bbc318d9bbaab10728e71994d3", + "oid": 210470032536, + "crossed": true, + "fee": "0.105083", + "tid": 456235205868686, + "cloid": "0x00000000000000000000001644000863", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133120.0", + "side": "B", + "time": 1761232585984, + "startPosition": "-2015981684.0", + "dir": "Close Short", + "closedPnl": "238.55104", + "hash": "0x974149e19352762798bb042e0c54ab02053e00c72e5594f93b09f53452565012", + "oid": 210470052747, + "crossed": true, + "fee": "0.105083", + "tid": 1113117039127310, + "cloid": "0x00000000000000000000001644000864", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3861.4", + "sz": "1.0996", + "side": "A", + "time": 1761232589945, + "startPosition": "-2338.574", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x861bf4ab60e78af18795042e0c54e40205a20090fbeaa9c329e49ffe1feb64dc", + "oid": 210470103009, + "crossed": false, + "fee": "0.118887", + "tid": 62132643496664, + "cloid": "0x00000000000000000000001643001137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "133178.0", + "side": "B", + "time": 1761232591712, + "startPosition": "-2015848564.0", + "dir": "Close Short", + "closedPnl": "238.521798", + "hash": "0xac234e19453ea39bad9d042e0c54f702019000fee031c26d4febf96c04327d86", + "oid": 210470144397, + "crossed": true, + "fee": "0.105157", + "tid": 98849645933713, + "cloid": "0x00000000000000000000001644000866", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133085.0", + "side": "B", + "time": 1761232593447, + "startPosition": "-2015715386.0", + "dir": "Close Short", + "closedPnl": "238.48832", + "hash": "0x07c9f4c74744f6a20943042e0c550b0205f500ace2481574ab92a01a0648d08c", + "oid": 210470181874, + "crossed": true, + "fee": "0.105055", + "tid": 336010878106215, + "cloid": "0x00000000000000000000001644000867", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "132861.0", + "side": "B", + "time": 1761232594802, + "startPosition": "-2015582301.0", + "dir": "Close Short", + "closedPnl": "238.086912", + "hash": "0x5e6ef1a8610cda545fe8042e0c551e020452008dfc0ff92602379cfb2000b43f", + "oid": 210470194482, + "crossed": true, + "fee": "0.104879", + "tid": 637367192155718, + "cloid": "0x00000000000000000000001644000868", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "259.0", + "side": "B", + "time": 1761232594802, + "startPosition": "-2015449440.0", + "dir": "Close Short", + "closedPnl": "0.464128", + "hash": "0x5e6ef1a8610cda545fe8042e0c551e020452008dfc0ff92602379cfb2000b43f", + "oid": 210470194482, + "crossed": true, + "fee": "0.000204", + "tid": 682521249636782, + "cloid": "0x00000000000000000000001644000868", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133120.0", + "side": "B", + "time": 1761232596212, + "startPosition": "-2015449181.0", + "dir": "Close Short", + "closedPnl": "238.55104", + "hash": "0x650743dff236d5dd6681042e0c552f0201c800c58d39f4af08cfef32b13aafc8", + "oid": 210470210739, + "crossed": true, + "fee": "0.105083", + "tid": 318378645949643, + "cloid": "0x00000000000000000000001644000869", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133180.0", + "side": "B", + "time": 1761232599842, + "startPosition": "-2015316061.0", + "dir": "Close Short", + "closedPnl": "238.79174", + "hash": "0x9979be1376ba50f09af3042e0c555e020e2500f911bd6fc23d42696635be2adb", + "oid": 210470268329, + "crossed": true, + "fee": "0.105102", + "tid": 604105873821328, + "cloid": "0x00000000000000000000001644000871", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133120.0", + "side": "B", + "time": 1761232601585, + "startPosition": "-2015182881.0", + "dir": "Close Short", + "closedPnl": "238.68416", + "hash": "0xd0520eb6af7e923bd1cb042e0c5573016800269c4a71b10d741aba096e726c26", + "oid": 210470296475, + "crossed": true, + "fee": "0.105055", + "tid": 70199748720300, + "cloid": "0x00000000000000000000001644000872", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133095.0", + "side": "B", + "time": 1761232603305, + "startPosition": "-2015049761.0", + "dir": "Close Short", + "closedPnl": "238.50624", + "hash": "0x94c697b156aafa829640042e0c55860202b40096f1ae1954388f430415aed46d", + "oid": 210470317259, + "crossed": true, + "fee": "0.105063", + "tid": 748428465387041, + "cloid": "0x00000000000000000000001644000873", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133126.0", + "side": "B", + "time": 1761232604963, + "startPosition": "-2014916666.0", + "dir": "Close Short", + "closedPnl": "238.694918", + "hash": "0xa3803d393b928756a4f9042e0c559b0205b2001ed695a6284748e88bfa966141", + "oid": 210470340773, + "crossed": true, + "fee": "0.10506", + "tid": 322303298213277, + "cloid": "0x00000000000000000000001644000874", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133156.0", + "side": "B", + "time": 1761232606379, + "startPosition": "-2014783540.0", + "dir": "Close Short", + "closedPnl": "239.01502", + "hash": "0x783618fa71a2e71279af042e0c55ab02066b00e00ca605e41bfec44d30a6c0fd", + "oid": 210470372808, + "crossed": true, + "fee": "0.105028", + "tid": 336838603952426, + "cloid": "0x00000000000000000000001644000875", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3857.9", + "sz": "0.0518", + "side": "A", + "time": 1761232621816, + "startPosition": "-2339.6736", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x71b37f04b7f9b724732d042e0c567302053000ea52fcd5f6157c2a5776fd910f", + "oid": 210470547009, + "crossed": false, + "fee": "0.005595", + "tid": 1095639644716545, + "cloid": "0x00000000000000000000001643001145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3860.1", + "sz": "0.5506", + "side": "A", + "time": 1761232627021, + "startPosition": "-2339.7254", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x96266f0f3b907c4697a0042e0c56b10209c400f4d6939b1839ef1a61fa945631", + "oid": 210470668713, + "crossed": true, + "fee": "0.446327", + "tid": 987423853433573, + "cloid": "0x00000000000000000000001643001147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3860.1", + "sz": "0.8861", + "side": "A", + "time": 1761232627021, + "startPosition": "-2340.276", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x96266f0f3b907c4697a0042e0c56b10209c400f4d6939b1839ef1a61fa945631", + "oid": 210470668713, + "crossed": true, + "fee": "0.718291", + "tid": 136022865563172, + "cloid": "0x00000000000000000000001643001147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133261.0", + "side": "B", + "time": 1761232629489, + "startPosition": "-2014650384.0", + "dir": "Close Short", + "closedPnl": "238.936973", + "hash": "0xee410e4267ccd944efba042e0c56ce02072e002802cff8169209b99526c0b32f", + "oid": 210470712700, + "crossed": true, + "fee": "0.105166", + "tid": 881558885590545, + "cloid": "0x00000000000000000000001644000882", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133120.0", + "side": "B", + "time": 1761232630973, + "startPosition": "-2014517123.0", + "dir": "Close Short", + "closedPnl": "238.81728", + "hash": "0xf0b4afc5d005bdb1f22e042e0c56dc02038c00ab6b08dc84947d5b188f09979c", + "oid": 210470736521, + "crossed": true, + "fee": "0.105027", + "tid": 57801063931546, + "cloid": "0x00000000000000000000001644000883", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133166.0", + "side": "B", + "time": 1761232632321, + "startPosition": "-2014384003.0", + "dir": "Close Short", + "closedPnl": "238.899804", + "hash": "0x8b306015ead85b128caa042e0c56ed0202ac00fb85db79e42ef90b68a9dc34fd", + "oid": 210470759987, + "crossed": true, + "fee": "0.105063", + "tid": 1084683771796357, + "cloid": "0x00000000000000000000001644000884", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133120.0", + "side": "B", + "time": 1761232633962, + "startPosition": "-2014250837.0", + "dir": "Close Short", + "closedPnl": "238.81728", + "hash": "0x4b21c899fe987a0d4c9b042e0c57010207e4007f999b98dfeeea73ecbd9c53f7", + "oid": 210470791782, + "crossed": true, + "fee": "0.105027", + "tid": 1072292133354596, + "cloid": "0x00000000000000000000001644000885", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133049.0", + "side": "B", + "time": 1761232635827, + "startPosition": "-2014117717.0", + "dir": "Close Short", + "closedPnl": "238.423808", + "hash": "0x1b5dee0c9d0cd6da1cd7042e0c57190204eb00f2380ff5acbf26995f5c00b0c4", + "oid": 210470819786, + "crossed": true, + "fee": "0.105027", + "tid": 448665806294189, + "cloid": "0x00000000000000000000001644000886", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3860.1", + "sz": "2.5907", + "side": "A", + "time": 1761232635827, + "startPosition": "-2341.1621", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x33d851dde9b09e4d3552042e0c57190204ee00c384b3bd1fd7a0fd30a8b47837", + "oid": 210470805704, + "crossed": false, + "fee": "0.28001", + "tid": 937456211205969, + "cloid": "0x00000000000000000000001643001150", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133085.0", + "side": "B", + "time": 1761232637265, + "startPosition": "-2013984668.0", + "dir": "Close Short", + "closedPnl": "238.48832", + "hash": "0x9cf09c353c098e849e6a042e0c572b020481001ad70cad5640b94787fb0d686f", + "oid": 210470837887, + "crossed": true, + "fee": "0.105055", + "tid": 469666811481003, + "cloid": "0x00000000000000000000001644000887", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133085.0", + "side": "B", + "time": 1761232638648, + "startPosition": "-2013851583.0", + "dir": "Close Short", + "closedPnl": "238.621405", + "hash": "0xd75dd75408ba4398d8d7042e0c573e0202e50039a3bd626a7b2682a6c7be1d83", + "oid": 210470860104, + "crossed": true, + "fee": "0.105028", + "tid": 344350175850659, + "cloid": "0x00000000000000000000001644000888", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "133049.0", + "side": "B", + "time": 1761232640238, + "startPosition": "-2013718498.0", + "dir": "Close Short", + "closedPnl": "238.290759", + "hash": "0x0507955e7d9a71110681042e0c575302043a0044189d8fe3a8d040b13c9e4afb", + "oid": 210470881179, + "crossed": true, + "fee": "0.105055", + "tid": 424059492756684, + "cloid": "0x00000000000000000000001644000889", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133053.0", + "side": "B", + "time": 1761232642570, + "startPosition": "-2013585449.0", + "dir": "Close Short", + "closedPnl": "238.430976", + "hash": "0xb8d53206f44eb387ba4e042e0c5771020ac700ec8f41d2595c9ddd59b3428d72", + "oid": 210470910868, + "crossed": true, + "fee": "0.10503", + "tid": 735276906009336, + "cloid": "0x00000000000000000000001644000890", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133086.0", + "side": "B", + "time": 1761232644023, + "startPosition": "-2013452396.0", + "dir": "Close Short", + "closedPnl": "238.756284", + "hash": "0x71e9d6aa3b132dae7363042e0c5782020aa7008fd6164c8015b281fcfa170799", + "oid": 210470945807, + "crossed": true, + "fee": "0.105", + "tid": 322111036174385, + "cloid": "0x00000000000000000000001644000891", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133120.0", + "side": "B", + "time": 1761232645400, + "startPosition": "-2013319310.0", + "dir": "Close Short", + "closedPnl": "238.68416", + "hash": "0x691e34916b18e06f6a97042e0c57940205cd0077061bff410ce6dfe42a1cba5a", + "oid": 210470967552, + "crossed": true, + "fee": "0.105055", + "tid": 790436132035868, + "cloid": "0x00000000000000000000001644000892", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133120.0", + "side": "B", + "time": 1761232647013, + "startPosition": "-2013186190.0", + "dir": "Close Short", + "closedPnl": "238.55104", + "hash": "0x076793301a51433508e1042e0c57a802057d0015b5546207ab303e82d9551d1f", + "oid": 210470992356, + "crossed": true, + "fee": "0.105083", + "tid": 877913905157864, + "cloid": "0x00000000000000000000001644000893", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "132854.0", + "side": "B", + "time": 1761232649374, + "startPosition": "-2013053070.0", + "dir": "Close Short", + "closedPnl": "238.074368", + "hash": "0xaeb8ebf3776bba28b032042e0c57c502032500d9126ed8fa52819746366f9413", + "oid": 210471032899, + "crossed": true, + "fee": "0.104873", + "tid": 392500012922273, + "cloid": "0x00000000000000000000001644000894", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "231.0", + "side": "B", + "time": 1761232649374, + "startPosition": "-2012920216.0", + "dir": "Close Short", + "closedPnl": "0.413952", + "hash": "0xaeb8ebf3776bba28b032042e0c57c502032500d9126ed8fa52819746366f9413", + "oid": 210471032899, + "crossed": true, + "fee": "0.000182", + "tid": 377102481635099, + "cloid": "0x00000000000000000000001644000894", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133073.0", + "side": "B", + "time": 1761232650579, + "startPosition": "-2012919985.0", + "dir": "Close Short", + "closedPnl": "238.466816", + "hash": "0x4d48fc9a271d106b4ec2042e0c57d60202c3007fc2102f3df111a7ece610ea55", + "oid": 210471056784, + "crossed": true, + "fee": "0.105046", + "tid": 791638385492131, + "cloid": "0x00000000000000000000001644000895", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "4428.0", + "side": "B", + "time": 1761232652059, + "startPosition": "-2012786912.0", + "dir": "Close Short", + "closedPnl": "7.934976", + "hash": "0x06459fef64f8679107bf042e0c57e8020c7700d4fffb8663aa0e4b4223fc417b", + "oid": 210471081167, + "crossed": true, + "fee": "0.003495", + "tid": 68683334298727, + "cloid": "0x00000000000000000000001644000896", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "128657.0", + "side": "B", + "time": 1761232652059, + "startPosition": "-2012782484.0", + "dir": "Close Short", + "closedPnl": "230.553344", + "hash": "0x06459fef64f8679107bf042e0c57e8020c7700d4fffb8663aa0e4b4223fc417b", + "oid": 210471081167, + "crossed": true, + "fee": "0.10156", + "tid": 846360728215841, + "cloid": "0x00000000000000000000001644000896", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133076.0", + "side": "B", + "time": 1761232658949, + "startPosition": "-2012653827.0", + "dir": "Close Short", + "closedPnl": "238.472192", + "hash": "0x451b936730ccadf24695042e0c58450202ab004ccbcfccc4e8e43eb9efc087dc", + "oid": 210471146391, + "crossed": true, + "fee": "0.105048", + "tid": 833346574126928, + "cloid": "0x00000000000000000000001644000897", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133085.0", + "side": "B", + "time": 1761232661318, + "startPosition": "-2012520751.0", + "dir": "Close Short", + "closedPnl": "238.621405", + "hash": "0x1f54263e079bd18a20cd042e0c586302048a0023a29ef05cc31cd190c69fab74", + "oid": 210471181151, + "crossed": true, + "fee": "0.105028", + "tid": 598406875176459, + "cloid": "0x00000000000000000000001644000898", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133049.0", + "side": "B", + "time": 1761232667292, + "startPosition": "-2012387666.0", + "dir": "Close Short", + "closedPnl": "238.689906", + "hash": "0x926941ff8415cd7c93e2042e0c58ab02082a00e51f18ec4e3631ed524319a767", + "oid": 210471262135, + "crossed": true, + "fee": "0.104971", + "tid": 161875239549764, + "cloid": "0x00000000000000000000001644000899", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00375", + "sz": "133249.0", + "side": "B", + "time": 1761232689487, + "startPosition": "-2012254617.0", + "dir": "Close Short", + "closedPnl": "239.981449", + "hash": "0xa164421a1bf1382ba2dd042e0c59b10208ba00ffb6f456fd452ced6cdaf51216", + "oid": 210471620645, + "crossed": true, + "fee": "0.104933", + "tid": 990213880632217, + "cloid": "0x00000000000000000000001644000907", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003747", + "sz": "133381.0", + "side": "B", + "time": 1761232692081, + "startPosition": "-2012121368.0", + "dir": "Close Short", + "closedPnl": "240.619324", + "hash": "0x8616343dc88f3927878f042e0c59cc0211a40023638257f929dedf9087831312", + "oid": 210471679718, + "crossed": true, + "fee": "0.104953", + "tid": 1075519899725409, + "cloid": "0x00000000000000000000001644000908", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003747", + "sz": "133476.0", + "side": "B", + "time": 1761232694272, + "startPosition": "-2011987987.0", + "dir": "Close Short", + "closedPnl": "240.790704", + "hash": "0x69caf1eafbed7bec6b44042e0c59e3020b9700d096e09abe0d939d3dbae155d7", + "oid": 210471718780, + "crossed": true, + "fee": "0.105028", + "tid": 397952202197052, + "cloid": "0x00000000000000000000001644000909", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003746", + "sz": "133547.0", + "side": "B", + "time": 1761232698593, + "startPosition": "-2011854511.0", + "dir": "Close Short", + "closedPnl": "241.052335", + "hash": "0x9e2fc17d1f58396c9fa9042e0c5a1a0206930062ba5b583e41f86ccfde5c1357", + "oid": 210471785122, + "crossed": true, + "fee": "0.105056", + "tid": 1092297939791762, + "cloid": "0x00000000000000000000001644000911", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.0", + "sz": "2.5904", + "side": "A", + "time": 1761232720771, + "startPosition": "-2343.7528", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb5d292c273910483b74c042e0c5b2202054f00a80e942355599b3e153294de6e", + "oid": 210472196103, + "crossed": true, + "fee": "2.092706", + "tid": 754239650999315, + "cloid": "0x00000000000000000000001643001175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3852.0", + "sz": "0.0369", + "side": "A", + "time": 1761232732110, + "startPosition": "-2346.3432", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210472394633, + "crossed": false, + "fee": "0.003979", + "tid": 857381778153588, + "cloid": "0x00000000000000000000001643001179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3853.6", + "sz": "0.7666", + "side": "A", + "time": 1761232745426, + "startPosition": "-2346.3801", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa73a09c08ec2cc81a8b3042e0c5c580205ec00a629c5eb534b02b5134dc6a66c", + "oid": 210472591243, + "crossed": true, + "fee": "0.620375", + "tid": 79546766310564, + "cloid": "0x00000000000000000000001643001183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3853.6", + "sz": "1.7956", + "side": "A", + "time": 1761232745426, + "startPosition": "-2347.1467", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa73a09c08ec2cc81a8b3042e0c5c580205ec00a629c5eb534b02b5134dc6a66c", + "oid": 210472591243, + "crossed": true, + "fee": "1.4531", + "tid": 256390279629516, + "cloid": "0x00000000000000000000001643001183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133605.0", + "side": "B", + "time": 1761232747092, + "startPosition": "-2011720964.0", + "dir": "Close Short", + "closedPnl": "239.42016", + "hash": "0x2d70791ae95089ec2eea042e0c5c6f0203ca00008453a8bed139246da85463d6", + "oid": 210472612526, + "crossed": true, + "fee": "0.105466", + "tid": 477829345039067, + "cloid": "0x00000000000000000000001644000927", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133072.0", + "side": "B", + "time": 1761232748849, + "startPosition": "-2011587359.0", + "dir": "Close Short", + "closedPnl": "238.598096", + "hash": "0x5966c5cc0965c85c5ae0042e0c5c84020b4a00b1a468e72efd2f711ec869a246", + "oid": 210472639011, + "crossed": true, + "fee": "0.105017", + "tid": 851837724221700, + "cloid": "0x00000000000000000000001644000928", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133070.0", + "side": "B", + "time": 1761232750465, + "startPosition": "-2011454287.0", + "dir": "Close Short", + "closedPnl": "238.59451", + "hash": "0x2cd12be8206223c42e4a042e0c5c9702049b00cdbb654296d099d73adf65fdae", + "oid": 210472656165, + "crossed": true, + "fee": "0.105016", + "tid": 396763066311705, + "cloid": "0x00000000000000000000001644000929", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133120.0", + "side": "B", + "time": 1761232753477, + "startPosition": "-2011321217.0", + "dir": "Close Short", + "closedPnl": "238.9504", + "hash": "0x6934b14449a550376aae042e0c5cc10205fd0029e4a86f090cfd5c9708a92a22", + "oid": 210472690310, + "crossed": true, + "fee": "0.104999", + "tid": 1032248629443574, + "cloid": "0x00000000000000000000001644000930", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "9704.0", + "side": "B", + "time": 1761232755810, + "startPosition": "-2011188097.0", + "dir": "Close Short", + "closedPnl": "17.41868", + "hash": "0xee57a411a903adffefd1042e0c5ce002028800f74406ccd192204f64680787ea", + "oid": 210472720049, + "crossed": true, + "fee": "0.007654", + "tid": 117164441220659, + "cloid": "0x00000000000000000000001644000931", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "123422.0", + "side": "B", + "time": 1761232755810, + "startPosition": "-2011178393.0", + "dir": "Close Short", + "closedPnl": "221.54249", + "hash": "0xee57a411a903adffefd1042e0c5ce002028800f74406ccd192204f64680787ea", + "oid": 210472720049, + "crossed": true, + "fee": "0.09735", + "tid": 351113805799, + "cloid": "0x00000000000000000000001644000931", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133156.0", + "side": "B", + "time": 1761232757310, + "startPosition": "-2011054971.0", + "dir": "Close Short", + "closedPnl": "238.881864", + "hash": "0xb362b7b0ae0b5f4fb4dc042e0c5cf40203f40096490e7e21572b63036d0f393a", + "oid": 210472737972, + "crossed": true, + "fee": "0.105056", + "tid": 337624962852955, + "cloid": "0x00000000000000000000001644000932", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133143.0", + "side": "B", + "time": 1761232759214, + "startPosition": "-2010921815.0", + "dir": "Close Short", + "closedPnl": "238.592256", + "hash": "0x172af542a2b627ef18a4042e0c5d0c0207ff00283db946c1baf3a09561ba01d9", + "oid": 210472761467, + "crossed": true, + "fee": "0.105101", + "tid": 18062249571993, + "cloid": "0x00000000000000000000001644000933", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133085.0", + "side": "B", + "time": 1761232760554, + "startPosition": "-2010788672.0", + "dir": "Close Short", + "closedPnl": "238.621405", + "hash": "0x2aae8f12eafe63b32c28042e0c5d1d02050e00f885f18285ce773a65a9f23d9d", + "oid": 210472785414, + "crossed": true, + "fee": "0.105028", + "tid": 1035979866872657, + "cloid": "0x00000000000000000000001644000934", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133065.0", + "side": "B", + "time": 1761232761914, + "startPosition": "-2010655587.0", + "dir": "Close Short", + "closedPnl": "238.585545", + "hash": "0x8e858594bc3d7b1d8fff042e0c5d2d0202f2007a573099ef324e30e77b315508", + "oid": 210472806904, + "crossed": true, + "fee": "0.105012", + "tid": 721726237439951, + "cloid": "0x00000000000000000000001644000935", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "132987.0", + "side": "B", + "time": 1761232763381, + "startPosition": "-2010522522.0", + "dir": "Close Short", + "closedPnl": "238.312704", + "hash": "0x4e770fe29f690c3f4ff0042e0c5d4102053900c83a6c2b11f23fbb355e6ce629", + "oid": 210472824901, + "crossed": true, + "fee": "0.104978", + "tid": 369875539337941, + "cloid": "0x00000000000000000000001644000936", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133072.0", + "side": "B", + "time": 1761232764783, + "startPosition": "-2010389535.0", + "dir": "Close Short", + "closedPnl": "238.598096", + "hash": "0x73bfd09427c03ef37539042e0c5d5102055f0079c2c35dc517887be6e6c418de", + "oid": 210472841982, + "crossed": true, + "fee": "0.105017", + "tid": 458788378598670, + "cloid": "0x00000000000000000000001644000937", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133085.0", + "side": "B", + "time": 1761232766112, + "startPosition": "-2010256463.0", + "dir": "Close Short", + "closedPnl": "238.75449", + "hash": "0xf985a4cd2d6b7836faff042e0c5d5e0205c800b2c86e97099d4e501fec6f5221", + "oid": 210472864009, + "crossed": true, + "fee": "0.105", + "tid": 1014579736605275, + "cloid": "0x00000000000000000000001644000938", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133156.0", + "side": "B", + "time": 1761232767281, + "startPosition": "-2010123378.0", + "dir": "Close Short", + "closedPnl": "239.01502", + "hash": "0xda903d82bcbecf24dc09042e0c5d6d0206fa006857b1edf67e58e8d57bb2a90f", + "oid": 210472882616, + "crossed": true, + "fee": "0.105028", + "tid": 143450044095621, + "cloid": "0x00000000000000000000001644000939", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133180.0", + "side": "B", + "time": 1761232770188, + "startPosition": "-2009990222.0", + "dir": "Close Short", + "closedPnl": "238.65856", + "hash": "0xd4486b8119945265d5c2042e0c5d900202090066b4977137781116d3d8982c50", + "oid": 210472926222, + "crossed": true, + "fee": "0.10513", + "tid": 1011420119814818, + "cloid": "0x00000000000000000000001644000941", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133065.0", + "side": "B", + "time": 1761232771419, + "startPosition": "-2009857042.0", + "dir": "Close Short", + "closedPnl": "238.585545", + "hash": "0xa5af65ddaef7f712a729042e0c5d9f02054400c349fb15e4497811306dfbd0fd", + "oid": 210472944665, + "crossed": true, + "fee": "0.105012", + "tid": 70710303673833, + "cloid": "0x00000000000000000000001644000942", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133084.0", + "side": "B", + "time": 1761232772813, + "startPosition": "-2009723977.0", + "dir": "Close Short", + "closedPnl": "238.486528", + "hash": "0x3e20c438afefc5db3f9a042e0c5db0020716001e4ae2e4ade1e96f8b6ee39fc5", + "oid": 210472964527, + "crossed": true, + "fee": "0.105055", + "tid": 351899643445145, + "cloid": "0x00000000000000000000001644000943", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133046.0", + "side": "B", + "time": 1761232774604, + "startPosition": "-2009590893.0", + "dir": "Close Short", + "closedPnl": "238.418432", + "hash": "0x7b67189cb7021b907ce0042e0c5dc902021b008252053a621f2fc3ef7605f57b", + "oid": 210472993660, + "crossed": true, + "fee": "0.105025", + "tid": 81700737405713, + "cloid": "0x00000000000000000000001644000944", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133014.0", + "side": "B", + "time": 1761232775785, + "startPosition": "-2009457847.0", + "dir": "Close Short", + "closedPnl": "238.494102", + "hash": "0xe5f3087af5ff1f2fe76c042e0c5dda0202cd006090f23e0189bbb3cdb4f2f91a", + "oid": 210473009273, + "crossed": true, + "fee": "0.104971", + "tid": 815753535304740, + "cloid": "0x00000000000000000000001644000945", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133049.0", + "side": "B", + "time": 1761232777277, + "startPosition": "-2009324833.0", + "dir": "Close Short", + "closedPnl": "238.556857", + "hash": "0x290efafa174f4c892a88042e0c5deb02069500dfb2426b5bccd7a64cd6432673", + "oid": 210473031736, + "crossed": true, + "fee": "0.104999", + "tid": 16215399799818, + "cloid": "0x00000000000000000000001644000946", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133111.0", + "side": "B", + "time": 1761232778503, + "startPosition": "-2009191784.0", + "dir": "Close Short", + "closedPnl": "238.801134", + "hash": "0xfa1ef2f118279f7efb98042e0c5dfa02094800d6b32abe519de79e43d72b7969", + "oid": 210473054078, + "crossed": true, + "fee": "0.10502", + "tid": 381350273574581, + "cloid": "0x00000000000000000000001644000947", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003754", + "sz": "133146.0", + "side": "B", + "time": 1761232779967, + "startPosition": "-2009058673.0", + "dir": "Close Short", + "closedPnl": "239.263362", + "hash": "0x35c08eeba70354f7373a042e0c5e0b02045100d1420673c9d9893a3e66072ee1", + "oid": 210473084927, + "crossed": true, + "fee": "0.104964", + "tid": 826510853456305, + "cloid": "0x00000000000000000000001644000948", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133191.0", + "side": "B", + "time": 1761232784552, + "startPosition": "-2008925527.0", + "dir": "Close Short", + "closedPnl": "238.811463", + "hash": "0x2b7f6af31783ef0e2cf9042e0c5e4302058100d8b2870de0cf481645d687c8f8", + "oid": 210473150677, + "crossed": true, + "fee": "0.105111", + "tid": 816599069554042, + "cloid": "0x00000000000000000000001644000950", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133089.0", + "side": "B", + "time": 1761232785927, + "startPosition": "-2008792336.0", + "dir": "Close Short", + "closedPnl": "238.761666", + "hash": "0x45611d84086a377746da042e0c5e550201e50069a36d5649e929c8d6c76e1161", + "oid": 210473167888, + "crossed": true, + "fee": "0.105003", + "tid": 567110170889357, + "cloid": "0x00000000000000000000001644000951", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3852.4", + "sz": "2.5947", + "side": "A", + "time": 1761232786550, + "startPosition": "-2348.9423", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xbf0874a951bd9ca4c082042e0c5e5d02041a008eecb0bb7662d11ffc10b1768f", + "oid": 210473175819, + "crossed": true, + "fee": "2.099122", + "tid": 757925489021193, + "cloid": "0x00000000000000000000001643001193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133111.0", + "side": "B", + "time": 1761232787339, + "startPosition": "-2008659247.0", + "dir": "Close Short", + "closedPnl": "238.801134", + "hash": "0x3e9f4639148cf0344019042e0c5e6702061d001eaf800f06e267f18bd380ca1e", + "oid": 210473184268, + "crossed": true, + "fee": "0.10502", + "tid": 79985444025636, + "cloid": "0x00000000000000000000001644000952", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "49.0", + "side": "B", + "time": 1761232788831, + "startPosition": "-2008526136.0", + "dir": "Close Short", + "closedPnl": "0.087906", + "hash": "0xb94de4ede00994b8bac7042e0c5e7a0201f600d37b0cb38a5d1690409f0d6ea3", + "oid": 210473201014, + "crossed": true, + "fee": "0.000038", + "tid": 510858788944627, + "cloid": "0x00000000000000000000001644000953", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133071.0", + "side": "B", + "time": 1761232788831, + "startPosition": "-2008526087.0", + "dir": "Close Short", + "closedPnl": "238.596303", + "hash": "0xb94de4ede00994b8bac7042e0c5e7a0201f600d37b0cb38a5d1690409f0d6ea3", + "oid": 210473201014, + "crossed": true, + "fee": "0.105016", + "tid": 744050658562090, + "cloid": "0x00000000000000000000001644000953", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133084.0", + "side": "B", + "time": 1761232790206, + "startPosition": "-2008393016.0", + "dir": "Close Short", + "closedPnl": "238.486528", + "hash": "0x50f9a28d1d53f3875273042e0c5e8c0203b90072b8571259f4c24ddfdc57cd71", + "oid": 210473225652, + "crossed": true, + "fee": "0.105055", + "tid": 425443386543066, + "cloid": "0x00000000000000000000001644000954", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133014.0", + "side": "B", + "time": 1761232794941, + "startPosition": "-2008259932.0", + "dir": "Close Short", + "closedPnl": "238.494102", + "hash": "0xd293de84e54fec4cd40d042e0c5eca0203da006a80430b1e765c89d7a443c637", + "oid": 210473287738, + "crossed": true, + "fee": "0.104971", + "tid": 75299909569563, + "cloid": "0x00000000000000000000001644000955", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133049.0", + "side": "B", + "time": 1761232796856, + "startPosition": "-2008126918.0", + "dir": "Close Short", + "closedPnl": "238.556857", + "hash": "0x1e8fbd10b64d90e72009042e0c5ee20208f200f65140afb9c258686375416ad1", + "oid": 210473324311, + "crossed": true, + "fee": "0.104999", + "tid": 995649345440017, + "cloid": "0x00000000000000000000001644000956", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "45.0", + "side": "B", + "time": 1761232798244, + "startPosition": "-2007993869.0", + "dir": "Close Short", + "closedPnl": "0.080685", + "hash": "0x95c7d1a6514b33e49741042e0c5ef20201d2008bec4e52b639907cf9104f0dcf", + "oid": 210473339755, + "crossed": true, + "fee": "0.000035", + "tid": 430215807028733, + "cloid": "0x00000000000000000000001644000957", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133024.0", + "side": "B", + "time": 1761232798244, + "startPosition": "-2007993824.0", + "dir": "Close Short", + "closedPnl": "238.379008", + "hash": "0x95c7d1a6514b33e49741042e0c5ef20201d2008bec4e52b639907cf9104f0dcf", + "oid": 210473339755, + "crossed": true, + "fee": "0.105007", + "tid": 494678744198485, + "cloid": "0x00000000000000000000001644000957", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133085.0", + "side": "B", + "time": 1761232799909, + "startPosition": "-2007860800.0", + "dir": "Close Short", + "closedPnl": "238.621405", + "hash": "0x2bd0b1dd6cb3e6332d4a042e0c5f0702047800c307b70505cf995d302bb7c01d", + "oid": 210473355560, + "crossed": true, + "fee": "0.105028", + "tid": 648218959122841, + "cloid": "0x00000000000000000000001644000958", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133021.0", + "side": "B", + "time": 1761232801538, + "startPosition": "-2007727715.0", + "dir": "Close Short", + "closedPnl": "238.506653", + "hash": "0x1c4843adeab975d11dc2042e0c5f1c020a2f009385bc94a3c010ef00a9bd4fbb", + "oid": 210473385596, + "crossed": true, + "fee": "0.104977", + "tid": 442598071613165, + "cloid": "0x00000000000000000000001644000959", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "99.0", + "side": "B", + "time": 1761232801538, + "startPosition": "-2007594694.0", + "dir": "Close Short", + "closedPnl": "0.177507", + "hash": "0x1c4843adeab975d11dc2042e0c5f1c020a2f009385bc94a3c010ef00a9bd4fbb", + "oid": 210473385596, + "crossed": true, + "fee": "0.000078", + "tid": 540013587964625, + "cloid": "0x00000000000000000000001644000959", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133155.0", + "side": "B", + "time": 1761232803420, + "startPosition": "-2007594595.0", + "dir": "Close Short", + "closedPnl": "238.746915", + "hash": "0x32a4b32fce8c6de8341e042e0c5f330209c10015698f8cbad66d5e828d8047d2", + "oid": 210473411757, + "crossed": true, + "fee": "0.105083", + "tid": 773063726591537, + "cloid": "0x00000000000000000000001644000960", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133049.0", + "side": "B", + "time": 1761232805241, + "startPosition": "-2007461440.0", + "dir": "Close Short", + "closedPnl": "238.423808", + "hash": "0xcd98286a756a8b9acf11042e0c5f4a0207ac0050106daa6c7160d3bd346e6585", + "oid": 210473448519, + "crossed": true, + "fee": "0.105027", + "tid": 724413381223962, + "cloid": "0x00000000000000000000001644000961", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133061.0", + "side": "B", + "time": 1761232806734, + "startPosition": "-2007328391.0", + "dir": "Close Short", + "closedPnl": "238.445312", + "hash": "0xfbc84285837f1608fd41042e0c5f5d020496006b1e7234db9f90edd84272eff3", + "oid": 210473471446, + "crossed": true, + "fee": "0.105037", + "tid": 554383010943450, + "cloid": "0x00000000000000000000001644000962", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133021.0", + "side": "B", + "time": 1761232808214, + "startPosition": "-2007195330.0", + "dir": "Close Short", + "closedPnl": "238.373632", + "hash": "0x54776f91e7a6562c55f1042e0c5f70020332007782a974fef8401ae4a6aa3016", + "oid": 210473479665, + "crossed": true, + "fee": "0.105005", + "tid": 1063071661188220, + "cloid": "0x00000000000000000000001644000963", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133156.0", + "side": "B", + "time": 1761232810286, + "startPosition": "-2007062309.0", + "dir": "Close Short", + "closedPnl": "239.01502", + "hash": "0x84f9e18428a5cdd08673042e0c5f8b0209fb0069c3a8eca228c28cd6e7a9a7bb", + "oid": 210473518278, + "crossed": true, + "fee": "0.105028", + "tid": 266558915783648, + "cloid": "0x00000000000000000000001644000964", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003755", + "sz": "133156.0", + "side": "B", + "time": 1761232812012, + "startPosition": "-2006929153.0", + "dir": "Close Short", + "closedPnl": "239.148176", + "hash": "0x02885de9f76ab8ac0402042e0c5fa0020c9e00cf926dd77ea651093cb66e9296", + "oid": 210473553553, + "crossed": true, + "fee": "0.105", + "tid": 840901304549932, + "cloid": "0x00000000000000000000001644000965", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3850.8", + "sz": "2.5956", + "side": "A", + "time": 1761232817214, + "startPosition": "-2351.537", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xab4c0702abf60661acc5042e0c5fe10206ca00e846f925334f14b2556af9e04c", + "oid": 210473644842, + "crossed": true, + "fee": "2.098978", + "tid": 230328952943303, + "cloid": "0x00000000000000000000001643001201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "93170.0", + "side": "B", + "time": 1761232848293, + "startPosition": "-2006795997.0", + "dir": "Close Short", + "closedPnl": "167.14698", + "hash": "0x772df9e77eed941d78a7042e0c617102050100cd19e0b2ef1af6a53a3de16e08", + "oid": 210474081541, + "crossed": true, + "fee": "0.073508", + "tid": 755454234346298, + "cloid": "0x00000000000000000000001644000975", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "40057.0", + "side": "B", + "time": 1761232848293, + "startPosition": "-2006702827.0", + "dir": "Close Short", + "closedPnl": "71.862258", + "hash": "0x772df9e77eed941d78a7042e0c617102050100cd19e0b2ef1af6a53a3de16e08", + "oid": 210474081541, + "crossed": true, + "fee": "0.031603", + "tid": 863622686717675, + "cloid": "0x00000000000000000000001644000975", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133166.0", + "side": "B", + "time": 1761232850258, + "startPosition": "-2006662770.0", + "dir": "Close Short", + "closedPnl": "239.03297", + "hash": "0x3226df330748a5d333a0042e0c618b0203750018a24bc4a5d5ef8a85c64c7fbd", + "oid": 210474109684, + "crossed": true, + "fee": "0.105036", + "tid": 518095286036218, + "cloid": "0x00000000000000000000001644000976", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "53106.0", + "side": "B", + "time": 1761232855936, + "startPosition": "-2006529604.0", + "dir": "Close Short", + "closedPnl": "95.272164", + "hash": "0xa7fd7849239d75daa977042e0c61da0204b7002ebe9094ac4bc6239be2914fc5", + "oid": 210474184272, + "crossed": true, + "fee": "0.041899", + "tid": 625429917818022, + "cloid": "0x00000000000000000000001644000978", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "80085.0", + "side": "B", + "time": 1761232855936, + "startPosition": "-2006476498.0", + "dir": "Close Short", + "closedPnl": "143.67249", + "hash": "0xa7fd7849239d75daa977042e0c61da0204b7002ebe9094ac4bc6239be2914fc5", + "oid": 210474184272, + "crossed": true, + "fee": "0.063184", + "tid": 269360347754992, + "cloid": "0x00000000000000000000001644000978", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3851.1", + "sz": "0.0099", + "side": "A", + "time": 1761232856897, + "startPosition": "-2354.1326", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x09e8c0c5dd46153d0b62042e0c61e502089300ab7849340fadb16c189c49ef27", + "oid": 210474167131, + "crossed": false, + "fee": "0.001067", + "tid": 3132911663532, + "cloid": "0x00000000000000000000001643001210", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3851.1", + "sz": "0.0461", + "side": "A", + "time": 1761232857040, + "startPosition": "-2354.1425", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210474167131, + "crossed": false, + "fee": "0.00497", + "tid": 877248980044197, + "cloid": "0x00000000000000000000001643001210", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "13092.0", + "side": "B", + "time": 1761232857374, + "startPosition": "-2006396413.0", + "dir": "Close Short", + "closedPnl": "23.487048", + "hash": "0x3bc3eba931db42b83d3d042e0c61ea0206eb008eccde618adf8c96fbf0df1ca2", + "oid": 210474206683, + "crossed": true, + "fee": "0.010329", + "tid": 1008334748050185, + "cloid": "0x00000000000000000000001644000979", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "120063.0", + "side": "B", + "time": 1761232857374, + "startPosition": "-2006383321.0", + "dir": "Close Short", + "closedPnl": "215.393022", + "hash": "0x3bc3eba931db42b83d3d042e0c61ea0206eb008eccde618adf8c96fbf0df1ca2", + "oid": 210474206683, + "crossed": true, + "fee": "0.094726", + "tid": 216396430084167, + "cloid": "0x00000000000000000000001644000979", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133156.0", + "side": "B", + "time": 1761232858909, + "startPosition": "-2006263258.0", + "dir": "Close Short", + "closedPnl": "238.881864", + "hash": "0x88cc82563531a13e8a46042e0c61fe02032d003bd034c0102c952da8f4357b29", + "oid": 210474222640, + "crossed": true, + "fee": "0.105056", + "tid": 672285669357405, + "cloid": "0x00000000000000000000001644000980", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "62361.0", + "side": "B", + "time": 1761232860349, + "startPosition": "-2006130102.0", + "dir": "Close Short", + "closedPnl": "111.875634", + "hash": "0x9c094854ad95775e9d83042e0c621202033f003a489896303fd1f3a76c995149", + "oid": 210474243828, + "crossed": true, + "fee": "0.0492", + "tid": 122700705593872, + "cloid": "0x00000000000000000000001644000981", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "70808.0", + "side": "B", + "time": 1761232860349, + "startPosition": "-2006067741.0", + "dir": "Close Short", + "closedPnl": "127.029552", + "hash": "0x9c094854ad95775e9d83042e0c621202033f003a489896303fd1f3a76c995149", + "oid": 210474243828, + "crossed": true, + "fee": "0.055865", + "tid": 236989138582798, + "cloid": "0x00000000000000000000001644000981", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00375", + "sz": "133227.0", + "side": "B", + "time": 1761232867774, + "startPosition": "-2005996933.0", + "dir": "Close Short", + "closedPnl": "239.941827", + "hash": "0xa4d9ac0facdd1a45a653042e0c627602025f00f547d0391748a257626bd0f430", + "oid": 210474348911, + "crossed": false, + "fee": "0.013988", + "tid": 343273424572384, + "cloid": "0x00000000000000000000001644000984", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00375", + "sz": "133368.0", + "side": "B", + "time": 1761232869432, + "startPosition": "-2005863706.0", + "dir": "Close Short", + "closedPnl": "240.195768", + "hash": "0xfb376fc1886e41defcb1042e0c628c020c9200a7236160b19f001b1447621bc9", + "oid": 210474384597, + "crossed": true, + "fee": "0.105027", + "tid": 37093427209377, + "cloid": "0x00000000000000000000001644000985", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003749", + "sz": "133404.0", + "side": "B", + "time": 1761232870903, + "startPosition": "-2005730338.0", + "dir": "Close Short", + "closedPnl": "240.394008", + "hash": "0x5106bf1ce95d3bab5280042e0c629d020464000284505a7df4cf6a6fa8511595", + "oid": 210474410387, + "crossed": true, + "fee": "0.105027", + "tid": 597565873845635, + "cloid": "0x00000000000000000000001644000986", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003747", + "sz": "133404.0", + "side": "B", + "time": 1761232872370, + "startPosition": "-2005596934.0", + "dir": "Close Short", + "closedPnl": "240.660816", + "hash": "0x6cdac254eb252fab6e54042e0c62b00207ea003a86284e7d10a36da7aa290996", + "oid": 210474435646, + "crossed": true, + "fee": "0.104971", + "tid": 670096628029682, + "cloid": "0x00000000000000000000001644000987", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003745", + "sz": "133473.0", + "side": "B", + "time": 1761232873890, + "startPosition": "-2005463530.0", + "dir": "Close Short", + "closedPnl": "241.052238", + "hash": "0x79d10b835581c5b27b4a042e0c62c20207a60068f084e4841d99b6d614859f9d", + "oid": 210474454442, + "crossed": true, + "fee": "0.104969", + "tid": 677386221676910, + "cloid": "0x00000000000000000000001644000988", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003746", + "sz": "133511.0", + "side": "B", + "time": 1761232876626, + "startPosition": "-2005330057.0", + "dir": "Close Short", + "closedPnl": "240.987355", + "hash": "0x524f25016fd8703e53c8042e0c62e4020b6900e70adb8f10f617d0542edc4a28", + "oid": 210474494200, + "crossed": true, + "fee": "0.105027", + "tid": 214318797455951, + "cloid": "0x00000000000000000000001644000989", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003742", + "sz": "133516.0", + "side": "B", + "time": 1761232880467, + "startPosition": "-2005196546.0", + "dir": "Close Short", + "closedPnl": "241.530444", + "hash": "0x9ba73a547c8eb1229d20042e0c63150208b7003a1781cff43f6fe5a73b828b0d", + "oid": 210474564876, + "crossed": true, + "fee": "0.104919", + "tid": 554874634420705, + "cloid": "0x00000000000000000000001644000990", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003747", + "sz": "133536.0", + "side": "B", + "time": 1761232885236, + "startPosition": "-2005063030.0", + "dir": "Close Short", + "closedPnl": "240.898944", + "hash": "0xaedafa30eae885d5b054042e0c6352020e9c001685eba4a752a3a583a9ec5fc0", + "oid": 210474653245, + "crossed": true, + "fee": "0.105075", + "tid": 429842282909324, + "cloid": "0x00000000000000000000001644000992", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00374", + "sz": "133546.0", + "side": "B", + "time": 1761232888555, + "startPosition": "-2004929494.0", + "dir": "Close Short", + "closedPnl": "241.851806", + "hash": "0x0c9737fd590ee18e0e10042e0c6378020a9000e2f4020060b05fe3501802bb78", + "oid": 210474684717, + "crossed": false, + "fee": "0.013984", + "tid": 700287594936878, + "cloid": "0x00000000000000000000001644000993", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00374", + "sz": "133709.0", + "side": "B", + "time": 1761232890451, + "startPosition": "-2004795948.0", + "dir": "Close Short", + "closedPnl": "242.146999", + "hash": "0x30656cf25c8fe8fd31df042e0c638d02025f00d7f78307cfd42e18451b83c2e7", + "oid": 210474734547, + "crossed": true, + "fee": "0.105015", + "tid": 357820478608923, + "cloid": "0x00000000000000000000001644000994", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003738", + "sz": "133705.0", + "side": "B", + "time": 1761232891708, + "startPosition": "-2004662239.0", + "dir": "Close Short", + "closedPnl": "242.407165", + "hash": "0xcd995238eac8863ccf13042e0c639e0202ce001e85cba50e7161fd8ba9cc6027", + "oid": 210474749803, + "crossed": true, + "fee": "0.104955", + "tid": 1116496797882577, + "cloid": "0x00000000000000000000001644000995", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003738", + "sz": "133749.0", + "side": "B", + "time": 1761232893153, + "startPosition": "-2004528534.0", + "dir": "Close Short", + "closedPnl": "242.486937", + "hash": "0xef4ca147a1757c8bf0c6042e0c63b0020297002d3c789b5d93154c9a60795676", + "oid": 210474770180, + "crossed": true, + "fee": "0.10499", + "tid": 176668083639771, + "cloid": "0x00000000000000000000001644000996", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003738", + "sz": "133761.0", + "side": "B", + "time": 1761232894450, + "startPosition": "-2004394785.0", + "dir": "Close Short", + "closedPnl": "242.508693", + "hash": "0x84aea67ccb0087978628042e0c63c102058300626603a669287751cf8a046182", + "oid": 210474786478, + "crossed": true, + "fee": "0.104999", + "tid": 604578563583251, + "cloid": "0x00000000000000000000001644000997", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003739", + "sz": "133785.0", + "side": "B", + "time": 1761232896001, + "startPosition": "-2004261024.0", + "dir": "Close Short", + "closedPnl": "242.41842", + "hash": "0x3a26afb40901c92e3ba0042e0c63d80203b00099a404e800ddef5b06c805a318", + "oid": 210474810660, + "crossed": true, + "fee": "0.105046", + "tid": 966542612085261, + "cloid": "0x00000000000000000000001644000998", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003738", + "sz": "133790.0", + "side": "B", + "time": 1761232897412, + "startPosition": "-2004127239.0", + "dir": "Close Short", + "closedPnl": "242.56127", + "hash": "0x2a5f1ea32c09b7ef2bd8042e0c63ec0201fc0088c70cd6c1ce27c9f5eb0d91d9", + "oid": 210474830157, + "crossed": true, + "fee": "0.105022", + "tid": 392756681306358, + "cloid": "0x00000000000000000000001644000999", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003738", + "sz": "133797.0", + "side": "B", + "time": 1761232898702, + "startPosition": "-2003993449.0", + "dir": "Close Short", + "closedPnl": "242.573961", + "hash": "0x87798ca1ea2f908488f3042e0c63ff02048f00878522af562b4237f4a9236a6f", + "oid": 210474849758, + "crossed": true, + "fee": "0.105027", + "tid": 1088052866121080, + "cloid": "0x00000000000000000000001644001000", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003737", + "sz": "133802.0", + "side": "B", + "time": 1761232905857, + "startPosition": "-2003859652.0", + "dir": "Close Short", + "closedPnl": "242.716828", + "hash": "0x4bd8da7d0e5bd7134d52042e0c644e0204ff0062a95ef5e5efa185cfcd5fb0fd", + "oid": 210474949497, + "crossed": true, + "fee": "0.105003", + "tid": 441746021088262, + "cloid": "0x00000000000000000000001644001001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.0", + "sz": "0.6497", + "side": "A", + "time": 1761232905921, + "startPosition": "-2354.1886", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x160a11c81c781f511783042e0c644f02046c00adb77b3e23b9d2bd1adb7bf93b", + "oid": 210474951126, + "crossed": true, + "fee": "0.525009", + "tid": 124143146765963, + "cloid": "0x00000000000000000000001643001223", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.0", + "sz": "1.8906", + "side": "A", + "time": 1761232905921, + "startPosition": "-2354.8383", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x160a11c81c781f511783042e0c644f02046c00adb77b3e23b9d2bd1adb7bf93b", + "oid": 210474951126, + "crossed": true, + "fee": "1.527756", + "tid": 501578171269738, + "cloid": "0x00000000000000000000001643001223", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3849.1", + "sz": "2.5986", + "side": "A", + "time": 1761232907342, + "startPosition": "-2356.7289", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x77507c0e0a137d5478ca042e0c646102067c00f3a5169c261b192760c917573f", + "oid": 210474972087, + "crossed": true, + "fee": "2.100476", + "tid": 1021806308125331, + "cloid": "0x00000000000000000000001643001224", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003738", + "sz": "133800.0", + "side": "B", + "time": 1761232907732, + "startPosition": "-2003725850.0", + "dir": "Close Short", + "closedPnl": "242.5794", + "hash": "0x9be97ebce28a8b049d63042e0c64660201c200a27d8da9d63fb22a0fa18e64ef", + "oid": 210474975775, + "crossed": true, + "fee": "0.10503", + "tid": 806853717355820, + "cloid": "0x00000000000000000000001644001002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003737", + "sz": "133833.0", + "side": "B", + "time": 1761232909069, + "startPosition": "-2003592050.0", + "dir": "Close Short", + "closedPnl": "242.773062", + "hash": "0xcc3b216036ce5a21cdb4042e0c64780203cc0045d1c178f37003ccb2f5c2340c", + "oid": 210474997994, + "crossed": true, + "fee": "0.105028", + "tid": 86719395328922, + "cloid": "0x00000000000000000000001644001003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003737", + "sz": "133820.0", + "side": "B", + "time": 1761232910633, + "startPosition": "-2003458217.0", + "dir": "Close Short", + "closedPnl": "242.74948", + "hash": "0x927a0eb3c033433993f3042e0c648a020da100995b36620b3642ba067f371d24", + "oid": 210475027122, + "crossed": true, + "fee": "0.105017", + "tid": 1026354513220907, + "cloid": "0x00000000000000000000001644001004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003737", + "sz": "133787.0", + "side": "B", + "time": 1761232912148, + "startPosition": "-2003324397.0", + "dir": "Close Short", + "closedPnl": "242.689618", + "hash": "0x61bf80880f67a3376339042e0c649a020bbc006daa6ac20905882bdace6b7d22", + "oid": 210475051994, + "crossed": true, + "fee": "0.104992", + "tid": 612010006551051, + "cloid": "0x00000000000000000000001644001005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003737", + "sz": "39.0", + "side": "B", + "time": 1761232912148, + "startPosition": "-2003190610.0", + "dir": "Close Short", + "closedPnl": "0.070746", + "hash": "0x61bf80880f67a3376339042e0c649a020bbc006daa6ac20905882bdace6b7d22", + "oid": 210475051994, + "crossed": true, + "fee": "0.00003", + "tid": 154290861832266, + "cloid": "0x00000000000000000000001644001005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003737", + "sz": "133826.0", + "side": "B", + "time": 1761232913730, + "startPosition": "-2003190571.0", + "dir": "Close Short", + "closedPnl": "242.760364", + "hash": "0xda63cd47c1097923dbdd042e0c64ad020a47002d5c0c97f57e2c789a800d530e", + "oid": 210475077520, + "crossed": true, + "fee": "0.105022", + "tid": 667751200155517, + "cloid": "0x00000000000000000000001644001006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003737", + "sz": "133833.0", + "side": "B", + "time": 1761232915678, + "startPosition": "-2003056745.0", + "dir": "Close Short", + "closedPnl": "242.773062", + "hash": "0xe95636a2a67a5793eacf042e0c64c70201b40088417d76658d1ee1f5657e317e", + "oid": 210475092958, + "crossed": true, + "fee": "0.105028", + "tid": 1094647098037394, + "cloid": "0x00000000000000000000001644001007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003737", + "sz": "133779.0", + "side": "B", + "time": 1761232916943, + "startPosition": "-2002922912.0", + "dir": "Close Short", + "closedPnl": "242.675106", + "hash": "0x3bbec5152d3ee5773d38042e0c64d80202eb00fac8320449df877067ec32bf61", + "oid": 210475108484, + "crossed": true, + "fee": "0.104985", + "tid": 467482168937959, + "cloid": "0x00000000000000000000001644001008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003737", + "sz": "54.0", + "side": "B", + "time": 1761232916943, + "startPosition": "-2002789133.0", + "dir": "Close Short", + "closedPnl": "0.097956", + "hash": "0x3bbec5152d3ee5773d38042e0c64d80202eb00fac8320449df877067ec32bf61", + "oid": 210475108484, + "crossed": true, + "fee": "0.000042", + "tid": 38920313668588, + "cloid": "0x00000000000000000000001644001008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003736", + "sz": "133886.0", + "side": "B", + "time": 1761232920641, + "startPosition": "-2002789079.0", + "dir": "Close Short", + "closedPnl": "243.00309", + "hash": "0x943b24b0025e05aa95b4042e0c65070206e200959d51247c3803d002c151df95", + "oid": 210475180030, + "crossed": true, + "fee": "0.105041", + "tid": 207889988550600, + "cloid": "0x00000000000000000000001644001010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3847.2", + "sz": "2.5977", + "side": "A", + "time": 1761232921243, + "startPosition": "-2359.3275", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xbad6ea2d4f348f52bc50042e0c65100206f30012ea37ae245e9f95800e38693d", + "oid": 210475189901, + "crossed": true, + "fee": "2.098713", + "tid": 932450190501456, + "cloid": "0x00000000000000000000001643001229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003737", + "sz": "133889.0", + "side": "B", + "time": 1761232925718, + "startPosition": "-2002655193.0", + "dir": "Close Short", + "closedPnl": "242.874646", + "hash": "0x3d162625b2a93b9e3e8f042e0c65470205ef000b4dac5a70e0ded17871ad1588", + "oid": 210475261318, + "crossed": true, + "fee": "0.105072", + "tid": 841231541364367, + "cloid": "0x00000000000000000000001644001012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003737", + "sz": "4597.0", + "side": "B", + "time": 1761232927018, + "startPosition": "-2002521304.0", + "dir": "Close Short", + "closedPnl": "8.338958", + "hash": "0x3c62d292a8ee8fc23ddc042e0c6556020468007843e1ae94e02b7de567e269ac", + "oid": 210475278597, + "crossed": true, + "fee": "0.003607", + "tid": 539575848480762, + "cloid": "0x00000000000000000000001644001013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003737", + "sz": "129236.0", + "side": "B", + "time": 1761232927018, + "startPosition": "-2002516707.0", + "dir": "Close Short", + "closedPnl": "234.434104", + "hash": "0x3c62d292a8ee8fc23ddc042e0c6556020468007843e1ae94e02b7de567e269ac", + "oid": 210475278597, + "crossed": true, + "fee": "0.10142", + "tid": 677483899765311, + "cloid": "0x00000000000000000000001644001013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003738", + "sz": "89180.0", + "side": "B", + "time": 1761232928420, + "startPosition": "-2002387471.0", + "dir": "Close Short", + "closedPnl": "161.68334", + "hash": "0x11e7976dcef133ae1361042e0c656c020183005369f45280b5b042c08df50d98", + "oid": 210475290636, + "crossed": true, + "fee": "0.070004", + "tid": 1044746760054184, + "cloid": "0x00000000000000000000001644001014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003738", + "sz": "44623.0", + "side": "B", + "time": 1761232928420, + "startPosition": "-2002298291.0", + "dir": "Close Short", + "closedPnl": "80.901499", + "hash": "0x11e7976dcef133ae1361042e0c656c020183005369f45280b5b042c08df50d98", + "oid": 210475290636, + "crossed": true, + "fee": "0.035028", + "tid": 110992982943047, + "cloid": "0x00000000000000000000001644001014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3848.5", + "sz": "0.0347", + "side": "A", + "time": 1761232929011, + "startPosition": "-2361.9252", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210475284656, + "crossed": false, + "fee": "0.003739", + "tid": 117282127830840, + "cloid": "0x00000000000000000000001643001231", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003738", + "sz": "133817.0", + "side": "B", + "time": 1761232929695, + "startPosition": "-2002253668.0", + "dir": "Close Short", + "closedPnl": "242.610221", + "hash": "0x82d17e42e710d1cb844b042e0c657e02047b00288213f09d269a2995a614abb6", + "oid": 210475311803, + "crossed": true, + "fee": "0.105043", + "tid": 763079541674751, + "cloid": "0x00000000000000000000001644001015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003738", + "sz": "133802.0", + "side": "B", + "time": 1761232931103, + "startPosition": "-2002119851.0", + "dir": "Close Short", + "closedPnl": "242.583026", + "hash": "0x3d6a3a947e072fbb3ee3042e0c6591020323007a190a4e8de132e5e73d0b09a5", + "oid": 210475338808, + "crossed": true, + "fee": "0.105031", + "tid": 707771640123109, + "cloid": "0x00000000000000000000001644001016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003738", + "sz": "133829.0", + "side": "B", + "time": 1761232932351, + "startPosition": "-2001986049.0", + "dir": "Close Short", + "closedPnl": "242.631977", + "hash": "0xb5e6793c318468bab760042e0c65a20205060021cc87878c59af248ef08842a5", + "oid": 210475354407, + "crossed": true, + "fee": "0.105053", + "tid": 725122915326894, + "cloid": "0x00000000000000000000001644001017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00374", + "sz": "89146.0", + "side": "B", + "time": 1761232933613, + "startPosition": "-2001852220.0", + "dir": "Close Short", + "closedPnl": "161.443406", + "hash": "0x7570d290bb9dbc1276ea042e0c65b302033a00765690dae419397de37a9195fd", + "oid": 210475373070, + "crossed": true, + "fee": "0.070015", + "tid": 611578922821586, + "cloid": "0x00000000000000000000001644001018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00374", + "sz": "44615.0", + "side": "B", + "time": 1761232933613, + "startPosition": "-2001763074.0", + "dir": "Close Short", + "closedPnl": "80.797765", + "hash": "0x7570d290bb9dbc1276ea042e0c65b302033a00765690dae419397de37a9195fd", + "oid": 210475373070, + "crossed": true, + "fee": "0.03504", + "tid": 453583928537293, + "cloid": "0x00000000000000000000001644001018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003739", + "sz": "133760.0", + "side": "B", + "time": 1761232935841, + "startPosition": "-2001718459.0", + "dir": "Close Short", + "closedPnl": "242.37312", + "hash": "0x6340a19229ab1c3264ba042e0c65cb02054b0077c4ae3b0407094ce4e8aef61d", + "oid": 210475398015, + "crossed": true, + "fee": "0.105027", + "tid": 139781872170189, + "cloid": "0x00000000000000000000001644001019", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00374", + "sz": "133748.0", + "side": "B", + "time": 1761232937110, + "startPosition": "-2001584699.0", + "dir": "Close Short", + "closedPnl": "242.217628", + "hash": "0xe1f32e762688a937e36c042e0c65db0203f9005bc18bc80985bbd9c8e58c8322", + "oid": 210475414205, + "crossed": true, + "fee": "0.105045", + "tid": 557038116780641, + "cloid": "0x00000000000000000000001644001020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003739", + "sz": "133781.0", + "side": "B", + "time": 1761232938507, + "startPosition": "-2001450951.0", + "dir": "Close Short", + "closedPnl": "242.411172", + "hash": "0x70c8269d111ef2d47241042e0c65ed0203b00082ac1211a61490d1efd012ccbf", + "oid": 210475432663, + "crossed": true, + "fee": "0.105043", + "tid": 175176347596180, + "cloid": "0x00000000000000000000001644001021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003739", + "sz": "4622.0", + "side": "B", + "time": 1761232940362, + "startPosition": "-2001317170.0", + "dir": "Close Short", + "closedPnl": "8.375064", + "hash": "0xf4cc57b42318b6e0f646042e0c66020204a70099be1bd5b398950306e21c90cb", + "oid": 210475462944, + "crossed": true, + "fee": "0.003629", + "tid": 510394686515682, + "cloid": "0x00000000000000000000001644001022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003739", + "sz": "129127.0", + "side": "B", + "time": 1761232940362, + "startPosition": "-2001312548.0", + "dir": "Close Short", + "closedPnl": "233.978124", + "hash": "0xf4cc57b42318b6e0f646042e0c66020204a70099be1bd5b398950306e21c90cb", + "oid": 210475462944, + "crossed": true, + "fee": "0.101389", + "tid": 1067221331820743, + "cloid": "0x00000000000000000000001644001022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00374", + "sz": "89129.0", + "side": "B", + "time": 1761232942120, + "startPosition": "-2001183421.0", + "dir": "Close Short", + "closedPnl": "161.412619", + "hash": "0x50b2a86abdea7360522c042e0c66170204b3005058ed9232f47b53bd7cee4d4a", + "oid": 210475485657, + "crossed": true, + "fee": "0.070001", + "tid": 536568515656986, + "cloid": "0x00000000000000000000001644001023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00374", + "sz": "44620.0", + "side": "B", + "time": 1761232942120, + "startPosition": "-2001094292.0", + "dir": "Close Short", + "closedPnl": "80.80682", + "hash": "0x50b2a86abdea7360522c042e0c66170204b3005058ed9232f47b53bd7cee4d4a", + "oid": 210475485657, + "crossed": true, + "fee": "0.035044", + "tid": 333196458315323, + "cloid": "0x00000000000000000000001644001023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003739", + "sz": "133797.0", + "side": "B", + "time": 1761232943453, + "startPosition": "-2001049672.0", + "dir": "Close Short", + "closedPnl": "242.440164", + "hash": "0x3e61d6b103d3170c3fdb042e0c662902059000969ed635dee22a8203c2d6f0f6", + "oid": 210475514300, + "crossed": true, + "fee": "0.105056", + "tid": 236557714294422, + "cloid": "0x00000000000000000000001644001024", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003739", + "sz": "133769.0", + "side": "B", + "time": 1761232945172, + "startPosition": "-2000915875.0", + "dir": "Close Short", + "closedPnl": "242.389428", + "hash": "0x73c5d8dc42ca0a2c753f042e0c663f02056900c1ddcd28fe178e842f01cde417", + "oid": 210475544828, + "crossed": true, + "fee": "0.105034", + "tid": 958645321494342, + "cloid": "0x00000000000000000000001644001025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003739", + "sz": "4627.0", + "side": "B", + "time": 1761232946531, + "startPosition": "-2000782106.0", + "dir": "Close Short", + "closedPnl": "8.384124", + "hash": "0xa9601ae81eac2068aad9042e0c664f02078700cdb9af3f3a4d28c63addaffa53", + "oid": 210475567404, + "crossed": true, + "fee": "0.003633", + "tid": 1118900612858925, + "cloid": "0x00000000000000000000001644001026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003739", + "sz": "129152.0", + "side": "B", + "time": 1761232946531, + "startPosition": "-2000777479.0", + "dir": "Close Short", + "closedPnl": "234.023424", + "hash": "0xa9601ae81eac2068aad9042e0c664f02078700cdb9af3f3a4d28c63addaffa53", + "oid": 210475567404, + "crossed": true, + "fee": "0.101408", + "tid": 915879799389215, + "cloid": "0x00000000000000000000001644001026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3849.5", + "sz": "0.0801", + "side": "A", + "time": 1761232950485, + "startPosition": "-2361.9599", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x5442ea608543f67455bc042e0c66840211b8004620471546f80b95b34447d05e", + "oid": 210475619203, + "crossed": false, + "fee": "0.008633", + "tid": 334530566145186, + "cloid": "0x00000000000000000000001643001238", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3850.0", + "sz": "2.4842", + "side": "A", + "time": 1761232954683, + "startPosition": "-2362.04", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xac328edc66ba6a70adac042e0c66b902071e00c201bd89424ffb3a2f25be445b", + "oid": 210475715085, + "crossed": false, + "fee": "0.267796", + "tid": 408692126856541, + "cloid": "0x00000000000000000000001643001239", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003747", + "sz": "106793.0", + "side": "B", + "time": 1761232957027, + "startPosition": "-2000648327.0", + "dir": "Close Short", + "closedPnl": "192.654572", + "hash": "0xeab6271cee1a3e4aec2f042e0c66d70203ee0002891d5d1c8e7ed26fad1e1835", + "oid": 210475781794, + "crossed": true, + "fee": "0.084032", + "tid": 223878942486452, + "cloid": "0x00000000000000000000001644001030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "26945.0", + "side": "B", + "time": 1761232957027, + "startPosition": "-2000541534.0", + "dir": "Close Short", + "closedPnl": "48.581835", + "hash": "0xeab6271cee1a3e4aec2f042e0c66d70203ee0002891d5d1c8e7ed26fad1e1835", + "oid": 210475781794, + "crossed": true, + "fee": "0.021207", + "tid": 649899191039001, + "cloid": "0x00000000000000000000001644001030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3852.0", + "sz": "0.0101", + "side": "A", + "time": 1761232957889, + "startPosition": "-2364.5242", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1034e41b7485afcd11ae042e0c66e1020c3b00010f88ce9fb3fd8f6e338989b7", + "oid": 210475781793, + "crossed": false, + "fee": "0.001089", + "tid": 254536161054240, + "cloid": "0x00000000000000000000001643001240", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3852.0", + "sz": "0.0258", + "side": "A", + "time": 1761232958122, + "startPosition": "-2364.5343", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x764389723e883b2a77bd042e0c66e402048c0057d98b59fc1a0c34c4fd8c1515", + "oid": 210475781793, + "crossed": false, + "fee": "0.002782", + "tid": 321944513787122, + "cloid": "0x00000000000000000000001643001240", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3852.0", + "sz": "0.0135", + "side": "A", + "time": 1761232958184, + "startPosition": "-2364.5601", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x20289ea46abe9be821a2042e0c66e5020382008a05b1babac3f149f729b275d2", + "oid": 210475781793, + "crossed": false, + "fee": "0.001456", + "tid": 780156814147968, + "cloid": "0x00000000000000000000001643001240", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003749", + "sz": "133449.0", + "side": "B", + "time": 1761232958251, + "startPosition": "-2000514589.0", + "dir": "Close Short", + "closedPnl": "240.475098", + "hash": "0x8251945e97523edf83cb042e0c66e6020517004432555db1261a3fb1565618ca", + "oid": 210475813674, + "crossed": true, + "fee": "0.105063", + "tid": 34373974961442, + "cloid": "0x00000000000000000000001644001031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3852.0", + "sz": "0.0347", + "side": "A", + "time": 1761232959126, + "startPosition": "-2364.5736", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210475781793, + "crossed": false, + "fee": "0.003742", + "tid": 729349433259757, + "cloid": "0x00000000000000000000001643001240", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3852.0", + "sz": "0.013", + "side": "A", + "time": 1761232959485, + "startPosition": "-2364.6083", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x4df12268b15e92174f6a042e0c66f502052c004e4c51b0e9f1b9cdbb70526c01", + "oid": 210475781793, + "crossed": false, + "fee": "0.001402", + "tid": 977802477780365, + "cloid": "0x00000000000000000000001643001240", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003749", + "sz": "133439.0", + "side": "B", + "time": 1761232959793, + "startPosition": "-2000381140.0", + "dir": "Close Short", + "closedPnl": "240.457078", + "hash": "0xbe3296ce20127982bfac042e0c66f80201a900b3bb15985461fb4220df16536d", + "oid": 210475834390, + "crossed": true, + "fee": "0.105055", + "tid": 552096618697135, + "cloid": "0x00000000000000000000001644001032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3852.0", + "sz": "0.0655", + "side": "A", + "time": 1761232960932, + "startPosition": "-2364.6213", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xbe15ac15a4b7a488bf8f042e0c670802023300fb3fbac35a61de576863bb7e73", + "oid": 210475781793, + "crossed": false, + "fee": "0.007064", + "tid": 203405138092561, + "cloid": "0x00000000000000000000001643001240", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "133460.0", + "side": "B", + "time": 1761232961162, + "startPosition": "-2000247701.0", + "dir": "Close Short", + "closedPnl": "240.62838", + "hash": "0x828f83d82ca8153d8409042e0c670c0204f600bdc7ab340f26582f2aebabef28", + "oid": 210475852552, + "crossed": true, + "fee": "0.105043", + "tid": 734990758469157, + "cloid": "0x00000000000000000000001644001033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003749", + "sz": "133463.0", + "side": "B", + "time": 1761232962599, + "startPosition": "-2000114241.0", + "dir": "Close Short", + "closedPnl": "240.500326", + "hash": "0xca56a4e5df8928cfcbd0042e0c671e02027a00cb7a8c47a16e1f50389e8d02ba", + "oid": 210475867801, + "crossed": true, + "fee": "0.105074", + "tid": 92720196204356, + "cloid": "0x00000000000000000000001644001034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "133476.0", + "side": "B", + "time": 1761232963979, + "startPosition": "-1999980778.0", + "dir": "Close Short", + "closedPnl": "240.657228", + "hash": "0x6d79e2cd17d2424a6ef3042e0c67310205a800b2b2d5611c11428e1fd6d61c35", + "oid": 210475884777, + "crossed": true, + "fee": "0.105056", + "tid": 856038887999327, + "cloid": "0x00000000000000000000001644001035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "14866.0", + "side": "B", + "time": 1761232965931, + "startPosition": "-1999847302.0", + "dir": "Close Short", + "closedPnl": "26.803398", + "hash": "0x42fe64149f0e01e84478042e0c67470208a500fa3a0120bae6c70f675e01dbd2", + "oid": 210475911457, + "crossed": true, + "fee": "0.0117", + "tid": 614151721722838, + "cloid": "0x00000000000000000000001644001036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "118645.0", + "side": "B", + "time": 1761232965931, + "startPosition": "-1999832436.0", + "dir": "Close Short", + "closedPnl": "213.916935", + "hash": "0x42fe64149f0e01e84478042e0c67470208a500fa3a0120bae6c70f675e01dbd2", + "oid": 210475911457, + "crossed": true, + "fee": "0.093383", + "tid": 805817223502337, + "cloid": "0x00000000000000000000001644001036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "133547.0", + "side": "B", + "time": 1761232969643, + "startPosition": "-1999713791.0", + "dir": "Close Short", + "closedPnl": "240.785241", + "hash": "0x67a64025a6f8bf05691f042e0c67740202db000b41fbddd70b6eeb7865fc98f0", + "oid": 210475963799, + "crossed": true, + "fee": "0.105112", + "tid": 574767488025403, + "cloid": "0x00000000000000000000001644001038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "4496.0", + "side": "B", + "time": 1761232971077, + "startPosition": "-1999580244.0", + "dir": "Close Short", + "closedPnl": "8.106288", + "hash": "0xd1551521571cf845d2ce042e0c678702018e0006f2101717751dc0741610d230", + "oid": 210475981649, + "crossed": true, + "fee": "0.003538", + "tid": 546992075634071, + "cloid": "0x00000000000000000000001644001039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "127887.0", + "side": "B", + "time": 1761232971077, + "startPosition": "-1999575748.0", + "dir": "Close Short", + "closedPnl": "230.580261", + "hash": "0xd1551521571cf845d2ce042e0c678702018e0006f2101717751dc0741610d230", + "oid": 210475981649, + "crossed": true, + "fee": "0.100657", + "tid": 273880724507135, + "cloid": "0x00000000000000000000001644001039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "1093.0", + "side": "B", + "time": 1761232971077, + "startPosition": "-1999447861.0", + "dir": "Close Short", + "closedPnl": "1.970679", + "hash": "0xd1551521571cf845d2ce042e0c678702018e0006f2101717751dc0741610d230", + "oid": 210475981649, + "crossed": true, + "fee": "0.00086", + "tid": 282249416945101, + "cloid": "0x00000000000000000000001644001039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003749", + "sz": "133476.0", + "side": "B", + "time": 1761232972444, + "startPosition": "-1999446768.0", + "dir": "Close Short", + "closedPnl": "240.523752", + "hash": "0x4ae6cd212b99f6cb4c60042e0c679b0202b20006c69d159deeaf7873ea9dd0b5", + "oid": 210475998403, + "crossed": true, + "fee": "0.105084", + "tid": 719195377717873, + "cloid": "0x00000000000000000000001644001040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "133482.0", + "side": "B", + "time": 1761232973967, + "startPosition": "-1999313292.0", + "dir": "Close Short", + "closedPnl": "240.668046", + "hash": "0xa3275bd760af18aba4a1042e0c67af0201c700bcfba2377d46f0072a1fa2f296", + "oid": 210476016424, + "crossed": true, + "fee": "0.105061", + "tid": 614441634453351, + "cloid": "0x00000000000000000000001644001041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "4552.0", + "side": "B", + "time": 1761232975712, + "startPosition": "-1999179810.0", + "dir": "Close Short", + "closedPnl": "8.207256", + "hash": "0xdd4dc3245d7b681bdec7042e0c67c502032e0009f87e86ed81166e771c7f4206", + "oid": 210476048420, + "crossed": true, + "fee": "0.003582", + "tid": 1045565047755318, + "cloid": "0x00000000000000000000001644001042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "128959.0", + "side": "B", + "time": 1761232975712, + "startPosition": "-1999175258.0", + "dir": "Close Short", + "closedPnl": "232.513077", + "hash": "0xdd4dc3245d7b681bdec7042e0c67c502032e0009f87e86ed81166e771c7f4206", + "oid": 210476048420, + "crossed": true, + "fee": "0.101501", + "tid": 722325514816810, + "cloid": "0x00000000000000000000001644001042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "118714.0", + "side": "B", + "time": 1761232976934, + "startPosition": "-1999046299.0", + "dir": "Close Short", + "closedPnl": "214.041342", + "hash": "0x52aa7a1274f4f14b5424042e0c67d30202a000f80ff8101df673256533f8cb35", + "oid": 210476069114, + "crossed": true, + "fee": "0.093437", + "tid": 329828500972767, + "cloid": "0x00000000000000000000001644001043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "14797.0", + "side": "B", + "time": 1761232976934, + "startPosition": "-1998927585.0", + "dir": "Close Short", + "closedPnl": "26.678991", + "hash": "0x52aa7a1274f4f14b5424042e0c67d30202a000f80ff8101df673256533f8cb35", + "oid": 210476069114, + "crossed": true, + "fee": "0.011646", + "tid": 1075558845467890, + "cloid": "0x00000000000000000000001644001043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "133511.0", + "side": "B", + "time": 1761232978187, + "startPosition": "-1998912788.0", + "dir": "Close Short", + "closedPnl": "240.720333", + "hash": "0xdc26827343da958edda0042e0c67e40201a90058deddb4607fef2dc602de6f79", + "oid": 210476086803, + "crossed": true, + "fee": "0.105083", + "tid": 342821596407012, + "cloid": "0x00000000000000000000001644001044", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "133520.0", + "side": "B", + "time": 1761232981842, + "startPosition": "-1998779277.0", + "dir": "Close Short", + "closedPnl": "240.73656", + "hash": "0xa43d1614278d9f75a5b6042e0c6812020b3600f9c280be474805c166e6817960", + "oid": 210476146502, + "crossed": true, + "fee": "0.10509", + "tid": 972128730048582, + "cloid": "0x00000000000000000000001644001045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3850.9", + "sz": "2.4337", + "side": "A", + "time": 1761232982509, + "startPosition": "-2364.6868", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xcc8c4ceac93f1825ce06042e0c681b02051c00d0643236f77054f83d8832f210", + "oid": 210476157397, + "crossed": true, + "fee": "1.968106", + "tid": 637284698985927, + "cloid": "0x00000000000000000000001643001248", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003746", + "sz": "133547.0", + "side": "B", + "time": 1761232985967, + "startPosition": "-1998645757.0", + "dir": "Close Short", + "closedPnl": "241.052335", + "hash": "0x837b8fe1d122e27784f5042e0c684702091700c76c26014927443b349026bc62", + "oid": 210476215292, + "crossed": true, + "fee": "0.105056", + "tid": 83957120225651, + "cloid": "0x00000000000000000000001644001047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3851.8", + "sz": "0.5191", + "side": "A", + "time": 1761232986666, + "startPosition": "-2367.1205", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x420f35980bfc39004388042e0c685002085f007da6ff57d2e5d7e0eacaf012ea", + "oid": 210476215275, + "crossed": false, + "fee": "0.055985", + "tid": 3407523749100, + "cloid": "0x00000000000000000000001643001249", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003749", + "sz": "133440.0", + "side": "B", + "time": 1761232989831, + "startPosition": "-1998512210.0", + "dir": "Close Short", + "closedPnl": "240.45888", + "hash": "0xccfbb34cdbfdc048ce75042e0c687a02030d003276f0df1a70c45e9f9af19a33", + "oid": 210476287123, + "crossed": true, + "fee": "0.105055", + "tid": 572742253490809, + "cloid": "0x00000000000000000000001644001048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003747", + "sz": "133470.0", + "side": "B", + "time": 1761232992315, + "startPosition": "-1998378770.0", + "dir": "Close Short", + "closedPnl": "240.77988", + "hash": "0x96cb28d8c4ab33cc9844042e0c68990203f500be5fae529e3a93d42b83af0db7", + "oid": 210476326346, + "crossed": true, + "fee": "0.105023", + "tid": 533754982429369, + "cloid": "0x00000000000000000000001644001049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003747", + "sz": "133476.0", + "side": "B", + "time": 1761232993714, + "startPosition": "-1998245300.0", + "dir": "Close Short", + "closedPnl": "240.790704", + "hash": "0x9fad11b09a2910f1a126042e0c68ab0203330096352c2fc34375bd03592ceadc", + "oid": 210476350822, + "crossed": true, + "fee": "0.105028", + "tid": 345358246601096, + "cloid": "0x00000000000000000000001644001050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003746", + "sz": "4008.0", + "side": "B", + "time": 1761233002670, + "startPosition": "-1998111824.0", + "dir": "Close Short", + "closedPnl": "7.23444", + "hash": "0xc525b0856bfef476c69f042e0c69190202b2006b06f2134868ee5bd82af2ce61", + "oid": 210476504978, + "crossed": true, + "fee": "0.003152", + "tid": 166085547164365, + "cloid": "0x00000000000000000000001644001054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003746", + "sz": "4009.0", + "side": "B", + "time": 1761233002670, + "startPosition": "-1998107816.0", + "dir": "Close Short", + "closedPnl": "7.236245", + "hash": "0xc525b0856bfef476c69f042e0c69190202b2006b06f2134868ee5bd82af2ce61", + "oid": 210476504978, + "crossed": true, + "fee": "0.003153", + "tid": 1068799887200758, + "cloid": "0x00000000000000000000001644001054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003746", + "sz": "125530.0", + "side": "B", + "time": 1761233002670, + "startPosition": "-1998103807.0", + "dir": "Close Short", + "closedPnl": "226.58165", + "hash": "0xc525b0856bfef476c69f042e0c69190202b2006b06f2134868ee5bd82af2ce61", + "oid": 210476504978, + "crossed": true, + "fee": "0.098749", + "tid": 844707392262324, + "cloid": "0x00000000000000000000001644001054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003746", + "sz": "133511.0", + "side": "B", + "time": 1761233003993, + "startPosition": "-1997978277.0", + "dir": "Close Short", + "closedPnl": "240.987355", + "hash": "0x99db8c46a20f54329b55042e0c692902036b002c3d0273043da4379961032e1d", + "oid": 210476525469, + "crossed": true, + "fee": "0.105027", + "tid": 155376661842607, + "cloid": "0x00000000000000000000001644001055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003747", + "sz": "98852.0", + "side": "B", + "time": 1761233005308, + "startPosition": "-1997844766.0", + "dir": "Close Short", + "closedPnl": "178.329008", + "hash": "0xbbd549c9ba4e59b0bd4f042e0c693802090400af554178825f9df51c7942339b", + "oid": 210476544356, + "crossed": true, + "fee": "0.077783", + "tid": 177606343135606, + "cloid": "0x00000000000000000000001644001056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "34669.0", + "side": "B", + "time": 1761233005308, + "startPosition": "-1997745914.0", + "dir": "Close Short", + "closedPnl": "62.508207", + "hash": "0xbbd549c9ba4e59b0bd4f042e0c693802090400af554178825f9df51c7942339b", + "oid": 210476544356, + "crossed": true, + "fee": "0.027287", + "tid": 187812581211677, + "cloid": "0x00000000000000000000001644001056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "88958.0", + "side": "B", + "time": 1761233006819, + "startPosition": "-1997711245.0", + "dir": "Close Short", + "closedPnl": "160.391274", + "hash": "0xef467426aa85d89df0c0042e0c694d020d7f000c4588f76f930f1f796989b288", + "oid": 210476582156, + "crossed": true, + "fee": "0.070017", + "tid": 543498255041410, + "cloid": "0x00000000000000000000001644001057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "44499.0", + "side": "B", + "time": 1761233006819, + "startPosition": "-1997622287.0", + "dir": "Close Short", + "closedPnl": "80.231697", + "hash": "0xef467426aa85d89df0c0042e0c694d020d7f000c4588f76f930f1f796989b288", + "oid": 210476582156, + "crossed": true, + "fee": "0.035024", + "tid": 1091642182796970, + "cloid": "0x00000000000000000000001644001057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003745", + "sz": "133493.0", + "side": "B", + "time": 1761233008364, + "startPosition": "-1997577788.0", + "dir": "Close Short", + "closedPnl": "241.088358", + "hash": "0x218b322bec50003c2304042e0c6960020505001187531f0ec553dd7eab53da26", + "oid": 210476616320, + "crossed": true, + "fee": "0.104985", + "tid": 785387973789285, + "cloid": "0x00000000000000000000001644001058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003747", + "sz": "98857.0", + "side": "B", + "time": 1761233009949, + "startPosition": "-1997444295.0", + "dir": "Close Short", + "closedPnl": "178.338028", + "hash": "0xa9647eee68cf6a26aade042e0c697402020000d403c288f84d2d2a4127c34411", + "oid": 210476643172, + "crossed": true, + "fee": "0.077787", + "tid": 574992391247798, + "cloid": "0x00000000000000000000001644001059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003747", + "sz": "34654.0", + "side": "B", + "time": 1761233009949, + "startPosition": "-1997345438.0", + "dir": "Close Short", + "closedPnl": "62.515816", + "hash": "0xa9647eee68cf6a26aade042e0c697402020000d403c288f84d2d2a4127c34411", + "oid": 210476643172, + "crossed": true, + "fee": "0.027268", + "tid": 785392474603952, + "cloid": "0x00000000000000000000001644001059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003747", + "sz": "103404.0", + "side": "B", + "time": 1761233011482, + "startPosition": "-1997310784.0", + "dir": "Close Short", + "closedPnl": "186.540816", + "hash": "0x49e723cfc849504e4b60042e0c69860202de00b5634c6f20edafcf22874d2a38", + "oid": 210476666296, + "crossed": true, + "fee": "0.081365", + "tid": 273076194535579, + "cloid": "0x00000000000000000000001644001060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "30107.0", + "side": "B", + "time": 1761233011482, + "startPosition": "-1997207380.0", + "dir": "Close Short", + "closedPnl": "54.282921", + "hash": "0x49e723cfc849504e4b60042e0c69860202de00b5634c6f20edafcf22874d2a38", + "oid": 210476666296, + "crossed": true, + "fee": "0.023696", + "tid": 729809290342204, + "cloid": "0x00000000000000000000001644001060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "98826.0", + "side": "B", + "time": 1761233012740, + "startPosition": "-1997177273.0", + "dir": "Close Short", + "closedPnl": "178.183278", + "hash": "0x243555cc13eeda8e25af042e0c69980205ce00b1aee1f960c7fe011ed2e2b478", + "oid": 210476689503, + "crossed": true, + "fee": "0.077783", + "tid": 924430772292286, + "cloid": "0x00000000000000000000001644001061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "34667.0", + "side": "B", + "time": 1761233012740, + "startPosition": "-1997078447.0", + "dir": "Close Short", + "closedPnl": "62.504601", + "hash": "0x243555cc13eeda8e25af042e0c69980205ce00b1aee1f960c7fe011ed2e2b478", + "oid": 210476689503, + "crossed": true, + "fee": "0.027285", + "tid": 267252480791560, + "cloid": "0x00000000000000000000001644001061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "133463.0", + "side": "B", + "time": 1761233016987, + "startPosition": "-1997043780.0", + "dir": "Close Short", + "closedPnl": "240.633789", + "hash": "0xfdf4f05098fab354ff6e042e0c69d5020156003633fdd227a1bd9ba357fe8d3f", + "oid": 210476726292, + "crossed": true, + "fee": "0.105046", + "tid": 223127969142754, + "cloid": "0x00000000000000000000001644001062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003747", + "sz": "133476.0", + "side": "B", + "time": 1761233018795, + "startPosition": "-1996910317.0", + "dir": "Close Short", + "closedPnl": "240.790704", + "hash": "0x3351a6e8d15d382334cb042e0c69ef0202ca00ce6c5056f5d71a523b9051120d", + "oid": 210476739541, + "crossed": true, + "fee": "0.105028", + "tid": 768864296533137, + "cloid": "0x00000000000000000000001644001063", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003747", + "sz": "133409.0", + "side": "B", + "time": 1761233020216, + "startPosition": "-1996776841.0", + "dir": "Close Short", + "closedPnl": "240.669836", + "hash": "0xcd8df0c3f24b5058cf07042e0c69ff01610008a98d4e6f2a71569c16b14f2a43", + "oid": 210476754947, + "crossed": true, + "fee": "0.104975", + "tid": 200231481693395, + "cloid": "0x00000000000000000000001644001064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "67.0", + "side": "B", + "time": 1761233020216, + "startPosition": "-1996643432.0", + "dir": "Close Short", + "closedPnl": "0.120801", + "hash": "0xcd8df0c3f24b5058cf07042e0c69ff01610008a98d4e6f2a71569c16b14f2a43", + "oid": 210476754947, + "crossed": true, + "fee": "0.000052", + "tid": 25636023500936, + "cloid": "0x00000000000000000000001644001064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "133476.0", + "side": "B", + "time": 1761233022812, + "startPosition": "-1996643365.0", + "dir": "Close Short", + "closedPnl": "240.657228", + "hash": "0xab83e18bc97ddb1bacfd042e0c6a1d02023600716470f9ed4f4c8cde8871b506", + "oid": 210476801564, + "crossed": true, + "fee": "0.105056", + "tid": 631549584184357, + "cloid": "0x00000000000000000000001644001065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003747", + "sz": "133476.0", + "side": "B", + "time": 1761233024124, + "startPosition": "-1996509889.0", + "dir": "Close Short", + "closedPnl": "240.790704", + "hash": "0xc3c99cea30b48ee1c543042e0c6a2e0206b500cfcbb7adb36792483cefb868cc", + "oid": 210476817353, + "crossed": true, + "fee": "0.105028", + "tid": 653541362606183, + "cloid": "0x00000000000000000000001644001066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "113171.0", + "side": "B", + "time": 1761233025560, + "startPosition": "-1996376413.0", + "dir": "Close Short", + "closedPnl": "204.047313", + "hash": "0xb1512275e6daec15b2ca042e0c6a3e020217005b81de0ae75519cdc8a5dec600", + "oid": 210476828874, + "crossed": true, + "fee": "0.089074", + "tid": 385518851690622, + "cloid": "0x00000000000000000000001644001067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "20327.0", + "side": "B", + "time": 1761233025560, + "startPosition": "-1996263242.0", + "dir": "Close Short", + "closedPnl": "36.649581", + "hash": "0xb1512275e6daec15b2ca042e0c6a3e020217005b81de0ae75519cdc8a5dec600", + "oid": 210476828874, + "crossed": true, + "fee": "0.015998", + "tid": 202113586591419, + "cloid": "0x00000000000000000000001644001067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "133476.0", + "side": "B", + "time": 1761233026939, + "startPosition": "-1996242915.0", + "dir": "Close Short", + "closedPnl": "240.657228", + "hash": "0x9fedbbfc4faeb85aa167042e0c6a5102058d00e1eaa1d72c43b6674f0ea29245", + "oid": 210476842963, + "crossed": true, + "fee": "0.105056", + "tid": 810494416922646, + "cloid": "0x00000000000000000000001644001068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003749", + "sz": "88913.0", + "side": "B", + "time": 1761233028467, + "startPosition": "-1996109439.0", + "dir": "Close Short", + "closedPnl": "160.221226", + "hash": "0x62bf678ed4f974216439042e0c6a670208bc00746ffc92f3068812e193fd4e0c", + "oid": 210476878110, + "crossed": true, + "fee": "0.07", + "tid": 23576408877110, + "cloid": "0x00000000000000000000001644001069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00375", + "sz": "44527.0", + "side": "B", + "time": 1761233028467, + "startPosition": "-1996020526.0", + "dir": "Close Short", + "closedPnl": "80.193127", + "hash": "0x62bf678ed4f974216439042e0c6a670208bc00746ffc92f3068812e193fd4e0c", + "oid": 210476878110, + "crossed": true, + "fee": "0.035065", + "tid": 332509007044002, + "cloid": "0x00000000000000000000001644001069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3852.4", + "sz": "0.0038", + "side": "A", + "time": 1761233029491, + "startPosition": "-2367.6396", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x24f1a57c3e66691e266b042e0c6a750207a50061d96987f0c8ba50cefd6a4308", + "oid": 210476872183, + "crossed": false, + "fee": "0.000409", + "tid": 55045036962737, + "cloid": "0x00000000000000000000001643001259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3852.4", + "sz": "0.4503", + "side": "A", + "time": 1761233029982, + "startPosition": "-2367.6434", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x558840f00c29aa225701042e0c6a790205cd00d5a72cc8f4f950ec42cb2d840c", + "oid": 210476872183, + "crossed": false, + "fee": "0.048572", + "tid": 542621980316383, + "cloid": "0x00000000000000000000001643001259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "73332.0", + "side": "B", + "time": 1761233030179, + "startPosition": "-1995975999.0", + "dir": "Close Short", + "closedPnl": "132.217596", + "hash": "0x72ecf631456bf8ab7466042e0c6a7b0206f70016e06f177d16b5a184046fd296", + "oid": 210476912371, + "crossed": true, + "fee": "0.057718", + "tid": 371829019619408, + "cloid": "0x00000000000000000000001644001070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003748", + "sz": "60081.0", + "side": "B", + "time": 1761233030179, + "startPosition": "-1995902667.0", + "dir": "Close Short", + "closedPnl": "108.326043", + "hash": "0x72ecf631456bf8ab7466042e0c6a7b0206f70016e06f177d16b5a184046fd296", + "oid": 210476912371, + "crossed": true, + "fee": "0.047288", + "tid": 767434250547962, + "cloid": "0x00000000000000000000001644001070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3852.4", + "sz": "0.6489", + "side": "A", + "time": 1761233030250, + "startPosition": "-2368.0937", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x574c02a6f506f76458c5042e0c6a7c013c001a8c900a1636fb14adf9b40ad14e", + "oid": 210476872183, + "crossed": false, + "fee": "0.069995", + "tid": 926233626005281, + "cloid": "0x00000000000000000000001643001259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00375", + "sz": "8097.0", + "side": "B", + "time": 1761233032810, + "startPosition": "-1995842586.0", + "dir": "Close Short", + "closedPnl": "14.582697", + "hash": "0x081ada1ac747b8a60994042e0c6a9d02029b0000624ad778abe3856d864b9290", + "oid": 210476961302, + "crossed": true, + "fee": "0.006376", + "tid": 604940908402137, + "cloid": "0x00000000000000000000001644001071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "125307.0", + "side": "B", + "time": 1761233057235, + "startPosition": "-1995834489.0", + "dir": "Close Short", + "closedPnl": "224.800758", + "hash": "0xbf85b11b6abb4fb6c0ff042e0c6bca020249000105be6e88634e5c6e29bf29a1", + "oid": 210477340406, + "crossed": true, + "fee": "0.098863", + "tid": 21365872627660, + "cloid": "0x00000000000000000000001644001078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133131.0", + "side": "B", + "time": 1761233059319, + "startPosition": "-1995709182.0", + "dir": "Close Short", + "closedPnl": "238.837014", + "hash": "0x2fb31dc91c26dfe9312c042e0c6be402047600aeb729febbd37bc91bdb2ab9d3", + "oid": 210477364577, + "crossed": true, + "fee": "0.105036", + "tid": 324853952833542, + "cloid": "0x00000000000000000000001644001079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "98626.0", + "side": "B", + "time": 1761233087883, + "startPosition": "-1995576051.0", + "dir": "Close Short", + "closedPnl": "177.03367", + "hash": "0x57f6360fae847a37596f042e0c6d450201e700f549879909fbbee1626d885421", + "oid": 210477725161, + "crossed": true, + "fee": "0.077792", + "tid": 1028060627946136, + "cloid": "0x00000000000000000000001644001089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "34547.0", + "side": "B", + "time": 1761233087883, + "startPosition": "-1995477425.0", + "dir": "Close Short", + "closedPnl": "62.011865", + "hash": "0x57f6360fae847a37596f042e0c6d450201e700f549879909fbbee1626d885421", + "oid": 210477725161, + "crossed": true, + "fee": "0.027249", + "tid": 294777473859613, + "cloid": "0x00000000000000000000001644001089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003755", + "sz": "133191.0", + "side": "B", + "time": 1761233094179, + "startPosition": "-1995442878.0", + "dir": "Close Short", + "closedPnl": "239.211036", + "hash": "0x0a1a73205ceb3d410b94042e0c6d9a0201540005f7ee5c13ade31e731bef172b", + "oid": 210477784112, + "crossed": true, + "fee": "0.105027", + "tid": 1050499671310698, + "cloid": "0x00000000000000000000001644001091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00375", + "sz": "133214.0", + "side": "B", + "time": 1761233118207, + "startPosition": "-1995309687.0", + "dir": "Close Short", + "closedPnl": "239.918414", + "hash": "0x1edd439361f43e552056042e0c6ed002043f0078fcf75d27c2a5eee620f8183f", + "oid": 210478052185, + "crossed": false, + "fee": "0.013987", + "tid": 750294473494733, + "cloid": "0x00000000000000000000001644001097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3851.5", + "sz": "0.9743", + "side": "A", + "time": 1761233136705, + "startPosition": "-2368.7426", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe4d90bc1d809ad93e652042e0c6fb00208e800a7730ccc6588a1b714970d877e", + "oid": 210478317920, + "crossed": false, + "fee": "0.10507", + "tid": 382967394297054, + "cloid": "0x00000000000000000000001643001280", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3854.3", + "sz": "2.5953", + "side": "A", + "time": 1761233143572, + "startPosition": "-2369.7169", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb28e2f92e199f7f8b407042e0c700102089400787c9d16ca5656dae5a09dd1e3", + "oid": 210478460947, + "crossed": true, + "fee": "2.100643", + "tid": 436309946249546, + "cloid": "0x00000000000000000000001643001282", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "133262.0", + "side": "B", + "time": 1761233146136, + "startPosition": "-1995176473.0", + "dir": "Close Short", + "closedPnl": "238.672242", + "hash": "0xfa3822547a395242fbb1042e0c7023020c84003a153c71159e00cda7393d2c2d", + "oid": 210478512257, + "crossed": true, + "fee": "0.105223", + "tid": 1033720464126537, + "cloid": "0x00000000000000000000001644001104", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "4287.0", + "side": "B", + "time": 1761233147550, + "startPosition": "-1995043211.0", + "dir": "Close Short", + "closedPnl": "7.678017", + "hash": "0x939794e0ab3584679511042e0c703502023a00c64638a339376040336a395e52", + "oid": 210478537922, + "crossed": true, + "fee": "0.003385", + "tid": 3662211908955, + "cloid": "0x00000000000000000000001644001105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00376", + "sz": "128744.0", + "side": "B", + "time": 1761233147550, + "startPosition": "-1995038924.0", + "dir": "Close Short", + "closedPnl": "230.580504", + "hash": "0x939794e0ab3584679511042e0c703502023a00c64638a339376040336a395e52", + "oid": 210478537922, + "crossed": true, + "fee": "0.101656", + "tid": 138370238118187, + "cloid": "0x00000000000000000000001644001105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133037.0", + "side": "B", + "time": 1761233148966, + "startPosition": "-1994910180.0", + "dir": "Close Short", + "closedPnl": "238.535341", + "hash": "0x788777d569956d467a01042e0c70460202fb00bb04988c181c50232828994731", + "oid": 210478559514, + "crossed": true, + "fee": "0.10499", + "tid": 460850465797596, + "cloid": "0x00000000000000000000001644001106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133191.0", + "side": "B", + "time": 1761233158290, + "startPosition": "-1994777143.0", + "dir": "Close Short", + "closedPnl": "239.077845", + "hash": "0xa3622d04b4055833a4db042e0c70bc02026c00ea4f087705472ad8577309321e", + "oid": 210478712509, + "crossed": true, + "fee": "0.105055", + "tid": 797730563967500, + "cloid": "0x00000000000000000000001644001110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133191.0", + "side": "B", + "time": 1761233166494, + "startPosition": "-1994643952.0", + "dir": "Close Short", + "closedPnl": "239.077845", + "hash": "0x2f5ed3f247c68b0f30d8042e0c71280203ec00d7e2c9a9e1d3277f4506ca64f9", + "oid": 210478797440, + "crossed": true, + "fee": "0.105055", + "tid": 1124025545621726, + "cloid": "0x00000000000000000000001644001112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133157.0", + "side": "B", + "time": 1761233167699, + "startPosition": "-1994510761.0", + "dir": "Close Short", + "closedPnl": "239.016815", + "hash": "0x53ca79c14154f3645544042e0c713a02021300a6dc581236f79325140058cd4e", + "oid": 210478813045, + "crossed": true, + "fee": "0.105028", + "tid": 1012973383196589, + "cloid": "0x00000000000000000000001644001113", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003753", + "sz": "133191.0", + "side": "B", + "time": 1761233183926, + "startPosition": "-1994377604.0", + "dir": "Close Short", + "closedPnl": "239.477418", + "hash": "0x3fd817238dce1a024151042e0c720f020689000928c138d4e3a0c2764cc1f3ec", + "oid": 210479114675, + "crossed": true, + "fee": "0.104971", + "tid": 1073167492996011, + "cloid": "0x00000000000000000000001644001121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00375", + "sz": "133252.0", + "side": "B", + "time": 1761233207998, + "startPosition": "-1994244413.0", + "dir": "Close Short", + "closedPnl": "239.986852", + "hash": "0x30cb5ec776bee8863245042e0c732502050200ad11b20758d4940a1a35b2c270", + "oid": 210479459138, + "crossed": true, + "fee": "0.104935", + "tid": 969814008053383, + "cloid": "0x00000000000000000000001644001131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3856.2", + "sz": "2.5941", + "side": "A", + "time": 1761233212910, + "startPosition": "-2372.3122", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x39d597f36cbc35613b4f042e0c736902030e00d907bf5433dd9e43462bb00f4b", + "oid": 210479508177, + "crossed": false, + "fee": "0.280094", + "tid": 827328691266382, + "cloid": "0x00000000000000000000001643001301", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003749", + "sz": "133395.0", + "side": "B", + "time": 1761233223875, + "startPosition": "-1994111161.0", + "dir": "Close Short", + "closedPnl": "240.37779", + "hash": "0xcf456395530285fcd0bf042e0c73f7020275007aee05a4ce730e0ee812065fe7", + "oid": 210479698134, + "crossed": true, + "fee": "0.10502", + "tid": 28226780078557, + "cloid": "0x00000000000000000000001644001137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003749", + "sz": "133451.0", + "side": "B", + "time": 1761233225361, + "startPosition": "-1993977766.0", + "dir": "Close Short", + "closedPnl": "240.478702", + "hash": "0x17d20394fa159762194b042e0c74080202f9007a9518b634bb9aaee7b919714c", + "oid": 210479719819, + "crossed": true, + "fee": "0.105064", + "tid": 303694756558689, + "cloid": "0x00000000000000000000001644001138", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003747", + "sz": "133511.0", + "side": "B", + "time": 1761233226838, + "startPosition": "-1993844315.0", + "dir": "Close Short", + "closedPnl": "240.853844", + "hash": "0xe60abd4816e13d73e784042e0c741c0209ea002db1e45c4589d3689ad5e5175e", + "oid": 210479747489, + "crossed": true, + "fee": "0.105055", + "tid": 907527697458915, + "cloid": "0x00000000000000000000001644001139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3853.9", + "sz": "2.5923", + "side": "A", + "time": 1761233231107, + "startPosition": "-2374.9063", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6ad339e9576534d46c4c042e0c745502065500cef26853a60e9be53c16690ebf", + "oid": 210479825499, + "crossed": true, + "fee": "2.097997", + "tid": 355343977388259, + "cloid": "0x00000000000000000000001643001308", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3852.9", + "sz": "2.5952", + "side": "A", + "time": 1761233239352, + "startPosition": "-2377.4986", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8114dbf0389d1e77828e042e0c74b702097600d5d3903d4924dd8742f790f862", + "oid": 210479946139, + "crossed": true, + "fee": "2.099799", + "tid": 437672729517137, + "cloid": "0x00000000000000000000001643001310", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3853.8", + "sz": "0.0755", + "side": "A", + "time": 1761233244698, + "startPosition": "-2380.0938", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa46442a3cbd90a0ba5dd042e0c74fa02063b008966dc28dd482cedf68adce3f6", + "oid": 210479995906, + "crossed": false, + "fee": "0.008146", + "tid": 577505637261668, + "cloid": "0x00000000000000000000001643001311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003746", + "sz": "103832.0", + "side": "B", + "time": 1761233245149, + "startPosition": "-1993710804.0", + "dir": "Close Short", + "closedPnl": "187.41676", + "hash": "0x9615a5e1bc3914a2978f042e0c74fe02061d00c7573c337439de51347b3cee8d", + "oid": 210480037327, + "crossed": true, + "fee": "0.08168", + "tid": 1007725230790677, + "cloid": "0x00000000000000000000001644001145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003746", + "sz": "29786.0", + "side": "B", + "time": 1761233245149, + "startPosition": "-1993606972.0", + "dir": "Close Short", + "closedPnl": "53.76373", + "hash": "0x9615a5e1bc3914a2978f042e0c74fe02061d00c7573c337439de51347b3cee8d", + "oid": 210480037327, + "crossed": true, + "fee": "0.023431", + "tid": 981482742970892, + "cloid": "0x00000000000000000000001644001145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3853.8", + "sz": "0.1063", + "side": "A", + "time": 1761233246049, + "startPosition": "-2380.1693", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210479995906, + "crossed": false, + "fee": "0.01147", + "tid": 981449609069442, + "cloid": "0x00000000000000000000001643001311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3853.8", + "sz": "0.0461", + "side": "A", + "time": 1761233247053, + "startPosition": "-2380.2756", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210479995906, + "crossed": false, + "fee": "0.004974", + "tid": 314041333297609, + "cloid": "0x00000000000000000000001643001311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3853.8", + "sz": "2.3672", + "side": "A", + "time": 1761233247352, + "startPosition": "-2380.3217", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x58b7f7c93cdac52a5a31042e0c7516020e3f00aed7dde3fcfc80a31bfbde9f14", + "oid": 210479995906, + "crossed": false, + "fee": "0.255436", + "tid": 263074190570983, + "cloid": "0x00000000000000000000001643001311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003749", + "sz": "93366.0", + "side": "B", + "time": 1761233248657, + "startPosition": "-1993577186.0", + "dir": "Close Short", + "closedPnl": "168.245532", + "hash": "0xc6c24480f099013ec83c042e0c752602048b00668b9c20106a8aefd3af9cdb29", + "oid": 210480093564, + "crossed": true, + "fee": "0.073506", + "tid": 59156638390608, + "cloid": "0x00000000000000000000001644001146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003749", + "sz": "40074.0", + "side": "B", + "time": 1761233248657, + "startPosition": "-1993483820.0", + "dir": "Close Short", + "closedPnl": "72.213348", + "hash": "0xc6c24480f099013ec83c042e0c752602048b00668b9c20106a8aefd3af9cdb29", + "oid": 210480093564, + "crossed": true, + "fee": "0.031549", + "tid": 106499882121892, + "cloid": "0x00000000000000000000001644001146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00375", + "sz": "93343.0", + "side": "B", + "time": 1761233250012, + "startPosition": "-1993443746.0", + "dir": "Close Short", + "closedPnl": "168.110743", + "hash": "0x1959e90add2fb6131ad3042e0c75350206b100f07822d4e5bd22945d9c238ffd", + "oid": 210480125815, + "crossed": true, + "fee": "0.073507", + "tid": 31753664616864, + "cloid": "0x00000000000000000000001644001147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00375", + "sz": "40061.0", + "side": "B", + "time": 1761233250012, + "startPosition": "-1993350403.0", + "dir": "Close Short", + "closedPnl": "72.149861", + "hash": "0x1959e90add2fb6131ad3042e0c75350206b100f07822d4e5bd22945d9c238ffd", + "oid": 210480125815, + "crossed": true, + "fee": "0.031548", + "tid": 761684379978195, + "cloid": "0x00000000000000000000001644001147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003749", + "sz": "133411.0", + "side": "B", + "time": 1761233251429, + "startPosition": "-1993310342.0", + "dir": "Close Short", + "closedPnl": "240.406622", + "hash": "0x5e5884c488886b8c5fd2042e0c754402024c00aa238b8a5e02213017478c4577", + "oid": 210480152137, + "crossed": true, + "fee": "0.105033", + "tid": 204910118487258, + "cloid": "0x00000000000000000000001644001148", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003749", + "sz": "4544.0", + "side": "B", + "time": 1761233253273, + "startPosition": "-1993176931.0", + "dir": "Close Short", + "closedPnl": "8.188288", + "hash": "0x468ffd8ae100a1284809042e0c755a02022600707c03bffaea58a8dda0047b12", + "oid": 210480166217, + "crossed": true, + "fee": "0.003577", + "tid": 465347832296490, + "cloid": "0x00000000000000000000001644001149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003749", + "sz": "128895.0", + "side": "B", + "time": 1761233253273, + "startPosition": "-1993172387.0", + "dir": "Close Short", + "closedPnl": "232.26879", + "hash": "0x468ffd8ae100a1284809042e0c755a02022600707c03bffaea58a8dda0047b12", + "oid": 210480166217, + "crossed": true, + "fee": "0.101477", + "tid": 513195068853498, + "cloid": "0x00000000000000000000001644001149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003749", + "sz": "133440.0", + "side": "B", + "time": 1761233254554, + "startPosition": "-1993043492.0", + "dir": "Close Short", + "closedPnl": "240.45888", + "hash": "0x589fae409dcde5365a19042e0c756c0203f8002638c10408fc6859935cc1bf20", + "oid": 210480176554, + "crossed": true, + "fee": "0.105055", + "tid": 163678939322386, + "cloid": "0x00000000000000000000001644001150", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00375", + "sz": "133404.0", + "side": "B", + "time": 1761233256029, + "startPosition": "-1992910052.0", + "dir": "Close Short", + "closedPnl": "240.260604", + "hash": "0x40c6d6a96233bc984240042e0c757f020338008efd36db6ae48f81fc21379682", + "oid": 210480197016, + "crossed": true, + "fee": "0.105055", + "tid": 629570060547087, + "cloid": "0x00000000000000000000001644001151", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3856.2", + "sz": "0.0289", + "side": "A", + "time": 1761233277336, + "startPosition": "-2382.6889", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3355b0226671c94a34cf042e0c769602026900080174e81cd71e5b752575a334", + "oid": 210480543050, + "crossed": false, + "fee": "0.00312", + "tid": 640721057650206, + "cloid": "0x00000000000000000000001643001319", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3856.2", + "sz": "0.0312", + "side": "A", + "time": 1761233278476, + "startPosition": "-2382.7178", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xed5f0b98d6b5da5beed8042e0c76a4020347007e71b8f92d9127b6eb95b9b446", + "oid": 210480543050, + "crossed": false, + "fee": "0.003368", + "tid": 113214127243346, + "cloid": "0x00000000000000000000001643001319", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3856.2", + "sz": "0.6445", + "side": "A", + "time": 1761233279735, + "startPosition": "-2382.749", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x02d539a3cec6a605044e042e0c76b6020196008969c9c4d7a69de4f68dca7fef", + "oid": 210480543050, + "crossed": false, + "fee": "0.069588", + "tid": 854438332979171, + "cloid": "0x00000000000000000000001643001319", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "108691.0", + "side": "B", + "time": 1761233288844, + "startPosition": "-1992776648.0", + "dir": "Close Short", + "closedPnl": "194.991654", + "hash": "0x95578042cb8cb9d696d1042e0c7725020ad70028668fd8a839202b958a8093c1", + "oid": 210480729375, + "crossed": true, + "fee": "0.085753", + "tid": 581382483414934, + "cloid": "0x00000000000000000000001644001158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "24642.0", + "side": "B", + "time": 1761233288844, + "startPosition": "-1992667957.0", + "dir": "Close Short", + "closedPnl": "44.207748", + "hash": "0x95578042cb8cb9d696d1042e0c7725020ad70028668fd8a839202b958a8093c1", + "oid": 210480729375, + "crossed": true, + "fee": "0.019441", + "tid": 915072418874091, + "cloid": "0x00000000000000000000001644001158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "130020.0", + "side": "B", + "time": 1761233291151, + "startPosition": "-1992643315.0", + "dir": "Close Short", + "closedPnl": "233.12586", + "hash": "0x6756be7b45a5292268d0042e0c77400211020060e0a847f40b1f69ce04a9030d", + "oid": 210480779302, + "crossed": true, + "fee": "0.102609", + "tid": 1104210180067505, + "cloid": "0x00000000000000000000001644001159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "3054.0", + "side": "B", + "time": 1761233291151, + "startPosition": "-1992513295.0", + "dir": "Close Short", + "closedPnl": "5.472768", + "hash": "0x6756be7b45a5292268d0042e0c77400211020060e0a847f40b1f69ce04a9030d", + "oid": 210480779302, + "crossed": true, + "fee": "0.00241", + "tid": 951155149361743, + "cloid": "0x00000000000000000000001644001159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133013.0", + "side": "B", + "time": 1761233300097, + "startPosition": "-1992510241.0", + "dir": "Close Short", + "closedPnl": "238.359296", + "hash": "0x60674215dccb7f9161e0042e0c77b402040000fb77ce9e63042fed689bcf597c", + "oid": 210480943552, + "crossed": true, + "fee": "0.104999", + "tid": 1071564498014996, + "cloid": "0x00000000000000000000001644001162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "23538.0", + "side": "B", + "time": 1761233301528, + "startPosition": "-1992377228.0", + "dir": "Close Short", + "closedPnl": "42.203634", + "hash": "0x737c1bc626762aeb74f5042e0c77c602047900abc17949bd1744c718e57a04d6", + "oid": 210480970374, + "crossed": true, + "fee": "0.018575", + "tid": 447549844454603, + "cloid": "0x00000000000000000000001644001163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "109537.0", + "side": "B", + "time": 1761233301528, + "startPosition": "-1992353690.0", + "dir": "Close Short", + "closedPnl": "196.290304", + "hash": "0x737c1bc626762aeb74f5042e0c77c602047900abc17949bd1744c718e57a04d6", + "oid": 210480970374, + "crossed": true, + "fee": "0.086467", + "tid": 68110340845985, + "cloid": "0x00000000000000000000001644001163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133084.0", + "side": "B", + "time": 1761233303052, + "startPosition": "-1992244153.0", + "dir": "Close Short", + "closedPnl": "238.486528", + "hash": "0x072b14ff69889d6408a4042e0c77d70204bd00e5048bbc36aaf3c052288c774e", + "oid": 210480987819, + "crossed": true, + "fee": "0.105055", + "tid": 349723342102510, + "cloid": "0x00000000000000000000001644001164", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133085.0", + "side": "B", + "time": 1761233304470, + "startPosition": "-1992111069.0", + "dir": "Close Short", + "closedPnl": "238.48832", + "hash": "0xd9392df18fa0cda1dab2042e0c77ea0201d000d72aa3ec737d01d9444ea4a78c", + "oid": 210481001885, + "crossed": true, + "fee": "0.105055", + "tid": 1110260574633884, + "cloid": "0x00000000000000000000001644001165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "4477.0", + "side": "B", + "time": 1761233305709, + "startPosition": "-1991977984.0", + "dir": "Close Short", + "closedPnl": "8.022784", + "hash": "0xc8b3042456b8d66cca2c042e0c77fb0204540009f1bbf53e6c7baf7715bcb057", + "oid": 210481015169, + "crossed": true, + "fee": "0.003534", + "tid": 868027913369783, + "cloid": "0x00000000000000000000001644001166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "128572.0", + "side": "B", + "time": 1761233305709, + "startPosition": "-1991973507.0", + "dir": "Close Short", + "closedPnl": "230.401024", + "hash": "0xc8b3042456b8d66cca2c042e0c77fb0204540009f1bbf53e6c7baf7715bcb057", + "oid": 210481015169, + "crossed": true, + "fee": "0.101493", + "tid": 999813787068352, + "cloid": "0x00000000000000000000001644001166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "133049.0", + "side": "B", + "time": 1761233315713, + "startPosition": "-1991844935.0", + "dir": "Close Short", + "closedPnl": "238.423808", + "hash": "0x53b5c740afb1dc16552f042e0c787902016e00264ab4fae8f77e72936eb5b600", + "oid": 210481121142, + "crossed": true, + "fee": "0.105027", + "tid": 137944247915582, + "cloid": "0x00000000000000000000001644001167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133078.0", + "side": "B", + "time": 1761233316938, + "startPosition": "-1991711886.0", + "dir": "Close Short", + "closedPnl": "238.608854", + "hash": "0xd89735041fffdca8da10042e0c788c02017300e9baf2fb7a7c5fe056def3b693", + "oid": 210481127271, + "crossed": true, + "fee": "0.105022", + "tid": 408914776584047, + "cloid": "0x00000000000000000000001644001168", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "4508.0", + "side": "B", + "time": 1761233318711, + "startPosition": "-1991578808.0", + "dir": "Close Short", + "closedPnl": "8.082844", + "hash": "0x3aebeed8f77204073c65042e0c78a502016e00be927522d9deb49a2bb675ddf1", + "oid": 210481133969, + "crossed": true, + "fee": "0.003557", + "tid": 582568806384595, + "cloid": "0x00000000000000000000001644001169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "111464.0", + "side": "B", + "time": 1761233318711, + "startPosition": "-1991574300.0", + "dir": "Close Short", + "closedPnl": "199.743488", + "hash": "0x3aebeed8f77204073c65042e0c78a502016e00be927522d9deb49a2bb675ddf1", + "oid": 210481133969, + "crossed": true, + "fee": "0.087988", + "tid": 953047188047846, + "cloid": "0x00000000000000000000001644001169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "17148.0", + "side": "B", + "time": 1761233318711, + "startPosition": "-1991462836.0", + "dir": "Close Short", + "closedPnl": "30.729216", + "hash": "0x3aebeed8f77204073c65042e0c78a502016e00be927522d9deb49a2bb675ddf1", + "oid": 210481133969, + "crossed": true, + "fee": "0.013536", + "tid": 34422788672428, + "cloid": "0x00000000000000000000001644001169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133085.0", + "side": "B", + "time": 1761233319925, + "startPosition": "-1991445688.0", + "dir": "Close Short", + "closedPnl": "238.621405", + "hash": "0x77a9ea613f9f96e27923042e0c78b50202f00046da92b5b41b7295b3fe9370cd", + "oid": 210481142029, + "crossed": true, + "fee": "0.105028", + "tid": 991038534916918, + "cloid": "0x00000000000000000000001644001170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003757", + "sz": "133111.0", + "side": "B", + "time": 1761233322029, + "startPosition": "-1991312603.0", + "dir": "Close Short", + "closedPnl": "238.801134", + "hash": "0xedde6d6a052de202ef58042e0c78d00203ea004fa02100d491a718bcc421bbed", + "oid": 210481176803, + "crossed": true, + "fee": "0.10502", + "tid": 765602407513531, + "cloid": "0x00000000000000000000001644001171", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "98537.0", + "side": "B", + "time": 1761233324055, + "startPosition": "-1991179492.0", + "dir": "Close Short", + "closedPnl": "176.578304", + "hash": "0x8dc2d6b691f5ba5a8f3c042e0c78e5021016009c2cf8d92c318b820950f99445", + "oid": 210481214041, + "crossed": true, + "fee": "0.077784", + "tid": 662565001118769, + "cloid": "0x00000000000000000000001644001172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "34613.0", + "side": "B", + "time": 1761233324055, + "startPosition": "-1991080955.0", + "dir": "Close Short", + "closedPnl": "62.026496", + "hash": "0x8dc2d6b691f5ba5a8f3c042e0c78e5021016009c2cf8d92c318b820950f99445", + "oid": 210481214041, + "crossed": true, + "fee": "0.027323", + "tid": 368841779495792, + "cloid": "0x00000000000000000000001644001172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "81892.0", + "side": "B", + "time": 1761233326026, + "startPosition": "-1991046342.0", + "dir": "Close Short", + "closedPnl": "146.750464", + "hash": "0x4825b884fa434ba3499f042e0c78fe0203a6006a95466a75ebee63d7b947258d", + "oid": 210481248105, + "crossed": true, + "fee": "0.064644", + "tid": 659293247165946, + "cloid": "0x00000000000000000000001644001173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "51193.0", + "side": "B", + "time": 1761233326026, + "startPosition": "-1990964450.0", + "dir": "Close Short", + "closedPnl": "91.737856", + "hash": "0x4825b884fa434ba3499f042e0c78fe0203a6006a95466a75ebee63d7b947258d", + "oid": 210481248105, + "crossed": true, + "fee": "0.040411", + "tid": 119954329518026, + "cloid": "0x00000000000000000000001644001173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003758", + "sz": "133049.0", + "side": "B", + "time": 1761233327591, + "startPosition": "-1990913257.0", + "dir": "Close Short", + "closedPnl": "238.556857", + "hash": "0xbcf50b6310eaedd8be6e042e0c791202033c0048abee0caa60bdb6b5cfeec7c3", + "oid": 210481266692, + "crossed": true, + "fee": "0.104999", + "tid": 385999746787327, + "cloid": "0x00000000000000000000001644001174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3857.5", + "sz": "0.0461", + "side": "A", + "time": 1761233337034, + "startPosition": "-2383.3935", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210481351559, + "crossed": false, + "fee": "0.004979", + "tid": 718668385194601, + "cloid": "0x00000000000000000000001643001331", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "98537.0", + "side": "B", + "time": 1761233337720, + "startPosition": "-1990780208.0", + "dir": "Close Short", + "closedPnl": "176.578304", + "hash": "0xbca3dae6256d389cbe1d042e0c7993020f7f00cbc060576e606c8638e4611287", + "oid": 210481402670, + "crossed": true, + "fee": "0.077784", + "tid": 288415176696506, + "cloid": "0x00000000000000000000001644001175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003759", + "sz": "34512.0", + "side": "B", + "time": 1761233337720, + "startPosition": "-1990681671.0", + "dir": "Close Short", + "closedPnl": "61.845504", + "hash": "0xbca3dae6256d389cbe1d042e0c7993020f7f00cbc060576e606c8638e4611287", + "oid": 210481402670, + "crossed": true, + "fee": "0.027243", + "tid": 430548950179287, + "cloid": "0x00000000000000000000001644001175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132943.0", + "side": "B", + "time": 1761233350784, + "startPosition": "-1990647159.0", + "dir": "Close Short", + "closedPnl": "237.303255", + "hash": "0x36ddff572f8d03aa3857042e0c7a3b020529003cca80227cdaa6aaa9ee80dd94", + "oid": 210481657209, + "crossed": true, + "fee": "0.105139", + "tid": 719630820079952, + "cloid": "0x00000000000000000000001644001178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132767.0", + "side": "B", + "time": 1761233354523, + "startPosition": "-1990514216.0", + "dir": "Close Short", + "closedPnl": "236.989095", + "hash": "0xc8cf2d3afb235a8cca48042e0c7a6a0204c800209626795e6c97d88dba273477", + "oid": 210481703601, + "crossed": true, + "fee": "0.105", + "tid": 483756431103851, + "cloid": "0x00000000000000000000001644001179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "13300.0", + "side": "B", + "time": 1761233358446, + "startPosition": "-1990381449.0", + "dir": "Close Short", + "closedPnl": "23.7139", + "hash": "0x7dd4e0c1e0cc84e17f4e042e0c7a9c0209b800a77bcfa3b3219d8c149fc05ecc", + "oid": 210481757582, + "crossed": true, + "fee": "0.010524", + "tid": 284394522362710, + "cloid": "0x00000000000000000000001644001180", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "119396.0", + "side": "B", + "time": 1761233358446, + "startPosition": "-1990368149.0", + "dir": "Close Short", + "closedPnl": "212.883068", + "hash": "0x7dd4e0c1e0cc84e17f4e042e0c7a9c0209b800a77bcfa3b3219d8c149fc05ecc", + "oid": 210481757582, + "crossed": true, + "fee": "0.094475", + "tid": 41967225065385, + "cloid": "0x00000000000000000000001644001180", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "132695.0", + "side": "B", + "time": 1761233359958, + "startPosition": "-1990248753.0", + "dir": "Close Short", + "closedPnl": "236.46249", + "hash": "0x836809fee509191e84e1042e0c7aad02088700e4800c37f02730b551a40cf309", + "oid": 210481786419, + "crossed": true, + "fee": "0.105026", + "tid": 854572654939381, + "cloid": "0x00000000000000000000001644001181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3861.8", + "sz": "0.0104", + "side": "A", + "time": 1761233360050, + "startPosition": "-2383.4396", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6874d7ac1ec3d6f769ee042e0c7aae0208be0091b9c6f5c90c3d82feddc7b0e2", + "oid": 210481779270, + "crossed": false, + "fee": "0.001124", + "tid": 775296848929556, + "cloid": "0x00000000000000000000001643001336", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "132660.0", + "side": "B", + "time": 1761233361346, + "startPosition": "-1990116058.0", + "dir": "Close Short", + "closedPnl": "236.40012", + "hash": "0xcf72c34462067eaad0ec042e0c7abd0204870029fd099d7c733b6e97210a5895", + "oid": 210481810833, + "crossed": true, + "fee": "0.104999", + "tid": 834188250780184, + "cloid": "0x00000000000000000000001644001182", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132696.0", + "side": "B", + "time": 1761233362835, + "startPosition": "-1989983398.0", + "dir": "Close Short", + "closedPnl": "236.596968", + "hash": "0x9b3a3d9caabbfca89cb3042e0c7ace020435008245bf1b7a3f02e8ef69bfd693", + "oid": 210481830216, + "crossed": true, + "fee": "0.104999", + "tid": 147822028986283, + "cloid": "0x00000000000000000000001644001183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132696.0", + "side": "B", + "time": 1761233364585, + "startPosition": "-1989850702.0", + "dir": "Close Short", + "closedPnl": "236.596968", + "hash": "0x03cc0a1994651dc30545042e0c7ae2020b2400ff2f683c95a794b56c5368f7ad", + "oid": 210481854633, + "crossed": true, + "fee": "0.104999", + "tid": 855195288748090, + "cloid": "0x00000000000000000000001644001184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "4479.0", + "side": "B", + "time": 1761233366194, + "startPosition": "-1989718006.0", + "dir": "Close Short", + "closedPnl": "7.986057", + "hash": "0x2c4c53d2c1b923482dc6042e0c7af40203e700b85cbc421ad014ff2580bcfd32", + "oid": 210481880979, + "crossed": true, + "fee": "0.003544", + "tid": 729884107794214, + "cloid": "0x00000000000000000000001644001185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "128253.0", + "side": "B", + "time": 1761233366194, + "startPosition": "-1989713527.0", + "dir": "Close Short", + "closedPnl": "228.546846", + "hash": "0x2c4c53d2c1b923482dc6042e0c7af40203e700b85cbc421ad014ff2580bcfd32", + "oid": 210481880979, + "crossed": true, + "fee": "0.10151", + "tid": 201895977807036, + "cloid": "0x00000000000000000000001644001185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132696.0", + "side": "B", + "time": 1761233367805, + "startPosition": "-1989585274.0", + "dir": "Close Short", + "closedPnl": "236.596968", + "hash": "0x08072356924536ec0980042e0c7b090203af003c2d4855beabcfcea9514910d6", + "oid": 210481902935, + "crossed": true, + "fee": "0.104999", + "tid": 1067032969082385, + "cloid": "0x00000000000000000000001644001186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132732.0", + "side": "B", + "time": 1761233372919, + "startPosition": "-1989452578.0", + "dir": "Close Short", + "closedPnl": "236.92662", + "hash": "0x195197567d3b4ff01acb042e0c7b4c0204a7003c183e6ec2bd1a42a93c3f29da", + "oid": 210481969086, + "crossed": true, + "fee": "0.104972", + "tid": 179257087207937, + "cloid": "0x00000000000000000000001644001187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132788.0", + "side": "B", + "time": 1761233376543, + "startPosition": "-1989319846.0", + "dir": "Close Short", + "closedPnl": "237.02658", + "hash": "0x511a821547d6d8b25294042e0c7b7802070500fae2d9f784f4e32d6806dab29c", + "oid": 210482029333, + "crossed": true, + "fee": "0.105016", + "tid": 146421799214219, + "cloid": "0x00000000000000000000001644001188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132767.0", + "side": "B", + "time": 1761233377955, + "startPosition": "-1989187058.0", + "dir": "Close Short", + "closedPnl": "236.989095", + "hash": "0x3f678692f22f33b940e1042e0c7b8702056700788d22528be33031e5b1230da3", + "oid": 210482050895, + "crossed": true, + "fee": "0.105", + "tid": 71192103468963, + "cloid": "0x00000000000000000000001644001189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "63.0", + "side": "B", + "time": 1761233379383, + "startPosition": "-1989054291.0", + "dir": "Close Short", + "closedPnl": "0.112455", + "hash": "0xa1f9eda53c9c5eaca373042e0c7b9602031b008ad79f7d7e45c298f7fb903897", + "oid": 210482069689, + "crossed": true, + "fee": "0.000049", + "tid": 304210246045537, + "cloid": "0x00000000000000000000001644001190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132716.0", + "side": "B", + "time": 1761233379383, + "startPosition": "-1989054228.0", + "dir": "Close Short", + "closedPnl": "236.765344", + "hash": "0xa1f9eda53c9c5eaca373042e0c7b9602031b008ad79f7d7e45c298f7fb903897", + "oid": 210482069689, + "crossed": true, + "fee": "0.104987", + "tid": 1021488553944779, + "cloid": "0x00000000000000000000001644001190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132767.0", + "side": "B", + "time": 1761233380741, + "startPosition": "-1988921512.0", + "dir": "Close Short", + "closedPnl": "236.989095", + "hash": "0x37a2a4e266905d35391c042e0c7ba40205f500c801937c07db6b50352594371f", + "oid": 210482086870, + "crossed": true, + "fee": "0.105", + "tid": 143896171312130, + "cloid": "0x00000000000000000000001644001191", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "129690.0", + "side": "B", + "time": 1761233381931, + "startPosition": "-1988788745.0", + "dir": "Close Short", + "closedPnl": "231.49665", + "hash": "0xb9543a8ea6c84fbdbacd042e0c7bb10202ef007441cb6e8f5d1ce5e165cc29a8", + "oid": 210482100053, + "crossed": true, + "fee": "0.102566", + "tid": 99300044594627, + "cloid": "0x00000000000000000000001644001192", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "3089.0", + "side": "B", + "time": 1761233381931, + "startPosition": "-1988659055.0", + "dir": "Close Short", + "closedPnl": "5.513865", + "hash": "0xb9543a8ea6c84fbdbacd042e0c7bb10202ef007441cb6e8f5d1ce5e165cc29a8", + "oid": 210482100053, + "crossed": true, + "fee": "0.002442", + "tid": 438750532473981, + "cloid": "0x00000000000000000000001644001192", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132740.0", + "side": "B", + "time": 1761233385072, + "startPosition": "-1988655966.0", + "dir": "Close Short", + "closedPnl": "236.67542", + "hash": "0xf85f82b9dff3abaef9d9042e0c7bd80207f7009f7af6ca819c282e0c9ef78599", + "oid": 210482138406, + "crossed": true, + "fee": "0.105034", + "tid": 1084490504434936, + "cloid": "0x00000000000000000000001644001193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132767.0", + "side": "B", + "time": 1761233386704, + "startPosition": "-1988523226.0", + "dir": "Close Short", + "closedPnl": "236.856328", + "hash": "0xe33f01e2e74af516e4b8042e0c7beb02059500c8824e13e88707ad35a64ecf01", + "oid": 210482162955, + "crossed": true, + "fee": "0.105027", + "tid": 1064846403234513, + "cloid": "0x00000000000000000000001644001194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132758.0", + "side": "B", + "time": 1761233389707, + "startPosition": "-1988390459.0", + "dir": "Close Short", + "closedPnl": "236.840272", + "hash": "0x29e43107614f3e8a2b5d042e0c7c0d02020b00ecfc425d5ccdacdc5a20431874", + "oid": 210482199365, + "crossed": true, + "fee": "0.10502", + "tid": 974369979407031, + "cloid": "0x00000000000000000000001644001195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132790.0", + "side": "B", + "time": 1761233391259, + "startPosition": "-1988257701.0", + "dir": "Close Short", + "closedPnl": "236.89736", + "hash": "0xa52916ccebb047c9a6a2042e0c7c210202e600b286b3669b48f1c21faab421b4", + "oid": 210482221084, + "crossed": true, + "fee": "0.105046", + "tid": 886297779852629, + "cloid": "0x00000000000000000000001644001196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132689.0", + "side": "B", + "time": 1761233392735, + "startPosition": "-1988124911.0", + "dir": "Close Short", + "closedPnl": "236.717176", + "hash": "0x4ce7111b521c771c4e60042e0c7c320202270000ed1f95eef0afbc6e11105106", + "oid": 210482247558, + "crossed": true, + "fee": "0.104966", + "tid": 382013462137622, + "cloid": "0x00000000000000000000001644001197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "113.0", + "side": "B", + "time": 1761233392735, + "startPosition": "-1987992222.0", + "dir": "Close Short", + "closedPnl": "0.201592", + "hash": "0x4ce7111b521c771c4e60042e0c7c320202270000ed1f95eef0afbc6e11105106", + "oid": 210482247558, + "crossed": true, + "fee": "0.000089", + "tid": 43127164190622, + "cloid": "0x00000000000000000000001644001197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132793.0", + "side": "B", + "time": 1761233395693, + "startPosition": "-1987992109.0", + "dir": "Close Short", + "closedPnl": "236.769919", + "hash": "0x40ee3e9f834a72154267042e0c7c5402138800851e4d90e7e4b6e9f2424e4bff", + "oid": 210482294608, + "crossed": true, + "fee": "0.105076", + "tid": 829897915435191, + "cloid": "0x00000000000000000000001644001198", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3862.0", + "sz": "1.5", + "side": "A", + "time": 1761233396171, + "startPosition": "-2383.45", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3511cdbcf3d0c3d1368b042e0c7c5b02061600a28ed3e2a3d8da790fb2d49dbb", + "oid": 210482302818, + "crossed": true, + "fee": "1.21653", + "tid": 1047597712862503, + "cloid": "0x00000000000000000000001643001341", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3862.0", + "sz": "0.333", + "side": "A", + "time": 1761233396171, + "startPosition": "-2384.95", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3511cdbcf3d0c3d1368b042e0c7c5b02061600a28ed3e2a3d8da790fb2d49dbb", + "oid": 210482302818, + "crossed": true, + "fee": "0.270069", + "tid": 593156158068365, + "cloid": "0x00000000000000000000001643001341", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132802.0", + "side": "B", + "time": 1761233398519, + "startPosition": "-1987859316.0", + "dir": "Close Short", + "closedPnl": "236.918768", + "hash": "0xe75bb81488b578f3e8d5042e0c7c7702050800fa23b897c58b24636747b952de", + "oid": 210482342606, + "crossed": true, + "fee": "0.105055", + "tid": 454231482174642, + "cloid": "0x00000000000000000000001644001199", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132827.0", + "side": "B", + "time": 1761233402929, + "startPosition": "-1987726514.0", + "dir": "Close Short", + "closedPnl": "236.963368", + "hash": "0xda316e0cc998f87ddbab042e0c7ca602031b00f2649c174f7dfa195f889cd268", + "oid": 210482428586, + "crossed": true, + "fee": "0.105075", + "tid": 715806208509789, + "cloid": "0x00000000000000000000001644001201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3862.8", + "sz": "2.2118", + "side": "A", + "time": 1761233402929, + "startPosition": "-2385.283", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8d04e4a7e32a3af98e7e042e0c7ca602031c008d7e2d59cb30cd8ffaa22e14e4", + "oid": 210482428587, + "crossed": true, + "fee": "1.794185", + "tid": 181806346482036, + "cloid": "0x00000000000000000000001643001344", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3862.8", + "sz": "0.3773", + "side": "A", + "time": 1761233402929, + "startPosition": "-2387.4948", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8d04e4a7e32a3af98e7e042e0c7ca602031c008d7e2d59cb30cd8ffaa22e14e4", + "oid": 210482428587, + "crossed": true, + "fee": "0.306061", + "tid": 559981096078897, + "cloid": "0x00000000000000000000001643001344", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132732.0", + "side": "B", + "time": 1761233404540, + "startPosition": "-1987593687.0", + "dir": "Close Short", + "closedPnl": "236.661156", + "hash": "0x210a3755ad8ec4662283042e0c7cb702129d003b4881e338c4d2e2a86c829e50", + "oid": 210482464423, + "crossed": true, + "fee": "0.105028", + "tid": 113784015322049, + "cloid": "0x00000000000000000000001644001202", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132696.0", + "side": "B", + "time": 1761233406857, + "startPosition": "-1987460955.0", + "dir": "Close Short", + "closedPnl": "236.729664", + "hash": "0x64499215f968c10165c3042e0c7cd90203e100fb946bdfd308123d68b86c9aec", + "oid": 210482508473, + "crossed": true, + "fee": "0.104971", + "tid": 41050744041283, + "cloid": "0x00000000000000000000001644001203", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "132747.0", + "side": "B", + "time": 1761233408153, + "startPosition": "-1987328259.0", + "dir": "Close Short", + "closedPnl": "236.555154", + "hash": "0x10b2559583038018122c042e0c7ceb0205b1007b1e069eeab47b00e842075a02", + "oid": 210482525006, + "crossed": true, + "fee": "0.105067", + "tid": 842921215836083, + "cloid": "0x00000000000000000000001644001204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132732.0", + "side": "B", + "time": 1761233409639, + "startPosition": "-1987195512.0", + "dir": "Close Short", + "closedPnl": "236.661156", + "hash": "0x9196bb5f5a22b0069310042e0c7cfd020a190044f525ced8355f66b2192689f1", + "oid": 210482536323, + "crossed": true, + "fee": "0.105028", + "tid": 777453743914400, + "cloid": "0x00000000000000000000001644001205", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003765", + "sz": "31151.0", + "side": "B", + "time": 1761233412392, + "startPosition": "-1987062780.0", + "dir": "Close Short", + "closedPnl": "55.635686", + "hash": "0x3050d6e92dc9091a31ca042e0c7d1b02044d00cec8cc27ecd419823beccce304", + "oid": 210482580348, + "crossed": true, + "fee": "0.024629", + "tid": 1052860930421230, + "cloid": "0x00000000000000000000001644001206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "74385.0", + "side": "B", + "time": 1761233412392, + "startPosition": "-1987031629.0", + "dir": "Close Short", + "closedPnl": "132.777225", + "hash": "0x3050d6e92dc9091a31ca042e0c7d1b02044d00cec8cc27ecd419823beccce304", + "oid": 210482580348, + "crossed": true, + "fee": "0.058828", + "tid": 256461337093334, + "cloid": "0x00000000000000000000001644001206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "27266.0", + "side": "B", + "time": 1761233412392, + "startPosition": "-1986957244.0", + "dir": "Close Short", + "closedPnl": "48.66981", + "hash": "0x3050d6e92dc9091a31ca042e0c7d1b02044d00cec8cc27ecd419823beccce304", + "oid": 210482580348, + "crossed": true, + "fee": "0.021563", + "tid": 319714025043371, + "cloid": "0x00000000000000000000001644001206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3862.0", + "sz": "2.588", + "side": "A", + "time": 1761233422794, + "startPosition": "-2387.8721", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xab985fbbf23b8ff6ad12042e0c7d9a02047100a18d3eaec84f610b0eb13f69e1", + "oid": 210482704685, + "crossed": false, + "fee": "0.279855", + "tid": 377196157549025, + "cloid": "0x00000000000000000000001643001349", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3862.1", + "sz": "2.5", + "side": "A", + "time": 1761233425104, + "startPosition": "-2390.4601", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3bdb8cd8193672663d55042e0c7dba0207c100bdb4399138dfa4382ad83a4c50", + "oid": 210482746495, + "crossed": true, + "fee": "2.027602", + "tid": 136792509699331, + "cloid": "0x00000000000000000000001643001350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3862.1", + "sz": "0.0896", + "side": "A", + "time": 1761233425104, + "startPosition": "-2392.9601", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3bdb8cd8193672663d55042e0c7dba0207c100bdb4399138dfa4382ad83a4c50", + "oid": 210482746495, + "crossed": true, + "fee": "0.072669", + "tid": 1108563944337747, + "cloid": "0x00000000000000000000001643001350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3863.3", + "sz": "0.1053", + "side": "A", + "time": 1761233433622, + "startPosition": "-2393.0497", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd0bfaef902106f22d239042e0c7e2902031400de9d138df474885a4bc114490d", + "oid": 210482860879, + "crossed": false, + "fee": "0.01139", + "tid": 41564158708086, + "cloid": "0x00000000000000000000001643001352", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003765", + "sz": "132866.0", + "side": "B", + "time": 1761233438290, + "startPosition": "-1986929978.0", + "dir": "Close Short", + "closedPnl": "237.298676", + "hash": "0x09025b6d7e97de1b0a7c042e0c7e6602022b0053199afcedaccb06c03d9bb805", + "oid": 210482919217, + "crossed": true, + "fee": "0.10505", + "tid": 33424091838656, + "cloid": "0x00000000000000000000001644001210", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132802.0", + "side": "B", + "time": 1761233439968, + "startPosition": "-1986797112.0", + "dir": "Close Short", + "closedPnl": "237.05157", + "hash": "0xd5c045d077a67499d73a042e0c7e7f0206a700b612a9936b7988f12336aa4e84", + "oid": 210482945406, + "crossed": true, + "fee": "0.105027", + "tid": 708681120857845, + "cloid": "0x00000000000000000000001644001211", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132793.0", + "side": "B", + "time": 1761233441384, + "startPosition": "-1986664310.0", + "dir": "Close Short", + "closedPnl": "237.035505", + "hash": "0x9725976f16e18b4a989f042e0c7e9202071c0054b1e4aa1c3aee42c1d5e56535", + "oid": 210482975490, + "crossed": true, + "fee": "0.10502", + "tid": 212589189377504, + "cloid": "0x00000000000000000000001644001212", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132793.0", + "side": "B", + "time": 1761233443182, + "startPosition": "-1986531517.0", + "dir": "Close Short", + "closedPnl": "236.902712", + "hash": "0x264a89fc2e459c9a27c4042e0c7ea802031400e1c948bb6cca13354eed497684", + "oid": 210483011570, + "crossed": true, + "fee": "0.105048", + "tid": 1017813417770950, + "cloid": "0x00000000000000000000001644001213", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "132749.0", + "side": "B", + "time": 1761233444787, + "startPosition": "-1986398724.0", + "dir": "Close Short", + "closedPnl": "236.558718", + "hash": "0xc6b50bc5b56aed99c82e042e0c7ebb0210b700ab506e0c6b6a7db718746ec784", + "oid": 210483036733, + "crossed": true, + "fee": "0.105069", + "tid": 334491471601734, + "cloid": "0x00000000000000000000001644001214", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "132732.0", + "side": "B", + "time": 1761233446315, + "startPosition": "-1986265975.0", + "dir": "Close Short", + "closedPnl": "236.528424", + "hash": "0x885a6cca5bb3c43889d4042e0c7ecf02040000aff6b6e30a2c23181d1ab79e23", + "oid": 210483057735, + "crossed": true, + "fee": "0.105056", + "tid": 397378604491169, + "cloid": "0x00000000000000000000001644001215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132766.0", + "side": "B", + "time": 1761233447631, + "startPosition": "-1986133243.0", + "dir": "Close Short", + "closedPnl": "236.721778", + "hash": "0x6782c1a2cf40e97b68fc042e0c7ee002048c00886a44084d0b4b6cf58e44c366", + "oid": 210483067948, + "crossed": true, + "fee": "0.105055", + "tid": 986594859134230, + "cloid": "0x00000000000000000000001644001216", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132767.0", + "side": "B", + "time": 1761233448805, + "startPosition": "-1986000477.0", + "dir": "Close Short", + "closedPnl": "236.723561", + "hash": "0xdf8033608f051824e0f9042e0c7eef02035d00462a0836f68348deb34e08f20f", + "oid": 210483079911, + "crossed": true, + "fee": "0.105055", + "tid": 792332632800009, + "cloid": "0x00000000000000000000001644001217", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132767.0", + "side": "B", + "time": 1761233450630, + "startPosition": "-1985867710.0", + "dir": "Close Short", + "closedPnl": "236.723561", + "hash": "0x47ea78ecb85764ee4964042e0c7f010201e000d2535a83c0ebb3243f775b3ed8", + "oid": 210483091115, + "crossed": true, + "fee": "0.105055", + "tid": 538092306294268, + "cloid": "0x00000000000000000000001644001218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132775.0", + "side": "B", + "time": 1761233452741, + "startPosition": "-1985734943.0", + "dir": "Close Short", + "closedPnl": "236.8706", + "hash": "0x8b8e80b3f9c570d38d08042e0c7f1b02050d009994c88fa52f572c06b8c94abe", + "oid": 210483128216, + "crossed": true, + "fee": "0.105034", + "tid": 783462006860088, + "cloid": "0x00000000000000000000001644001219", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132819.0", + "side": "B", + "time": 1761233456381, + "startPosition": "-1985602168.0", + "dir": "Close Short", + "closedPnl": "237.081915", + "hash": "0x9061bc030cfee27491db042e0c7f4e02037900e8a7f20146342a6755cbf2bc5f", + "oid": 210483174412, + "crossed": true, + "fee": "0.105041", + "tid": 383389745849615, + "cloid": "0x00000000000000000000001644001221", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132811.0", + "side": "B", + "time": 1761233457772, + "startPosition": "-1985469349.0", + "dir": "Close Short", + "closedPnl": "237.067635", + "hash": "0xb17756a42eb7938fb2f1042e0c7f630202cc0089c9bab261554001f6edbb6d7a", + "oid": 210483193032, + "crossed": true, + "fee": "0.105034", + "tid": 649953548309418, + "cloid": "0x00000000000000000000001644001222", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003766", + "sz": "132793.0", + "side": "B", + "time": 1761233459461, + "startPosition": "-1985336538.0", + "dir": "Close Short", + "closedPnl": "237.035505", + "hash": "0x17e7bc62a1ace2221961042e0c7f780201aa00483ca000f4bbb067b560a0bc0c", + "oid": 210483211343, + "crossed": true, + "fee": "0.10502", + "tid": 714320320823475, + "cloid": "0x00000000000000000000001644001223", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132793.0", + "side": "B", + "time": 1761233461655, + "startPosition": "-1985203745.0", + "dir": "Close Short", + "closedPnl": "236.902712", + "hash": "0x5eab6dad4e8a0ffe6025042e0c7f950204570092e98d2ed0027419000d8de9e9", + "oid": 210483238135, + "crossed": true, + "fee": "0.105048", + "tid": 952452894121307, + "cloid": "0x00000000000000000000001644001224", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132780.0", + "side": "B", + "time": 1761233463036, + "startPosition": "-1985070952.0", + "dir": "Close Short", + "closedPnl": "236.87952", + "hash": "0x5268fde1af29dcea53e2042e0c7fa402026600c74a2cfbbcf631a9346e2db6d4", + "oid": 210483259406, + "crossed": true, + "fee": "0.105038", + "tid": 644395474886468, + "cloid": "0x00000000000000000000001644001225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132746.0", + "side": "B", + "time": 1761233464818, + "startPosition": "-1984938172.0", + "dir": "Close Short", + "closedPnl": "236.686118", + "hash": "0x9a4009ef87caf8419bb9042e0c7fb902095700d522ce17133e08b54246ced22c", + "oid": 210483293690, + "crossed": true, + "fee": "0.105039", + "tid": 677085420752452, + "cloid": "0x00000000000000000000001644001226", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132759.0", + "side": "B", + "time": 1761233467558, + "startPosition": "-1984805426.0", + "dir": "Close Short", + "closedPnl": "236.709297", + "hash": "0x2f35b12d46eb2f3c30af042e0c7fd60204c80012e1ee4e0ed2fe5c8005ef0926", + "oid": 210483331825, + "crossed": true, + "fee": "0.105049", + "tid": 911863138572598, + "cloid": "0x00000000000000000000001644001227", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "132767.0", + "side": "B", + "time": 1761233468849, + "startPosition": "-1984672667.0", + "dir": "Close Short", + "closedPnl": "236.590794", + "hash": "0xfd1ef7a174a6d636fe98042e0c7fe60203b400870fa9f509a0e7a2f433aab021", + "oid": 210483340688, + "crossed": true, + "fee": "0.105083", + "tid": 602807697170822, + "cloid": "0x00000000000000000000001644001228", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003767", + "sz": "132767.0", + "side": "B", + "time": 1761233479029, + "startPosition": "-1984539900.0", + "dir": "Close Short", + "closedPnl": "236.856328", + "hash": "0x14d10efc56faa2df164a042e0c806102027a00e1f1fdc1b1b899ba4f15fe7cc9", + "oid": 210483451069, + "crossed": true, + "fee": "0.105027", + "tid": 706629304148152, + "cloid": "0x00000000000000000000001644001229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003769", + "sz": "132732.0", + "side": "B", + "time": 1761233480576, + "startPosition": "-1984407133.0", + "dir": "Close Short", + "closedPnl": "236.528424", + "hash": "0x75e8632adec3d9f17762042e0c807502039b001079c6f8c319b10e7d9dc7b3dc", + "oid": 210483464789, + "crossed": true, + "fee": "0.105056", + "tid": 799848237888750, + "cloid": "0x00000000000000000000001644001230", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3863.7", + "sz": "2.4841", + "side": "A", + "time": 1761233482126, + "startPosition": "-2393.155", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x30d0d64f03a11b46324a042e0c808c02046600349ea43a18d49981a1c2a4f530", + "oid": 210483315360, + "crossed": false, + "fee": "0.268738", + "tid": 667834606976570, + "cloid": "0x00000000000000000000001643001358", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "5316.0", + "side": "B", + "time": 1761233484121, + "startPosition": "-1984274401.0", + "dir": "Close Short", + "closedPnl": "9.467796", + "hash": "0x555cfb0f55e8cde856d6042e0c80a40206b200f4f0ebecbaf925a66214eca7d2", + "oid": 210483492169, + "crossed": true, + "fee": "0.004208", + "tid": 209580628823157, + "cloid": "0x00000000000000000000001644001231", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "3290.0", + "side": "B", + "time": 1761233489630, + "startPosition": "-1984269085.0", + "dir": "Close Short", + "closedPnl": "5.85949", + "hash": "0xe9637c7deeb8492eeadd042e0c80e50203c2006389bb68008d2c27d0adbc2319", + "oid": 210483492169, + "crossed": false, + "fee": "0.000347", + "tid": 280594161851459, + "cloid": "0x00000000000000000000001644001231", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3865.1", + "sz": "1.5", + "side": "A", + "time": 1761233492815, + "startPosition": "-2395.6391", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x49d0601a2ad952264b4a042e0c810f02088200ffc5dc70f8ed990b6ce9dd2c10", + "oid": 210483604471, + "crossed": true, + "fee": "1.217506", + "tid": 1069498640505593, + "cloid": "0x00000000000000000000001643001360", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3865.1", + "sz": "1.0883", + "side": "A", + "time": 1761233492815, + "startPosition": "-2397.1391", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x49d0601a2ad952264b4a042e0c810f02088200ffc5dc70f8ed990b6ce9dd2c10", + "oid": 210483604471, + "crossed": true, + "fee": "0.883341", + "tid": 217070449276845, + "cloid": "0x00000000000000000000001643001360", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3865.4", + "sz": "1.5", + "side": "A", + "time": 1761233497814, + "startPosition": "-2398.2274", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x44728592203ae94f45ec042e0c814d0206920077bb3e0821e83b30e4df3ec339", + "oid": 210483679068, + "crossed": true, + "fee": "1.217601", + "tid": 43045138449750, + "cloid": "0x00000000000000000000001643001362", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3865.4", + "sz": "1.0871", + "side": "A", + "time": 1761233497814, + "startPosition": "-2399.7274", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x44728592203ae94f45ec042e0c814d0206920077bb3e0821e83b30e4df3ec339", + "oid": 210483679068, + "crossed": true, + "fee": "0.882436", + "tid": 581631573569607, + "cloid": "0x00000000000000000000001643001362", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003775", + "sz": "66242.0", + "side": "B", + "time": 1761233500764, + "startPosition": "-1984265795.0", + "dir": "Close Short", + "closedPnl": "117.645792", + "hash": "0xba98d6d246f2ae40bc12042e0c81700201ef00b7e1f5cd125e61822505f6882b", + "oid": 210483730886, + "crossed": true, + "fee": "0.052513", + "tid": 39358838716982, + "cloid": "0x00000000000000000000001644001233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003776", + "sz": "13300.0", + "side": "B", + "time": 1761233500764, + "startPosition": "-1984199553.0", + "dir": "Close Short", + "closedPnl": "23.6075", + "hash": "0xba98d6d246f2ae40bc12042e0c81700201ef00b7e1f5cd125e61822505f6882b", + "oid": 210483730886, + "crossed": true, + "fee": "0.010546", + "tid": 599693730733853, + "cloid": "0x00000000000000000000001644001233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003776", + "sz": "44513.0", + "side": "B", + "time": 1761233500764, + "startPosition": "-1984186253.0", + "dir": "Close Short", + "closedPnl": "79.010575", + "hash": "0xba98d6d246f2ae40bc12042e0c81700201ef00b7e1f5cd125e61822505f6882b", + "oid": 210483730886, + "crossed": true, + "fee": "0.035297", + "tid": 286412780607818, + "cloid": "0x00000000000000000000001644001233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "132464.0", + "side": "B", + "time": 1761233505059, + "startPosition": "-1984141740.0", + "dir": "Close Short", + "closedPnl": "234.991136", + "hash": "0x3421cc43b05c8fa7359b042e0c81ad02030400294b5fae79d7ea77966f506991", + "oid": 210483804866, + "crossed": true, + "fee": "0.105066", + "tid": 460258758595401, + "cloid": "0x00000000000000000000001644001235", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3866.6", + "sz": "0.0239", + "side": "A", + "time": 1761233506489, + "startPosition": "-2400.8145", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x594bc73b66f3f9a45ac5042e0c81c20202d5002101f71876fd14728e25f7d38e", + "oid": 210483792247, + "crossed": false, + "fee": "0.002587", + "tid": 380159115931809, + "cloid": "0x00000000000000000000001643001364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3866.6", + "sz": "0.005", + "side": "A", + "time": 1761233507081, + "startPosition": "-2400.8384", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210483792247, + "crossed": false, + "fee": "0.000541", + "tid": 1039193502306319, + "cloid": "0x00000000000000000000001643001364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3866.6", + "sz": "0.017", + "side": "A", + "time": 1761233507401, + "startPosition": "-2400.8434", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x209eb84329560afa2218042e0c81cc0202390028c45929ccc4676395e859e4e4", + "oid": 210483792247, + "crossed": false, + "fee": "0.00184", + "tid": 174079082400986, + "cloid": "0x00000000000000000000001643001364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3866.6", + "sz": "0.0182", + "side": "A", + "time": 1761233507503, + "startPosition": "-2400.8604", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x9009d631d217cdbc9183042e0c81cd0206e000176d1aec8e33d28184911ba7a7", + "oid": 210483792247, + "crossed": false, + "fee": "0.00197", + "tid": 1125301888425224, + "cloid": "0x00000000000000000000001643001364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3866.6", + "sz": "0.05", + "side": "A", + "time": 1761233507883, + "startPosition": "-2400.8786", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x25d8c085a3db75752752042e0c81d2020583006b3ede9447c9a16bd862df4f5f", + "oid": 210483792247, + "crossed": false, + "fee": "0.005413", + "tid": 1121535663117417, + "cloid": "0x00000000000000000000001643001364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3866.6", + "sz": "0.0476", + "side": "A", + "time": 1761233508045, + "startPosition": "-2400.9286", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210483792247, + "crossed": false, + "fee": "0.005153", + "tid": 345971894529, + "cloid": "0x00000000000000000000001643001364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3866.6", + "sz": "2.0", + "side": "A", + "time": 1761233508284, + "startPosition": "-2400.9762", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x9c4915ca85ffd06d9dc2042e0c81d802035700b020f2ef3f4011c11d44f3aa58", + "oid": 210483792247, + "crossed": false, + "fee": "0.216529", + "tid": 1038232947480963, + "cloid": "0x00000000000000000000001643001364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3866.6", + "sz": "0.018", + "side": "A", + "time": 1761233508609, + "startPosition": "-2402.9762", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb7cba8f872e75f72b945042e0c81dc01ea00c0de0dea7e445b94544b31eb395d", + "oid": 210483792247, + "crossed": false, + "fee": "0.001948", + "tid": 1056639815797502, + "cloid": "0x00000000000000000000001643001364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "132380.0", + "side": "B", + "time": 1761233508790, + "startPosition": "-1984009276.0", + "dir": "Close Short", + "closedPnl": "234.84212", + "hash": "0xdd98855bcfcba4eadf12042e0c81df02049900416acec3bc816130ae8ecf7ed5", + "oid": 210483845339, + "crossed": true, + "fee": "0.104999", + "tid": 455726176557144, + "cloid": "0x00000000000000000000001644001236", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003776", + "sz": "132450.0", + "side": "B", + "time": 1761233510388, + "startPosition": "-1983876896.0", + "dir": "Close Short", + "closedPnl": "235.09875", + "hash": "0x8aaf4da6826d076f8c29042e0c81f1020779008c1d6026412e77f8f94160e15a", + "oid": 210483868137, + "crossed": true, + "fee": "0.105027", + "tid": 346976897849316, + "cloid": "0x00000000000000000000001644001237", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003776", + "sz": "132471.0", + "side": "B", + "time": 1761233515393, + "startPosition": "-1983744446.0", + "dir": "Close Short", + "closedPnl": "235.136025", + "hash": "0xabb51db9d1551167ad2e042e0c8233020276009f6c5830394f7dc90c9058eb52", + "oid": 210483925825, + "crossed": true, + "fee": "0.105044", + "tid": 770158778599100, + "cloid": "0x00000000000000000000001644001239", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "132380.0", + "side": "B", + "time": 1761233519016, + "startPosition": "-1983611975.0", + "dir": "Close Short", + "closedPnl": "234.84212", + "hash": "0x846646e59d1eaeac85e0042e0c826902030400cb3811cd7e282ef2385c128897", + "oid": 210483959108, + "crossed": true, + "fee": "0.104999", + "tid": 563306694284128, + "cloid": "0x00000000000000000000001644001240", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003778", + "sz": "132371.0", + "side": "B", + "time": 1761233522197, + "startPosition": "-1983479595.0", + "dir": "Close Short", + "closedPnl": "234.693783", + "hash": "0xa6f31b4688c9e882a86c042e0c8293020825002c23cd07544abbc69947cdc26d", + "oid": 210484016930, + "crossed": true, + "fee": "0.10502", + "tid": 689782947799707, + "cloid": "0x00000000000000000000001644001241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "132310.0", + "side": "B", + "time": 1761233524106, + "startPosition": "-1983347224.0", + "dir": "Close Short", + "closedPnl": "234.32101", + "hash": "0x7f800f7e4f10540080f9042e0c82ad0202d00063ea1372d22348bad10e142deb", + "oid": 210484037655, + "crossed": true, + "fee": "0.105027", + "tid": 987826766535612, + "cloid": "0x00000000000000000000001644001242", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "8050.0", + "side": "B", + "time": 1761233525559, + "startPosition": "-1983214914.0", + "dir": "Close Short", + "closedPnl": "14.25655", + "hash": "0xc8d25039b9c0d55fca4c042e0c82bd020363001f54c3f4316c9afb8c78c4af4a", + "oid": 210484058494, + "crossed": true, + "fee": "0.00639", + "tid": 741072731766249, + "cloid": "0x00000000000000000000001644001243", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "87430.0", + "side": "B", + "time": 1761233525559, + "startPosition": "-1983206864.0", + "dir": "Close Short", + "closedPnl": "154.83853", + "hash": "0xc8d25039b9c0d55fca4c042e0c82bd020363001f54c3f4316c9afb8c78c4af4a", + "oid": 210484058494, + "crossed": true, + "fee": "0.069401", + "tid": 797974024111927, + "cloid": "0x00000000000000000000001644001243", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "36865.0", + "side": "B", + "time": 1761233525559, + "startPosition": "-1983119434.0", + "dir": "Close Short", + "closedPnl": "65.287915", + "hash": "0xc8d25039b9c0d55fca4c042e0c82bd020363001f54c3f4316c9afb8c78c4af4a", + "oid": 210484058494, + "crossed": true, + "fee": "0.029263", + "tid": 91302460046964, + "cloid": "0x00000000000000000000001644001243", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "95910.0", + "side": "B", + "time": 1761233527105, + "startPosition": "-1983082569.0", + "dir": "Close Short", + "closedPnl": "169.85661", + "hash": "0xafb483d5891269d5b12e042e0c82cf020b4600bb241588a7537d2f28481643c0", + "oid": 210484096389, + "crossed": true, + "fee": "0.076133", + "tid": 1053567475790161, + "cloid": "0x00000000000000000000001644001244", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "36435.0", + "side": "B", + "time": 1761233527105, + "startPosition": "-1982986659.0", + "dir": "Close Short", + "closedPnl": "64.526385", + "hash": "0xafb483d5891269d5b12e042e0c82cf020b4600bb241588a7537d2f28481643c0", + "oid": 210484096389, + "crossed": true, + "fee": "0.028922", + "tid": 939384738718994, + "cloid": "0x00000000000000000000001644001244", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3868.4", + "sz": "0.4071", + "side": "A", + "time": 1761233528945, + "startPosition": "-2402.9942", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x25f7bfce2b3503c12771042e0c82e202061900b3c6382293c9c06b20ea38ddab", + "oid": 210484145511, + "crossed": true, + "fee": "0.330713", + "tid": 965539636508054, + "cloid": "0x00000000000000000000001643001368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3869.0", + "sz": "2.5849", + "side": "A", + "time": 1761233534649, + "startPosition": "-2403.4013", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x95ceafe60966f9539748042e0c832c02040200cba46a182539975b38c86ad33e", + "oid": 210484191499, + "crossed": false, + "fee": "0.280027", + "tid": 36200248264509, + "cloid": "0x00000000000000000000001643001369", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3868.7", + "sz": "2.5845", + "side": "A", + "time": 1761233545914, + "startPosition": "-2405.9862", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xef584c1a55a47904f0d2042e0c83b702036f00fff0a797d69320f76d14a852ef", + "oid": 210484359953, + "crossed": false, + "fee": "0.279962", + "tid": 653732116430492, + "cloid": "0x00000000000000000000001643001372", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.2", + "sz": "2.5829", + "side": "A", + "time": 1761233555922, + "startPosition": "-2408.5707", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd1d92d640b9d60f7d352042e0c84300205090049a6907fc975a1d8b6ca913ae2", + "oid": 210484557722, + "crossed": false, + "fee": "0.279969", + "tid": 656258932421741, + "cloid": "0x00000000000000000000001643001375", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.3", + "sz": "2.583", + "side": "A", + "time": 1761233564970, + "startPosition": "-2411.1536", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xde01774e390faed5df7b042e0c849c0203dc0033d402cda781ca22a0f80388c0", + "oid": 210484729977, + "crossed": true, + "fee": "2.099909", + "tid": 96815975870318, + "cloid": "0x00000000000000000000001643001379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.5", + "sz": "2.5829", + "side": "A", + "time": 1761233578318, + "startPosition": "-2413.7366", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xdc52e80966617617ddcc042e0c854202096400ef016494e9801b935c25655002", + "oid": 210484909383, + "crossed": false, + "fee": "0.279991", + "tid": 337143806923415, + "cloid": "0x00000000000000000000001643001383", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3873.0", + "sz": "2.5823", + "side": "A", + "time": 1761233580344, + "startPosition": "-2416.3195", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x54696b5ba8df0e9555e3042e0c855b0210e6004143d22d67f83216ae67d2e87f", + "oid": 210484947389, + "crossed": false, + "fee": "0.280034", + "tid": 307333884566765, + "cloid": "0x00000000000000000000001643001384", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.4", + "sz": "2.2386", + "side": "A", + "time": 1761233581945, + "startPosition": "-2418.9018", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xdd58534015b9b02cded2042e0c8572020a310025b0bccefe8120fe92d4bd8a17", + "oid": 210484997337, + "crossed": true, + "fee": "1.821848", + "tid": 1078951338533197, + "cloid": "0x00000000000000000000001643001385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.4", + "sz": "0.3424", + "side": "A", + "time": 1761233581945, + "startPosition": "-2421.1404", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xdd58534015b9b02cded2042e0c8572020a310025b0bccefe8120fe92d4bd8a17", + "oid": 210484997337, + "crossed": true, + "fee": "0.278656", + "tid": 442939483268696, + "cloid": "0x00000000000000000000001643001385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "21259.0", + "side": "B", + "time": 1761233583690, + "startPosition": "-1982950224.0", + "dir": "Close Short", + "closedPnl": "37.522135", + "hash": "0x881774ebb4ac1d0d8991042e0c858b0202bb00d14faf3bdf2be0203e73aff6f8", + "oid": 210485031720, + "crossed": true, + "fee": "0.016902", + "tid": 1121847378118645, + "cloid": "0x00000000000000000000001644001262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "111016.0", + "side": "B", + "time": 1761233583690, + "startPosition": "-1982928965.0", + "dir": "Close Short", + "closedPnl": "195.832224", + "hash": "0x881774ebb4ac1d0d8991042e0c858b0202bb00d14faf3bdf2be0203e73aff6f8", + "oid": 210485031720, + "crossed": true, + "fee": "0.088287", + "tid": 1110012720538868, + "cloid": "0x00000000000000000000001644001262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "82770.0", + "side": "B", + "time": 1761233585382, + "startPosition": "-1982817949.0", + "dir": "Close Short", + "closedPnl": "146.00628", + "hash": "0x004d018b67b0629001c6042e0c859f0204b0007102b38162a415acde26b43c7a", + "oid": 210485052544, + "crossed": true, + "fee": "0.065824", + "tid": 1006649433604844, + "cloid": "0x00000000000000000000001644001263", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "49336.0", + "side": "B", + "time": 1761233585382, + "startPosition": "-1982735179.0", + "dir": "Close Short", + "closedPnl": "87.028704", + "hash": "0x004d018b67b0629001c6042e0c859f0204b0007102b38162a415acde26b43c7a", + "oid": 210485052544, + "crossed": true, + "fee": "0.039235", + "tid": 153077838828667, + "cloid": "0x00000000000000000000001644001263", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003785", + "sz": "132196.0", + "side": "B", + "time": 1761233589275, + "startPosition": "-1982685843.0", + "dir": "Close Short", + "closedPnl": "233.458136", + "hash": "0x4020090759c506864199042e0c85d00204c400ecf4c82558e3e8b45a18c8e070", + "oid": 210485136651, + "crossed": true, + "fee": "0.105075", + "tid": 703644080838150, + "cloid": "0x00000000000000000000001644001265", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3872.2", + "sz": "0.005", + "side": "A", + "time": 1761233597065, + "startPosition": "-2421.4828", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210485250194, + "crossed": false, + "fee": "0.000542", + "tid": 276952558667838, + "cloid": "0x00000000000000000000001643001388", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "132240.0", + "side": "B", + "time": 1761233605224, + "startPosition": "-1982553647.0", + "dir": "Close Short", + "closedPnl": "234.19704", + "hash": "0x487b4ae506f2a6b849f5042e0c869902046200caa1f5c58aec43f637c5f680a2", + "oid": 210485328026, + "crossed": false, + "fee": "0.013996", + "tid": 408902080978369, + "cloid": "0x00000000000000000000001644001269", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.9", + "sz": "2.576", + "side": "A", + "time": 1761233607636, + "startPosition": "-2421.4878", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2e0a79b511c4e43a2f84042e0c86b2020c5a009aacc8030cd1d32507d0c8be24", + "oid": 210485408591, + "crossed": true, + "fee": "2.094543", + "tid": 20547969187545, + "cloid": "0x00000000000000000000001643001391", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.9", + "sz": "2.583", + "side": "A", + "time": 1761233609320, + "startPosition": "-2424.0638", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfa90d05d55412c7bfc0a042e0c86c60201ee0042f0444b4e9e597bb014450666", + "oid": 210485425862, + "crossed": true, + "fee": "2.100234", + "tid": 331683553214884, + "cloid": "0x00000000000000000000001643001392", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.9", + "sz": "2.5831", + "side": "A", + "time": 1761233611514, + "startPosition": "-2426.6468", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x4a9a0740537ffff44c13042e0c86e202033d0025ee731ec6ee62b2931273d9de", + "oid": 210485442376, + "crossed": true, + "fee": "2.100316", + "tid": 164899574380775, + "cloid": "0x00000000000000000000001643001393", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.3", + "sz": "2.2846", + "side": "A", + "time": 1761233616281, + "startPosition": "-2429.2299", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb8047f9e00820d44b97e042e0c871a02061e00839b852c165bcd2af0bf85e72f", + "oid": 210485505071, + "crossed": true, + "fee": "1.859237", + "tid": 980218354672365, + "cloid": "0x00000000000000000000001643001395", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.3", + "sz": "0.2983", + "side": "A", + "time": 1761233616281, + "startPosition": "-2431.5145", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb8047f9e00820d44b97e042e0c871a02061e00839b852c165bcd2af0bf85e72f", + "oid": 210485505071, + "crossed": true, + "fee": "0.24276", + "tid": 463923136623156, + "cloid": "0x00000000000000000000001643001395", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132240.0", + "side": "B", + "time": 1761233616880, + "startPosition": "-1982421407.0", + "dir": "Close Short", + "closedPnl": "233.27136", + "hash": "0x3e971e5c00e3b2ad4010042e0c87220207ec00419be6d17fe25fc9aebfe78c97", + "oid": 210485518367, + "crossed": true, + "fee": "0.105166", + "tid": 330573632195412, + "cloid": "0x00000000000000000000001644001272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.9", + "sz": "2.5804", + "side": "A", + "time": 1761233617567, + "startPosition": "-2431.8128", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe7803127fd160e2de8f9042e0c872a02077f000d98192cff8b48dc7abc19e818", + "oid": 210485533431, + "crossed": true, + "fee": "2.100288", + "tid": 962324554873425, + "cloid": "0x00000000000000000000001643001396", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "132034.0", + "side": "B", + "time": 1761233618335, + "startPosition": "-1982289167.0", + "dir": "Close Short", + "closedPnl": "232.643908", + "hash": "0x49f17057e1a0b4114b6b042e0c8733020fc3003d7ca3d2e3edba1baaa0a48dfb", + "oid": 210485550950, + "crossed": true, + "fee": "0.105058", + "tid": 516085796376334, + "cloid": "0x00000000000000000000001644001273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132078.0", + "side": "B", + "time": 1761233619835, + "startPosition": "-1982157133.0", + "dir": "Close Short", + "closedPnl": "233.11767", + "hash": "0x044b2b91ed04e34b05c4042e0c874502040f00778808021da813d6e4ac08bd35", + "oid": 210485578328, + "crossed": true, + "fee": "0.105009", + "tid": 297831072434906, + "cloid": "0x00000000000000000000001644001274", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132100.0", + "side": "B", + "time": 1761233621640, + "startPosition": "-1982025055.0", + "dir": "Close Short", + "closedPnl": "233.1565", + "hash": "0xf05030dd0a876c24f1c9042e0c875e02076a00c2a58a8af79418dc2fc98b460f", + "oid": 210485606185, + "crossed": true, + "fee": "0.105027", + "tid": 402191469630999, + "cloid": "0x00000000000000000000001644001275", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132066.0", + "side": "B", + "time": 1761233622886, + "startPosition": "-1981892955.0", + "dir": "Close Short", + "closedPnl": "233.09649", + "hash": "0xda8167a749f12dd0dbfb042e0c87710209da008ce4f44ca27e4a12fa08f507bb", + "oid": 210485626226, + "crossed": true, + "fee": "0.105", + "tid": 721172898113029, + "cloid": "0x00000000000000000000001644001276", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3876.9", + "sz": "1.438", + "side": "A", + "time": 1761233623729, + "startPosition": "-2434.3932", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x06474a66eb9d1a2f07c1042e0c877d0203c8004c86903901aa0ff5b9aa90f419", + "oid": 210485648923, + "crossed": true, + "fee": "1.170746", + "tid": 815193893777016, + "cloid": "0x00000000000000000000001643001398", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3876.9", + "sz": "1.1415", + "side": "A", + "time": 1761233623729, + "startPosition": "-2435.8312", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x06474a66eb9d1a2f07c1042e0c877d0203c8004c86903901aa0ff5b9aa90f419", + "oid": 210485648923, + "crossed": true, + "fee": "0.929351", + "tid": 926834969767069, + "cloid": "0x00000000000000000000001643001398", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131961.0", + "side": "B", + "time": 1761233625464, + "startPosition": "-1981760889.0", + "dir": "Close Short", + "closedPnl": "232.383321", + "hash": "0xd7e6816f43bc47dbd960042e0c87910207360054debf66ad7baf2cc202b021c6", + "oid": 210485680270, + "crossed": true, + "fee": "0.105027", + "tid": 751874362063992, + "cloid": "0x00000000000000000000001644001277", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3878.5", + "sz": "0.0133", + "side": "A", + "time": 1761233626141, + "startPosition": "-2436.9727", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xbed6e6d3b1d46280c050042e0c879b0214b600b94cd78152629f922670d83c6b", + "oid": 210485680299, + "crossed": false, + "fee": "0.001444", + "tid": 120740220709655, + "cloid": "0x00000000000000000000001643001399", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3878.5", + "sz": "0.0133", + "side": "A", + "time": 1761233626141, + "startPosition": "-2436.986", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x71aa5d6ecb65a4fc7324042e0c879b0214b700546668c3ce157308c18a697ee7", + "oid": 210485680299, + "crossed": false, + "fee": "0.001444", + "tid": 893871193919703, + "cloid": "0x00000000000000000000001643001399", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3878.5", + "sz": "0.0133", + "side": "A", + "time": 1761233626141, + "startPosition": "-2436.9993", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd7514aa4fe8829f3d8cb042e0c879b0214b9008a998b48c57b19f5f7bd8c03de", + "oid": 210485680299, + "crossed": false, + "fee": "0.001444", + "tid": 698684391876446, + "cloid": "0x00000000000000000000001643001399", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3878.5", + "sz": "0.0133", + "side": "A", + "time": 1761233626141, + "startPosition": "-2437.0126", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8a24c14018196c6f8b9e042e0c879b0214ba0025b31c8b412ded6c92d71d465a", + "oid": 210485680299, + "crossed": false, + "fee": "0.001444", + "tid": 463846894094898, + "cloid": "0x00000000000000000000001643001399", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3878.5", + "sz": "0.178", + "side": "A", + "time": 1761233626141, + "startPosition": "-2437.0259", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x97670b3e63a2fe6198e0042e0c879b0214db0023fea61d333b2fb69122a6d84c", + "oid": 210485680299, + "crossed": false, + "fee": "0.01933", + "tid": 860777441185820, + "cloid": "0x00000000000000000000001643001399", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3878.5", + "sz": "0.0133", + "side": "A", + "time": 1761233626141, + "startPosition": "-2437.2039", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x48875413c74036234a01042e0c879b02152500f9624354f5ec4fff668644100d", + "oid": 210485680299, + "crossed": false, + "fee": "0.001444", + "tid": 952840609749476, + "cloid": "0x00000000000000000000001643001399", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3878.5", + "sz": "0.17", + "side": "A", + "time": 1761233626333, + "startPosition": "-2437.2172", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x4c6d257a341a90b04de6042e0c879d0208f0005fcf1daf82f035d0ccf31e6a9a", + "oid": 210485680299, + "crossed": false, + "fee": "0.018461", + "tid": 569790367670001, + "cloid": "0x00000000000000000000001643001399", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3878.5", + "sz": "0.178", + "side": "A", + "time": 1761233626333, + "startPosition": "-2437.3872", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc313ba9fb32a0ec4c48d042e0c879d02090900854e2d2d9666dc65f2722de8af", + "oid": 210485680299, + "crossed": false, + "fee": "0.01933", + "tid": 708665955852553, + "cloid": "0x00000000000000000000001643001399", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3878.5", + "sz": "0.0051", + "side": "A", + "time": 1761233627018, + "startPosition": "-2437.5652", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210485680299, + "crossed": false, + "fee": "0.000553", + "tid": 906317321190389, + "cloid": "0x00000000000000000000001643001399", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131995.0", + "side": "B", + "time": 1761233627185, + "startPosition": "-1981628928.0", + "dir": "Close Short", + "closedPnl": "232.443195", + "hash": "0xc2676f0c111cececc3e1042e0c87a8020bc900f1ac100bbe66301a5ed010c6d7", + "oid": 210485712532, + "crossed": true, + "fee": "0.105054", + "tid": 92888648333266, + "cloid": "0x00000000000000000000001644001278", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3879.6", + "sz": "1.9809", + "side": "A", + "time": 1761233628654, + "startPosition": "-2437.5703", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc5a92eee8cb3689fc722042e0c87bc02162f00d427b687716971da414bb7428a", + "oid": 210485748512, + "crossed": false, + "fee": "0.215182", + "tid": 573327418584187, + "cloid": "0x00000000000000000000001643001400", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131985.0", + "side": "B", + "time": 1761233634184, + "startPosition": "-1981496933.0", + "dir": "Close Short", + "closedPnl": "232.425585", + "hash": "0xa9ac4e3cb8e55223ab26042e0c87fc020daa002253e870f54d74f98f77e92c0e", + "oid": 210485841843, + "crossed": true, + "fee": "0.105046", + "tid": 43555638692487, + "cloid": "0x00000000000000000000001644001281", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131996.0", + "side": "B", + "time": 1761233635659, + "startPosition": "-1981364948.0", + "dir": "Close Short", + "closedPnl": "232.576952", + "hash": "0x4ec2422870726daa503b042e0c8810020f27000e0b758c7cf28aed7b2f764794", + "oid": 210485869171, + "crossed": true, + "fee": "0.105027", + "tid": 1065366329157988, + "cloid": "0x00000000000000000000001644001282", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "132065.0", + "side": "B", + "time": 1761233637194, + "startPosition": "-1981232952.0", + "dir": "Close Short", + "closedPnl": "232.69853", + "hash": "0xb484c4e589dc8af5b5fe042e0c8825020a0400cb24dfa9c7584d703848d064e0", + "oid": 210485903605, + "crossed": true, + "fee": "0.105082", + "tid": 1018375567213103, + "cloid": "0x00000000000000000000001644001283", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3880.0", + "sz": "0.7917", + "side": "A", + "time": 1761233641609, + "startPosition": "-2439.5512", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb360f6a37e1ebb94b4da042e0c885a02101f00891911da665729a1f63d12957f", + "oid": 210485977819, + "crossed": true, + "fee": "0.645077", + "tid": 818026614032200, + "cloid": "0x00000000000000000000001643001405", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3880.0", + "sz": "1.785", + "side": "A", + "time": 1761233641609, + "startPosition": "-2440.3429", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb360f6a37e1ebb94b4da042e0c885a02101f00891911da665729a1f63d12957f", + "oid": 210485977819, + "crossed": true, + "fee": "1.454417", + "tid": 720547924529413, + "cloid": "0x00000000000000000000001643001405", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131961.0", + "side": "B", + "time": 1761233644533, + "startPosition": "-1981100887.0", + "dir": "Close Short", + "closedPnl": "232.383321", + "hash": "0xf52c467f6f024e52f6a6042e0c887d02091700650a056d2598f4f1d22e06283d", + "oid": 210486035134, + "crossed": true, + "fee": "0.105027", + "tid": 1072213437946802, + "cloid": "0x00000000000000000000001644001285", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3880.5", + "sz": "0.0529", + "side": "A", + "time": 1761233647877, + "startPosition": "-2442.1279", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf6288b21c1612658f7a2042e0c88a6020aa000075c64452b99f1367480650043", + "oid": 210486077520, + "crossed": false, + "fee": "0.005747", + "tid": 528436797816330, + "cloid": "0x00000000000000000000001643001407", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "131926.0", + "side": "B", + "time": 1761233648782, + "startPosition": "-1980968926.0", + "dir": "Close Short", + "closedPnl": "232.717464", + "hash": "0xb6978e7f7fbe96afb811042e0c88b102035600651ab1b5815a6039d23eb2709a", + "oid": 210486109404, + "crossed": true, + "fee": "0.104916", + "tid": 117977618495419, + "cloid": "0x00000000000000000000001644001287", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3877.4", + "sz": "2.5234", + "side": "A", + "time": 1761233650561, + "startPosition": "-2442.1808", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6f651bbd57c7c6e470de042e0c88c5020c1b00a2f2cae5b6132dc71016cba0cf", + "oid": 210486140648, + "crossed": false, + "fee": "0.273958", + "tid": 720865625542548, + "cloid": "0x00000000000000000000001643001408", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3879.8", + "sz": "2.578", + "side": "A", + "time": 1761233652904, + "startPosition": "-2444.7042", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xdcf2112effdf95eade6b042e0c88de02090700149ad2b4bc80babc81bed36fd5", + "oid": 210486198790, + "crossed": true, + "fee": "2.100446", + "tid": 1040876546516163, + "cloid": "0x00000000000000000000001643001409", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3880.4", + "sz": "1.5", + "side": "A", + "time": 1761233657796, + "startPosition": "-2447.2822", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xaa3c0a7064acd6bdabb5042e0c89160208c40055ffaff58f4e04b5c323a0b0a8", + "oid": 210486280642, + "crossed": true, + "fee": "1.222326", + "tid": 837477684099351, + "cloid": "0x00000000000000000000001643001411", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3880.4", + "sz": "1.0779", + "side": "A", + "time": 1761233657796, + "startPosition": "-2448.7822", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xaa3c0a7064acd6bdabb5042e0c89160208c40055ffaff58f4e04b5c323a0b0a8", + "oid": 210486280642, + "crossed": true, + "fee": "0.878363", + "tid": 642027102760117, + "cloid": "0x00000000000000000000001643001411", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "132125.0", + "side": "B", + "time": 1761233660381, + "startPosition": "-1980837000.0", + "dir": "Close Short", + "closedPnl": "231.615125", + "hash": "0xfa4eab7b5eabf092fbc8042e0c89390203750060f9af0f659e1756ce1dafca7d", + "oid": 210486328672, + "crossed": true, + "fee": "0.10538", + "tid": 111985082249862, + "cloid": "0x00000000000000000000001644001291", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131717.0", + "side": "B", + "time": 1761233662287, + "startPosition": "-1980704875.0", + "dir": "Close Short", + "closedPnl": "230.636467", + "hash": "0x092913883b23ac020aa2042e0c89540204b6006dd626cad4acf1bedafa2785ec", + "oid": 210486361297, + "crossed": true, + "fee": "0.10511", + "tid": 307052164296032, + "cloid": "0x00000000000000000000001644001292", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3881.3", + "sz": "0.0515", + "side": "A", + "time": 1761233663454, + "startPosition": "-2449.8601", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf863834608572fa1f9dd042e0c89640205b1002ba35a4e749c2c2e98c75b098c", + "oid": 210486380877, + "crossed": true, + "fee": "0.041976", + "tid": 115992359120408, + "cloid": "0x00000000000000000000001643001413", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3881.3", + "sz": "1.5", + "side": "A", + "time": 1761233663454, + "startPosition": "-2449.9116", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf863834608572fa1f9dd042e0c89640205b1002ba35a4e749c2c2e98c75b098c", + "oid": 210486380877, + "crossed": true, + "fee": "1.222609", + "tid": 511388228382039, + "cloid": "0x00000000000000000000001643001413", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3881.3", + "sz": "1.0247", + "side": "A", + "time": 1761233663454, + "startPosition": "-2451.4116", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf863834608572fa1f9dd042e0c89640205b1002ba35a4e749c2c2e98c75b098c", + "oid": 210486380877, + "crossed": true, + "fee": "0.835205", + "tid": 195641647802929, + "cloid": "0x00000000000000000000001643001413", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131662.0", + "side": "B", + "time": 1761233663715, + "startPosition": "-1980573158.0", + "dir": "Close Short", + "closedPnl": "230.671824", + "hash": "0x688d5bbadc744a816a07042e0c896802032f00a0777769530c56070d9b78246c", + "oid": 210486387490, + "crossed": true, + "fee": "0.105038", + "tid": 318073742602107, + "cloid": "0x00000000000000000000001644001293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131683.0", + "side": "B", + "time": 1761233665067, + "startPosition": "-1980441496.0", + "dir": "Close Short", + "closedPnl": "230.708616", + "hash": "0x899284349abf2b3b8b0c042e0c897a0204d9001a35b24a0d2d5b2f8759b30526", + "oid": 210486408004, + "crossed": true, + "fee": "0.105055", + "tid": 980956844267622, + "cloid": "0x00000000000000000000001644001294", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "34194.0", + "side": "B", + "time": 1761233666894, + "startPosition": "-1980309813.0", + "dir": "Close Short", + "closedPnl": "59.907888", + "hash": "0xeb28c716e5bcdecaeca2042e0c899002061b00fc80bffd9c8ef17269a4b0b8b5", + "oid": 210486435242, + "crossed": true, + "fee": "0.027279", + "tid": 339524309480757, + "cloid": "0x00000000000000000000001644001295", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "97494.0", + "side": "B", + "time": 1761233666894, + "startPosition": "-1980275619.0", + "dir": "Close Short", + "closedPnl": "170.809488", + "hash": "0xeb28c716e5bcdecaeca2042e0c899002061b00fc80bffd9c8ef17269a4b0b8b5", + "oid": 210486435242, + "crossed": true, + "fee": "0.077779", + "tid": 572898164154452, + "cloid": "0x00000000000000000000001644001295", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131691.0", + "side": "B", + "time": 1761233668513, + "startPosition": "-1980178125.0", + "dir": "Close Short", + "closedPnl": "230.854323", + "hash": "0x22f547660a22ee65246f042e0c89a2020520004ba5260d37c6bdf2b8c926c84f", + "oid": 210486465853, + "crossed": true, + "fee": "0.105034", + "tid": 552974701314639, + "cloid": "0x00000000000000000000001644001296", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131706.0", + "side": "B", + "time": 1761233669993, + "startPosition": "-1980046434.0", + "dir": "Close Short", + "closedPnl": "230.880618", + "hash": "0xa109dc48d33551e8a283042e0c89b502093a002e6e3870ba44d2879b92392bd3", + "oid": 210486497746, + "crossed": true, + "fee": "0.105046", + "tid": 452113751446484, + "cloid": "0x00000000000000000000001644001297", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "128303.0", + "side": "B", + "time": 1761233672073, + "startPosition": "-1979914728.0", + "dir": "Close Short", + "closedPnl": "224.658553", + "hash": "0x7f969b48a71a0a028110042e0c89d402044d002e421d28d4235f469b661de3ed", + "oid": 210486526692, + "crossed": true, + "fee": "0.102385", + "tid": 816740768085969, + "cloid": "0x00000000000000000000001644001298", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "3404.0", + "side": "B", + "time": 1761233672073, + "startPosition": "-1979786425.0", + "dir": "Close Short", + "closedPnl": "5.960404", + "hash": "0x7f969b48a71a0a028110042e0c89d402044d002e421d28d4235f469b661de3ed", + "oid": 210486526692, + "crossed": true, + "fee": "0.002716", + "tid": 727125671583944, + "cloid": "0x00000000000000000000001644001298", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131654.0", + "side": "B", + "time": 1761233673525, + "startPosition": "-1979783021.0", + "dir": "Close Short", + "closedPnl": "230.657808", + "hash": "0xc7f4036718ef824fc96d042e0c89e70206d3004cb3e2a1216bbcaeb9d7e35c3a", + "oid": 210486556344, + "crossed": true, + "fee": "0.105032", + "tid": 186839113264213, + "cloid": "0x00000000000000000000001644001299", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131504.0", + "side": "B", + "time": 1761233674905, + "startPosition": "-1979651367.0", + "dir": "Close Short", + "closedPnl": "230.395008", + "hash": "0xbb5a9135e503fd84bcd4042e0c89f602045a001b80071c565f233c88a407d76f", + "oid": 210486574996, + "crossed": true, + "fee": "0.104912", + "tid": 770171508285594, + "cloid": "0x00000000000000000000001644001300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "185.0", + "side": "B", + "time": 1761233674905, + "startPosition": "-1979519863.0", + "dir": "Close Short", + "closedPnl": "0.323935", + "hash": "0xbb5a9135e503fd84bcd4042e0c89f602045a001b80071c565f233c88a407d76f", + "oid": 210486574996, + "crossed": true, + "fee": "0.000147", + "tid": 603580594116981, + "cloid": "0x00000000000000000000001644001300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131693.0", + "side": "B", + "time": 1761233676748, + "startPosition": "-1979519678.0", + "dir": "Close Short", + "closedPnl": "230.989522", + "hash": "0x0960e3809f57e2de0ada042e0c8a0e0203cf00663a5b01b0ad298ed35e5bbcc8", + "oid": 210486599397, + "crossed": true, + "fee": "0.105008", + "tid": 454354100978087, + "cloid": "0x00000000000000000000001644001301", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "128249.0", + "side": "B", + "time": 1761233678438, + "startPosition": "-1979387985.0", + "dir": "Close Short", + "closedPnl": "225.205244", + "hash": "0xfc69018d00f12be2fde2042e0c8a2102055a00729bf44ab5a031acdfbff505cd", + "oid": 210486627034, + "crossed": true, + "fee": "0.102208", + "tid": 777807778090322, + "cloid": "0x00000000000000000000001644001302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "3469.0", + "side": "B", + "time": 1761233678438, + "startPosition": "-1979259736.0", + "dir": "Close Short", + "closedPnl": "6.091564", + "hash": "0xfc69018d00f12be2fde2042e0c8a2102055a00729bf44ab5a031acdfbff505cd", + "oid": 210486627034, + "crossed": true, + "fee": "0.002764", + "tid": 900711711114547, + "cloid": "0x00000000000000000000001644001302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131846.0", + "side": "B", + "time": 1761233689307, + "startPosition": "-1979256267.0", + "dir": "Close Short", + "closedPnl": "232.180806", + "hash": "0x87c2c70eee758343893c042e0c8a9f0202fc00f48978a2152b8b7261ad795d2e", + "oid": 210486803434, + "crossed": true, + "fee": "0.104936", + "tid": 999343798687897, + "cloid": "0x00000000000000000000001644001306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3877.8", + "sz": "2.5756", + "side": "A", + "time": 1761233691931, + "startPosition": "-2452.4363", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x761aab587ca0c1ef7794042e0c8ac0020472003e17a3e0c119e356ab3ba49bda", + "oid": 210486834665, + "crossed": false, + "fee": "0.279654", + "tid": 560965781484898, + "cloid": "0x00000000000000000000001643001424", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3877.6", + "sz": "0.9893", + "side": "A", + "time": 1761233698542, + "startPosition": "-2455.0119", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xdb67210b146ccef9dce0042e0c8b0a020c5c00f0af6fedcb7f2fcc5dd360a8e4", + "oid": 210486959871, + "crossed": true, + "fee": "0.805583", + "tid": 664136897956832, + "cloid": "0x00000000000000000000001643001426", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3877.5", + "sz": "0.0287", + "side": "A", + "time": 1761233698542, + "startPosition": "-2456.0012", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xdb67210b146ccef9dce0042e0c8b0a020c5c00f0af6fedcb7f2fcc5dd360a8e4", + "oid": 210486959871, + "crossed": true, + "fee": "0.023369", + "tid": 26473324808174, + "cloid": "0x00000000000000000000001643001426", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131961.0", + "side": "B", + "time": 1761233699947, + "startPosition": "-1979124421.0", + "dir": "Close Short", + "closedPnl": "231.591555", + "hash": "0xd8ba5307c2977b5bda34042e0c8b1c02025d00ed5d9a9a2d7c82fe5a819b5546", + "oid": 210486986733, + "crossed": true, + "fee": "0.105194", + "tid": 353036908938535, + "cloid": "0x00000000000000000000001644001311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3876.6", + "sz": "1.5608", + "side": "A", + "time": 1761233700661, + "startPosition": "-2456.0299", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x96488c2fd19c864a97c2042e0c8b250208e000156c9fa51c3a11378290906035", + "oid": 210486997371, + "crossed": true, + "fee": "1.270625", + "tid": 857320742626308, + "cloid": "0x00000000000000000000001643001427", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3876.8", + "sz": "2.5801", + "side": "A", + "time": 1761233707464, + "startPosition": "-2457.5907", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x9a25561cb7e0cde59b9f042e0c8b80020a86000252e3ecb73dee016f76e4a7d0", + "oid": 210487134298, + "crossed": true, + "fee": "2.100531", + "tid": 460982210403013, + "cloid": "0x00000000000000000000001643001429", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "131787.0", + "side": "B", + "time": 1761233708125, + "startPosition": "-1978992460.0", + "dir": "Close Short", + "closedPnl": "231.417972", + "hash": "0x5c07ff0162d251a45d81042e0c8b8a02045b00e6fdd57076ffd0aa5421d62b8e", + "oid": 210487148183, + "crossed": true, + "fee": "0.105027", + "tid": 452327202500788, + "cloid": "0x00000000000000000000001644001314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3876.6", + "sz": "2.5793", + "side": "A", + "time": 1761233714881, + "startPosition": "-2460.1708", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x312042c3d2829dd33299042e0c8bdc0204f400a96d85bca5d4e8ee16918677bd", + "oid": 210487262023, + "crossed": true, + "fee": "2.099772", + "tid": 663150443567464, + "cloid": "0x00000000000000000000001643001432", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003794", + "sz": "131798.0", + "side": "B", + "time": 1761233725640, + "startPosition": "-1978860673.0", + "dir": "Close Short", + "closedPnl": "231.569086", + "hash": "0x43cada62ae062a1d4544042e0c8c650208ff0048490948efe79385b56d0a0407", + "oid": 210487461158, + "crossed": true, + "fee": "0.105008", + "tid": 1024922099777686, + "cloid": "0x00000000000000000000001644001321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.6", + "sz": "2.5794", + "side": "A", + "time": 1761233729197, + "startPosition": "-2462.7501", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x246c43fc41eacbd825e6042e0c8c9602103800e1dcedeaaac834ef4f00eea5c2", + "oid": 210487518104, + "crossed": true, + "fee": "2.099311", + "tid": 836863148748265, + "cloid": "0x00000000000000000000001643001435", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131822.0", + "side": "B", + "time": 1761233741276, + "startPosition": "-1978728875.0", + "dir": "Close Short", + "closedPnl": "230.952144", + "hash": "0xee4f341a3669e3ceefc8042e0c8d2302053f00ffd16d02a09217df6cf56dbdb9", + "oid": 210487676337, + "crossed": true, + "fee": "0.105166", + "tid": 685016145210106, + "cloid": "0x00000000000000000000001644001325", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131614.0", + "side": "B", + "time": 1761233743372, + "startPosition": "-1978597053.0", + "dir": "Close Short", + "closedPnl": "230.456114", + "hash": "0xa573414df33633f4a6ec042e0c8d3e0201cd00338e3952c6493beca0b23a0ddf", + "oid": 210487707764, + "crossed": true, + "fee": "0.105027", + "tid": 1114724126953447, + "cloid": "0x00000000000000000000001644001326", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "51919.0", + "side": "B", + "time": 1761233744953, + "startPosition": "-1978465439.0", + "dir": "Close Short", + "closedPnl": "91.014007", + "hash": "0x2ce4f7b9a83109a02e5e042e0c8d4f020388009f43342872d0ada30c6734e38a", + "oid": 210487725444, + "crossed": true, + "fee": "0.041409", + "tid": 190603772936792, + "cloid": "0x00000000000000000000001644001327", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "51926.0", + "side": "B", + "time": 1761233744953, + "startPosition": "-1978413520.0", + "dir": "Close Short", + "closedPnl": "91.026278", + "hash": "0x2ce4f7b9a83109a02e5e042e0c8d4f020388009f43342872d0ada30c6734e38a", + "oid": 210487725444, + "crossed": true, + "fee": "0.041415", + "tid": 581809068732634, + "cloid": "0x00000000000000000000001644001327", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "27803.0", + "side": "B", + "time": 1761233744953, + "startPosition": "-1978361594.0", + "dir": "Close Short", + "closedPnl": "48.710856", + "hash": "0x2ce4f7b9a83109a02e5e042e0c8d4f020388009f43342872d0ada30c6734e38a", + "oid": 210487725444, + "crossed": true, + "fee": "0.02218", + "tid": 253686765685340, + "cloid": "0x00000000000000000000001644001327", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "101329.0", + "side": "B", + "time": 1761233748246, + "startPosition": "-1978333791.0", + "dir": "Close Short", + "closedPnl": "177.832395", + "hash": "0x105ba2cbfa51f25b11d5042e0c8d7002089500b19555112db4244e1eb955cc45", + "oid": 210487766449, + "crossed": true, + "fee": "0.080775", + "tid": 291468583885134, + "cloid": "0x00000000000000000000001644001328", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "30389.0", + "side": "B", + "time": 1761233748246, + "startPosition": "-1978232462.0", + "dir": "Close Short", + "closedPnl": "53.302306", + "hash": "0x105ba2cbfa51f25b11d5042e0c8d7002089500b19555112db4244e1eb955cc45", + "oid": 210487766449, + "crossed": true, + "fee": "0.024231", + "tid": 758790432098186, + "cloid": "0x00000000000000000000001644001328", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.5", + "sz": "2.5797", + "side": "A", + "time": 1761233749263, + "startPosition": "-2465.3295", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6f4869a7ae7df4d670c2042e0c8d7e020261008d497113a8131114fa6d71cec1", + "oid": 210487782499, + "crossed": true, + "fee": "2.099501", + "tid": 14750046248677, + "cloid": "0x00000000000000000000001643001440", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131731.0", + "side": "B", + "time": 1761233753899, + "startPosition": "-1978202073.0", + "dir": "Close Short", + "closedPnl": "230.660981", + "hash": "0x6c23b39884a59d3a6d9d042e0c8dba020490007e1fa8bc0c0fec5eeb43a97725", + "oid": 210487835708, + "crossed": true, + "fee": "0.105121", + "tid": 974610154247733, + "cloid": "0x00000000000000000000001644001329", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.5", + "sz": "2.5804", + "side": "A", + "time": 1761233754980, + "startPosition": "-2467.9092", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xea8667e02420d4b3ec00042e0c8dc602040c00c5bf23f3858e4f1332e324ae9e", + "oid": 210487851558, + "crossed": true, + "fee": "2.100071", + "tid": 84821739228886, + "cloid": "0x00000000000000000000001643001442", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.5", + "sz": "2.5806", + "side": "A", + "time": 1761233756307, + "startPosition": "-2470.4896", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc0d7f74044f9e4c4c251042e0c8dd702028c0025dffd039664a0a29303fdbeaf", + "oid": 210487865345, + "crossed": true, + "fee": "2.100234", + "tid": 568682830118731, + "cloid": "0x00000000000000000000001643001443", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.5", + "sz": "2.5807", + "side": "A", + "time": 1761233759397, + "startPosition": "-2473.0702", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfc15b2e6b92aed77fd8f042e0c8dfb02041300cc542e0c4a9fde5e39782ec762", + "oid": 210487900067, + "crossed": true, + "fee": "2.100315", + "tid": 740873516911301, + "cloid": "0x00000000000000000000001643001444", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131606.0", + "side": "B", + "time": 1761233759526, + "startPosition": "-1978070342.0", + "dir": "Close Short", + "closedPnl": "230.442106", + "hash": "0x0f9e79b512bbbf831118042e0c8dfd02048a009aadbede55b3672507d1bf996d", + "oid": 210487902185, + "crossed": true, + "fee": "0.105021", + "tid": 770696966557831, + "cloid": "0x00000000000000000000001644001331", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.5", + "sz": "2.5806", + "side": "A", + "time": 1761233760508, + "startPosition": "-2475.6509", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfa9cbe97ebc2d1a1fc16042e0c8e0b02027d007d86c5f0749e6569eaaac6ab8c", + "oid": 210487915259, + "crossed": true, + "fee": "2.100234", + "tid": 21759624035525, + "cloid": "0x00000000000000000000001643001445", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131648.0", + "side": "B", + "time": 1761233760802, + "startPosition": "-1977938736.0", + "dir": "Close Short", + "closedPnl": "230.515648", + "hash": "0xc03317b1fc6091e0c1ac042e0c8e0e0208c800979763b0b263fbc304bb646bcb", + "oid": 210487918439, + "crossed": true, + "fee": "0.105055", + "tid": 1113482667379200, + "cloid": "0x00000000000000000000001644001332", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.6", + "sz": "2.5805", + "side": "A", + "time": 1761233764494, + "startPosition": "-2478.2315", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x112dd5353886cbe112a7042e0c8e4102059b001ad389eab3b4f68087f78aa5cb", + "oid": 210487955438, + "crossed": false, + "fee": "0.280027", + "tid": 984312120308368, + "cloid": "0x00000000000000000000001643001446", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3877.3", + "sz": "1.5", + "side": "A", + "time": 1761233768813, + "startPosition": "-2480.812", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x30564ad5de2a562731d0042e0c8e7602093c00bb792d74f9d41ef6289d2e3011", + "oid": 210488033188, + "crossed": true, + "fee": "1.221349", + "tid": 24119996466636, + "cloid": "0x00000000000000000000001643001448", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3877.3", + "sz": "1.0799", + "side": "A", + "time": 1761233768813, + "startPosition": "-2482.312", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x30564ad5de2a562731d0042e0c8e7602093c00bb792d74f9d41ef6289d2e3011", + "oid": 210488033188, + "crossed": true, + "fee": "0.87929", + "tid": 841292098852204, + "cloid": "0x00000000000000000000001643001448", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131614.0", + "side": "B", + "time": 1761233772703, + "startPosition": "-1977807088.0", + "dir": "Close Short", + "closedPnl": "230.456114", + "hash": "0x6df00c0f1ffd76bb6f69042e0c8ea902082200f4baf0958d11b8b761def150a6", + "oid": 210488070057, + "crossed": false, + "fee": "0.014003", + "tid": 370347725791145, + "cloid": "0x00000000000000000000001644001335", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3876.8", + "sz": "0.4776", + "side": "A", + "time": 1761233774056, + "startPosition": "-2483.3919", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc42d50cfa2d55407c5a7042e0c8eb9020e3000b53dd872d967f5fc2261d92df2", + "oid": 210488113191, + "crossed": false, + "fee": "0.051843", + "tid": 827317571264761, + "cloid": "0x00000000000000000000001643001450", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3876.8", + "sz": "0.0124", + "side": "A", + "time": 1761233774056, + "startPosition": "-2483.8695", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3716880421816af13890042e0c8eb9020e5300e9bc8489c3dadf3356e08544db", + "oid": 210488113191, + "crossed": false, + "fee": "0.001346", + "tid": 1089028989941691, + "cloid": "0x00000000000000000000001643001450", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131682.0", + "side": "B", + "time": 1761233774592, + "startPosition": "-1977675474.0", + "dir": "Close Short", + "closedPnl": "230.838546", + "hash": "0xd50e7698bbe968bbd688042e0c8ebe020810007e56ec878d78d721eb7aed42a6", + "oid": 210488136356, + "crossed": true, + "fee": "0.105026", + "tid": 490107048453416, + "cloid": "0x00000000000000000000001644001336", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3876.8", + "sz": "2.0893", + "side": "A", + "time": 1761233774649, + "startPosition": "-2483.8819", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8a2ba59de939fefa8ba5042e0c8ebf0206e80083843d1dcc2df450f0a83dd8e5", + "oid": 210488113191, + "crossed": false, + "fee": "0.226794", + "tid": 980157943762052, + "cloid": "0x00000000000000000000001643001450", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131652.0", + "side": "B", + "time": 1761233775974, + "startPosition": "-1977543792.0", + "dir": "Close Short", + "closedPnl": "230.917608", + "hash": "0xce647ed20189d252cfde042e0c8ecf02056500b79c8cf124722d2a24c08dac3d", + "oid": 210488162493, + "crossed": true, + "fee": "0.104975", + "tid": 510412630066838, + "cloid": "0x00000000000000000000001644001337", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3877.7", + "sz": "2.5792", + "side": "A", + "time": 1761233776186, + "startPosition": "-2485.9712", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x872791a16402755788a1042e0c8ed10202430086ff0594292af03cf423064f42", + "oid": 210488163179, + "crossed": true, + "fee": "2.100286", + "tid": 846346611220505, + "cloid": "0x00000000000000000000001643001451", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.6", + "sz": "0.8307", + "side": "A", + "time": 1761233778126, + "startPosition": "-2488.5504", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2927029e0d19d0f62aa0042e0c8ee90203840083a81cefc8ccefadf0cc1daae0", + "oid": 210488199225, + "crossed": true, + "fee": "0.676086", + "tid": 373853332816073, + "cloid": "0x00000000000000000000001643001452", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.6", + "sz": "0.0077", + "side": "A", + "time": 1761233778126, + "startPosition": "-2489.3811", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2927029e0d19d0f62aa0042e0c8ee90203840083a81cefc8ccefadf0cc1daae0", + "oid": 210488199225, + "crossed": true, + "fee": "0.006266", + "tid": 222552702251764, + "cloid": "0x00000000000000000000001643001452", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.5", + "sz": "1.7423", + "side": "A", + "time": 1761233778126, + "startPosition": "-2489.3888", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2927029e0d19d0f62aa0042e0c8ee90203840083a81cefc8ccefadf0cc1daae0", + "oid": 210488199225, + "crossed": true, + "fee": "1.417979", + "tid": 793818677635394, + "cloid": "0x00000000000000000000001643001452", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131737.0", + "side": "B", + "time": 1761233778465, + "startPosition": "-1977412140.0", + "dir": "Close Short", + "closedPnl": "230.934961", + "hash": "0x64476f861419bfbf65c1042e0c8eed020660006baf1cde9108101ad8d31d99aa", + "oid": 210488207923, + "crossed": true, + "fee": "0.10507", + "tid": 18967530274251, + "cloid": "0x00000000000000000000001644001338", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131718.0", + "side": "B", + "time": 1761233780007, + "startPosition": "-1977280403.0", + "dir": "Close Short", + "closedPnl": "230.901654", + "hash": "0x2c4a62242542da672dc4042e0c8f020204c20009c045f939d0130d76e446b451", + "oid": 210488234358, + "crossed": true, + "fee": "0.105055", + "tid": 936065403879701, + "cloid": "0x00000000000000000000001644001339", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131683.0", + "side": "B", + "time": 1761233781439, + "startPosition": "-1977148685.0", + "dir": "Close Short", + "closedPnl": "230.840299", + "hash": "0xd0046e435a4e2138d17e042e0c8f1602012e0028f541400a73cd19961941fb23", + "oid": 210488256572, + "crossed": true, + "fee": "0.105027", + "tid": 669629659765251, + "cloid": "0x00000000000000000000001644001340", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "74385.0", + "side": "B", + "time": 1761233783051, + "startPosition": "-1977017002.0", + "dir": "Close Short", + "closedPnl": "130.248135", + "hash": "0xe86aec26b9150399e9e4042e0c8f2d0203f0000c5418226b8c3397797818dd84", + "oid": 210488277151, + "crossed": true, + "fee": "0.059359", + "tid": 187560730716688, + "cloid": "0x00000000000000000000001644001341", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "57196.0", + "side": "B", + "time": 1761233783051, + "startPosition": "-1976942617.0", + "dir": "Close Short", + "closedPnl": "100.150196", + "hash": "0xe86aec26b9150399e9e4042e0c8f2d0203f0000c5418226b8c3397797818dd84", + "oid": 210488277151, + "crossed": true, + "fee": "0.045642", + "tid": 31651275997776, + "cloid": "0x00000000000000000000001644001341", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.7", + "sz": "2.5804", + "side": "A", + "time": 1761233784058, + "startPosition": "-2491.1311", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xffe201fecf30577d015b042e0c8f3802062b00e46a337650a3aaad518e343168", + "oid": 210488239598, + "crossed": false, + "fee": "0.280023", + "tid": 347705865160076, + "cloid": "0x00000000000000000000001643001453", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3876.8", + "sz": "2.5794", + "side": "A", + "time": 1761233787791, + "startPosition": "-2493.7115", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x124584e734f0bce013bf042e0c8f6402030b00cccff3dbb2b60e3039f3f496ca", + "oid": 210488368660, + "crossed": true, + "fee": "2.099961", + "tid": 262595567494954, + "cloid": "0x00000000000000000000001643001455", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.6", + "sz": "0.1159", + "side": "A", + "time": 1761233796128, + "startPosition": "-2496.2909", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc0b9409deca76247c232042e0c8fd6020384008387aa81196481ebf0abab3c32", + "oid": 210488493696, + "crossed": true, + "fee": "0.094328", + "tid": 277854203537032, + "cloid": "0x00000000000000000000001643001457", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.6", + "sz": "0.0121", + "side": "A", + "time": 1761233796128, + "startPosition": "-2496.4068", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc0b9409deca76247c232042e0c8fd6020384008387aa81196481ebf0abab3c32", + "oid": 210488493696, + "crossed": true, + "fee": "0.009847", + "tid": 253849605355038, + "cloid": "0x00000000000000000000001643001457", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.6", + "sz": "2.4521", + "side": "A", + "time": 1761233796128, + "startPosition": "-2496.4189", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc0b9409deca76247c232042e0c8fd6020384008387aa81196481ebf0abab3c32", + "oid": 210488493696, + "crossed": true, + "fee": "1.995705", + "tid": 266892706800307, + "cloid": "0x00000000000000000000001643001457", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.5", + "sz": "2.5807", + "side": "A", + "time": 1761233798728, + "startPosition": "-2498.871", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x05d2eab74089e779074c042e0c8ffa0205be009cdb8d064ba99b9609ff8dc163", + "oid": 210488527152, + "crossed": true, + "fee": "2.100315", + "tid": 473561977387469, + "cloid": "0x00000000000000000000001643001458", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.9", + "sz": "2.5809", + "side": "A", + "time": 1761233800161, + "startPosition": "-2501.4517", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfa769a98bd706eabfbf0042e0c900e020801007e58738d7e9e3f45eb7c744896", + "oid": 210488551744, + "crossed": true, + "fee": "2.100695", + "tid": 1099604204108425, + "cloid": "0x00000000000000000000001643001459", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131648.0", + "side": "B", + "time": 1761233802819, + "startPosition": "-1976885421.0", + "dir": "Close Short", + "closedPnl": "230.647296", + "hash": "0x4846ceccaa44a31049c0042e0c902c02024000b24547c1e2ec0f7a1f69487cfa", + "oid": 210488591524, + "crossed": true, + "fee": "0.105027", + "tid": 834424579921329, + "cloid": "0x00000000000000000000001644001348", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131682.0", + "side": "B", + "time": 1761233804467, + "startPosition": "-1976753773.0", + "dir": "Close Short", + "closedPnl": "230.706864", + "hash": "0xeed0683f4e75d1fef04a042e0c903f0204dc0024e978f0d0929913920d79abe9", + "oid": 210488623452, + "crossed": true, + "fee": "0.105054", + "tid": 598292078540199, + "cloid": "0x00000000000000000000001644001349", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3875.5", + "sz": "2.5804", + "side": "A", + "time": 1761233805047, + "startPosition": "-2504.0326", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb2ac69ca72068b58b426042e0c9046020a1a00b00d09aa2a5675151d310a6543", + "oid": 210488636246, + "crossed": true, + "fee": "2.100071", + "tid": 81031295618220, + "cloid": "0x00000000000000000000001643001461", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131683.0", + "side": "B", + "time": 1761233805612, + "startPosition": "-1976622091.0", + "dir": "Close Short", + "closedPnl": "230.840299", + "hash": "0x88cc80ea98eab81f8a46042e0c904e02129000d033edd6f12c952c3d57ee920a", + "oid": 210488649748, + "crossed": true, + "fee": "0.105027", + "tid": 335600168210505, + "cloid": "0x00000000000000000000001644001350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3873.2", + "sz": "2.5822", + "side": "A", + "time": 1761233806875, + "startPosition": "-2506.613", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xad506b9b3a4927c3aeca042e0c905f0201010080d54c4695511916edf94d01ae", + "oid": 210488667675, + "crossed": true, + "fee": "2.100289", + "tid": 921490863076547, + "cloid": "0x00000000000000000000001643001462", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131718.0", + "side": "B", + "time": 1761233807182, + "startPosition": "-1976490408.0", + "dir": "Close Short", + "closedPnl": "231.033372", + "hash": "0x94775473e43349d295f1042e0c9063020ae400597f3668a4383fffc6a33723bd", + "oid": 210488674843, + "crossed": true, + "fee": "0.105027", + "tid": 42146158769929, + "cloid": "0x00000000000000000000001644001351", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "38424.0", + "side": "B", + "time": 1761233808676, + "startPosition": "-1976358690.0", + "dir": "Close Short", + "closedPnl": "67.357272", + "hash": "0x8f90973cd4f3380f910a042e0c9077020e6c00226ff656e13359428f93f711fa", + "oid": 210488702408, + "crossed": true, + "fee": "0.030646", + "tid": 695311901850493, + "cloid": "0x00000000000000000000001644001352", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "93261.0", + "side": "B", + "time": 1761233808676, + "startPosition": "-1976320266.0", + "dir": "Close Short", + "closedPnl": "163.486533", + "hash": "0x8f90973cd4f3380f910a042e0c9077020e6c00226ff656e13359428f93f711fa", + "oid": 210488702408, + "crossed": true, + "fee": "0.074383", + "tid": 243092470043156, + "cloid": "0x00000000000000000000001644001352", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131648.0", + "side": "B", + "time": 1761233810070, + "startPosition": "-1976227005.0", + "dir": "Close Short", + "closedPnl": "230.778944", + "hash": "0xfe8870fe7b080ee30002042e0c908802046000e4160b2db6a2511c513a0be8ce", + "oid": 210488726120, + "crossed": true, + "fee": "0.104999", + "tid": 9102393366809, + "cloid": "0x00000000000000000000001644001353", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131682.0", + "side": "B", + "time": 1761233813734, + "startPosition": "-1976095357.0", + "dir": "Close Short", + "closedPnl": "230.838546", + "hash": "0x1364a09e8aee7cd314de042e0c90b30203f7008425e19ba5b72d4bf149e256bd", + "oid": 210488776433, + "crossed": true, + "fee": "0.105026", + "tid": 326788457515317, + "cloid": "0x00000000000000000000001644001354", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3872.6", + "sz": "2.5813", + "side": "A", + "time": 1761233813936, + "startPosition": "-2509.1952", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1cf9dd096a2705d41e73042e0c90b60204bc00ef052a24a6c0c2885c292adfbe", + "oid": 210488778374, + "crossed": true, + "fee": "2.099231", + "tid": 642290589345346, + "cloid": "0x00000000000000000000001643001465", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131683.0", + "side": "B", + "time": 1761233814943, + "startPosition": "-1975963675.0", + "dir": "Close Short", + "closedPnl": "230.840299", + "hash": "0x97f635c59dca27d9996f042e0c90c20204ca00ab38cd46ab3bbee1185cce01c4", + "oid": 210488787770, + "crossed": true, + "fee": "0.105027", + "tid": 970878735839410, + "cloid": "0x00000000000000000000001644001355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.9", + "sz": "2.583", + "side": "A", + "time": 1761233815588, + "startPosition": "-2511.7765", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xbf97243d779e18cdc110042e0c90cb02038200231291379f635fcf903691f2b8", + "oid": 210488794027, + "crossed": true, + "fee": "2.100234", + "tid": 680378236586536, + "cloid": "0x00000000000000000000001643001466", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "117254.0", + "side": "B", + "time": 1761233816488, + "startPosition": "-1975831992.0", + "dir": "Close Short", + "closedPnl": "205.546262", + "hash": "0x2c7b41e207f7daad2df4042e0c90d50202c600c7a2faf97fd043ed34c6fbb497", + "oid": 210488803491, + "crossed": true, + "fee": "0.093519", + "tid": 826094597326279, + "cloid": "0x00000000000000000000001644001356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "14429.0", + "side": "B", + "time": 1761233816488, + "startPosition": "-1975714738.0", + "dir": "Close Short", + "closedPnl": "25.294037", + "hash": "0x2c7b41e207f7daad2df4042e0c90d50202c600c7a2faf97fd043ed34c6fbb497", + "oid": 210488803491, + "crossed": true, + "fee": "0.011508", + "tid": 51390229710359, + "cloid": "0x00000000000000000000001644001356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131718.0", + "side": "B", + "time": 1761233818158, + "startPosition": "-1975700309.0", + "dir": "Close Short", + "closedPnl": "231.16509", + "hash": "0x21754b380c3078d422ef042e0c90e9021446001da73397a6c53df68acb3452be", + "oid": 210488835702, + "crossed": true, + "fee": "0.105", + "tid": 986015216313271, + "cloid": "0x00000000000000000000001644001357", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.0", + "sz": "0.0077", + "side": "A", + "time": 1761233818158, + "startPosition": "-2514.3595", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd448c1d325c1bb4fd5c2042e0c90e902144700b8c0c4da2178116d25e4c5953a", + "oid": 210488835703, + "crossed": true, + "fee": "0.006259", + "tid": 729836570540201, + "cloid": "0x00000000000000000000001643001467", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.3", + "sz": "0.545", + "side": "A", + "time": 1761233820828, + "startPosition": "-2514.3672", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x59abc4068c3dd9065b25042e0c91090203a600ec2730f7d8fd746f594b31b2f0", + "oid": 210488878690, + "crossed": true, + "fee": "0.442955", + "tid": 355473900206945, + "cloid": "0x00000000000000000000001643001468", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.3", + "sz": "0.8597", + "side": "A", + "time": 1761233820828, + "startPosition": "-2514.9122", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x59abc4068c3dd9065b25042e0c91090203a600ec2730f7d8fd746f594b31b2f0", + "oid": 210488878690, + "crossed": true, + "fee": "0.698732", + "tid": 645295950254263, + "cloid": "0x00000000000000000000001643001468", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.3", + "sz": "1.1712", + "side": "A", + "time": 1761233820828, + "startPosition": "-2515.7719", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x59abc4068c3dd9065b25042e0c91090203a600ec2730f7d8fd746f594b31b2f0", + "oid": 210488878690, + "crossed": true, + "fee": "0.951908", + "tid": 483906578907786, + "cloid": "0x00000000000000000000001643001468", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131787.0", + "side": "B", + "time": 1761233821873, + "startPosition": "-1975568591.0", + "dir": "Close Short", + "closedPnl": "231.286185", + "hash": "0x10663e185bc52f0911df042e0c911602070600fdf6c84ddbb42ee96b1ac908f3", + "oid": 210488889383, + "crossed": true, + "fee": "0.105055", + "tid": 97735694974512, + "cloid": "0x00000000000000000000001644001359", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.3", + "sz": "2.5846", + "side": "A", + "time": 1761233822211, + "startPosition": "-2516.9431", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xec953e4ddb1e4dabee0e042e0c911b01ea00563376116c7d905de9a09a122796", + "oid": 210488891969, + "crossed": true, + "fee": "2.100667", + "tid": 92039206880776, + "cloid": "0x00000000000000000000001643001469", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131718.0", + "side": "B", + "time": 1761233823876, + "startPosition": "-1975436804.0", + "dir": "Close Short", + "closedPnl": "231.033372", + "hash": "0x2c4389ae89f1f73f2dbd042e0c91300206df009424f51611d00c350148f5d129", + "oid": 210488914022, + "crossed": true, + "fee": "0.105027", + "tid": 904188902279705, + "cloid": "0x00000000000000000000001644001360", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "28220.0", + "side": "B", + "time": 1761233825393, + "startPosition": "-1975305086.0", + "dir": "Close Short", + "closedPnl": "49.44144", + "hash": "0x5a1ca164038b2ff65b96042e0c914302034100499e8e4ec8fde54cb6c28f09e0", + "oid": 210488940153, + "crossed": true, + "fee": "0.022513", + "tid": 437577016570901, + "cloid": "0x00000000000000000000001644001361", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "103488.0", + "side": "B", + "time": 1761233825393, + "startPosition": "-1975276866.0", + "dir": "Close Short", + "closedPnl": "181.207488", + "hash": "0x5a1ca164038b2ff65b96042e0c914302034100499e8e4ec8fde54cb6c28f09e0", + "oid": 210488940153, + "crossed": true, + "fee": "0.082583", + "tid": 622804748998887, + "cloid": "0x00000000000000000000001644001361", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3869.2", + "sz": "1.5", + "side": "A", + "time": 1761233826205, + "startPosition": "-2519.5277", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3b063400fc6773fb3c7f042e0c914c020c1200e6976a92cddecedf53bb6b4de5", + "oid": 210488956224, + "crossed": true, + "fee": "1.218798", + "tid": 166100900504248, + "cloid": "0x00000000000000000000001643001471", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3869.2", + "sz": "1.0846", + "side": "A", + "time": 1761233826205, + "startPosition": "-2521.0277", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3b063400fc6773fb3c7f042e0c914c020c1200e6976a92cddecedf53bb6b4de5", + "oid": 210488956224, + "crossed": true, + "fee": "0.881272", + "tid": 257519640117772, + "cloid": "0x00000000000000000000001643001471", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131684.0", + "side": "B", + "time": 1761233826856, + "startPosition": "-1975173378.0", + "dir": "Close Short", + "closedPnl": "230.710368", + "hash": "0xa3d5f14ef7e27cf8a54f042e0c9156020ad8003492e59bca479e9ca1b6e656e3", + "oid": 210488964854, + "crossed": true, + "fee": "0.105056", + "tid": 346017705899423, + "cloid": "0x00000000000000000000001644001362", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003794", + "sz": "131734.0", + "side": "B", + "time": 1761233828546, + "startPosition": "-1975041694.0", + "dir": "Close Short", + "closedPnl": "231.456638", + "hash": "0x51a46c206e31ad96531e042e0c916f02024800060934cc68f56d17732d358780", + "oid": 210488992882, + "crossed": true, + "fee": "0.104957", + "tid": 287843047710189, + "cloid": "0x00000000000000000000001644001363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3869.4", + "sz": "2.5849", + "side": "A", + "time": 1761233831904, + "startPosition": "-2522.1123", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x04eded171068dd490667042e0c919a02054c00fcab6bfc1ba8b69869cf6cb733", + "oid": 210489032368, + "crossed": true, + "fee": "2.100422", + "tid": 89286320174710, + "cloid": "0x00000000000000000000001643001472", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131802.0", + "side": "B", + "time": 1761233832132, + "startPosition": "-1974909960.0", + "dir": "Close Short", + "closedPnl": "231.180708", + "hash": "0x0b1ccdf683c950d60c96042e0c919d0206a300dc1ecc6fa8aee5794942cd2ac0", + "oid": 210489037131, + "crossed": true, + "fee": "0.105094", + "tid": 242940203830940, + "cloid": "0x00000000000000000000001644001365", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131752.0", + "side": "B", + "time": 1761233834873, + "startPosition": "-1974778158.0", + "dir": "Close Short", + "closedPnl": "231.093008", + "hash": "0x26d42a09a91d542a284d042e0c91c00204d100ef441072fcca9cd55c68112e14", + "oid": 210489075199, + "crossed": true, + "fee": "0.105055", + "tid": 33623027223180, + "cloid": "0x00000000000000000000001644001366", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "131752.0", + "side": "B", + "time": 1761233836384, + "startPosition": "-1974646406.0", + "dir": "Close Short", + "closedPnl": "231.356512", + "hash": "0xfaec0dc9ab528a63fc65042e0c91d3020af600af4655a9369eb4b91c6a56644e", + "oid": 210489102578, + "crossed": true, + "fee": "0.104999", + "tid": 981125464631491, + "cloid": "0x00000000000000000000001644001367", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3868.8", + "sz": "1.0", + "side": "A", + "time": 1761233836384, + "startPosition": "-2524.6972", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1ceb5da8433c7c9e1e65042e0c91d3020b24008dde3f9b70c0b408fb02305688", + "oid": 210489102574, + "crossed": false, + "fee": "0.108326", + "tid": 795958727267164, + "cloid": "0x00000000000000000000001643001473", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3865.8", + "sz": "1.585", + "side": "A", + "time": 1761233842985, + "startPosition": "-2525.6972", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd84c1b86b566f55bd9c5042e0c92200206fe006c506a142d7c14c6d9746acf46", + "oid": 210489205583, + "crossed": false, + "fee": "0.171564", + "tid": 45568103859872, + "cloid": "0x00000000000000000000001643001475", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3864.8", + "sz": "2.5872", + "side": "A", + "time": 1761233848035, + "startPosition": "-2527.2822", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe695cd86d6192746e80f042e0c925b0205da006c711c46188a5e78d9951d0131", + "oid": 210489306204, + "crossed": true, + "fee": "2.099792", + "tid": 136856382267647, + "cloid": "0x00000000000000000000001643001477", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3866.1", + "sz": "2.5868", + "side": "A", + "time": 1761233850199, + "startPosition": "-2529.8694", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3df1f5c775c110763f6b042e0c927502048b00ad10c42f48e1baa11a34c4ea60", + "oid": 210489344408, + "crossed": true, + "fee": "2.100173", + "tid": 1003471105165407, + "cloid": "0x00000000000000000000001643001478", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3866.6", + "sz": "2.5858", + "side": "A", + "time": 1761233854823, + "startPosition": "-2532.4562", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xd25deef7e0c947f0d3d7042e0c92ae0201de00dd7bcc66c276269a4a9fcd21db", + "oid": 210489423145, + "crossed": true, + "fee": "2.099633", + "tid": 991872254374778, + "cloid": "0x00000000000000000000001643001480", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3866.6", + "sz": "2.5865", + "side": "A", + "time": 1761233856360, + "startPosition": "-2535.042", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xdfeaa100d985b4d9e164042e0c92c10203ab00e67488d3ab83b34c5398898ec4", + "oid": 210489440306, + "crossed": true, + "fee": "2.100201", + "tid": 890838497023319, + "cloid": "0x00000000000000000000001643001481", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "32952.0", + "side": "B", + "time": 1761233858565, + "startPosition": "-1974514654.0", + "dir": "Close Short", + "closedPnl": "58.028472", + "hash": "0x1fe8e6c7b53726202162042e0c92da0205e100ad503a44f2c3b1921a743b000a", + "oid": 210489434427, + "crossed": false, + "fee": "0.003496", + "tid": 124503407377471, + "cloid": "0x00000000000000000000001644001374", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "98870.0", + "side": "B", + "time": 1761233863444, + "startPosition": "-1974481702.0", + "dir": "Close Short", + "closedPnl": "174.11007", + "hash": "0xf4d5aa0318efd235f64f042e0c931402023200e8b3e2f108989e5555d7e3ac20", + "oid": 210489548854, + "crossed": true, + "fee": "0.07869", + "tid": 792571642586162, + "cloid": "0x00000000000000000000001644001376", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "132049.0", + "side": "B", + "time": 1761233864651, + "startPosition": "-1974382832.0", + "dir": "Close Short", + "closedPnl": "232.538289", + "hash": "0xa377d58f223786d5a4f1042e0c932402023f0074bd3aa5a7474080e1e13b60c0", + "oid": 210489559578, + "crossed": true, + "fee": "0.105097", + "tid": 606499628942282, + "cloid": "0x00000000000000000000001644001377", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3865.8", + "sz": "2.5868", + "side": "A", + "time": 1761233865728, + "startPosition": "-2537.6285", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x909079310a54e178920a042e0c93350203fc0016a558004a34592483c958bb63", + "oid": 210489525582, + "crossed": false, + "fee": "0.280001", + "tid": 639681550910956, + "cloid": "0x00000000000000000000001643001483", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "132031.0", + "side": "B", + "time": 1761233865863, + "startPosition": "-1974250783.0", + "dir": "Close Short", + "closedPnl": "232.506591", + "hash": "0xcf467985b27a7ecdd0c0042e0c9337020444006b4d7d9d9f730f24d8717e58b8", + "oid": 210489574879, + "crossed": true, + "fee": "0.105083", + "tid": 629436765021190, + "cloid": "0x00000000000000000000001644001378", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "33260.0", + "side": "B", + "time": 1761233867191, + "startPosition": "-1974118752.0", + "dir": "Close Short", + "closedPnl": "58.57086", + "hash": "0xc6d1747508a92cd0c84b042e0c93490208c5005aa3ac4ba26a9a1fc7c7ad06bb", + "oid": 210489602049, + "crossed": true, + "fee": "0.026471", + "tid": 799875542471379, + "cloid": "0x00000000000000000000001644001379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "98759.0", + "side": "B", + "time": 1761233867191, + "startPosition": "-1974085492.0", + "dir": "Close Short", + "closedPnl": "173.914599", + "hash": "0xc6d1747508a92cd0c84b042e0c93490208c5005aa3ac4ba26a9a1fc7c7ad06bb", + "oid": 210489602049, + "crossed": true, + "fee": "0.078602", + "tid": 798797997089033, + "cloid": "0x00000000000000000000001644001379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3866.3", + "sz": "2.5868", + "side": "A", + "time": 1761233867191, + "startPosition": "-2540.2153", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xaa99b2b2bb91fe32ac13042e0c93490208cc009856951d044e625e057a95d81d", + "oid": 210489602056, + "crossed": true, + "fee": "2.100282", + "tid": 109525779296355, + "cloid": "0x00000000000000000000001643001484", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "87430.0", + "side": "B", + "time": 1761233868635, + "startPosition": "-1973986733.0", + "dir": "Close Short", + "closedPnl": "154.13909", + "hash": "0x5d784cad57ed08a15ef2042e0c935b0205ff0092f2e027730140f80016e0e28c", + "oid": 210489626923, + "crossed": true, + "fee": "0.069548", + "tid": 409999932789550, + "cloid": "0x00000000000000000000001644001380", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "44623.0", + "side": "B", + "time": 1761233868635, + "startPosition": "-1973899303.0", + "dir": "Close Short", + "closedPnl": "78.670349", + "hash": "0x5d784cad57ed08a15ef2042e0c935b0205ff0092f2e027730140f80016e0e28c", + "oid": 210489626923, + "crossed": true, + "fee": "0.035496", + "tid": 293302723517037, + "cloid": "0x00000000000000000000001644001380", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "132037.0", + "side": "B", + "time": 1761233870044, + "startPosition": "-1973854680.0", + "dir": "Close Short", + "closedPnl": "232.649194", + "hash": "0x445ae5a69580f38c45d4042e0c936d02050f008c3084125ee82390f95484cd76", + "oid": 210489646807, + "crossed": true, + "fee": "0.10506", + "tid": 523010440293427, + "cloid": "0x00000000000000000000001644001381", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132046.0", + "side": "B", + "time": 1761233872494, + "startPosition": "-1973722643.0", + "dir": "Close Short", + "closedPnl": "232.797098", + "hash": "0x479f07b1a54a2b984918042e0c938c0204900097404d4a6aeb67b304644e0582", + "oid": 210489679188, + "crossed": true, + "fee": "0.105039", + "tid": 869516968240335, + "cloid": "0x00000000000000000000001644001382", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3865.9", + "sz": "2.5866", + "side": "A", + "time": 1761233879525, + "startPosition": "-2542.8021", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x4041fe94038abc1c41bb042e0c93dc02028400799e8ddaeee40aa9e6c28e9606", + "oid": 210489745081, + "crossed": true, + "fee": "2.099902", + "tid": 572972322345578, + "cloid": "0x00000000000000000000001643001487", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132100.0", + "side": "B", + "time": 1761233881191, + "startPosition": "-1973590597.0", + "dir": "Close Short", + "closedPnl": "233.0244", + "hash": "0x403564391c32455c41af042e0c93ef0203a8001eb735642ee3fe0f8bdb361f46", + "oid": 210489765427, + "crossed": true, + "fee": "0.105055", + "tid": 650298166054823, + "cloid": "0x00000000000000000000001644001383", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3865.9", + "sz": "2.5872", + "side": "A", + "time": 1761233881191, + "startPosition": "-2545.3887", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x89a48fad024d9bb58b1e042e0c93ef0203b100929d40ba872d6d3affc14175a0", + "oid": 210489765435, + "crossed": true, + "fee": "2.100389", + "tid": 633200278792553, + "cloid": "0x00000000000000000000001643001488", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132066.0", + "side": "B", + "time": 1761233882652, + "startPosition": "-1973458497.0", + "dir": "Close Short", + "closedPnl": "232.964424", + "hash": "0xd00f41c6f4df11f6d188042e0c94010207e800ac8fd230c873d7ed19b3d2ebe1", + "oid": 210489790495, + "crossed": true, + "fee": "0.105028", + "tid": 289487966749940, + "cloid": "0x00000000000000000000001644001384", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132113.0", + "side": "B", + "time": 1761233884096, + "startPosition": "-1973326431.0", + "dir": "Close Short", + "closedPnl": "233.047332", + "hash": "0x84892a030d9076458602042e0c9414020bb500e8a89395172851d555cc945030", + "oid": 210489818942, + "crossed": true, + "fee": "0.105065", + "tid": 320942714352545, + "cloid": "0x00000000000000000000001644001385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3865.2", + "sz": "2.1057", + "side": "A", + "time": 1761233884781, + "startPosition": "-2547.9759", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc56a3ed1c72110cdc6e3042e0c941c02078e00b762242f9f6932ea248624eab8", + "oid": 210489829117, + "crossed": true, + "fee": "1.709179", + "tid": 374025798969183, + "cloid": "0x00000000000000000000001643001490", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3865.2", + "sz": "0.4809", + "side": "A", + "time": 1761233884781, + "startPosition": "-2550.0816", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc56a3ed1c72110cdc6e3042e0c941c02078e00b762242f9f6932ea248624eab8", + "oid": 210489829117, + "crossed": true, + "fee": "0.390342", + "tid": 561223947289172, + "cloid": "0x00000000000000000000001643001490", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132111.0", + "side": "B", + "time": 1761233885543, + "startPosition": "-1973194318.0", + "dir": "Close Short", + "closedPnl": "233.043804", + "hash": "0xfacc87c57f2e8257fc46042e0c942702039700ab1a21a12a9e9533183e225c42", + "oid": 210489844366, + "crossed": true, + "fee": "0.105063", + "tid": 953691658471323, + "cloid": "0x00000000000000000000001644001386", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132082.0", + "side": "B", + "time": 1761233886973, + "startPosition": "-1973062207.0", + "dir": "Close Short", + "closedPnl": "232.860566", + "hash": "0xaa158e537a53de3aab8f042e0c943b02035e00391556fd0c4dde39a63957b825", + "oid": 210489874065, + "crossed": true, + "fee": "0.105068", + "tid": 964051175939213, + "cloid": "0x00000000000000000000001644001387", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "87971.0", + "side": "B", + "time": 1761233889539, + "startPosition": "-1972930125.0", + "dir": "Close Short", + "closedPnl": "154.916931", + "hash": "0x6605057382837a98677e042e0c945d0203af00591d86996a09cdb0c641875483", + "oid": 210489900564, + "crossed": true, + "fee": "0.070016", + "tid": 1083761529432024, + "cloid": "0x00000000000000000000001644001388", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "44047.0", + "side": "B", + "time": 1761233889539, + "startPosition": "-1972842154.0", + "dir": "Close Short", + "closedPnl": "77.566767", + "hash": "0x6605057382837a98677e042e0c945d0203af00591d86996a09cdb0c641875483", + "oid": 210489900564, + "crossed": true, + "fee": "0.035057", + "tid": 69964457858095, + "cloid": "0x00000000000000000000001644001388", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3865.8", + "sz": "0.0517", + "side": "A", + "time": 1761233891077, + "startPosition": "-2550.5625", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8a4151977768d7ae8bbb042e0c94710206c9007d126bf6802e09fcea366cb199", + "oid": 210489922804, + "crossed": true, + "fee": "0.04197", + "tid": 627036342117983, + "cloid": "0x00000000000000000000001643001492", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3865.8", + "sz": "2.5351", + "side": "A", + "time": 1761233891077, + "startPosition": "-2550.6142", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8a4151977768d7ae8bbb042e0c94710206c9007d126bf6802e09fcea366cb199", + "oid": 210489922804, + "crossed": true, + "fee": "2.058039", + "tid": 684207328927090, + "cloid": "0x00000000000000000000001643001492", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3866.9", + "sz": "1.68", + "side": "A", + "time": 1761233894790, + "startPosition": "-2553.1493", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6bdf44be790f47426d59042e0c949b0201a100a4140266140fa7f0113803212d", + "oid": 210489990056, + "crossed": true, + "fee": "1.364242", + "tid": 695008872504334, + "cloid": "0x00000000000000000000001643001494", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3866.9", + "sz": "0.9067", + "side": "A", + "time": 1761233894790, + "startPosition": "-2554.8293", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6bdf44be790f47426d59042e0c949b0201a100a4140266140fa7f0113803212d", + "oid": 210489990056, + "crossed": true, + "fee": "0.736284", + "tid": 852885583605595, + "cloid": "0x00000000000000000000001643001494", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3869.8", + "sz": "2.5851", + "side": "A", + "time": 1761233896969, + "startPosition": "-2555.736", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8d4474685943699b8ebe042e0c94b4020608004df446886d310d1fbb18474386", + "oid": 210490054136, + "crossed": true, + "fee": "2.100802", + "tid": 485776647295794, + "cloid": "0x00000000000000000000001643001495", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.9", + "sz": "2.5836", + "side": "A", + "time": 1761233901874, + "startPosition": "-2558.3211", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3753d6b9cbc99ff338cd042e0c94f20201ba009f66ccbec5db1c820c8acd79dd", + "oid": 210490114875, + "crossed": false, + "fee": "0.280024", + "tid": 734667884864584, + "cloid": "0x00000000000000000000001643001496", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "132018.0", + "side": "B", + "time": 1761233902807, + "startPosition": "-1972798107.0", + "dir": "Close Short", + "closedPnl": "231.559572", + "hash": "0xca04f28b88731971cb7e042e0c94ff0201bc0071237638436dcd9dde4776f35c", + "oid": 210490156714, + "crossed": true, + "fee": "0.105267", + "tid": 417902073350910, + "cloid": "0x00000000000000000000001644001392", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131723.0", + "side": "B", + "time": 1761233904402, + "startPosition": "-1972666089.0", + "dir": "Close Short", + "closedPnl": "231.042142", + "hash": "0x5ba1c7156d5886645d1b042e0c951402121100fb085ba536ff6a72682c5c604e", + "oid": 210490182003, + "crossed": true, + "fee": "0.105031", + "tid": 648273609649840, + "cloid": "0x00000000000000000000001644001393", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131692.0", + "side": "B", + "time": 1761233905752, + "startPosition": "-1972534366.0", + "dir": "Close Short", + "closedPnl": "230.856076", + "hash": "0xe9c963623c116755eb43042e0c95260202030047d71486278d920eb4fb154140", + "oid": 210490201691, + "crossed": true, + "fee": "0.105034", + "tid": 850958253714994, + "cloid": "0x00000000000000000000001644001394", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.2", + "sz": "2.5836", + "side": "A", + "time": 1761233906347, + "startPosition": "-2560.9047", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x7c424288360f57d47dbb042e0c952e0201d2006dd10276a6200aeddaf50331bf", + "oid": 210490207859, + "crossed": true, + "fee": "2.0998", + "tid": 191445397866329, + "cloid": "0x00000000000000000000001643001498", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131700.0", + "side": "B", + "time": 1761233907023, + "startPosition": "-1972402674.0", + "dir": "Close Short", + "closedPnl": "230.8701", + "hash": "0xf8a1cea3f2c8bce0fa1b042e0c953602055600898dcbdbb39c6a79f6b1cc96cb", + "oid": 210490216792, + "crossed": true, + "fee": "0.105041", + "tid": 251135509604710, + "cloid": "0x00000000000000000000001644001395", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.2", + "sz": "0.1514", + "side": "A", + "time": 1761233908517, + "startPosition": "-2563.4883", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6ee4c708f604727e705e042e0c954902060b00ee9107915012ad725bb5084c69", + "oid": 210490234347, + "crossed": true, + "fee": "0.123049", + "tid": 920430281045618, + "cloid": "0x00000000000000000000001643001499", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.2", + "sz": "1.68", + "side": "A", + "time": 1761233908517, + "startPosition": "-2563.6397", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6ee4c708f604727e705e042e0c954902060b00ee9107915012ad725bb5084c69", + "oid": 210490234347, + "crossed": true, + "fee": "1.365406", + "tid": 839299638041256, + "cloid": "0x00000000000000000000001643001499", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.2", + "sz": "0.7529", + "side": "A", + "time": 1761233908517, + "startPosition": "-2565.3197", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6ee4c708f604727e705e042e0c954902060b00ee9107915012ad725bb5084c69", + "oid": 210490234347, + "crossed": true, + "fee": "0.611913", + "tid": 691065591970601, + "cloid": "0x00000000000000000000001643001499", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131648.0", + "side": "B", + "time": 1761233910285, + "startPosition": "-1972270974.0", + "dir": "Close Short", + "closedPnl": "230.647296", + "hash": "0xee4ea116484d7727efc8042e0c956002021c00fbe34095f992174c6907415112", + "oid": 210490255905, + "crossed": true, + "fee": "0.105027", + "tid": 634983784448918, + "cloid": "0x00000000000000000000001644001396", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131661.0", + "side": "B", + "time": 1761233911702, + "startPosition": "-1972139326.0", + "dir": "Close Short", + "closedPnl": "230.670072", + "hash": "0x697ba7579930cf8d6af5042e0c95750209da003d3433ee5f0d4452aa5834a978", + "oid": 210490276845, + "crossed": true, + "fee": "0.105037", + "tid": 1084869609276491, + "cloid": "0x00000000000000000000001644001397", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.8", + "sz": "2.5839", + "side": "A", + "time": 1761233912222, + "startPosition": "-2566.0726", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x4d1df6124340dc0d4e97042e0c957e02083600f7de43fadff0e6a1650244b5f7", + "oid": 210490290984, + "crossed": true, + "fee": "2.100369", + "tid": 1004128802890383, + "cloid": "0x00000000000000000000001643001500", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131581.0", + "side": "B", + "time": 1761233917428, + "startPosition": "-1972007665.0", + "dir": "Close Short", + "closedPnl": "230.529912", + "hash": "0xca7c072f17106351cbf5042e0c95ba02054f0014b21382236e44b281d6143d3c", + "oid": 210490359256, + "crossed": true, + "fee": "0.104974", + "tid": 51536987639852, + "cloid": "0x00000000000000000000001644001398", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.1", + "sz": "2.5837", + "side": "A", + "time": 1761233917673, + "startPosition": "-2568.6565", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2f8561c184ba153c30ff042e0c95bd0201ea00a71fbd340ed34e0d1443bdef26", + "oid": 210490360198, + "crossed": true, + "fee": "2.100369", + "tid": 470782872762539, + "cloid": "0x00000000000000000000001643001501", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.0", + "sz": "0.0144", + "side": "A", + "time": 1761233923123, + "startPosition": "-2571.2402", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x01ea9d8b924cf7d30364042e0c960002049c00712d4016a5a5b348de5140d1bd", + "oid": 210490411590, + "crossed": true, + "fee": "0.011705", + "tid": 823697774214705, + "cloid": "0x00000000000000000000001643001503", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.0", + "sz": "2.076", + "side": "A", + "time": 1761233923123, + "startPosition": "-2571.2546", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x01ea9d8b924cf7d30364042e0c960002049c00712d4016a5a5b348de5140d1bd", + "oid": 210490411590, + "crossed": true, + "fee": "1.687601", + "tid": 645250439679473, + "cloid": "0x00000000000000000000001643001503", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.0", + "sz": "0.4929", + "side": "A", + "time": 1761233923123, + "startPosition": "-2573.3306", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x01ea9d8b924cf7d30364042e0c960002049c00712d4016a5a5b348de5140d1bd", + "oid": 210490411590, + "crossed": true, + "fee": "0.400683", + "tid": 202865319362828, + "cloid": "0x00000000000000000000001643001503", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "65796.0", + "side": "B", + "time": 1761233925368, + "startPosition": "-1971876084.0", + "dir": "Close Short", + "closedPnl": "115.340388", + "hash": "0x4f4bce0be1acb77f50c5042e0c961f02082700f17cafd651f314795ea0a09169", + "oid": 210490452849, + "crossed": true, + "fee": "0.052477", + "tid": 359816478535305, + "cloid": "0x00000000000000000000001644001401", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "65793.0", + "side": "B", + "time": 1761233925368, + "startPosition": "-1971810288.0", + "dir": "Close Short", + "closedPnl": "115.335129", + "hash": "0x4f4bce0be1acb77f50c5042e0c961f02082700f17cafd651f314795ea0a09169", + "oid": 210490452849, + "crossed": true, + "fee": "0.052475", + "tid": 566102376320780, + "cloid": "0x00000000000000000000001644001401", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131683.0", + "side": "B", + "time": 1761233926783, + "startPosition": "-1971744495.0", + "dir": "Close Short", + "closedPnl": "230.708616", + "hash": "0x0d0455aab37da98d0e7e042e0c963502035e00904e70c85fb0cd00fd72718377", + "oid": 210490476049, + "crossed": true, + "fee": "0.105055", + "tid": 737051707401239, + "cloid": "0x00000000000000000000001644001402", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3869.9", + "sz": "0.1", + "side": "A", + "time": 1761233927033, + "startPosition": "-2573.8235", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x7ef8b442394eb7648072042e0c96380205740027d441d63622c15f94f842914f", + "oid": 210490479165, + "crossed": true, + "fee": "0.081267", + "tid": 1075849621906641, + "cloid": "0x00000000000000000000001643001505", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3869.9", + "sz": "2.4836", + "side": "A", + "time": 1761233927033, + "startPosition": "-2573.9235", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x7ef8b442394eb7648072042e0c96380205740027d441d63622c15f94f842914f", + "oid": 210490479165, + "crossed": true, + "fee": "2.018369", + "tid": 361254921061266, + "cloid": "0x00000000000000000000001643001505", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131648.0", + "side": "B", + "time": 1761233927992, + "startPosition": "-1971612812.0", + "dir": "Close Short", + "closedPnl": "230.647296", + "hash": "0x23ddd8df04102a642557042e0c964302023200c49f134936c7a68431c314044e", + "oid": 210490495978, + "crossed": true, + "fee": "0.105027", + "tid": 221394313743646, + "cloid": "0x00000000000000000000001644001403", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131704.0", + "side": "B", + "time": 1761233929558, + "startPosition": "-1971481164.0", + "dir": "Close Short", + "closedPnl": "230.877112", + "hash": "0x24a72f9d747781d82620042e0c96580203ff00830f7aa0aac86fdaf0337b5bc2", + "oid": 210490518902, + "crossed": true, + "fee": "0.105044", + "tid": 975722253265986, + "cloid": "0x00000000000000000000001644001404", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131686.0", + "side": "B", + "time": 1761233930725, + "startPosition": "-1971349460.0", + "dir": "Close Short", + "closedPnl": "230.845558", + "hash": "0x33ee5aff29bc67cd3568042e0c96670203e800e4c4bf869fd7b70651e8b041b7", + "oid": 210490530748, + "crossed": true, + "fee": "0.10503", + "tid": 99795135290307, + "cloid": "0x00000000000000000000001644001405", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131670.0", + "side": "B", + "time": 1761233932171, + "startPosition": "-1971217774.0", + "dir": "Close Short", + "closedPnl": "230.55417", + "hash": "0x4a5216141413ce364bcb042e0c967a0201df00f9af16ed08ee1ac166d317a820", + "oid": 210490540606, + "crossed": true, + "fee": "0.105072", + "tid": 1094042128487755, + "cloid": "0x00000000000000000000001644001406", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.2", + "sz": "2.5841", + "side": "A", + "time": 1761233933347, + "startPosition": "-2576.4071", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf4f6f612e565cde3f670042e0c9689020c3100f88068ecb698bfa165a469a7ce", + "oid": 210490552368, + "crossed": true, + "fee": "2.100206", + "tid": 675134726391497, + "cloid": "0x00000000000000000000001643001506", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131690.0", + "side": "B", + "time": 1761233933856, + "startPosition": "-1971086104.0", + "dir": "Close Short", + "closedPnl": "230.72088", + "hash": "0xdc070db5d15dd050dd80042e0c968e02056f009b6c50ef227fcfb9089051aa3b", + "oid": 210490560200, + "crossed": true, + "fee": "0.10506", + "tid": 530456737015684, + "cloid": "0x00000000000000000000001644001407", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.5", + "sz": "2.5839", + "side": "A", + "time": 1761233935176, + "startPosition": "-2578.9912", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf3b6a3cd491b9182f530042e0c969e0201fb00b2e41eb055977f4f20081f6b6d", + "oid": 210490581934, + "crossed": true, + "fee": "2.100206", + "tid": 191073586364560, + "cloid": "0x00000000000000000000001643001507", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.5", + "sz": "1.5937", + "side": "A", + "time": 1761233936540, + "startPosition": "-2581.5751", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x7366ec4efce6a55b74e0042e0c96b20203dc003497e9c42d172f97a1bbea7f46", + "oid": 210490597676, + "crossed": true, + "fee": "1.295367", + "tid": 612423388392834, + "cloid": "0x00000000000000000000001643001508", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.5", + "sz": "0.9902", + "side": "A", + "time": 1761233936540, + "startPosition": "-2583.1688", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x7366ec4efce6a55b74e0042e0c96b20203dc003497e9c42d172f97a1bbea7f46", + "oid": 210490597676, + "crossed": true, + "fee": "0.804839", + "tid": 423353192232557, + "cloid": "0x00000000000000000000001643001508", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131648.0", + "side": "B", + "time": 1761233939788, + "startPosition": "-1970954414.0", + "dir": "Close Short", + "closedPnl": "230.647296", + "hash": "0xf4a64e14b421f2c8f620042e0c96da0204a800fa4f25119b986ef9677325ccb3", + "oid": 210490632462, + "crossed": true, + "fee": "0.105027", + "tid": 479838814675150, + "cloid": "0x00000000000000000000001644001408", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "4210.0", + "side": "B", + "time": 1761233941162, + "startPosition": "-1970822766.0", + "dir": "Close Short", + "closedPnl": "7.37592", + "hash": "0x938d82eac7ca0ce99507042e0c96eb0201dd00d062cd2bbb37562e3d86cde6d4", + "oid": 210490648177, + "crossed": true, + "fee": "0.003358", + "tid": 198794982180063, + "cloid": "0x00000000000000000000001644001409", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "127464.0", + "side": "B", + "time": 1761233941162, + "startPosition": "-1970818556.0", + "dir": "Close Short", + "closedPnl": "223.189464", + "hash": "0x938d82eac7ca0ce99507042e0c96eb0201dd00d062cd2bbb37562e3d86cde6d4", + "oid": 210490648177, + "crossed": true, + "fee": "0.101716", + "tid": 974792477638878, + "cloid": "0x00000000000000000000001644001409", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131660.0", + "side": "B", + "time": 1761233942570, + "startPosition": "-1970691092.0", + "dir": "Close Short", + "closedPnl": "230.66832", + "hash": "0x63ffc67433be1aab6579042e0c96fd02041a0059ceb1397d07c871c6f2b1f496", + "oid": 210490669260, + "crossed": true, + "fee": "0.105037", + "tid": 975162788357281, + "cloid": "0x00000000000000000000001644001410", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.4", + "sz": "2.5838", + "side": "A", + "time": 1761233942570, + "startPosition": "-2584.159", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2b9042ef999fbd6f2d09042e0c96fd02042800d53492dc41cf58ee4258939759", + "oid": 210490669273, + "crossed": true, + "fee": "2.100071", + "tid": 42388282851263, + "cloid": "0x00000000000000000000001643001511", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "4190.0", + "side": "B", + "time": 1761233944065, + "startPosition": "-1970559432.0", + "dir": "Close Short", + "closedPnl": "7.34088", + "hash": "0x32ee35e2ee6728f23467042e0c970d0201ad00c8896a47c4d6b6e135ad6b02dc", + "oid": 210490685270, + "crossed": true, + "fee": "0.003342", + "tid": 346087521872688, + "cloid": "0x00000000000000000000001644001411", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "127476.0", + "side": "B", + "time": 1761233944065, + "startPosition": "-1970555242.0", + "dir": "Close Short", + "closedPnl": "223.337952", + "hash": "0x32ee35e2ee6728f23467042e0c970d0201ad00c8896a47c4d6b6e135ad6b02dc", + "oid": 210490685270, + "crossed": true, + "fee": "0.101699", + "tid": 173456269804190, + "cloid": "0x00000000000000000000001644001411", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131666.0", + "side": "B", + "time": 1761233945473, + "startPosition": "-1970427766.0", + "dir": "Close Short", + "closedPnl": "230.678832", + "hash": "0x6d4afeda579a0da56ec4042e0c971d02026800bff29d2c771113aa2d169de790", + "oid": 210490698948, + "crossed": true, + "fee": "0.105041", + "tid": 666872204248521, + "cloid": "0x00000000000000000000001644001412", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131717.0", + "side": "B", + "time": 1761233946967, + "startPosition": "-1970296100.0", + "dir": "Close Short", + "closedPnl": "230.768184", + "hash": "0x3708273d8664bd0b3881042e0c972e0204c800232167dbdddad0d290456896f5", + "oid": 210490723853, + "crossed": true, + "fee": "0.105082", + "tid": 810790256210327, + "cloid": "0x00000000000000000000001644001413", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "4126.0", + "side": "B", + "time": 1761233948461, + "startPosition": "-1970164383.0", + "dir": "Close Short", + "closedPnl": "7.228752", + "hash": "0xd1444f4ed7e76319d2be042e0c973e020550003472ea81eb750cfaa196eb3d04", + "oid": 210490745850, + "crossed": true, + "fee": "0.003291", + "tid": 593925852912154, + "cloid": "0x00000000000000000000001644001414", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "127536.0", + "side": "B", + "time": 1761233948461, + "startPosition": "-1970160257.0", + "dir": "Close Short", + "closedPnl": "223.443072", + "hash": "0xd1444f4ed7e76319d2be042e0c973e020550003472ea81eb750cfaa196eb3d04", + "oid": 210490745850, + "crossed": true, + "fee": "0.101746", + "tid": 607515198540536, + "cloid": "0x00000000000000000000001644001414", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131748.0", + "side": "B", + "time": 1761233949928, + "startPosition": "-1970032721.0", + "dir": "Close Short", + "closedPnl": "230.822496", + "hash": "0xc1943864c61aac3fc30d042e0c975102058c004a611dcb11655ce3b7851e862a", + "oid": 210490785630, + "crossed": true, + "fee": "0.105107", + "tid": 925663560349350, + "cloid": "0x00000000000000000000001644001415", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "81798.0", + "side": "B", + "time": 1761233951624, + "startPosition": "-1969900973.0", + "dir": "Close Short", + "closedPnl": "143.310096", + "hash": "0x78581c9e9172489f79d1042e0c976502024e00842c7567711c20c7f15076228a", + "oid": 210490817817, + "crossed": true, + "fee": "0.065257", + "tid": 873734671536351, + "cloid": "0x00000000000000000000001644001416", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "49926.0", + "side": "B", + "time": 1761233951624, + "startPosition": "-1969819175.0", + "dir": "Close Short", + "closedPnl": "87.470352", + "hash": "0x78581c9e9172489f79d1042e0c976502024e00842c7567711c20c7f15076228a", + "oid": 210490817817, + "crossed": true, + "fee": "0.03983", + "tid": 1070818885205675, + "cloid": "0x00000000000000000000001644001416", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "88821.0", + "side": "B", + "time": 1761233952829, + "startPosition": "-1969769249.0", + "dir": "Close Short", + "closedPnl": "155.525571", + "hash": "0xc8d5409f9f8742c8ca4e042e0c977102039b00853a8a619a6c9debf25e8b1cb3", + "oid": 210490836744, + "crossed": true, + "fee": "0.070879", + "tid": 544460428912387, + "cloid": "0x00000000000000000000001644001417", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "42885.0", + "side": "B", + "time": 1761233952829, + "startPosition": "-1969680428.0", + "dir": "Close Short", + "closedPnl": "75.091635", + "hash": "0xc8d5409f9f8742c8ca4e042e0c977102039b00853a8a619a6c9debf25e8b1cb3", + "oid": 210490836744, + "crossed": true, + "fee": "0.034222", + "tid": 633934658242621, + "cloid": "0x00000000000000000000001644001417", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131699.0", + "side": "B", + "time": 1761233954412, + "startPosition": "-1969637543.0", + "dir": "Close Short", + "closedPnl": "230.736648", + "hash": "0xd05a98b9e54a1075d1d4042e0c9783020c7d009f804d2f477423440ca44dea60", + "oid": 210490861063, + "crossed": true, + "fee": "0.105068", + "tid": 268252979754975, + "cloid": "0x00000000000000000000001644001418", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131752.0", + "side": "B", + "time": 1761233955661, + "startPosition": "-1969505844.0", + "dir": "Close Short", + "closedPnl": "230.961256", + "hash": "0x43274a9356eda8da44a1042e0c97930204570078f1e0c7ace6eff5e615e182c4", + "oid": 210490882136, + "crossed": true, + "fee": "0.105082", + "tid": 432059742855350, + "cloid": "0x00000000000000000000001644001419", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131735.0", + "side": "B", + "time": 1761233956943, + "startPosition": "-1969374092.0", + "dir": "Close Short", + "closedPnl": "230.931455", + "hash": "0x97f12d608c08570c996a042e0c97a40203640046270b75de3bb9d8b34b0c30f7", + "oid": 210490904846, + "crossed": true, + "fee": "0.105069", + "tid": 1019422717896235, + "cloid": "0x00000000000000000000001644001420", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3868.8", + "sz": "0.0051", + "side": "A", + "time": 1761233957087, + "startPosition": "-2586.7428", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210490882134, + "crossed": false, + "fee": "0.000552", + "tid": 974414501094976, + "cloid": "0x00000000000000000000001643001514", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3868.8", + "sz": "0.0477", + "side": "A", + "time": 1761233958006, + "startPosition": "-2586.7479", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210490882134, + "crossed": false, + "fee": "0.005167", + "tid": 216045119850277, + "cloid": "0x00000000000000000000001643001514", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "39944.0", + "side": "B", + "time": 1761233958474, + "startPosition": "-1969242357.0", + "dir": "Close Short", + "closedPnl": "70.021832", + "hash": "0x2b5952c7ff3663e12cd3042e0c97b80206ab00ad9a3982b3cf21fe1abe3a3dcb", + "oid": 210490924807, + "crossed": true, + "fee": "0.031858", + "tid": 21246586486163, + "cloid": "0x00000000000000000000001644001421", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "91776.0", + "side": "B", + "time": 1761233958474, + "startPosition": "-1969202413.0", + "dir": "Close Short", + "closedPnl": "160.791552", + "hash": "0x2b5952c7ff3663e12cd3042e0c97b80206ab00ad9a3982b3cf21fe1abe3a3dcb", + "oid": 210490924807, + "crossed": true, + "fee": "0.073217", + "tid": 553329601697409, + "cloid": "0x00000000000000000000001644001421", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131699.0", + "side": "B", + "time": 1761233959935, + "startPosition": "-1969110637.0", + "dir": "Close Short", + "closedPnl": "230.736648", + "hash": "0x5b14ae5a9485ce435c8e042e0c97c90203b300402f88ed15fedd59ad5389a82d", + "oid": 210490943265, + "crossed": true, + "fee": "0.105068", + "tid": 355122178875679, + "cloid": "0x00000000000000000000001644001422", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131734.0", + "side": "B", + "time": 1761233961423, + "startPosition": "-1968978938.0", + "dir": "Close Short", + "closedPnl": "230.929702", + "hash": "0x0fbdce77e284cbaa1137042e0c97da02057e005d7d87ea7cb38679caa188a594", + "oid": 210490964433, + "crossed": true, + "fee": "0.105068", + "tid": 783553011923587, + "cloid": "0x00000000000000000000001644001423", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131738.0", + "side": "B", + "time": 1761233962791, + "startPosition": "-1968847204.0", + "dir": "Close Short", + "closedPnl": "230.936714", + "hash": "0x2f775f82b24035e930f1042e0c97ef0202b100684d4354bbd3400ad571440fd3", + "oid": 210490988692, + "crossed": true, + "fee": "0.105071", + "tid": 745472086405346, + "cloid": "0x00000000000000000000001644001424", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131736.0", + "side": "B", + "time": 1761233964542, + "startPosition": "-1968715466.0", + "dir": "Close Short", + "closedPnl": "230.801472", + "hash": "0xa58b41d04fb9c495a704042e0c980402027700b5eabce3674953ed230ebd9e80", + "oid": 210491017761, + "crossed": true, + "fee": "0.105097", + "tid": 524393723192064, + "cloid": "0x00000000000000000000001644001425", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3868.8", + "sz": "0.6723", + "side": "A", + "time": 1761233965031, + "startPosition": "-2586.7956", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210490980525, + "crossed": false, + "fee": "0.072827", + "tid": 437014330937218, + "cloid": "0x00000000000000000000001643001516", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131730.0", + "side": "B", + "time": 1761233965683, + "startPosition": "-1968583730.0", + "dir": "Close Short", + "closedPnl": "230.79096", + "hash": "0x24ebb1b5a62282e22665042e0c9814020526009b4125a1b4c8b45d0865265ccc", + "oid": 210491037667, + "crossed": true, + "fee": "0.105092", + "tid": 626558057609342, + "cloid": "0x00000000000000000000001644001426", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131683.0", + "side": "B", + "time": 1761233967366, + "startPosition": "-1968452000.0", + "dir": "Close Short", + "closedPnl": "230.576933", + "hash": "0x9cc333f05d0deca99e3c042e0c982c02024c00d5f8010b7b408bdf431c01c694", + "oid": 210491070802, + "crossed": true, + "fee": "0.105083", + "tid": 826540665885769, + "cloid": "0x00000000000000000000001644001427", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131724.0", + "side": "B", + "time": 1761233968649, + "startPosition": "-1968320317.0", + "dir": "Close Short", + "closedPnl": "230.780448", + "hash": "0x91dccdbb0fab00719356042e0c983b02027b00a0aaae1f4335a5790dceaeda5c", + "oid": 210491084203, + "crossed": true, + "fee": "0.105088", + "tid": 464129946207024, + "cloid": "0x00000000000000000000001644001428", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131745.0", + "side": "B", + "time": 1761233969985, + "startPosition": "-1968188593.0", + "dir": "Close Short", + "closedPnl": "230.948985", + "hash": "0x42b0d22cf33457fa442a042e0c984d02084200128e3776cce6797d7fb23831e4", + "oid": 210491104133, + "crossed": true, + "fee": "0.105077", + "tid": 1104827644335089, + "cloid": "0x00000000000000000000001644001429", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131732.0", + "side": "B", + "time": 1761233971390, + "startPosition": "-1968056848.0", + "dir": "Close Short", + "closedPnl": "230.926196", + "hash": "0xfd3236218e6acdabfeab042e0c98610202090007296dec7ea0fae1744d6ea796", + "oid": 210491119711, + "crossed": true, + "fee": "0.105066", + "tid": 855647785717520, + "cloid": "0x00000000000000000000001644001430", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "29785.0", + "side": "B", + "time": 1761233972737, + "startPosition": "-1967925116.0", + "dir": "Close Short", + "closedPnl": "52.213105", + "hash": "0x35d4a78a0a80ab7a374e042e0c98750201b7006fa583ca4cd99d52dcc9848564", + "oid": 210491133313, + "crossed": true, + "fee": "0.023755", + "tid": 590314473857684, + "cloid": "0x00000000000000000000001644001431", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "101961.0", + "side": "B", + "time": 1761233972737, + "startPosition": "-1967895331.0", + "dir": "Close Short", + "closedPnl": "178.737633", + "hash": "0x35d4a78a0a80ab7a374e042e0c98750201b7006fa583ca4cd99d52dcc9848564", + "oid": 210491133313, + "crossed": true, + "fee": "0.081322", + "tid": 861460277986224, + "cloid": "0x00000000000000000000001644001431", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131739.0", + "side": "B", + "time": 1761233974369, + "startPosition": "-1967793370.0", + "dir": "Close Short", + "closedPnl": "230.806728", + "hash": "0xd56273ce712f888fd6dc042e0c988a02048800b40c22a761792b1f213023627a", + "oid": 210491145300, + "crossed": true, + "fee": "0.1051", + "tid": 886854486330872, + "cloid": "0x00000000000000000000001644001432", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "87732.0", + "side": "B", + "time": 1761233979645, + "startPosition": "-1967661631.0", + "dir": "Close Short", + "closedPnl": "153.618732", + "hash": "0xd60d8aa2d108ce63d787042e0c98d402024400886c0bed3579d635f5900ca84e", + "oid": 210491188662, + "crossed": true, + "fee": "0.07001", + "tid": 6183351763236, + "cloid": "0x00000000000000000000001644001433", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "43916.0", + "side": "B", + "time": 1761233979645, + "startPosition": "-1967573899.0", + "dir": "Close Short", + "closedPnl": "76.896916", + "hash": "0xd60d8aa2d108ce63d787042e0c98d402024400886c0bed3579d635f5900ca84e", + "oid": 210491188662, + "crossed": true, + "fee": "0.035044", + "tid": 196264696787780, + "cloid": "0x00000000000000000000001644001433", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131667.0", + "side": "B", + "time": 1761233980867, + "startPosition": "-1967529983.0", + "dir": "Close Short", + "closedPnl": "230.548917", + "hash": "0x651198e121613ef1668b042e0c98e40202ea00c6bc645dc308da4433e06518dc", + "oid": 210491207222, + "crossed": true, + "fee": "0.10507", + "tid": 760233720749219, + "cloid": "0x00000000000000000000001644001434", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131683.0", + "side": "B", + "time": 1761233982224, + "startPosition": "-1967398316.0", + "dir": "Close Short", + "closedPnl": "230.576933", + "hash": "0x9977bda4d9ff39179af1042e0c98f6020281008a74f257e93d4068f798f31302", + "oid": 210491223422, + "crossed": true, + "fee": "0.105083", + "tid": 272337078213903, + "cloid": "0x00000000000000000000001644001435", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131683.0", + "side": "B", + "time": 1761233983477, + "startPosition": "-1967266633.0", + "dir": "Close Short", + "closedPnl": "230.576933", + "hash": "0x6ac75fa47392f5866c41042e0c990601db00778a0e9614580e900af73296cf71", + "oid": 210491235697, + "crossed": true, + "fee": "0.105083", + "tid": 823731833447013, + "cloid": "0x00000000000000000000001644001436", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131683.0", + "side": "B", + "time": 1761233984682, + "startPosition": "-1967134950.0", + "dir": "Close Short", + "closedPnl": "230.576933", + "hash": "0x23352945c889c86a24ae042e0c9913020101002b638ce73cc6fdd498878da254", + "oid": 210491246018, + "crossed": true, + "fee": "0.105083", + "tid": 341253288922082, + "cloid": "0x00000000000000000000001644001437", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.0", + "sz": "1.8588", + "side": "A", + "time": 1761233994907, + "startPosition": "-2587.4679", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x083624a3fe98996309af042e0c998701c6003c89999bb835abfecff6bd9c734d", + "oid": 210491273217, + "crossed": false, + "fee": "0.201419", + "tid": 480213320153090, + "cloid": "0x00000000000000000000001643001518", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.6", + "sz": "0.0874", + "side": "A", + "time": 1761233996853, + "startPosition": "-2589.3267", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3a6bc45bf58c1bc13be5042e0c99a20207460041908f3a93de346faeb48ff5ab", + "oid": 210491380489, + "crossed": false, + "fee": "0.009472", + "tid": 97351671502625, + "cloid": "0x00000000000000000000001643001519", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.6", + "sz": "0.0461", + "side": "A", + "time": 1761233997046, + "startPosition": "-2589.4141", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210491380489, + "crossed": false, + "fee": "0.004996", + "tid": 247105713231435, + "cloid": "0x00000000000000000000001643001519", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.6", + "sz": "0.1005", + "side": "A", + "time": 1761233998089, + "startPosition": "-2589.4602", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xbcf36ceb5cdf4ea4be6d042e0c99b10201f800d0f7d26d7660bc183e1bd3288f", + "oid": 210491380489, + "crossed": false, + "fee": "0.010891", + "tid": 936237699840303, + "cloid": "0x00000000000000000000001643001519", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131663.0", + "side": "B", + "time": 1761234002522, + "startPosition": "-1967003267.0", + "dir": "Close Short", + "closedPnl": "230.673576", + "hash": "0xd0cc0afe974664b6d245042e0c99e70209a900e4324983887494b651564a3ea1", + "oid": 210491470913, + "crossed": true, + "fee": "0.105039", + "tid": 221639168287643, + "cloid": "0x00000000000000000000001644001442", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131685.0", + "side": "B", + "time": 1761234004017, + "startPosition": "-1966871604.0", + "dir": "Close Short", + "closedPnl": "230.71212", + "hash": "0x6dfff045258f01f66f79042e0c99f8020a18002ac08220c811c89b97e482dbe1", + "oid": 210491498567, + "crossed": true, + "fee": "0.105056", + "tid": 264973648066718, + "cloid": "0x00000000000000000000001644001443", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.4", + "sz": "2.3498", + "side": "A", + "time": 1761234005963, + "startPosition": "-2589.5607", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb3576965bbc7fce3b4d1042e0c9a1202071a004b56cb1bb5572014b87acbd6ce", + "oid": 210491531304, + "crossed": false, + "fee": "0.25465", + "tid": 510701020643212, + "cloid": "0x00000000000000000000001643001522", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131696.0", + "side": "B", + "time": 1761234008787, + "startPosition": "-1966739919.0", + "dir": "Close Short", + "closedPnl": "230.731392", + "hash": "0xa59be3817f943bd2a715042e0c9a3102068400671a975aa449648ed43e9815bd", + "oid": 210491591691, + "crossed": true, + "fee": "0.105065", + "tid": 22540068161486, + "cloid": "0x00000000000000000000001644001444", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131684.0", + "side": "B", + "time": 1761234010176, + "startPosition": "-1966608223.0", + "dir": "Close Short", + "closedPnl": "230.842052", + "hash": "0xde2dc0f8c8c0d718dfa7042e0c9a42020b7a00de63c3f5ea81f66c4b87c4b103", + "oid": 210491610975, + "crossed": true, + "fee": "0.105028", + "tid": 860865969132520, + "cloid": "0x00000000000000000000001644001445", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131733.0", + "side": "B", + "time": 1761234011602, + "startPosition": "-1966476539.0", + "dir": "Close Short", + "closedPnl": "230.927949", + "hash": "0x831c0c29f08bac278495042e0c9a5402077c000f8b8ecaf926e4b77caf8f8612", + "oid": 210491633652, + "crossed": true, + "fee": "0.105067", + "tid": 571170539443751, + "cloid": "0x00000000000000000000001644001446", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131752.0", + "side": "B", + "time": 1761234012857, + "startPosition": "-1966344806.0", + "dir": "Close Short", + "closedPnl": "230.829504", + "hash": "0x790b75442b6d1bfc7a85042e0c9a65020b450029c6603ace1cd42096ea60f5e7", + "oid": 210491647116, + "crossed": true, + "fee": "0.10511", + "tid": 396487811369686, + "cloid": "0x00000000000000000000001644001447", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131752.0", + "side": "B", + "time": 1761234014655, + "startPosition": "-1966213054.0", + "dir": "Close Short", + "closedPnl": "230.961256", + "hash": "0x848732b610e386be8600042e0c9a7c0202aa009babe6a590284fde08cfe760a9", + "oid": 210491671665, + "crossed": true, + "fee": "0.105082", + "tid": 290509175629730, + "cloid": "0x00000000000000000000001644001448", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131752.0", + "side": "B", + "time": 1761234015968, + "startPosition": "-1966081302.0", + "dir": "Close Short", + "closedPnl": "230.961256", + "hash": "0x236e23f885a4bc9124e7042e0c9a8d0205c100de20a7db63c736cf4b44a8967b", + "oid": 210491690818, + "crossed": true, + "fee": "0.105082", + "tid": 931033504803449, + "cloid": "0x00000000000000000000001644001449", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "4092.0", + "side": "B", + "time": 1761234018180, + "startPosition": "-1965949550.0", + "dir": "Close Short", + "closedPnl": "7.173276", + "hash": "0x1203d749563670f9137d042e0c9aa40201ff002ef1398fcbb5cc829c153a4ae3", + "oid": 210491715019, + "crossed": true, + "fee": "0.003263", + "tid": 724036746931486, + "cloid": "0x00000000000000000000001644001450", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "127648.0", + "side": "B", + "time": 1761234018180, + "startPosition": "-1965945458.0", + "dir": "Close Short", + "closedPnl": "223.766944", + "hash": "0x1203d749563670f9137d042e0c9aa40201ff002ef1398fcbb5cc829c153a4ae3", + "oid": 210491715019, + "crossed": true, + "fee": "0.101809", + "tid": 1043040970868112, + "cloid": "0x00000000000000000000001644001450", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131739.0", + "side": "B", + "time": 1761234019943, + "startPosition": "-1965817810.0", + "dir": "Close Short", + "closedPnl": "230.938467", + "hash": "0x794a0c5751601b987ac3042e0c9abb020477003cec633a6a1d12b7aa1063f583", + "oid": 210491743274, + "crossed": true, + "fee": "0.105072", + "tid": 1090128561419695, + "cloid": "0x00000000000000000000001644001451", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.6", + "sz": "1.8276", + "side": "A", + "time": 1761234021526, + "startPosition": "-2591.9105", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0cf9059094728e110e72042e0c9acc0204bb00762f75ace3b0c1b0e3537667fb", + "oid": 210491743273, + "crossed": false, + "fee": "0.19812", + "tid": 809444236667353, + "cloid": "0x00000000000000000000001643001527", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "68329.0", + "side": "B", + "time": 1761234021726, + "startPosition": "-1965686071.0", + "dir": "Close Short", + "closedPnl": "119.780737", + "hash": "0x0fd9489f060d2add1153042e0c9ace0202b20084a10049afb3a1f3f1c50104c7", + "oid": 210491760877, + "crossed": true, + "fee": "0.054497", + "tid": 772131567680654, + "cloid": "0x00000000000000000000001644001452", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "63411.0", + "side": "B", + "time": 1761234021726, + "startPosition": "-1965617742.0", + "dir": "Close Short", + "closedPnl": "111.159483", + "hash": "0x0fd9489f060d2add1153042e0c9ace0202b20084a10049afb3a1f3f1c50104c7", + "oid": 210491760877, + "crossed": true, + "fee": "0.050575", + "tid": 607983794609952, + "cloid": "0x00000000000000000000001644001452", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.6", + "sz": "0.0388", + "side": "A", + "time": 1761234021826, + "startPosition": "-2593.7381", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x40086f85dbc749c94182042e0c9acf0202a9006b76ca689be3d11ad89acb23b3", + "oid": 210491743273, + "crossed": false, + "fee": "0.004206", + "tid": 538859251604447, + "cloid": "0x00000000000000000000001643001527", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.6", + "sz": "0.2681", + "side": "A", + "time": 1761234022219, + "startPosition": "-2593.7769", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x18a1ba84ea8f47b91a1b042e0c9ad6020212006a8582668bbc6a65d7a98321a3", + "oid": 210491743273, + "crossed": false, + "fee": "0.029063", + "tid": 924506424241111, + "cloid": "0x00000000000000000000001643001527", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131752.0", + "side": "B", + "time": 1761234023142, + "startPosition": "-1965554331.0", + "dir": "Close Short", + "closedPnl": "230.961256", + "hash": "0x604f42d6dcf928db61c8042e0c9ade0202a900bc77fc47ad0417ee299bfd02c6", + "oid": 210491776540, + "crossed": true, + "fee": "0.105082", + "tid": 220798413507761, + "cloid": "0x00000000000000000000001644001453", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.6", + "sz": "0.1163", + "side": "A", + "time": 1761234024342, + "startPosition": "-2594.045", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6e3a210ea159e3a66fb3042e0c9aed02065400f43c5d02781202cc61605dbd91", + "oid": 210491743273, + "crossed": false, + "fee": "0.012607", + "tid": 8598488311073, + "cloid": "0x00000000000000000000001643001527", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131718.0", + "side": "B", + "time": 1761234024912, + "startPosition": "-1965422579.0", + "dir": "Close Short", + "closedPnl": "230.769936", + "hash": "0xc7ad359f4235122dc926042e0c9af402012f0084dd3830ff6b75e0f20138ec18", + "oid": 210491790645, + "crossed": true, + "fee": "0.105083", + "tid": 516869441887796, + "cloid": "0x00000000000000000000001644001454", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.6", + "sz": "0.332", + "side": "A", + "time": 1761234025003, + "startPosition": "-2594.1613", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 210491743273, + "crossed": false, + "fee": "0.03599", + "tid": 615945464827755, + "cloid": "0x00000000000000000000001643001527", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.9", + "sz": "2.5836", + "side": "A", + "time": 1761234028629, + "startPosition": "-2594.4933", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x12d71ca80723b45c1450042e0c9b2002017a008da226d32eb69fc7fac6278e46", + "oid": 210491816518, + "crossed": false, + "fee": "0.280024", + "tid": 399795840966852, + "cloid": "0x00000000000000000000001643001528", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131683.0", + "side": "B", + "time": 1761234035775, + "startPosition": "-1965290861.0", + "dir": "Close Short", + "closedPnl": "230.708616", + "hash": "0xcbc0c53c86b633fbcd3a042e0c9b7902015e002221b952cd6f89708f45ba0de6", + "oid": 210491914614, + "crossed": true, + "fee": "0.105055", + "tid": 994412135459559, + "cloid": "0x00000000000000000000001644001455", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "87430.0", + "side": "B", + "time": 1761234037047, + "startPosition": "-1965159178.0", + "dir": "Close Short", + "closedPnl": "153.26479", + "hash": "0x9e154ca30e6073689f8f042e0c9b890204410088a963923a41ddf7f5cd644d53", + "oid": 210491927929, + "crossed": true, + "fee": "0.069732", + "tid": 691221123005427, + "cloid": "0x00000000000000000000001644001456", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "44288.0", + "side": "B", + "time": 1761234037047, + "startPosition": "-1965071748.0", + "dir": "Close Short", + "closedPnl": "77.636864", + "hash": "0x9e154ca30e6073689f8f042e0c9b890204410088a963923a41ddf7f5cd644d53", + "oid": 210491927929, + "crossed": true, + "fee": "0.035323", + "tid": 462493542323205, + "cloid": "0x00000000000000000000001644001456", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.6", + "sz": "0.3868", + "side": "A", + "time": 1761234038464, + "startPosition": "-2597.0769", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa68fc0edebe52e75a809042e0c9b9802054e00d386e84d474a586c40aae90860", + "oid": 210491949039, + "crossed": true, + "fee": "0.314401", + "tid": 614239432605970, + "cloid": "0x00000000000000000000001643001531", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.6", + "sz": "2.1963", + "side": "A", + "time": 1761234038464, + "startPosition": "-2597.4637", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa68fc0edebe52e75a809042e0c9b9802054e00d386e84d474a586c40aae90860", + "oid": 210491949039, + "crossed": true, + "fee": "1.785209", + "tid": 1024803329499621, + "cloid": "0x00000000000000000000001643001531", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3870.6", + "sz": "2.5838", + "side": "A", + "time": 1761234040303, + "startPosition": "-2599.66", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xea92387797de6c8aec0b042e0c9bae020477005d32d18b5c8e5ae3ca56d24675", + "oid": 210491963522, + "crossed": true, + "fee": "2.100179", + "tid": 1055028506507564, + "cloid": "0x00000000000000000000001643001532", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131752.0", + "side": "B", + "time": 1761234043518, + "startPosition": "-1965027460.0", + "dir": "Close Short", + "closedPnl": "230.961256", + "hash": "0xf317d021f81cef8af491042e0c9bcf0202b6000793100e5d96e07b74b710c975", + "oid": 210491988465, + "crossed": true, + "fee": "0.105082", + "tid": 456407245587554, + "cloid": "0x00000000000000000000001644001457", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131683.0", + "side": "B", + "time": 1761234045327, + "startPosition": "-1964895708.0", + "dir": "Close Short", + "closedPnl": "230.708616", + "hash": "0xc3c27220f637f873c53c042e0c9be60202350006913b1745678b1d73b53bd25e", + "oid": 210492006286, + "crossed": true, + "fee": "0.105055", + "tid": 809001991040692, + "cloid": "0x00000000000000000000001644001458", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131506.0", + "side": "B", + "time": 1761234046742, + "startPosition": "-1964764025.0", + "dir": "Close Short", + "closedPnl": "230.398512", + "hash": "0x514b8f455367e74752c5042e0c9bfb020357002aee6b0619f5143a98126bc131", + "oid": 210492017319, + "crossed": true, + "fee": "0.104914", + "tid": 810681211346176, + "cloid": "0x00000000000000000000001644001459", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "177.0", + "side": "B", + "time": 1761234046742, + "startPosition": "-1964632519.0", + "dir": "Close Short", + "closedPnl": "0.310104", + "hash": "0x514b8f455367e74752c5042e0c9bfb020357002aee6b0619f5143a98126bc131", + "oid": 210492017319, + "crossed": true, + "fee": "0.000141", + "tid": 233285654517795, + "cloid": "0x00000000000000000000001644001459", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131660.0", + "side": "B", + "time": 1761234051056, + "startPosition": "-1964632342.0", + "dir": "Close Short", + "closedPnl": "230.66832", + "hash": "0x491bc5414570d9fa4a95042e0c9c2f02061c0026e073f8ccece470940474b3e4", + "oid": 210492078042, + "crossed": true, + "fee": "0.105037", + "tid": 480376712071881, + "cloid": "0x00000000000000000000001644001460", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131694.0", + "side": "B", + "time": 1761234053009, + "startPosition": "-1964500682.0", + "dir": "Close Short", + "closedPnl": "230.727888", + "hash": "0x849e9b82029cc6bb8618042e0c9c4501d000b3679d9fe58d286746d4c190a0a6", + "oid": 210492097340, + "crossed": true, + "fee": "0.105064", + "tid": 976127072823403, + "cloid": "0x00000000000000000000001644001461", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131717.0", + "side": "B", + "time": 1761234054442, + "startPosition": "-1964368988.0", + "dir": "Close Short", + "closedPnl": "230.768184", + "hash": "0x6eb8365ba76fbbdb7031042e0c9c5902044100414262daad1280e1ae666395c6", + "oid": 210492111565, + "crossed": true, + "fee": "0.105082", + "tid": 630634388831114, + "cloid": "0x00000000000000000000001644001462", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131704.0", + "side": "B", + "time": 1761234059105, + "startPosition": "-1964237271.0", + "dir": "Close Short", + "closedPnl": "230.745408", + "hash": "0x3170f0cbfcf06e7032ea042e0c9c950203d600b197f38d42d5399c1ebbf4485a", + "oid": 210492154713, + "crossed": true, + "fee": "0.105072", + "tid": 91468607269598, + "cloid": "0x00000000000000000000001644001463", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.6", + "sz": "2.5835", + "side": "A", + "time": 1761234059382, + "startPosition": "-2602.2438", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb53b0a35f5d9b5bfb6b4042e0c9c9a0203bb001b90dcd4915903b588b4dd8faa", + "oid": 210492050614, + "crossed": false, + "fee": "0.280063", + "tid": 284093831917185, + "cloid": "0x00000000000000000000001643001534", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131717.0", + "side": "B", + "time": 1761234060452, + "startPosition": "-1964105567.0", + "dir": "Close Short", + "closedPnl": "230.768184", + "hash": "0x0a0c16cc621d601d0b85042e0c9ca702041e00b1fd107eefadd4c21f21113a07", + "oid": 210492169834, + "crossed": true, + "fee": "0.105082", + "tid": 390851159566351, + "cloid": "0x00000000000000000000001644001464", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "82562.0", + "side": "B", + "time": 1761234061871, + "startPosition": "-1963973850.0", + "dir": "Close Short", + "closedPnl": "144.731186", + "hash": "0xbd9893c857f39bd2bf12042e0c9cb902055200adf2f6baa461613f1b16f775bd", + "oid": 210492182362, + "crossed": true, + "fee": "0.065849", + "tid": 126226717505187, + "cloid": "0x00000000000000000000001644001465", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "49156.0", + "side": "B", + "time": 1761234061871, + "startPosition": "-1963891288.0", + "dir": "Close Short", + "closedPnl": "86.121312", + "hash": "0xbd9893c857f39bd2bf12042e0c9cb902055200adf2f6baa461613f1b16f775bd", + "oid": 210492182362, + "crossed": true, + "fee": "0.039216", + "tid": 1040540760919740, + "cloid": "0x00000000000000000000001644001465", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131718.0", + "side": "B", + "time": 1761234063122, + "startPosition": "-1963842132.0", + "dir": "Close Short", + "closedPnl": "230.769936", + "hash": "0x0cf1c915075b65f90e6b042e0c9cca0207a300faa25e84cbb0ba7467c65f3fe3", + "oid": 210492200748, + "crossed": true, + "fee": "0.105083", + "tid": 1014418794773525, + "cloid": "0x00000000000000000000001644001466", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.1", + "sz": "0.0624", + "side": "A", + "time": 1761234064537, + "startPosition": "-2604.8273", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf1a0f3b2b1745426f31a042e0c9cda02244500984c7772f995699f0570782e11", + "oid": 210492225863, + "crossed": true, + "fee": "0.050726", + "tid": 615209088196703, + "cloid": "0x00000000000000000000001643001535", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3871.1", + "sz": "2.5211", + "side": "A", + "time": 1761234064537, + "startPosition": "-2604.8897", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf1a0f3b2b1745426f31a042e0c9cda02244500984c7772f995699f0570782e11", + "oid": 210492225863, + "crossed": true, + "fee": "2.04948", + "tid": 500741095595502, + "cloid": "0x00000000000000000000001643001535", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131787.0", + "side": "B", + "time": 1761234068307, + "startPosition": "-1963710414.0", + "dir": "Close Short", + "closedPnl": "231.022611", + "hash": "0x5fd0a576b59cc561614a042e0c9d060205fb005c509fe433039950c974909f4c", + "oid": 210492278805, + "crossed": true, + "fee": "0.10511", + "tid": 680358116292077, + "cloid": "0x00000000000000000000001644001468", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131614.0", + "side": "B", + "time": 1761234070930, + "startPosition": "-1963578627.0", + "dir": "Close Short", + "closedPnl": "230.456114", + "hash": "0xb24b3d7e575d3314b3c4042e0c9d25020b9c0063f25051e65613e8d116510cff", + "oid": 210492323033, + "crossed": true, + "fee": "0.105027", + "tid": 168530071387972, + "cloid": "0x00000000000000000000001644001469", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131544.0", + "side": "B", + "time": 1761234153845, + "startPosition": "-1963447013.0", + "dir": "Close Short", + "closedPnl": "229.149648", + "hash": "0x43e3ad81a779e27c455d042e0ca10d0204660067427d014ee7ac58d4667dbc66", + "oid": 210493444384, + "crossed": true, + "fee": "0.10522", + "tid": 633287058595927, + "cloid": "0x00000000000000000000001644001489", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131336.0", + "side": "B", + "time": 1761234155040, + "startPosition": "-1963315469.0", + "dir": "Close Short", + "closedPnl": "228.655976", + "hash": "0xbc67598630f6fbf4bde1042e0ca11a0201bd006bcbfa1ac6603004d8effad5df", + "oid": 210493457240, + "crossed": true, + "fee": "0.105081", + "tid": 1048388132350059, + "cloid": "0x00000000000000000000001644001490", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131337.0", + "side": "B", + "time": 1761234156382, + "startPosition": "-1963184133.0", + "dir": "Close Short", + "closedPnl": "228.789054", + "hash": "0x55e50aa4f5f52e34575e042e0ca12702038c008a90f84d06f9adb5f7b4f9081e", + "oid": 210493467988, + "crossed": true, + "fee": "0.105055", + "tid": 488766892422322, + "cloid": "0x00000000000000000000001644001491", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131323.0", + "side": "B", + "time": 1761234157751, + "startPosition": "-1963052796.0", + "dir": "Close Short", + "closedPnl": "228.764666", + "hash": "0x9186630be5f9ff5e9300042e0ca13802047700f180fd1e30354f0e5ea4fdd949", + "oid": 210493489612, + "crossed": true, + "fee": "0.105043", + "tid": 209527364078066, + "cloid": "0x00000000000000000000001644001492", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "128677.0", + "side": "B", + "time": 1761234159151, + "startPosition": "-1962921473.0", + "dir": "Close Short", + "closedPnl": "224.155334", + "hash": "0xbe42b5d637ff043dbfbc042e0ca14c02033300bbd2f2230f620b6128f6f2de28", + "oid": 210493509353, + "crossed": true, + "fee": "0.102927", + "tid": 552600337251641, + "cloid": "0x00000000000000000000001644001493", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "2646.0", + "side": "B", + "time": 1761234159151, + "startPosition": "-1962792796.0", + "dir": "Close Short", + "closedPnl": "4.606686", + "hash": "0xbe42b5d637ff043dbfbc042e0ca14c02033300bbd2f2230f620b6128f6f2de28", + "oid": 210493509353, + "crossed": true, + "fee": "0.002117", + "tid": 852832393870526, + "cloid": "0x00000000000000000000001644001493", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "87430.0", + "side": "B", + "time": 1761234163338, + "startPosition": "-1962790150.0", + "dir": "Close Short", + "closedPnl": "152.30306", + "hash": "0x2e5c80299a6493ac2fd6042e0ca17d02023d000f3567b27ed2252b7c59686d96", + "oid": 210493580541, + "crossed": true, + "fee": "0.069934", + "tid": 970589969264372, + "cloid": "0x00000000000000000000001644001495", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "43997.0", + "side": "B", + "time": 1761234163338, + "startPosition": "-1962702720.0", + "dir": "Close Short", + "closedPnl": "76.642774", + "hash": "0x2e5c80299a6493ac2fd6042e0ca17d02023d000f3567b27ed2252b7c59686d96", + "oid": 210493580541, + "crossed": true, + "fee": "0.035192", + "tid": 618618502874390, + "cloid": "0x00000000000000000000001644001495", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131371.0", + "side": "B", + "time": 1761234164676, + "startPosition": "-1962658723.0", + "dir": "Close Short", + "closedPnl": "228.716911", + "hash": "0x511bde68764109245295042e0ca18b0207e5004e114427f6f4e489bb3544e30e", + "oid": 210493597801, + "crossed": true, + "fee": "0.105109", + "tid": 1119453108094833, + "cloid": "0x00000000000000000000001644001496", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "131323.0", + "side": "B", + "time": 1761234166807, + "startPosition": "-1962527352.0", + "dir": "Close Short", + "closedPnl": "229.027312", + "hash": "0x0ea50c5c4368eff3101e042e0ca1a302080f0041de6c0ec5b26db7af026cc9dd", + "oid": 210493641414, + "crossed": true, + "fee": "0.104988", + "tid": 302229145535785, + "cloid": "0x00000000000000000000001644001497", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131405.0", + "side": "B", + "time": 1761234168137, + "startPosition": "-1962396029.0", + "dir": "Close Short", + "closedPnl": "229.038915", + "hash": "0xbfc0283395bd916dc139042e0ca1b20204f1001930b0b03f6388d38654b16b58", + "oid": 210493662197, + "crossed": true, + "fee": "0.105081", + "tid": 327763999498622, + "cloid": "0x00000000000000000000001644001498", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131387.0", + "side": "B", + "time": 1761234170334, + "startPosition": "-1962264624.0", + "dir": "Close Short", + "closedPnl": "229.007541", + "hash": "0xb1fb9d84cc0be074b375042e0ca1ca020226006a670eff4655c448d78b0fba5f", + "oid": 210493690081, + "crossed": true, + "fee": "0.105067", + "tid": 358294762415739, + "cloid": "0x00000000000000000000001644001499", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "67618.0", + "side": "B", + "time": 1761234171748, + "startPosition": "-1962133237.0", + "dir": "Close Short", + "closedPnl": "117.858174", + "hash": "0x19e6d29362be3e9a1b60042e0ca1da0203790078fdb15d6cbdaf7de621b21884", + "oid": 210493706993, + "crossed": true, + "fee": "0.054072", + "tid": 423358100638701, + "cloid": "0x00000000000000000000001644001500", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "63788.0", + "side": "B", + "time": 1761234171748, + "startPosition": "-1962065619.0", + "dir": "Close Short", + "closedPnl": "111.182484", + "hash": "0x19e6d29362be3e9a1b60042e0ca1da0203790078fdb15d6cbdaf7de621b21884", + "oid": 210493706993, + "crossed": true, + "fee": "0.051009", + "tid": 206242409926754, + "cloid": "0x00000000000000000000001644001500", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131406.0", + "side": "B", + "time": 1761234173153, + "startPosition": "-1962001831.0", + "dir": "Close Short", + "closedPnl": "229.040658", + "hash": "0xee2e31c83917f239efa7042e0ca1eb0201ba00add41b110b91f6dd1af81bcc24", + "oid": 210493725723, + "crossed": true, + "fee": "0.105082", + "tid": 122098591091839, + "cloid": "0x00000000000000000000001644001501", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "64806.0", + "side": "B", + "time": 1761234174697, + "startPosition": "-1961870425.0", + "dir": "Close Short", + "closedPnl": "112.956858", + "hash": "0x6d6fba29ee5575a86ee9042e0ca200020705000f8958947a1138657cad594f93", + "oid": 210493739491, + "crossed": true, + "fee": "0.051824", + "tid": 611309361525343, + "cloid": "0x00000000000000000000001644001502", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "66591.0", + "side": "B", + "time": 1761234174697, + "startPosition": "-1961805619.0", + "dir": "Close Short", + "closedPnl": "116.068113", + "hash": "0x6d6fba29ee5575a86ee9042e0ca200020705000f8958947a1138657cad594f93", + "oid": 210493739491, + "crossed": true, + "fee": "0.053251", + "tid": 286324139349144, + "cloid": "0x00000000000000000000001644001502", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "79375.0", + "side": "B", + "time": 1761234179303, + "startPosition": "-1961739028.0", + "dir": "Close Short", + "closedPnl": "138.350625", + "hash": "0x9837dff45c87c9ae99b1042e0ca2380205c800d9f78ae8803c008b471b8ba399", + "oid": 210493802809, + "crossed": true, + "fee": "0.063474", + "tid": 229479299517528, + "cloid": "0x00000000000000000000001644001503", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "51997.0", + "side": "B", + "time": 1761234179303, + "startPosition": "-1961659653.0", + "dir": "Close Short", + "closedPnl": "90.630771", + "hash": "0x9837dff45c87c9ae99b1042e0ca2380205c800d9f78ae8803c008b471b8ba399", + "oid": 210493802809, + "crossed": true, + "fee": "0.04158", + "tid": 583708709278267, + "cloid": "0x00000000000000000000001644001503", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131439.0", + "side": "B", + "time": 1761234184543, + "startPosition": "-1961607656.0", + "dir": "Close Short", + "closedPnl": "229.098177", + "hash": "0x2e600bb50af1fbcb2fd9042e0ca278020507009aa5f51a9dd228b707c9f5d5b5", + "oid": 210493874380, + "crossed": true, + "fee": "0.105109", + "tid": 753345058156769, + "cloid": "0x00000000000000000000001644001506", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131431.0", + "side": "B", + "time": 1761234188924, + "startPosition": "-1961476217.0", + "dir": "Close Short", + "closedPnl": "229.084233", + "hash": "0x23a8fdd345cc094d2522042e0ca2b502084b00b8e0cf281fc771a92604cfe337", + "oid": 210493926832, + "crossed": true, + "fee": "0.105102", + "tid": 351964060154785, + "cloid": "0x00000000000000000000001644001508", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131406.0", + "side": "B", + "time": 1761234190296, + "startPosition": "-1961344786.0", + "dir": "Close Short", + "closedPnl": "229.040658", + "hash": "0x8ee357da1c0206cf905d042e0ca2c602013a00bfb70525a132ac032cdb05e0ba", + "oid": 210493947098, + "crossed": true, + "fee": "0.105082", + "tid": 820837127893024, + "cloid": "0x00000000000000000000001644001509", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131427.0", + "side": "B", + "time": 1761234194561, + "startPosition": "-1961213380.0", + "dir": "Close Short", + "closedPnl": "229.077261", + "hash": "0xebac76411836db0bed26042e0ca2fa0202f10026b339f9dd8f752193d73ab4f6", + "oid": 210494000638, + "crossed": true, + "fee": "0.105099", + "tid": 933228725666228, + "cloid": "0x00000000000000000000001644001511", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "97244.0", + "side": "B", + "time": 1761234205556, + "startPosition": "-1961081953.0", + "dir": "Close Short", + "closedPnl": "169.399048", + "hash": "0x760c145e2c1c20ec7785042e0ca38a02020f0043c71f3fbe19d4bfb0eb1ffad7", + "oid": 210494146077, + "crossed": true, + "fee": "0.077784", + "tid": 799297597504170, + "cloid": "0x00000000000000000000001644001514", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "34197.0", + "side": "B", + "time": 1761234205556, + "startPosition": "-1960984709.0", + "dir": "Close Short", + "closedPnl": "59.571174", + "hash": "0x760c145e2c1c20ec7785042e0ca38a02020f0043c71f3fbe19d4bfb0eb1ffad7", + "oid": 210494146077, + "crossed": true, + "fee": "0.027353", + "tid": 468879528242942, + "cloid": "0x00000000000000000000001644001514", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "63047.0", + "side": "B", + "time": 1761234206771, + "startPosition": "-1960950512.0", + "dir": "Close Short", + "closedPnl": "109.827874", + "hash": "0xf65a33174446ec1ff7d3042e0ca39b02017500fcdf4a0af29a22de6a034ac60a", + "oid": 210494158227, + "crossed": true, + "fee": "0.05043", + "tid": 567279649345984, + "cloid": "0x00000000000000000000001644001515", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "68325.0", + "side": "B", + "time": 1761234206771, + "startPosition": "-1960887465.0", + "dir": "Close Short", + "closedPnl": "119.02215", + "hash": "0xf65a33174446ec1ff7d3042e0ca39b02017500fcdf4a0af29a22de6a034ac60a", + "oid": 210494158227, + "crossed": true, + "fee": "0.054652", + "tid": 28834643112550, + "cloid": "0x00000000000000000000001644001515", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "3020.0", + "side": "B", + "time": 1761234208187, + "startPosition": "-1960819140.0", + "dir": "Close Short", + "closedPnl": "5.26084", + "hash": "0x24d0dd708358f7e4264a042e0ca3ab02013e00561e5c16b6c89988c3425cd1ce", + "oid": 210494171188, + "crossed": true, + "fee": "0.002415", + "tid": 476887898312124, + "cloid": "0x00000000000000000000001644001516", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "3020.0", + "side": "B", + "time": 1761234208187, + "startPosition": "-1960816120.0", + "dir": "Close Short", + "closedPnl": "5.26084", + "hash": "0x24d0dd708358f7e4264a042e0ca3ab02013e00561e5c16b6c89988c3425cd1ce", + "oid": 210494171188, + "crossed": true, + "fee": "0.002415", + "tid": 525024272878288, + "cloid": "0x00000000000000000000001644001516", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "125297.0", + "side": "B", + "time": 1761234208187, + "startPosition": "-1960813100.0", + "dir": "Close Short", + "closedPnl": "218.267374", + "hash": "0x24d0dd708358f7e4264a042e0ca3ab02013e00561e5c16b6c89988c3425cd1ce", + "oid": 210494171188, + "crossed": true, + "fee": "0.100223", + "tid": 121667019229941, + "cloid": "0x00000000000000000000001644001516", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131356.0", + "side": "B", + "time": 1761234209389, + "startPosition": "-1960687803.0", + "dir": "Close Short", + "closedPnl": "228.822152", + "hash": "0x2888ec99a2f856a12a02042e0ca3ba01bd00047f3dfb7573cc5197ec61fc308b", + "oid": 210494179334, + "crossed": true, + "fee": "0.10507", + "tid": 28060137037775, + "cloid": "0x00000000000000000000001644001517", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131358.0", + "side": "B", + "time": 1761234210692, + "startPosition": "-1960556447.0", + "dir": "Close Short", + "closedPnl": "228.825636", + "hash": "0x19dddce04ead94ec1b57042e0ca3cd02029100c5e9a0b3bebda688330da16ed6", + "oid": 210494186938, + "crossed": true, + "fee": "0.105071", + "tid": 57230302271087, + "cloid": "0x00000000000000000000001644001518", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131406.0", + "side": "B", + "time": 1761234212070, + "startPosition": "-1960425089.0", + "dir": "Close Short", + "closedPnl": "229.040658", + "hash": "0xf7a9e48ed1568f04f923042e0ca3de0206df00746c59add79b728fe1905a68ef", + "oid": 210494203579, + "crossed": true, + "fee": "0.105082", + "tid": 8749892983661, + "cloid": "0x00000000000000000000001644001519", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131405.0", + "side": "B", + "time": 1761234221890, + "startPosition": "-1960293683.0", + "dir": "Close Short", + "closedPnl": "229.038915", + "hash": "0x814ea149b281e7ee82c8042e0ca4510203eb002f4d8506c025174c9c7185c1d9", + "oid": 210494316261, + "crossed": true, + "fee": "0.105081", + "tid": 754792245614515, + "cloid": "0x00000000000000000000001644001520", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131475.0", + "side": "B", + "time": 1761234232729, + "startPosition": "-1960162278.0", + "dir": "Close Short", + "closedPnl": "230.3442", + "hash": "0xd1c9199019d45746d342042e0ca4d702040a0075b4d776187591c4e2d8d83131", + "oid": 210494514837, + "crossed": true, + "fee": "0.104889", + "tid": 342466292543420, + "cloid": "0x00000000000000000000001644001523", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131770.0", + "side": "B", + "time": 1761234237837, + "startPosition": "-1960030803.0", + "dir": "Close Short", + "closedPnl": "230.99281", + "hash": "0xdcebf84397fe6b0fde65042e0ca513020210002932f189e180b4a39656f244fa", + "oid": 210494618269, + "crossed": true, + "fee": "0.105097", + "tid": 766985020638596, + "cloid": "0x00000000000000000000001644001525", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131682.0", + "side": "B", + "time": 1761234239231, + "startPosition": "-1959899033.0", + "dir": "Close Short", + "closedPnl": "230.575182", + "hash": "0xca838a994340422fcbfd042e0ca5260203ee007ede4361016e4c35ec02441c1a", + "oid": 210494640134, + "crossed": true, + "fee": "0.105082", + "tid": 706470200685040, + "cloid": "0x00000000000000000000001644001526", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131648.0", + "side": "B", + "time": 1761234241674, + "startPosition": "-1959767351.0", + "dir": "Close Short", + "closedPnl": "230.515648", + "hash": "0x1a2e954d75dac7c61ba8042e0ca54602035f003310dde698bdf740a034dea1b0", + "oid": 210494669087, + "crossed": false, + "fee": "0.014007", + "tid": 403951552743394, + "cloid": "0x00000000000000000000001644001527", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131648.0", + "side": "B", + "time": 1761234257156, + "startPosition": "-1959635703.0", + "dir": "Close Short", + "closedPnl": "230.647296", + "hash": "0x31eb8b1cbf85668e3365042e0ca603020d4100025a888560d5b4366f7e894078", + "oid": 210494974424, + "crossed": true, + "fee": "0.105027", + "tid": 329596137804382, + "cloid": "0x00000000000000000000001644001533", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131731.0", + "side": "B", + "time": 1761234258690, + "startPosition": "-1959504055.0", + "dir": "Close Short", + "closedPnl": "230.792712", + "hash": "0x24dbeb6eb71c70e02655042e0ca6170212be0054521f8fb2c8a496c176104aca", + "oid": 210495005095, + "crossed": true, + "fee": "0.105093", + "tid": 548659170335825, + "cloid": "0x00000000000000000000001644001534", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131752.0", + "side": "B", + "time": 1761234260089, + "startPosition": "-1959372324.0", + "dir": "Close Short", + "closedPnl": "230.961256", + "hash": "0x9c0cf804ea6c89d99d86042e0ca62b02075700ea856fa8ab3fd5a357a96063c4", + "oid": 210495038132, + "crossed": true, + "fee": "0.105082", + "tid": 994138375154958, + "cloid": "0x00000000000000000000001644001535", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131738.0", + "side": "B", + "time": 1761234262024, + "startPosition": "-1959240572.0", + "dir": "Close Short", + "closedPnl": "230.804976", + "hash": "0xa5d5441d7b180593a74f042e0ca6420204e70003161b2465499def703a1bdf7e", + "oid": 210495071071, + "crossed": true, + "fee": "0.105099", + "tid": 570907286774414, + "cloid": "0x00000000000000000000001644001536", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131669.0", + "side": "B", + "time": 1761234263485, + "startPosition": "-1959108834.0", + "dir": "Close Short", + "closedPnl": "230.552419", + "hash": "0xcaeeeeb79dad1156cc68042e0ca65402041e009d38a030286eb79a0a5ca0eb41", + "oid": 210495094810, + "crossed": true, + "fee": "0.105071", + "tid": 506022203926679, + "cloid": "0x00000000000000000000001644001537", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131469.0", + "side": "B", + "time": 1761234264818, + "startPosition": "-1958977165.0", + "dir": "Close Short", + "closedPnl": "230.202219", + "hash": "0x56fb1df6e1d4188c5874042e0ca6630207ce00dc7cd7375efac3c949a0d7f276", + "oid": 210495125684, + "crossed": true, + "fee": "0.104912", + "tid": 386439927301905, + "cloid": "0x00000000000000000000001644001538", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "249.0", + "side": "B", + "time": 1761234264818, + "startPosition": "-1958845696.0", + "dir": "Close Short", + "closedPnl": "0.435999", + "hash": "0x56fb1df6e1d4188c5874042e0ca6630207ce00dc7cd7375efac3c949a0d7f276", + "oid": 210495125684, + "crossed": true, + "fee": "0.000198", + "tid": 1040800394950602, + "cloid": "0x00000000000000000000001644001538", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131721.0", + "side": "B", + "time": 1761234266227, + "startPosition": "-1958845447.0", + "dir": "Close Short", + "closedPnl": "230.643471", + "hash": "0xd4397e2cb45fc98dd5b3042e0ca67402112100124f52e85f7802297f7353a378", + "oid": 210495151808, + "crossed": true, + "fee": "0.105113", + "tid": 622248960958284, + "cloid": "0x00000000000000000000001644001539", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131599.0", + "side": "B", + "time": 1761234315104, + "startPosition": "-1958713726.0", + "dir": "Close Short", + "closedPnl": "229.377057", + "hash": "0x0f9e4564a9d65d101118042e0ca8b9020620004a44d97be2b366f0b768da36fa", + "oid": 210495944112, + "crossed": true, + "fee": "0.105237", + "tid": 617998479411944, + "cloid": "0x00000000000000000000001644001557", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131406.0", + "side": "B", + "time": 1761234316346, + "startPosition": "-1958582127.0", + "dir": "Close Short", + "closedPnl": "229.040658", + "hash": "0x4742d9659f9341e448bc042e0ca8c902058c004b3a9660b6eb0b84b85e971bce", + "oid": 210495955538, + "crossed": true, + "fee": "0.105082", + "tid": 1067272996675596, + "cloid": "0x00000000000000000000001644001558", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131427.0", + "side": "B", + "time": 1761234325842, + "startPosition": "-1958450721.0", + "dir": "Close Short", + "closedPnl": "229.077261", + "hash": "0xa4570770d9a81a55a5d0042e0ca940020242005674ab3927481fb2c398abf440", + "oid": 210496112105, + "crossed": true, + "fee": "0.105099", + "tid": 179851504762884, + "cloid": "0x00000000000000000000001644001563", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131440.0", + "side": "B", + "time": 1761234333534, + "startPosition": "-1958319294.0", + "dir": "Close Short", + "closedPnl": "229.09992", + "hash": "0xb09df54b096ebec3b217042e0ca9a702045b0030a461dd955466a09dc86298ae", + "oid": 210496230317, + "crossed": true, + "fee": "0.105109", + "tid": 759619283037485, + "cloid": "0x00000000000000000000001644001567", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131350.0", + "side": "B", + "time": 1761234335744, + "startPosition": "-1958187854.0", + "dir": "Close Short", + "closedPnl": "228.8117", + "hash": "0x663dc906a6adb8f967b7042e0ca9c002051200ec41a0d7cb0a06745965a192e4", + "oid": 210496268599, + "crossed": true, + "fee": "0.105065", + "tid": 181054802656203, + "cloid": "0x00000000000000000000001644001568", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131371.0", + "side": "B", + "time": 1761234337583, + "startPosition": "-1958056504.0", + "dir": "Close Short", + "closedPnl": "228.848282", + "hash": "0xfa7c015140f70628fbf5042e0ca9d60206110036dbfa24fb9e44aca3fffae013", + "oid": 210496309735, + "crossed": true, + "fee": "0.105082", + "tid": 884560526121054, + "cloid": "0x00000000000000000000001644001569", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131371.0", + "side": "B", + "time": 1761234338887, + "startPosition": "-1957925133.0", + "dir": "Close Short", + "closedPnl": "228.848282", + "hash": "0x9a390576dcd37c569bb2042e0ca9e90206e0005c77d69b283e01b0c99bd75641", + "oid": 210496329688, + "crossed": true, + "fee": "0.105082", + "tid": 375376590610031, + "cloid": "0x00000000000000000000001644001570", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131372.0", + "side": "B", + "time": 1761234341015, + "startPosition": "-1957793762.0", + "dir": "Close Short", + "closedPnl": "228.850024", + "hash": "0xb626e4fe3df98714b7a0042e0caa0602017100e3d8fca5e659ef9050fcfd60ff", + "oid": 210496356528, + "crossed": true, + "fee": "0.105083", + "tid": 104285175603037, + "cloid": "0x00000000000000000000001644001571", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "128050.0", + "side": "B", + "time": 1761234342537, + "startPosition": "-1957662390.0", + "dir": "Close Short", + "closedPnl": "223.0631", + "hash": "0xf85e92d19957ede3f9d8042e0caa1d0201e400b7345b0cb69c273e24585bc7ce", + "oid": 210496373763, + "crossed": true, + "fee": "0.102425", + "tid": 196933063146544, + "cloid": "0x00000000000000000000001644001572", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "3322.0", + "side": "B", + "time": 1761234342537, + "startPosition": "-1957534340.0", + "dir": "Close Short", + "closedPnl": "5.786924", + "hash": "0xf85e92d19957ede3f9d8042e0caa1d0201e400b7345b0cb69c273e24585bc7ce", + "oid": 210496373763, + "crossed": true, + "fee": "0.002657", + "tid": 554867996473565, + "cloid": "0x00000000000000000000001644001572", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131365.0", + "side": "B", + "time": 1761234343834, + "startPosition": "-1957531018.0", + "dir": "Close Short", + "closedPnl": "228.83783", + "hash": "0x440aba8adc6eaf194584042e0caa310204d900707761cdebe7d365dd9b628903", + "oid": 210496386562, + "crossed": true, + "fee": "0.105077", + "tid": 1018101443792015, + "cloid": "0x00000000000000000000001644001573", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "704.0", + "side": "B", + "time": 1761234345240, + "startPosition": "-1957399653.0", + "dir": "Close Short", + "closedPnl": "1.226368", + "hash": "0x1e80fa9f2628d6461ffa042e0caa450204710084c12bf518c249a5f1e52cb030", + "oid": 210496410110, + "crossed": true, + "fee": "0.000563", + "tid": 745052506408622, + "cloid": "0x00000000000000000000001644001574", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "128603.0", + "side": "B", + "time": 1761234345240, + "startPosition": "-1957398949.0", + "dir": "Close Short", + "closedPnl": "224.026426", + "hash": "0x1e80fa9f2628d6461ffa042e0caa450204710084c12bf518c249a5f1e52cb030", + "oid": 210496410110, + "crossed": true, + "fee": "0.102868", + "tid": 370782595165581, + "cloid": "0x00000000000000000000001644001574", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "2058.0", + "side": "B", + "time": 1761234345240, + "startPosition": "-1957270346.0", + "dir": "Close Short", + "closedPnl": "3.585036", + "hash": "0x1e80fa9f2628d6461ffa042e0caa450204710084c12bf518c249a5f1e52cb030", + "oid": 210496410110, + "crossed": true, + "fee": "0.001646", + "tid": 445128712474893, + "cloid": "0x00000000000000000000001644001574", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131390.0", + "side": "B", + "time": 1761234346638, + "startPosition": "-1957268288.0", + "dir": "Close Short", + "closedPnl": "228.88138", + "hash": "0xb7b0cfecb39518ddb92a042e0caa590204fc00d24e9837af5b797b3f7298f2c8", + "oid": 210496428593, + "crossed": true, + "fee": "0.105097", + "tid": 1124810832528610, + "cloid": "0x00000000000000000000001644001575", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "129052.0", + "side": "B", + "time": 1761234347792, + "startPosition": "-1957136898.0", + "dir": "Close Short", + "closedPnl": "224.808584", + "hash": "0x4a725de5d3cc62bd4bec042e0caa690202a700cb6ecf818fee3b093892c03ca7", + "oid": 210496449039, + "crossed": true, + "fee": "0.103227", + "tid": 930472323211252, + "cloid": "0x00000000000000000000001644001576", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "2320.0", + "side": "B", + "time": 1761234347792, + "startPosition": "-1957007846.0", + "dir": "Close Short", + "closedPnl": "4.04144", + "hash": "0x4a725de5d3cc62bd4bec042e0caa690202a700cb6ecf818fee3b093892c03ca7", + "oid": 210496449039, + "crossed": true, + "fee": "0.001855", + "tid": 253160080191082, + "cloid": "0x00000000000000000000001644001576", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131365.0", + "side": "B", + "time": 1761234349114, + "startPosition": "-1957005526.0", + "dir": "Close Short", + "closedPnl": "228.83783", + "hash": "0xa9adcd459a53b765ab27042e0caa7b02161e002b3556d6374d76789859579150", + "oid": 210496473455, + "crossed": true, + "fee": "0.105077", + "tid": 613010554903761, + "cloid": "0x00000000000000000000001644001577", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131365.0", + "side": "B", + "time": 1761234350646, + "startPosition": "-1956874161.0", + "dir": "Close Short", + "closedPnl": "228.706465", + "hash": "0x04970b4f8b6127d50610042e0caa8c0204420035266446a7a85fb6a24a6501bf", + "oid": 210496493642, + "crossed": true, + "fee": "0.105105", + "tid": 89406195297770, + "cloid": "0x00000000000000000000001644001578", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131371.0", + "side": "B", + "time": 1761234351876, + "startPosition": "-1956742796.0", + "dir": "Close Short", + "closedPnl": "228.848282", + "hash": "0x23992d673655a8492512042e0caa9a020703004cd158c71bc761d8b9f5598233", + "oid": 210496506567, + "crossed": true, + "fee": "0.105082", + "tid": 417344449258558, + "cloid": "0x00000000000000000000001644001579", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131372.0", + "side": "B", + "time": 1761234353103, + "startPosition": "-1956611425.0", + "dir": "Close Short", + "closedPnl": "228.718652", + "hash": "0xb56d502033a1c98fb6e7042e0caaa90202150005cea4e8615935fb72f2a5a37a", + "oid": 210496518887, + "crossed": true, + "fee": "0.10511", + "tid": 909663107344969, + "cloid": "0x00000000000000000000001644001580", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131371.0", + "side": "B", + "time": 1761234354284, + "startPosition": "-1956480053.0", + "dir": "Close Short", + "closedPnl": "228.848282", + "hash": "0x8615f5540bfc6c94878f042e0caab50203a60039a6ff8b6629dea0a6caf0467f", + "oid": 210496533548, + "crossed": true, + "fee": "0.105082", + "tid": 460391796626043, + "cloid": "0x00000000000000000000001644001581", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131353.0", + "side": "B", + "time": 1761234355618, + "startPosition": "-1956348682.0", + "dir": "Close Short", + "closedPnl": "228.685573", + "hash": "0x9352f08a76c1f61894cc042e0caac4020350007011c514ea371b9bdd35c5d003", + "oid": 210496554228, + "crossed": true, + "fee": "0.105095", + "tid": 660410743846030, + "cloid": "0x00000000000000000000001644001582", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131406.0", + "side": "B", + "time": 1761234356905, + "startPosition": "-1956217329.0", + "dir": "Close Short", + "closedPnl": "228.909252", + "hash": "0x7ea78ee1d72b1f2b8021042e0caad202108000c7722e3dfd22703a34962ef916", + "oid": 210496574667, + "crossed": true, + "fee": "0.10511", + "tid": 290296719582945, + "cloid": "0x00000000000000000000001644001583", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "3941.0", + "side": "B", + "time": 1761234358801, + "startPosition": "-1956085923.0", + "dir": "Close Short", + "closedPnl": "6.861281", + "hash": "0x6980499f15abc2dd6afa042e0caae90203f50084b0aee1af0d48f4f1d4af9cc8", + "oid": 210496604049, + "crossed": false, + "fee": "0.00042", + "tid": 718718963897278, + "cloid": "0x00000000000000000000001644001584", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "3969.0", + "side": "B", + "time": 1761234360275, + "startPosition": "-1956081982.0", + "dir": "Close Short", + "closedPnl": "6.910029", + "hash": "0x834a603f6beb3eba84c4042e0caafc02015a002506ee5d8c27130b922aef18a5", + "oid": 210496624265, + "crossed": true, + "fee": "0.003175", + "tid": 43977689627051, + "cloid": "0x00000000000000000000001644001585", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "123393.0", + "side": "B", + "time": 1761234361629, + "startPosition": "-1956078013.0", + "dir": "Close Short", + "closedPnl": "214.827213", + "hash": "0x081b1847d9c48a9e0994042e0cab0c020998002d74c7a970abe3c39a98c86488", + "oid": 210496624265, + "crossed": false, + "fee": "0.013163", + "tid": 917381461541781, + "cloid": "0x00000000000000000000001644001585", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131337.0", + "side": "B", + "time": 1761234363171, + "startPosition": "-1955954620.0", + "dir": "Close Short", + "closedPnl": "228.657717", + "hash": "0xcf08d52168d4c40dd082042e0cab1e0202d7000703d7e2df72d1807427d89df8", + "oid": 210496661429, + "crossed": true, + "fee": "0.105082", + "tid": 484056616919011, + "cloid": "0x00000000000000000000001644001586", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "4004.0", + "side": "B", + "time": 1761234364491, + "startPosition": "-1955823283.0", + "dir": "Close Short", + "closedPnl": "6.970964", + "hash": "0xc2d6721fbea00ae5c450042e0cab30020762000559a329b7669f1d727da3e4d0", + "oid": 210496680401, + "crossed": true, + "fee": "0.003203", + "tid": 973818873763405, + "cloid": "0x00000000000000000000001644001587", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "127341.0", + "side": "B", + "time": 1761234364491, + "startPosition": "-1955819279.0", + "dir": "Close Short", + "closedPnl": "221.700681", + "hash": "0xc2d6721fbea00ae5c450042e0cab30020762000559a329b7669f1d727da3e4d0", + "oid": 210496680401, + "crossed": true, + "fee": "0.101885", + "tid": 994684648544399, + "cloid": "0x00000000000000000000001644001587", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "129823.0", + "side": "B", + "time": 1761234365719, + "startPosition": "-1955691938.0", + "dir": "Close Short", + "closedPnl": "226.021843", + "hash": "0x8587c08ababcee868701042e0cab4002037b007055b00d5829506bdd79b0c871", + "oid": 210496699520, + "crossed": true, + "fee": "0.103871", + "tid": 33410464015574, + "cloid": "0x00000000000000000000001644001588", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "1536.0", + "side": "B", + "time": 1761234365719, + "startPosition": "-1955562115.0", + "dir": "Close Short", + "closedPnl": "2.674176", + "hash": "0x8587c08ababcee868701042e0cab4002037b007055b00d5829506bdd79b0c871", + "oid": 210496699520, + "crossed": true, + "fee": "0.001228", + "tid": 445759545806853, + "cloid": "0x00000000000000000000001644001588", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131392.0", + "side": "B", + "time": 1761234366821, + "startPosition": "-1955560579.0", + "dir": "Close Short", + "closedPnl": "228.753472", + "hash": "0x193de38d34e85d2a1ab7042e0cab4d0205150072cfeb7bfcbd068edff3ec3714", + "oid": 210496718789, + "crossed": true, + "fee": "0.105126", + "tid": 1065615977579235, + "cloid": "0x00000000000000000000001644001589", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "11463.0", + "side": "B", + "time": 1761234380988, + "startPosition": "-1955429187.0", + "dir": "Close Short", + "closedPnl": "19.876842", + "hash": "0x18e49972eb70c5921a5e042e0cabf702029400588673e464bcad44c5aa749f7c", + "oid": 210496973669, + "crossed": true, + "fee": "0.009188", + "tid": 280188849041864, + "cloid": "0x00000000000000000000001644001595", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "119714.0", + "side": "B", + "time": 1761234380988, + "startPosition": "-1955417724.0", + "dir": "Close Short", + "closedPnl": "207.584076", + "hash": "0x18e49972eb70c5921a5e042e0cabf702029400588673e464bcad44c5aa749f7c", + "oid": 210496973669, + "crossed": true, + "fee": "0.095959", + "tid": 425020204442140, + "cloid": "0x00000000000000000000001644001595", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "131062.0", + "side": "B", + "time": 1761234391917, + "startPosition": "-1955298010.0", + "dir": "Close Short", + "closedPnl": "227.261508", + "hash": "0x5bed6e10028097b95d67042e0cac7f02078500f59d83b68bffb61962c18471a3", + "oid": 210497102852, + "crossed": true, + "fee": "0.105055", + "tid": 477048974330014, + "cloid": "0x00000000000000000000001644001596", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "130871.0", + "side": "B", + "time": 1761234393322, + "startPosition": "-1955166948.0", + "dir": "Close Short", + "closedPnl": "226.930314", + "hash": "0xba3c5eb4524ce2d9bbb6042e0cac900203cc0099ed4001ab5e050a071140bcc4", + "oid": 210497118639, + "crossed": true, + "fee": "0.104902", + "tid": 671143841505586, + "cloid": "0x00000000000000000000001644001597", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "198.0", + "side": "B", + "time": 1761234393322, + "startPosition": "-1955036077.0", + "dir": "Close Short", + "closedPnl": "0.343332", + "hash": "0xba3c5eb4524ce2d9bbb6042e0cac900203cc0099ed4001ab5e050a071140bcc4", + "oid": 210497118639, + "crossed": true, + "fee": "0.000158", + "tid": 34014587393958, + "cloid": "0x00000000000000000000001644001597", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "131089.0", + "side": "B", + "time": 1761234398720, + "startPosition": "-1955035879.0", + "dir": "Close Short", + "closedPnl": "227.308326", + "hash": "0x5a5f3ea1b2285a2b5bd8042e0caccb02041300874d2b78fdfe27e9f4712c3415", + "oid": 210497175646, + "crossed": true, + "fee": "0.105077", + "tid": 108036713185855, + "cloid": "0x00000000000000000000001644001599", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "124224.0", + "side": "B", + "time": 1761234404573, + "startPosition": "-1954904790.0", + "dir": "Close Short", + "closedPnl": "215.404416", + "hash": "0xf28a70c473e8ec8df404042e0cad0f02023b00aa0eec0b6096531c1732ecc678", + "oid": 210497244079, + "crossed": true, + "fee": "0.099574", + "tid": 575705841110637, + "cloid": "0x00000000000000000000001644001601", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "6854.0", + "side": "B", + "time": 1761234404573, + "startPosition": "-1954780566.0", + "dir": "Close Short", + "closedPnl": "11.884836", + "hash": "0xf28a70c473e8ec8df404042e0cad0f02023b00aa0eec0b6096531c1732ecc678", + "oid": 210497244079, + "crossed": true, + "fee": "0.005493", + "tid": 31799997028396, + "cloid": "0x00000000000000000000001644001601", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "131096.0", + "side": "B", + "time": 1761234419372, + "startPosition": "-1954773712.0", + "dir": "Close Short", + "closedPnl": "227.189368", + "hash": "0x750f6c41b7fd831b7689042e0cadc80203c7002752f0a1ed18d8179476f15d06", + "oid": 210497462102, + "crossed": true, + "fee": "0.10511", + "tid": 105176134507548, + "cloid": "0x00000000000000000000001644001605", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "131057.0", + "side": "B", + "time": 1761234420566, + "startPosition": "-1954642616.0", + "dir": "Close Short", + "closedPnl": "227.121781", + "hash": "0xed7b5a8bd7685de0eef5042e0cadd60205100071726b7cb2914405de966c37cb", + "oid": 210497477778, + "crossed": true, + "fee": "0.105078", + "tid": 977821281805115, + "cloid": "0x00000000000000000000001644001606", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "131059.0", + "side": "B", + "time": 1761234421954, + "startPosition": "-1954511559.0", + "dir": "Close Short", + "closedPnl": "227.125247", + "hash": "0xdea8804e23dfe38ce022042e0cade702045a0033bed3025e82712ba0e2d3bd77", + "oid": 210497493930, + "crossed": true, + "fee": "0.10508", + "tid": 422108733328052, + "cloid": "0x00000000000000000000001644001607", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "131026.0", + "side": "B", + "time": 1761234423591, + "startPosition": "-1954380500.0", + "dir": "Close Short", + "closedPnl": "227.068058", + "hash": "0x9cfe9a90bb29a8a79e78042e0cadfa0202f80076562cc77940c745e37a2d8292", + "oid": 210497525107, + "crossed": true, + "fee": "0.105054", + "tid": 275009269573081, + "cloid": "0x00000000000000000000001644001608", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "131130.0", + "side": "B", + "time": 1761234435112, + "startPosition": "-1954249474.0", + "dir": "Close Short", + "closedPnl": "227.24829", + "hash": "0xbc46bfc0e594f7abbdc0042e0cae8a02026700a68098167d600f6b13a498d196", + "oid": 210497727080, + "crossed": true, + "fee": "0.105137", + "tid": 497803950474249, + "cloid": "0x00000000000000000000001644001612", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003826", + "sz": "131095.0", + "side": "B", + "time": 1761234473173, + "startPosition": "-1954118344.0", + "dir": "Close Short", + "closedPnl": "226.138875", + "hash": "0xdef06d7f7328ec13e06a042e0cb06e02033400650e2c0ae582b918d2322cc5fe", + "oid": 210498195603, + "crossed": true, + "fee": "0.105329", + "tid": 518229335964040, + "cloid": "0x00000000000000000000001644001625", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003826", + "sz": "130719.0", + "side": "B", + "time": 1761234476790, + "startPosition": "-1953987249.0", + "dir": "Close Short", + "closedPnl": "225.490275", + "hash": "0xad15a6a2106a0388ae8f042e0cb0990204110087ab6d225a50de51f4cf6ddd73", + "oid": 210498241438, + "crossed": true, + "fee": "0.105027", + "tid": 605002796919508, + "cloid": "0x00000000000000000000001644001626", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00382", + "sz": "27949.0", + "side": "B", + "time": 1761234501835, + "startPosition": "-1953856530.0", + "dir": "Close Short", + "closedPnl": "48.379719", + "hash": "0x79ffd24208d7c8517b79042e0cb1df0201520027a3dae7231dc87d94c7dba23c", + "oid": 210498550117, + "crossed": false, + "fee": "0.002989", + "tid": 557902728147849, + "cloid": "0x00000000000000000000001644001633", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00382", + "sz": "27427.0", + "side": "B", + "time": 1761234504048, + "startPosition": "-1953828581.0", + "dir": "Close Short", + "closedPnl": "47.476137", + "hash": "0x0b6df611f63d64c80ce7042e0cb1f60207e500f79130839aaf36a164b5313eb2", + "oid": 210498550117, + "crossed": false, + "fee": "0.002933", + "tid": 586743217535066, + "cloid": "0x00000000000000000000001644001633", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00382", + "sz": "75361.0", + "side": "B", + "time": 1761234505826, + "startPosition": "-1953801154.0", + "dir": "Close Short", + "closedPnl": "130.449891", + "hash": "0x3f2f5e68b2298fb640a9042e0cb20f0202bf004e4d2cae88e2f809bb712d69a0", + "oid": 210498588251, + "crossed": true, + "fee": "0.060454", + "tid": 435180812957664, + "cloid": "0x00000000000000000000001644001634", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "130993.0", + "side": "B", + "time": 1761234507778, + "startPosition": "-1953725793.0", + "dir": "Close Short", + "closedPnl": "226.879876", + "hash": "0xc27e3f2194984202c3f7042e0cb22802044100072f9b60d46646ea74539c1bed", + "oid": 210498604631, + "crossed": true, + "fee": "0.105055", + "tid": 778065135851469, + "cloid": "0x00000000000000000000001644001635", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "99365.0", + "side": "B", + "time": 1761234509388, + "startPosition": "-1953594800.0", + "dir": "Close Short", + "closedPnl": "172.10018", + "hash": "0x62e969dc28e6cdc56463042e0cb23b02032f00c1c3e9ec9706b2152ee7eaa7b0", + "oid": 210498618010, + "crossed": true, + "fee": "0.079689", + "tid": 543416321970993, + "cloid": "0x00000000000000000000001644001636", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "31645.0", + "side": "B", + "time": 1761234509388, + "startPosition": "-1953495435.0", + "dir": "Close Short", + "closedPnl": "54.80914", + "hash": "0x62e969dc28e6cdc56463042e0cb23b02032f00c1c3e9ec9706b2152ee7eaa7b0", + "oid": 210498618010, + "crossed": true, + "fee": "0.025378", + "tid": 349824274389806, + "cloid": "0x00000000000000000000001644001636", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00382", + "sz": "130924.0", + "side": "B", + "time": 1761234510825, + "startPosition": "-1953463790.0", + "dir": "Close Short", + "closedPnl": "226.629444", + "hash": "0x3e6b9756c86501f43fe5042e0cb24b020b97003c636820c6e23442a98768dbde", + "oid": 210498642819, + "crossed": true, + "fee": "0.105027", + "tid": 29699811600413, + "cloid": "0x00000000000000000000001644001637", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00382", + "sz": "130890.0", + "side": "B", + "time": 1761234514736, + "startPosition": "-1953332866.0", + "dir": "Close Short", + "closedPnl": "226.57059", + "hash": "0x81bcb8189063fa118336042e0cb27b02072700fe2b6718e32585636b4f67d3fc", + "oid": 210498677459, + "crossed": false, + "fee": "0.013999", + "tid": 317046355383732, + "cloid": "0x00000000000000000000001644001638", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003825", + "sz": "130946.0", + "side": "B", + "time": 1761234541119, + "startPosition": "-1953201976.0", + "dir": "Close Short", + "closedPnl": "226.012796", + "hash": "0xd8a8c102b32df777da22042e0cb3d0020aca00e84e2116497c716c557221d162", + "oid": 210499076893, + "crossed": true, + "fee": "0.105182", + "tid": 772349636261396, + "cloid": "0x00000000000000000000001644001647", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003825", + "sz": "130753.0", + "side": "B", + "time": 1761234547148, + "startPosition": "-1953071030.0", + "dir": "Close Short", + "closedPnl": "225.679678", + "hash": "0xc02bb2ce3c33b6b8c1a5042e0cb41a02019100b3d736d58a63f45e20fb3790a3", + "oid": 210499171899, + "crossed": true, + "fee": "0.105027", + "tid": 349154202714053, + "cloid": "0x00000000000000000000001644001649", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003828", + "sz": "130822.0", + "side": "B", + "time": 1761234556580, + "startPosition": "-1952940277.0", + "dir": "Close Short", + "closedPnl": "225.406306", + "hash": "0x1e0c8994a19389281f86042e0cb48c02029d007a3c96a7fac1d534e760976312", + "oid": 210499284755, + "crossed": true, + "fee": "0.105165", + "tid": 8626893395091, + "cloid": "0x00000000000000000000001644001652", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00383", + "sz": "130582.0", + "side": "B", + "time": 1761234558865, + "startPosition": "-1952809455.0", + "dir": "Close Short", + "closedPnl": "224.731622", + "hash": "0x418c5b912fc4d8534306042e0cb4a80204ec0076cac7f725e55506e3eec8b23d", + "oid": 210499309716, + "crossed": true, + "fee": "0.105027", + "tid": 340426029812735, + "cloid": "0x00000000000000000000001644001653", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00383", + "sz": "14773.0", + "side": "B", + "time": 1761234561064, + "startPosition": "-1952678873.0", + "dir": "Close Short", + "closedPnl": "25.424333", + "hash": "0x6d2dc471b09a9d176ea7042e0cb4c80206e100574b9dbbe910f66fc46f9e7702", + "oid": 210499351745, + "crossed": true, + "fee": "0.011881", + "tid": 181254238546156, + "cloid": "0x00000000000000000000001644001654", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00383", + "sz": "115809.0", + "side": "B", + "time": 1761234561064, + "startPosition": "-1952664100.0", + "dir": "Close Short", + "closedPnl": "199.307289", + "hash": "0x6d2dc471b09a9d176ea7042e0cb4c80206e100574b9dbbe910f66fc46f9e7702", + "oid": 210499351745, + "crossed": true, + "fee": "0.093145", + "tid": 1084715366613779, + "cloid": "0x00000000000000000000001644001654", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "130663.0", + "side": "B", + "time": 1761234562619, + "startPosition": "-1952548291.0", + "dir": "Close Short", + "closedPnl": "225.001686", + "hash": "0xdc4d25241706483cddc6042e0cb4db0205410009b209670e8015d076d60a2227", + "oid": 210499374304, + "crossed": true, + "fee": "0.105064", + "tid": 695779941273048, + "cloid": "0x00000000000000000000001644001655", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "130449.0", + "side": "B", + "time": 1761234564373, + "startPosition": "-1952417628.0", + "dir": "Close Short", + "closedPnl": "224.633178", + "hash": "0x33c8131e887dfa233541042e0cb4f00204470004237118f5d790be714771d40d", + "oid": 210499390835, + "crossed": true, + "fee": "0.104892", + "tid": 362423768583049, + "cloid": "0x00000000000000000000001644001656", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "236.0", + "side": "B", + "time": 1761234564373, + "startPosition": "-1952287179.0", + "dir": "Close Short", + "closedPnl": "0.406392", + "hash": "0x33c8131e887dfa233541042e0cb4f00204470004237118f5d790be714771d40d", + "oid": 210499390835, + "crossed": true, + "fee": "0.000189", + "tid": 899312421206594, + "cloid": "0x00000000000000000000001644001656", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "130685.0", + "side": "B", + "time": 1761234565649, + "startPosition": "-1952286943.0", + "dir": "Close Short", + "closedPnl": "225.03957", + "hash": "0xad6116b1638f66faaeda042e0cb5000203d00096fe8285cc5129c204228340e5", + "oid": 210499412347, + "crossed": true, + "fee": "0.105082", + "tid": 472760091751430, + "cloid": "0x00000000000000000000001644001657", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "130685.0", + "side": "B", + "time": 1761234567025, + "startPosition": "-1952156258.0", + "dir": "Close Short", + "closedPnl": "225.03957", + "hash": "0x5d5843d45726d8725ed2042e0cb5140201b600b9f229f7440120ef27162ab25d", + "oid": 210499430476, + "crossed": true, + "fee": "0.105082", + "tid": 1105396079571717, + "cloid": "0x00000000000000000000001644001658", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "130617.0", + "side": "B", + "time": 1761234575025, + "startPosition": "-1952025573.0", + "dir": "Close Short", + "closedPnl": "224.922474", + "hash": "0xf434272e0121fb5af5ad042e0cb5750201b100139c251a2d97fcd280c025d545", + "oid": 210499542623, + "crossed": true, + "fee": "0.105027", + "tid": 477603289600428, + "cloid": "0x00000000000000000000001644001659", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "130651.0", + "side": "B", + "time": 1761234581189, + "startPosition": "-1951894956.0", + "dir": "Close Short", + "closedPnl": "224.981022", + "hash": "0xf085e4db52ad1665f1ff042e0cb5cd0202d100c0eda03538944e902e11a0f050", + "oid": 210499597970, + "crossed": true, + "fee": "0.105055", + "tid": 5787773122273, + "cloid": "0x00000000000000000000001644001660", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "53670.0", + "side": "B", + "time": 1761234582618, + "startPosition": "-1951764305.0", + "dir": "Close Short", + "closedPnl": "92.41974", + "hash": "0x195ced66759589541ad6042e0cb5df0201fe004c1098a826bd2598b93499633e", + "oid": 210499615927, + "crossed": true, + "fee": "0.043155", + "tid": 280120964475462, + "cloid": "0x00000000000000000000001644001661", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "53670.0", + "side": "B", + "time": 1761234582618, + "startPosition": "-1951710635.0", + "dir": "Close Short", + "closedPnl": "92.41974", + "hash": "0x195ced66759589541ad6042e0cb5df0201fe004c1098a826bd2598b93499633e", + "oid": 210499615927, + "crossed": true, + "fee": "0.043155", + "tid": 768201863878667, + "cloid": "0x00000000000000000000001644001661", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "23310.0", + "side": "B", + "time": 1761234582618, + "startPosition": "-1951656965.0", + "dir": "Close Short", + "closedPnl": "40.13982", + "hash": "0x195ced66759589541ad6042e0cb5df0201fe004c1098a826bd2598b93499633e", + "oid": 210499615927, + "crossed": true, + "fee": "0.018743", + "tid": 379965932360503, + "cloid": "0x00000000000000000000001644001661", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "130661.0", + "side": "B", + "time": 1761234584705, + "startPosition": "-1951633655.0", + "dir": "Close Short", + "closedPnl": "224.998242", + "hash": "0xa62990636c116a3ca7a3042e0cb5fc02025500490714890e49f23bb62b154427", + "oid": 210499634536, + "crossed": true, + "fee": "0.105063", + "tid": 439504097657961, + "cloid": "0x00000000000000000000001644001662", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00383", + "sz": "86436.0", + "side": "B", + "time": 1761234585972, + "startPosition": "-1951502994.0", + "dir": "Close Short", + "closedPnl": "148.756356", + "hash": "0xfa452ad1d95e90b2fbbe042e0cb60d02063400b77451af859e0dd62498526a9d", + "oid": 210499653051, + "crossed": true, + "fee": "0.06952", + "tid": 608803342141395, + "cloid": "0x00000000000000000000001644001663", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00383", + "sz": "44181.0", + "side": "B", + "time": 1761234585972, + "startPosition": "-1951416558.0", + "dir": "Close Short", + "closedPnl": "76.035501", + "hash": "0xfa452ad1d95e90b2fbbe042e0cb60d02063400b77451af859e0dd62498526a9d", + "oid": 210499653051, + "crossed": true, + "fee": "0.035534", + "tid": 917785666768890, + "cloid": "0x00000000000000000000001644001663", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00383", + "sz": "90371.0", + "side": "B", + "time": 1761234587287, + "startPosition": "-1951372377.0", + "dir": "Close Short", + "closedPnl": "155.528491", + "hash": "0x556d48298682bdb156e7042e0cb61f0201a5000f2185dc83f935f37c4586979b", + "oid": 210499672008, + "crossed": true, + "fee": "0.072685", + "tid": 811440622717293, + "cloid": "0x00000000000000000000001644001664", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00383", + "sz": "40250.0", + "side": "B", + "time": 1761234587287, + "startPosition": "-1951282006.0", + "dir": "Close Short", + "closedPnl": "69.27025", + "hash": "0x556d48298682bdb156e7042e0cb61f0201a5000f2185dc83f935f37c4586979b", + "oid": 210499672008, + "crossed": true, + "fee": "0.032373", + "tid": 652527811472044, + "cloid": "0x00000000000000000000001644001664", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00383", + "sz": "130635.0", + "side": "B", + "time": 1761234588630, + "startPosition": "-1951241756.0", + "dir": "Close Short", + "closedPnl": "224.822835", + "hash": "0x6ea7dc24e6a47a897021042e0cb62d020431000a81a7995b12708777a5a85474", + "oid": 210499686336, + "crossed": true, + "fee": "0.105069", + "tid": 445753221167735, + "cloid": "0x00000000000000000000001644001665", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00383", + "sz": "130640.0", + "side": "B", + "time": 1761234590268, + "startPosition": "-1951111121.0", + "dir": "Close Short", + "closedPnl": "224.83144", + "hash": "0xd4710183f969cb63d5ea042e0cb63e020c280069946cea357839acd6b86da54e", + "oid": 210499703162, + "crossed": true, + "fee": "0.105073", + "tid": 768360636327184, + "cloid": "0x00000000000000000000001644001666", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00383", + "sz": "130548.0", + "side": "B", + "time": 1761234604820, + "startPosition": "-1950980481.0", + "dir": "Close Short", + "closedPnl": "224.673108", + "hash": "0x0ed311ed531bbcd6104c042e0cb6f402036d00d2ee1edba8b29bbd40121f96c0", + "oid": 210499939824, + "crossed": true, + "fee": "0.104999", + "tid": 562430218091173, + "cloid": "0x00000000000000000000001644001672", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00383", + "sz": "130617.0", + "side": "B", + "time": 1761234606141, + "startPosition": "-1950849933.0", + "dir": "Close Short", + "closedPnl": "224.791857", + "hash": "0xfae68c94ae4bb02cfc60042e0cb705020683007a494eceff9eaf37e76d4f8a17", + "oid": 210499968404, + "crossed": true, + "fee": "0.105055", + "tid": 626581962438948, + "cloid": "0x00000000000000000000001644001673", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "10454.0", + "side": "B", + "time": 1761234607603, + "startPosition": "-1950719316.0", + "dir": "Close Short", + "closedPnl": "18.001788", + "hash": "0x8f2c323c1e94ddd590a5042e0cb7170202f60021b997fca732f4dd8edd98b7c0", + "oid": 210499999034, + "crossed": true, + "fee": "0.008405", + "tid": 894012755505047, + "cloid": "0x00000000000000000000001644001674", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "120162.0", + "side": "B", + "time": 1761234607603, + "startPosition": "-1950708862.0", + "dir": "Close Short", + "closedPnl": "206.918964", + "hash": "0x8f2c323c1e94ddd590a5042e0cb7170202f60021b997fca732f4dd8edd98b7c0", + "oid": 210499999034, + "crossed": true, + "fee": "0.096621", + "tid": 1037891660603406, + "cloid": "0x00000000000000000000001644001674", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003826", + "sz": "86436.0", + "side": "B", + "time": 1761234609992, + "startPosition": "-1950588700.0", + "dir": "Close Short", + "closedPnl": "149.1021", + "hash": "0xfe9d24c2695c601c0016042e0cb73902045800a8045f7eefa265d01528503a07", + "oid": 210500036913, + "crossed": true, + "fee": "0.069447", + "tid": 607304130028486, + "cloid": "0x00000000000000000000001644001675", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003827", + "sz": "44283.0", + "side": "B", + "time": 1761234609992, + "startPosition": "-1950502264.0", + "dir": "Close Short", + "closedPnl": "76.343892", + "hash": "0xfe9d24c2695c601c0016042e0cb73902045800a8045f7eefa265d01528503a07", + "oid": 210500036913, + "crossed": true, + "fee": "0.035588", + "tid": 304875226385988, + "cloid": "0x00000000000000000000001644001675", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003828", + "sz": "96762.0", + "side": "B", + "time": 1761234611416, + "startPosition": "-1950457981.0", + "dir": "Close Short", + "closedPnl": "166.720926", + "hash": "0x7e652afe8739b2a87fde042e0cb74c02024700e4223cd17a222dd651463d8c93", + "oid": 210500055415, + "crossed": true, + "fee": "0.077785", + "tid": 280515215707171, + "cloid": "0x00000000000000000000001644001676", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003828", + "sz": "33950.0", + "side": "B", + "time": 1761234611416, + "startPosition": "-1950361219.0", + "dir": "Close Short", + "closedPnl": "58.49585", + "hash": "0x7e652afe8739b2a87fde042e0cb74c02024700e4223cd17a222dd651463d8c93", + "oid": 210500055415, + "crossed": true, + "fee": "0.027291", + "tid": 1019432316269811, + "cloid": "0x00000000000000000000001644001676", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "130719.0", + "side": "B", + "time": 1761234612624, + "startPosition": "-1950327269.0", + "dir": "Close Short", + "closedPnl": "225.098118", + "hash": "0xa2d08d39e1e136afa44a042e0cb75e020650001f7ce455814699388ca0e5109a", + "oid": 210500071103, + "crossed": true, + "fee": "0.105109", + "tid": 861138355465633, + "cloid": "0x00000000000000000000001644001677", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003828", + "sz": "130707.0", + "side": "B", + "time": 1761234614156, + "startPosition": "-1950196550.0", + "dir": "Close Short", + "closedPnl": "225.208161", + "hash": "0x247ad7531b84bae625f4042e0cb76f0204e50038b687d9b8c84382a5da8894d0", + "oid": 210500094155, + "crossed": true, + "fee": "0.105072", + "tid": 41471930387284, + "cloid": "0x00000000000000000000001644001678", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003828", + "sz": "130719.0", + "side": "B", + "time": 1761234615448, + "startPosition": "-1950065843.0", + "dir": "Close Short", + "closedPnl": "225.228837", + "hash": "0x5784f28082156e3058fe042e0cb78102025c00661d188d02fb4d9dd34119481a", + "oid": 210500116829, + "crossed": true, + "fee": "0.105082", + "tid": 195344979065196, + "cloid": "0x00000000000000000000001644001679", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003828", + "sz": "111659.0", + "side": "B", + "time": 1761234616914, + "startPosition": "-1949935124.0", + "dir": "Close Short", + "closedPnl": "192.388457", + "hash": "0xfb16f087b8fc1814fc90042e0cb793020220006d53ff36e79edf9bda77fff1ff", + "oid": 210500135243, + "crossed": true, + "fee": "0.08976", + "tid": 624729381054480, + "cloid": "0x00000000000000000000001644001680", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003828", + "sz": "19060.0", + "side": "B", + "time": 1761234616914, + "startPosition": "-1949823465.0", + "dir": "Close Short", + "closedPnl": "32.84038", + "hash": "0xfb16f087b8fc1814fc90042e0cb793020220006d53ff36e79edf9bda77fff1ff", + "oid": 210500135243, + "crossed": true, + "fee": "0.015321", + "tid": 915498016879280, + "cloid": "0x00000000000000000000001644001680", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003828", + "sz": "130719.0", + "side": "B", + "time": 1761234618330, + "startPosition": "-1949804405.0", + "dir": "Close Short", + "closedPnl": "225.228837", + "hash": "0xb64d3f7d156b4911b7c6042e0cb7a302042f0062b06e67e35a15eacfd46f22fc", + "oid": 210500152727, + "crossed": true, + "fee": "0.105082", + "tid": 750531171958074, + "cloid": "0x00000000000000000000001644001681", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003826", + "sz": "130767.0", + "side": "B", + "time": 1761234625973, + "startPosition": "-1949673686.0", + "dir": "Close Short", + "closedPnl": "225.573075", + "hash": "0x83e57895a390be7c855f042e0cb804020465007b3e93dd4e27ae23e862949867", + "oid": 210500246838, + "crossed": true, + "fee": "0.105066", + "tid": 1115777499110356, + "cloid": "0x00000000000000000000001644001684", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003827", + "sz": "96787.0", + "side": "B", + "time": 1761234648648, + "startPosition": "-1949542919.0", + "dir": "Close Short", + "closedPnl": "166.860788", + "hash": "0x03daf376868509d10554042e0cb91f0202a5005c218828a3a7a39ec94588e3bb", + "oid": 210500565463, + "crossed": true, + "fee": "0.077784", + "tid": 587865410483106, + "cloid": "0x00000000000000000000001644001689", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003827", + "sz": "33988.0", + "side": "B", + "time": 1761234648648, + "startPosition": "-1949446132.0", + "dir": "Close Short", + "closedPnl": "58.595312", + "hash": "0x03daf376868509d10554042e0cb91f0202a5005c218828a3a7a39ec94588e3bb", + "oid": 210500565463, + "crossed": true, + "fee": "0.027315", + "tid": 560083318877016, + "cloid": "0x00000000000000000000001644001689", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003824", + "sz": "130753.0", + "side": "B", + "time": 1761234661228, + "startPosition": "-1949412144.0", + "dir": "Close Short", + "closedPnl": "225.810431", + "hash": "0xfe07b37d8af5b9f6ff81042e0cb9c2020715006325f8d8c9a1d05ed049f993e1", + "oid": 210500706768, + "crossed": true, + "fee": "0.104999", + "tid": 927758034220693, + "cloid": "0x00000000000000000000001644001691", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "130856.0", + "side": "B", + "time": 1761234668019, + "startPosition": "-1949281391.0", + "dir": "Close Short", + "closedPnl": "225.334032", + "hash": "0x321b11ae1d0400f73394042e0cba1a0204260093b8071fc9d5e3bd00dc07dae1", + "oid": 210500844673, + "crossed": true, + "fee": "0.10522", + "tid": 1013651203319637, + "cloid": "0x00000000000000000000001644001694", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00383", + "sz": "96712.0", + "side": "B", + "time": 1761234669496, + "startPosition": "-1949150535.0", + "dir": "Close Short", + "closedPnl": "166.441352", + "hash": "0xd8945ac32d22d1abda0e042e0cba2a02062800a8c825f07d7c5d0615ec26ab96", + "oid": 210500870639, + "crossed": true, + "fee": "0.077785", + "tid": 1003958246780926, + "cloid": "0x00000000000000000000001644001695", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00383", + "sz": "33840.0", + "side": "B", + "time": 1761234669496, + "startPosition": "-1949053823.0", + "dir": "Close Short", + "closedPnl": "58.23864", + "hash": "0xd8945ac32d22d1abda0e042e0cba2a02062800a8c825f07d7c5d0615ec26ab96", + "oid": 210500870639, + "crossed": true, + "fee": "0.027217", + "tid": 1000958599779150, + "cloid": "0x00000000000000000000001644001695", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00383", + "sz": "130533.0", + "side": "B", + "time": 1761234676786, + "startPosition": "-1949019983.0", + "dir": "Close Short", + "closedPnl": "224.647293", + "hash": "0xb35eaf46424aecf5b4d8042e0cba880202f4002bdd4e0bc757275a99014ec6e0", + "oid": 210500997614, + "crossed": true, + "fee": "0.104987", + "tid": 528111106583349, + "cloid": "0x00000000000000000000001644001697", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00383", + "sz": "4005.0", + "side": "B", + "time": 1761234678161, + "startPosition": "-1948889450.0", + "dir": "Close Short", + "closedPnl": "6.892605", + "hash": "0xcee2d9e1e6b08b69d05c042e0cba9702074800c781b3aa3b72ab8534a5b46554", + "oid": 210501016886, + "crossed": true, + "fee": "0.003221", + "tid": 175607909741379, + "cloid": "0x00000000000000000000001644001698", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00383", + "sz": "126633.0", + "side": "B", + "time": 1761234682131, + "startPosition": "-1948885445.0", + "dir": "Close Short", + "closedPnl": "217.935393", + "hash": "0x66caef8d01d2b1276844042e0cbac402022900729cd5cff90a939adfc0d68b12", + "oid": 210501068748, + "crossed": false, + "fee": "0.01358", + "tid": 1093100664946120, + "cloid": "0x00000000000000000000001644001699", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "130582.0", + "side": "B", + "time": 1761234683747, + "startPosition": "-1948758812.0", + "dir": "Close Short", + "closedPnl": "224.862204", + "hash": "0x963f5583f7d243be97b9042e0cbad8020525006992d562903a0800d6b6d61da9", + "oid": 210501109169, + "crossed": true, + "fee": "0.104999", + "tid": 630652432742303, + "cloid": "0x00000000000000000000001644001700", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003828", + "sz": "130719.0", + "side": "B", + "time": 1761234685491, + "startPosition": "-1948628230.0", + "dir": "Close Short", + "closedPnl": "225.228837", + "hash": "0xa8f6030575e8a136aa6f042e0cbaee0203c000eb10ebc0084cbeae5834ec7b21", + "oid": 210501138907, + "crossed": true, + "fee": "0.105082", + "tid": 523215547882185, + "cloid": "0x00000000000000000000001644001701", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003824", + "sz": "130788.0", + "side": "B", + "time": 1761234691825, + "startPosition": "-1948497511.0", + "dir": "Close Short", + "closedPnl": "225.870876", + "hash": "0x527290b5375d75ff53ec042e0cbb41020210009ad25094d1f63b3c07f6514fe9", + "oid": 210501254044, + "crossed": true, + "fee": "0.105027", + "tid": 646405732543702, + "cloid": "0x00000000000000000000001644001703", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003825", + "sz": "86436.0", + "side": "B", + "time": 1761234700933, + "startPosition": "-1948366723.0", + "dir": "Close Short", + "closedPnl": "149.188536", + "hash": "0x64ec5905261559c26666042e0cbbc102015c00eac118789408b50457e51933ad", + "oid": 210501353620, + "crossed": true, + "fee": "0.069429", + "tid": 979377634702070, + "cloid": "0x00000000000000000000001644001706", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003825", + "sz": "44357.0", + "side": "B", + "time": 1761234700933, + "startPosition": "-1948280287.0", + "dir": "Close Short", + "closedPnl": "76.560182", + "hash": "0x64ec5905261559c26666042e0cbbc102015c00eac118789408b50457e51933ad", + "oid": 210501353620, + "crossed": true, + "fee": "0.035629", + "tid": 874070216171098, + "cloid": "0x00000000000000000000001644001706", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003826", + "sz": "130719.0", + "side": "B", + "time": 1761234702142, + "startPosition": "-1948235930.0", + "dir": "Close Short", + "closedPnl": "225.490275", + "hash": "0xe10e7b770eca9f87e288042e0cbbd3020145005ca9cdbe5984d726c9cdce7972", + "oid": 210501367468, + "crossed": true, + "fee": "0.105027", + "tid": 960500056982991, + "cloid": "0x00000000000000000000001644001707", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003826", + "sz": "130726.0", + "side": "B", + "time": 1761234703352, + "startPosition": "-1948105211.0", + "dir": "Close Short", + "closedPnl": "225.50235", + "hash": "0x9b67af89dc6106259ce1042e0cbbe5020155006f776424f73f305adc9b64e010", + "oid": 210501379850, + "crossed": true, + "fee": "0.105033", + "tid": 242255548244195, + "cloid": "0x00000000000000000000001644001708", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003826", + "sz": "130753.0", + "side": "B", + "time": 1761234707913, + "startPosition": "-1947974485.0", + "dir": "Close Short", + "closedPnl": "225.548925", + "hash": "0xfe22235ca876bc80ff9b042e0cbc260203b900424379db53a1eaceaf677a966b", + "oid": 210501442216, + "crossed": true, + "fee": "0.105054", + "tid": 291175927177641, + "cloid": "0x00000000000000000000001644001710", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003826", + "sz": "130719.0", + "side": "B", + "time": 1761234709119, + "startPosition": "-1947843732.0", + "dir": "Close Short", + "closedPnl": "225.490275", + "hash": "0x14fb84c729adcb311675042e0cbc3402057e00acc4a0ea03b8c43019e8a1a51b", + "oid": 210501458791, + "crossed": true, + "fee": "0.105027", + "tid": 505240460081167, + "cloid": "0x00000000000000000000001644001711", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "130651.0", + "side": "B", + "time": 1761234710717, + "startPosition": "-1947713013.0", + "dir": "Close Short", + "closedPnl": "224.981022", + "hash": "0xcc1db6f990152799cd97042e0cbc4402012d00df2b18466b6fe6624c4f190184", + "oid": 210501478073, + "crossed": true, + "fee": "0.105055", + "tid": 1013015174781256, + "cloid": "0x00000000000000000000001644001712", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "130582.0", + "side": "B", + "time": 1761234719540, + "startPosition": "-1947582362.0", + "dir": "Close Short", + "closedPnl": "224.862204", + "hash": "0x422541286891124f439e042e0cbc9c02043d000e03943121e5edec7b2794ec39", + "oid": 210501610048, + "crossed": true, + "fee": "0.104999", + "tid": 644269359819941, + "cloid": "0x00000000000000000000001644001713", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "130548.0", + "side": "B", + "time": 1761234720893, + "startPosition": "-1947451780.0", + "dir": "Close Short", + "closedPnl": "224.803656", + "hash": "0x521a931f16480dd95394042e0cbcab0202450004b14b2cabf5e33e71d54be7c3", + "oid": 210501638167, + "crossed": true, + "fee": "0.104972", + "tid": 832115316435107, + "cloid": "0x00000000000000000000001644001714", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003828", + "sz": "130623.0", + "side": "B", + "time": 1761234723189, + "startPosition": "-1947321232.0", + "dir": "Close Short", + "closedPnl": "225.063429", + "hash": "0x6b3f87f5019364096cb9042e0cbcc50203c000da9c9682db0f083347c0973df4", + "oid": 210501682365, + "crossed": true, + "fee": "0.105005", + "tid": 423985532132390, + "cloid": "0x00000000000000000000001644001715", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003828", + "sz": "130650.0", + "side": "B", + "time": 1761234724652, + "startPosition": "-1947190609.0", + "dir": "Close Short", + "closedPnl": "225.10995", + "hash": "0xdcd7955f122517bbde51042e0cbcd70204d70044ad28368d80a040b1d128f1a6", + "oid": 210501698124, + "crossed": true, + "fee": "0.105026", + "tid": 542864118281763, + "cloid": "0x00000000000000000000001644001716", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "130617.0", + "side": "B", + "time": 1761234726073, + "startPosition": "-1947059959.0", + "dir": "Close Short", + "closedPnl": "224.922474", + "hash": "0xba8c22e6c9a2b76fbc05042e0cbce902073500cc64a5d6415e54ce3988a6915a", + "oid": 210501720180, + "crossed": true, + "fee": "0.105027", + "tid": 886040544415517, + "cloid": "0x00000000000000000000001644001717", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003829", + "sz": "130637.0", + "side": "B", + "time": 1761234727556, + "startPosition": "-1946929342.0", + "dir": "Close Short", + "closedPnl": "224.956914", + "hash": "0x9b8f91d321dd12329d09042e0cbcfc02071100b8bcd031043f583d25e0d0ec1d", + "oid": 210501750181, + "crossed": true, + "fee": "0.105043", + "tid": 266750267177939, + "cloid": "0x00000000000000000000001644001718", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003827", + "sz": "130582.0", + "side": "B", + "time": 1761234729459, + "startPosition": "-1946798705.0", + "dir": "Close Short", + "closedPnl": "225.123368", + "hash": "0xc9e06e732771cb3bcb5a042e0cbd1502023e0058c274ea0d6da919c5e675a526", + "oid": 210501784361, + "crossed": true, + "fee": "0.104944", + "tid": 190156278369098, + "cloid": "0x00000000000000000000001644001719", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003825", + "sz": "93792.0", + "side": "B", + "time": 1761234731430, + "startPosition": "-1946668123.0", + "dir": "Close Short", + "closedPnl": "161.884992", + "hash": "0xf8b741c657f88ac5fa30042e0cbd2c0201d300abf2fba9989c7fed1916fc64b0", + "oid": 210501814892, + "crossed": true, + "fee": "0.075338", + "tid": 723431803088263, + "cloid": "0x00000000000000000000001644001720", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003825", + "sz": "36935.0", + "side": "B", + "time": 1761234731430, + "startPosition": "-1946574331.0", + "dir": "Close Short", + "closedPnl": "63.74981", + "hash": "0xf8b741c657f88ac5fa30042e0cbd2c0201d300abf2fba9989c7fed1916fc64b0", + "oid": 210501814892, + "crossed": true, + "fee": "0.029668", + "tid": 217849836787997, + "cloid": "0x00000000000000000000001644001720", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00382", + "sz": "130775.0", + "side": "B", + "time": 1761234771956, + "startPosition": "-1946537396.0", + "dir": "Close Short", + "closedPnl": "226.371525", + "hash": "0x562e31d3d43675e157a7042e0cbf2a0203c100b96f3994b3f9f6dd26933a4fcb", + "oid": 210502344579, + "crossed": false, + "fee": "0.013987", + "tid": 770991384511235, + "cloid": "0x00000000000000000000001644001729", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "130924.0", + "side": "B", + "time": 1761234773084, + "startPosition": "-1946406621.0", + "dir": "Close Short", + "closedPnl": "226.891292", + "hash": "0xda7936bcb6149f91dbf2042e0cbf3c0201b500a25117be637e41e20f7518797c", + "oid": 210502367434, + "crossed": true, + "fee": "0.104972", + "tid": 448386521059634, + "cloid": "0x00000000000000000000001644001730", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003816", + "sz": "131062.0", + "side": "B", + "time": 1761234775517, + "startPosition": "-1946275697.0", + "dir": "Close Short", + "closedPnl": "227.39257", + "hash": "0x1aa88f661d689dad1c22042e0cbf5e0202c8004bb86bbc7fbe713ab8dc6c7797", + "oid": 210502392305, + "crossed": true, + "fee": "0.105027", + "tid": 486124672959726, + "cloid": "0x00000000000000000000001644001731", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "131130.0", + "side": "B", + "time": 1761234783993, + "startPosition": "-1946144635.0", + "dir": "Close Short", + "closedPnl": "227.37942", + "hash": "0x042c8971177845cb05a6042e0cbfd10202920056b27b649da7f534c3d67c1fb5", + "oid": 210502493050, + "crossed": true, + "fee": "0.105109", + "tid": 402007291882900, + "cloid": "0x00000000000000000000001644001735", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "97015.0", + "side": "B", + "time": 1761234786531, + "startPosition": "-1946013505.0", + "dir": "Close Short", + "closedPnl": "168.126995", + "hash": "0x15f741565ab617f21770042e0cbff1020846003bf5b936c4b9bfeca919b9f1dc", + "oid": 210502522720, + "crossed": true, + "fee": "0.077784", + "tid": 837044465519469, + "cloid": "0x00000000000000000000001644001736", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "33978.0", + "side": "B", + "time": 1761234786531, + "startPosition": "-1945916490.0", + "dir": "Close Short", + "closedPnl": "58.849896", + "hash": "0x15f741565ab617f21770042e0cbff1020846003bf5b936c4b9bfeca919b9f1dc", + "oid": 210502522720, + "crossed": true, + "fee": "0.02725", + "tid": 747608929441955, + "cloid": "0x00000000000000000000001644001736", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00382", + "sz": "130890.0", + "side": "B", + "time": 1761234798830, + "startPosition": "-1945882512.0", + "dir": "Close Short", + "closedPnl": "226.57059", + "hash": "0x875f89b984837fc688d9042e0cc08a02052e009f1f869e982b28350c438759b1", + "oid": 210502811402, + "crossed": true, + "fee": "0.104999", + "tid": 146989206957026, + "cloid": "0x00000000000000000000001644001741", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00382", + "sz": "130959.0", + "side": "B", + "time": 1761234800181, + "startPosition": "-1945751622.0", + "dir": "Close Short", + "closedPnl": "226.690029", + "hash": "0x1e74de7e337e07b31fee042e0cc09b0204e00063ce712685c23d89d0f271e19d", + "oid": 210502833442, + "crossed": true, + "fee": "0.105055", + "tid": 1044432785731088, + "cloid": "0x00000000000000000000001644001742", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "66777.0", + "side": "B", + "time": 1761234801654, + "startPosition": "-1945620663.0", + "dir": "Close Short", + "closedPnl": "115.724541", + "hash": "0x0423169baee6f23a059c042e0cc0af02074b008149ea110ca7ebc1ee6deacc24", + "oid": 210502862305, + "crossed": true, + "fee": "0.05354", + "tid": 408249515325505, + "cloid": "0x00000000000000000000001644001743", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "64216.0", + "side": "B", + "time": 1761234801654, + "startPosition": "-1945553886.0", + "dir": "Close Short", + "closedPnl": "111.222112", + "hash": "0x0423169baee6f23a059c042e0cc0af02074b008149ea110ca7ebc1ee6deacc24", + "oid": 210502862305, + "crossed": true, + "fee": "0.0515", + "tid": 528430328124575, + "cloid": "0x00000000000000000000001644001743", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "131027.0", + "side": "B", + "time": 1761234803271, + "startPosition": "-1945489670.0", + "dir": "Close Short", + "closedPnl": "227.069791", + "hash": "0x7ffe8705972344828178042e0cc0c402074600eb3226635423c7325856271e6d", + "oid": 210502895627, + "crossed": true, + "fee": "0.105054", + "tid": 559453135244050, + "cloid": "0x00000000000000000000001644001744", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "130980.0", + "side": "B", + "time": 1761234804574, + "startPosition": "-1945358643.0", + "dir": "Close Short", + "closedPnl": "226.98834", + "hash": "0x9c311bc9d2e1dcd99daa042e0cc0d30203d700af6de4fbab3ff9c71c91e5b6c4", + "oid": 210502916023, + "crossed": true, + "fee": "0.105017", + "tid": 244713285571326, + "cloid": "0x00000000000000000000001644001745", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "21.0", + "side": "B", + "time": 1761234804574, + "startPosition": "-1945227663.0", + "dir": "Close Short", + "closedPnl": "0.036372", + "hash": "0x9c311bc9d2e1dcd99daa042e0cc0d30203d700af6de4fbab3ff9c71c91e5b6c4", + "oid": 210502916023, + "crossed": true, + "fee": "0.000016", + "tid": 69470710857058, + "cloid": "0x00000000000000000000001644001745", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "131027.0", + "side": "B", + "time": 1761234806758, + "startPosition": "-1945227642.0", + "dir": "Close Short", + "closedPnl": "227.069791", + "hash": "0x545a302e4d30222455d3042e0cc0ee0201fd0013e83340f6f822db810c33fc0e", + "oid": 210502945831, + "crossed": true, + "fee": "0.105054", + "tid": 575878312796482, + "cloid": "0x00000000000000000000001644001746", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "130993.0", + "side": "B", + "time": 1761234811629, + "startPosition": "-1945096615.0", + "dir": "Close Short", + "closedPnl": "226.879876", + "hash": "0xec542da4b3e2b58aedcd042e0cc129020439008a4ee5d45c901cd8f772e68f75", + "oid": 210503031335, + "crossed": true, + "fee": "0.105055", + "tid": 609406650363423, + "cloid": "0x00000000000000000000001644001747", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "130959.0", + "side": "B", + "time": 1761234813542, + "startPosition": "-1944965622.0", + "dir": "Close Short", + "closedPnl": "226.820988", + "hash": "0x2e5c81cd0a98111b2fd6042e0cc14202099f00b2a59b2fedd2252d1fc99beb05", + "oid": 210503067612, + "crossed": true, + "fee": "0.105027", + "tid": 1047011049938685, + "cloid": "0x00000000000000000000001644001748", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "130960.0", + "side": "B", + "time": 1761234814796, + "startPosition": "-1944834663.0", + "dir": "Close Short", + "closedPnl": "226.82272", + "hash": "0x7da5aa4fc4c461557f1f042e0cc15002057400355fc78027216e55a283c83b40", + "oid": 210503088621, + "crossed": true, + "fee": "0.105028", + "tid": 1067104773276725, + "cloid": "0x00000000000000000000001644001749", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "130968.0", + "side": "B", + "time": 1761234816653, + "startPosition": "-1944703703.0", + "dir": "Close Short", + "closedPnl": "226.836576", + "hash": "0x885b61a8785b05a889d5042e0cc16802059d008e135e247a2c240cfb375edf93", + "oid": 210503120421, + "crossed": true, + "fee": "0.105035", + "tid": 219265768546984, + "cloid": "0x00000000000000000000001644001750", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003828", + "sz": "128806.0", + "side": "B", + "time": 1761234826515, + "startPosition": "-1944572735.0", + "dir": "Close Short", + "closedPnl": "221.932738", + "hash": "0x30d30899cf3d45ee324c042e0cc1eb02076c007f6a3064c0d49bb3ec8e311fd8", + "oid": 210503291239, + "crossed": true, + "fee": "0.103544", + "tid": 1124768765481557, + "cloid": "0x00000000000000000000001644001754", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003828", + "sz": "2118.0", + "side": "B", + "time": 1761234826515, + "startPosition": "-1944443929.0", + "dir": "Close Short", + "closedPnl": "3.649314", + "hash": "0x30d30899cf3d45ee324c042e0cc1eb02076c007f6a3064c0d49bb3ec8e311fd8", + "oid": 210503291239, + "crossed": true, + "fee": "0.001702", + "tid": 409858684482432, + "cloid": "0x00000000000000000000001644001754", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003825", + "sz": "130684.0", + "side": "B", + "time": 1761234827951, + "startPosition": "-1944441811.0", + "dir": "Close Short", + "closedPnl": "225.560584", + "hash": "0x8d004eec095eda388e7a042e0cc1fd02018400d1a451f90a30c8fa3ec852b423", + "oid": 210503305553, + "crossed": true, + "fee": "0.104971", + "tid": 621840636828187, + "cloid": "0x00000000000000000000001644001755", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00382", + "sz": "130822.0", + "side": "B", + "time": 1761234855647, + "startPosition": "-1944311127.0", + "dir": "Close Short", + "closedPnl": "226.452882", + "hash": "0x9f6b77687e3cd423a0e5042e0cc36a020221004e193ff2f5433422bb3d30ae0e", + "oid": 210503714259, + "crossed": true, + "fee": "0.104945", + "tid": 475665316224123, + "cloid": "0x00000000000000000000001644001764", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "131008.0", + "side": "B", + "time": 1761234857271, + "startPosition": "-1944180305.0", + "dir": "Close Short", + "closedPnl": "227.036864", + "hash": "0xb4c9e7b90c3b6119b643042e0cc37d020462009ea73e7feb5892930bcb3f3b04", + "oid": 210503742118, + "crossed": true, + "fee": "0.105039", + "tid": 929711768676623, + "cloid": "0x00000000000000000000001644001765", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "101046.0", + "side": "B", + "time": 1761234858579, + "startPosition": "-1944049297.0", + "dir": "Close Short", + "closedPnl": "175.213764", + "hash": "0xd472c308d99216a9d5ec042e0cc38f0209ce00ee7495357b783b6e5b9895f094", + "oid": 210503765433, + "crossed": true, + "fee": "0.080995", + "tid": 559891440841100, + "cloid": "0x00000000000000000000001644001766", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "29981.0", + "side": "B", + "time": 1761234858579, + "startPosition": "-1943948251.0", + "dir": "Close Short", + "closedPnl": "51.987054", + "hash": "0xd472c308d99216a9d5ec042e0cc38f0209ce00ee7495357b783b6e5b9895f094", + "oid": 210503765433, + "crossed": true, + "fee": "0.024031", + "tid": 698377520106820, + "cloid": "0x00000000000000000000001644001766", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "131029.0", + "side": "B", + "time": 1761234860010, + "startPosition": "-1943918270.0", + "dir": "Close Short", + "closedPnl": "227.204286", + "hash": "0x9ed70a01992151a0a050042e0cc3a402060600e734247072429fb55458252b8b", + "oid": 210503795546, + "crossed": true, + "fee": "0.105028", + "tid": 963736148951317, + "cloid": "0x00000000000000000000001644001767", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "131027.0", + "side": "B", + "time": 1761234861991, + "startPosition": "-1943787241.0", + "dir": "Close Short", + "closedPnl": "227.200818", + "hash": "0x119502eb2e309b3a130e042e0cc3bc02040700d0c933ba0cb55dae3ded347524", + "oid": 210503829213, + "crossed": true, + "fee": "0.105027", + "tid": 1053582477135222, + "cloid": "0x00000000000000000000001644001768", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "131030.0", + "side": "B", + "time": 1761234863304, + "startPosition": "-1943656214.0", + "dir": "Close Short", + "closedPnl": "227.20602", + "hash": "0xe0c2d8cee2ce2eabe23c042e0cc3cd02032300b47dc14d7d848b8421a1c20896", + "oid": 210503849972, + "crossed": true, + "fee": "0.105029", + "tid": 667208961732541, + "cloid": "0x00000000000000000000001644001769", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "131027.0", + "side": "B", + "time": 1761234864720, + "startPosition": "-1943525184.0", + "dir": "Close Short", + "closedPnl": "227.200818", + "hash": "0x46a3ddb22f013060481d042e0cc3dd0204370097ca044f32ea6c8904ee050a4a", + "oid": 210503870840, + "crossed": true, + "fee": "0.105027", + "tid": 5572504527752, + "cloid": "0x00000000000000000000001644001770", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "131037.0", + "side": "B", + "time": 1761234865874, + "startPosition": "-1943394157.0", + "dir": "Close Short", + "closedPnl": "227.218158", + "hash": "0xd4532ded33f0c863d5cc042e0cc3e902012200d2cef3e735781bd93ff2f4a24e", + "oid": 210503881721, + "crossed": true, + "fee": "0.105035", + "tid": 905123227091247, + "cloid": "0x00000000000000000000001644001771", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "131062.0", + "side": "B", + "time": 1761234867336, + "startPosition": "-1943263120.0", + "dir": "Close Short", + "closedPnl": "227.261508", + "hash": "0x9848c83417f8b42d99c2042e0cc3fa02034d0019b2fbd2ff3c117386d6fc8e18", + "oid": 210503906848, + "crossed": true, + "fee": "0.105055", + "tid": 383402200129022, + "cloid": "0x00000000000000000000001644001772", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003816", + "sz": "61369.0", + "side": "B", + "time": 1761234872525, + "startPosition": "-1943132058.0", + "dir": "Close Short", + "closedPnl": "106.475215", + "hash": "0x48d6c2378bc641774a50042e0cc43f020279001d26c96049ec9f6d8a4aca1b61", + "oid": 210503985384, + "crossed": true, + "fee": "0.049178", + "tid": 25180131867991, + "cloid": "0x00000000000000000000001644001774", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "69714.0", + "side": "B", + "time": 1761234872525, + "startPosition": "-1943070689.0", + "dir": "Close Short", + "closedPnl": "120.884076", + "hash": "0x48d6c2378bc641774a50042e0cc43f020279001d26c96049ec9f6d8a4aca1b61", + "oid": 210503985384, + "crossed": true, + "fee": "0.05588", + "tid": 907462945843474, + "cloid": "0x00000000000000000000001644001774", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "131051.0", + "side": "B", + "time": 1761234875089, + "startPosition": "-1943000975.0", + "dir": "Close Short", + "closedPnl": "227.242434", + "hash": "0x496bb416b597698c4ae5042e0cc4650202e000fc509a885eed345f69749b4376", + "oid": 210504021888, + "crossed": true, + "fee": "0.105046", + "tid": 304606214152669, + "cloid": "0x00000000000000000000001644001775", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003816", + "sz": "131095.0", + "side": "B", + "time": 1761234880552, + "startPosition": "-1942869924.0", + "dir": "Close Short", + "closedPnl": "227.449825", + "hash": "0x85d4ec40b164e35d874e042e0cc4b00203ee00264c68022f299d97937068bd48", + "oid": 210504106324, + "crossed": true, + "fee": "0.105054", + "tid": 700537722246480, + "cloid": "0x00000000000000000000001644001777", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "74735.0", + "side": "B", + "time": 1761234888066, + "startPosition": "-1942738829.0", + "dir": "Close Short", + "closedPnl": "129.59049", + "hash": "0x5e849e71189fd1d55ffe042e0cc50b0202d20056b392f0a7024d49c3d793abc0", + "oid": 210504200681, + "crossed": true, + "fee": "0.059905", + "tid": 472497695455743, + "cloid": "0x00000000000000000000001644001778", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "56292.0", + "side": "B", + "time": 1761234888066, + "startPosition": "-1942664094.0", + "dir": "Close Short", + "closedPnl": "97.610328", + "hash": "0x5e849e71189fd1d55ffe042e0cc50b0202d20056b392f0a7024d49c3d793abc0", + "oid": 210504200681, + "crossed": true, + "fee": "0.045121", + "tid": 677935426565105, + "cloid": "0x00000000000000000000001644001778", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "130993.0", + "side": "B", + "time": 1761234891329, + "startPosition": "-1942607802.0", + "dir": "Close Short", + "closedPnl": "226.879876", + "hash": "0x3cd36c9fdaa2a20c3e4d042e0cc53402060e008575a5c0dee09c17f299a67bf6", + "oid": 210504255517, + "crossed": true, + "fee": "0.105055", + "tid": 913022898885015, + "cloid": "0x00000000000000000000001644001779", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "131015.0", + "side": "B", + "time": 1761234892737, + "startPosition": "-1942476809.0", + "dir": "Close Short", + "closedPnl": "227.048995", + "hash": "0xf4faa602fe9bf399f674042e0cc54402035500e8999f126c98c35155bd9fcd84", + "oid": 210504282337, + "crossed": true, + "fee": "0.105045", + "tid": 922965688560714, + "cloid": "0x00000000000000000000001644001780", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "131027.0", + "side": "B", + "time": 1761234893976, + "startPosition": "-1942345794.0", + "dir": "Close Short", + "closedPnl": "227.200818", + "hash": "0x8bc0222b502425fa8d39042e0cc5510203d50010eb2744cc2f88cd7e0f27ffe5", + "oid": 210504304535, + "crossed": true, + "fee": "0.105027", + "tid": 701655382654031, + "cloid": "0x00000000000000000000001644001781", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "131061.0", + "side": "B", + "time": 1761234895242, + "startPosition": "-1942214767.0", + "dir": "Close Short", + "closedPnl": "227.259774", + "hash": "0x49aee9aabee03b244b28042e0cc561020151009059e359f6ed7794fd7de4150e", + "oid": 210504315221, + "crossed": true, + "fee": "0.105054", + "tid": 861452500086720, + "cloid": "0x00000000000000000000001644001782", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "109421.0", + "side": "B", + "time": 1761234896490, + "startPosition": "-1942083706.0", + "dir": "Close Short", + "closedPnl": "189.736014", + "hash": "0x2290c1b32476204e240a042e0cc5700201870098bf793f20c6596d05e379fa38", + "oid": 210504322745, + "crossed": true, + "fee": "0.087708", + "tid": 286076112827320, + "cloid": "0x00000000000000000000001644001783", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "21641.0", + "side": "B", + "time": 1761234896490, + "startPosition": "-1941974285.0", + "dir": "Close Short", + "closedPnl": "37.525494", + "hash": "0x2290c1b32476204e240a042e0cc5700201870098bf793f20c6596d05e379fa38", + "oid": 210504322745, + "crossed": true, + "fee": "0.017346", + "tid": 639871302629403, + "cloid": "0x00000000000000000000001644001783", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "131069.0", + "side": "B", + "time": 1761234898045, + "startPosition": "-1941952644.0", + "dir": "Close Short", + "closedPnl": "227.273646", + "hash": "0x19f3ae8a7c8031641b6d042e0cc580020960007017835036bdbc59dd3b840b4e", + "oid": 210504333369, + "crossed": true, + "fee": "0.10506", + "tid": 601358669305558, + "cloid": "0x00000000000000000000001644001784", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "87295.0", + "side": "B", + "time": 1761234899755, + "startPosition": "-1941821575.0", + "dir": "Close Short", + "closedPnl": "151.19494", + "hash": "0x284666aca73c64bc29c0042e0cc5920202690092423f838ecc0f11ff66303ea6", + "oid": 210504353359, + "crossed": true, + "fee": "0.070009", + "tid": 824609068867325, + "cloid": "0x00000000000000000000001644001785", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "43697.0", + "side": "B", + "time": 1761234899755, + "startPosition": "-1941734280.0", + "dir": "Close Short", + "closedPnl": "75.683204", + "hash": "0x284666aca73c64bc29c0042e0cc5920202690092423f838ecc0f11ff66303ea6", + "oid": 210504353359, + "crossed": true, + "fee": "0.035044", + "tid": 309058522011145, + "cloid": "0x00000000000000000000001644001785", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "103202.0", + "side": "B", + "time": 1761234901320, + "startPosition": "-1941690583.0", + "dir": "Close Short", + "closedPnl": "178.849066", + "hash": "0x46d2c0a4ebe5cac2484c042e0cc5a502044d008a86e8e994ea9b6bf7aae9a4ac", + "oid": 210504369403, + "crossed": true, + "fee": "0.082745", + "tid": 1016185882467400, + "cloid": "0x00000000000000000000001644001786", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "27791.0", + "side": "B", + "time": 1761234901320, + "startPosition": "-1941587381.0", + "dir": "Close Short", + "closedPnl": "48.161803", + "hash": "0x46d2c0a4ebe5cac2484c042e0cc5a502044d008a86e8e994ea9b6bf7aae9a4ac", + "oid": 210504369403, + "crossed": true, + "fee": "0.022282", + "tid": 921657709132019, + "cloid": "0x00000000000000000000001644001786", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "53294.0", + "side": "B", + "time": 1761234902904, + "startPosition": "-1941559590.0", + "dir": "Close Short", + "closedPnl": "92.305208", + "hash": "0x44e40436b842947e465d042e0cc5ba0201da001c5345b350e8acaf8977466e68", + "oid": 210504396478, + "crossed": true, + "fee": "0.042741", + "tid": 838729472810926, + "cloid": "0x00000000000000000000001644001787", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "77685.0", + "side": "B", + "time": 1761234902904, + "startPosition": "-1941506296.0", + "dir": "Close Short", + "closedPnl": "134.55042", + "hash": "0x44e40436b842947e465d042e0cc5ba0201da001c5345b350e8acaf8977466e68", + "oid": 210504396478, + "crossed": true, + "fee": "0.062302", + "tid": 306942338698893, + "cloid": "0x00000000000000000000001644001787", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "130924.0", + "side": "B", + "time": 1761234904351, + "startPosition": "-1941428611.0", + "dir": "Close Short", + "closedPnl": "226.760368", + "hash": "0x6daa78d0a841c4e46f24042e0cc5c902064f00b64344e3b61173242367459ecf", + "oid": 210504422237, + "crossed": true, + "fee": "0.104999", + "tid": 34064725465076, + "cloid": "0x00000000000000000000001644001788", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00382", + "sz": "130939.0", + "side": "B", + "time": 1761234905696, + "startPosition": "-1941297687.0", + "dir": "Close Short", + "closedPnl": "226.655409", + "hash": "0xdbf3e869b70da1d5dd6d042e0cc5da020406004f5200c0a77fbc93bc76017bc0", + "oid": 210504448238, + "crossed": true, + "fee": "0.105039", + "tid": 750368947264936, + "cloid": "0x00000000000000000000001644001789", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "94165.0", + "side": "B", + "time": 1761234910812, + "startPosition": "-1941166748.0", + "dir": "Close Short", + "closedPnl": "163.09378", + "hash": "0x8f51b35438e7fb8a90cb042e0cc61e0203800039d3eb1a5c331a5ea6f7ebd575", + "oid": 210504521405, + "crossed": true, + "fee": "0.075519", + "tid": 954659581204501, + "cloid": "0x00000000000000000000001644001790", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00382", + "sz": "36759.0", + "side": "B", + "time": 1761234910812, + "startPosition": "-1941072583.0", + "dir": "Close Short", + "closedPnl": "63.629829", + "hash": "0x8f51b35438e7fb8a90cb042e0cc61e0203800039d3eb1a5c331a5ea6f7ebd575", + "oid": 210504521405, + "crossed": true, + "fee": "0.029488", + "tid": 774915714988618, + "cloid": "0x00000000000000000000001644001790", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00382", + "sz": "27427.0", + "side": "B", + "time": 1761234920270, + "startPosition": "-1941035824.0", + "dir": "Close Short", + "closedPnl": "47.476137", + "hash": "0x0aaeb982a2b576e80c28042e0cc6910207a600683db895baae7764d561b950d2", + "oid": 210504672051, + "crossed": false, + "fee": "0.002933", + "tid": 673155428781198, + "cloid": "0x00000000000000000000001644001792", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131857.0", + "side": "B", + "time": 1761251346932, + "startPosition": "-1941008397.0", + "dir": "Close Short", + "closedPnl": "232.200177", + "hash": "0x5ebb46361924e4d96035042e0fe94d0201f9001bb42803ab0283f188d828bec4", + "oid": 210694457010, + "crossed": true, + "fee": "0.104944", + "tid": 304672314860858, + "cloid": "0x00000000000000000000001645000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "131961.0", + "side": "B", + "time": 1761251348996, + "startPosition": "-1940876540.0", + "dir": "Close Short", + "closedPnl": "232.647243", + "hash": "0x4ba6d08bc1407e6f4d20042e0fe96b01b500e8715c439d41ef6f7bde80445859", + "oid": 210694481163, + "crossed": true, + "fee": "0.104972", + "tid": 237661252032311, + "cloid": "0x00000000000000000000001645000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "131976.0", + "side": "B", + "time": 1761251350438, + "startPosition": "-1940744579.0", + "dir": "Close Short", + "closedPnl": "232.673688", + "hash": "0x621aba34704ed0eb6394042e0fe981020237001a0b41efbd05e365872f42aad6", + "oid": 210694498514, + "crossed": true, + "fee": "0.104984", + "tid": 152994661010808, + "cloid": "0x00000000000000000000001645000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "131961.0", + "side": "B", + "time": 1761251351850, + "startPosition": "-1940612603.0", + "dir": "Close Short", + "closedPnl": "232.647243", + "hash": "0xe30fb3ef7a574361e489042e0fe99602015700d5155a623386d85f42395b1d4c", + "oid": 210694509016, + "crossed": true, + "fee": "0.104972", + "tid": 612503845014424, + "cloid": "0x00000000000000000000001645000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "131976.0", + "side": "B", + "time": 1761251352994, + "startPosition": "-1940480642.0", + "dir": "Close Short", + "closedPnl": "232.673688", + "hash": "0x700992028040577e7183042e0fe9a60201be00e81b43765013d23d553f443169", + "oid": 210694515064, + "crossed": true, + "fee": "0.104984", + "tid": 212724978120315, + "cloid": "0x00000000000000000000001645000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "131961.0", + "side": "B", + "time": 1761251358504, + "startPosition": "-1940348666.0", + "dir": "Close Short", + "closedPnl": "232.647243", + "hash": "0xab9cd913246e031bad16042e0fe9ef02022300f8bf6121ed4f658465e361dd06", + "oid": 210694553078, + "crossed": true, + "fee": "0.104972", + "tid": 464689710788381, + "cloid": "0x00000000000000000000001645000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131946.0", + "side": "B", + "time": 1761251359739, + "startPosition": "-1940216705.0", + "dir": "Close Short", + "closedPnl": "232.488852", + "hash": "0x4c9567ddb99e75d84e0f042e0fe9fc01ed007fc3549194aaf05e133078924fc2", + "oid": 210694555787, + "crossed": true, + "fee": "0.104988", + "tid": 928401171840495, + "cloid": "0x00000000000000000000001645000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "131961.0", + "side": "B", + "time": 1761251361092, + "startPosition": "-1940084759.0", + "dir": "Close Short", + "closedPnl": "232.647243", + "hash": "0x13f88779409773411572042e0fea090203dc005edb9a9213b7c132cbff9b4d2b", + "oid": 210694558764, + "crossed": true, + "fee": "0.104972", + "tid": 90533882024431, + "cloid": "0x00000000000000000000001645000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131891.0", + "side": "B", + "time": 1761251408874, + "startPosition": "-1939952798.0", + "dir": "Close Short", + "closedPnl": "231.468705", + "hash": "0x10158b58d3236037118f042e0fec3c0205ae003e6e267f09b3de36ab92273a21", + "oid": 210694952560, + "crossed": true, + "fee": "0.105138", + "tid": 505169872822120, + "cloid": "0x00000000000000000000001645000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "105306.0", + "side": "B", + "time": 1761251410175, + "startPosition": "-1939820907.0", + "dir": "Close Short", + "closedPnl": "184.917336", + "hash": "0x957d33630d2a4b9896f6042e0fec4d0204390048a82d6a6a3945deb5cc2e2583", + "oid": 210694972577, + "crossed": true, + "fee": "0.083923", + "tid": 500159017961374, + "cloid": "0x00000000000000000000001645000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "26411.0", + "side": "B", + "time": 1761251410175, + "startPosition": "-1939715601.0", + "dir": "Close Short", + "closedPnl": "46.377716", + "hash": "0x957d33630d2a4b9896f6042e0fec4d0204390048a82d6a6a3945deb5cc2e2583", + "oid": 210694972577, + "crossed": true, + "fee": "0.021048", + "tid": 314226191007836, + "cloid": "0x00000000000000000000001645000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "131891.0", + "side": "B", + "time": 1761251413338, + "startPosition": "-1939689190.0", + "dir": "Close Short", + "closedPnl": "232.523833", + "hash": "0x581a14b8dd9c818b5993042e0fec74020ed5009e789fa05dfbe2c00b9c905b75", + "oid": 210695042321, + "crossed": true, + "fee": "0.104916", + "tid": 550719058471091, + "cloid": "0x00000000000000000000001645000024", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "131961.0", + "side": "B", + "time": 1761251414825, + "startPosition": "-1939557299.0", + "dir": "Close Short", + "closedPnl": "232.647243", + "hash": "0xe4e563dbbb713752e65f042e0fec8602028900c15674562488ae0f2e7a75113d", + "oid": 210695062240, + "crossed": true, + "fee": "0.104972", + "tid": 324561272101579, + "cloid": "0x00000000000000000000001645000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "68060.0", + "side": "B", + "time": 1761251420327, + "startPosition": "-1939425338.0", + "dir": "Close Short", + "closedPnl": "119.98978", + "hash": "0xe4290a26a7bc8a09e5a2042e0fecbe0206d5000c42bfa8db87f1b57966b063f4", + "oid": 210695126230, + "crossed": true, + "fee": "0.05414", + "tid": 388650835267288, + "cloid": "0x00000000000000000000001645000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "58703.0", + "side": "B", + "time": 1761251420327, + "startPosition": "-1939357278.0", + "dir": "Close Short", + "closedPnl": "103.434686", + "hash": "0xe4290a26a7bc8a09e5a2042e0fecbe0206d5000c42bfa8db87f1b57966b063f4", + "oid": 210695126230, + "crossed": true, + "fee": "0.046709", + "tid": 424626458947809, + "cloid": "0x00000000000000000000001645000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "5177.0", + "side": "B", + "time": 1761251420327, + "startPosition": "-1939298575.0", + "dir": "Close Short", + "closedPnl": "9.116697", + "hash": "0xe4290a26a7bc8a09e5a2042e0fecbe0206d5000c42bfa8db87f1b57966b063f4", + "oid": 210695126230, + "crossed": true, + "fee": "0.00412", + "tid": 1046982113716700, + "cloid": "0x00000000000000000000001645000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131926.0", + "side": "B", + "time": 1761251421749, + "startPosition": "-1939293398.0", + "dir": "Close Short", + "closedPnl": "232.453612", + "hash": "0x0e4bedb4580b57c10fc5042e0feccd0204970099f30e7693b2149907170f31ab", + "oid": 210695150559, + "crossed": true, + "fee": "0.104972", + "tid": 313721967189203, + "cloid": "0x00000000000000000000001645000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131961.0", + "side": "B", + "time": 1761251423128, + "startPosition": "-1939161472.0", + "dir": "Close Short", + "closedPnl": "232.515282", + "hash": "0x7174df6b0043cbbd72ee042e0fecdd02016b00509b46ea8f153d8abdbf47a5a8", + "oid": 210695161226, + "crossed": true, + "fee": "0.105", + "tid": 764388148851406, + "cloid": "0x00000000000000000000001645000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131950.0", + "side": "B", + "time": 1761251424775, + "startPosition": "-1939029511.0", + "dir": "Close Short", + "closedPnl": "232.4959", + "hash": "0x56fb2b3a4d038b7e5874042e0fecef02043d001fe806aa50fac3d68d0c076568", + "oid": 210695180207, + "crossed": true, + "fee": "0.104991", + "tid": 22822313915873, + "cloid": "0x00000000000000000000001645000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131882.0", + "side": "B", + "time": 1761251426750, + "startPosition": "-1938897561.0", + "dir": "Close Short", + "closedPnl": "232.244202", + "hash": "0xa95c8fe39caf1d36aad6042e0fed0402041e00c937a23c084d253b365ba2f721", + "oid": 210695215287, + "crossed": true, + "fee": "0.104964", + "tid": 1033741772057533, + "cloid": "0x00000000000000000000001645000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "88.0", + "side": "B", + "time": 1761251427898, + "startPosition": "-1938765679.0", + "dir": "Close Short", + "closedPnl": "0.154968", + "hash": "0xd6e5cefcb8d60061d85f042e0fed1302014e00e253d91f337aae7a4f77d9da4c", + "oid": 210695227818, + "crossed": true, + "fee": "0.00007", + "tid": 1066391781856071, + "cloid": "0x00000000000000000000001645000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131803.0", + "side": "B", + "time": 1761251437510, + "startPosition": "-1938765591.0", + "dir": "Close Short", + "closedPnl": "232.105083", + "hash": "0x17cb1e4663e627f61944042e0fed91020331002bfee946c8bb93c99922ea01e0", + "oid": 210695313890, + "crossed": true, + "fee": "0.104902", + "tid": 451156259713182, + "cloid": "0x00000000000000000000001645000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131906.0", + "side": "B", + "time": 1761251440954, + "startPosition": "-1938633788.0", + "dir": "Close Short", + "closedPnl": "232.418372", + "hash": "0xc67a4833465c9845c7f4042e0fedbe02014f0018e15fb7176a42f38605507230", + "oid": 210695348741, + "crossed": true, + "fee": "0.104956", + "tid": 660966554696685, + "cloid": "0x00000000000000000000001645000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131949.0", + "side": "B", + "time": 1761251442185, + "startPosition": "-1938501882.0", + "dir": "Close Short", + "closedPnl": "232.362189", + "hash": "0xf1c9fd76136b13c0f343042e0fedcf020333005bae6e32939592a8c8d26eedab", + "oid": 210695361254, + "crossed": true, + "fee": "0.105018", + "tid": 191268376332406, + "cloid": "0x00000000000000000000001645000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003793", + "sz": "131891.0", + "side": "B", + "time": 1761251469984, + "startPosition": "-1938369933.0", + "dir": "Close Short", + "closedPnl": "231.864378", + "hash": "0xfb0ab0115bfd494cfc84042e0fef220203c500f6f6f0681f9ed35b641af12337", + "oid": 210695690914, + "crossed": true, + "fee": "0.105055", + "tid": 80721991967339, + "cloid": "0x00000000000000000000001645000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003794", + "sz": "131781.0", + "side": "B", + "time": 1761251473875, + "startPosition": "-1938238042.0", + "dir": "Close Short", + "closedPnl": "231.539217", + "hash": "0x2d9443c5cb5f5f262f0e042e0fef5702026200ab66527df8d15cef188a533910", + "oid": 210695756063, + "crossed": true, + "fee": "0.104995", + "tid": 964130645874511, + "cloid": "0x00000000000000000000001645000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003794", + "sz": "131787.0", + "side": "B", + "time": 1761251481372, + "startPosition": "-1938106261.0", + "dir": "Close Short", + "closedPnl": "231.549759", + "hash": "0xd4cffc0c37175decd649042e0fefb002070100f1d21a7cbe7898a75ef61b37d7", + "oid": 210695818426, + "crossed": true, + "fee": "0.104999", + "tid": 254687014871711, + "cloid": "0x00000000000000000000001645000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131857.0", + "side": "B", + "time": 1761251491564, + "startPosition": "-1937974474.0", + "dir": "Close Short", + "closedPnl": "232.200177", + "hash": "0x0d7c5c14f3c327aa0ef6042e0ff02b02045d00fa8ec6467cb1450767b2c70194", + "oid": 210695994774, + "crossed": true, + "fee": "0.104944", + "tid": 433799162473618, + "cloid": "0x00000000000000000000001645000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "131937.0", + "side": "B", + "time": 1761251492897, + "startPosition": "-1937842617.0", + "dir": "Close Short", + "closedPnl": "232.604931", + "hash": "0x132e2941fa54127714a7042e0ff037020672002795573149b6f6d494b957ec61", + "oid": 210696018243, + "crossed": true, + "fee": "0.104953", + "tid": 963627216975650, + "cloid": "0x00000000000000000000001645000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "131961.0", + "side": "B", + "time": 1761251494073, + "startPosition": "-1937710680.0", + "dir": "Close Short", + "closedPnl": "232.647243", + "hash": "0x1832353776c53e2419ab042e0ff043020195001d11c85cf6bbfae08a35c9180e", + "oid": 210696032491, + "crossed": true, + "fee": "0.104972", + "tid": 800947637817311, + "cloid": "0x00000000000000000000001645000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "131961.0", + "side": "B", + "time": 1761251495318, + "startPosition": "-1937578719.0", + "dir": "Close Short", + "closedPnl": "232.647243", + "hash": "0xf88ec921dd11f1a3fa08042e0ff0520201b70007781510769c5774749c15cb8e", + "oid": 210696046095, + "crossed": true, + "fee": "0.104972", + "tid": 72665010458936, + "cloid": "0x00000000000000000000001645000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "58702.0", + "side": "B", + "time": 1761251498509, + "startPosition": "-1937446758.0", + "dir": "Close Short", + "closedPnl": "103.432924", + "hash": "0xb35327c44f7b61d3b4cc042e0ff07d0201b600a9ea7e80a5571bd3170e7f3bbe", + "oid": 210696078850, + "crossed": true, + "fee": "0.046708", + "tid": 408347677296565, + "cloid": "0x00000000000000000000001645000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "73293.0", + "side": "B", + "time": 1761251498509, + "startPosition": "-1937388056.0", + "dir": "Close Short", + "closedPnl": "129.142266", + "hash": "0xb35327c44f7b61d3b4cc042e0ff07d0201b600a9ea7e80a5571bd3170e7f3bbe", + "oid": 210696078850, + "crossed": true, + "fee": "0.058318", + "tid": 589145559048440, + "cloid": "0x00000000000000000000001645000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "131966.0", + "side": "B", + "time": 1761251499781, + "startPosition": "-1937314763.0", + "dir": "Close Short", + "closedPnl": "232.656058", + "hash": "0x7ba3f63398366c237d1d042e0ff08b02015c001933398af51f6ca186573a460e", + "oid": 210696091235, + "crossed": true, + "fee": "0.104976", + "tid": 775431262943899, + "cloid": "0x00000000000000000000001645000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "131961.0", + "side": "B", + "time": 1761251501481, + "startPosition": "-1937182797.0", + "dir": "Close Short", + "closedPnl": "232.647243", + "hash": "0x11c4725b4e45eafe133e042e0ff09f0203010040e94909d0b58d1dae0d49c4e8", + "oid": 210696112251, + "crossed": true, + "fee": "0.104972", + "tid": 285378560861755, + "cloid": "0x00000000000000000000001645000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "131978.0", + "side": "B", + "time": 1761251502920, + "startPosition": "-1937050836.0", + "dir": "Close Short", + "closedPnl": "232.677214", + "hash": "0x78d28c87562f7ec47a4c042e0ff0b1020255006cf1229d961c9b37da152358af", + "oid": 210696124235, + "crossed": true, + "fee": "0.104985", + "tid": 479752482973764, + "cloid": "0x00000000000000000000001645000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "52990.0", + "side": "B", + "time": 1761251504143, + "startPosition": "-1936918858.0", + "dir": "Close Short", + "closedPnl": "93.42137", + "hash": "0x5d9a832de5d63cdd5f14042e0ff0c002037d001380d95baf01632e80a4da16c8", + "oid": 210696134359, + "crossed": true, + "fee": "0.042152", + "tid": 935121581475148, + "cloid": "0x00000000000000000000001645000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "79006.0", + "side": "B", + "time": 1761251504143, + "startPosition": "-1936865868.0", + "dir": "Close Short", + "closedPnl": "139.287578", + "hash": "0x5d9a832de5d63cdd5f14042e0ff0c002037d001380d95baf01632e80a4da16c8", + "oid": 210696134359, + "crossed": true, + "fee": "0.062847", + "tid": 1073310269831605, + "cloid": "0x00000000000000000000001645000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132031.0", + "side": "B", + "time": 1761251505496, + "startPosition": "-1936786862.0", + "dir": "Close Short", + "closedPnl": "232.902684", + "hash": "0xa8f715de6a618cd4aa70042e0ff0d002015e00c40564aba64cbfc131296566bf", + "oid": 210696147002, + "crossed": true, + "fee": "0.105", + "tid": 607951019316113, + "cloid": "0x00000000000000000000001645000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "83500.0", + "side": "B", + "time": 1761251509582, + "startPosition": "-1936654831.0", + "dir": "Close Short", + "closedPnl": "147.294", + "hash": "0x051b560e9a891fb20695042e0ff10b02014900f4358c3e84a8e40161598cf99c", + "oid": 210696180836, + "crossed": true, + "fee": "0.066405", + "tid": 949516489417605, + "cloid": "0x00000000000000000000001645000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "48476.0", + "side": "B", + "time": 1761251509582, + "startPosition": "-1936571331.0", + "dir": "Close Short", + "closedPnl": "85.463188", + "hash": "0x051b560e9a891fb20695042e0ff10b02014900f4358c3e84a8e40161598cf99c", + "oid": 210696180836, + "crossed": true, + "fee": "0.038561", + "tid": 968263835962690, + "cloid": "0x00000000000000000000001645000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "115643.0", + "side": "B", + "time": 1761251510816, + "startPosition": "-1936522855.0", + "dir": "Close Short", + "closedPnl": "203.994252", + "hash": "0xd1d05d70d585386fd34a042e0ff11d019f00755670885741759908c39489125a", + "oid": 210696187620, + "crossed": true, + "fee": "0.091967", + "tid": 601852713697467, + "cloid": "0x00000000000000000000001645000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "16388.0", + "side": "B", + "time": 1761251510816, + "startPosition": "-1936407212.0", + "dir": "Close Short", + "closedPnl": "28.908432", + "hash": "0xd1d05d70d585386fd34a042e0ff11d019f00755670885741759908c39489125a", + "oid": 210696187620, + "crossed": true, + "fee": "0.013032", + "tid": 594258563571233, + "cloid": "0x00000000000000000000001645000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132066.0", + "side": "B", + "time": 1761251511950, + "startPosition": "-1936390824.0", + "dir": "Close Short", + "closedPnl": "233.09649", + "hash": "0x6bf4e9918c6111f26d6e042e0ff12e0202280077276430c40fbd94e44b64ebdd", + "oid": 210696195139, + "crossed": true, + "fee": "0.105", + "tid": 1074520206244019, + "cloid": "0x00000000000000000000001645000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132046.0", + "side": "B", + "time": 1761251516367, + "startPosition": "-1936258758.0", + "dir": "Close Short", + "closedPnl": "233.06119", + "hash": "0xb7ef72ebc84b79e6b969042e0ff16b0202a500d1634e98b85bb81e3e874f53d1", + "oid": 210696220573, + "crossed": true, + "fee": "0.104984", + "tid": 794580593499732, + "cloid": "0x00000000000000000000001645000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132100.0", + "side": "B", + "time": 1761251517629, + "startPosition": "-1936126712.0", + "dir": "Close Short", + "closedPnl": "233.1565", + "hash": "0xfb23232553ade5f2fc9c042e0ff17b02027b000aeea104c59eebce7812a1bfdd", + "oid": 210696231760, + "crossed": true, + "fee": "0.105027", + "tid": 637649479370736, + "cloid": "0x00000000000000000000001645000063", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132100.0", + "side": "B", + "time": 1761251518776, + "startPosition": "-1935994612.0", + "dir": "Close Short", + "closedPnl": "233.1565", + "hash": "0x532b752fc5f77ed354a5042e0ff18a02015d001560fa9da5f6f4208284fb58bd", + "oid": 210696242242, + "crossed": true, + "fee": "0.105027", + "tid": 697919172618675, + "cloid": "0x00000000000000000000001645000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132080.0", + "side": "B", + "time": 1761251520247, + "startPosition": "-1935862512.0", + "dir": "Close Short", + "closedPnl": "233.1212", + "hash": "0x40daa3760be0227f4254042e0ff19c02023a005ba6e34151e4a34ec8cae3fc69", + "oid": 210696252658, + "crossed": true, + "fee": "0.105011", + "tid": 354305455351449, + "cloid": "0x00000000000000000000001645000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132100.0", + "side": "B", + "time": 1761251521736, + "startPosition": "-1935730432.0", + "dir": "Close Short", + "closedPnl": "233.1565", + "hash": "0xec1651acd9e44f83ed90042e0ff1ac0205ca009274e76e558fdefcff98e8296e", + "oid": 210696267545, + "crossed": true, + "fee": "0.105027", + "tid": 475137577833014, + "cloid": "0x00000000000000000000001645000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003785", + "sz": "132100.0", + "side": "B", + "time": 1761251522926, + "startPosition": "-1935598332.0", + "dir": "Close Short", + "closedPnl": "233.2886", + "hash": "0x60dc3a62f4bbab5c6255042e0ff1b9020bfe00488fbeca2e04a4e5b5b3bf8547", + "oid": 210696292707, + "crossed": true, + "fee": "0.104999", + "tid": 414924259478091, + "cloid": "0x00000000000000000000001645000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132090.0", + "side": "B", + "time": 1761251524742, + "startPosition": "-1935466232.0", + "dir": "Close Short", + "closedPnl": "233.13885", + "hash": "0x29eba18e99669ba22b65042e0ff1ca02076c00743469ba74cdb44ce1586a758c", + "oid": 210696313387, + "crossed": true, + "fee": "0.105019", + "tid": 726712246202367, + "cloid": "0x00000000000000000000001645000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "39134.0", + "side": "B", + "time": 1761251526198, + "startPosition": "-1935334142.0", + "dir": "Close Short", + "closedPnl": "69.07151", + "hash": "0x268019051c35efe727f9042e0ff1d902049600eab7390eb9ca48c457db39c9d1", + "oid": 210696332027, + "crossed": true, + "fee": "0.031113", + "tid": 908866754592178, + "cloid": "0x00000000000000000000001645000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "92966.0", + "side": "B", + "time": 1761251526198, + "startPosition": "-1935295008.0", + "dir": "Close Short", + "closedPnl": "164.08499", + "hash": "0x268019051c35efe727f9042e0ff1d902049600eab7390eb9ca48c457db39c9d1", + "oid": 210696332027, + "crossed": true, + "fee": "0.073913", + "tid": 460877209038996, + "cloid": "0x00000000000000000000001645000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132135.0", + "side": "B", + "time": 1761251533032, + "startPosition": "-1935202042.0", + "dir": "Close Short", + "closedPnl": "233.218275", + "hash": "0x555201965dceebf356cb042e0ff22f0202e9007bf8c20ac5f91aace91cc2c5dd", + "oid": 210696433546, + "crossed": true, + "fee": "0.105055", + "tid": 923731021769562, + "cloid": "0x00000000000000000000001645000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003785", + "sz": "132100.0", + "side": "B", + "time": 1761251534247, + "startPosition": "-1935069907.0", + "dir": "Close Short", + "closedPnl": "233.2886", + "hash": "0xe19ddade3ab15ca1e317042e0ff23f02024000c3d5b47b7385668630f9b5368c", + "oid": 210696440912, + "crossed": true, + "fee": "0.104999", + "tid": 666457635122058, + "cloid": "0x00000000000000000000001645000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132100.0", + "side": "B", + "time": 1761251535522, + "startPosition": "-1934937807.0", + "dir": "Close Short", + "closedPnl": "233.1565", + "hash": "0x68a114bd900586316a1a042e0ff25102018300a32b08a5030c69c0104f09601c", + "oid": 210696458104, + "crossed": true, + "fee": "0.105027", + "tid": 367305699963167, + "cloid": "0x00000000000000000000001645000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "10835.0", + "side": "B", + "time": 1761251538975, + "startPosition": "-1934805707.0", + "dir": "Close Short", + "closedPnl": "19.11294", + "hash": "0x3930a705692aaddd3aaa042e0ff28302026b00eb042dccafdcf95258282e87c7", + "oid": 210696499874, + "crossed": true, + "fee": "0.008616", + "tid": 898296861214568, + "cloid": "0x00000000000000000000001645000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "121221.0", + "side": "B", + "time": 1761251538975, + "startPosition": "-1934794872.0", + "dir": "Close Short", + "closedPnl": "213.833844", + "hash": "0x3930a705692aaddd3aaa042e0ff28302026b00eb042dccafdcf95258282e87c7", + "oid": 210696499874, + "crossed": true, + "fee": "0.096403", + "tid": 714563848351027, + "cloid": "0x00000000000000000000001645000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132100.0", + "side": "B", + "time": 1761251540114, + "startPosition": "-1934673651.0", + "dir": "Close Short", + "closedPnl": "233.1565", + "hash": "0x5398504984e2fcc75512042e0ff293020337002f1fe61b99f760fb9c43e6d6b1", + "oid": 210696515306, + "crossed": true, + "fee": "0.105027", + "tid": 517967181273099, + "cloid": "0x00000000000000000000001645000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132100.0", + "side": "B", + "time": 1761251541886, + "startPosition": "-1934541551.0", + "dir": "Close Short", + "closedPnl": "233.1565", + "hash": "0x1fb6cd076213cc7c2130042e0ff2a402036d00ecfd16eb4ec37f785a2117a666", + "oid": 210696533592, + "crossed": true, + "fee": "0.105027", + "tid": 1041317293840057, + "cloid": "0x00000000000000000000001645000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132105.0", + "side": "B", + "time": 1761251544282, + "startPosition": "-1934409451.0", + "dir": "Close Short", + "closedPnl": "233.165325", + "hash": "0x80bdd0d855daa5548237042e0ff2b50203f400bdf0ddc42624867c2b14de7f3f", + "oid": 210696562244, + "crossed": true, + "fee": "0.105031", + "tid": 959446612367795, + "cloid": "0x00000000000000000000001645000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003785", + "sz": "132135.0", + "side": "B", + "time": 1761251558753, + "startPosition": "-1934277346.0", + "dir": "Close Short", + "closedPnl": "233.35041", + "hash": "0x52075356be5cc2415381042e0ff359020188003c595fe113f5cffea97d509c2b", + "oid": 210696717149, + "crossed": true, + "fee": "0.105027", + "tid": 910340838949884, + "cloid": "0x00000000000000000000001645000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003784", + "sz": "132135.0", + "side": "B", + "time": 1761251564482, + "startPosition": "-1934145211.0", + "dir": "Close Short", + "closedPnl": "233.482545", + "hash": "0xb3b57465c65c1525b52f042e0ff39e0203ef004b615f33f7577e1fb8855fef10", + "oid": 210696771720, + "crossed": true, + "fee": "0.104999", + "tid": 133771908689342, + "cloid": "0x00000000000000000000001645000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003784", + "sz": "78174.0", + "side": "B", + "time": 1761251570548, + "startPosition": "-1934013076.0", + "dir": "Close Short", + "closedPnl": "138.133458", + "hash": "0xd2e0089b613b7776d459042e0ff3de02028d0080fc3e964876a8b3ee203f5161", + "oid": 210696816914, + "crossed": true, + "fee": "0.06212", + "tid": 433756803851387, + "cloid": "0x00000000000000000000001645000084", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003784", + "sz": "53961.0", + "side": "B", + "time": 1761251570548, + "startPosition": "-1933934902.0", + "dir": "Close Short", + "closedPnl": "95.349087", + "hash": "0xd2e0089b613b7776d459042e0ff3de02028d0080fc3e964876a8b3ee203f5161", + "oid": 210696816914, + "crossed": true, + "fee": "0.042879", + "tid": 650427948509822, + "cloid": "0x00000000000000000000001645000084", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003785", + "sz": "132100.0", + "side": "B", + "time": 1761251574148, + "startPosition": "-1933880941.0", + "dir": "Close Short", + "closedPnl": "233.2886", + "hash": "0x8ab5d09cf3c852848c2f042e0ff40f0201e900828ecb71562e7e7befb2cc2c6f", + "oid": 210696846471, + "crossed": true, + "fee": "0.104999", + "tid": 1021614462445221, + "cloid": "0x00000000000000000000001645000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132035.0", + "side": "B", + "time": 1761251578417, + "startPosition": "-1933748841.0", + "dir": "Close Short", + "closedPnl": "232.90974", + "hash": "0x69a64ccf966033b76b20042e0ff44b02017700b5316352890d6ef82255640da2", + "oid": 210696868668, + "crossed": true, + "fee": "0.105003", + "tid": 1304461342068, + "cloid": "0x00000000000000000000001645000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132066.0", + "side": "B", + "time": 1761251579704, + "startPosition": "-1933616806.0", + "dir": "Close Short", + "closedPnl": "232.964424", + "hash": "0xb050a8f221bd1371b1ca042e0ff45e02015500d7bcb0324354195444e0b0ed5c", + "oid": 210696877233, + "crossed": true, + "fee": "0.105028", + "tid": 404413040648292, + "cloid": "0x00000000000000000000001645000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132066.0", + "side": "B", + "time": 1761251580952, + "startPosition": "-1933484740.0", + "dir": "Close Short", + "closedPnl": "232.964424", + "hash": "0xc6a3f1dfa896a979c81d042e0ff46e0201a300c54399c84b6a6c9d32679a8364", + "oid": 210696889807, + "crossed": true, + "fee": "0.105028", + "tid": 349389267696104, + "cloid": "0x00000000000000000000001645000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132031.0", + "side": "B", + "time": 1761251582398, + "startPosition": "-1933352674.0", + "dir": "Close Short", + "closedPnl": "232.902684", + "hash": "0x67c44b2e9d04d4d5693e042e0ff47d0202f700143807f3a70b8cf6815c08aec0", + "oid": 210696906554, + "crossed": true, + "fee": "0.105", + "tid": 540905589440366, + "cloid": "0x00000000000000000000001645000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132031.0", + "side": "B", + "time": 1761251583820, + "startPosition": "-1933220643.0", + "dir": "Close Short", + "closedPnl": "232.902684", + "hash": "0xcf7019c839d2adcfd0e9042e0ff48c0202c100add4d5cca17338c51af8d687ba", + "oid": 210696919468, + "crossed": true, + "fee": "0.105", + "tid": 953321401127065, + "cloid": "0x00000000000000000000001645000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132053.0", + "side": "B", + "time": 1761251585221, + "startPosition": "-1933088612.0", + "dir": "Close Short", + "closedPnl": "232.809439", + "hash": "0x85e4039bd86c827c875d042e0ff49c0203420081736fa14e29acaeee97605c67", + "oid": 210696932853, + "crossed": true, + "fee": "0.105045", + "tid": 390679347568983, + "cloid": "0x00000000000000000000001645000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132049.0", + "side": "B", + "time": 1761251587045, + "startPosition": "-1932956559.0", + "dir": "Close Short", + "closedPnl": "232.802387", + "hash": "0x8733b66ae1f836e688ad042e0ff4af01a400ce507cfb55b82afc61bda0fc10d1", + "oid": 210696938054, + "crossed": true, + "fee": "0.105042", + "tid": 467124944006381, + "cloid": "0x00000000000000000000001645000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "52848.0", + "side": "B", + "time": 1761251588334, + "startPosition": "-1932824510.0", + "dir": "Close Short", + "closedPnl": "93.171024", + "hash": "0x8e79eba3ccbd63b68ff3042e0ff4c002021b008967b08288324296f68bb13da1", + "oid": 210696941252, + "crossed": true, + "fee": "0.042039", + "tid": 659988949836597, + "cloid": "0x00000000000000000000001645000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "79183.0", + "side": "B", + "time": 1761251588334, + "startPosition": "-1932771662.0", + "dir": "Close Short", + "closedPnl": "139.520446", + "hash": "0x8e79eba3ccbd63b68ff3042e0ff4c002021b008967b08288324296f68bb13da1", + "oid": 210696941252, + "crossed": true, + "fee": "0.063005", + "tid": 698453194811644, + "cloid": "0x00000000000000000000001645000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "132057.0", + "side": "B", + "time": 1761251589739, + "startPosition": "-1932692479.0", + "dir": "Close Short", + "closedPnl": "232.684434", + "hash": "0x87e76e03dd8927b28961042e0ff4d002016000e9788c46842bb019569c8d019d", + "oid": 210696943743, + "crossed": true, + "fee": "0.105076", + "tid": 296688742854802, + "cloid": "0x00000000000000000000001645000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "132031.0", + "side": "B", + "time": 1761251590952, + "startPosition": "-1932560422.0", + "dir": "Close Short", + "closedPnl": "232.638622", + "hash": "0xff7d6b34a544344300f7042e0ff4dc020200001a40475316a346168764480e2e", + "oid": 210696945988, + "crossed": true, + "fee": "0.105055", + "tid": 287989881619642, + "cloid": "0x00000000000000000000001645000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132043.0", + "side": "B", + "time": 1761251592375, + "startPosition": "-1932428391.0", + "dir": "Close Short", + "closedPnl": "232.791809", + "hash": "0xa327052c76c1aab4a4a0042e0ff4ed01c3001d1211c4c98646efb07f35c5849f", + "oid": 210696948467, + "crossed": true, + "fee": "0.105037", + "tid": 446229989707918, + "cloid": "0x00000000000000000000001645000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132053.0", + "side": "B", + "time": 1761251593579, + "startPosition": "-1932296348.0", + "dir": "Close Short", + "closedPnl": "232.809439", + "hash": "0x6c75b10345e5adfe6def042e0ff4ff01ab00c8e8e0e8ccd0103e5c5604e987e9", + "oid": 210696950617, + "crossed": true, + "fee": "0.105045", + "tid": 201514541408294, + "cloid": "0x00000000000000000000001645000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "132050.0", + "side": "B", + "time": 1761251594591, + "startPosition": "-1932164295.0", + "dir": "Close Short", + "closedPnl": "232.6721", + "hash": "0xa4495b1ba174b9c3a5c3042e0ff50d02010600013c77d8954812066e607893ae", + "oid": 210696952996, + "crossed": true, + "fee": "0.10507", + "tid": 809716873875193, + "cloid": "0x00000000000000000000001645000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "45705.0", + "side": "B", + "time": 1761251595889, + "startPosition": "-1932032245.0", + "dir": "Close Short", + "closedPnl": "80.53221", + "hash": "0x2c195f7ff18f4f782d93042e0ff51a0201ae00658c826e4acfe20ad2b0832962", + "oid": 210696955365, + "crossed": true, + "fee": "0.036367", + "tid": 339166093063434, + "cloid": "0x00000000000000000000001645000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "86315.0", + "side": "B", + "time": 1761251595889, + "startPosition": "-1931986540.0", + "dir": "Close Short", + "closedPnl": "152.08703", + "hash": "0x2c195f7ff18f4f782d93042e0ff51a0201ae00658c826e4acfe20ad2b0832962", + "oid": 210696955365, + "crossed": true, + "fee": "0.068679", + "tid": 52967020982143, + "cloid": "0x00000000000000000000001645000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "132031.0", + "side": "B", + "time": 1761251597699, + "startPosition": "-1931900225.0", + "dir": "Close Short", + "closedPnl": "232.638622", + "hash": "0x1679ce2b6636aa3c17f3042e0ff52b02021c00110139c90eba42797e253a8426", + "oid": 210696959293, + "crossed": true, + "fee": "0.105055", + "tid": 1114981553393293, + "cloid": "0x00000000000000000000001645000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "132031.0", + "side": "B", + "time": 1761251598870, + "startPosition": "-1931768194.0", + "dir": "Close Short", + "closedPnl": "232.638622", + "hash": "0x762bf22f3f19386377a5042e0ff5380201d90014da1c573519f49d81fe1d124e", + "oid": 210696964910, + "crossed": true, + "fee": "0.105055", + "tid": 6442201518961, + "cloid": "0x00000000000000000000001645000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "2483.0", + "side": "B", + "time": 1761251600337, + "startPosition": "-1931636163.0", + "dir": "Close Short", + "closedPnl": "4.375046", + "hash": "0x5950e9a3dd72d7d55aca042e0ff54a0206d500897875f6a7fd1994f69c76b1bf", + "oid": 210696976061, + "crossed": true, + "fee": "0.001975", + "tid": 810136097508545, + "cloid": "0x00000000000000000000001645000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "129513.0", + "side": "B", + "time": 1761251600337, + "startPosition": "-1931633680.0", + "dir": "Close Short", + "closedPnl": "228.072393", + "hash": "0x5950e9a3dd72d7d55aca042e0ff54a0206d500897875f6a7fd1994f69c76b1bf", + "oid": 210696976061, + "crossed": true, + "fee": "0.103079", + "tid": 934958733926755, + "cloid": "0x00000000000000000000001645000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131961.0", + "side": "B", + "time": 1761251711615, + "startPosition": "-1931504167.0", + "dir": "Close Short", + "closedPnl": "231.459594", + "hash": "0x0046cec72f03fdc401c0042e0ffaaf02029d00acca071c96a40f7a19ee07d7ae", + "oid": 210697997048, + "crossed": true, + "fee": "0.105221", + "tid": 1054595902102423, + "cloid": "0x00000000000000000000001645000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131712.0", + "side": "B", + "time": 1761251713438, + "startPosition": "-1931372206.0", + "dir": "Close Short", + "closedPnl": "231.15456", + "hash": "0x51fa2ea555a8ec0e5373042e0ffac402016e008af0ac0ae0f5c2d9f814acc5f8", + "oid": 210698003725, + "crossed": true, + "fee": "0.104995", + "tid": 720935960075931, + "cloid": "0x00000000000000000000001645000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003793", + "sz": "131787.0", + "side": "B", + "time": 1761251725003, + "startPosition": "-1931240494.0", + "dir": "Close Short", + "closedPnl": "231.681546", + "hash": "0x58bea7a6070b9f695a38042e0ffb4d020487008ba20ebe3bfc8752f8c60f7953", + "oid": 210698105684, + "crossed": true, + "fee": "0.104972", + "tid": 257930611317057, + "cloid": "0x00000000000000000000001645000128", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003794", + "sz": "131802.0", + "side": "B", + "time": 1761251728889, + "startPosition": "-1931108707.0", + "dir": "Close Short", + "closedPnl": "231.576114", + "hash": "0x2e2a59952de8c7fc2fa4042e0ffb8901f900717ac8ebe6ced1f304e7ececa1e6", + "oid": 210698130465, + "crossed": true, + "fee": "0.105011", + "tid": 639640933222915, + "cloid": "0x00000000000000000000001645000130", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "131780.0", + "side": "B", + "time": 1761251731719, + "startPosition": "-1930976905.0", + "dir": "Close Short", + "closedPnl": "231.40568", + "hash": "0x6b228e945e9249bb6c9c042e0ffba9019c00a679f995688d0eeb39e71d9623a6", + "oid": 210698140371, + "crossed": true, + "fee": "0.105022", + "tid": 413033940225361, + "cloid": "0x00000000000000000000001645000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "131752.0", + "side": "B", + "time": 1761251733292, + "startPosition": "-1930845125.0", + "dir": "Close Short", + "closedPnl": "231.356512", + "hash": "0xe09fe63d9e308f5ee219042e0ffbbd02014200233933ae30846891905d346949", + "oid": 210698144478, + "crossed": true, + "fee": "0.104999", + "tid": 393749697506199, + "cloid": "0x00000000000000000000001645000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "131787.0", + "side": "B", + "time": 1761251741778, + "startPosition": "-1930713373.0", + "dir": "Close Short", + "closedPnl": "231.417972", + "hash": "0x2db579f3fe3998102f2f042e0ffc1e02039d00d9993cb6e2d17e2546bd3d71fa", + "oid": 210698241592, + "crossed": true, + "fee": "0.105027", + "tid": 929750343121330, + "cloid": "0x00000000000000000000001645000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "109313.0", + "side": "B", + "time": 1761251751690, + "startPosition": "-1930581586.0", + "dir": "Close Short", + "closedPnl": "191.953628", + "hash": "0x1fbb33dcdc52698d2134042e0ffc9c0202d900c27755885fc383df2f9b564377", + "oid": 210698329636, + "crossed": true, + "fee": "0.087116", + "tid": 211555349390139, + "cloid": "0x00000000000000000000001645000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "22462.0", + "side": "B", + "time": 1761251751690, + "startPosition": "-1930472273.0", + "dir": "Close Short", + "closedPnl": "39.42081", + "hash": "0x1fbb33dcdc52698d2134042e0ffc9c0202d900c27755885fc383df2f9b564377", + "oid": 210698329636, + "crossed": true, + "fee": "0.017905", + "tid": 1083425376438904, + "cloid": "0x00000000000000000000001645000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "131795.0", + "side": "B", + "time": 1761251766886, + "startPosition": "-1930449811.0", + "dir": "Close Short", + "closedPnl": "231.43202", + "hash": "0xf6af37f544d102f4f828042e0ffd5002041d00dadfd421c79a77e34803d4dcdf", + "oid": 210698520465, + "crossed": true, + "fee": "0.105034", + "tid": 936371869876515, + "cloid": "0x00000000000000000000001645000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "131718.0", + "side": "B", + "time": 1761251771092, + "startPosition": "-1930318016.0", + "dir": "Close Short", + "closedPnl": "231.296808", + "hash": "0x020fa21c667aa82c0389042e0ffd820202cd0002017dc6fea5d84d6f257e8216", + "oid": 210698575443, + "crossed": true, + "fee": "0.104972", + "tid": 90233448693604, + "cloid": "0x00000000000000000000001645000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "22.0", + "side": "B", + "time": 1761251772410, + "startPosition": "-1930186298.0", + "dir": "Close Short", + "closedPnl": "0.038632", + "hash": "0x9e55fa59026caaab9fcf042e0ffd92020394003e9d6fc97d421ea5abc1608496", + "oid": 210698591565, + "crossed": true, + "fee": "0.000017", + "tid": 77742944469111, + "cloid": "0x00000000000000000000001645000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131716.0", + "side": "B", + "time": 1761251772410, + "startPosition": "-1930186276.0", + "dir": "Close Short", + "closedPnl": "231.16158", + "hash": "0x9e55fa59026caaab9fcf042e0ffd92020394003e9d6fc97d421ea5abc1608496", + "oid": 210698591565, + "crossed": true, + "fee": "0.104998", + "tid": 163231451221568, + "cloid": "0x00000000000000000000001645000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "62055.0", + "side": "B", + "time": 1761251774018, + "startPosition": "-1930054560.0", + "dir": "Close Short", + "closedPnl": "108.906525", + "hash": "0xa0e2f1048c35dd3aa25c042e0ffdaa0202c100ea2738fc0c44ab9c574b39b725", + "oid": 210698614092, + "crossed": true, + "fee": "0.049467", + "tid": 1077008654582746, + "cloid": "0x00000000000000000000001645000143", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "69697.0", + "side": "B", + "time": 1761251774018, + "startPosition": "-1929992505.0", + "dir": "Close Short", + "closedPnl": "122.318235", + "hash": "0xa0e2f1048c35dd3aa25c042e0ffdaa0202c100ea2738fc0c44ab9c574b39b725", + "oid": 210698614092, + "crossed": true, + "fee": "0.055559", + "tid": 224674446434185, + "cloid": "0x00000000000000000000001645000143", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "62349.0", + "side": "B", + "time": 1761251777784, + "startPosition": "-1929922808.0", + "dir": "Close Short", + "closedPnl": "109.422495", + "hash": "0xb3b6cb7aa801e275b530042e0ffde00202f8006043050147577f76cd6705bc60", + "oid": 210698657771, + "crossed": true, + "fee": "0.049702", + "tid": 854408203894476, + "cloid": "0x00000000000000000000001645000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "69426.0", + "side": "B", + "time": 1761251777784, + "startPosition": "-1929860459.0", + "dir": "Close Short", + "closedPnl": "121.84263", + "hash": "0xb3b6cb7aa801e275b530042e0ffde00202f8006043050147577f76cd6705bc60", + "oid": 210698657771, + "crossed": true, + "fee": "0.055343", + "tid": 480091085025029, + "cloid": "0x00000000000000000000001645000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131737.0", + "side": "B", + "time": 1761251779605, + "startPosition": "-1929791033.0", + "dir": "Close Short", + "closedPnl": "231.198435", + "hash": "0x01f35da5ff40eaeb036d042e0ffdf20204b2008b9a4409bda5bc08f8be44c4d5", + "oid": 210698685091, + "crossed": true, + "fee": "0.105015", + "tid": 212732390497461, + "cloid": "0x00000000000000000000001645000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131747.0", + "side": "B", + "time": 1761251781052, + "startPosition": "-1929659296.0", + "dir": "Close Short", + "closedPnl": "231.215985", + "hash": "0x5f549f768d4b292460ce042e0ffe02020442005c284e47f6031d4ac94c4f030f", + "oid": 210698704956, + "crossed": true, + "fee": "0.105023", + "tid": 191216240030666, + "cloid": "0x00000000000000000000001645000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131787.0", + "side": "B", + "time": 1761251784779, + "startPosition": "-1929527549.0", + "dir": "Close Short", + "closedPnl": "231.286185", + "hash": "0x33d81323a295bf653551042e0ffe2e02018300093d98de37d7a0be766199994f", + "oid": 210698736431, + "crossed": true, + "fee": "0.105055", + "tid": 877194061991769, + "cloid": "0x00000000000000000000001645000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131787.0", + "side": "B", + "time": 1761251790330, + "startPosition": "-1929395762.0", + "dir": "Close Short", + "closedPnl": "231.286185", + "hash": "0x8e43d6c63c053f1a8fbd042e0ffe7802014000abd7085dec320c8218fb091905", + "oid": 210698773885, + "crossed": true, + "fee": "0.105055", + "tid": 559179932306959, + "cloid": "0x00000000000000000000001645000151", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "131752.0", + "side": "B", + "time": 1761251791764, + "startPosition": "-1929263975.0", + "dir": "Close Short", + "closedPnl": "231.356512", + "hash": "0x49b9adfa61c467694b33042e0ffe890201e700dffcc7863bed82594d20c84153", + "oid": 210698785253, + "crossed": true, + "fee": "0.104999", + "tid": 459223145296246, + "cloid": "0x00000000000000000000001645000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131787.0", + "side": "B", + "time": 1761251886377, + "startPosition": "-1929132223.0", + "dir": "Close Short", + "closedPnl": "232.076907", + "hash": "0xff85c8058e92b76900ff042e1002de0202d300eb2995d63ca34e73584d969154", + "oid": 210699508943, + "crossed": true, + "fee": "0.104889", + "tid": 195147892543423, + "cloid": "0x00000000000000000000001645000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131926.0", + "side": "B", + "time": 1761251887585, + "startPosition": "-1929000436.0", + "dir": "Close Short", + "closedPnl": "232.321686", + "hash": "0x143d7f1dfa2f0f4415b7042e1002ed020269000395222e16b8062a70b922e92e", + "oid": 210699528516, + "crossed": true, + "fee": "0.104999", + "tid": 846877859750735, + "cloid": "0x00000000000000000000001645000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131926.0", + "side": "B", + "time": 1761251888748, + "startPosition": "-1928868510.0", + "dir": "Close Short", + "closedPnl": "232.321686", + "hash": "0xe2c479ffbcdefb72e43e042e1002fa0201cb00e557d21a44868d25527bd2d55d", + "oid": 210699535603, + "crossed": true, + "fee": "0.104999", + "tid": 266562265640197, + "cloid": "0x00000000000000000000001645000168", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131961.0", + "side": "B", + "time": 1761251890203, + "startPosition": "-1928736584.0", + "dir": "Close Short", + "closedPnl": "232.383321", + "hash": "0x493c098766ed46304ab5042e10030b0201ff006d01e06502ed04b4da25e1201a", + "oid": 210699544951, + "crossed": true, + "fee": "0.105027", + "tid": 572453738920060, + "cloid": "0x00000000000000000000001645000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "32222.0", + "side": "B", + "time": 1761251891682, + "startPosition": "-1928604623.0", + "dir": "Close Short", + "closedPnl": "56.742942", + "hash": "0xe618ec6860aa91b8e792042e10031c0201e6004dfbadb08a89e197bb1fae6ba3", + "oid": 210699551386, + "crossed": true, + "fee": "0.025645", + "tid": 834289413210315, + "cloid": "0x00000000000000000000001645000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "99704.0", + "side": "B", + "time": 1761251891682, + "startPosition": "-1928572401.0", + "dir": "Close Short", + "closedPnl": "175.578744", + "hash": "0xe618ec6860aa91b8e792042e10031c0201e6004dfbadb08a89e197bb1fae6ba3", + "oid": 210699551386, + "crossed": true, + "fee": "0.079354", + "tid": 880683466026458, + "cloid": "0x00000000000000000000001645000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131951.0", + "side": "B", + "time": 1761251892871, + "startPosition": "-1928472697.0", + "dir": "Close Short", + "closedPnl": "232.365711", + "hash": "0x24a1b1a6f952fbda261b042e10032b02021e008c94561aacc86a5cf9b856d5c4", + "oid": 210699557896, + "crossed": true, + "fee": "0.105019", + "tid": 1019462397722467, + "cloid": "0x00000000000000000000001645000171", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131961.0", + "side": "B", + "time": 1761251894291, + "startPosition": "-1928340746.0", + "dir": "Close Short", + "closedPnl": "232.383321", + "hash": "0x4479e6a1cb62bca945f3042e10033b02029700876665db7be84291f48a669693", + "oid": 210699569690, + "crossed": true, + "fee": "0.105027", + "tid": 83640949480551, + "cloid": "0x00000000000000000000001645000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131926.0", + "side": "B", + "time": 1761251896849, + "startPosition": "-1928208785.0", + "dir": "Close Short", + "closedPnl": "232.321686", + "hash": "0xfa8a557ebd943b05fc04042e10035e01c3006d64589759d89e5300d17c9814f0", + "oid": 210699587932, + "crossed": true, + "fee": "0.104999", + "tid": 665626111372380, + "cloid": "0x00000000000000000000001645000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131961.0", + "side": "B", + "time": 1761251901965, + "startPosition": "-1928076859.0", + "dir": "Close Short", + "closedPnl": "232.515282", + "hash": "0x55da5dcd1cf581455754042e1003a20203d500b2b7f8a017f9a3091fdbf95b2f", + "oid": 210699665651, + "crossed": true, + "fee": "0.105", + "tid": 755313284948980, + "cloid": "0x00000000000000000000001645000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "51.0", + "side": "B", + "time": 1761251903124, + "startPosition": "-1927944898.0", + "dir": "Close Short", + "closedPnl": "0.089862", + "hash": "0x1746fafec2c5064818c0042e1003b10202af00e45dc8251abb0fa65181c8e032", + "oid": 210699688560, + "crossed": true, + "fee": "0.00004", + "tid": 875242898849130, + "cloid": "0x00000000000000000000001645000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131945.0", + "side": "B", + "time": 1761251903124, + "startPosition": "-1927944847.0", + "dir": "Close Short", + "closedPnl": "232.48709", + "hash": "0x1746fafec2c5064818c0042e1003b10202af00e45dc8251abb0fa65181c8e032", + "oid": 210699688560, + "crossed": true, + "fee": "0.104987", + "tid": 109136953939323, + "cloid": "0x00000000000000000000001645000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132008.0", + "side": "B", + "time": 1761251904783, + "startPosition": "-1927812902.0", + "dir": "Close Short", + "closedPnl": "232.730104", + "hash": "0xb08e6c3cead8156bb208042e1003c4020239002285db343d5457178fa9dbef56", + "oid": 210699711165, + "crossed": true, + "fee": "0.105009", + "tid": 695488856844218, + "cloid": "0x00000000000000000000001645000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132008.0", + "side": "B", + "time": 1761251905971, + "startPosition": "-1927680894.0", + "dir": "Close Short", + "closedPnl": "232.730104", + "hash": "0x9f0a65082b87253ca084042e1003d102047b00edc68a440e42d3105aea8aff27", + "oid": 210699733799, + "crossed": true, + "fee": "0.105009", + "tid": 1035303201099093, + "cloid": "0x00000000000000000000001645000177", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132000.0", + "side": "B", + "time": 1761251908198, + "startPosition": "-1927548886.0", + "dir": "Close Short", + "closedPnl": "232.716", + "hash": "0xb15b9ac7d764c680b2d5042e1003ef0202d300ad7267e5525524461a9668a06b", + "oid": 210699763069, + "crossed": true, + "fee": "0.105003", + "tid": 562960354323669, + "cloid": "0x00000000000000000000001645000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "69842.0", + "side": "B", + "time": 1761251909529, + "startPosition": "-1927416886.0", + "dir": "Close Short", + "closedPnl": "123.131446", + "hash": "0x4a23fb886cd7e7004b9d042e10040002052d006e07db05d2edeca6db2bdbc0ea", + "oid": 210699779330, + "crossed": true, + "fee": "0.055557", + "tid": 251164353732519, + "cloid": "0x00000000000000000000001645000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "62189.0", + "side": "B", + "time": 1761251909529, + "startPosition": "-1927347044.0", + "dir": "Close Short", + "closedPnl": "109.639207", + "hash": "0x4a23fb886cd7e7004b9d042e10040002052d006e07db05d2edeca6db2bdbc0ea", + "oid": 210699779330, + "crossed": true, + "fee": "0.04947", + "tid": 411057696376718, + "cloid": "0x00000000000000000000001645000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132000.0", + "side": "B", + "time": 1761251911250, + "startPosition": "-1927284855.0", + "dir": "Close Short", + "closedPnl": "232.716", + "hash": "0x970dcc7b9e7e7ccf9887042e10041902011a006139719ba13ad677ce5d7256ba", + "oid": 210699794388, + "crossed": true, + "fee": "0.105003", + "tid": 681118322914023, + "cloid": "0x00000000000000000000001645000180", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132039.0", + "side": "B", + "time": 1761251914253, + "startPosition": "-1927152855.0", + "dir": "Close Short", + "closedPnl": "232.784757", + "hash": "0xc4da280c6143cc9fc653042e10043f02019100f1fc46eb7168a2d35f2047a68a", + "oid": 210699810022, + "crossed": true, + "fee": "0.105034", + "tid": 682231334360373, + "cloid": "0x00000000000000000000001645000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132055.0", + "side": "B", + "time": 1761251915651, + "startPosition": "-1927020816.0", + "dir": "Close Short", + "closedPnl": "232.812965", + "hash": "0xc06954be87ba4771c1e3042e10044e02030500a422bd66436432001146be215c", + "oid": 210699817236, + "crossed": true, + "fee": "0.105047", + "tid": 663230994010185, + "cloid": "0x00000000000000000000001645000182", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132031.0", + "side": "B", + "time": 1761251916858, + "startPosition": "-1926888761.0", + "dir": "Close Short", + "closedPnl": "232.770653", + "hash": "0xac159e6c89c7fcfead8f042e10045c020208005224cb1bd04fde49bf48cbd6e9", + "oid": 210699820788, + "crossed": true, + "fee": "0.105028", + "tid": 204525224882964, + "cloid": "0x00000000000000000000001645000183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132046.0", + "side": "B", + "time": 1761251918088, + "startPosition": "-1926756730.0", + "dir": "Close Short", + "closedPnl": "232.929144", + "hash": "0x4756ef7868380a5948d0042e10046c020137005e033b292beb1f9acb273be443", + "oid": 210699827245, + "crossed": true, + "fee": "0.105012", + "tid": 372185989320971, + "cloid": "0x00000000000000000000001645000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132066.0", + "side": "B", + "time": 1761251919465, + "startPosition": "-1926624684.0", + "dir": "Close Short", + "closedPnl": "232.964424", + "hash": "0xc041aaac7b6bef74c1bb042e10047c0205920092166f0e46640a55ff3a6fc95f", + "oid": 210699831565, + "crossed": true, + "fee": "0.105028", + "tid": 603923744997565, + "cloid": "0x00000000000000000000001645000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132090.0", + "side": "B", + "time": 1761251920584, + "startPosition": "-1926492618.0", + "dir": "Close Short", + "closedPnl": "233.00676", + "hash": "0xdc0cecad8e9cd7dadd86042e1004880201010093299ff6ac7fd598004d90b1c5", + "oid": 210699837742, + "crossed": true, + "fee": "0.105047", + "tid": 921058349329426, + "cloid": "0x00000000000000000000001645000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132072.0", + "side": "B", + "time": 1761251921818, + "startPosition": "-1926360528.0", + "dir": "Close Short", + "closedPnl": "232.842936", + "hash": "0x291c8b59f9a0c0652a96042e10049802018a003f94a3df37cce536acb8a49a4f", + "oid": 210699845435, + "crossed": true, + "fee": "0.10506", + "tid": 466753341987922, + "cloid": "0x00000000000000000000001645000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132031.0", + "side": "B", + "time": 1761251923271, + "startPosition": "-1926228456.0", + "dir": "Close Short", + "closedPnl": "232.770653", + "hash": "0xee85ecf199b831bdefff042e1004a80201e300d734bb508f924e984458bc0ba8", + "oid": 210699854798, + "crossed": true, + "fee": "0.105028", + "tid": 1053423725264989, + "cloid": "0x00000000000000000000001645000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132066.0", + "side": "B", + "time": 1761251924539, + "startPosition": "-1926096425.0", + "dir": "Close Short", + "closedPnl": "232.832358", + "hash": "0x208abd5aa3e00b952204042e1004ba0203a400403ee32a67c45368ad62e3e57f", + "oid": 210699863547, + "crossed": true, + "fee": "0.105055", + "tid": 188607734815139, + "cloid": "0x00000000000000000000001645000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132055.0", + "side": "B", + "time": 1761251925842, + "startPosition": "-1925964359.0", + "dir": "Close Short", + "closedPnl": "232.812965", + "hash": "0xe52ea0004fc57f1ae6a8042e1004cb01fd00b7e5eac89dec88f74b530ec95905", + "oid": 210699876645, + "crossed": true, + "fee": "0.105047", + "tid": 377612988271207, + "cloid": "0x00000000000000000000001645000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132066.0", + "side": "B", + "time": 1761251927134, + "startPosition": "-1925832304.0", + "dir": "Close Short", + "closedPnl": "232.832358", + "hash": "0x71d17badc1334180734b042e1004db01dc0093935c366052159a270080371b6b", + "oid": 210699887048, + "crossed": true, + "fee": "0.105055", + "tid": 595484086214482, + "cloid": "0x00000000000000000000001645000191", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132035.0", + "side": "B", + "time": 1761251928854, + "startPosition": "-1925700238.0", + "dir": "Close Short", + "closedPnl": "232.777705", + "hash": "0x2d00a0d9e68976522e7a042e1004ef02019500bf818c9524d0c94c2ca58d503c", + "oid": 210699905739, + "crossed": true, + "fee": "0.105031", + "tid": 1055838079213510, + "cloid": "0x00000000000000000000001645000192", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132081.0", + "side": "B", + "time": 1761251930347, + "startPosition": "-1925568203.0", + "dir": "Close Short", + "closedPnl": "232.990884", + "hash": "0xf008cfe0a7a63982f182042e1004ff02012700c642a9585593d17b3366aa136d", + "oid": 210699924102, + "crossed": true, + "fee": "0.10504", + "tid": 129631492725798, + "cloid": "0x00000000000000000000001645000193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132055.0", + "side": "B", + "time": 1761251933812, + "startPosition": "-1925436122.0", + "dir": "Close Short", + "closedPnl": "232.812965", + "hash": "0xc281f198a316012bc3fb042e10052b02011a007e3e191ffd664a9ceb6219db16", + "oid": 210699962647, + "crossed": true, + "fee": "0.105047", + "tid": 253566577501696, + "cloid": "0x00000000000000000000001645000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132076.0", + "side": "B", + "time": 1761251935173, + "startPosition": "-1925304067.0", + "dir": "Close Short", + "closedPnl": "232.982064", + "hash": "0x42e78a78867c26c44461042e10053b020270005e217f4596e6b035cb457000ae", + "oid": 210699981399, + "crossed": true, + "fee": "0.105036", + "tid": 1034325010383718, + "cloid": "0x00000000000000000000001645000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132083.0", + "side": "B", + "time": 1761251936378, + "startPosition": "-1925171991.0", + "dir": "Close Short", + "closedPnl": "232.994412", + "hash": "0xb18f264060dc5197b308042e1005480202050025fbdf70695557d1931fd02b82", + "oid": 210699994250, + "crossed": true, + "fee": "0.105041", + "tid": 1086827296895464, + "cloid": "0x00000000000000000000001645000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132066.0", + "side": "B", + "time": 1761251937606, + "startPosition": "-1925039908.0", + "dir": "Close Short", + "closedPnl": "232.964424", + "hash": "0x2cdb5798f1d1c9292e55042e100558020145007e8cd4e7fbd0a402ebb0d5a313", + "oid": 210700007780, + "crossed": true, + "fee": "0.105028", + "tid": 270963146801523, + "cloid": "0x00000000000000000000001645000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132135.0", + "side": "B", + "time": 1761251940686, + "startPosition": "-1924907842.0", + "dir": "Close Short", + "closedPnl": "233.218275", + "hash": "0x7bc29c92b723d2827d3c042e10058402018600785226f1541f8b47e57627ac6d", + "oid": 210700037831, + "crossed": true, + "fee": "0.105055", + "tid": 615448619757614, + "cloid": "0x00000000000000000000001645000199", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003785", + "sz": "132088.0", + "side": "B", + "time": 1761251959102, + "startPosition": "-1924775707.0", + "dir": "Close Short", + "closedPnl": "233.267408", + "hash": "0x0321fd28458ad6dc049b042e10066c0202d4000de08df5aea6eaa87b048eb0c6", + "oid": 210700283462, + "crossed": true, + "fee": "0.10499", + "tid": 295353005114972, + "cloid": "0x00000000000000000000001645000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003785", + "sz": "40.0", + "side": "B", + "time": 1761251959102, + "startPosition": "-1924643619.0", + "dir": "Close Short", + "closedPnl": "0.07064", + "hash": "0x0321fd28458ad6dc049b042e10066c0202d4000de08df5aea6eaa87b048eb0c6", + "oid": 210700283462, + "crossed": true, + "fee": "0.000031", + "tid": 686516898400431, + "cloid": "0x00000000000000000000001645000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "77996.0", + "side": "B", + "time": 1761251960615, + "startPosition": "-1924643579.0", + "dir": "Close Short", + "closedPnl": "137.584944", + "hash": "0x08d5c72071ec278d0a4f042e1006830202d700060cef465fac9e727330e00177", + "oid": 210700294147, + "crossed": true, + "fee": "0.062027", + "tid": 447481652192827, + "cloid": "0x00000000000000000000001645000205", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "54104.0", + "side": "B", + "time": 1761251960615, + "startPosition": "-1924565583.0", + "dir": "Close Short", + "closedPnl": "95.439456", + "hash": "0x08d5c72071ec278d0a4f042e1006830202d700060cef465fac9e727330e00177", + "oid": 210700294147, + "crossed": true, + "fee": "0.043027", + "tid": 545942232699866, + "cloid": "0x00000000000000000000001645000205", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132100.0", + "side": "B", + "time": 1761251961825, + "startPosition": "-1924511479.0", + "dir": "Close Short", + "closedPnl": "233.1565", + "hash": "0x0c26838668fdd6590da0042e10068f020134006c03f0f52bafef2ed927f1b043", + "oid": 210700303810, + "crossed": true, + "fee": "0.105027", + "tid": 1096959286324300, + "cloid": "0x00000000000000000000001645000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132066.0", + "side": "B", + "time": 1761251963028, + "startPosition": "-1924379379.0", + "dir": "Close Short", + "closedPnl": "232.964424", + "hash": "0xb55f4d24f317153eb6d9042e10069b0202ea000a8e1a34105927f877b21aef29", + "oid": 210700322541, + "crossed": true, + "fee": "0.105028", + "tid": 241187787354061, + "cloid": "0x00000000000000000000001645000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132066.0", + "side": "B", + "time": 1761251964270, + "startPosition": "-1924247313.0", + "dir": "Close Short", + "closedPnl": "232.964424", + "hash": "0x6cc80f958a8bf2fd6e41042e1006a8020178007b258f11cf1090bae8498fcce8", + "oid": 210700339006, + "crossed": true, + "fee": "0.105028", + "tid": 1111104425030479, + "cloid": "0x00000000000000000000001645000208", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132100.0", + "side": "B", + "time": 1761251965728, + "startPosition": "-1924115247.0", + "dir": "Close Short", + "closedPnl": "233.0244", + "hash": "0xb22ddc488f06e640b3a7042e1006ba020126002e2a0a051255f6879b4e0ac02b", + "oid": 210700356665, + "crossed": true, + "fee": "0.105055", + "tid": 717196073460570, + "cloid": "0x00000000000000000000001645000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132100.0", + "side": "B", + "time": 1761251966975, + "startPosition": "-1923983147.0", + "dir": "Close Short", + "closedPnl": "233.0244", + "hash": "0xdbba1368121ef8c7dd33042e1006c80202b9004dad1217997f82bebad112d2b2", + "oid": 210700372530, + "crossed": true, + "fee": "0.105055", + "tid": 668190994845589, + "cloid": "0x00000000000000000000001645000210", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "132116.0", + "side": "B", + "time": 1761252001930, + "startPosition": "-1923851047.0", + "dir": "Close Short", + "closedPnl": "233.977436", + "hash": "0x3abb1783c3a8e3823c34042e100864020f2e00695eac0254de83c2d682acbd6c", + "oid": 210700810816, + "crossed": true, + "fee": "0.104873", + "tid": 1108004157883818, + "cloid": "0x00000000000000000000001645000221", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "132300.0", + "side": "B", + "time": 1761252003464, + "startPosition": "-1923718931.0", + "dir": "Close Short", + "closedPnl": "234.3033", + "hash": "0xfcfda5cec12836b8fe77042e100875020eb100b45c2b558ba0c65121802c10a3", + "oid": 210700839554, + "crossed": true, + "fee": "0.105019", + "tid": 926071907805528, + "cloid": "0x00000000000000000000001645000222", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "132275.0", + "side": "B", + "time": 1761252006751, + "startPosition": "-1923586631.0", + "dir": "Close Short", + "closedPnl": "234.259025", + "hash": "0xbe5706038644116cbfd0042e10089b02019500e92147303e621fb1564547eb57", + "oid": 210700894610, + "crossed": true, + "fee": "0.104999", + "tid": 847855160654120, + "cloid": "0x00000000000000000000001645000224", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "132310.0", + "side": "B", + "time": 1761252007950, + "startPosition": "-1923454356.0", + "dir": "Close Short", + "closedPnl": "234.32101", + "hash": "0x048273724e6c74aa05fc042e1008ac0201520057e96f937ca84b1ec50d604e94", + "oid": 210700908907, + "crossed": true, + "fee": "0.105027", + "tid": 1123190036938769, + "cloid": "0x00000000000000000000001645000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003779", + "sz": "132290.0", + "side": "B", + "time": 1761252014048, + "startPosition": "-1923322046.0", + "dir": "Close Short", + "closedPnl": "234.41788", + "hash": "0x72cc25477f8324647445042e1008ed02012f002d1a8643361694d09a3e86fe4f", + "oid": 210700988036, + "crossed": true, + "fee": "0.104984", + "tid": 1057344622791366, + "cloid": "0x00000000000000000000001645000227", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003779", + "sz": "132345.0", + "side": "B", + "time": 1761252016062, + "startPosition": "-1923189756.0", + "dir": "Close Short", + "closedPnl": "234.51534", + "hash": "0xd63d823daf2e0d73d7b7042e1009050201c100234a212c457a062d906e21e75e", + "oid": 210701013049, + "crossed": true, + "fee": "0.105027", + "tid": 892114114255655, + "cloid": "0x00000000000000000000001645000228", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003779", + "sz": "132380.0", + "side": "B", + "time": 1761252018360, + "startPosition": "-1923057411.0", + "dir": "Close Short", + "closedPnl": "234.57736", + "hash": "0x43ab902bb60aa19c4525042e1009230201490011510dc06ee7743b7e750e7b86", + "oid": 210701039220, + "crossed": true, + "fee": "0.105055", + "tid": 1034667601193813, + "cloid": "0x00000000000000000000001645000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "132393.0", + "side": "B", + "time": 1761252020570, + "startPosition": "-1922925031.0", + "dir": "Close Short", + "closedPnl": "234.865182", + "hash": "0x6b3876ebd2863b576cb2042e1009430205b100d16d895a290f01223e918a1542", + "oid": 210701072665, + "crossed": true, + "fee": "0.10501", + "tid": 105676792929906, + "cloid": "0x00000000000000000000001645000230", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "132415.0", + "side": "B", + "time": 1761252021698, + "startPosition": "-1922792638.0", + "dir": "Close Short", + "closedPnl": "234.90421", + "hash": "0x85493f94293eaab186c2042e1009530203040079c431c9832911eae6e832849c", + "oid": 210701088666, + "crossed": true, + "fee": "0.105027", + "tid": 790343421672991, + "cloid": "0x00000000000000000000001645000231", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "119385.0", + "side": "B", + "time": 1761252023303, + "startPosition": "-1922660223.0", + "dir": "Close Short", + "closedPnl": "211.78899", + "hash": "0xf10b6b4f80bba271f285042e10096d02013a00351bbec14494d416a23fbf7c5c", + "oid": 210701107502, + "crossed": true, + "fee": "0.094692", + "tid": 514560141274505, + "cloid": "0x00000000000000000000001645000232", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "13045.0", + "side": "B", + "time": 1761252023303, + "startPosition": "-1922540838.0", + "dir": "Close Short", + "closedPnl": "23.14183", + "hash": "0xf10b6b4f80bba271f285042e10096d02013a00351bbec14494d416a23fbf7c5c", + "oid": 210701107502, + "crossed": true, + "fee": "0.010346", + "tid": 561533025242938, + "cloid": "0x00000000000000000000001645000232", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "132450.0", + "side": "B", + "time": 1761252024609, + "startPosition": "-1922527793.0", + "dir": "Close Short", + "closedPnl": "234.9663", + "hash": "0x1c82eb16ad07d68c1dfc042e1009800205a800fc480af55ec04b96696c0bb076", + "oid": 210701122626, + "crossed": true, + "fee": "0.105055", + "tid": 572324515786771, + "cloid": "0x00000000000000000000001645000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003776", + "sz": "132454.0", + "side": "B", + "time": 1761252026191, + "startPosition": "-1922395343.0", + "dir": "Close Short", + "closedPnl": "235.10585", + "hash": "0xfcc0db111100337bfe3a042e10099402028400f6ac03524ea0898663d0040d66", + "oid": 210701146233, + "crossed": true, + "fee": "0.10503", + "tid": 479980368575170, + "cloid": "0x00000000000000000000001645000234", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003775", + "sz": "132470.0", + "side": "B", + "time": 1761252031342, + "startPosition": "-1922262889.0", + "dir": "Close Short", + "closedPnl": "235.26672", + "hash": "0x6870da160199c7c069ea042e1009d002074900fb9c9ce6920c398568c09da1ab", + "oid": 210701203802, + "crossed": true, + "fee": "0.105015", + "tid": 644558268519315, + "cloid": "0x00000000000000000000001645000236", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003775", + "sz": "132485.0", + "side": "B", + "time": 1761252044541, + "startPosition": "-1922130419.0", + "dir": "Close Short", + "closedPnl": "235.29336", + "hash": "0x9b7dfc5693f23d979cf7042e100a7d02033e003c2ef55c693f46a7a952f61782", + "oid": 210701350235, + "crossed": true, + "fee": "0.105027", + "tid": 918138585782383, + "cloid": "0x00000000000000000000001645000239", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003775", + "sz": "132485.0", + "side": "B", + "time": 1761252062599, + "startPosition": "-1921997934.0", + "dir": "Close Short", + "closedPnl": "235.29336", + "hash": "0xb87ced94ef63de6ab9f6042e100b6c020822007a8a66fd3c5c4598e7ae67b855", + "oid": 210701582752, + "crossed": true, + "fee": "0.105027", + "tid": 386411198974418, + "cloid": "0x00000000000000000000001645000243", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003775", + "sz": "132450.0", + "side": "B", + "time": 1761252063830, + "startPosition": "-1921865449.0", + "dir": "Close Short", + "closedPnl": "235.2312", + "hash": "0x0cd8759f944352a80e52042e100b7e0201c600852f46717ab0a120f253472c92", + "oid": 210701595997, + "crossed": true, + "fee": "0.104999", + "tid": 445085097871432, + "cloid": "0x00000000000000000000001645000244", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.6", + "sz": "0.6804", + "side": "A", + "time": 1761374677906, + "startPosition": "-2607.4108", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa2e33e63593951aea45c042e277de402016f0048f43c708046abe9b6183d2b99", + "oid": 211995786525, + "crossed": true, + "fee": "0.561619", + "tid": 65217991059059, + "cloid": "0x00000000000000000000000001000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3930.6", + "sz": "1.864", + "side": "A", + "time": 1761374677906, + "startPosition": "-2608.0912", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xa2e33e63593951aea45c042e277de402016f0048f43c708046abe9b6183d2b99", + "oid": 211995786525, + "crossed": true, + "fee": "1.538594", + "tid": 733892445739887, + "cloid": "0x00000000000000000000000001000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3931.0", + "sz": "2.5444", + "side": "A", + "time": 1761374679225, + "startPosition": "-2609.9552", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf2c26a6333732255f43c042e277df30208280048ce764128968b15b5f276fc40", + "oid": 211995803934, + "crossed": true, + "fee": "2.100427", + "tid": 889898507451806, + "cloid": "0x00000000000000000000000001000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3931.2", + "sz": "1.1768", + "side": "A", + "time": 1761374682102, + "startPosition": "-2612.4996", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe884dbfafdce4344e9fe042e277e110205ff00e098c162168c4d874dbcc21d2f", + "oid": 211995847064, + "crossed": true, + "fee": "0.971509", + "tid": 459542463674410, + "cloid": "0x00000000000000000000000001000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3931.2", + "sz": "1.2", + "side": "A", + "time": 1761374682102, + "startPosition": "-2613.6764", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe884dbfafdce4344e9fe042e277e110205ff00e098c162168c4d874dbcc21d2f", + "oid": 211995847064, + "crossed": true, + "fee": "0.990662", + "tid": 798249453970386, + "cloid": "0x00000000000000000000000001000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3931.2", + "sz": "0.1669", + "side": "A", + "time": 1761374682102, + "startPosition": "-2614.8764", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xe884dbfafdce4344e9fe042e277e110205ff00e098c162168c4d874dbcc21d2f", + "oid": 211995847064, + "crossed": true, + "fee": "0.137784", + "tid": 870460971454701, + "cloid": "0x00000000000000000000000001000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3931.2", + "sz": "0.0592", + "side": "A", + "time": 1761374683459, + "startPosition": "-2615.0433", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1654cd1c1a6e19ed17ce042e277e1d02031d0001b56138bfba1d786ed961f3d7", + "oid": 211995857344, + "crossed": true, + "fee": "0.048872", + "tid": 659208741370062, + "cloid": "0x00000000000000000000000001000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3931.2", + "sz": "1.4679", + "side": "A", + "time": 1761374683459, + "startPosition": "-2615.1025", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1654cd1c1a6e19ed17ce042e277e1d02031d0001b56138bfba1d786ed961f3d7", + "oid": 211995857344, + "crossed": true, + "fee": "1.211827", + "tid": 875858483525026, + "cloid": "0x00000000000000000000000001000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3931.2", + "sz": "0.673", + "side": "A", + "time": 1761374683459, + "startPosition": "-2616.5704", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1654cd1c1a6e19ed17ce042e277e1d02031d0001b56138bfba1d786ed961f3d7", + "oid": 211995857344, + "crossed": true, + "fee": "0.555596", + "tid": 220217434247229, + "cloid": "0x00000000000000000000000001000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3931.2", + "sz": "0.3436", + "side": "A", + "time": 1761374683459, + "startPosition": "-2617.2434", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1654cd1c1a6e19ed17ce042e277e1d02031d0001b56138bfba1d786ed961f3d7", + "oid": 211995857344, + "crossed": true, + "fee": "0.283659", + "tid": 763706135672443, + "cloid": "0x00000000000000000000000001000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3931.5", + "sz": "0.6396", + "side": "A", + "time": 1761374685096, + "startPosition": "-2617.587", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6a1986eec29b60d36b93042e277e2e02038300d45d9e7fa50de23241819f3abe", + "oid": 211995875697, + "crossed": true, + "fee": "0.528063", + "tid": 198479144593459, + "cloid": "0x00000000000000000000000001000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3931.5", + "sz": "1.9037", + "side": "A", + "time": 1761374685322, + "startPosition": "-2618.2266", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xf5fc10a8512fbbacf775042e277e300203ca008dec22da7f99c4bbfb10239597", + "oid": 211995875697, + "crossed": false, + "fee": "0.209563", + "tid": 914234788748818, + "cloid": "0x00000000000000000000000001000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111412.0", + "sz": "0.22449", + "side": "A", + "time": 1761374687739, + "startPosition": "-0.30052", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xce714725ad63e877cfeb042e277e4b020267000b486707497239f2786c67c262", + "oid": 211995901094, + "crossed": true, + "fee": "5.252284", + "tid": 373321170080886, + "cloid": "0x00000000000000000000000002000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3931.7", + "sz": "1.172", + "side": "A", + "time": 1761374693842, + "startPosition": "-2620.1303", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc1729f6ec9ba7a41c2ec042e277e920201d1005464bd9913653b4ac188be542c", + "oid": 211995956117, + "crossed": true, + "fee": "0.96767", + "tid": 481201101855512, + "cloid": "0x00000000000000000000000001000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3931.7", + "sz": "1.1", + "side": "A", + "time": 1761374693842, + "startPosition": "-2621.3023", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc1729f6ec9ba7a41c2ec042e277e920201d1005464bd9913653b4ac188be542c", + "oid": 211995956117, + "crossed": true, + "fee": "0.908222", + "tid": 276239492251864, + "cloid": "0x00000000000000000000000001000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3931.7", + "sz": "0.1629", + "side": "A", + "time": 1761374693842, + "startPosition": "-2622.4023", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc1729f6ec9ba7a41c2ec042e277e920201d1005464bd9913653b4ac188be542c", + "oid": 211995956117, + "crossed": true, + "fee": "0.134499", + "tid": 1014859567277201, + "cloid": "0x00000000000000000000000001000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3931.7", + "sz": "0.1084", + "side": "A", + "time": 1761374693842, + "startPosition": "-2622.5652", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc1729f6ec9ba7a41c2ec042e277e920201d1005464bd9913653b4ac188be542c", + "oid": 211995956117, + "crossed": true, + "fee": "0.089501", + "tid": 669544666220591, + "cloid": "0x00000000000000000000000001000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111412.0", + "sz": "0.22449", + "side": "A", + "time": 1761374694044, + "startPosition": "-0.52501", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x667d91c4cdf93ffc67f7042e277e9402032b00aa68fc5ece0a463d178cfd19e7", + "oid": 211995958120, + "crossed": true, + "fee": "5.252284", + "tid": 683160470151348, + "cloid": "0x00000000000000000000000002000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111412.0", + "sz": "0.02385", + "side": "A", + "time": 1761374695410, + "startPosition": "-0.7495", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1f52cff31ae934f820cc042e277ea402018200d8b5ec53cac31b7b45d9ed0ee2", + "oid": 211995971741, + "crossed": true, + "fee": "0.558007", + "tid": 556930766294874, + "cloid": "0x00000000000000000000000002000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111412.0", + "sz": "0.20063", + "side": "A", + "time": 1761374695410, + "startPosition": "-0.77335", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1f52cff31ae934f820cc042e277ea402018200d8b5ec53cac31b7b45d9ed0ee2", + "oid": 211995971741, + "crossed": true, + "fee": "4.694043", + "tid": 907163921158420, + "cloid": "0x00000000000000000000000002000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3931.7", + "sz": "2.5432", + "side": "A", + "time": 1761374696863, + "startPosition": "-2622.6736", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1ca57ac88b5618be1e1f042e277eb602034700ae26593790c06e261b4a59f2a8", + "oid": 211995985526, + "crossed": true, + "fee": "2.09981", + "tid": 872182607041432, + "cloid": "0x00000000000000000000000001000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3931.7", + "sz": "2.5432", + "side": "A", + "time": 1761374698067, + "startPosition": "-2625.2168", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xda9b6c11313b2a12dc15042e277ec202021900f6cc3e48e47e641763f03f03fd", + "oid": 211995998480, + "crossed": true, + "fee": "2.09981", + "tid": 344207964882389, + "cloid": "0x00000000000000000000000001000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3931.9", + "sz": "1.5768", + "side": "A", + "time": 1761374701671, + "startPosition": "-2627.76", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x00c71c3cea60e6ab0240042e277ef101f90034228564057da48fc78fa964c095", + "oid": 211996029950, + "crossed": true, + "fee": "1.301962", + "tid": 158910470406601, + "cloid": "0x00000000000000000000000001000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3931.9", + "sz": "0.9664", + "side": "A", + "time": 1761374701671, + "startPosition": "-2629.3368", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x00c71c3cea60e6ab0240042e277ef101f90034228564057da48fc78fa964c095", + "oid": 211996029950, + "crossed": true, + "fee": "0.797955", + "tid": 113048584966837, + "cloid": "0x00000000000000000000000001000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3932.3", + "sz": "2.5429", + "side": "A", + "time": 1761374702874, + "startPosition": "-2630.3032", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x3ee86cee8b102eb44062042e277efd02030000d426134d86e2b118414a14089e", + "oid": 211996044048, + "crossed": true, + "fee": "2.099883", + "tid": 75821117260047, + "cloid": "0x00000000000000000000000001000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3932.4", + "sz": "0.6125", + "side": "A", + "time": 1761374704105, + "startPosition": "-2632.8461", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x5ff4e0fb4fef7dc0616e042e277f0b02030f00e0eae29c9203bd8c4e0ee357ab", + "oid": 211996054435, + "crossed": true, + "fee": "0.505804", + "tid": 1040518494100274, + "cloid": "0x00000000000000000000000001000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3932.4", + "sz": "1.1861", + "side": "A", + "time": 1761374704105, + "startPosition": "-2633.4586", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x5ff4e0fb4fef7dc0616e042e277f0b02030f00e0eae29c9203bd8c4e0ee357ab", + "oid": 211996054435, + "crossed": true, + "fee": "0.979486", + "tid": 964655073226977, + "cloid": "0x00000000000000000000000001000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3932.4", + "sz": "0.7442", + "side": "A", + "time": 1761374704105, + "startPosition": "-2634.6447", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x5ff4e0fb4fef7dc0616e042e277f0b02030f00e0eae29c9203bd8c4e0ee357ab", + "oid": 211996054435, + "crossed": true, + "fee": "0.614563", + "tid": 356993823076159, + "cloid": "0x00000000000000000000000001000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.1", + "sz": "2.5428", + "side": "A", + "time": 1761374705372, + "startPosition": "-2635.3889", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xc56769523c7bd358c6e1042e277f1c0201ab0037d77ef22a693014a4fb7fad43", + "oid": 211996071862, + "crossed": true, + "fee": "2.100228", + "tid": 673264766695321, + "cloid": "0x00000000000000000000000001000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111412.0", + "sz": "0.01884", + "side": "A", + "time": 1761374705372, + "startPosition": "-0.97398", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x783adfed560d15d479b4042e277f1c0201ac00d2f10034a61c038b401500efbf", + "oid": 211996071863, + "crossed": true, + "fee": "0.44079", + "tid": 295426987359249, + "cloid": "0x00000000000000000000000002000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111412.0", + "sz": "0.17952", + "side": "A", + "time": 1761374705372, + "startPosition": "-0.99282", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x783adfed560d15d479b4042e277f1c0201ac00d2f10034a61c038b401500efbf", + "oid": 211996071863, + "crossed": true, + "fee": "4.200143", + "tid": 1068100488790902, + "cloid": "0x00000000000000000000000002000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111412.0", + "sz": "0.02612", + "side": "A", + "time": 1761374705372, + "startPosition": "-1.17234", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x783adfed560d15d479b4042e277f1c0201ac00d2f10034a61c038b401500efbf", + "oid": 211996071863, + "crossed": true, + "fee": "0.611117", + "tid": 233569630084856, + "cloid": "0x00000000000000000000000002000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.1", + "sz": "0.5178", + "side": "A", + "time": 1761374706979, + "startPosition": "-2637.9317", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6c37d696b08167eb6db1042e277f2c020144007c4b8486bd100081e96f8541d6", + "oid": 211996088813, + "crossed": true, + "fee": "0.427677", + "tid": 881265966849428, + "cloid": "0x00000000000000000000000001000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.1", + "sz": "1.0062", + "side": "A", + "time": 1761374706979, + "startPosition": "-2638.4495", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6c37d696b08167eb6db1042e277f2c020144007c4b8486bd100081e96f8541d6", + "oid": 211996088813, + "crossed": true, + "fee": "0.831071", + "tid": 532445398020387, + "cloid": "0x00000000000000000000000001000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.1", + "sz": "1.0187", + "side": "A", + "time": 1761374706979, + "startPosition": "-2639.4557", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x6c37d696b08167eb6db1042e277f2c020144007c4b8486bd100081e96f8541d6", + "oid": 211996088813, + "crossed": true, + "fee": "0.841396", + "tid": 209830965973825, + "cloid": "0x00000000000000000000000001000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111412.0", + "sz": "0.00994", + "side": "A", + "time": 1761374706979, + "startPosition": "-1.19846", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1f0b4d31ca12aa672085042e277f2c02014500176515c939c2d3f88489168451", + "oid": 211996088814, + "crossed": true, + "fee": "0.232561", + "tid": 796016495776573, + "cloid": "0x00000000000000000000000002000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111412.0", + "sz": "0.03698", + "side": "A", + "time": 1761374706979, + "startPosition": "-1.2084", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1f0b4d31ca12aa672085042e277f2c02014500176515c939c2d3f88489168451", + "oid": 211996088814, + "crossed": true, + "fee": "0.865203", + "tid": 402927120888444, + "cloid": "0x00000000000000000000000002000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111412.0", + "sz": "0.03698", + "side": "A", + "time": 1761374706979, + "startPosition": "-1.24538", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1f0b4d31ca12aa672085042e277f2c02014500176515c939c2d3f88489168451", + "oid": 211996088814, + "crossed": true, + "fee": "0.865203", + "tid": 1086051567496248, + "cloid": "0x00000000000000000000000002000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111412.0", + "sz": "0.00897", + "side": "A", + "time": 1761374706979, + "startPosition": "-1.28236", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1f0b4d31ca12aa672085042e277f2c02014500176515c939c2d3f88489168451", + "oid": 211996088814, + "crossed": true, + "fee": "0.209866", + "tid": 895521379572819, + "cloid": "0x00000000000000000000000002000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111412.0", + "sz": "0.13161", + "side": "A", + "time": 1761374706979, + "startPosition": "-1.29133", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x1f0b4d31ca12aa672085042e277f2c02014500176515c939c2d3f88489168451", + "oid": 211996088814, + "crossed": true, + "fee": "3.079215", + "tid": 898991294679574, + "cloid": "0x00000000000000000000000002000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111420.0", + "sz": "0.1239", + "side": "A", + "time": 1761374714342, + "startPosition": "-1.42294", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90ddd64ee59b1fc69257042e277f7e0202a30034809e3e9834a681a1a49ef9b1", + "oid": 211996164985, + "crossed": true, + "fee": "2.899036", + "tid": 749987983436221, + "cloid": "0x00000000000000000000000002000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111420.0", + "sz": "0.10058", + "side": "A", + "time": 1761374714342, + "startPosition": "-1.54684", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90ddd64ee59b1fc69257042e277f7e0202a30034809e3e9834a681a1a49ef9b1", + "oid": 211996164985, + "crossed": true, + "fee": "2.35339", + "tid": 750538131926680, + "cloid": "0x00000000000000000000000002000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111421.0", + "sz": "0.22446", + "side": "A", + "time": 1761374715535, + "startPosition": "-1.64742", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfa6be8c59e2f2a6bfbe5042e277f8b02031300ab3922493e9e3494185d230456", + "oid": 211996181920, + "crossed": true, + "fee": "5.252007", + "tid": 450084706841341, + "cloid": "0x00000000000000000000000002000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111421.0", + "sz": "0.15674", + "side": "A", + "time": 1761374717061, + "startPosition": "-1.87188", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x010419335fedb3ce027d042e277f9c02037a0018fae0d2a0a4ccc4861ee18db8", + "oid": 211996194549, + "crossed": true, + "fee": "3.667466", + "tid": 1073303167538016, + "cloid": "0x00000000000000000000000002000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111421.0", + "sz": "0.03216", + "side": "A", + "time": 1761374717061, + "startPosition": "-2.02862", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x010419335fedb3ce027d042e277f9c02037a0018fae0d2a0a4ccc4861ee18db8", + "oid": 211996194549, + "crossed": true, + "fee": "0.752492", + "tid": 1043631302330819, + "cloid": "0x00000000000000000000000002000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111421.0", + "sz": "0.03556", + "side": "A", + "time": 1761374717061, + "startPosition": "-2.06078", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x010419335fedb3ce027d042e277f9c02037a0018fae0d2a0a4ccc4861ee18db8", + "oid": 211996194549, + "crossed": true, + "fee": "0.832047", + "tid": 816522922739249, + "cloid": "0x00000000000000000000000002000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.3", + "sz": "0.8709", + "side": "A", + "time": 1761374718143, + "startPosition": "-2640.4744", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x12dbaf07295ae1031455042e277fa902022800ecc45dffd5b6a45a59e85ebaed", + "oid": 211996206076, + "crossed": true, + "fee": "0.719357", + "tid": 745724914847159, + "cloid": "0x00000000000000000000000001000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.3", + "sz": "1.2", + "side": "A", + "time": 1761374718143, + "startPosition": "-2641.3453", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x12dbaf07295ae1031455042e277fa902022800ecc45dffd5b6a45a59e85ebaed", + "oid": 211996206076, + "crossed": true, + "fee": "0.991191", + "tid": 271385874456351, + "cloid": "0x00000000000000000000000001000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.3", + "sz": "0.4717", + "side": "A", + "time": 1761374718143, + "startPosition": "-2642.5453", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x12dbaf07295ae1031455042e277fa902022800ecc45dffd5b6a45a59e85ebaed", + "oid": 211996206076, + "crossed": true, + "fee": "0.38962", + "tid": 900489705411852, + "cloid": "0x00000000000000000000000001000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.5", + "sz": "0.3808", + "side": "A", + "time": 1761374719483, + "startPosition": "-2643.017", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb4d92338ac91d6bdb652042e277fb602057b001e4794f58f58a1ce8b6b95b0a8", + "oid": 211996220710, + "crossed": true, + "fee": "0.314554", + "tid": 1010218700555745, + "cloid": "0x00000000000000000000000001000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.5", + "sz": "2.1613", + "side": "A", + "time": 1761374719483, + "startPosition": "-2643.3978", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xb4d92338ac91d6bdb652042e277fb602057b001e4794f58f58a1ce8b6b95b0a8", + "oid": 211996220710, + "crossed": true, + "fee": "1.785309", + "tid": 713980934791396, + "cloid": "0x00000000000000000000000001000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111421.0", + "sz": "0.11677", + "side": "A", + "time": 1761374720402, + "startPosition": "-2.09634", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x484fdfc62ce8c03649c9042e277fc202058c00abc7ebdf08ec188b18ebec9a20", + "oid": 211996237670, + "crossed": true, + "fee": "2.732232", + "tid": 58797678602008, + "cloid": "0x00000000000000000000000002000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111421.0", + "sz": "0.10768", + "side": "A", + "time": 1761374720402, + "startPosition": "-2.21311", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x484fdfc62ce8c03649c9042e277fc202058c00abc7ebdf08ec188b18ebec9a20", + "oid": 211996237670, + "crossed": true, + "fee": "2.51954", + "tid": 581376785000705, + "cloid": "0x00000000000000000000000002000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111421.0", + "sz": "0.22444", + "side": "A", + "time": 1761374722056, + "startPosition": "-2.32079", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xfc046ada20e398d8fd7e042e277fd602036800bfbbe6b7ab9fcd162cdfe772c3", + "oid": 211996263826, + "crossed": true, + "fee": "5.251539", + "tid": 907142607666545, + "cloid": "0x00000000000000000000000002000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111439.0", + "sz": "0.125", + "side": "A", + "time": 1761374723251, + "startPosition": "-2.54523", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xdf29a5e25e241c98e0a3042e277fe802028200c7f9273b6a82f251351d27f683", + "oid": 211996279448, + "crossed": true, + "fee": "2.925273", + "tid": 546955984692854, + "cloid": "0x00000000000000000000000002000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111439.0", + "sz": "0.09943", + "side": "A", + "time": 1761374723251, + "startPosition": "-2.67023", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xdf29a5e25e241c98e0a3042e277fe802028200c7f9273b6a82f251351d27f683", + "oid": 211996279448, + "crossed": true, + "fee": "2.326879", + "tid": 482714166644056, + "cloid": "0x00000000000000000000000002000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111439.0", + "sz": "0.02557", + "side": "A", + "time": 1761374724525, + "startPosition": "-2.76966", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x80f0b86975047d10826a042e277ffb020681004f10079be224b963bc340856fb", + "oid": 211996293875, + "crossed": true, + "fee": "0.598393", + "tid": 21126862830465, + "cloid": "0x00000000000000000000000002000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111439.0", + "sz": "0.19886", + "side": "A", + "time": 1761374724525, + "startPosition": "-2.79523", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x80f0b86975047d10826a042e277ffb020681004f10079be224b963bc340856fb", + "oid": 211996293875, + "crossed": true, + "fee": "4.653759", + "tid": 869582567261914, + "cloid": "0x00000000000000000000000002000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111439.0", + "sz": "0.05527", + "side": "A", + "time": 1761374725718, + "startPosition": "-2.99409", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x812b13aa2d0bde1b82a4042e27800b0201b1008fc80efced24f3befcec0fb806", + "oid": 211996307497, + "crossed": true, + "fee": "1.293439", + "tid": 53642061356446, + "cloid": "0x00000000000000000000000002000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111439.0", + "sz": "0.16813", + "side": "A", + "time": 1761374725718, + "startPosition": "-3.04936", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x812b13aa2d0bde1b82a4042e27800b0201b1008fc80efced24f3befcec0fb806", + "oid": 211996307497, + "crossed": true, + "fee": "3.93461", + "tid": 139955911075169, + "cloid": "0x00000000000000000000000002000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111439.0", + "sz": "0.00103", + "side": "A", + "time": 1761374725718, + "startPosition": "-3.21749", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x812b13aa2d0bde1b82a4042e27800b0201b1008fc80efced24f3befcec0fb806", + "oid": 211996307497, + "crossed": true, + "fee": "0.024104", + "tid": 1055634082645240, + "cloid": "0x00000000000000000000000002000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3934.1", + "sz": "0.906", + "side": "A", + "time": 1761374730791, + "startPosition": "-2645.5591", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8347d33a53b8d17384c1042e27804902029e001feebbf04527107e8d12bcab5e", + "oid": 211996355550, + "crossed": true, + "fee": "0.748501", + "tid": 542777804894170, + "cloid": "0x00000000000000000000000001000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3934.1", + "sz": "1.2", + "side": "A", + "time": 1761374730791, + "startPosition": "-2646.4651", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8347d33a53b8d17384c1042e27804902029e001feebbf04527107e8d12bcab5e", + "oid": 211996355550, + "crossed": true, + "fee": "0.991393", + "tid": 1034311188307247, + "cloid": "0x00000000000000000000000001000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3934.1", + "sz": "0.4359", + "side": "A", + "time": 1761374730791, + "startPosition": "-2647.6651", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8347d33a53b8d17384c1042e27804902029e001feebbf04527107e8d12bcab5e", + "oid": 211996355550, + "crossed": true, + "fee": "0.360123", + "tid": 443887698754963, + "cloid": "0x00000000000000000000000001000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.9", + "sz": "1.0138", + "side": "A", + "time": 1761374733056, + "startPosition": "-2648.101", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2d2974a5f5801d802ea3042e2780640201fc008b90833c52d0f21ff8b483f76a", + "oid": 211996379508, + "crossed": true, + "fee": "0.837519", + "tid": 50989806167243, + "cloid": "0x00000000000000000000000001000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.9", + "sz": "1.5284", + "side": "A", + "time": 1761374733056, + "startPosition": "-2649.1148", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x2d2974a5f5801d802ea3042e2780640201fc008b90833c52d0f21ff8b483f76a", + "oid": 211996379508, + "crossed": true, + "fee": "1.26264", + "tid": 359814160349517, + "cloid": "0x00000000000000000000000001000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.9", + "sz": "2.5421", + "side": "A", + "time": 1761374734220, + "startPosition": "-2650.6432", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x4e0dfc648ba641c64f87042e278070020272004a26a96098f1d6a7b74aaa1bb0", + "oid": 211996390671, + "crossed": true, + "fee": "2.100077", + "tid": 885186052378959, + "cloid": "0x00000000000000000000000001000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.9", + "sz": "2.5421", + "side": "A", + "time": 1761374735554, + "startPosition": "-2653.1853", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x40fea04a221430664278042e27808402020d002fbd174f38e4c74b9ce1180a50", + "oid": 211996401090, + "crossed": true, + "fee": "2.100077", + "tid": 852064234941485, + "cloid": "0x00000000000000000000000001000019", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111439.0", + "sz": "0.11937", + "side": "A", + "time": 1761374735913, + "startPosition": "-3.21852", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x851e028c496843758697042e27808a01ac001a71e46b624728e6addf086c1d60", + "oid": 211996403470, + "crossed": true, + "fee": "2.793519", + "tid": 116157593771553, + "cloid": "0x00000000000000000000000002000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111439.0", + "sz": "0.10506", + "side": "A", + "time": 1761374735913, + "startPosition": "-3.33789", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x851e028c496843758697042e27808a01ac001a71e46b624728e6addf086c1d60", + "oid": 211996403470, + "crossed": true, + "fee": "2.458634", + "tid": 484490819760934, + "cloid": "0x00000000000000000000000002000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.9", + "sz": "2.542", + "side": "A", + "time": 1761374737163, + "startPosition": "-2655.7274", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8c24af866add78f38d9e042e27809a02038b006c05d097c52fed5ad929d152de", + "oid": 211996415115, + "crossed": true, + "fee": "2.099994", + "tid": 551474138540624, + "cloid": "0x00000000000000000000000001000020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.9", + "sz": "0.0064", + "side": "A", + "time": 1761374740810, + "startPosition": "-2658.2694", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8a5a280c3cad74768bd3042e2780cb0206fb00f1d7a093482e22d35efba14e61", + "oid": 211996454731, + "crossed": true, + "fee": "0.005287", + "tid": 349179735333859, + "cloid": "0x00000000000000000000000001000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.7", + "sz": "0.0051", + "side": "A", + "time": 1761374740810, + "startPosition": "-2658.2758", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8a5a280c3cad74768bd3042e2780cb0206fb00f1d7a093482e22d35efba14e61", + "oid": 211996454731, + "crossed": true, + "fee": "0.004212", + "tid": 114574186674740, + "cloid": "0x00000000000000000000000001000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.7", + "sz": "0.3504", + "side": "A", + "time": 1761374740810, + "startPosition": "-2658.2809", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8a5a280c3cad74768bd3042e2780cb0206fb00f1d7a093482e22d35efba14e61", + "oid": 211996454731, + "crossed": true, + "fee": "0.289457", + "tid": 660864489855853, + "cloid": "0x00000000000000000000000001000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.6", + "sz": "0.0104", + "side": "A", + "time": 1761374740810, + "startPosition": "-2658.6313", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8a5a280c3cad74768bd3042e2780cb0206fb00f1d7a093482e22d35efba14e61", + "oid": 211996454731, + "crossed": true, + "fee": "0.00859", + "tid": 1092679159493183, + "cloid": "0x00000000000000000000000001000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.6", + "sz": "0.876", + "side": "A", + "time": 1761374740810, + "startPosition": "-2658.6417", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8a5a280c3cad74768bd3042e2780cb0206fb00f1d7a093482e22d35efba14e61", + "oid": 211996454731, + "crossed": true, + "fee": "0.723625", + "tid": 438719232795470, + "cloid": "0x00000000000000000000000001000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.5", + "sz": "1.1277", + "side": "A", + "time": 1761374740810, + "startPosition": "-2659.5177", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8a5a280c3cad74768bd3042e2780cb0206fb00f1d7a093482e22d35efba14e61", + "oid": 211996454731, + "crossed": true, + "fee": "0.931519", + "tid": 311611907389777, + "cloid": "0x00000000000000000000000001000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.5", + "sz": "0.0051", + "side": "A", + "time": 1761374740810, + "startPosition": "-2660.6454", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8a5a280c3cad74768bd3042e2780cb0206fb00f1d7a093482e22d35efba14e61", + "oid": 211996454731, + "crossed": true, + "fee": "0.004212", + "tid": 437842654782475, + "cloid": "0x00000000000000000000000001000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.4", + "sz": "0.1611", + "side": "A", + "time": 1761374740810, + "startPosition": "-2660.6505", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x8a5a280c3cad74768bd3042e2780cb0206fb00f1d7a093482e22d35efba14e61", + "oid": 211996454731, + "crossed": true, + "fee": "0.13307", + "tid": 909880063247181, + "cloid": "0x00000000000000000000000001000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111439.0", + "sz": "0.00011", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.44295", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.002574", + "tid": 413816332997733, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111438.0", + "sz": "0.03407", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.44306", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.797305", + "tid": 367460175060696, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111438.0", + "sz": "0.00011", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.47713", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.002574", + "tid": 542636560087319, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111437.0", + "sz": "0.0002", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.47724", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.00468", + "tid": 485864909386703, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111437.0", + "sz": "0.00011", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.47744", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.002574", + "tid": 12103428296775, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111436.0", + "sz": "0.00011", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.47755", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.002574", + "tid": 902056512677950, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111435.0", + "sz": "0.00011", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.47766", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.002574", + "tid": 92739327485730, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111434.0", + "sz": "0.00011", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.47777", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.002574", + "tid": 890774501058812, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111433.0", + "sz": "0.00014", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.47788", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.003276", + "tid": 798959776927906, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111433.0", + "sz": "0.00011", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.47802", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.002574", + "tid": 132962604517966, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111432.0", + "sz": "0.03607", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.47813", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.844063", + "tid": 1074642022979789, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111432.0", + "sz": "0.00011", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.5142", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.002574", + "tid": 398583206048609, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111431.0", + "sz": "0.00011", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.51431", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.002574", + "tid": 429720055840048, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111430.0", + "sz": "0.00011", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.51442", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.002574", + "tid": 225244569696026, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111430.0", + "sz": "0.08639", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.51453", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "2.021551", + "tid": 912863586917200, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111429.0", + "sz": "0.00011", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.60092", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.002574", + "tid": 293977505993091, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111428.0", + "sz": "0.00014", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.60103", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.003275", + "tid": 90067942772292, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111428.0", + "sz": "0.00011", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.60117", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.002573", + "tid": 1095763890362840, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111427.0", + "sz": "0.00011", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.60128", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.002573", + "tid": 235630858380435, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111426.0", + "sz": "0.00011", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.60139", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.002573", + "tid": 334219426204463, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111425.0", + "sz": "0.00011", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.6015", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.002573", + "tid": 422806513387374, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111424.0", + "sz": "0.00014", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.60161", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.003275", + "tid": 778118646888656, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111424.0", + "sz": "0.00011", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.60175", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.002573", + "tid": 603674744064347, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111423.0", + "sz": "0.00011", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.60186", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "0.002573", + "tid": 366346049322614, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111423.0", + "sz": "0.06542", + "side": "A", + "time": 1761374741005, + "startPosition": "-3.60197", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0x90324a19ba697a9a91ac042e2780ce0201e800ff556c996c33faf56c796d5485", + "oid": 211996458091, + "crossed": true, + "fee": "1.530751", + "tid": 768889819317548, + "cloid": "0x00000000000000000000000002000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.4", + "sz": "0.3917", + "side": "A", + "time": 1761374750745, + "startPosition": "-2660.8116", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xeb32ff9b7daa2264ecac042e27813e02020c008118ad41368efbaaee3cadfc4f", + "oid": 211996509505, + "crossed": true, + "fee": "0.323549", + "tid": 722277515737505, + "cloid": "0x00000000000000000000000001000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.4", + "sz": "0.2493", + "side": "A", + "time": 1761374750745, + "startPosition": "-2661.2033", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xeb32ff9b7daa2264ecac042e27813e02020c008118ad41368efbaaee3cadfc4f", + "oid": 211996509505, + "crossed": true, + "fee": "0.205925", + "tid": 245167817161750, + "cloid": "0x00000000000000000000000001000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3933.4", + "sz": "1.9013", + "side": "A", + "time": 1761374750745, + "startPosition": "-2661.4526", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xeb32ff9b7daa2264ecac042e27813e02020c008118ad41368efbaaee3cadfc4f", + "oid": 211996509505, + "crossed": true, + "fee": "1.5705", + "tid": 719729120959384, + "cloid": "0x00000000000000000000000001000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "111423.0", + "sz": "0.22444", + "side": "A", + "time": 1761374751079, + "startPosition": "-3.66739", + "dir": "Open Short", + "closedPnl": "0.0", + "hash": "0xdb9fd369e7384084dd19042e2781410201be004f823b5f567f687ebca63c1a6f", + "oid": 211996510034, + "crossed": true, + "fee": "5.251633", + "tid": 121773023180612, + "cloid": "0x00000000000000000000000002000016", + "feeToken": "USDC", + "twapId": null + } + ], + "user_fees": { + "dailyUserVlm": [ + { + "date": "2025-10-13", + "userCross": "31420283.75", + "userAdd": "3041333.8300000001", + "exchange": "10574495799.9799995422" + }, + { + "date": "2025-10-14", + "userCross": "35579691.200000003", + "userAdd": "2711922.75", + "exchange": "17079292917.3500003815" + }, + { + "date": "2025-10-15", + "userCross": "18159824.75", + "userAdd": "1100529.02", + "exchange": "11449850843.8299999237" + }, + { + "date": "2025-10-16", + "userCross": "36670967.6199999973", + "userAdd": "1433912.5900000001", + "exchange": "12251944520.9500007629" + }, + { + "date": "2025-10-17", + "userCross": "2819754.8999999999", + "userAdd": "851904.5600000001", + "exchange": "12926676720.2999992371" + }, + { + "date": "2025-10-18", + "userCross": "34920.91", + "userAdd": "0.0", + "exchange": "3857436766.4600000381" + }, + { + "date": "2025-10-19", + "userCross": "11783898.8699999992", + "userAdd": "371563.53", + "exchange": "5666147024.9399995804" + }, + { + "date": "2025-10-20", + "userCross": "5175572.3099999996", + "userAdd": "339099.55", + "exchange": "8968179498.8600006104" + }, + { + "date": "2025-10-21", + "userCross": "56348714.4799999967", + "userAdd": "107018.3", + "exchange": "15421314316.1100006104" + }, + { + "date": "2025-10-22", + "userCross": "27765103.0100000016", + "userAdd": "612723.92", + "exchange": "12413722514.0200004578" + }, + { + "date": "2025-10-23", + "userCross": "12021044.2400000002", + "userAdd": "1941632.96", + "exchange": "9453148934.0400009155" + }, + { + "date": "2025-10-24", + "userCross": "0.0", + "userAdd": "0.0", + "exchange": "7176352634.4499998093" + }, + { + "date": "2025-10-25", + "userCross": "2028350.6699999999", + "userAdd": "7584.22", + "exchange": "3635812557.3200001717" + }, + { + "date": "2025-10-26", + "userCross": "46609.44", + "userAdd": "16484.51", + "exchange": "6757753944.5500001907" + }, + { + "date": "2025-10-27", + "userCross": "101997421.5", + "userAdd": "1805686.0800000001", + "exchange": "6151745416.2600002289" + } + ], + "feeSchedule": { + "cross": "0.00045", + "add": "0.00015", + "spotCross": "0.0007", + "spotAdd": "0.0004", + "tiers": { + "vip": [ + { + "ntlCutoff": "5000000.0", + "cross": "0.0004", + "add": "0.00012", + "spotCross": "0.0006", + "spotAdd": "0.0003" + }, + { + "ntlCutoff": "25000000.0", + "cross": "0.00035", + "add": "0.00008", + "spotCross": "0.0005", + "spotAdd": "0.0002" + }, + { + "ntlCutoff": "100000000.0", + "cross": "0.0003", + "add": "0.00004", + "spotCross": "0.0004", + "spotAdd": "0.0001" + }, + { + "ntlCutoff": "500000000.0", + "cross": "0.00028", + "add": "0.0", + "spotCross": "0.00035", + "spotAdd": "0.0" + }, + { + "ntlCutoff": "2000000000.0", + "cross": "0.00026", + "add": "0.0", + "spotCross": "0.0003", + "spotAdd": "0.0" + }, + { + "ntlCutoff": "7000000000.0", + "cross": "0.00024", + "add": "0.0", + "spotCross": "0.00025", + "spotAdd": "0.0" + } + ], + "mm": [ + { + "makerFractionCutoff": "0.005", + "add": "-0.00001" + }, + { + "makerFractionCutoff": "0.015", + "add": "-0.00002" + }, + { + "makerFractionCutoff": "0.03", + "add": "-0.00003" + } + ] + }, + "referralDiscount": "0.04", + "stakingDiscountTiers": [ + { + "bpsOfMaxSupply": "0.0", + "discount": "0.0" + }, + { + "bpsOfMaxSupply": "0.0001", + "discount": "0.05" + }, + { + "bpsOfMaxSupply": "0.001", + "discount": "0.1" + }, + { + "bpsOfMaxSupply": "0.01", + "discount": "0.15" + }, + { + "bpsOfMaxSupply": "0.1", + "discount": "0.2" + }, + { + "bpsOfMaxSupply": "1.0", + "discount": "0.3" + }, + { + "bpsOfMaxSupply": "5.0", + "discount": "0.4" + } + ] + }, + "userCrossRate": "0.00021", + "userAddRate": "0.000028", + "userSpotCrossRate": "0.00028", + "userSpotAddRate": "0.00007", + "activeReferralDiscount": "0.0", + "trial": null, + "feeTrialEscrow": "0.0", + "nextTrialAvailableTimestamp": null, + "stakingLink": null, + "activeStakingDiscount": { + "bpsOfMaxSupply": "1.1273554164", + "discount": "0.3" + } + }, + "rate_limit": { + "cumVlm": "2803807577.0399999619", + "nRequestsUsed": 1763325, + "nRequestsCap": 2803817577 + }, + "funding_payments": [ + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "109.872827", + "szi": "-618.11829", + "fundingRate": "0.0000016059", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "203.286848", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.049148", + "szi": "-147.42", + "fundingRate": "-0.0000017774", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.215202", + "szi": "-109217.0", + "fundingRate": "0.0000099335", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.056099", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.099847", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.604431", + "szi": "-39691.0", + "fundingRate": "0.0000062292", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-295.992802", + "szi": "-708624.89", + "fundingRate": "-0.0000108975", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.006603", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "101.409436", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760979600004, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.681112", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "57.388394", + "szi": "-618.11829", + "fundingRate": "0.0000008419", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "203.338313", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.088849", + "szi": "-147.42", + "fundingRate": "0.0000032116", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.165688", + "szi": "-109217.0", + "fundingRate": "0.0000076569", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.595891", + "szi": "-18747.2", + "fundingRate": "0.0000097121", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.117216", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.056377", + "szi": "-39691.0", + "fundingRate": "0.0000005776", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-1136.937699", + "szi": "-708624.89", + "fundingRate": "-0.0000425228", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.968987", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.141993", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760983200050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.641437", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "756.402225", + "szi": "-618.11829", + "fundingRate": "0.0000110306", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "204.542595", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.134321", + "szi": "-147.42", + "fundingRate": "0.0000048414", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.081535", + "szi": "-109217.0", + "fundingRate": "0.000003757", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.83018", + "szi": "-18747.2", + "fundingRate": "0.000005035", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.092476", + "szi": "-408699.7", + "fundingRate": "0.0000105091", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.436004", + "szi": "-39691.0", + "fundingRate": "0.0000044385", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "126.903059", + "szi": "-708624.89", + "fundingRate": "0.0000046938", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.037004", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.558994", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760986800049, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.678545", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "476.670263", + "szi": "-618.11829", + "fundingRate": "0.0000069584", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "204.897704", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.323879", + "szi": "-147.42", + "fundingRate": "0.0000116316", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.162166", + "szi": "-109217.0", + "fundingRate": "0.0000074367", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.166036", + "szi": "-18747.2", + "fundingRate": "0.0000010024", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "10.258442", + "szi": "-408699.7", + "fundingRate": "0.0000096968", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.397604", + "szi": "-39691.0", + "fundingRate": "0.0000039634", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "336.446239", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.165824", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.767495", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760990400017, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.684613", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "330.900272", + "szi": "-583.16111", + "fundingRate": "0.0000051083", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "205.757169", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.351043", + "szi": "-147.42", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.113883", + "szi": "-109217.0", + "fundingRate": "0.000005216", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.248291", + "szi": "-18747.2", + "fundingRate": "-0.0000014999", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.244424", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.08284", + "szi": "-39691.0", + "fundingRate": "-0.0000008245", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-725.764672", + "szi": "-708624.89", + "fundingRate": "-0.0000267545", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.123571", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "100.549372", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760994000028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.295633", + "szi": "-186707.0", + "fundingRate": "0.0000106196", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "152.44253", + "szi": "-583.16111", + "fundingRate": "0.0000023643", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "204.666111", + "szi": "-4117.202", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.294648", + "szi": "-147.42", + "fundingRate": "0.0000105763", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.064299", + "szi": "-109217.0", + "fundingRate": "0.000002961", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.054224", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.72255", + "szi": "-408699.7", + "fundingRate": "0.0000120919", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.582396", + "szi": "-39691.0", + "fundingRate": "0.0000058877", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "4.481004", + "szi": "-708624.89", + "fundingRate": "0.0000001679", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.01021", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "100.054183", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1760997600031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.707484", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "405.125971", + "szi": "-583.4111", + "fundingRate": "0.0000062676", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "205.443408", + "szi": "-4120.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.351504", + "szi": "-147.42", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.126766", + "szi": "-109217.0", + "fundingRate": "0.0000057939", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.16148", + "szi": "-18747.2", + "fundingRate": "0.0000070507", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.21888", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.813901", + "szi": "-39691.0", + "fundingRate": "0.0000082086", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "337.128291", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.279186", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "100.809997", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761001200065, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.72032", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "156.757601", + "szi": "-583.4111", + "fundingRate": "0.0000024307", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "204.948971", + "szi": "-4120.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.180156", + "szi": "-147.42", + "fundingRate": "0.0000064417", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.160511", + "szi": "-109217.0", + "fundingRate": "0.0000073483", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.675217", + "szi": "-18747.2", + "fundingRate": "0.0000041193", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "13.153488", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.780893", + "szi": "-39691.0", + "fundingRate": "0.0000078855", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "336.127358", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.191588", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "101.018498", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761004800019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.704684", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "265.666759", + "szi": "-583.4111", + "fundingRate": "0.0000041224", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "204.583295", + "szi": "-4120.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.327676", + "szi": "-147.42", + "fundingRate": "0.0000117599", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.16892", + "szi": "-109217.0", + "fundingRate": "0.0000077302", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.03864", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "5.66519", + "szi": "-408699.7", + "fundingRate": "0.0000054014", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.998051", + "szi": "-39691.0", + "fundingRate": "0.0000101144", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "336.667685", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.183859", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "101.018498", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761008400007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.705617", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "144.696467", + "szi": "-583.4111", + "fundingRate": "0.0000022574", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "203.378106", + "szi": "-4120.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.074909", + "szi": "-147.42", + "fundingRate": "0.0000027204", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.034517", + "szi": "-109217.0", + "fundingRate": "0.0000015939", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.022354", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "8.471259", + "szi": "-408699.7", + "fundingRate": "0.0000081363", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.163804", + "szi": "-39691.0", + "fundingRate": "-0.000001672", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-13.911178", + "szi": "-708624.89", + "fundingRate": "-0.0000005234", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.076166", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "100.002058", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761012000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.667342", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "75.893362", + "szi": "-528.63289", + "fundingRate": "0.0000013109", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "202.487091", + "szi": "-4120.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.118351", + "szi": "-147.42", + "fundingRate": "0.0000043146", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.12536", + "szi": "-109217.0", + "fundingRate": "0.0000058454", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.014269", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.976215", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.454999", + "szi": "-39691.0", + "fundingRate": "0.0000046777", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "138.043569", + "szi": "-708624.89", + "fundingRate": "0.0000052336", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.836045", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.402619", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761015600071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.619732", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "117.84067", + "szi": "-528.63289", + "fundingRate": "0.0000020437", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "202.033858", + "szi": "-4120.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.318232", + "szi": "-147.42", + "fundingRate": "0.0000116321", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.068385", + "szi": "-109217.0", + "fundingRate": "0.0000031848", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.173765", + "szi": "-18747.2", + "fundingRate": "0.0000073344", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.923084", + "szi": "-408699.7", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.41362", + "szi": "-39691.0", + "fundingRate": "0.0000042486", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "328.562788", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.736081", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.350494", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761019200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.606429", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-75.955692", + "szi": "-510.10414", + "fundingRate": "-0.0000013815", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "198.389175", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.013923", + "szi": "-147.42", + "fundingRate": "0.000000514", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.062055", + "szi": "-109217.0", + "fundingRate": "-0.0000029409", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.964472", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "7.523367", + "szi": "-408699.7", + "fundingRate": "0.000007419", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.098547", + "szi": "-39691.0", + "fundingRate": "0.0000010245", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "320.466748", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.057458", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "97.421864", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761022800063, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.510042", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-360.135145", + "szi": "-472.94566", + "fundingRate": "-0.0000070809", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "199.048583", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.194569", + "szi": "-147.42", + "fundingRate": "0.0000071792", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.172736", + "szi": "-109217.0", + "fundingRate": "-0.000008169", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.113039", + "szi": "-18747.2", + "fundingRate": "0.0000070764", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-4.78485", + "szi": "-408699.7", + "fundingRate": "-0.0000047211", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.457249", + "szi": "-39691.0", + "fundingRate": "-0.0000047528", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "435.245646", + "szi": "-708624.89", + "fundingRate": "0.0000172531", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.187824", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.350494", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761026400008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.537114", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "152.451909", + "szi": "-438.12458", + "fundingRate": "0.0000032246", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "200.254064", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.067187", + "szi": "-147.42", + "fundingRate": "-0.0000024705", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.160338", + "szi": "-109217.0", + "fundingRate": "-0.0000075717", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.552427", + "szi": "-18747.2", + "fundingRate": "-0.0000034986", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-15.22879", + "szi": "-408699.7", + "fundingRate": "-0.0000149321", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.559203", + "szi": "-39691.0", + "fundingRate": "-0.0000057943", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "317.711969", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.25481", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "102.947128", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761030000118, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.557885", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "118.552126", + "szi": "-417.3499", + "fundingRate": "0.0000026276", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "200.55801", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.00081", + "szi": "-147.42", + "fundingRate": "-0.0000000297", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.177733", + "szi": "-109217.0", + "fundingRate": "-0.0000083759", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.179685", + "szi": "-18747.2", + "fundingRate": "-0.000001139", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-10.199203", + "szi": "-408699.7", + "fundingRate": "-0.0000099638", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.494734", + "szi": "-39691.0", + "fundingRate": "-0.0000051358", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "962.571713", + "szi": "-708624.89", + "fundingRate": "0.0000377146", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.978262", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "103.598692", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761033600010, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.571888", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-116.883842", + "szi": "-367.35012", + "fundingRate": "-0.0000029544", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "175.954451", + "szi": "-4121.302", + "fundingRate": "0.0000110391", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.320061", + "szi": "-147.42", + "fundingRate": "-0.0000117821", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.122497", + "szi": "-109217.0", + "fundingRate": "-0.0000058051", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.347087", + "szi": "-18747.2", + "fundingRate": "-0.0000022199", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-7.185111", + "szi": "-376577.6", + "fundingRate": "-0.0000076871", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.700167", + "szi": "-39691.0", + "fundingRate": "-0.0000073139", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "911.04626", + "szi": "-708624.89", + "fundingRate": "0.0000360006", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.846866", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "102.243439", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761037200003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.566287", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "381.465753", + "szi": "-338.01603", + "fundingRate": "0.0000104736", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "199.089796", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.096354", + "szi": "-147.42", + "fundingRate": "0.0000035447", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.006148", + "szi": "-109217.0", + "fundingRate": "0.0000002908", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.514751", + "szi": "-18747.2", + "fundingRate": "-0.0000224933", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-1.971256", + "szi": "-376577.6", + "fundingRate": "-0.000002109", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.127192", + "szi": "-39691.0", + "fundingRate": "0.0000013304", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "316.976771", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.806159", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "101.95675", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761040800028, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.566754", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "458.43424", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "200.078908", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.224578", + "szi": "-147.42", + "fundingRate": "0.0000081934", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.058363", + "szi": "-109217.0", + "fundingRate": "-0.0000027487", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.178218", + "szi": "-18747.2", + "fundingRate": "-0.0000011324", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-2.042026", + "szi": "-376577.6", + "fundingRate": "-0.0000021748", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.058506", + "szi": "-39691.0", + "fundingRate": "-0.0000006099", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "317.765116", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.923643", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "94.333021", + "szi": "-2085005129.0", + "fundingRate": "0.0000116128", + "nSamples": null + } + }, + { + "time": 1761044400076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.577023", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "458.772256", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "200.408613", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.159852", + "szi": "-147.42", + "fundingRate": "0.0000058207", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.219658", + "szi": "-109217.0", + "fundingRate": "-0.0000103388", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.664258", + "szi": "-18747.2", + "fundingRate": "-0.000010512", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-2.737697", + "szi": "-376577.6", + "fundingRate": "-0.0000029108", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.440675", + "szi": "-39691.0", + "fundingRate": "-0.0000045649", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "604.575255", + "szi": "-708624.89", + "fundingRate": "0.0000236197", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.959712", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "-4.424788", + "szi": "-2085005129.0", + "fundingRate": "-0.0000005442", + "nSamples": null + } + }, + { + "time": 1761048000078, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.590326", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "459.667999", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "199.89345", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.16847", + "szi": "-147.42", + "fundingRate": "0.0000061282", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.265186", + "szi": "-109217.0", + "fundingRate": "-0.0000124721", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.340159", + "szi": "-18747.2", + "fundingRate": "0.0000021409", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-6.409274", + "szi": "-376577.6", + "fundingRate": "-0.0000067895", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.83543", + "szi": "-39691.0", + "fundingRate": "-0.0000086815", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "322.973509", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.005057", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "41.627383", + "szi": "-2085005129.0", + "fundingRate": "0.0000052074", + "nSamples": null + } + }, + { + "time": 1761051600030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.585891", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "458.125801", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "199.172222", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.005249", + "szi": "-147.42", + "fundingRate": "-0.0000001924", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.178492", + "szi": "-109217.0", + "fundingRate": "-0.0000083848", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.260461", + "szi": "-18747.2", + "fundingRate": "-0.0000016355", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-2.626069", + "szi": "-376577.6", + "fundingRate": "-0.0000027906", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.548931", + "szi": "-39691.0", + "fundingRate": "-0.000005732", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "318.695186", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.794823", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "99.585057", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761055200096, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.584258", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "473.974527", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "207.136638", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.355153", + "szi": "-147.42", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.051525", + "szi": "-109217.0", + "fundingRate": "0.0000023238", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.081185", + "szi": "-18747.2", + "fundingRate": "0.0000004826", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.453891", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.267138", + "szi": "-39691.0", + "fundingRate": "-0.0000027066", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "334.763255", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.088175", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "105.032133", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761058800047, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.711452", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "479.222226", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "210.273979", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "23.12335", + "szi": "-10147.42", + "fundingRate": "0.000011612", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.036903", + "szi": "-109217.0", + "fundingRate": "0.0000016531", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.1223", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.559333", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.251506", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "335.560458", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "31.309194", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000193223", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "107.195326", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761062400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.751594", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "475.601229", + "szi": "-338.01603", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "207.538465", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-2.796472", + "szi": "-10147.42", + "fundingRate": "-0.0000014312", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.125553", + "szi": "-109217.0", + "fundingRate": "0.0000057236", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.098749", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.339977", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.233497", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "330.201483", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "30.458963", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000190988", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "104.615132", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761066000058, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.667342", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-96.218975", + "szi": "-320.21407", + "fundingRate": "-0.0000026826", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "206.822389", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-1.502444", + "szi": "-10147.42", + "fundingRate": "-0.0000007599", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.099772", + "szi": "-109217.0", + "fundingRate": "0.0000045345", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.107888", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.2962", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.210723", + "szi": "-39691.0", + "fundingRate": "0.0000122358", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "51.793922", + "szi": "-708624.89", + "fundingRate": "0.0000019525", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.120637", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "105.214571", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761069600016, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.667576", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-26.001957", + "szi": "-320.21407", + "fundingRate": "-0.0000007251", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "206.791479", + "szi": "-4121.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-6.027768", + "szi": "-1492.18", + "fundingRate": "-0.0000208043", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.275527", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.10074", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.306085", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.948338", + "szi": "-39691.0", + "fundingRate": "-0.0000096161", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "328.952531", + "szi": "-708624.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "25.784904", + "szi": "-4122236.7999999998", + "fundingRate": "0.000016077", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "105.032133", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761073200080, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.65824", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-113.283179", + "szi": "-302.30661", + "fundingRate": "-0.0000033525", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "206.122621", + "szi": "-4127.302", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-1.193266", + "szi": "-359.37", + "fundingRate": "-0.0000171227", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.275063", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.656753", + "szi": "-18747.2", + "fundingRate": "0.0000039428", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "5.143003", + "szi": "-376577.6", + "fundingRate": "0.0000052595", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.212691", + "szi": "-39691.0", + "fundingRate": "-0.0000122542", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-19.427362", + "szi": "-708624.89", + "fundingRate": "-0.0000007419", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.90525", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "105.110321", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761076800060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.639803", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-450.026358", + "szi": "-232.57257", + "fundingRate": "-0.0000174662", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "127.217555", + "szi": "-4127.302", + "fundingRate": "0.0000077975", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.701077", + "szi": "-359.37", + "fundingRate": "-0.000010192", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.272277", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.770557", + "szi": "-18747.2", + "fundingRate": "0.0000107648", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "2.226135", + "szi": "-376577.6", + "fundingRate": "0.0000023023", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.826703", + "szi": "-39691.0", + "fundingRate": "-0.0000084186", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "-105.886418", + "szi": "-708624.89", + "fundingRate": "-0.0000041229", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "39.380194", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000250982", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "102.686502", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761080400019, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.605496", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-141.065667", + "szi": "-167.10108", + "fundingRate": "-0.0000076151", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "35.232018", + "szi": "-3895.1147", + "fundingRate": "0.0000022918", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.165628", + "szi": "-359.37", + "fundingRate": "0.0000024086", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.271704", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.70445", + "szi": "-18747.2", + "fundingRate": "0.000004292", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-2.995525", + "szi": "-376577.6", + "fundingRate": "-0.0000030953", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.094359", + "szi": "-39691.0", + "fundingRate": "-0.000011129", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "325.565171", + "szi": "-709794.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "26.860712", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000171421", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "102.217376", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761084000011, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.593593", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "-244.259914", + "szi": "-167.10108", + "fundingRate": "-0.0000134023", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-137.604621", + "szi": "-3900.1147", + "fundingRate": "-0.0000090437", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.590704", + "szi": "-359.37", + "fundingRate": "0.0000087172", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.140999", + "szi": "-109217.0", + "fundingRate": "0.0000065911", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "2.006653", + "szi": "-18747.2", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "0.020251", + "szi": "-376577.6", + "fundingRate": "0.0000000213", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.061507", + "szi": "-39691.0", + "fundingRate": "-0.0000109522", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "316.870183", + "szi": "-709794.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "33.298562", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000218472", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "98.724992", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761087600060, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.494405", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "10.235703", + "szi": "-111.97908", + "fundingRate": "0.0000008439", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-224.474631", + "szi": "-3902.1147", + "fundingRate": "-0.0000148528", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.17328", + "szi": "-359.37", + "fundingRate": "-0.0000025974", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.001595", + "szi": "-109217.0", + "fundingRate": "-0.0000000752", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.594478", + "szi": "-18747.2", + "fundingRate": "0.0000100694", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-4.502149", + "szi": "-376577.6", + "fundingRate": "-0.0000048033", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.193561", + "szi": "-39691.0", + "fundingRate": "-0.0000124149", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "18.505394", + "szi": "-709794.89", + "fundingRate": "0.0000007366", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.803583", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "96.405424", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761091200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-6.19254", + "szi": "-186707.0", + "fundingRate": "-0.0000318425", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "91.225496", + "szi": "-111.97908", + "fundingRate": "0.000007544", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-177.683603", + "szi": "-3902.1147", + "fundingRate": "-0.000011851", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.478621", + "szi": "-359.37", + "fundingRate": "-0.0000071727", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.076199", + "szi": "-109217.0", + "fundingRate": "-0.0000036049", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.12103", + "szi": "-18747.2", + "fundingRate": "-0.0000071298", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-15.140925", + "szi": "-376577.6", + "fundingRate": "-0.0000162228", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.452444", + "szi": "-39691.0", + "fundingRate": "-0.0000047248", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "309.577041", + "szi": "-709794.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.604685", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "93.799168", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761094800050, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-5.110213", + "szi": "-186707.0", + "fundingRate": "-0.0000262922", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "151.681262", + "szi": "-111.97908", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-52.46592", + "szi": "-3902.1147", + "fundingRate": "-0.0000034748", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.027365", + "szi": "-359.37", + "fundingRate": "0.0000004072", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.127233", + "szi": "-109217.0", + "fundingRate": "-0.0000059864", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.75455", + "szi": "-18747.2", + "fundingRate": "-0.0000111205", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-15.879033", + "szi": "-376577.6", + "fundingRate": "-0.0000169501", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.154009", + "szi": "-39691.0", + "fundingRate": "-0.0000016003", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "310.890161", + "szi": "-709794.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.591803", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "94.711357", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761098400020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-6.669924", + "szi": "-186707.0", + "fundingRate": "-0.0000344328", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "151.461503", + "szi": "-111.97908", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-44.00522", + "szi": "-3902.1147", + "fundingRate": "-0.0000029198", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.170998", + "szi": "-359.37", + "fundingRate": "0.0000025593", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.093266", + "szi": "-109217.0", + "fundingRate": "-0.0000043943", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.706376", + "szi": "-18747.2", + "fundingRate": "-0.000004499", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-17.098485", + "szi": "-376577.6", + "fundingRate": "-0.000018265", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.323944", + "szi": "-39691.0", + "fundingRate": "-0.000003367", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "314.323794", + "szi": "-709794.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.612929", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "95.493234", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761102000081, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-3.217488", + "szi": "-186707.0", + "fundingRate": "-0.0000164435", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "151.474101", + "szi": "-111.97908", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-47.834879", + "szi": "-3902.1147", + "fundingRate": "-0.0000031762", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.318082", + "szi": "-359.37", + "fundingRate": "-0.0000047782", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.033615", + "szi": "-109217.0", + "fundingRate": "-0.0000015881", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.099405", + "szi": "-18747.2", + "fundingRate": "0.0000006354", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-26.368288", + "szi": "-376577.6", + "fundingRate": "-0.000028321", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.818714", + "szi": "-39691.0", + "fundingRate": "-0.0000085215", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "312.629159", + "szi": "-709794.89", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.544912", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "96.118736", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761105600076, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-5.739822", + "szi": "-186707.0", + "fundingRate": "-0.0000293989", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "152.031197", + "szi": "-111.97908", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "8.286644", + "szi": "-3902.1147", + "fundingRate": "0.0000005475", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.327035", + "szi": "-359.37", + "fundingRate": "-0.0000048955", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.043164", + "szi": "-109217.0", + "fundingRate": "-0.0000020283", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.375334", + "szi": "-18747.2", + "fundingRate": "-0.0000023792", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-16.468496", + "szi": "-376577.6", + "fundingRate": "-0.0000175793", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.341809", + "szi": "-39691.0", + "fundingRate": "-0.0000138744", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "1130.15975", + "szi": "-709794.89", + "fundingRate": "0.0000456502", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.59541", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "96.405424", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761109200035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-5.688007", + "szi": "-186707.0", + "fundingRate": "-0.0000288084", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "151.406914", + "szi": "-111.97908", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "40.061156", + "szi": "-3902.1147", + "fundingRate": "0.0000026594", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.121555", + "szi": "-359.37", + "fundingRate": "-0.0000018326", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.088101", + "szi": "-109217.0", + "fundingRate": "-0.0000042053", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.47135", + "szi": "-18747.2", + "fundingRate": "-0.0000157969", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-13.678082", + "szi": "-376577.6", + "fundingRate": "-0.0000150209", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.226608", + "szi": "-39691.0", + "fundingRate": "-0.0000128456", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "1991.482992", + "szi": "-724239.8", + "fundingRate": "0.0000790342", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.31046", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "96.587862", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761112800009, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-0.188774", + "szi": "-186707.0", + "fundingRate": "-0.0000009605", + "nSamples": null + } + }, + { + "time": 1761116400071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "151.145162", + "szi": "-111.97908", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761116400071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "51.510371", + "szi": "-3902.1147", + "fundingRate": "0.0000034262", + "nSamples": null + } + }, + { + "time": 1761116400071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.162786", + "szi": "-359.37", + "fundingRate": "0.0000024606", + "nSamples": null + } + }, + { + "time": 1761116400071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.036531", + "szi": "-109217.0", + "fundingRate": "-0.0000017484", + "nSamples": null + } + }, + { + "time": 1761116400071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.049357", + "szi": "-18747.2", + "fundingRate": "-0.000006752", + "nSamples": null + } + }, + { + "time": 1761116400071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-13.062923", + "szi": "-376577.6", + "fundingRate": "-0.000014359", + "nSamples": null + } + }, + { + "time": 1761116400071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.415406", + "szi": "-39691.0", + "fundingRate": "-0.0000043547", + "nSamples": null + } + }, + { + "time": 1761116400071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "315.062418", + "szi": "-724239.8", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761116400071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.228015", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761116400071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "96.144799", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761116400071, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.288243", + "szi": "-186707.0", + "fundingRate": "0.0000117135", + "nSamples": null + } + }, + { + "time": 1761120000062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "151.622473", + "szi": "-111.97908", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761120000062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "78.294862", + "szi": "-2679.7914", + "fundingRate": "0.0000075521", + "nSamples": null + } + }, + { + "time": 1761120000062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.753965", + "szi": "-359.37", + "fundingRate": "-0.00001134", + "nSamples": null + } + }, + { + "time": 1761120000062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.021123", + "szi": "-109217.0", + "fundingRate": "0.0000010076", + "nSamples": null + } + }, + { + "time": 1761120000062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.662916", + "szi": "-18747.2", + "fundingRate": "-0.0000106498", + "nSamples": null + } + }, + { + "time": 1761120000062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-9.907042", + "szi": "-376577.6", + "fundingRate": "-0.0000108981", + "nSamples": null + } + }, + { + "time": 1761120000062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.250588", + "szi": "-39691.0", + "fundingRate": "-0.0000026199", + "nSamples": null + } + }, + { + "time": 1761120000062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "2000.820186", + "szi": "-724239.8", + "fundingRate": "0.0000794344", + "nSamples": null + } + }, + { + "time": 1761120000062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.327464", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761120000062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "41.161645", + "szi": "-2085005129.0", + "fundingRate": "0.0000053212", + "nSamples": null + } + }, + { + "time": 1761120000062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.45403", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761123600059, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "141.442704", + "szi": "-111.97908", + "fundingRate": "0.000011671", + "nSamples": null + } + }, + { + "time": 1761123600059, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "102.561144", + "szi": "-2607.3553", + "fundingRate": "0.0000102056", + "nSamples": null + } + }, + { + "time": 1761123600059, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.747222", + "szi": "-359.37", + "fundingRate": "-0.0000112563", + "nSamples": null + } + }, + { + "time": 1761123600059, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.042065", + "szi": "-109217.0", + "fundingRate": "-0.0000020112", + "nSamples": null + } + }, + { + "time": 1761123600059, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.60442", + "szi": "-18747.2", + "fundingRate": "0.0000039009", + "nSamples": null + } + }, + { + "time": 1761123600059, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-8.579667", + "szi": "-376577.6", + "fundingRate": "-0.0000094709", + "nSamples": null + } + }, + { + "time": 1761123600059, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.089352", + "szi": "-39691.0", + "fundingRate": "0.0000009386", + "nSamples": null + } + }, + { + "time": 1761123600059, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "514.254357", + "szi": "-724239.8", + "fundingRate": "0.0000202498", + "nSamples": null + } + }, + { + "time": 1761123600059, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.199675", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761123600059, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "97.447927", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761123600059, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "2.429524", + "szi": "-186707.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761127200074, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "89.436817", + "szi": "-111.97908", + "fundingRate": "0.0000073978", + "nSamples": null + } + }, + { + "time": 1761127200074, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "80.462459", + "szi": "-2589.1467", + "fundingRate": "0.0000080995", + "nSamples": null + } + }, + { + "time": 1761127200074, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.822924", + "szi": "-359.37", + "fundingRate": "-0.0000124411", + "nSamples": null + } + }, + { + "time": 1761127200074, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.119424", + "szi": "-109217.0", + "fundingRate": "-0.0000057342", + "nSamples": null + } + }, + { + "time": 1761127200074, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.900424", + "szi": "-18747.2", + "fundingRate": "-0.0000058324", + "nSamples": null + } + }, + { + "time": 1761127200074, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-12.703395", + "szi": "-376577.6", + "fundingRate": "-0.0000140681", + "nSamples": null + } + }, + { + "time": 1761127200074, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.472205", + "szi": "-39691.0", + "fundingRate": "-0.0000049891", + "nSamples": null + } + }, + { + "time": 1761127200074, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "410.59626", + "szi": "-724239.8", + "fundingRate": "0.0000161745", + "nSamples": null + } + }, + { + "time": 1761127200074, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.095588", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761127200074, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "20.31815", + "szi": "-2085005129.0", + "fundingRate": "0.0000026224", + "nSamples": null + } + }, + { + "time": 1761127200074, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-2.271738", + "szi": "-186707.0", + "fundingRate": "-0.0000124711", + "nSamples": null + } + }, + { + "time": 1761130800056, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "62.884761", + "szi": "-111.97908", + "fundingRate": "0.0000052163", + "nSamples": null + } + }, + { + "time": 1761130800056, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "98.016413", + "szi": "-2589.1467", + "fundingRate": "0.0000099086", + "nSamples": null + } + }, + { + "time": 1761130800056, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "-0.655152", + "szi": "-359.37", + "fundingRate": "-0.0000099317", + "nSamples": null + } + }, + { + "time": 1761130800056, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.017839", + "szi": "-109217.0", + "fundingRate": "-0.0000008596", + "nSamples": null + } + }, + { + "time": 1761130800056, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.174736", + "szi": "-18747.2", + "fundingRate": "-0.0000076157", + "nSamples": null + } + }, + { + "time": 1761130800056, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-12.235351", + "szi": "-376577.6", + "fundingRate": "-0.0000135695", + "nSamples": null + } + }, + { + "time": 1761130800056, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.132134", + "szi": "-39691.0", + "fundingRate": "0.0000013977", + "nSamples": null + } + }, + { + "time": 1761130800056, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "318.303392", + "szi": "-724239.8", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761130800056, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.055912", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761130800056, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "96.327236", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761130800056, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "-3.801492", + "szi": "-186707.0", + "fundingRate": "-0.0000206289", + "nSamples": null + } + }, + { + "time": 1761134400032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "33.998028", + "szi": "-93.43945", + "fundingRate": "0.0000033829", + "nSamples": null + } + }, + { + "time": 1761134400032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "38.276092", + "szi": "-1549.9283", + "fundingRate": "0.0000064496", + "nSamples": null + } + }, + { + "time": 1761134400032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.044262", + "szi": "-359.37", + "fundingRate": "0.0000006656", + "nSamples": null + } + }, + { + "time": 1761134400032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.001054", + "szi": "-109217.0", + "fundingRate": "0.0000000505", + "nSamples": null + } + }, + { + "time": 1761134400032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.520732", + "szi": "-18747.2", + "fundingRate": "-0.0000097334", + "nSamples": null + } + }, + { + "time": 1761134400032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-9.968443", + "szi": "-376577.6", + "fundingRate": "-0.0000109299", + "nSamples": null + } + }, + { + "time": 1761134400032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.440944", + "szi": "-39691.0", + "fundingRate": "-0.0000046361", + "nSamples": null + } + }, + { + "time": 1761134400032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "324.82155", + "szi": "-724239.8", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761134400032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.198129", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761134400032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "97.68249", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761134400032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "0.130334", + "szi": "-176713.0", + "fundingRate": "0.0000007363", + "nSamples": null + } + }, + { + "time": 1761138000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "41.896332", + "szi": "-53.03503", + "fundingRate": "0.0000073123", + "nSamples": null + } + }, + { + "time": 1761138000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "67.53604", + "szi": "-1404.5867", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761138000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.707482", + "szi": "-359.37", + "fundingRate": "0.0000105979", + "nSamples": null + } + }, + { + "time": 1761138000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.079774", + "szi": "-109217.0", + "fundingRate": "-0.0000038184", + "nSamples": null + } + }, + { + "time": 1761138000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-0.337967", + "szi": "-18747.2", + "fundingRate": "-0.0000021655", + "nSamples": null + } + }, + { + "time": 1761138000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-10.709669", + "szi": "-376577.6", + "fundingRate": "-0.0000117102", + "nSamples": null + } + }, + { + "time": 1761138000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.23198", + "szi": "-39691.0", + "fundingRate": "-0.0000129325", + "nSamples": null + } + }, + { + "time": 1761138000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "326.260976", + "szi": "-724239.8", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761138000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.233168", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761138000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "97.187301", + "szi": "-2085005129.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761138000031, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ASTER", + "usdc": "0.087156", + "szi": "-7075.0", + "fundingRate": "0.0000121933", + "nSamples": null + } + }, + { + "time": 1761141600029, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "0.351912", + "szi": "-0.30052", + "fundingRate": "0.0000107638", + "nSamples": null + } + }, + { + "time": 1761141600029, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "67.997797", + "szi": "-1404.5867", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761141600029, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "0.837826", + "szi": "-359.37", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761141600029, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.054693", + "szi": "-109217.0", + "fundingRate": "0.0000026031", + "nSamples": null + } + }, + { + "time": 1761141600029, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.341679", + "szi": "-18747.2", + "fundingRate": "-0.0000084516", + "nSamples": null + } + } + ], + "ledger_updates": [ + { + "time": 1761115272390, + "hash": "0x075bb06d562b929808d5042df5c1d302012b0052f12eb16aab245bc0152f6c82", + "delta": { + "type": "accountClassTransfer", + "usdc": "2237313.04", + "toPerp": true + } + }, + { + "time": 1761115303659, + "hash": "0x42e650d53d2db536ea81294f1010dc0267ad00b60a579868a3ad6ec087347124", + "delta": { + "type": "withdraw", + "usdc": "9999999.0", + "nonce": 1761115039997000, + "fee": "1.0" + } + }, + { + "time": 1761115410063, + "hash": "0x611b6ea0b6ca926e971013bab76698f201fd2e20fa34a00ea4656b293e677a0b", + "delta": { + "type": "withdraw", + "usdc": "8999999.0", + "nonce": 1761115141287000, + "fee": "1.0" + } + }, + { + "time": 1761132614550, + "hash": "0x05ead67544a1520ced1244a0d5f59043067f6e9e8a57b8e30f5a3be71634bd06", + "delta": { + "type": "withdraw", + "usdc": "9999999.0", + "nonce": 1761132342433000, + "fee": "1.0" + } + }, + { + "time": 1761201557287, + "hash": "0xb7e9c3ae398e4974b963042e0658dc0203e40093d48168465bb26f00f882235f", + "delta": { + "type": "accountClassTransfer", + "usdc": "2000000.0", + "toPerp": false + } + }, + { + "time": 1761417266859, + "hash": "0xd1828370da2b23f84efd3908e020de5a63b075742055edddc208c7f7d134f41f", + "delta": { + "type": "deposit", + "usdc": "2000000.0" + } + }, + { + "time": 1761430099211, + "hash": "0xab60ac1c371861c50c47d843322c88445e475c1aa8ce6d2191d1a6a563cdca2e", + "delta": { + "type": "deposit", + "usdc": "2000000.8" + } + }, + { + "time": 1761468311644, + "hash": "0x32b7bce8c9e667193431042e39c25e0201d000ce64e985ebd680683b88ea4103", + "delta": { + "type": "send", + "user": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "destination": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "sourceDex": "spot", + "destinationDex": "", + "token": "USDC", + "amount": "900000.0", + "usdcValue": "900000.0", + "fee": "0.0", + "nativeTokenFee": "0.0", + "nonce": 1761467995524, + "feeToken": "" + } + }, + { + "time": 1761470326658, + "hash": "0x88fe14d0854370a62127bdc9ce9bda70ca4999244ef94b61eef97066ab96ea93", + "delta": { + "type": "deposit", + "usdc": "5000000.0" + } + } + ], + "referral_state": { + "referredBy": null, + "cumVlm": "2782399309.8400001526", + "unclaimedRewards": "1211.48930369", + "claimedRewards": "23302.099542", + "builderRewards": "0.0", + "referrerState": { + "stage": "ready", + "data": { + "code": "EGAF", + "nReferrals": 3, + "referralStates": [ + { + "cumVlm": "2949124489.9899997711", + "cumRewardedFeesSinceReferred": "568984.68411163", + "cumFeesRewardedToReferrer": "23302.099542", + "timeJoined": 1740074524733, + "user": "0x5b5d51203a0f9079f8aeb098a6523a13f298c060", + "tokenToState": [ + [ + 0, + { + "cumVlm": "2949124489.9899997711", + "cumRewardedFeesSinceReferred": "568984.68411163", + "cumFeesRewardedToReferrer": "23302.099542" + } + ] + ] + }, + { + "cumVlm": "31767287.4200000018", + "cumRewardedFeesSinceReferred": "12114.95159313", + "cumFeesRewardedToReferrer": "1211.48930369", + "timeJoined": 1750501639492, + "user": "0xc327d213545d49a1644cf3f154375034ac6e24e8", + "tokenToState": [ + [ + 0, + { + "cumVlm": "31767287.4200000018", + "cumRewardedFeesSinceReferred": "12114.95159313", + "cumFeesRewardedToReferrer": "1211.48930369" + } + ] + ] + }, + { + "cumVlm": "0.0", + "cumRewardedFeesSinceReferred": "0.0", + "cumFeesRewardedToReferrer": "0.0", + "timeJoined": 1751022900093, + "user": "0x7096a82cd4c980f61a490a391d680a2e0259f7f0", + "tokenToState": [] + } + ] + } + }, + "rewardHistory": [], + "tokenToState": [ + [ + 0, + { + "cumVlm": "2782399309.8400001526", + "unclaimedRewards": "1211.48930369", + "claimedRewards": "23302.099542", + "builderRewards": "0.0" + } + ] + ] + }, + "sub_accounts": null, + "funding_history": { + "BTC": [ + { + "coin": "BTC", + "fundingRate": "0.0000016059", + "premium": "-0.0004871525", + "time": 1760979600004 + }, + { + "coin": "BTC", + "fundingRate": "0.0000008419", + "premium": "-0.0004932651", + "time": 1760983200050 + }, + { + "coin": "BTC", + "fundingRate": "0.0000110306", + "premium": "-0.0004117548", + "time": 1760986800049 + }, + { + "coin": "BTC", + "fundingRate": "0.0000069584", + "premium": "-0.0004443329", + "time": 1760990400017 + }, + { + "coin": "BTC", + "fundingRate": "0.0000051083", + "premium": "-0.0004591332", + "time": 1760994000028 + }, + { + "coin": "BTC", + "fundingRate": "0.0000023643", + "premium": "-0.0004810854", + "time": 1760997600031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000062676", + "premium": "-0.0004498594", + "time": 1761001200065 + }, + { + "coin": "BTC", + "fundingRate": "0.0000024307", + "premium": "-0.0004805546", + "time": 1761004800019 + }, + { + "coin": "BTC", + "fundingRate": "0.0000041224", + "premium": "-0.0004670205", + "time": 1761008400007 + }, + { + "coin": "BTC", + "fundingRate": "0.0000022574", + "premium": "-0.0004819408", + "time": 1761012000031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000013109", + "premium": "-0.0004895131", + "time": 1761015600071 + }, + { + "coin": "BTC", + "fundingRate": "0.0000020437", + "premium": "-0.0004836506", + "time": 1761019200035 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000013815", + "premium": "-0.000511052", + "time": 1761022800063 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000070809", + "premium": "-0.0005566472", + "time": 1761026400008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000032246", + "premium": "-0.0004742033", + "time": 1761030000118 + }, + { + "coin": "BTC", + "fundingRate": "0.0000026276", + "premium": "-0.0004789796", + "time": 1761033600010 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000029544", + "premium": "-0.0005236355", + "time": 1761037200003 + }, + { + "coin": "BTC", + "fundingRate": "0.0000104736", + "premium": "-0.000416211", + "time": 1761040800028 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003548212", + "time": 1761044400076 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001751239", + "time": 1761048000078 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001683407", + "time": 1761051600030 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003711413", + "time": 1761055200096 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002222974", + "time": 1761058800047 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000122508", + "time": 1761062400042 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002984871", + "time": 1761066000058 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000026826", + "premium": "-0.0005214606", + "time": 1761069600016 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000007251", + "premium": "-0.0005058006", + "time": 1761073200080 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000033525", + "premium": "-0.0005268203", + "time": 1761076800060 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000174662", + "premium": "-0.0006397296", + "time": 1761080400019 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000076151", + "premium": "-0.0005609207", + "time": 1761084000011 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000134023", + "premium": "-0.0006072185", + "time": 1761087600060 + }, + { + "coin": "BTC", + "fundingRate": "0.0000008439", + "premium": "-0.0004932485", + "time": 1761091200025 + }, + { + "coin": "BTC", + "fundingRate": "0.000007544", + "premium": "-0.0004396483", + "time": 1761094800050 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002975444", + "time": 1761098400020 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003179832", + "time": 1761102000081 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003568722", + "time": 1761105600076 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003954795", + "time": 1761109200035 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003318022", + "time": 1761112800009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002520846", + "time": 1761116400071 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003883788", + "time": 1761120000062 + }, + { + "coin": "BTC", + "fundingRate": "0.000011671", + "premium": "-0.000406632", + "time": 1761123600059 + }, + { + "coin": "BTC", + "fundingRate": "0.0000073978", + "premium": "-0.0004408173", + "time": 1761127200074 + }, + { + "coin": "BTC", + "fundingRate": "0.0000052163", + "premium": "-0.0004582696", + "time": 1761130800056 + }, + { + "coin": "BTC", + "fundingRate": "0.0000033829", + "premium": "-0.0004729366", + "time": 1761134400032 + }, + { + "coin": "BTC", + "fundingRate": "0.0000073123", + "premium": "-0.0004415018", + "time": 1761138000031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000107638", + "premium": "-0.0004138899", + "time": 1761141600029 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001179009", + "time": 1761145200025 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002026969", + "time": 1761148800036 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000288323", + "time": 1761152400033 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000220857", + "time": 1761156000008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000837721", + "time": 1761159600089 + }, + { + "coin": "BTC", + "fundingRate": "0.0000075109", + "premium": "-0.0004399124", + "time": 1761163200002 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003984073", + "time": 1761166800025 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003158637", + "time": 1761170400027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003799932", + "time": 1761174000005 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000393111", + "time": 1761177600009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003335732", + "time": 1761181200016 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000127278", + "time": 1761184800031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000611793", + "time": 1761188400006 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000281721", + "time": 1761192000069 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000607776", + "time": 1761195600027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001393975", + "time": 1761199200059 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002208432", + "time": 1761202800050 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001904973", + "time": 1761206400047 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001506049", + "time": 1761210000058 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001219538", + "time": 1761213600041 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001931805", + "time": 1761217200009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001015844", + "time": 1761220800003 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000161843", + "time": 1761224400028 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001085288", + "time": 1761228000017 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002192891", + "time": 1761231600071 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000838156", + "time": 1761235200077 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000329185", + "time": 1761238800066 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001430906", + "time": 1761242400067 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002213978", + "time": 1761246000064 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001776608", + "time": 1761249600111 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001673456", + "time": 1761253200075 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000597556", + "time": 1761256800059 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000146871", + "time": 1761260400061 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000964892", + "time": 1761264000027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001058102", + "time": 1761267600017 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000732839", + "time": 1761271200037 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001243328", + "time": 1761274800019 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000172338", + "time": 1761278400025 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000752913", + "time": 1761282000030 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000889222", + "time": 1761285600025 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000407236", + "time": 1761289200071 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000031435", + "time": 1761292800077 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001203023", + "time": 1761296400061 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001343542", + "time": 1761300000120 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000960592", + "time": 1761303600104 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001479164", + "time": 1761307200013 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003044698", + "time": 1761310800033 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004006079", + "time": 1761314400009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005794671", + "time": 1761318000027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005716088", + "time": 1761321600171 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000513325", + "time": 1761325200036 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005445322", + "time": 1761328800052 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004764841", + "time": 1761332400043 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004228874", + "time": 1761336000021 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004113976", + "time": 1761339600031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004538869", + "time": 1761343200007 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004716946", + "time": 1761346800032 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004243927", + "time": 1761350400014 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003267751", + "time": 1761354000081 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003430884", + "time": 1761357600085 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003492443", + "time": 1761361200008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003368894", + "time": 1761364800066 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003204868", + "time": 1761368400028 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003473872", + "time": 1761372000036 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004158499", + "time": 1761375600008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004908448", + "time": 1761379200043 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000484888", + "time": 1761382800025 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004952546", + "time": 1761386400021 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004783556", + "time": 1761390000057 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005190806", + "time": 1761393600047 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005508971", + "time": 1761397200046 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004645111", + "time": 1761400800058 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002742317", + "time": 1761404400016 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001583254", + "time": 1761408000041 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000734766", + "time": 1761411600015 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001723186", + "time": 1761415200027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002461631", + "time": 1761418800030 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003475385", + "time": 1761422400002 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003257242", + "time": 1761426000073 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003117672", + "time": 1761429600055 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003188996", + "time": 1761433200044 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003026988", + "time": 1761436800032 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003465539", + "time": 1761440400040 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003386333", + "time": 1761444000006 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002688927", + "time": 1761447600063 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001830748", + "time": 1761451200133 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000556778", + "time": 1761454800021 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000713956", + "time": 1761458400088 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000725262", + "time": 1761462000054 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001433561", + "time": 1761465600009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002166459", + "time": 1761469200041 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000278095", + "time": 1761472800028 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003047142", + "time": 1761476400068 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003250711", + "time": 1761480000084 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000340227", + "time": 1761483600054 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003502875", + "time": 1761487200041 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003389626", + "time": 1761490800079 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000311226", + "time": 1761494400039 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003087198", + "time": 1761498000074 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002717117", + "time": 1761501600030 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000347195", + "time": 1761505200059 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004400754", + "time": 1761508800056 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003669282", + "time": 1761512400033 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.00030163", + "time": 1761516000019 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005099901", + "time": 1761519600009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003886856", + "time": 1761523200020 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005006626", + "time": 1761526800007 + }, + { + "coin": "BTC", + "fundingRate": "0.0000177275", + "premium": "0.00064182", + "time": 1761530400080 + }, + { + "coin": "BTC", + "fundingRate": "0.0000201933", + "premium": "0.0006615468", + "time": 1761534000034 + }, + { + "coin": "BTC", + "fundingRate": "0.0000246072", + "premium": "0.0006968576", + "time": 1761537600050 + }, + { + "coin": "BTC", + "fundingRate": "0.0000306179", + "premium": "0.0007449431", + "time": 1761541200056 + }, + { + "coin": "BTC", + "fundingRate": "0.0000321483", + "premium": "0.0007571862", + "time": 1761544800073 + }, + { + "coin": "BTC", + "fundingRate": "0.0000257439", + "premium": "0.0007059508", + "time": 1761548400002 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004680155", + "time": 1761552000067 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001815506", + "time": 1761555600016 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000258357", + "time": 1761559200082 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000346592", + "time": 1761562800067 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003050256", + "time": 1761566400052 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002047011", + "time": 1761570000132 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002410224", + "time": 1761573600028 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002323946", + "time": 1761577200090 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002401327", + "time": 1761580800054 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003103855", + "time": 1761584400078 + } + ], + "ETH": [ + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002790004", + "time": 1760979600004 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001851621", + "time": 1760983200050 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002010051", + "time": 1760986800049 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003175336", + "time": 1760990400017 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002648332", + "time": 1760994000028 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003429959", + "time": 1760997600031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000325434", + "time": 1761001200065 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000318293", + "time": 1761004800019 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003768053", + "time": 1761008400007 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002966119", + "time": 1761012000031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002011445", + "time": 1761015600071 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000436169", + "time": 1761019200035 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001897127", + "time": 1761022800063 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001436807", + "time": 1761026400008 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003042976", + "time": 1761030000118 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002560929", + "time": 1761033600010 + }, + { + "coin": "ETH", + "fundingRate": "0.0000110391", + "premium": "-0.0004116868", + "time": 1761037200003 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003337129", + "time": 1761040800028 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003193498", + "time": 1761044400076 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002287856", + "time": 1761048000078 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000892195", + "time": 1761051600030 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001510062", + "time": 1761055200096 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000517515", + "time": 1761058800047 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001853071", + "time": 1761062400042 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000094919", + "time": 1761066000058 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000072822", + "time": 1761069600016 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000121835", + "time": 1761073200080 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003673479", + "time": 1761076800060 + }, + { + "coin": "ETH", + "fundingRate": "0.0000077975", + "premium": "-0.0004376202", + "time": 1761080400019 + }, + { + "coin": "ETH", + "fundingRate": "0.0000022918", + "premium": "-0.0004816653", + "time": 1761084000011 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000090437", + "premium": "-0.0005723496", + "time": 1761087600060 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000148528", + "premium": "-0.0006188225", + "time": 1761091200025 + }, + { + "coin": "ETH", + "fundingRate": "-0.000011851", + "premium": "-0.0005948082", + "time": 1761094800050 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000034748", + "premium": "-0.0005277986", + "time": 1761098400020 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000029198", + "premium": "-0.0005233587", + "time": 1761102000081 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000031762", + "premium": "-0.0005254093", + "time": 1761105600076 + }, + { + "coin": "ETH", + "fundingRate": "0.0000005475", + "premium": "-0.0004956204", + "time": 1761109200035 + }, + { + "coin": "ETH", + "fundingRate": "0.0000026594", + "premium": "-0.000478725", + "time": 1761112800009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000034262", + "premium": "-0.0004725901", + "time": 1761116400071 + }, + { + "coin": "ETH", + "fundingRate": "0.0000075521", + "premium": "-0.0004395833", + "time": 1761120000062 + }, + { + "coin": "ETH", + "fundingRate": "0.0000102056", + "premium": "-0.0004183555", + "time": 1761123600059 + }, + { + "coin": "ETH", + "fundingRate": "0.0000080995", + "premium": "-0.0004352043", + "time": 1761127200074 + }, + { + "coin": "ETH", + "fundingRate": "0.0000099086", + "premium": "-0.0004207315", + "time": 1761130800056 + }, + { + "coin": "ETH", + "fundingRate": "0.0000064496", + "premium": "-0.0004484035", + "time": 1761134400032 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003398574", + "time": 1761138000031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003126328", + "time": 1761141600029 + }, + { + "coin": "ETH", + "fundingRate": "0.0000118332", + "premium": "-0.0004053341", + "time": 1761145200025 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000041865", + "premium": "-0.0005334917", + "time": 1761148800036 + }, + { + "coin": "ETH", + "fundingRate": "-0.000012775", + "premium": "-0.0006021997", + "time": 1761152400033 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000094025", + "premium": "-0.0005752198", + "time": 1761156000008 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000099926", + "premium": "-0.0005799406", + "time": 1761159600089 + }, + { + "coin": "ETH", + "fundingRate": "0.0000006318", + "premium": "-0.0004949454", + "time": 1761163200002 + }, + { + "coin": "ETH", + "fundingRate": "0.000000636", + "premium": "-0.0004949116", + "time": 1761166800025 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000021812", + "premium": "-0.0005174499", + "time": 1761170400027 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000095086", + "premium": "-0.0005760687", + "time": 1761174000005 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000017587", + "premium": "-0.0005140696", + "time": 1761177600009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000047453", + "premium": "-0.0004620376", + "time": 1761181200016 + }, + { + "coin": "ETH", + "fundingRate": "0.0000039805", + "premium": "-0.0004681563", + "time": 1761184800031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000069551", + "premium": "-0.0004443593", + "time": 1761188400006 + }, + { + "coin": "ETH", + "fundingRate": "0.0000061453", + "premium": "-0.0004508377", + "time": 1761192000069 + }, + { + "coin": "ETH", + "fundingRate": "0.0000056013", + "premium": "-0.00045519", + "time": 1761195600027 + }, + { + "coin": "ETH", + "fundingRate": "0.0000106185", + "premium": "-0.000415052", + "time": 1761199200059 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003625454", + "time": 1761202800050 + }, + { + "coin": "ETH", + "fundingRate": "0.0000084962", + "premium": "-0.0004320301", + "time": 1761206400047 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003425294", + "time": 1761210000058 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002814714", + "time": 1761213600041 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001350224", + "time": 1761217200009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000579583", + "time": 1761220800003 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000637819", + "time": 1761224400028 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000491112", + "time": 1761228000017 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000265103", + "time": 1761231600071 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000633233", + "time": 1761235200077 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001762556", + "time": 1761238800066 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001438487", + "time": 1761242400067 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000678628", + "time": 1761246000064 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000642349", + "time": 1761249600111 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000644468", + "time": 1761253200075 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002626957", + "time": 1761256800059 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002883672", + "time": 1761260400061 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000741096", + "time": 1761264000027 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000078495", + "time": 1761267600017 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000736892", + "time": 1761271200037 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001152003", + "time": 1761274800019 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000212291", + "time": 1761278400025 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000303098", + "time": 1761282000030 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0002320454", + "time": 1761285600025 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0002069007", + "time": 1761289200071 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001459459", + "time": 1761292800077 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000610695", + "time": 1761296400061 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000687375", + "time": 1761300000120 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001389247", + "time": 1761303600104 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001060309", + "time": 1761307200013 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001771318", + "time": 1761310800033 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001454371", + "time": 1761314400009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001690049", + "time": 1761318000027 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001970031", + "time": 1761321600171 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001485934", + "time": 1761325200036 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001562667", + "time": 1761328800052 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001054509", + "time": 1761332400043 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001360957", + "time": 1761336000021 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0003065801", + "time": 1761339600031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0003237599", + "time": 1761343200007 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0003332077", + "time": 1761346800032 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0002439774", + "time": 1761350400014 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000128523", + "time": 1761354000081 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001531508", + "time": 1761357600085 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001625471", + "time": 1761361200008 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001372684", + "time": 1761364800066 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001154002", + "time": 1761368400028 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000883615", + "time": 1761372000036 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000974643", + "time": 1761375600008 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000793815", + "time": 1761379200043 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000744869", + "time": 1761382800025 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000957654", + "time": 1761386400021 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000753839", + "time": 1761390000057 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001177421", + "time": 1761393600047 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001489224", + "time": 1761397200046 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000150952", + "time": 1761400800058 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001092355", + "time": 1761404400016 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000618235", + "time": 1761408000041 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000833954", + "time": 1761411600015 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001093273", + "time": 1761415200027 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000607707", + "time": 1761418800030 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000761181", + "time": 1761422400002 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000743616", + "time": 1761426000073 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000928337", + "time": 1761429600055 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001198571", + "time": 1761433200044 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000668206", + "time": 1761436800032 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000425907", + "time": 1761440400040 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000239282", + "time": 1761444000006 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000133243", + "time": 1761447600063 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000137014", + "time": 1761451200133 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000446889", + "time": 1761454800021 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000292407", + "time": 1761458400088 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000285564", + "time": 1761462000054 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000103596", + "time": 1761465600009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000003341", + "time": 1761469200041 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001069926", + "time": 1761472800028 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001196414", + "time": 1761476400068 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001034774", + "time": 1761480000084 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000976692", + "time": 1761483600054 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000521771", + "time": 1761487200041 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000418968", + "time": 1761490800079 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000327784", + "time": 1761494400039 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000666907", + "time": 1761498000074 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000143709", + "time": 1761501600030 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000974679", + "time": 1761505200059 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000914429", + "time": 1761508800056 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0000220714", + "time": 1761512400033 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0000851196", + "time": 1761516000019 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0003167121", + "time": 1761519600009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0002698647", + "time": 1761523200020 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001867574", + "time": 1761526800007 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0002702429", + "time": 1761530400080 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0004019255", + "time": 1761534000034 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000387318", + "time": 1761537600050 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0003906413", + "time": 1761541200056 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.000450167", + "time": 1761544800073 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0004721017", + "time": 1761548400002 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0005395542", + "time": 1761552000067 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0004103561", + "time": 1761555600016 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0003460069", + "time": 1761559200082 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0003543309", + "time": 1761562800067 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0003769665", + "time": 1761566400052 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0003538055", + "time": 1761570000132 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0004299859", + "time": 1761573600028 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0002959437", + "time": 1761577200090 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001656065", + "time": 1761580800054 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "0.0001982966", + "time": 1761584400078 + } + ], + "SOL": [ + { + "coin": "SOL", + "fundingRate": "-0.0000017774", + "premium": "-0.0005142195", + "time": 1760979600004 + }, + { + "coin": "SOL", + "fundingRate": "0.0000032116", + "premium": "-0.000474307", + "time": 1760983200050 + }, + { + "coin": "SOL", + "fundingRate": "0.0000048414", + "premium": "-0.000461269", + "time": 1760986800049 + }, + { + "coin": "SOL", + "fundingRate": "0.0000116316", + "premium": "-0.0004069468", + "time": 1760990400017 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003183752", + "time": 1760994000028 + }, + { + "coin": "SOL", + "fundingRate": "0.0000105763", + "premium": "-0.0004153898", + "time": 1760997600031 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.000374574", + "time": 1761001200065 + }, + { + "coin": "SOL", + "fundingRate": "0.0000064417", + "premium": "-0.000448466", + "time": 1761004800019 + }, + { + "coin": "SOL", + "fundingRate": "0.0000117599", + "premium": "-0.0004059207", + "time": 1761008400007 + }, + { + "coin": "SOL", + "fundingRate": "0.0000027204", + "premium": "-0.0004782371", + "time": 1761012000031 + }, + { + "coin": "SOL", + "fundingRate": "0.0000043146", + "premium": "-0.0004654832", + "time": 1761015600071 + }, + { + "coin": "SOL", + "fundingRate": "0.0000116321", + "premium": "-0.0004069436", + "time": 1761019200035 + }, + { + "coin": "SOL", + "fundingRate": "0.000000514", + "premium": "-0.0004958881", + "time": 1761022800063 + }, + { + "coin": "SOL", + "fundingRate": "0.0000071792", + "premium": "-0.000442566", + "time": 1761026400008 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000024705", + "premium": "-0.0005197639", + "time": 1761030000118 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000000297", + "premium": "-0.0005002378", + "time": 1761033600010 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000117821", + "premium": "-0.0005942568", + "time": 1761037200003 + }, + { + "coin": "SOL", + "fundingRate": "0.0000035447", + "premium": "-0.0004716424", + "time": 1761040800028 + }, + { + "coin": "SOL", + "fundingRate": "0.0000081934", + "premium": "-0.0004344532", + "time": 1761044400076 + }, + { + "coin": "SOL", + "fundingRate": "0.0000058207", + "premium": "-0.0004534347", + "time": 1761048000078 + }, + { + "coin": "SOL", + "fundingRate": "0.0000061282", + "premium": "-0.000450974", + "time": 1761051600030 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000001924", + "premium": "-0.0005015391", + "time": 1761055200096 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.000371774", + "time": 1761058800047 + }, + { + "coin": "SOL", + "fundingRate": "0.000011612", + "premium": "-0.0004071039", + "time": 1761062400042 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000014312", + "premium": "-0.0005114493", + "time": 1761066000058 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000007599", + "premium": "-0.000506079", + "time": 1761069600016 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000208043", + "premium": "-0.0006664344", + "time": 1761073200080 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000171227", + "premium": "-0.0006369819", + "time": 1761076800060 + }, + { + "coin": "SOL", + "fundingRate": "-0.000010192", + "premium": "-0.000581536", + "time": 1761080400019 + }, + { + "coin": "SOL", + "fundingRate": "0.0000024086", + "premium": "-0.0004807312", + "time": 1761084000011 + }, + { + "coin": "SOL", + "fundingRate": "0.0000087172", + "premium": "-0.000430262", + "time": 1761087600060 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000025974", + "premium": "-0.0005207791", + "time": 1761091200025 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000071727", + "premium": "-0.0005573819", + "time": 1761094800050 + }, + { + "coin": "SOL", + "fundingRate": "0.0000004072", + "premium": "-0.0004967423", + "time": 1761098400020 + }, + { + "coin": "SOL", + "fundingRate": "0.0000025593", + "premium": "-0.0004795255", + "time": 1761102000081 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000047782", + "premium": "-0.0005382256", + "time": 1761105600076 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000048955", + "premium": "-0.0005391639", + "time": 1761109200035 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000018326", + "premium": "-0.000514661", + "time": 1761112800009 + }, + { + "coin": "SOL", + "fundingRate": "0.0000024606", + "premium": "-0.0004803149", + "time": 1761116400071 + }, + { + "coin": "SOL", + "fundingRate": "-0.00001134", + "premium": "-0.0005907203", + "time": 1761120000062 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000112563", + "premium": "-0.0005900501", + "time": 1761123600059 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000124411", + "premium": "-0.0005995287", + "time": 1761127200074 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000099317", + "premium": "-0.0005794534", + "time": 1761130800056 + }, + { + "coin": "SOL", + "fundingRate": "0.0000006656", + "premium": "-0.0004946753", + "time": 1761134400032 + }, + { + "coin": "SOL", + "fundingRate": "0.0000105979", + "premium": "-0.0004152164", + "time": 1761138000031 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003132918", + "time": 1761141600029 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003976975", + "time": 1761145200025 + }, + { + "coin": "SOL", + "fundingRate": "0.0000102271", + "premium": "-0.0004181836", + "time": 1761148800036 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003135737", + "time": 1761152400033 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003829325", + "time": 1761156000008 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000010469", + "premium": "-0.0005083751", + "time": 1761159600089 + }, + { + "coin": "SOL", + "fundingRate": "0.0000010546", + "premium": "-0.0004915628", + "time": 1761163200002 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000129326", + "premium": "-0.0006034608", + "time": 1761166800025 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000082901", + "premium": "-0.0005663208", + "time": 1761170400027 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000178903", + "premium": "-0.0006431226", + "time": 1761174000005 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000063956", + "premium": "-0.0005511645", + "time": 1761177600009 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000049175", + "premium": "-0.0005393401", + "time": 1761181200016 + }, + { + "coin": "SOL", + "fundingRate": "0.0000024885", + "premium": "-0.0004800922", + "time": 1761184800031 + }, + { + "coin": "SOL", + "fundingRate": "0.0000102251", + "premium": "-0.0004181991", + "time": 1761188400006 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003424945", + "time": 1761192000069 + }, + { + "coin": "SOL", + "fundingRate": "0.0000123014", + "premium": "-0.0004015887", + "time": 1761195600027 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003973601", + "time": 1761199200059 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003161634", + "time": 1761202800050 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003618314", + "time": 1761206400047 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001577689", + "time": 1761210000058 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001087311", + "time": 1761213600041 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.000100426", + "time": 1761217200009 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002343418", + "time": 1761220800003 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001463744", + "time": 1761224400028 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001902542", + "time": 1761228000017 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000940197", + "time": 1761231600071 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000307334", + "time": 1761235200077 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000457865", + "time": 1761238800066 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001242897", + "time": 1761242400067 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001704841", + "time": 1761246000064 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003133038", + "time": 1761249600111 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003980109", + "time": 1761253200075 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000001044", + "premium": "-0.0005008352", + "time": 1761256800059 + }, + { + "coin": "SOL", + "fundingRate": "0.0000010685", + "premium": "-0.0004914519", + "time": 1761260400061 + }, + { + "coin": "SOL", + "fundingRate": "0.0000067343", + "premium": "-0.0004461253", + "time": 1761264000027 + }, + { + "coin": "SOL", + "fundingRate": "0.000010908", + "premium": "-0.0004127359", + "time": 1761267600017 + }, + { + "coin": "SOL", + "fundingRate": "0.0000097212", + "premium": "-0.0004222301", + "time": 1761271200037 + }, + { + "coin": "SOL", + "fundingRate": "0.0000011463", + "premium": "-0.0004908293", + "time": 1761274800019 + }, + { + "coin": "SOL", + "fundingRate": "0.000000059", + "premium": "-0.0004995278", + "time": 1761278400025 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003752989", + "time": 1761282000030 + }, + { + "coin": "SOL", + "fundingRate": "0.0000052528", + "premium": "-0.0004579773", + "time": 1761285600025 + }, + { + "coin": "SOL", + "fundingRate": "0.0000120973", + "premium": "-0.0004032212", + "time": 1761289200071 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003567801", + "time": 1761292800077 + }, + { + "coin": "SOL", + "fundingRate": "0.0000074683", + "premium": "-0.0004402539", + "time": 1761296400061 + }, + { + "coin": "SOL", + "fundingRate": "0.0000081756", + "premium": "-0.000434595", + "time": 1761300000120 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000002325", + "premium": "-0.0005018601", + "time": 1761303600104 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000082387", + "premium": "-0.0005659098", + "time": 1761307200013 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000075289", + "premium": "-0.0005602314", + "time": 1761310800033 + }, + { + "coin": "SOL", + "fundingRate": "-0.000001767", + "premium": "-0.0005141357", + "time": 1761314400009 + }, + { + "coin": "SOL", + "fundingRate": "0.0000012646", + "premium": "-0.0004898834", + "time": 1761318000027 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000039815", + "premium": "-0.000531852", + "time": 1761321600171 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000073971", + "premium": "-0.000559177", + "time": 1761325200036 + }, + { + "coin": "SOL", + "fundingRate": "0.0000052071", + "premium": "-0.0004583431", + "time": 1761328800052 + }, + { + "coin": "SOL", + "fundingRate": "0.0000009949", + "premium": "-0.0004920407", + "time": 1761332400043 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003602674", + "time": 1761336000021 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003807111", + "time": 1761339600031 + }, + { + "coin": "SOL", + "fundingRate": "0.0000113998", + "premium": "-0.0004088019", + "time": 1761343200007 + }, + { + "coin": "SOL", + "fundingRate": "0.0000108705", + "premium": "-0.0004130361", + "time": 1761346800032 + }, + { + "coin": "SOL", + "fundingRate": "0.0000085421", + "premium": "-0.0004316635", + "time": 1761350400014 + }, + { + "coin": "SOL", + "fundingRate": "0.0000003076", + "premium": "-0.0004975395", + "time": 1761354000081 + }, + { + "coin": "SOL", + "fundingRate": "0.0000019314", + "premium": "-0.0004845489", + "time": 1761357600085 + }, + { + "coin": "SOL", + "fundingRate": "0.0000101325", + "premium": "-0.0004189401", + "time": 1761361200008 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003945183", + "time": 1761364800066 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003084353", + "time": 1761368400028 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003896029", + "time": 1761372000036 + }, + { + "coin": "SOL", + "fundingRate": "0.0000120798", + "premium": "-0.0004033619", + "time": 1761375600008 + }, + { + "coin": "SOL", + "fundingRate": "0.0000054476", + "premium": "-0.0004564192", + "time": 1761379200043 + }, + { + "coin": "SOL", + "fundingRate": "0.0000057688", + "premium": "-0.0004538492", + "time": 1761382800025 + }, + { + "coin": "SOL", + "fundingRate": "0.0000070128", + "premium": "-0.0004438974", + "time": 1761386400021 + }, + { + "coin": "SOL", + "fundingRate": "0.0000042522", + "premium": "-0.0004659823", + "time": 1761390000057 + }, + { + "coin": "SOL", + "fundingRate": "0.000011386", + "premium": "-0.0004089121", + "time": 1761393600047 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003431662", + "time": 1761397200046 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003878945", + "time": 1761400800058 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000092738", + "premium": "-0.0005741902", + "time": 1761404400016 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000065131", + "premium": "-0.000552105", + "time": 1761408000041 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000116481", + "premium": "-0.0005931848", + "time": 1761411600015 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000038845", + "premium": "-0.0005310757", + "time": 1761415200027 + }, + { + "coin": "SOL", + "fundingRate": "0.0000116902", + "premium": "-0.0004064787", + "time": 1761418800030 + }, + { + "coin": "SOL", + "fundingRate": "0.0000089342", + "premium": "-0.0004285268", + "time": 1761422400002 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003935629", + "time": 1761426000073 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002780613", + "time": 1761429600055 + }, + { + "coin": "SOL", + "fundingRate": "0.0000111112", + "premium": "-0.0004111106", + "time": 1761433200044 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003304611", + "time": 1761436800032 + }, + { + "coin": "SOL", + "fundingRate": "0.0000095835", + "premium": "-0.0004233319", + "time": 1761440400040 + }, + { + "coin": "SOL", + "fundingRate": "0.0000108432", + "premium": "-0.0004132542", + "time": 1761444000006 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003134045", + "time": 1761447600063 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002791668", + "time": 1761451200133 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002890506", + "time": 1761454800021 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003875814", + "time": 1761458400088 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003102352", + "time": 1761462000054 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003197074", + "time": 1761465600009 + }, + { + "coin": "SOL", + "fundingRate": "0.0000109795", + "premium": "-0.000412164", + "time": 1761469200041 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002309353", + "time": 1761472800028 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000511212", + "time": 1761476400068 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000133266", + "time": 1761480000084 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000312538", + "time": 1761483600054 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000227339", + "time": 1761487200041 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001234348", + "time": 1761490800079 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003574461", + "time": 1761494400039 + }, + { + "coin": "SOL", + "fundingRate": "0.0000087164", + "premium": "-0.0004302685", + "time": 1761498000074 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003264781", + "time": 1761501600030 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002048436", + "time": 1761505200059 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002522871", + "time": 1761508800056 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002936289", + "time": 1761512400033 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003865549", + "time": 1761516000019 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.000166149", + "time": 1761519600009 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000322778", + "time": 1761523200020 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.000057235", + "time": 1761526800007 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001538916", + "time": 1761530400080 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.000091662", + "time": 1761534000034 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001029194", + "time": 1761537600050 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0002174421", + "time": 1761541200056 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001560984", + "time": 1761544800073 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001229887", + "time": 1761548400002 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000460836", + "time": 1761552000067 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002062495", + "time": 1761555600016 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001503546", + "time": 1761559200082 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000508023", + "time": 1761562800067 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.000124097", + "time": 1761566400052 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001419419", + "time": 1761570000132 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001829864", + "time": 1761573600028 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001846075", + "time": 1761577200090 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001302023", + "time": 1761580800054 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000864248", + "time": 1761584400078 + } + ] + } + } +} \ No newline at end of file diff --git a/hyperliquid_wallet_data_0xb83de012_20251104_222349.json b/hyperliquid_wallet_data_0xb83de012_20251104_222349.json new file mode 100644 index 0000000..4a2ebfa --- /dev/null +++ b/hyperliquid_wallet_data_0xb83de012_20251104_222349.json @@ -0,0 +1,46740 @@ +{ + "wallet_address": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "timestamp": "2025-11-04T22:23:34.445142", + "data": { + "user_state": { + "marginSummary": { + "accountValue": "37545117.7728430033", + "totalNtlPos": "116202648.9574259967", + "totalRawUsd": "153747766.7302690148", + "totalMarginUsed": "15317703.4367999993" + }, + "crossMarginSummary": { + "accountValue": "37545117.7728430033", + "totalNtlPos": "116202648.9574259967", + "totalRawUsd": "153747766.7302690148", + "totalMarginUsed": "15317703.4367999993" + }, + "crossMaintenanceMarginUsed": "3395032.6047180002", + "withdrawable": "22222931.3536729999", + "assetPositions": [ + { + "type": "oneWay", + "position": { + "coin": "BTC", + "szi": "-792.64732", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "114265.6", + "positionValue": "79316254.0758000016", + "unrealizedPnl": "11256083.4233519994", + "returnOnEquity": "1.2427727642", + "liquidationPx": "142616.6851282542", + "marginUsed": "7931625.4075800003", + "maxLeverage": 40, + "cumFunding": { + "allTime": "-7200330.7281130003", + "sinceOpen": "-7200330.7340540001", + "sinceChange": "-10168.228437" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "ETH", + "szi": "-17.2661", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "3976.0", + "positionValue": "54749.07649", + "unrealizedPnl": "13900.941151", + "returnOnEquity": "2.0248998658", + "liquidationPx": "1942258.2245853855", + "marginUsed": "5474.907649", + "maxLeverage": 25, + "cumFunding": { + "allTime": "-6683390.0333519997", + "sinceOpen": "-6683390.0333519997", + "sinceChange": "4.259958" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "SOL", + "szi": "-28.29", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "199.8123", + "positionValue": "4253.6844", + "unrealizedPnl": "1399.005841", + "returnOnEquity": "2.4749380938", + "liquidationPx": "1177851.1822546965", + "marginUsed": "425.36844", + "maxLeverage": 20, + "cumFunding": { + "allTime": "-848547.376258", + "sinceOpen": "-56576.523272", + "sinceChange": "0.018536" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "DOGE", + "szi": "-109217.0", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "0.279959", + "positionValue": "17128.50211", + "unrealizedPnl": "13447.870549", + "returnOnEquity": "4.3981248852", + "liquidationPx": "292.7289049685", + "marginUsed": "1712.850211", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-1854.898752", + "sinceOpen": "-1854.898752", + "sinceChange": "66.364437" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "INJ", + "szi": "-18747.2", + "leverage": { + "type": "cross", + "value": 3 + }, + "entryPx": "13.01496", + "positionValue": "116365.74512", + "unrealizedPnl": "127628.47278", + "returnOnEquity": "1.5692397207", + "liquidationPx": "1669.207775052", + "marginUsed": "38788.581706", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-271.90916", + "sinceOpen": "-271.90916", + "sinceChange": "259.857048" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "SUI", + "szi": "-376577.6", + "leverage": { + "type": "cross", + "value": 3 + }, + "entryPx": "3.85881", + "positionValue": "714706.6270400001", + "unrealizedPnl": "738437.630721", + "returnOnEquity": "1.5244961953", + "liquidationPx": "86.6669787111", + "marginUsed": "238235.542346", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-46723.502843", + "sinceOpen": "-46723.498006", + "sinceChange": "-2163.922936" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "XRP", + "szi": "-39691.0", + "leverage": { + "type": "cross", + "value": 20 + }, + "entryPx": "2.468585", + "positionValue": "84327.4986", + "unrealizedPnl": "13653.1237", + "returnOnEquity": "2.7869028344", + "liquidationPx": "841.5379748604", + "marginUsed": "4216.37493", + "maxLeverage": 20, + "cumFunding": { + "allTime": "-2651.066285", + "sinceOpen": "-121.703116", + "sinceChange": "-121.703116" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "HYPE", + "szi": "-851765.08", + "leverage": { + "type": "cross", + "value": 5 + }, + "entryPx": "43.6791", + "positionValue": "31262333.7312400006", + "unrealizedPnl": "5942033.9611029997", + "returnOnEquity": "0.7985667181", + "liquidationPx": "73.1514676585", + "marginUsed": "6252466.7462480003", + "maxLeverage": 5, + "cumFunding": { + "allTime": "-1993327.1320529999", + "sinceOpen": "-1993327.1320529999", + "sinceChange": "-2006.130349" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "FARTCOIN", + "szi": "-3325131.0", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "0.80127", + "positionValue": "817483.45635", + "unrealizedPnl": "1846874.6739940001", + "returnOnEquity": "6.931780878", + "liquidationPx": "9.8447092754", + "marginUsed": "81748.345635", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-75972.427901", + "sinceOpen": "-54302.553277", + "sinceChange": "-71.447352" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "PUMP", + "szi": "-1075266787.0", + "leverage": { + "type": "cross", + "value": 5 + }, + "entryPx": "0.005551", + "positionValue": "3815046.5602759998", + "unrealizedPnl": "2154024.2710609999", + "returnOnEquity": "1.8043212519", + "liquidationPx": "0.0331045827", + "marginUsed": "763009.312055", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-208836.577921", + "sinceOpen": "-208836.577921", + "sinceChange": "-362.088341" + } + } + } + ], + "time": 1762291415225 + }, + "spot_state": { + "balances": [ + { + "coin": "USDC", + "token": 0, + "total": "532973.75855157", + "hold": "0.0", + "entryNtl": "0.0" + }, + { + "coin": "HYPE", + "token": 150, + "total": "146592.92595263", + "hold": "0.0", + "entryNtl": "6455277.87362085" + }, + { + "coin": "UBTC", + "token": 197, + "total": "0.0", + "hold": "0.0", + "entryNtl": "0.0" + }, + { + "coin": "LATINA", + "token": 223, + "total": "35470.3668", + "hold": "0.0", + "entryNtl": "0.0" + }, + { + "coin": "USDT0", + "token": 268, + "total": "3462.70093445", + "hold": "0.0", + "entryNtl": "3463.36604445" + }, + { + "coin": "UFART", + "token": 269, + "total": "3350048.1960629998", + "hold": "0.0", + "entryNtl": "2685712.9054581099" + }, + { + "coin": "UPUMP", + "token": 299, + "total": "358268528.5250939727", + "hold": "0.0", + "entryNtl": "2442751.2693156502" + }, + { + "coin": "LICKO", + "token": 307, + "total": "11189.06185739", + "hold": "0.0", + "entryNtl": "0.06713437" + } + ] + }, + "open_orders": [ + { + "coin": "WLFI", + "side": "B", + "limitPx": "0.10447", + "sz": "2624.0", + "oid": 194029229960, + "timestamp": 1760131688558, + "origSz": "12760.0", + "cloid": "0x00000000000000000000001261000016" + } + ], + "recent_fills": [ + { + "coin": "ETH", + "px": "3392.7", + "sz": "2.2092", + "side": "B", + "time": 1762277435122, + "startPosition": "-19.4753", + "dir": "Close Short", + "closedPnl": "1288.62636", + "hash": "0xb6ec92969496de63b866042ed61e85020bb0007c2f99fd355ab53de9539ab84e", + "oid": 222712144577, + "crossed": true, + "fee": "1.573982", + "tid": 868237201651953, + "cloid": "0x00000000000000000000000473000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3391.2", + "sz": "0.1783", + "side": "B", + "time": 1762277422578, + "startPosition": "-19.6536", + "dir": "Close Short", + "closedPnl": "104.26984", + "hash": "0x6734489ce30edbd968ae042ed61de802040000827e01faab0afcf3efa202b5c4", + "oid": 222711931161, + "crossed": true, + "fee": "0.126976", + "tid": 1083888854364193, + "cloid": "0x00000000000000000000000473000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3391.2", + "sz": "2.032", + "side": "B", + "time": 1762277422578, + "startPosition": "-21.6856", + "dir": "Close Short", + "closedPnl": "1188.3136", + "hash": "0x6734489ce30edbd968ae042ed61de802040000827e01faab0afcf3efa202b5c4", + "oid": 222711931161, + "crossed": true, + "fee": "1.447092", + "tid": 627164308501203, + "cloid": "0x00000000000000000000000473000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3387.6", + "sz": "2.2131", + "side": "B", + "time": 1762277408144, + "startPosition": "-23.8987", + "dir": "Close Short", + "closedPnl": "1302.18804", + "hash": "0xe794799882f69410e90e042ed61d220209b5007e1df9b2e28b5d24eb41fa6dfb", + "oid": 222711684240, + "crossed": true, + "fee": "1.57439", + "tid": 886821277769768, + "cloid": "0x00000000000000000000000473000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3381.5", + "sz": "2.2169", + "side": "B", + "time": 1762277398450, + "startPosition": "-26.1156", + "dir": "Close Short", + "closedPnl": "1317.94705", + "hash": "0x12958c55b152a789140f042ed61caa0203e3003b4c55c65bb65e37a870568173", + "oid": 222711504328, + "crossed": true, + "fee": "1.574253", + "tid": 28013403948832, + "cloid": "0x00000000000000000000000473000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@166", + "px": "1.01", + "sz": "103038.77", + "side": "A", + "time": 1762277186384, + "startPosition": "106501.47093445", + "dir": "Sell", + "closedPnl": "1010.59617951", + "hash": "0xcc93a216ff5aff5bce0d042ed6120f02080a00fc9a5e1e2d705c4d69be5ed946", + "oid": 174787748753, + "crossed": false, + "fee": "1.4569682", + "tid": 1029961093387360, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.194", + "sz": "16.94", + "side": "A", + "time": 1762272367321, + "startPosition": "146609.86595263", + "dir": "Sell", + "closedPnl": "-82.0132862", + "hash": "0x47d0b75eaba18d01494a042ed5245f020687004446a4abd3eb9962b16aa566eb", + "oid": 222620728810, + "crossed": true, + "fee": "0.18590498", + "tid": 1105522265080472, + "cloid": "0x10000000000000000000000483000128", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.198", + "sz": "10.0", + "side": "A", + "time": 1762272367321, + "startPosition": "146619.86595263", + "dir": "Sell", + "closedPnl": "-48.3739824", + "hash": "0x47d0b75eaba18d01494a042ed5245f020687004446a4abd3eb9962b16aa566eb", + "oid": 222620728810, + "crossed": true, + "fee": "0.10975439", + "tid": 520516467025011, + "cloid": "0x10000000000000000000000483000128", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.193", + "sz": "15.4", + "side": "A", + "time": 1762272367014, + "startPosition": "146635.26595263", + "dir": "Sell", + "closedPnl": "-74.5729329", + "hash": "0xab0643703b3277bdac7f042ed5245c0202370055d635968f4eceeec2fa3651a8", + "oid": 222620724945, + "crossed": true, + "fee": "0.16900021", + "tid": 434586769862486, + "cloid": "0x10000000000000000000000483000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.197", + "sz": "10.0", + "side": "A", + "time": 1762272367014, + "startPosition": "146645.26595263", + "dir": "Sell", + "closedPnl": "-48.3839824", + "hash": "0xab0643703b3277bdac7f042ed5245c0202370055d635968f4eceeec2fa3651a8", + "oid": 222620724945, + "crossed": true, + "fee": "0.10975159", + "tid": 94400721768507, + "cloid": "0x10000000000000000000000483000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.207", + "sz": "0.04", + "side": "A", + "time": 1762272367014, + "startPosition": "146645.30595263", + "dir": "Sell", + "closedPnl": "-0.19313592", + "hash": "0xab0643703b3277bdac7f042ed5245c0202370055d635968f4eceeec2fa3651a8", + "oid": 222620724945, + "crossed": true, + "fee": "0.00043911", + "tid": 603011422469746, + "cloid": "0x10000000000000000000000483000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.199", + "sz": "50.98", + "side": "A", + "time": 1762272366107, + "startPosition": "146696.28595263", + "dir": "Sell", + "closedPnl": "-246.55958232", + "hash": "0xfdb8d5e77d539ba7ff32042ed524500205e500cd1856ba7aa181813a3c577592", + "oid": 222620705510, + "crossed": true, + "fee": "0.5595422", + "tid": 24827322046898, + "cloid": "0x10000000000000000000000483000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.199", + "sz": "50.98", + "side": "A", + "time": 1762272366107, + "startPosition": "146747.26595263", + "dir": "Sell", + "closedPnl": "-246.55958232", + "hash": "0x4ae55f4c63c2592c4c5f042ed524500205e40031fec577feeeae0a9f22c63316", + "oid": 222620705509, + "crossed": true, + "fee": "0.5595422", + "tid": 58898119559395, + "cloid": "0x10000000000000000000000483000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.199", + "sz": "48.66", + "side": "A", + "time": 1762272366107, + "startPosition": "146795.92595263", + "dir": "Sell", + "closedPnl": "-235.3391384", + "hash": "0x9811e8b14a3116b0998b042ed524500205e30096e53435823bda94040934f09b", + "oid": 222620705508, + "crossed": true, + "fee": "0.53407853", + "tid": 577766831539127, + "cloid": "0x10000000000000000000000483000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.204", + "sz": "2.32", + "side": "A", + "time": 1762272366107, + "startPosition": "146798.24595263", + "dir": "Sell", + "closedPnl": "-11.20884391", + "hash": "0x9811e8b14a3116b0998b042ed524500205e30096e53435823bda94040934f09b", + "oid": 222620705508, + "crossed": true, + "fee": "0.02546691", + "tid": 627301145298600, + "cloid": "0x10000000000000000000000483000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.204", + "sz": "8.66", + "side": "A", + "time": 1762272366107, + "startPosition": "146806.90595263", + "dir": "Sell", + "closedPnl": "-41.83990876", + "hash": "0xe53e721630afd434e6b8042ed524500205e200fbcba2f30689071d68efa3ae1f", + "oid": 222620705507, + "crossed": true, + "fee": "0.09506185", + "tid": 94942040485363, + "cloid": "0x10000000000000000000000483000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.206", + "sz": "40.91", + "side": "A", + "time": 1762272365901, + "startPosition": "146847.81595263", + "dir": "Sell", + "closedPnl": "-197.57068203", + "hash": "0xf59760cd5a2a9835f711042ed5244c02034e00b2f52db70899600c20192e7220", + "oid": 222620699556, + "crossed": true, + "fee": "0.44909688", + "tid": 825758822122696, + "cloid": "0x10000000000000000000000483000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.229", + "sz": "26.94", + "side": "B", + "time": 1762272365801, + "startPosition": "-851792.02", + "dir": "Close Short", + "closedPnl": "119.885694", + "hash": "0x778d6822d61434097907042ed5244b02082a0008711752db1b56137595180df4", + "oid": 222620683143, + "crossed": false, + "fee": "0.029591", + "tid": 263231313585607, + "cloid": "0x00000000000000000000000472000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.229", + "sz": "25.44", + "side": "B", + "time": 1762272365423, + "startPosition": "-851817.46", + "dir": "Close Short", + "closedPnl": "113.210544", + "hash": "0x1466733753ac25f115e0042ed52446020944001ceeaf44c3b82f1e8a12afffdb", + "oid": 222620683143, + "crossed": false, + "fee": "0.027943", + "tid": 944104266242740, + "cloid": "0x00000000000000000000000472000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.229", + "sz": "50.98", + "side": "B", + "time": 1762272364820, + "startPosition": "-851868.4399999999", + "dir": "Close Short", + "closedPnl": "226.866098", + "hash": "0x5a26d7e0467cf1c35ba0042ed5243e02062100c5e1701095fdef83330570cbad", + "oid": 222620683143, + "crossed": true, + "fee": "0.419977", + "tid": 119362351851202, + "cloid": "0x00000000000000000000000472000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.228", + "sz": "50.98", + "side": "B", + "time": 1762272364820, + "startPosition": "-851919.42", + "dir": "Close Short", + "closedPnl": "226.917078", + "hash": "0x5a26d7e0467cf1c35ba0042ed5243e02062100c5e1701095fdef83330570cbad", + "oid": 222620683143, + "crossed": true, + "fee": "0.419967", + "tid": 377772620793872, + "cloid": "0x00000000000000000000000472000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.227", + "sz": "8.66", + "side": "B", + "time": 1762272364820, + "startPosition": "-851928.08", + "dir": "Close Short", + "closedPnl": "38.555186", + "hash": "0x5a26d7e0467cf1c35ba0042ed5243e02062100c5e1701095fdef83330570cbad", + "oid": 222620683143, + "crossed": true, + "fee": "0.071338", + "tid": 357858243797070, + "cloid": "0x00000000000000000000000472000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.227", + "sz": "40.91", + "side": "B", + "time": 1762272364820, + "startPosition": "-851968.99", + "dir": "Close Short", + "closedPnl": "182.135411", + "hash": "0x5a26d7e0467cf1c35ba0042ed5243e02062100c5e1701095fdef83330570cbad", + "oid": 222620683143, + "crossed": true, + "fee": "0.337003", + "tid": 321290771416486, + "cloid": "0x00000000000000000000000472000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.227", + "sz": "50.98", + "side": "B", + "time": 1762272364820, + "startPosition": "-852019.97", + "dir": "Close Short", + "closedPnl": "226.968058", + "hash": "0x5a26d7e0467cf1c35ba0042ed5243e02062100c5e1701095fdef83330570cbad", + "oid": 222620683143, + "crossed": true, + "fee": "0.419956", + "tid": 603846731270009, + "cloid": "0x00000000000000000000000472000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.233", + "sz": "124.84", + "side": "A", + "time": 1762272363410, + "startPosition": "146972.65595263", + "dir": "Sell", + "closedPnl": "-599.53139639", + "hash": "0xc72ca7ddf537c86ec8a6042ed5242902111600c3903ae7406af55330b43ba259", + "oid": 222620653795, + "crossed": true, + "fee": "1.37139736", + "tid": 315120166432348, + "cloid": "0x10000000000000000000000483000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.233", + "sz": "10.0", + "side": "A", + "time": 1762272363410, + "startPosition": "146982.65595263", + "dir": "Sell", + "closedPnl": "-48.0239824", + "hash": "0xc72ca7ddf537c86ec8a6042ed5242902111600c3903ae7406af55330b43ba259", + "oid": 222620653795, + "crossed": true, + "fee": "0.10985239", + "tid": 902240681079600, + "cloid": "0x10000000000000000000000483000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.237", + "sz": "10.0", + "side": "A", + "time": 1762272363410, + "startPosition": "146992.65595263", + "dir": "Sell", + "closedPnl": "-47.9839824", + "hash": "0xc72ca7ddf537c86ec8a6042ed5242902111600c3903ae7406af55330b43ba259", + "oid": 222620653795, + "crossed": true, + "fee": "0.10986359", + "tid": 176581158240333, + "cloid": "0x10000000000000000000000483000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.243", + "sz": "104.31", + "side": "A", + "time": 1762272363410, + "startPosition": "147096.96595263", + "dir": "Sell", + "closedPnl": "-499.8950605", + "hash": "0xc72ca7ddf537c86ec8a6042ed5242902111600c3903ae7406af55330b43ba259", + "oid": 222620653795, + "crossed": true, + "fee": "1.14616245", + "tid": 73755302049177, + "cloid": "0x10000000000000000000000483000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.232", + "sz": "5.71", + "side": "A", + "time": 1762272362574, + "startPosition": "147102.67595263", + "dir": "Sell", + "closedPnl": "-27.42740395", + "hash": "0xf9bb048a841c2f9efb34042ed5241f0213e600701f1f4e719d83afdd43100989", + "oid": 222620636282, + "crossed": true, + "fee": "0.06272412", + "tid": 109960334288458, + "cloid": "0x10000000000000000000000483000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.234", + "sz": "249.15", + "side": "B", + "time": 1762272362434, + "startPosition": "-852269.12", + "dir": "Close Short", + "closedPnl": "1107.496665", + "hash": "0x96a45ffc95b67fc0981e042ed5241d02159a00e230b99e923a6d0b4f54ba59ab", + "oid": 222620511953, + "crossed": false, + "fee": "0.273704", + "tid": 446907302469644, + "cloid": "0x00000000000000000000000472000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.234", + "sz": "5.71", + "side": "B", + "time": 1762272361683, + "startPosition": "-852274.83", + "dir": "Close Short", + "closedPnl": "25.381521", + "hash": "0x42b9fa3a838758464433042ed52415020da700201e8a7718e682a58d428b3230", + "oid": 222620511953, + "crossed": false, + "fee": "0.006272", + "tid": 730909679334008, + "cloid": "0x00000000000000000000000472000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.242", + "sz": "62.43", + "side": "A", + "time": 1762272354901, + "startPosition": "147165.10595263", + "dir": "Sell", + "closedPnl": "-299.25185217", + "hash": "0xc6c5143626cb5739c83e042ed523c60205c6001bc1ce760b6a8dbf88e5cf3124", + "oid": 222620445545, + "crossed": false, + "fee": "0.17149146", + "tid": 316784156455888, + "cloid": "0x10000000000000000000000483000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.242", + "sz": "10.0", + "side": "A", + "time": 1762272354901, + "startPosition": "147175.10595263", + "dir": "Sell", + "closedPnl": "-47.9339824", + "hash": "0xc6c5143626cb5739c83e042ed523c60205c6001bc1ce760b6a8dbf88e5cf3124", + "oid": 222620445544, + "crossed": false, + "fee": "0.02746939", + "tid": 105182836901553, + "cloid": "0x10000000000000000000000483000118", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.242", + "sz": "10.0", + "side": "A", + "time": 1762272354901, + "startPosition": "147185.10595263", + "dir": "Sell", + "closedPnl": "-47.9339824", + "hash": "0xc6c5143626cb5739c83e042ed523c60205c6001bc1ce760b6a8dbf88e5cf3124", + "oid": 222620445543, + "crossed": false, + "fee": "0.02746939", + "tid": 1092375407528350, + "cloid": "0x10000000000000000000000483000117", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.242", + "sz": "84.88", + "side": "A", + "time": 1762272354901, + "startPosition": "147269.98595263", + "dir": "Sell", + "closedPnl": "-406.86364268", + "hash": "0xc6c5143626cb5739c83e042ed523c60205c6001bc1ce760b6a8dbf88e5cf3124", + "oid": 222620441927, + "crossed": false, + "fee": "0.23316026", + "tid": 327946254503514, + "cloid": "0x10000000000000000000000483000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.242", + "sz": "2.17", + "side": "A", + "time": 1762272353023, + "startPosition": "147272.15595263", + "dir": "Sell", + "closedPnl": "-10.40167418", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 222620441927, + "crossed": false, + "fee": "0.00596085", + "tid": 736551815566837, + "cloid": "0x10000000000000000000000483000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.242", + "sz": "6.9", + "side": "A", + "time": 1762272352003, + "startPosition": "147279.05595263", + "dir": "Sell", + "closedPnl": "-33.07444786", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 222620441927, + "crossed": false, + "fee": "0.01895388", + "tid": 195602896366022, + "cloid": "0x10000000000000000000000483000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.242", + "sz": "1.77", + "side": "A", + "time": 1762272352003, + "startPosition": "147280.82595263", + "dir": "Sell", + "closedPnl": "-8.48431488", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 222620441927, + "crossed": false, + "fee": "0.00486208", + "tid": 66235398773981, + "cloid": "0x10000000000000000000000483000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.242", + "sz": "2.98", + "side": "A", + "time": 1762272352003, + "startPosition": "147283.80595263", + "dir": "Sell", + "closedPnl": "-14.28432675", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 222620441927, + "crossed": false, + "fee": "0.00818588", + "tid": 540639016521212, + "cloid": "0x10000000000000000000000483000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.277", + "sz": "62.43", + "side": "B", + "time": 1762272350452, + "startPosition": "-852337.26", + "dir": "Close Short", + "closedPnl": "274.823103", + "hash": "0xaf65147eea0518cab0de042ed5238a02064600648508379c532dbfd1a908f2b5", + "oid": 222620296203, + "crossed": false, + "fee": "0.068657", + "tid": 548628451770123, + "cloid": "0x00000000000000000000000472000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.277", + "sz": "10.0", + "side": "B", + "time": 1762272350452, + "startPosition": "-852347.26", + "dir": "Close Short", + "closedPnl": "44.021", + "hash": "0x65f5e90b03f9c271676f042ed5238a02063d00f09efce14309be945dc2fd9c5c", + "oid": 222620296203, + "crossed": false, + "fee": "0.010997", + "tid": 1051037697338846, + "cloid": "0x00000000000000000000000472000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.277", + "sz": "10.0", + "side": "B", + "time": 1762272350452, + "startPosition": "-852357.26", + "dir": "Close Short", + "closedPnl": "44.021", + "hash": "0xe7d4980384237606e94e042ed5238a02063800e91f2694d88b9d435643274ff1", + "oid": 222620296203, + "crossed": false, + "fee": "0.010997", + "tid": 400040637474228, + "cloid": "0x00000000000000000000000472000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.277", + "sz": "98.7", + "side": "B", + "time": 1762272350298, + "startPosition": "-852455.96", + "dir": "Close Short", + "closedPnl": "434.48727", + "hash": "0xca70048c1a5c99a4cbe9042ed5238802021d0071b55fb8766e38afded950738f", + "oid": 222620296203, + "crossed": false, + "fee": "0.108545", + "tid": 517063207316968, + "cloid": "0x00000000000000000000000472000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.254", + "sz": "43.59", + "side": "A", + "time": 1762272338685, + "startPosition": "147327.39595263", + "dir": "Sell", + "closedPnl": "-208.42114932", + "hash": "0x12801f568292e69513f9042ed522ed020188003c1d960567b648caa94196c07f", + "oid": 222620233870, + "crossed": true, + "fee": "0.47910292", + "tid": 968339447618674, + "cloid": "0x10000000000000000000000483000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.256", + "sz": "10.0", + "side": "A", + "time": 1762272338685, + "startPosition": "147337.39595263", + "dir": "Sell", + "closedPnl": "-47.7939824", + "hash": "0x12801f568292e69513f9042ed522ed020188003c1d960567b648caa94196c07f", + "oid": 222620233870, + "crossed": true, + "fee": "0.10991679", + "tid": 71196541352330, + "cloid": "0x10000000000000000000000483000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.258", + "sz": "10.0", + "side": "A", + "time": 1762272338685, + "startPosition": "147347.39595263", + "dir": "Sell", + "closedPnl": "-47.7739824", + "hash": "0x12801f568292e69513f9042ed522ed020188003c1d960567b648caa94196c07f", + "oid": 222620233870, + "crossed": true, + "fee": "0.10992239", + "tid": 570049728078663, + "cloid": "0x10000000000000000000000483000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.26", + "sz": "10.0", + "side": "A", + "time": 1762272338685, + "startPosition": "147357.39595263", + "dir": "Sell", + "closedPnl": "-47.7539824", + "hash": "0x12801f568292e69513f9042ed522ed020188003c1d960567b648caa94196c07f", + "oid": 222620233870, + "crossed": true, + "fee": "0.10992799", + "tid": 987696624017641, + "cloid": "0x10000000000000000000000483000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.255", + "sz": "73.59", + "side": "B", + "time": 1762272338035, + "startPosition": "-852529.55", + "dir": "Close Short", + "closedPnl": "325.569519", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 222620184280, + "crossed": false, + "fee": "0.080885", + "tid": 1029502667977314, + "cloid": "0x00000000000000000000000472000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.267", + "sz": "55.43", + "side": "A", + "time": 1762272334235, + "startPosition": "147412.82595263", + "dir": "Sell", + "closedPnl": "-264.31231449", + "hash": "0x9cc4b669de33586c9e3e042ed522b30203f4004f7936773e408d61bc9d373257", + "oid": 222620147169, + "crossed": true, + "fee": "0.60943954", + "tid": 891073422108822, + "cloid": "0x10000000000000000000000483000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.268", + "sz": "10.0", + "side": "A", + "time": 1762272334235, + "startPosition": "147422.82595263", + "dir": "Sell", + "closedPnl": "-47.6739824", + "hash": "0x9cc4b669de33586c9e3e042ed522b30203f4004f7936773e408d61bc9d373257", + "oid": 222620147169, + "crossed": true, + "fee": "0.10995039", + "tid": 758750936067472, + "cloid": "0x10000000000000000000000483000114", + "feeToken": "USDC", + "twapId": null + } + ], + "fills_last_7_days": [ + { + "coin": "ETH", + "px": "3592.3", + "sz": "2.78", + "side": "B", + "time": 1762185248891, + "startPosition": "-2262.0454", + "dir": "Close Short", + "closedPnl": "1440.8184", + "hash": "0xc8c5f0fa058f05b4ca3f042ec452da02102e00dfa08224866c8e9c4cc482df9f", + "oid": 221320377627, + "crossed": true, + "fee": "2.097184", + "tid": 635168025001820, + "cloid": "0x00000000000000000000000387000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "60.03", + "side": "B", + "time": 1762185248891, + "startPosition": "-241011.16", + "dir": "Close Short", + "closedPnl": "2011.143069", + "hash": "0xff8246b8e9b9583600fc042ec452da021069009e84bc7709a34af20ba8bd3221", + "oid": 221320377660, + "crossed": true, + "fee": "2.096553", + "tid": 783180297272718, + "cloid": "0x00000000000000000000000388000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.8", + "sz": "2.7809", + "side": "B", + "time": 1762185251094, + "startPosition": "-2259.2654", + "dir": "Close Short", + "closedPnl": "1439.894402", + "hash": "0xf68064bf7cc3e7dbf7fa042ec452f202094a00a517c706ae9a4910123bc7c1c6", + "oid": 221320413092, + "crossed": true, + "fee": "2.098155", + "tid": 1071568217581582, + "cloid": "0x00000000000000000000000387000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.26", + "sz": "60.04", + "side": "B", + "time": 1762185251094, + "startPosition": "-240951.13", + "dir": "Close Short", + "closedPnl": "2014.480092", + "hash": "0xa953db5a96552a57aacd042ec452f202094b0040315849294d1c86ad55590442", + "oid": 221320413093, + "crossed": true, + "fee": "2.096272", + "tid": 66588131548723, + "cloid": "0x00000000000000000000000388000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26934", + "sz": "695.0", + "side": "B", + "time": 1762185252387, + "startPosition": "-4022832.7999999998", + "dir": "Close Short", + "closedPnl": "369.69135", + "hash": "0xaebef67f9c7d21a7b038042ec45301020b720065377040795287a1d25b70fb92", + "oid": 221320437615, + "crossed": true, + "fee": "0.03931", + "tid": 271337317602256, + "cloid": "0x00000000000000000000000384000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26937", + "sz": "695.0", + "side": "B", + "time": 1762185252387, + "startPosition": "-4022137.7999999998", + "dir": "Close Short", + "closedPnl": "369.6705", + "hash": "0xaebef67f9c7d21a7b038042ec45301020b720065377040795287a1d25b70fb92", + "oid": 221320437615, + "crossed": true, + "fee": "0.039314", + "tid": 461667499342570, + "cloid": "0x00000000000000000000000384000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26937", + "sz": "695.0", + "side": "B", + "time": 1762185252387, + "startPosition": "-4021442.7999999998", + "dir": "Close Short", + "closedPnl": "369.6705", + "hash": "0xaebef67f9c7d21a7b038042ec45301020b720065377040795287a1d25b70fb92", + "oid": 221320437615, + "crossed": true, + "fee": "0.039314", + "tid": 232084898476263, + "cloid": "0x00000000000000000000000384000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.2694", + "sz": "1631.1", + "side": "B", + "time": 1762185252387, + "startPosition": "-4020747.7999999998", + "dir": "Close Short", + "closedPnl": "867.533157", + "hash": "0xaebef67f9c7d21a7b038042ec45301020b720065377040795287a1d25b70fb92", + "oid": 221320437615, + "crossed": true, + "fee": "0.092277", + "tid": 87368124684467, + "cloid": "0x00000000000000000000000384000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.26", + "sz": "60.05", + "side": "B", + "time": 1762185253308, + "startPosition": "-240891.09", + "dir": "Close Short", + "closedPnl": "2014.815615", + "hash": "0xcf93933e0cd33e28d10d042ec4530a02027b0023a7d65cfa735c3e90cbd71813", + "oid": 221320449227, + "crossed": true, + "fee": "2.096621", + "tid": 79386650060519, + "cloid": "0x00000000000000000000000388000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.2", + "sz": "2.4641", + "side": "B", + "time": 1762185254866, + "startPosition": "-2256.4845", + "dir": "Close Short", + "closedPnl": "1274.876058", + "hash": "0x7daedb923f38cd367f28042ec4531c0212b70077da3bec08217786e4fe3ca721", + "oid": 221320473780, + "crossed": true, + "fee": "1.85934", + "tid": 182804507865299, + "cloid": "0x00000000000000000000000387000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.2", + "sz": "0.3164", + "side": "B", + "time": 1762185254866, + "startPosition": "-2254.0204", + "dir": "Close Short", + "closedPnl": "163.699032", + "hash": "0x7daedb923f38cd367f28042ec4531c0212b70077da3bec08217786e4fe3ca721", + "oid": 221320473780, + "crossed": true, + "fee": "0.238746", + "tid": 1027572092276909, + "cloid": "0x00000000000000000000000387000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "60.05", + "side": "B", + "time": 1762185255239, + "startPosition": "-240831.04", + "dir": "Close Short", + "closedPnl": "2017.818115", + "hash": "0xcc7075f417050780cdea042ec4532102036300d9b208265270392146d608e16b", + "oid": 221320483393, + "crossed": true, + "fee": "2.095991", + "tid": 423085207238381, + "cloid": "0x00000000000000000000000388000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26904", + "sz": "371.7", + "side": "A", + "time": 1762185256049, + "startPosition": "4040429.2960629999", + "dir": "Sell", + "closedPnl": "-197.98742156", + "hash": "0xe43de540b4727258e5b7042ec4532c0214db00264f75912a8806909373764c43", + "oid": 221320455987, + "crossed": false, + "fee": "0.00700015", + "tid": 1092445450872416, + "cloid": "0x10000000000000000000000475000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26904", + "sz": "323.3", + "side": "A", + "time": 1762185256707, + "startPosition": "4040057.5960630002", + "dir": "Sell", + "closedPnl": "-172.2069771", + "hash": "0xee4b2a29bead5ff9efc4042ec45335020e89000f59a07ecb9213d57c7da139e4", + "oid": 221320455987, + "crossed": false, + "fee": "0.00608864", + "tid": 535789029882064, + "cloid": "0x10000000000000000000000475000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.04", + "sz": "60.13", + "side": "B", + "time": 1762185257622, + "startPosition": "-240770.99", + "dir": "Close Short", + "closedPnl": "2030.728399", + "hash": "0x2af95c7bb0765d372c73042ec453420203ad00614b797c09cec207ce6f7a3721", + "oid": 221320539360, + "crossed": true, + "fee": "2.096636", + "tid": 136915242120681, + "cloid": "0x00000000000000000000000388000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.1", + "sz": "1.3812", + "side": "B", + "time": 1762185258479, + "startPosition": "-2253.704", + "dir": "Close Short", + "closedPnl": "718.886976", + "hash": "0x4ff24490db7b3a5f516c042ec4534e0204a10076767e5931f3baefe39a7f1449", + "oid": 221320552757, + "crossed": true, + "fee": "1.041315", + "tid": 399277611881597, + "cloid": "0x00000000000000000000000387000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.1", + "sz": "0.4267", + "side": "B", + "time": 1762185258479, + "startPosition": "-2252.3228", + "dir": "Close Short", + "closedPnl": "222.088816", + "hash": "0x4ff24490db7b3a5f516c042ec4534e0204a10076767e5931f3baefe39a7f1449", + "oid": 221320552757, + "crossed": true, + "fee": "0.321698", + "tid": 550387579173262, + "cloid": "0x00000000000000000000000387000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.1", + "sz": "0.9743", + "side": "B", + "time": 1762185258479, + "startPosition": "-2251.8961", + "dir": "Close Short", + "closedPnl": "507.103664", + "hash": "0x4ff24490db7b3a5f516c042ec4534e0204a10076767e5931f3baefe39a7f1449", + "oid": 221320552757, + "crossed": true, + "fee": "0.734545", + "tid": 816020398437588, + "cloid": "0x00000000000000000000000387000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.03", + "sz": "21.06", + "side": "B", + "time": 1762185259590, + "startPosition": "-240710.86", + "dir": "Close Short", + "closedPnl": "711.455238", + "hash": "0x92ce6b3d94948c189448042ec4535e020fb300232f97aaea3697169053986603", + "oid": 221320573632, + "crossed": true, + "fee": "0.734284", + "tid": 1114546905232975, + "cloid": "0x00000000000000000000000388000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.03", + "sz": "21.19", + "side": "B", + "time": 1762185259590, + "startPosition": "-240689.8", + "dir": "Close Short", + "closedPnl": "715.846937", + "hash": "0x92ce6b3d94948c189448042ec4535e020fb300232f97aaea3697169053986603", + "oid": 221320573632, + "crossed": true, + "fee": "0.738816", + "tid": 355522624726303, + "cloid": "0x00000000000000000000000388000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.03", + "sz": "17.88", + "side": "B", + "time": 1762185259590, + "startPosition": "-240668.61", + "dir": "Close Short", + "closedPnl": "604.027524", + "hash": "0x92ce6b3d94948c189448042ec4535e020fb300232f97aaea3697169053986603", + "oid": 221320573632, + "crossed": true, + "fee": "0.623409", + "tid": 221945633493309, + "cloid": "0x00000000000000000000000388000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.1", + "sz": "0.1114", + "side": "B", + "time": 1762185260053, + "startPosition": "-2250.9218", + "dir": "Close Short", + "closedPnl": "57.981472", + "hash": "0xfba5d97c04f659dcfd1f042ec4536402040b00619ff978af9f6e84cec3fa33c7", + "oid": 221320580873, + "crossed": true, + "fee": "0.083986", + "tid": 366074430201818, + "cloid": "0x00000000000000000000000387000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.1", + "sz": "0.0544", + "side": "B", + "time": 1762185260053, + "startPosition": "-2250.8104", + "dir": "Close Short", + "closedPnl": "28.314112", + "hash": "0xfba5d97c04f659dcfd1f042ec4536402040b00619ff978af9f6e84cec3fa33c7", + "oid": 221320580873, + "crossed": true, + "fee": "0.041013", + "tid": 596881312079104, + "cloid": "0x00000000000000000000000387000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.1", + "sz": "2.6174", + "side": "B", + "time": 1762185260053, + "startPosition": "-2250.756", + "dir": "Close Short", + "closedPnl": "1362.304352", + "hash": "0xfba5d97c04f659dcfd1f042ec4536402040b00619ff978af9f6e84cec3fa33c7", + "oid": 221320580873, + "crossed": true, + "fee": "1.973312", + "tid": 7521506550629, + "cloid": "0x00000000000000000000000387000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.01", + "sz": "0.24", + "side": "B", + "time": 1762185261505, + "startPosition": "-240650.73", + "dir": "Close Short", + "closedPnl": "8.112552", + "hash": "0x7eeb93a08a7baa1a8065042ec453760206490086257ec8ec22b43ef3497f8405", + "oid": 221320600436, + "crossed": true, + "fee": "0.008366", + "tid": 981753883283588, + "cloid": "0x00000000000000000000000388000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.01", + "sz": "59.9", + "side": "B", + "time": 1762185261505, + "startPosition": "-240650.49", + "dir": "Close Short", + "closedPnl": "2024.75777", + "hash": "0x7eeb93a08a7baa1a8065042ec453760206490086257ec8ec22b43ef3497f8405", + "oid": 221320600436, + "crossed": true, + "fee": "2.088239", + "tid": 111014497049761, + "cloid": "0x00000000000000000000000388000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.3", + "sz": "2.7829", + "side": "B", + "time": 1762185262352, + "startPosition": "-2248.1386", + "dir": "Close Short", + "closedPnl": "1447.887212", + "hash": "0x133f8cda6906d01914b9042ec4538002056800c00409eeebb708382d280aaa03", + "oid": 221320614869, + "crossed": true, + "fee": "2.098203", + "tid": 185225984505230, + "cloid": "0x00000000000000000000000387000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.97", + "sz": "6.84", + "side": "B", + "time": 1762185263678, + "startPosition": "-240590.59", + "dir": "Close Short", + "closedPnl": "231.481332", + "hash": "0xbe3bb2d26dbb05cbbfb5042ec4538f020a6000b808be249d62045e252cbedfb6", + "oid": 221320639727, + "crossed": true, + "fee": "0.238399", + "tid": 571472166361268, + "cloid": "0x00000000000000000000000388000063", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.97", + "sz": "53.3", + "side": "B", + "time": 1762185263678, + "startPosition": "-240583.75", + "dir": "Close Short", + "closedPnl": "1803.79459", + "hash": "0xbe3bb2d26dbb05cbbfb5042ec4538f020a6000b808be249d62045e252cbedfb6", + "oid": 221320639727, + "crossed": true, + "fee": "1.857702", + "tid": 945393627752650, + "cloid": "0x00000000000000000000000388000063", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.5", + "sz": "0.1029", + "side": "B", + "time": 1762185263860, + "startPosition": "-2245.3557", + "dir": "Close Short", + "closedPnl": "53.619132", + "hash": "0x03e69a1fbb20dd1d0560042ec4539302033b00055623fbefa7af45727a24b707", + "oid": 221320643235, + "crossed": true, + "fee": "0.077565", + "tid": 735440986365764, + "cloid": "0x00000000000000000000000387000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.5", + "sz": "0.1029", + "side": "B", + "time": 1762185263860, + "startPosition": "-2245.2528", + "dir": "Close Short", + "closedPnl": "53.619132", + "hash": "0x03e69a1fbb20dd1d0560042ec4539302033b00055623fbefa7af45727a24b707", + "oid": 221320643235, + "crossed": true, + "fee": "0.077565", + "tid": 734463025044226, + "cloid": "0x00000000000000000000000387000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.5", + "sz": "0.4022", + "side": "B", + "time": 1762185263860, + "startPosition": "-2245.1499", + "dir": "Close Short", + "closedPnl": "209.578376", + "hash": "0x03e69a1fbb20dd1d0560042ec4539302033b00055623fbefa7af45727a24b707", + "oid": 221320643235, + "crossed": true, + "fee": "0.303176", + "tid": 1094358782954464, + "cloid": "0x00000000000000000000000387000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.5", + "sz": "0.2178", + "side": "B", + "time": 1762185263860, + "startPosition": "-2244.7477", + "dir": "Close Short", + "closedPnl": "113.491224", + "hash": "0x03e69a1fbb20dd1d0560042ec4539302033b00055623fbefa7af45727a24b707", + "oid": 221320643235, + "crossed": true, + "fee": "0.164176", + "tid": 851336805095076, + "cloid": "0x00000000000000000000000387000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.6", + "sz": "1.9575", + "side": "B", + "time": 1762185263860, + "startPosition": "-2244.5299", + "dir": "Close Short", + "closedPnl": "1019.81835", + "hash": "0x03e69a1fbb20dd1d0560042ec4539302033b00055623fbefa7af45727a24b707", + "oid": 221320643235, + "crossed": true, + "fee": "1.475594", + "tid": 1016250859634763, + "cloid": "0x00000000000000000000000387000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.82", + "sz": "60.19", + "side": "B", + "time": 1762185265805, + "startPosition": "-240530.45", + "dir": "Close Short", + "closedPnl": "2045.996537", + "hash": "0xc65a3b4d4442bd28c7d3042ec453ad02019b0032df45dbfa6a22e6a003469713", + "oid": 221320679067, + "crossed": true, + "fee": "2.095948", + "tid": 221788810175684, + "cloid": "0x00000000000000000000000388000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.6", + "sz": "2.7837", + "side": "B", + "time": 1762185266391, + "startPosition": "-2242.5724", + "dir": "Close Short", + "closedPnl": "1450.252026", + "hash": "0x2c60ec1ffa879f712dda042ec453b4020a3c0005958abe43d0299772b98b795b", + "oid": 221320693991, + "crossed": true, + "fee": "2.098397", + "tid": 813787032110668, + "cloid": "0x00000000000000000000000387000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.82", + "sz": "60.2", + "side": "B", + "time": 1762185267334, + "startPosition": "-240470.26", + "dir": "Close Short", + "closedPnl": "2046.33646", + "hash": "0xe929a656155aac8ceaa3042ec453be020dbf003bb05dcb5e8cf251a8d45e8677", + "oid": 221320712677, + "crossed": true, + "fee": "2.096296", + "tid": 563885354734772, + "cloid": "0x00000000000000000000000388000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.6", + "sz": "2.7835", + "side": "B", + "time": 1762185268232, + "startPosition": "-2239.7887", + "dir": "Close Short", + "closedPnl": "1450.14783", + "hash": "0xf1839baf9a261d4cf2fd042ec453c7020aa7009535293c1f954c47025929f737", + "oid": 221320727924, + "crossed": true, + "fee": "2.098246", + "tid": 926834617599631, + "cloid": "0x00000000000000000000000387000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.88", + "sz": "3.27", + "side": "B", + "time": 1762185269294, + "startPosition": "-240410.06", + "dir": "Close Short", + "closedPnl": "110.958621", + "hash": "0x4c03f180a96c83f74d7d042ec453d5021af50066446fa2c9efcc9cd368605de1", + "oid": 221320754385, + "crossed": true, + "fee": "0.113909", + "tid": 274369693232495, + "cloid": "0x00000000000000000000000388000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.89", + "sz": "5.97", + "side": "B", + "time": 1762185269294, + "startPosition": "-240406.79", + "dir": "Close Short", + "closedPnl": "202.516131", + "hash": "0x4c03f180a96c83f74d7d042ec453d5021af50066446fa2c9efcc9cd368605de1", + "oid": 221320754385, + "crossed": true, + "fee": "0.207976", + "tid": 981678161914964, + "cloid": "0x00000000000000000000000388000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.92", + "sz": "51.0", + "side": "B", + "time": 1762185269294, + "startPosition": "-240400.82", + "dir": "Close Short", + "closedPnl": "1728.5073", + "hash": "0x4c03f180a96c83f74d7d042ec453d5021af50066446fa2c9efcc9cd368605de1", + "oid": 221320754385, + "crossed": true, + "fee": "1.777003", + "tid": 879327684085171, + "cloid": "0x00000000000000000000000388000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.1", + "sz": "2.7829", + "side": "B", + "time": 1762185271414, + "startPosition": "-2237.0052", + "dir": "Close Short", + "closedPnl": "1448.443792", + "hash": "0x288e530f7724168e2a08042ec453f002086a00f512273560cc56fe623627f078", + "oid": 221320790995, + "crossed": true, + "fee": "2.098086", + "tid": 767327970168829, + "cloid": "0x00000000000000000000000387000084", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.89", + "sz": "2.47", + "side": "B", + "time": 1762185271786, + "startPosition": "-240349.82", + "dir": "Close Short", + "closedPnl": "83.788081", + "hash": "0x25ced285fd29a85d2748042ec453f40208b6006b982cc72fc9977dd8bc2d8247", + "oid": 221320796625, + "crossed": true, + "fee": "0.086047", + "tid": 278377810907312, + "cloid": "0x00000000000000000000000388000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.89", + "sz": "57.71", + "side": "B", + "time": 1762185271786, + "startPosition": "-240347.35", + "dir": "Close Short", + "closedPnl": "1957.655933", + "hash": "0x25ced285fd29a85d2748042ec453f40208b6006b982cc72fc9977dd8bc2d8247", + "oid": 221320796625, + "crossed": true, + "fee": "2.010437", + "tid": 509984468095497, + "cloid": "0x00000000000000000000000388000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "2.7831", + "side": "B", + "time": 1762185273466, + "startPosition": "-2234.2223", + "dir": "Close Short", + "closedPnl": "1448.826198", + "hash": "0xcb63d6ef4756b287ccdd042ec4540a02076300d4e259d1596f2c8242065a8c72", + "oid": 221320825017, + "crossed": true, + "fee": "2.098179", + "tid": 1013247897706510, + "cloid": "0x00000000000000000000000387000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.86", + "sz": "60.18", + "side": "B", + "time": 1762185273466, + "startPosition": "-240289.64", + "dir": "Close Short", + "closedPnl": "2043.249414", + "hash": "0x87bc3997ac1e1fca8935042ec4540a02078f007d47113e9c2b84e4ea6b11f9b5", + "oid": 221320825047, + "crossed": true, + "fee": "2.096105", + "tid": 669885404130846, + "cloid": "0x00000000000000000000000388000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "2.7832", + "side": "B", + "time": 1762185275465, + "startPosition": "-2231.4392", + "dir": "Close Short", + "closedPnl": "1448.878256", + "hash": "0x111230aba2af8d05128b042ec454240207de00913da2abd7b4dadbfe61a366ef", + "oid": 221320862013, + "crossed": true, + "fee": "2.098254", + "tid": 1053153027347581, + "cloid": "0x00000000000000000000000387000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.8", + "sz": "60.2", + "side": "B", + "time": 1762185275664, + "startPosition": "-240229.46", + "dir": "Close Short", + "closedPnl": "2047.54046", + "hash": "0x33396cd86932aa0534b3042ec454260207a500be0435c8d7d702182b283683ef", + "oid": 221320865770, + "crossed": true, + "fee": "2.096043", + "tid": 431535110933047, + "cloid": "0x00000000000000000000000388000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.82", + "sz": "21.88", + "side": "B", + "time": 1762185278179, + "startPosition": "-240169.26", + "dir": "Close Short", + "closedPnl": "743.751524", + "hash": "0x2875c5f33930524c29ef042ec4544602040500d8d433711ecc3e7145f8342c36", + "oid": 221320901150, + "crossed": true, + "fee": "0.761909", + "tid": 283904127206130, + "cloid": "0x00000000000000000000000388000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.82", + "sz": "0.1", + "side": "B", + "time": 1762185278179, + "startPosition": "-240147.38", + "dir": "Close Short", + "closedPnl": "3.39923", + "hash": "0x2875c5f33930524c29ef042ec4544602040500d8d433711ecc3e7145f8342c36", + "oid": 221320901150, + "crossed": true, + "fee": "0.003482", + "tid": 889056301679033, + "cloid": "0x00000000000000000000000388000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.82", + "sz": "21.25", + "side": "B", + "time": 1762185278179, + "startPosition": "-240147.28", + "dir": "Close Short", + "closedPnl": "722.336375", + "hash": "0x2875c5f33930524c29ef042ec4544602040500d8d433711ecc3e7145f8342c36", + "oid": 221320901150, + "crossed": true, + "fee": "0.739971", + "tid": 309283846077551, + "cloid": "0x00000000000000000000000388000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.82", + "sz": "16.97", + "side": "B", + "time": 1762185278179, + "startPosition": "-240126.03", + "dir": "Close Short", + "closedPnl": "576.849331", + "hash": "0x2875c5f33930524c29ef042ec4544602040500d8d433711ecc3e7145f8342c36", + "oid": 221320901150, + "crossed": true, + "fee": "0.590932", + "tid": 717935844485847, + "cloid": "0x00000000000000000000000388000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "1.7014", + "side": "B", + "time": 1762185278179, + "startPosition": "-2228.656", + "dir": "Close Short", + "closedPnl": "885.714812", + "hash": "0x8e1cb3296c52d7438f96042ec45446020407000f0755f61531e55e7c2b56b12e", + "oid": 221320901152, + "crossed": true, + "fee": "1.282685", + "tid": 668567109242121, + "cloid": "0x00000000000000000000000387000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "1.0816", + "side": "B", + "time": 1762185278179, + "startPosition": "-2226.9546", + "dir": "Close Short", + "closedPnl": "563.059328", + "hash": "0x8e1cb3296c52d7438f96042ec45446020407000f0755f61531e55e7c2b56b12e", + "oid": 221320901152, + "crossed": true, + "fee": "0.815418", + "tid": 257165023278578, + "cloid": "0x00000000000000000000000387000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.8", + "sz": "60.2", + "side": "B", + "time": 1762185280166, + "startPosition": "-240109.06", + "dir": "Close Short", + "closedPnl": "2047.54046", + "hash": "0x4aa00f319f541c034c19042ec4545e02143f00173a573ad5ee68ba845e57f5ed", + "oid": 221320930007, + "crossed": true, + "fee": "2.096043", + "tid": 308037463802675, + "cloid": "0x00000000000000000000000388000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "2.7832", + "side": "B", + "time": 1762185280370, + "startPosition": "-2225.873", + "dir": "Close Short", + "closedPnl": "1448.878256", + "hash": "0xf0993782a312b740f212042ec4546102068c00683e15d6139461e2d56216912b", + "oid": 221320933633, + "crossed": true, + "fee": "2.098254", + "tid": 830455961067508, + "cloid": "0x00000000000000000000000387000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.69", + "sz": "60.24", + "side": "B", + "time": 1762185281909, + "startPosition": "-240048.86", + "dir": "Close Short", + "closedPnl": "2055.527352", + "hash": "0x9ceaa2a530fd8e199e64042ec4547402037b008acbf0aceb40b34df7eff16804", + "oid": 221320963132, + "crossed": true, + "fee": "2.096044", + "tid": 508020907067371, + "cloid": "0x00000000000000000000000388000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "0.009", + "side": "B", + "time": 1762185282250, + "startPosition": "-2223.0898", + "dir": "Close Short", + "closedPnl": "4.68522", + "hash": "0xe58cc0007d6b93ffe706042ec4547902080100e6186eb2d189556b533c6f6dea", + "oid": 221320969088, + "crossed": true, + "fee": "0.006785", + "tid": 611516977420057, + "cloid": "0x00000000000000000000000387000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "2.7742", + "side": "B", + "time": 1762185282250, + "startPosition": "-2223.0808", + "dir": "Close Short", + "closedPnl": "1444.193036", + "hash": "0xe58cc0007d6b93ffe706042ec4547902080100e6186eb2d189556b533c6f6dea", + "oid": 221320969088, + "crossed": true, + "fee": "2.091469", + "tid": 940007367891636, + "cloid": "0x00000000000000000000000387000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.6", + "sz": "2.7839", + "side": "B", + "time": 1762185283677, + "startPosition": "-2220.3066", + "dir": "Close Short", + "closedPnl": "1450.356222", + "hash": "0x3a7ed2af801651463bf8042ec4548c01c500ea951b197018de477e023f1a2b30", + "oid": 221320994131, + "crossed": true, + "fee": "2.098548", + "tid": 103321503385680, + "cloid": "0x00000000000000000000000387000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.7", + "sz": "2.23", + "side": "B", + "time": 1762185283823, + "startPosition": "-239988.62", + "dir": "Close Short", + "closedPnl": "76.070429", + "hash": "0x8880e7d04fe2868989fa042ec4548e020a4000b5eae5a55b2c4993230ee66074", + "oid": 221320997101, + "crossed": true, + "fee": "0.077597", + "tid": 52648432542829, + "cloid": "0x00000000000000000000000388000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.7", + "sz": "12.0", + "side": "B", + "time": 1762185283823, + "startPosition": "-239986.39", + "dir": "Close Short", + "closedPnl": "409.3476", + "hash": "0x8880e7d04fe2868989fa042ec4548e020a4000b5eae5a55b2c4993230ee66074", + "oid": 221320997101, + "crossed": true, + "fee": "0.417563", + "tid": 571030745311753, + "cloid": "0x00000000000000000000000388000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.71", + "sz": "0.1", + "side": "B", + "time": 1762185283823, + "startPosition": "-239974.39", + "dir": "Close Short", + "closedPnl": "3.41023", + "hash": "0x8880e7d04fe2868989fa042ec4548e020a4000b5eae5a55b2c4993230ee66074", + "oid": 221320997101, + "crossed": true, + "fee": "0.003479", + "tid": 610069731662557, + "cloid": "0x00000000000000000000000388000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.71", + "sz": "45.94", + "side": "B", + "time": 1762185283823, + "startPosition": "-239974.29", + "dir": "Close Short", + "closedPnl": "1566.659662", + "hash": "0x8880e7d04fe2868989fa042ec4548e020a4000b5eae5a55b2c4993230ee66074", + "oid": 221320997101, + "crossed": true, + "fee": "1.59867", + "tid": 562779910659486, + "cloid": "0x00000000000000000000000388000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.8", + "sz": "2.5083", + "side": "B", + "time": 1762185285803, + "startPosition": "-2217.5227", + "dir": "Close Short", + "closedPnl": "1306.272474", + "hash": "0x8fc93b9e2fe38b649142042ec454aa0206b40083cae6aa363391e6f0eee7654f", + "oid": 221321027744, + "crossed": true, + "fee": "1.890902", + "tid": 1016179064105181, + "cloid": "0x00000000000000000000000387000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.8", + "sz": "0.2747", + "side": "B", + "time": 1762185285803, + "startPosition": "-2215.0144", + "dir": "Close Short", + "closedPnl": "143.058266", + "hash": "0x8fc93b9e2fe38b649142042ec454aa0206b40083cae6aa363391e6f0eee7654f", + "oid": 221321027744, + "crossed": true, + "fee": "0.207084", + "tid": 126109184729292, + "cloid": "0x00000000000000000000000387000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.7", + "sz": "60.25", + "side": "B", + "time": 1762185286006, + "startPosition": "-239928.35", + "dir": "Close Short", + "closedPnl": "2055.266075", + "hash": "0xf47b93cb0901eb97f5f5042ec454ad0202c700b0a4050a6a98443f1dc805c582", + "oid": 221321030398, + "crossed": true, + "fee": "2.096519", + "tid": 945290888174859, + "cloid": "0x00000000000000000000000388000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.69", + "sz": "60.25", + "side": "B", + "time": 1762185288117, + "startPosition": "-239868.1", + "dir": "Close Short", + "closedPnl": "2055.868575", + "hash": "0xccf7f4119c6f148dce71042ec454c40202ba00f73762335f70c09f645b62ee78", + "oid": 221321063651, + "crossed": true, + "fee": "2.096392", + "tid": 731872918487264, + "cloid": "0x00000000000000000000000388000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.8", + "sz": "2.7834", + "side": "B", + "time": 1762185288373, + "startPosition": "-2214.7397", + "dir": "Close Short", + "closedPnl": "1449.539052", + "hash": "0xd30f1736a5bd4967d488042ec454c8020803001c40b0683976d7c28964b12352", + "oid": 221321069686, + "crossed": true, + "fee": "2.098288", + "tid": 558305534020035, + "cloid": "0x00000000000000000000000387000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.8", + "sz": "2.7833", + "side": "B", + "time": 1762185290544, + "startPosition": "-2211.9563", + "dir": "Close Short", + "closedPnl": "1452.270274", + "hash": "0x88d6f90a4110e08a8a50042ec454e302056200efdc13ff5c2c9fa45d0014ba75", + "oid": 221321106328, + "crossed": true, + "fee": "2.097628", + "tid": 473974011937489, + "cloid": "0x00000000000000000000000387000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.59", + "sz": "10.26", + "side": "B", + "time": 1762185290544, + "startPosition": "-239807.85", + "dir": "Close Short", + "closedPnl": "351.120798", + "hash": "0xa1515cdb8dc4a7fda2cb042ec454e302056500c128c7c6cf451a082e4cc881e8", + "oid": 221321106331, + "crossed": true, + "fee": "0.35678", + "tid": 369945758178765, + "cloid": "0x00000000000000000000000388000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.59", + "sz": "10.17", + "side": "B", + "time": 1762185290544, + "startPosition": "-239797.59", + "dir": "Close Short", + "closedPnl": "348.040791", + "hash": "0xa1515cdb8dc4a7fda2cb042ec454e302056500c128c7c6cf451a082e4cc881e8", + "oid": 221321106331, + "crossed": true, + "fee": "0.35365", + "tid": 470989576675484, + "cloid": "0x00000000000000000000000388000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.59", + "sz": "39.85", + "side": "B", + "time": 1762185290544, + "startPosition": "-239787.42", + "dir": "Close Short", + "closedPnl": "1363.758655", + "hash": "0xa1515cdb8dc4a7fda2cb042ec454e302056500c128c7c6cf451a082e4cc881e8", + "oid": 221321106331, + "crossed": true, + "fee": "1.385739", + "tid": 362645962027811, + "cloid": "0x00000000000000000000000388000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.49", + "sz": "12.08", + "side": "B", + "time": 1762185292238, + "startPosition": "-239747.57", + "dir": "Close Short", + "closedPnl": "414.613384", + "hash": "0x2d4f388863b9b6dd2ec8042ec454fa020669006dfebcd5afd117e3db22bd90c7", + "oid": 221321133659, + "crossed": true, + "fee": "0.419815", + "tid": 263015962763250, + "cloid": "0x00000000000000000000000388000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.49", + "sz": "12.08", + "side": "B", + "time": 1762185292238, + "startPosition": "-239735.49", + "dir": "Close Short", + "closedPnl": "414.613384", + "hash": "0x2d4f388863b9b6dd2ec8042ec454fa020669006dfebcd5afd117e3db22bd90c7", + "oid": 221321133659, + "crossed": true, + "fee": "0.419815", + "tid": 1095686528871497, + "cloid": "0x00000000000000000000000388000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.49", + "sz": "36.15", + "side": "B", + "time": 1762185292238, + "startPosition": "-239723.41", + "dir": "Close Short", + "closedPnl": "1240.751145", + "hash": "0x2d4f388863b9b6dd2ec8042ec454fa020669006dfebcd5afd117e3db22bd90c7", + "oid": 221321133659, + "crossed": true, + "fee": "1.256317", + "tid": 1048255880202323, + "cloid": "0x00000000000000000000000388000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.8", + "sz": "2.7834", + "side": "B", + "time": 1762185292238, + "startPosition": "-2209.173", + "dir": "Close Short", + "closedPnl": "1449.539052", + "hash": "0x45c99c59b06d7e504743042ec454fa02066c003f4b609d22e99247ac6f61583a", + "oid": 221321133661, + "crossed": true, + "fee": "2.098288", + "tid": 398369277114959, + "cloid": "0x00000000000000000000000387000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.57", + "sz": "12.0", + "side": "B", + "time": 1762185293994, + "startPosition": "-239687.26", + "dir": "Close Short", + "closedPnl": "410.9076", + "hash": "0xbb468ea581b96d7ebcc0042ec4550e020fe5008b1cbc8c505f0f39f840bd4769", + "oid": 221321169254, + "crossed": true, + "fee": "0.417236", + "tid": 162062988653666, + "cloid": "0x00000000000000000000000388000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.59", + "sz": "0.1", + "side": "B", + "time": 1762185293994, + "startPosition": "-239675.26", + "dir": "Close Short", + "closedPnl": "3.42223", + "hash": "0xbb468ea581b96d7ebcc0042ec4550e020fe5008b1cbc8c505f0f39f840bd4769", + "oid": 221321169254, + "crossed": true, + "fee": "0.003477", + "tid": 161648913697426, + "cloid": "0x00000000000000000000000388000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.59", + "sz": "12.0", + "side": "B", + "time": 1762185293994, + "startPosition": "-239675.16", + "dir": "Close Short", + "closedPnl": "410.6676", + "hash": "0xbb468ea581b96d7ebcc0042ec4550e020fe5008b1cbc8c505f0f39f840bd4769", + "oid": 221321169254, + "crossed": true, + "fee": "0.417286", + "tid": 484383826512241, + "cloid": "0x00000000000000000000000388000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.6", + "sz": "0.18", + "side": "B", + "time": 1762185293994, + "startPosition": "-239663.16", + "dir": "Close Short", + "closedPnl": "6.158214", + "hash": "0xbb468ea581b96d7ebcc0042ec4550e020fe5008b1cbc8c505f0f39f840bd4769", + "oid": 221321169254, + "crossed": true, + "fee": "0.006259", + "tid": 963938796098080, + "cloid": "0x00000000000000000000000388000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.6", + "sz": "1.05", + "side": "B", + "time": 1762185293994, + "startPosition": "-239662.98", + "dir": "Close Short", + "closedPnl": "35.922915", + "hash": "0xbb468ea581b96d7ebcc0042ec4550e020fe5008b1cbc8c505f0f39f840bd4769", + "oid": 221321169254, + "crossed": true, + "fee": "0.036514", + "tid": 291613661620915, + "cloid": "0x00000000000000000000000388000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.61", + "sz": "0.1", + "side": "B", + "time": 1762185293994, + "startPosition": "-239661.93", + "dir": "Close Short", + "closedPnl": "3.42023", + "hash": "0xbb468ea581b96d7ebcc0042ec4550e020fe5008b1cbc8c505f0f39f840bd4769", + "oid": 221321169254, + "crossed": true, + "fee": "0.003477", + "tid": 2716113612438, + "cloid": "0x00000000000000000000000388000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.61", + "sz": "12.0", + "side": "B", + "time": 1762185293994, + "startPosition": "-239661.83", + "dir": "Close Short", + "closedPnl": "410.4276", + "hash": "0xbb468ea581b96d7ebcc0042ec4550e020fe5008b1cbc8c505f0f39f840bd4769", + "oid": 221321169254, + "crossed": true, + "fee": "0.417337", + "tid": 416107686894107, + "cloid": "0x00000000000000000000000388000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.64", + "sz": "22.89", + "side": "B", + "time": 1762185293994, + "startPosition": "-239649.83", + "dir": "Close Short", + "closedPnl": "782.203947", + "hash": "0xbb468ea581b96d7ebcc0042ec4550e020fe5008b1cbc8c505f0f39f840bd4769", + "oid": 221321169254, + "crossed": true, + "fee": "0.796214", + "tid": 112566546617740, + "cloid": "0x00000000000000000000000388000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.2", + "sz": "2.7839", + "side": "B", + "time": 1762185295702, + "startPosition": "-2206.3896", + "dir": "Close Short", + "closedPnl": "1448.685882", + "hash": "0x58738db677bff2e159ed042ec4552302091c009c12b311b3fc3c390936b3cccb", + "oid": 221321196221, + "crossed": true, + "fee": "2.098899", + "tid": 95841015639959, + "cloid": "0x00000000000000000000000387000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.58", + "sz": "60.28", + "side": "B", + "time": 1762185296208, + "startPosition": "-239626.94", + "dir": "Close Short", + "closedPnl": "2063.523044", + "hash": "0xbc7073bb51d7cf2dbdea042ec4552a0208ab00a0ecdaedff60391f0e10dba918", + "oid": 221321205821, + "crossed": true, + "fee": "2.096044", + "tid": 485327300276686, + "cloid": "0x00000000000000000000000388000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.2", + "sz": "2.7838", + "side": "B", + "time": 1762185297251, + "startPosition": "-2203.6057", + "dir": "Close Short", + "closedPnl": "1451.417644", + "hash": "0x6009df1f5ebe598b6183042ec455380203e30004f9b1785d03d28a721db23376", + "oid": 221321226154, + "crossed": true, + "fee": "2.098239", + "tid": 869948023636568, + "cloid": "0x00000000000000000000000387000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.49", + "sz": "60.33", + "side": "B", + "time": 1762185297901, + "startPosition": "-239566.66", + "dir": "Close Short", + "closedPnl": "2070.664359", + "hash": "0x30731dde3d24776531ec042ec455430203eb00c3d8279637d43bc930fc28514f", + "oid": 221321241913, + "crossed": true, + "fee": "2.096642", + "tid": 29639655882348, + "cloid": "0x00000000000000000000000388000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.1", + "sz": "0.3532", + "side": "B", + "time": 1762185299186, + "startPosition": "-2200.8219", + "dir": "Close Short", + "closedPnl": "184.539936", + "hash": "0x68dd529af68ecc336a57042ec4555202036600809181eb050ca5fdedb582a61e", + "oid": 221321267079, + "crossed": true, + "fee": "0.266136", + "tid": 90501566000758, + "cloid": "0x00000000000000000000000387000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.1", + "sz": "2.4314", + "side": "B", + "time": 1762185299186, + "startPosition": "-2200.4687", + "dir": "Close Short", + "closedPnl": "1270.357872", + "hash": "0x68dd529af68ecc336a57042ec4555202036600809181eb050ca5fdedb582a61e", + "oid": 221321267079, + "crossed": true, + "fee": "1.832062", + "tid": 986777215278686, + "cloid": "0x00000000000000000000000387000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.49", + "sz": "0.96", + "side": "B", + "time": 1762185299597, + "startPosition": "-239506.33", + "dir": "Close Short", + "closedPnl": "32.949408", + "hash": "0x7de98826930847447f63042ec4555602115a000c2e0b661621b23379520c212f", + "oid": 221321276435, + "crossed": true, + "fee": "0.033362", + "tid": 926646443514363, + "cloid": "0x00000000000000000000000388000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.49", + "sz": "6.75", + "side": "B", + "time": 1762185299597, + "startPosition": "-239505.37", + "dir": "Close Short", + "closedPnl": "231.675525", + "hash": "0x7de98826930847447f63042ec4555602115a000c2e0b661621b23379520c212f", + "oid": 221321276435, + "crossed": true, + "fee": "0.234582", + "tid": 681097633812212, + "cloid": "0x00000000000000000000000388000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.5", + "sz": "13.78", + "side": "B", + "time": 1762185299597, + "startPosition": "-239498.62", + "dir": "Close Short", + "closedPnl": "472.823494", + "hash": "0x7de98826930847447f63042ec4555602115a000c2e0b661621b23379520c212f", + "oid": 221321276435, + "crossed": true, + "fee": "0.478923", + "tid": 535288982514526, + "cloid": "0x00000000000000000000000388000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.51", + "sz": "0.1", + "side": "B", + "time": 1762185299597, + "startPosition": "-239484.84", + "dir": "Close Short", + "closedPnl": "3.43023", + "hash": "0x7de98826930847447f63042ec4555602115a000c2e0b661621b23379520c212f", + "oid": 221321276435, + "crossed": true, + "fee": "0.003475", + "tid": 1009111444835541, + "cloid": "0x00000000000000000000000388000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.51", + "sz": "22.73", + "side": "B", + "time": 1762185299597, + "startPosition": "-239484.74", + "dir": "Close Short", + "closedPnl": "779.691279", + "hash": "0x7de98826930847447f63042ec4555602115a000c2e0b661621b23379520c212f", + "oid": 221321276435, + "crossed": true, + "fee": "0.790028", + "tid": 372560835955072, + "cloid": "0x00000000000000000000000388000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.54", + "sz": "0.18", + "side": "B", + "time": 1762185299597, + "startPosition": "-239462.01", + "dir": "Close Short", + "closedPnl": "6.169014", + "hash": "0x7de98826930847447f63042ec4555602115a000c2e0b661621b23379520c212f", + "oid": 221321276435, + "crossed": true, + "fee": "0.006257", + "tid": 909996429734332, + "cloid": "0x00000000000000000000000388000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.55", + "sz": "15.82", + "side": "B", + "time": 1762185299597, + "startPosition": "-239461.83", + "dir": "Close Short", + "closedPnl": "542.029586", + "hash": "0x7de98826930847447f63042ec4555602115a000c2e0b661621b23379520c212f", + "oid": 221321276435, + "crossed": true, + "fee": "0.54999", + "tid": 463476326927026, + "cloid": "0x00000000000000000000000388000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.1", + "sz": "0.0055", + "side": "B", + "time": 1762185301015, + "startPosition": "-2198.0373", + "dir": "Close Short", + "closedPnl": "2.87364", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.004144", + "tid": 957078445481108, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.2", + "sz": "0.1355", + "side": "B", + "time": 1762185301015, + "startPosition": "-2198.0318", + "dir": "Close Short", + "closedPnl": "70.78249", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.102102", + "tid": 302009472220603, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.2", + "sz": "0.1355", + "side": "B", + "time": 1762185301015, + "startPosition": "-2197.8963", + "dir": "Close Short", + "closedPnl": "70.78249", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.102102", + "tid": 1097253470206592, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.2", + "sz": "0.1355", + "side": "B", + "time": 1762185301015, + "startPosition": "-2197.7608", + "dir": "Close Short", + "closedPnl": "70.78249", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.102102", + "tid": 652609469090904, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.2", + "sz": "0.1355", + "side": "B", + "time": 1762185301015, + "startPosition": "-2197.6253", + "dir": "Close Short", + "closedPnl": "70.78249", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.102102", + "tid": 46656447776236, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.2", + "sz": "0.1355", + "side": "B", + "time": 1762185301015, + "startPosition": "-2197.4898", + "dir": "Close Short", + "closedPnl": "70.78249", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.102102", + "tid": 684577280365280, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.2", + "sz": "0.1355", + "side": "B", + "time": 1762185301015, + "startPosition": "-2197.3543", + "dir": "Close Short", + "closedPnl": "70.78249", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.102102", + "tid": 171333276923678, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.2", + "sz": "0.0083", + "side": "B", + "time": 1762185301015, + "startPosition": "-2197.2188", + "dir": "Close Short", + "closedPnl": "4.335754", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.006254", + "tid": 530178516505010, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.8", + "sz": "0.1393", + "side": "B", + "time": 1762185301015, + "startPosition": "-2197.2105", + "dir": "Close Short", + "closedPnl": "72.683954", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.104983", + "tid": 426231393714017, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.9", + "sz": "0.0083", + "side": "B", + "time": 1762185301015, + "startPosition": "-2197.0712", + "dir": "Close Short", + "closedPnl": "4.329944", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.006255", + "tid": 714885894091585, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.3", + "sz": "1.8098", + "side": "B", + "time": 1762185301015, + "startPosition": "-2197.0629", + "dir": "Close Short", + "closedPnl": "943.412544", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "1.364142", + "tid": 149106729717779, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.56", + "sz": "0.96", + "side": "B", + "time": 1762185301732, + "startPosition": "-239446.01", + "dir": "Close Short", + "closedPnl": "32.882208", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.033376", + "tid": 944398068610710, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.57", + "sz": "0.1", + "side": "B", + "time": 1762185301732, + "startPosition": "-239445.05", + "dir": "Close Short", + "closedPnl": "3.42423", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.003476", + "tid": 147946560907192, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.58", + "sz": "3.02", + "side": "B", + "time": 1762185301732, + "startPosition": "-239444.95", + "dir": "Close Short", + "closedPnl": "103.381546", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.10501", + "tid": 1043206077801184, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.6", + "sz": "0.1", + "side": "B", + "time": 1762185301732, + "startPosition": "-239441.93", + "dir": "Close Short", + "closedPnl": "3.42123", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.003477", + "tid": 946812436777369, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.6", + "sz": "0.18", + "side": "B", + "time": 1762185301732, + "startPosition": "-239441.83", + "dir": "Close Short", + "closedPnl": "6.158214", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.006259", + "tid": 135731814389709, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.62", + "sz": "6.63", + "side": "B", + "time": 1762185301732, + "startPosition": "-239441.65", + "dir": "Close Short", + "closedPnl": "226.694949", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.230592", + "tid": 501609505101342, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.64", + "sz": "0.18", + "side": "B", + "time": 1762185301732, + "startPosition": "-239435.02", + "dir": "Close Short", + "closedPnl": "6.151014", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.006261", + "tid": 961072868561693, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.64", + "sz": "12.0", + "side": "B", + "time": 1762185301732, + "startPosition": "-239434.84", + "dir": "Close Short", + "closedPnl": "410.0676", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.417412", + "tid": 79679477226747, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.65", + "sz": "0.29", + "side": "B", + "time": 1762185301732, + "startPosition": "-239422.84", + "dir": "Close Short", + "closedPnl": "9.907067", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.010088", + "tid": 1036596202774728, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.66", + "sz": "32.75", + "side": "B", + "time": 1762185301732, + "startPosition": "-239422.55", + "dir": "Close Short", + "closedPnl": "1118.487825", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "1.139326", + "tid": 930335083651247, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.66", + "sz": "4.1", + "side": "B", + "time": 1762185301732, + "startPosition": "-239389.8", + "dir": "Close Short", + "closedPnl": "140.02443", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.142633", + "tid": 397356204217803, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.68", + "sz": "1.77", + "side": "B", + "time": 1762185303598, + "startPosition": "-239385.7", + "dir": "Close Short", + "closedPnl": "60.414171", + "hash": "0x5924358edab813ec5a9d042ec4558e020975007475bb32befcece0e199bbedd6", + "oid": 221321344433, + "crossed": true, + "fee": "0.061583", + "tid": 796021566317921, + "cloid": "0x00000000000000000000000388000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.68", + "sz": "11.2", + "side": "B", + "time": 1762185303598, + "startPosition": "-239383.93", + "dir": "Close Short", + "closedPnl": "382.28176", + "hash": "0x5924358edab813ec5a9d042ec4558e020975007475bb32befcece0e199bbedd6", + "oid": 221321344433, + "crossed": true, + "fee": "0.389679", + "tid": 4420877604716, + "cloid": "0x00000000000000000000000388000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.68", + "sz": "8.28", + "side": "B", + "time": 1762185303598, + "startPosition": "-239372.73", + "dir": "Close Short", + "closedPnl": "282.615444", + "hash": "0x5924358edab813ec5a9d042ec4558e020975007475bb32befcece0e199bbedd6", + "oid": 221321344433, + "crossed": true, + "fee": "0.288084", + "tid": 414895481736008, + "cloid": "0x00000000000000000000000388000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.68", + "sz": "0.1", + "side": "B", + "time": 1762185303598, + "startPosition": "-239364.45", + "dir": "Close Short", + "closedPnl": "3.41323", + "hash": "0x5924358edab813ec5a9d042ec4558e020975007475bb32befcece0e199bbedd6", + "oid": 221321344433, + "crossed": true, + "fee": "0.003479", + "tid": 283462411324129, + "cloid": "0x00000000000000000000000388000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.68", + "sz": "12.07", + "side": "B", + "time": 1762185303598, + "startPosition": "-239364.35", + "dir": "Close Short", + "closedPnl": "411.976861", + "hash": "0x5924358edab813ec5a9d042ec4558e020975007475bb32befcece0e199bbedd6", + "oid": 221321344433, + "crossed": true, + "fee": "0.419949", + "tid": 729151789034977, + "cloid": "0x00000000000000000000000388000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.69", + "sz": "26.83", + "side": "B", + "time": 1762185303598, + "startPosition": "-239352.28", + "dir": "Close Short", + "closedPnl": "915.501309", + "hash": "0x5924358edab813ec5a9d042ec4558e020975007475bb32befcece0e199bbedd6", + "oid": 221321344433, + "crossed": true, + "fee": "0.933547", + "tid": 140696225184430, + "cloid": "0x00000000000000000000000388000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.555", + "side": "B", + "time": 1762185303598, + "startPosition": "-2195.2531", + "dir": "Close Short", + "closedPnl": "289.6434", + "hash": "0x0bf7ac29f44956680d71042ec4558e020976000f8f4c753aafc0577cb34d3052", + "oid": 221321344434, + "crossed": true, + "fee": "0.418262", + "tid": 457316173114811, + "cloid": "0x00000000000000000000000387000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.6625", + "side": "B", + "time": 1762185303598, + "startPosition": "-2194.6981", + "dir": "Close Short", + "closedPnl": "345.7455", + "hash": "0x0bf7ac29f44956680d71042ec4558e020976000f8f4c753aafc0577cb34d3052", + "oid": 221321344434, + "crossed": true, + "fee": "0.499277", + "tid": 341448069008574, + "cloid": "0x00000000000000000000000387000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.0965", + "side": "B", + "time": 1762185303598, + "startPosition": "-2194.0356", + "dir": "Close Short", + "closedPnl": "50.36142", + "hash": "0x0bf7ac29f44956680d71042ec4558e020976000f8f4c753aafc0577cb34d3052", + "oid": 221321344434, + "crossed": true, + "fee": "0.072725", + "tid": 507674702235962, + "cloid": "0x00000000000000000000000387000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.0921", + "side": "B", + "time": 1762185303598, + "startPosition": "-2193.9391", + "dir": "Close Short", + "closedPnl": "48.065148", + "hash": "0x0bf7ac29f44956680d71042ec4558e020976000f8f4c753aafc0577cb34d3052", + "oid": 221321344434, + "crossed": true, + "fee": "0.069409", + "tid": 581755806683196, + "cloid": "0x00000000000000000000000387000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.0921", + "side": "B", + "time": 1762185303598, + "startPosition": "-2193.847", + "dir": "Close Short", + "closedPnl": "48.065148", + "hash": "0x0bf7ac29f44956680d71042ec4558e020976000f8f4c753aafc0577cb34d3052", + "oid": 221321344434, + "crossed": true, + "fee": "0.069409", + "tid": 784287611571104, + "cloid": "0x00000000000000000000000387000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "1.286", + "side": "B", + "time": 1762185303598, + "startPosition": "-2193.7549", + "dir": "Close Short", + "closedPnl": "671.13768", + "hash": "0x0bf7ac29f44956680d71042ec4558e020976000f8f4c753aafc0577cb34d3052", + "oid": 221321344434, + "crossed": true, + "fee": "0.969164", + "tid": 1115555119258527, + "cloid": "0x00000000000000000000000387000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26906", + "sz": "695.0", + "side": "A", + "time": 1762185306082, + "startPosition": "4039734.2960629999", + "dir": "Sell", + "closedPnl": "-370.18049867", + "hash": "0xefa51e4421132adaf11e042ec455a90205040029bc1649ac936dc996e01704c5", + "oid": 221320455988, + "crossed": false, + "fee": "0.01308976", + "tid": 227052230213269, + "cloid": "0x10000000000000000000000475000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26906", + "sz": "695.0", + "side": "A", + "time": 1762185306082, + "startPosition": "4039039.2960629999", + "dir": "Sell", + "closedPnl": "-370.18049867", + "hash": "0xefa51e4421132adaf11e042ec455a90205040029bc1649ac936dc996e01704c5", + "oid": 221320455989, + "crossed": false, + "fee": "0.01308976", + "tid": 686718126356841, + "cloid": "0x10000000000000000000000475000044", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26908", + "sz": "1503.3", + "side": "A", + "time": 1762185306082, + "startPosition": "4038344.2960629999", + "dir": "Sell", + "closedPnl": "-800.67834213", + "hash": "0xefa51e4421132adaf11e042ec455a90205040029bc1649ac936dc996e01704c5", + "oid": 221320454338, + "crossed": false, + "fee": "0.02831555", + "tid": 138089228767002, + "cloid": "0x10000000000000000000000475000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26908", + "sz": "127.8", + "side": "A", + "time": 1762185306184, + "startPosition": "4036840.9960630001", + "dir": "Sell", + "closedPnl": "-68.06804505", + "hash": "0x96d1558eccaa50f6984b042ec455aa021160007467ad6fc83a9a00e18bae2ae1", + "oid": 221320454338, + "crossed": false, + "fee": "0.00240718", + "tid": 388581414164037, + "cloid": "0x10000000000000000000000475000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.1", + "sz": "0.1587", + "side": "B", + "time": 1762185306975, + "startPosition": "-2192.4689", + "dir": "Close Short", + "closedPnl": "82.124076", + "hash": "0x908c4e62a6b5ae259206042ec455b3021abc004841b8ccf73454f9b565b98810", + "oid": 221321426074, + "crossed": true, + "fee": "0.119747", + "tid": 189821528382560, + "cloid": "0x00000000000000000000000387000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.1", + "sz": "0.118", + "side": "B", + "time": 1762185306975, + "startPosition": "-2192.3102", + "dir": "Close Short", + "closedPnl": "61.06264", + "hash": "0x908c4e62a6b5ae259206042ec455b3021abc004841b8ccf73454f9b565b98810", + "oid": 221321426074, + "crossed": true, + "fee": "0.089037", + "tid": 546150805694028, + "cloid": "0x00000000000000000000000387000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.1", + "sz": "2.5062", + "side": "B", + "time": 1762185306975, + "startPosition": "-2192.1922", + "dir": "Close Short", + "closedPnl": "1296.908376", + "hash": "0x908c4e62a6b5ae259206042ec455b3021abc004841b8ccf73454f9b565b98810", + "oid": 221321426074, + "crossed": true, + "fee": "1.891055", + "tid": 996205399751343, + "cloid": "0x00000000000000000000000387000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.5", + "sz": "0.8334", + "side": "B", + "time": 1762185309636, + "startPosition": "-2189.686", + "dir": "Close Short", + "closedPnl": "431.767872", + "hash": "0x4e1f6da5ad6ba3ed4f99042ec455d2020884008b486ec2bff1e818f86c6f7dd7", + "oid": 221321462265, + "crossed": true, + "fee": "0.628737", + "tid": 960210594630038, + "cloid": "0x00000000000000000000000387000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.5", + "sz": "0.585", + "side": "B", + "time": 1762185309636, + "startPosition": "-2188.8526", + "dir": "Close Short", + "closedPnl": "303.0768", + "hash": "0x4e1f6da5ad6ba3ed4f99042ec455d2020884008b486ec2bff1e818f86c6f7dd7", + "oid": 221321462265, + "crossed": true, + "fee": "0.441338", + "tid": 923515266902988, + "cloid": "0x00000000000000000000000387000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.5", + "sz": "0.1123", + "side": "B", + "time": 1762185309636, + "startPosition": "-2188.2676", + "dir": "Close Short", + "closedPnl": "58.180384", + "hash": "0x4e1f6da5ad6ba3ed4f99042ec455d2020884008b486ec2bff1e818f86c6f7dd7", + "oid": 221321462265, + "crossed": true, + "fee": "0.084721", + "tid": 528318009716620, + "cloid": "0x00000000000000000000000387000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.5", + "sz": "0.9114", + "side": "B", + "time": 1762185309636, + "startPosition": "-2188.1553", + "dir": "Close Short", + "closedPnl": "472.178112", + "hash": "0x4e1f6da5ad6ba3ed4f99042ec455d2020884008b486ec2bff1e818f86c6f7dd7", + "oid": 221321462265, + "crossed": true, + "fee": "0.687582", + "tid": 1023251712981112, + "cloid": "0x00000000000000000000000387000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.5", + "sz": "0.3388", + "side": "B", + "time": 1762185309636, + "startPosition": "-2187.2439", + "dir": "Close Short", + "closedPnl": "175.525504", + "hash": "0x4e1f6da5ad6ba3ed4f99042ec455d2020884008b486ec2bff1e818f86c6f7dd7", + "oid": 221321462265, + "crossed": true, + "fee": "0.255599", + "tid": 244733365747277, + "cloid": "0x00000000000000000000000387000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.16", + "sz": "59.91", + "side": "B", + "time": 1762185310573, + "startPosition": "-239325.45", + "dir": "Close Short", + "closedPnl": "2016.109293", + "hash": "0xcbc3aafac0626797cd3d042ec455db02094700e05b6586696f8c564d7f664182", + "oid": 221321483374, + "crossed": true, + "fee": "2.090475", + "tid": 794706857528126, + "cloid": "0x00000000000000000000000388000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.16", + "sz": "0.32", + "side": "B", + "time": 1762185310573, + "startPosition": "-239265.54", + "dir": "Close Short", + "closedPnl": "10.768736", + "hash": "0xcbc3aafac0626797cd3d042ec455db02094700e05b6586696f8c564d7f664182", + "oid": 221321483374, + "crossed": true, + "fee": "0.011165", + "tid": 44039944611388, + "cloid": "0x00000000000000000000000388000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.6", + "sz": "2.4948", + "side": "B", + "time": 1762185311877, + "startPosition": "-2186.9051", + "dir": "Close Short", + "closedPnl": "1292.256504", + "hash": "0x95583e1eb35ab17496d1042ec455ea021ac300044e5dd0463920e971725e8b5f", + "oid": 221321506637, + "crossed": true, + "fee": "1.882191", + "tid": 84249450794149, + "cloid": "0x00000000000000000000000387000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.6", + "sz": "0.2853", + "side": "B", + "time": 1762185311877, + "startPosition": "-2184.4103", + "dir": "Close Short", + "closedPnl": "147.779694", + "hash": "0x95583e1eb35ab17496d1042ec455ea021ac300044e5dd0463920e971725e8b5f", + "oid": 221321506637, + "crossed": true, + "fee": "0.215243", + "tid": 418272033367622, + "cloid": "0x00000000000000000000000387000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.05", + "sz": "6.56", + "side": "B", + "time": 1762185313048, + "startPosition": "-239265.22", + "dir": "Close Short", + "closedPnl": "221.480688", + "hash": "0x34868a5a35be15873600042ec455f8020f13003fd0b13459d84f35acf4b1ef71", + "oid": 221321527808, + "crossed": true, + "fee": "0.22875", + "tid": 766072871553890, + "cloid": "0x00000000000000000000000388000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.06", + "sz": "53.57", + "side": "B", + "time": 1762185313048, + "startPosition": "-239258.66", + "dir": "Close Short", + "closedPnl": "1808.110711", + "hash": "0x34868a5a35be15873600042ec455f8020f13003fd0b13459d84f35acf4b1ef71", + "oid": 221321527808, + "crossed": true, + "fee": "1.868125", + "tid": 556312535674792, + "cloid": "0x00000000000000000000000388000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.9", + "sz": "2.78", + "side": "B", + "time": 1762185314105, + "startPosition": "-2184.125", + "dir": "Close Short", + "closedPnl": "1436.3704", + "hash": "0xe6e67934adbb87c6e860042ec45608020643001a48bea6988aaf24876cbf61b1", + "oid": 221321547166, + "crossed": true, + "fee": "2.098118", + "tid": 1074735787970771, + "cloid": "0x00000000000000000000000387000103", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.18", + "sz": "0.1", + "side": "B", + "time": 1762185315401, + "startPosition": "-239205.09", + "dir": "Close Short", + "closedPnl": "3.36323", + "hash": "0x3c35cb8dcffa73de3daf042ec4561702157c00736afd92b0dffe76e08efe4dc8", + "oid": 221321575572, + "crossed": true, + "fee": "0.003489", + "tid": 1068812712315146, + "cloid": "0x00000000000000000000000388000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.18", + "sz": "60.0", + "side": "B", + "time": 1762185315401, + "startPosition": "-239204.99", + "dir": "Close Short", + "closedPnl": "2017.938", + "hash": "0x3c35cb8dcffa73de3daf042ec4561702157c00736afd92b0dffe76e08efe4dc8", + "oid": 221321575572, + "crossed": true, + "fee": "2.093867", + "tid": 506367972935880, + "cloid": "0x00000000000000000000000388000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.9", + "sz": "2.7788", + "side": "B", + "time": 1762185316004, + "startPosition": "-2181.345", + "dir": "Close Short", + "closedPnl": "1430.192784", + "hash": "0x55fed1e7ac79a8e85778042ec4561f015c00e9cd477cc7baf9c77d3a6b7d82d2", + "oid": 221321584766, + "crossed": true, + "fee": "2.09838", + "tid": 494963762201158, + "cloid": "0x00000000000000000000000387000104", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.18", + "sz": "0.1", + "side": "B", + "time": 1762185317661, + "startPosition": "-239144.99", + "dir": "Close Short", + "closedPnl": "3.36323", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.003489", + "tid": 118453040548136, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.18", + "sz": "6.69", + "side": "B", + "time": 1762185317661, + "startPosition": "-239144.89", + "dir": "Close Short", + "closedPnl": "225.000087", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.233466", + "tid": 904455902570466, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.19", + "sz": "12.0", + "side": "B", + "time": 1762185317661, + "startPosition": "-239138.2", + "dir": "Close Short", + "closedPnl": "403.4676", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.418798", + "tid": 965535231487050, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.2", + "sz": "0.1", + "side": "B", + "time": 1762185317661, + "startPosition": "-239126.2", + "dir": "Close Short", + "closedPnl": "3.36123", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.00349", + "tid": 726730755117463, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.2", + "sz": "0.1", + "side": "B", + "time": 1762185317661, + "startPosition": "-239126.1", + "dir": "Close Short", + "closedPnl": "3.36123", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.00349", + "tid": 241234482111853, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "12.0", + "side": "B", + "time": 1762185317661, + "startPosition": "-239126.0", + "dir": "Close Short", + "closedPnl": "403.2276", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.418849", + "tid": 338983309905022, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.18", + "side": "B", + "time": 1762185317661, + "startPosition": "-239114.0", + "dir": "Close Short", + "closedPnl": "6.044814", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.006283", + "tid": 95949950110882, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "12.0", + "side": "B", + "time": 1762185317661, + "startPosition": "-239113.82", + "dir": "Close Short", + "closedPnl": "402.9876", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.418899", + "tid": 359336826959159, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "0.29", + "side": "B", + "time": 1762185317661, + "startPosition": "-239101.82", + "dir": "Close Short", + "closedPnl": "9.733067", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.010124", + "tid": 907151045607280, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "12.0", + "side": "B", + "time": 1762185317661, + "startPosition": "-239101.53", + "dir": "Close Short", + "closedPnl": "402.7476", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.418949", + "tid": 228248159950036, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.26", + "sz": "4.63", + "side": "B", + "time": 1762185317661, + "startPosition": "-239089.53", + "dir": "Close Short", + "closedPnl": "155.347149", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.161654", + "tid": 459123750668469, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "0.768", + "side": "B", + "time": 1762185317661, + "startPosition": "-2178.5662", + "dir": "Close Short", + "closedPnl": "395.65824", + "hash": "0xed7384eb703437b0eeed042ec4563702118000d10b375682913c303e2f38119b", + "oid": 221321613479, + "crossed": true, + "fee": "0.579866", + "tid": 398884129885179, + "cloid": "0x00000000000000000000000387000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.9", + "sz": "2.0107", + "side": "B", + "time": 1762185317661, + "startPosition": "-2177.7982", + "dir": "Close Short", + "closedPnl": "1034.867076", + "hash": "0xed7384eb703437b0eeed042ec4563702118000d10b375682913c303e2f38119b", + "oid": 221321613479, + "crossed": true, + "fee": "1.518357", + "tid": 424223520477003, + "cloid": "0x00000000000000000000000387000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "0.6", + "side": "B", + "time": 1762185319640, + "startPosition": "-239084.9", + "dir": "Close Short", + "closedPnl": "20.07738", + "hash": "0xeb0f65bb44a83d73ec89042ec4565102055d00a0dfab5c458ed8110e03ac175e", + "oid": 221321649740, + "crossed": true, + "fee": "0.02096", + "tid": 574816699036574, + "cloid": "0x00000000000000000000000388000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "6.67", + "side": "B", + "time": 1762185319640, + "startPosition": "-239084.3", + "dir": "Close Short", + "closedPnl": "223.193541", + "hash": "0xeb0f65bb44a83d73ec89042ec4565102055d00a0dfab5c458ed8110e03ac175e", + "oid": 221321649740, + "crossed": true, + "fee": "0.233006", + "tid": 314883989786159, + "cloid": "0x00000000000000000000000388000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "0.18", + "side": "B", + "time": 1762185319640, + "startPosition": "-239077.63", + "dir": "Close Short", + "closedPnl": "6.023214", + "hash": "0xeb0f65bb44a83d73ec89042ec4565102055d00a0dfab5c458ed8110e03ac175e", + "oid": 221321649740, + "crossed": true, + "fee": "0.006288", + "tid": 350206215575374, + "cloid": "0x00000000000000000000000388000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "6.63", + "side": "B", + "time": 1762185319640, + "startPosition": "-239077.45", + "dir": "Close Short", + "closedPnl": "221.855049", + "hash": "0xeb0f65bb44a83d73ec89042ec4565102055d00a0dfab5c458ed8110e03ac175e", + "oid": 221321649740, + "crossed": true, + "fee": "0.231609", + "tid": 976757816756038, + "cloid": "0x00000000000000000000000388000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "0.29", + "side": "B", + "time": 1762185319640, + "startPosition": "-239070.82", + "dir": "Close Short", + "closedPnl": "9.704067", + "hash": "0xeb0f65bb44a83d73ec89042ec4565102055d00a0dfab5c458ed8110e03ac175e", + "oid": 221321649740, + "crossed": true, + "fee": "0.01013", + "tid": 988402186066742, + "cloid": "0x00000000000000000000000388000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "0.18", + "side": "B", + "time": 1762185319640, + "startPosition": "-239070.53", + "dir": "Close Short", + "closedPnl": "6.017814", + "hash": "0xeb0f65bb44a83d73ec89042ec4565102055d00a0dfab5c458ed8110e03ac175e", + "oid": 221321649740, + "crossed": true, + "fee": "0.006289", + "tid": 725404982936060, + "cloid": "0x00000000000000000000000388000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.39", + "sz": "45.49", + "side": "B", + "time": 1762185319640, + "startPosition": "-239070.35", + "dir": "Close Short", + "closedPnl": "1520.380427", + "hash": "0xeb0f65bb44a83d73ec89042ec4565102055d00a0dfab5c458ed8110e03ac175e", + "oid": 221321649740, + "crossed": true, + "fee": "1.589507", + "tid": 678066165609992, + "cloid": "0x00000000000000000000000388000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.2", + "sz": "0.0042", + "side": "B", + "time": 1762185320023, + "startPosition": "-2175.7875", + "dir": "Close Short", + "closedPnl": "2.156196", + "hash": "0xbe7e9377feaad8adbff8042ec45655020ae9005d99adf77f62473ecabdaeb298", + "oid": 221321657501, + "crossed": true, + "fee": "0.003172", + "tid": 1041108825471612, + "cloid": "0x00000000000000000000000387000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.4", + "sz": "0.0069", + "side": "B", + "time": 1762185320023, + "startPosition": "-2175.7833", + "dir": "Close Short", + "closedPnl": "3.540942", + "hash": "0xbe7e9377feaad8adbff8042ec45655020ae9005d99adf77f62473ecabdaeb298", + "oid": 221321657501, + "crossed": true, + "fee": "0.005212", + "tid": 954964964056605, + "cloid": "0x00000000000000000000000387000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.4", + "sz": "0.1181", + "side": "B", + "time": 1762185320023, + "startPosition": "-2175.7764", + "dir": "Close Short", + "closedPnl": "60.606558", + "hash": "0xbe7e9377feaad8adbff8042ec45655020ae9005d99adf77f62473ecabdaeb298", + "oid": 221321657501, + "crossed": true, + "fee": "0.089219", + "tid": 21364842270696, + "cloid": "0x00000000000000000000000387000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.4", + "sz": "2.6482", + "side": "B", + "time": 1762185320023, + "startPosition": "-2175.6583", + "dir": "Close Short", + "closedPnl": "1359.003276", + "hash": "0xbe7e9377feaad8adbff8042ec45655020ae9005d99adf77f62473ecabdaeb298", + "oid": 221321657501, + "crossed": true, + "fee": "2.000593", + "tid": 817713951801644, + "cloid": "0x00000000000000000000000387000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "131739.0", + "side": "B", + "time": 1762185320730, + "startPosition": "-1198605069.0", + "dir": "Close Short", + "closedPnl": "231.333684", + "hash": "0xba439aad53ba2026bbbd042ec4565e0217750092eebd3ef85e0c460012bdfa11", + "oid": 221321668709, + "crossed": true, + "fee": "0.104989", + "tid": 999848415660166, + "cloid": "0x00000000000000000000000385000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "60.02", + "side": "B", + "time": 1762185321716, + "startPosition": "-239024.86", + "dir": "Close Short", + "closedPnl": "2005.406246", + "hash": "0xe6a08f3890ef1e29e81a042ec4566b0204bf001e2be23cfb8a693a8b4fe2f814", + "oid": 221321683723, + "crossed": true, + "fee": "2.097338", + "tid": 406204765851637, + "cloid": "0x00000000000000000000000388000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.4", + "sz": "2.778", + "side": "B", + "time": 1762185322144, + "startPosition": "-2173.0101", + "dir": "Close Short", + "closedPnl": "1425.61404", + "hash": "0xf741a59ba2e572eff8bb042ec4566f020bcb00813de891c29b0a50ee61e94cda", + "oid": 221321693575, + "crossed": true, + "fee": "2.098651", + "tid": 837583114674371, + "cloid": "0x00000000000000000000000387000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.48", + "sz": "59.99", + "side": "B", + "time": 1762185323790, + "startPosition": "-238964.84", + "dir": "Close Short", + "closedPnl": "1999.604677", + "hash": "0x83ae1f9ea7fca0128527042ec45685020c56008442ffbee42776caf166f079fd", + "oid": 221321720471, + "crossed": true, + "fee": "2.097298", + "tid": 399519952388395, + "cloid": "0x00000000000000000000000388000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.9", + "sz": "2.7772", + "side": "B", + "time": 1762185324775, + "startPosition": "-2170.2321", + "dir": "Close Short", + "closedPnl": "1423.814896", + "hash": "0x1e48b77263fa78511fc2042ec456910208da0057fefd9723c21162c522fe523b", + "oid": 221321732467, + "crossed": true, + "fee": "2.098338", + "tid": 594810980243175, + "cloid": "0x00000000000000000000000387000108", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.43", + "sz": "60.0", + "side": "B", + "time": 1762185325747, + "startPosition": "-238904.85", + "dir": "Close Short", + "closedPnl": "2002.938", + "hash": "0xa927d168ec8aed74aaa1042ec4569e020e4a004e878e0c464cf07cbbab8ec75f", + "oid": 221321754697, + "crossed": true, + "fee": "2.097017", + "tid": 824376209395858, + "cloid": "0x00000000000000000000000388000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.6", + "sz": "2.7772", + "side": "B", + "time": 1762185326711, + "startPosition": "-2167.4549", + "dir": "Close Short", + "closedPnl": "1424.648056", + "hash": "0x01b6a14dc77455720330042ec456ab0205d0003362777444a57f4ca086782f5c", + "oid": 221321771708, + "crossed": true, + "fee": "2.098163", + "tid": 467133172471765, + "cloid": "0x00000000000000000000000387000109", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "59.97", + "side": "B", + "time": 1762185327727, + "startPosition": "-238844.85", + "dir": "Close Short", + "closedPnl": "1997.738631", + "hash": "0xc8828d53e378cf0ec9fc042ec456b702185400397e7bede06c4b38a6a27ca8f9", + "oid": 221321790382, + "crossed": true, + "fee": "2.096851", + "tid": 363966059431291, + "cloid": "0x00000000000000000000000388000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "55300.0", + "side": "B", + "time": 1762185327880, + "startPosition": "-1198473330.0", + "dir": "Close Short", + "closedPnl": "96.9962", + "hash": "0x3a77d8701559fbf73bf1042ec456ba0205d30055b05d1ac9de4083c2d45dd5e1", + "oid": 221321792117, + "crossed": true, + "fee": "0.044094", + "tid": 741183490626723, + "cloid": "0x00000000000000000000000385000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "76550.0", + "side": "B", + "time": 1762185327880, + "startPosition": "-1198418030.0", + "dir": "Close Short", + "closedPnl": "134.19215", + "hash": "0x3a77d8701559fbf73bf1042ec456ba0205d30055b05d1ac9de4083c2d45dd5e1", + "oid": 221321792117, + "crossed": true, + "fee": "0.061054", + "tid": 200978222506831, + "cloid": "0x00000000000000000000000385000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.6", + "sz": "2.7767", + "side": "B", + "time": 1762185329208, + "startPosition": "-2164.6777", + "dir": "Close Short", + "closedPnl": "1427.168266", + "hash": "0xa1cc61107ec59eeca346042ec456c9020af700f619c8bdbe45950c633dc978d7", + "oid": 221321823675, + "crossed": true, + "fee": "2.097202", + "tid": 637840001644232, + "cloid": "0x00000000000000000000000387000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "12.01", + "side": "B", + "time": 1762185330027, + "startPosition": "-238784.88", + "dir": "Close Short", + "closedPnl": "401.281723", + "hash": "0x8e0565dd748c00b08f7f042ec456d102188b00c30f8f1f8231ce1130338fda9b", + "oid": 221321843435, + "crossed": true, + "fee": "0.419677", + "tid": 911949229818741, + "cloid": "0x00000000000000000000000388000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "46.71", + "side": "B", + "time": 1762185330027, + "startPosition": "-238772.87", + "dir": "Close Short", + "closedPnl": "1560.688533", + "hash": "0x8e0565dd748c00b08f7f042ec456d102188b00c30f8f1f8231ce1130338fda9b", + "oid": 221321843435, + "crossed": true, + "fee": "1.632234", + "tid": 552217038014351, + "cloid": "0x00000000000000000000000388000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "1.29", + "side": "B", + "time": 1762185330027, + "startPosition": "-238726.16", + "dir": "Close Short", + "closedPnl": "43.101867", + "hash": "0x8e0565dd748c00b08f7f042ec456d102188b00c30f8f1f8231ce1130338fda9b", + "oid": 221321843435, + "crossed": true, + "fee": "0.045077", + "tid": 52569522060980, + "cloid": "0x00000000000000000000000388000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003793", + "sz": "131718.0", + "side": "B", + "time": 1762185330059, + "startPosition": "-1198341480.0", + "dir": "Close Short", + "closedPnl": "231.560244", + "hash": "0x80554843d674fd6581cf042ec456d202073d002971781c37241df3969578d750", + "oid": 221321845996, + "crossed": true, + "fee": "0.104917", + "tid": 508083515033958, + "cloid": "0x00000000000000000000000385000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.27005", + "sz": "3721.1", + "side": "B", + "time": 1762185331247, + "startPosition": "-4019116.7000000002", + "dir": "Close Short", + "closedPnl": "1976.722742", + "hash": "0x9f18477a266bdcfca092042ec456df020293005fc16efbce42e0f2cce56fb6e7", + "oid": 221321783677, + "crossed": false, + "fee": "0.028136", + "tid": 479121521149906, + "cloid": "0x00000000000000000000000384000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.7", + "sz": "0.7205", + "side": "B", + "time": 1762185331665, + "startPosition": "-2161.901", + "dir": "Close Short", + "closedPnl": "371.69154", + "hash": "0x0805ddfd47968fa0097f042ec456e402164500e2e299ae72abce8950069a698a", + "oid": 221321890849, + "crossed": true, + "fee": "0.543896", + "tid": 852501926151767, + "cloid": "0x00000000000000000000000387000111", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.7", + "sz": "2.0584", + "side": "B", + "time": 1762185331665, + "startPosition": "-2161.1805", + "dir": "Close Short", + "closedPnl": "1061.887392", + "hash": "0x0805ddfd47968fa0097f042ec456e402164500e2e299ae72abce8950069a698a", + "oid": 221321890849, + "crossed": true, + "fee": "1.553859", + "tid": 748588659507301, + "cloid": "0x00000000000000000000000387000111", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "42.48", + "side": "B", + "time": 1762185332258, + "startPosition": "-238724.87", + "dir": "Close Short", + "closedPnl": "1426.576104", + "hash": "0xc4e699816b52bfbcc660042ec456ed020ff400670655de8e68af44d42a5699a7", + "oid": 221321910197, + "crossed": true, + "fee": "1.482904", + "tid": 311683194395202, + "cloid": "0x00000000000000000000000388000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "17.59", + "side": "B", + "time": 1762185332258, + "startPosition": "-238682.39", + "dir": "Close Short", + "closedPnl": "590.712657", + "hash": "0xc4e699816b52bfbcc660042ec456ed020ff400670655de8e68af44d42a5699a7", + "oid": 221321910197, + "crossed": true, + "fee": "0.614036", + "tid": 982958097752095, + "cloid": "0x00000000000000000000000388000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131891.0", + "side": "B", + "time": 1762185333172, + "startPosition": "-1198209762.0", + "dir": "Close Short", + "closedPnl": "232.260051", + "hash": "0x3f74db0ead918c1b40ee042ec456fa0204b700f44894aaede33d86616c956605", + "oid": 221321910216, + "crossed": false, + "fee": "0.013996", + "tid": 742294582544918, + "cloid": "0x00000000000000000000000385000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.5", + "sz": "2.7414", + "side": "B", + "time": 1762185333838, + "startPosition": "-2159.1221", + "dir": "Close Short", + "closedPnl": "1417.523112", + "hash": "0xed1fed9ef956ed76ee99042ec45702020eab0084945a0c4890e898f1b85ac761", + "oid": 221321949309, + "crossed": true, + "fee": "2.068756", + "tid": 760593485247097, + "cloid": "0x00000000000000000000000387000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.5", + "sz": "0.039", + "side": "B", + "time": 1762185333838, + "startPosition": "-2156.3807", + "dir": "Close Short", + "closedPnl": "20.16612", + "hash": "0xed1fed9ef956ed76ee99042ec45702020eab0084945a0c4890e898f1b85ac761", + "oid": 221321949309, + "crossed": true, + "fee": "0.02943", + "tid": 348060755639120, + "cloid": "0x00000000000000000000000387000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.13", + "sz": "28.04", + "side": "B", + "time": 1762185334976, + "startPosition": "-238664.8", + "dir": "Close Short", + "closedPnl": "944.451692", + "hash": "0xca451a4b8a22404ccbbe042ec4570f02133f003125255f1e6e0dc59e49261a37", + "oid": 221321972174, + "crossed": true, + "fee": "0.978239", + "tid": 255421356661664, + "cloid": "0x00000000000000000000000388000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.13", + "sz": "3.01", + "side": "B", + "time": 1762185334976, + "startPosition": "-238636.76", + "dir": "Close Short", + "closedPnl": "101.383723", + "hash": "0xca451a4b8a22404ccbbe042ec4570f02133f003125255f1e6e0dc59e49261a37", + "oid": 221321972174, + "crossed": true, + "fee": "0.10501", + "tid": 346519361122253, + "cloid": "0x00000000000000000000000388000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.13", + "sz": "29.05", + "side": "B", + "time": 1762185334976, + "startPosition": "-238633.75", + "dir": "Close Short", + "closedPnl": "978.470815", + "hash": "0xca451a4b8a22404ccbbe042ec4570f02133f003125255f1e6e0dc59e49261a37", + "oid": 221321972174, + "crossed": true, + "fee": "1.013476", + "tid": 476227284747882, + "cloid": "0x00000000000000000000000388000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131992.0", + "side": "B", + "time": 1762185334976, + "startPosition": "-1198077871.0", + "dir": "Close Short", + "closedPnl": "232.569904", + "hash": "0xe4c9ae4821456430e643042ec4570f021381002dbc4883028892599ae0493e1b", + "oid": 221321972210, + "crossed": true, + "fee": "0.105024", + "tid": 991763890562400, + "cloid": "0x00000000000000000000000385000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.9", + "sz": "0.1282", + "side": "B", + "time": 1762185335910, + "startPosition": "-2156.3417", + "dir": "Close Short", + "closedPnl": "66.366576", + "hash": "0x36bb428af8931eac3834042ec4571a020447007093963d7eda83edddb796f896", + "oid": 221321987650, + "crossed": true, + "fee": "0.096728", + "tid": 262131093332266, + "cloid": "0x00000000000000000000000387000113", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.9", + "sz": "0.8386", + "side": "B", + "time": 1762185335910, + "startPosition": "-2156.2135", + "dir": "Close Short", + "closedPnl": "434.126448", + "hash": "0x36bb428af8931eac3834042ec4571a020447007093963d7eda83edddb796f896", + "oid": 221321987650, + "crossed": true, + "fee": "0.632731", + "tid": 44565703373005, + "cloid": "0x00000000000000000000000387000113", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.9", + "sz": "1.8145", + "side": "B", + "time": 1762185335910, + "startPosition": "-2155.3749", + "dir": "Close Short", + "closedPnl": "939.33036", + "hash": "0x36bb428af8931eac3834042ec4571a020447007093963d7eda83edddb796f896", + "oid": 221321987650, + "crossed": true, + "fee": "1.369056", + "tid": 503469850657291, + "cloid": "0x00000000000000000000000387000113", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132031.0", + "side": "B", + "time": 1762185337127, + "startPosition": "-1197945879.0", + "dir": "Close Short", + "closedPnl": "232.770653", + "hash": "0xcb2ece3183c76fe6cca8042ec4572a021c2200171eca8eb86ef7798442cb49d1", + "oid": 221322013933, + "crossed": true, + "fee": "0.105028", + "tid": 671240146815142, + "cloid": "0x00000000000000000000000385000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.11", + "sz": "60.09", + "side": "B", + "time": 1762185337127, + "startPosition": "-238604.7", + "dir": "Close Short", + "closedPnl": "2025.171207", + "hash": "0x7e0244cc9d58b2627f7c042ec4572a021c2300b2385bd13421caf01f5c5c8c4d", + "oid": 221322013934, + "crossed": true, + "fee": "2.096125", + "tid": 85863780832041, + "cloid": "0x00000000000000000000000388000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.9", + "sz": "0.2784", + "side": "B", + "time": 1762185338038, + "startPosition": "-2153.5604", + "dir": "Close Short", + "closedPnl": "144.400512", + "hash": "0xfe6ff3fa63e7f336ffe9042ec45736020a3800dffeeb1209a2389f4d22ebcd21", + "oid": 221322038836, + "crossed": true, + "fee": "0.209996", + "tid": 849670158135664, + "cloid": "0x00000000000000000000000387000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.9", + "sz": "0.1007", + "side": "B", + "time": 1762185338038, + "startPosition": "-2153.282", + "dir": "Close Short", + "closedPnl": "52.231076", + "hash": "0xfe6ff3fa63e7f336ffe9042ec45736020a3800dffeeb1209a2389f4d22ebcd21", + "oid": 221322038836, + "crossed": true, + "fee": "0.075957", + "tid": 257814166923871, + "cloid": "0x00000000000000000000000387000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.9", + "sz": "0.4676", + "side": "B", + "time": 1762185338038, + "startPosition": "-2153.1813", + "dir": "Close Short", + "closedPnl": "242.534768", + "hash": "0xfe6ff3fa63e7f336ffe9042ec45736020a3800dffeeb1209a2389f4d22ebcd21", + "oid": 221322038836, + "crossed": true, + "fee": "0.35271", + "tid": 468949074782597, + "cloid": "0x00000000000000000000000387000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.9", + "sz": "1.9343", + "side": "B", + "time": 1762185338038, + "startPosition": "-2152.7137", + "dir": "Close Short", + "closedPnl": "1003.282724", + "hash": "0xfe6ff3fa63e7f336ffe9042ec45736020a3800dffeeb1209a2389f4d22ebcd21", + "oid": 221322038836, + "crossed": true, + "fee": "1.45904", + "tid": 244543557239728, + "cloid": "0x00000000000000000000000387000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.0", + "sz": "60.16", + "side": "B", + "time": 1762185339666, + "startPosition": "-238544.61", + "dir": "Close Short", + "closedPnl": "2034.147968", + "hash": "0x5786b75d8f83c7995900042ec4574c02041400432a86e66bfb4f62b04e87a183", + "oid": 221322076209, + "crossed": true, + "fee": "2.097177", + "tid": 917034231419788, + "cloid": "0x00000000000000000000000388000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.9", + "sz": "0.1268", + "side": "B", + "time": 1762185340068, + "startPosition": "-2150.7794", + "dir": "Close Short", + "closedPnl": "65.895424", + "hash": "0x57fe7c481b9f47eb5978042ec457520202df002db69266bdfbc7279ada9321d5", + "oid": 221322086172, + "crossed": true, + "fee": "0.095618", + "tid": 527155938082341, + "cloid": "0x00000000000000000000000387000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.9", + "sz": "2.6555", + "side": "B", + "time": 1762185340068, + "startPosition": "-2150.6526", + "dir": "Close Short", + "closedPnl": "1380.01024", + "hash": "0x57fe7c481b9f47eb5978042ec457520202df002db69266bdfbc7279ada9321d5", + "oid": 221322086172, + "crossed": true, + "fee": "2.002483", + "tid": 121064461805030, + "cloid": "0x00000000000000000000000387000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.89", + "sz": "37.71", + "side": "B", + "time": 1762185341726, + "startPosition": "-238484.45", + "dir": "Close Short", + "closedPnl": "1279.209933", + "hash": "0xe238d9d1a78dedd6e3b2042ec4576602039200b742810ca8860185246681c7c1", + "oid": 221322122106, + "crossed": true, + "fee": "1.313699", + "tid": 87535576009505, + "cloid": "0x00000000000000000000000388000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.89", + "sz": "9.09", + "side": "B", + "time": 1762185341726, + "startPosition": "-238446.74", + "dir": "Close Short", + "closedPnl": "308.353707", + "hash": "0xe238d9d1a78dedd6e3b2042ec4576602039200b742810ca8860185246681c7c1", + "oid": 221322122106, + "crossed": true, + "fee": "0.316667", + "tid": 549982346310941, + "cloid": "0x00000000000000000000000388000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.89", + "sz": "13.39", + "side": "B", + "time": 1762185341726, + "startPosition": "-238437.65", + "dir": "Close Short", + "closedPnl": "454.219597", + "hash": "0xe238d9d1a78dedd6e3b2042ec4576602039200b742810ca8860185246681c7c1", + "oid": 221322122106, + "crossed": true, + "fee": "0.466466", + "tid": 419345613319779, + "cloid": "0x00000000000000000000000388000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.5", + "sz": "2.2304", + "side": "B", + "time": 1762185342538, + "startPosition": "-2147.9971", + "dir": "Close Short", + "closedPnl": "1159.986432", + "hash": "0x63d9b9c2e5512bb06553042ec457700208c500a880544a8207a26515a455059b", + "oid": 221322137923, + "crossed": true, + "fee": "1.681732", + "tid": 407231881847619, + "cloid": "0x00000000000000000000000387000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.5", + "sz": "0.5525", + "side": "B", + "time": 1762185342538, + "startPosition": "-2145.7667", + "dir": "Close Short", + "closedPnl": "287.3442", + "hash": "0x63d9b9c2e5512bb06553042ec457700208c500a880544a8207a26515a455059b", + "oid": 221322137923, + "crossed": true, + "fee": "0.416587", + "tid": 389690791138817, + "cloid": "0x00000000000000000000000387000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.97", + "sz": "0.18", + "side": "B", + "time": 1762185343613, + "startPosition": "-238424.26", + "dir": "Close Short", + "closedPnl": "6.091614", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.006273", + "tid": 596256458177221, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.97", + "sz": "12.0", + "side": "B", + "time": 1762185343613, + "startPosition": "-238424.08", + "dir": "Close Short", + "closedPnl": "406.1076", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.418244", + "tid": 665766225448251, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.0", + "sz": "0.1", + "side": "B", + "time": 1762185343613, + "startPosition": "-238412.08", + "dir": "Close Short", + "closedPnl": "3.38123", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.003485", + "tid": 443048583057923, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.01", + "sz": "12.0", + "side": "B", + "time": 1762185343613, + "startPosition": "-238411.98", + "dir": "Close Short", + "closedPnl": "405.6276", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.418345", + "tid": 31734835237126, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.02", + "sz": "0.36", + "side": "B", + "time": 1762185343613, + "startPosition": "-238399.98", + "dir": "Close Short", + "closedPnl": "12.165228", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.012551", + "tid": 677973961156505, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.04", + "sz": "12.0", + "side": "B", + "time": 1762185343613, + "startPosition": "-238399.62", + "dir": "Close Short", + "closedPnl": "405.2676", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.41842", + "tid": 933733155268351, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.05", + "sz": "22.73", + "side": "B", + "time": 1762185343613, + "startPosition": "-238387.62", + "dir": "Close Short", + "closedPnl": "767.417079", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.792606", + "tid": 644875581642503, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.07", + "sz": "0.1", + "side": "B", + "time": 1762185343613, + "startPosition": "-238364.89", + "dir": "Close Short", + "closedPnl": "3.37423", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.003487", + "tid": 447208253228579, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.07", + "sz": "0.07", + "side": "B", + "time": 1762185343613, + "startPosition": "-238364.79", + "dir": "Close Short", + "closedPnl": "2.361961", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.002441", + "tid": 28050608409039, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.09", + "sz": "0.62", + "side": "B", + "time": 1762185343613, + "startPosition": "-238364.72", + "dir": "Close Short", + "closedPnl": "20.907826", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.021624", + "tid": 145412689727316, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.9", + "sz": "2.7807", + "side": "B", + "time": 1762185344797, + "startPosition": "-2145.2142", + "dir": "Close Short", + "closedPnl": "1439.512776", + "hash": "0x37e3af4de7a6c009395d042ec4578b02036b003382a9dedbdbac5aa0a6aa99f3", + "oid": 221322185849, + "crossed": true, + "fee": "2.098063", + "tid": 689288435326707, + "cloid": "0x00000000000000000000000387000117", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003785", + "sz": "132135.0", + "side": "B", + "time": 1762185344903, + "startPosition": "-1197813848.0", + "dir": "Close Short", + "closedPnl": "233.35041", + "hash": "0x6812b46aedf56cce698c042ec4578c020653005088f88ba00bdb5fbdacf946b9", + "oid": 221322187364, + "crossed": true, + "fee": "0.105027", + "tid": 1068649279064543, + "cloid": "0x00000000000000000000000385000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.08", + "sz": "22.34", + "side": "B", + "time": 1762185346356, + "startPosition": "-238364.1", + "dir": "Close Short", + "closedPnl": "753.579582", + "hash": "0x73ec16e461525cd67565042ec4579f020b5a00c9fc557ba817b4c237205636c1", + "oid": 221322208702, + "crossed": true, + "fee": "0.779147", + "tid": 701342428738818, + "cloid": "0x00000000000000000000000388000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.08", + "sz": "3.01", + "side": "B", + "time": 1762185346356, + "startPosition": "-238341.76", + "dir": "Close Short", + "closedPnl": "101.534223", + "hash": "0x73ec16e461525cd67565042ec4579f020b5a00c9fc557ba817b4c237205636c1", + "oid": 221322208702, + "crossed": true, + "fee": "0.104979", + "tid": 898024051447645, + "cloid": "0x00000000000000000000000388000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.09", + "sz": "34.78", + "side": "B", + "time": 1762185346356, + "startPosition": "-238338.75", + "dir": "Close Short", + "closedPnl": "1172.861594", + "hash": "0x73ec16e461525cd67565042ec4579f020b5a00c9fc557ba817b4c237205636c1", + "oid": 221322208702, + "crossed": true, + "fee": "1.213088", + "tid": 348229849624242, + "cloid": "0x00000000000000000000000388000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "97675.0", + "side": "B", + "time": 1762185346772, + "startPosition": "-1197681713.0", + "dir": "Close Short", + "closedPnl": "172.10335", + "hash": "0x185998606f83c1ab19d3042ec457a402065c00460a86e07dbc2243b32e879b95", + "oid": 221322218147, + "crossed": true, + "fee": "0.077719", + "tid": 963080058551356, + "cloid": "0x00000000000000000000000385000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "34351.0", + "side": "B", + "time": 1762185346772, + "startPosition": "-1197584038.0", + "dir": "Close Short", + "closedPnl": "60.492111", + "hash": "0x185998606f83c1ab19d3042ec457a402065c00460a86e07dbc2243b32e879b95", + "oid": 221322218147, + "crossed": true, + "fee": "0.027339", + "tid": 348819397269963, + "cloid": "0x00000000000000000000000385000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.9", + "sz": "2.781", + "side": "B", + "time": 1762185347266, + "startPosition": "-2142.4335", + "dir": "Close Short", + "closedPnl": "1439.66808", + "hash": "0x62ee8d8a0aa13bc46468042ec457aa020640006fa5a45a9606b738dcc9a515af", + "oid": 221322224025, + "crossed": true, + "fee": "2.098289", + "tid": 1057399248820445, + "cloid": "0x00000000000000000000000387000118", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131961.0", + "side": "B", + "time": 1762185348726, + "startPosition": "-1197549687.0", + "dir": "Close Short", + "closedPnl": "232.383321", + "hash": "0xc5d791a47b4761f9c751042ec457b9020d4f008a164a80cb69a03cf73a4b3be4", + "oid": 221322258026, + "crossed": true, + "fee": "0.105027", + "tid": 1082277849032393, + "cloid": "0x00000000000000000000000385000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "0.31", + "side": "B", + "time": 1762185348726, + "startPosition": "-238303.97", + "dir": "Close Short", + "closedPnl": "10.416713", + "hash": "0x1c890716acec4a451e02042ec457b9020d7900fc47ef6917c051b2696be0242f", + "oid": 221322258047, + "crossed": true, + "fee": "0.01082", + "tid": 267802935822068, + "cloid": "0x00000000000000000000000388000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "0.11", + "side": "B", + "time": 1762185348726, + "startPosition": "-238303.66", + "dir": "Close Short", + "closedPnl": "3.695153", + "hash": "0x1c890716acec4a451e02042ec457b9020d7900fc47ef6917c051b2696be0242f", + "oid": 221322258047, + "crossed": true, + "fee": "0.003839", + "tid": 690783221038441, + "cloid": "0x00000000000000000000000388000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "0.18", + "side": "B", + "time": 1762185348726, + "startPosition": "-238303.55", + "dir": "Close Short", + "closedPnl": "6.046614", + "hash": "0x1c890716acec4a451e02042ec457b9020d7900fc47ef6917c051b2696be0242f", + "oid": 221322258047, + "crossed": true, + "fee": "0.006283", + "tid": 662163460970209, + "cloid": "0x00000000000000000000000388000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "59.47", + "side": "B", + "time": 1762185348726, + "startPosition": "-238303.37", + "dir": "Close Short", + "closedPnl": "1997.734081", + "hash": "0x1c890716acec4a451e02042ec457b9020d7900fc47ef6917c051b2696be0242f", + "oid": 221322258047, + "crossed": true, + "fee": "2.075871", + "tid": 1108232079482369, + "cloid": "0x00000000000000000000000388000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26975", + "sz": "3333.3", + "side": "A", + "time": 1762185350384, + "startPosition": "4036713.1960629998", + "dir": "Sell", + "closedPnl": "-1773.12830533", + "hash": "0x2cf5da6447c7e1d32e6f042ec457ce02102e0049e2cb00a5d0be85b706cbbbbd", + "oid": 221321910397, + "crossed": false, + "fee": "0.06294103", + "tid": 305917406927982, + "cloid": "0x10000000000000000000000475000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.0", + "sz": "2.7801", + "side": "B", + "time": 1762185350774, + "startPosition": "-2139.6525", + "dir": "Close Short", + "closedPnl": "1430.583858", + "hash": "0xcfc7ca0b3aac0879d141042ec457d2020a7800f0d5af274b7390755df9afe264", + "oid": 221322303145, + "crossed": true, + "fee": "2.09942", + "tid": 194398795317329, + "cloid": "0x00000000000000000000000387000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "59.98", + "side": "B", + "time": 1762185351471, + "startPosition": "-238243.9", + "dir": "Close Short", + "closedPnl": "1994.472954", + "hash": "0x17757426fc815bc318ef042ec457da02081e000c97847a95bb3e1f79bb8535ad", + "oid": 221322313590, + "crossed": true, + "fee": "2.097956", + "tid": 504332136641441, + "cloid": "0x00000000000000000000000388000103", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26975", + "sz": "387.8", + "side": "A", + "time": 1762185352103, + "startPosition": "4033379.896063", + "dir": "Sell", + "closedPnl": "-206.28780992", + "hash": "0x8c72021b2296312c8deb042ec457e10207c40000bd994ffe303aad6de19a0b17", + "oid": 221321910397, + "crossed": false, + "fee": "0.00732263", + "tid": 1031239255083424, + "cloid": "0x10000000000000000000000475000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.5", + "sz": "0.2027", + "side": "B", + "time": 1762185352626, + "startPosition": "-2136.8724", + "dir": "Close Short", + "closedPnl": "104.406716", + "hash": "0x3987112e4e4e121b3b00042ec457e80206d40013e94130eddd4fbc810d41ec05", + "oid": 221322335797, + "crossed": true, + "fee": "0.153049", + "tid": 6962165113714, + "cloid": "0x00000000000000000000000387000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.6", + "sz": "0.2027", + "side": "B", + "time": 1762185352626, + "startPosition": "-2136.6697", + "dir": "Close Short", + "closedPnl": "104.386446", + "hash": "0x3987112e4e4e121b3b00042ec457e80206d40013e94130eddd4fbc810d41ec05", + "oid": 221322335797, + "crossed": true, + "fee": "0.153053", + "tid": 792379671024614, + "cloid": "0x00000000000000000000000387000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.9", + "sz": "0.2027", + "side": "B", + "time": 1762185352626, + "startPosition": "-2136.467", + "dir": "Close Short", + "closedPnl": "104.325636", + "hash": "0x3987112e4e4e121b3b00042ec457e80206d40013e94130eddd4fbc810d41ec05", + "oid": 221322335797, + "crossed": true, + "fee": "0.153066", + "tid": 1030306714532152, + "cloid": "0x00000000000000000000000387000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.9", + "sz": "0.6396", + "side": "B", + "time": 1762185352626, + "startPosition": "-2136.2643", + "dir": "Close Short", + "closedPnl": "329.189328", + "hash": "0x3987112e4e4e121b3b00042ec457e80206d40013e94130eddd4fbc810d41ec05", + "oid": 221322335797, + "crossed": true, + "fee": "0.482986", + "tid": 759043551282763, + "cloid": "0x00000000000000000000000387000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.9", + "sz": "0.7638", + "side": "B", + "time": 1762185352626, + "startPosition": "-2135.6247", + "dir": "Close Short", + "closedPnl": "393.112584", + "hash": "0x3987112e4e4e121b3b00042ec457e80206d40013e94130eddd4fbc810d41ec05", + "oid": 221322335797, + "crossed": true, + "fee": "0.576775", + "tid": 506086478728135, + "cloid": "0x00000000000000000000000387000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.0", + "sz": "0.5606", + "side": "B", + "time": 1762185352626, + "startPosition": "-2134.8609", + "dir": "Close Short", + "closedPnl": "288.473548", + "hash": "0x3987112e4e4e121b3b00042ec457e80206d40013e94130eddd4fbc810d41ec05", + "oid": 221322335797, + "crossed": true, + "fee": "0.423342", + "tid": 546713594025580, + "cloid": "0x00000000000000000000000387000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.0", + "sz": "0.2078", + "side": "B", + "time": 1762185352626, + "startPosition": "-2134.3003", + "dir": "Close Short", + "closedPnl": "106.929724", + "hash": "0x3987112e4e4e121b3b00042ec457e80206d40013e94130eddd4fbc810d41ec05", + "oid": 221322335797, + "crossed": true, + "fee": "0.156922", + "tid": 302248247825255, + "cloid": "0x00000000000000000000000387000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "57.39", + "side": "B", + "time": 1762185353114, + "startPosition": "-238183.92", + "dir": "Close Short", + "closedPnl": "1908.349497", + "hash": "0x9794393510031bb7990d042ec457ed020c77001aab063a893b5ce487cf06f5a2", + "oid": 221322348522, + "crossed": true, + "fee": "2.007364", + "tid": 1075436510565938, + "cloid": "0x00000000000000000000000388000104", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "2.55", + "side": "B", + "time": 1762185353114, + "startPosition": "-238126.53", + "dir": "Close Short", + "closedPnl": "84.767865", + "hash": "0x9794393510031bb7990d042ec457ed020c77001aab063a893b5ce487cf06f5a2", + "oid": 221322348522, + "crossed": true, + "fee": "0.089198", + "tid": 497775826578127, + "cloid": "0x00000000000000000000000388000104", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131778.0", + "side": "B", + "time": 1762185353871, + "startPosition": "-1197417726.0", + "dir": "Close Short", + "closedPnl": "232.061058", + "hash": "0x79f21a4a02bcade77b6b042ec457f50207b2002f9dbfccb91dbac59cc1b087d2", + "oid": 221322360823, + "crossed": true, + "fee": "0.104882", + "tid": 968389594681897, + "cloid": "0x00000000000000000000000385000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "0.1539", + "side": "B", + "time": 1762185354227, + "startPosition": "-2134.0925", + "dir": "Close Short", + "closedPnl": "79.286202", + "hash": "0xc45f23256f20fd3ac5d8042ec457f90207fd000b0a241c0c6827ce782e24d725", + "oid": 221322368589, + "crossed": true, + "fee": "0.116199", + "tid": 400890223078198, + "cloid": "0x00000000000000000000000387000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "1.262", + "side": "B", + "time": 1762185354227, + "startPosition": "-2133.9386", + "dir": "Close Short", + "closedPnl": "650.15716", + "hash": "0xc45f23256f20fd3ac5d8042ec457f90207fd000b0a241c0c6827ce782e24d725", + "oid": 221322368589, + "crossed": true, + "fee": "0.952852", + "tid": 911379289811869, + "cloid": "0x00000000000000000000000387000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "0.7897", + "side": "B", + "time": 1762185354227, + "startPosition": "-2132.6766", + "dir": "Close Short", + "closedPnl": "406.837646", + "hash": "0xc45f23256f20fd3ac5d8042ec457f90207fd000b0a241c0c6827ce782e24d725", + "oid": 221322368589, + "crossed": true, + "fee": "0.59625", + "tid": 232088528468445, + "cloid": "0x00000000000000000000000387000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "0.2095", + "side": "B", + "time": 1762185354227, + "startPosition": "-2131.8869", + "dir": "Close Short", + "closedPnl": "107.93021", + "hash": "0xc45f23256f20fd3ac5d8042ec457f90207fd000b0a241c0c6827ce782e24d725", + "oid": 221322368589, + "crossed": true, + "fee": "0.158179", + "tid": 549834455095792, + "cloid": "0x00000000000000000000000387000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "0.3636", + "side": "B", + "time": 1762185354227, + "startPosition": "-2131.6774", + "dir": "Close Short", + "closedPnl": "187.319448", + "hash": "0xc45f23256f20fd3ac5d8042ec457f90207fd000b0a241c0c6827ce782e24d725", + "oid": 221322368589, + "crossed": true, + "fee": "0.27453", + "tid": 318341480063484, + "cloid": "0x00000000000000000000000387000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "50.0", + "side": "B", + "time": 1762185355752, + "startPosition": "-238123.98", + "dir": "Close Short", + "closedPnl": "1663.115", + "hash": "0x803c6ee68ce947a181b6042ec4580d0206d500cc27ec667324051a394bed218c", + "oid": 221322398464, + "crossed": true, + "fee": "1.748774", + "tid": 602114137134938, + "cloid": "0x00000000000000000000000388000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "0.87", + "side": "B", + "time": 1762185355752, + "startPosition": "-238073.98", + "dir": "Close Short", + "closedPnl": "28.929501", + "hash": "0x803c6ee68ce947a181b6042ec4580d0206d500cc27ec667324051a394bed218c", + "oid": 221322398464, + "crossed": true, + "fee": "0.03043", + "tid": 898832826327526, + "cloid": "0x00000000000000000000000388000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "0.18", + "side": "B", + "time": 1762185355752, + "startPosition": "-238073.11", + "dir": "Close Short", + "closedPnl": "5.985414", + "hash": "0x803c6ee68ce947a181b6042ec4580d0206d500cc27ec667324051a394bed218c", + "oid": 221322398464, + "crossed": true, + "fee": "0.006295", + "tid": 483030685172342, + "cloid": "0x00000000000000000000000388000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "0.1", + "side": "B", + "time": 1762185355752, + "startPosition": "-238072.93", + "dir": "Close Short", + "closedPnl": "3.32323", + "hash": "0x803c6ee68ce947a181b6042ec4580d0206d500cc27ec667324051a394bed218c", + "oid": 221322398464, + "crossed": true, + "fee": "0.003498", + "tid": 510857764512240, + "cloid": "0x00000000000000000000000388000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "0.18", + "side": "B", + "time": 1762185355752, + "startPosition": "-238072.83", + "dir": "Close Short", + "closedPnl": "5.978214", + "hash": "0x803c6ee68ce947a181b6042ec4580d0206d500cc27ec667324051a394bed218c", + "oid": 221322398464, + "crossed": true, + "fee": "0.006297", + "tid": 708162799950333, + "cloid": "0x00000000000000000000000388000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "0.29", + "side": "B", + "time": 1762185355752, + "startPosition": "-238072.65", + "dir": "Close Short", + "closedPnl": "9.631567", + "hash": "0x803c6ee68ce947a181b6042ec4580d0206d500cc27ec667324051a394bed218c", + "oid": 221322398464, + "crossed": true, + "fee": "0.010145", + "tid": 594027517644372, + "cloid": "0x00000000000000000000000388000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "3.0", + "side": "B", + "time": 1762185355752, + "startPosition": "-238072.36", + "dir": "Close Short", + "closedPnl": "99.6369", + "hash": "0x803c6ee68ce947a181b6042ec4580d0206d500cc27ec667324051a394bed218c", + "oid": 221322398464, + "crossed": true, + "fee": "0.104957", + "tid": 610220082245286, + "cloid": "0x00000000000000000000000388000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "5.36", + "side": "B", + "time": 1762185355752, + "startPosition": "-238069.36", + "dir": "Close Short", + "closedPnl": "177.964328", + "hash": "0x803c6ee68ce947a181b6042ec4580d0206d500cc27ec667324051a394bed218c", + "oid": 221322398464, + "crossed": true, + "fee": "0.187536", + "tid": 1019158965221548, + "cloid": "0x00000000000000000000000388000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.1", + "sz": "2.7793", + "side": "B", + "time": 1762185356028, + "startPosition": "-2131.3138", + "dir": "Close Short", + "closedPnl": "1429.894264", + "hash": "0xc6acb35bff15aa9ec826042ec458100205a100419a18c9706a755eaebe198489", + "oid": 221322402864, + "crossed": true, + "fee": "2.098874", + "tid": 347252336512775, + "cloid": "0x00000000000000000000000387000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131956.0", + "side": "B", + "time": 1762185356028, + "startPosition": "-1197285948.0", + "dir": "Close Short", + "closedPnl": "232.374516", + "hash": "0x2c53a09232382f962dcd042ec458100205a30077cd3b4e68d01c4be4f13c0980", + "oid": 221322402866, + "crossed": true, + "fee": "0.105023", + "tid": 281199303074533, + "cloid": "0x00000000000000000000000385000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26962", + "sz": "3709.3", + "side": "B", + "time": 1762185357108, + "startPosition": "-4015395.6000000001", + "dir": "Close Short", + "closedPnl": "1972.049345", + "hash": "0x0e6acf9f2478ce490fe4042ec4581b01f000e784bf7bed1bb2337af1e37ca833", + "oid": 221322368576, + "crossed": false, + "fee": "0.028002", + "tid": 635888911235701, + "cloid": "0x00000000000000000000000384000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "13.35", + "side": "B", + "time": 1762185357443, + "startPosition": "-238064.0", + "dir": "Close Short", + "closedPnl": "444.185205", + "hash": "0xbf83ab17b2162591c0fd042ec4581f0205c600fd4d194463634c566a7119ff7c", + "oid": 221322426489, + "crossed": true, + "fee": "0.466894", + "tid": 642506462202235, + "cloid": "0x00000000000000000000000388000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "13.35", + "side": "B", + "time": 1762185357443, + "startPosition": "-238050.65", + "dir": "Close Short", + "closedPnl": "444.051705", + "hash": "0xbf83ab17b2162591c0fd042ec4581f0205c600fd4d194463634c566a7119ff7c", + "oid": 221322426489, + "crossed": true, + "fee": "0.466922", + "tid": 206040865637559, + "cloid": "0x00000000000000000000000388000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "13.32", + "side": "B", + "time": 1762185357443, + "startPosition": "-238037.3", + "dir": "Close Short", + "closedPnl": "443.053836", + "hash": "0xbf83ab17b2162591c0fd042ec4581f0205c600fd4d194463634c566a7119ff7c", + "oid": 221322426489, + "crossed": true, + "fee": "0.465873", + "tid": 286927296438102, + "cloid": "0x00000000000000000000000388000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "13.35", + "side": "B", + "time": 1762185357443, + "startPosition": "-238023.98", + "dir": "Close Short", + "closedPnl": "444.051705", + "hash": "0xbf83ab17b2162591c0fd042ec4581f0205c600fd4d194463634c566a7119ff7c", + "oid": 221322426489, + "crossed": true, + "fee": "0.466922", + "tid": 210205896713129, + "cloid": "0x00000000000000000000000388000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "6.58", + "side": "B", + "time": 1762185357443, + "startPosition": "-238010.63", + "dir": "Close Short", + "closedPnl": "218.865934", + "hash": "0xbf83ab17b2162591c0fd042ec4581f0205c600fd4d194463634c566a7119ff7c", + "oid": 221322426489, + "crossed": true, + "fee": "0.230138", + "tid": 960324291174711, + "cloid": "0x00000000000000000000000388000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "2.779", + "side": "B", + "time": 1762185357990, + "startPosition": "-2128.5345", + "dir": "Close Short", + "closedPnl": "1431.68522", + "hash": "0x696174b6d7b817fd6adb042ec45824020657009c72bb36cf0d2a200996bbf1e8", + "oid": 221322437393, + "crossed": true, + "fee": "2.098239", + "tid": 758896630521642, + "cloid": "0x00000000000000000000000387000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26962", + "sz": "2331.6", + "side": "A", + "time": 1762185357990, + "startPosition": "4032992.0960630002", + "dir": "Sell", + "closedPnl": "-1240.58329781", + "hash": "0xed4a53daa2512803eec4042ec4582402069100c03d5446d59112ff2d615501ee", + "oid": 221322437428, + "crossed": true, + "fee": "0.17602087", + "tid": 595376011360484, + "cloid": "0x10000000000000000000000475000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26944", + "sz": "1377.7", + "side": "A", + "time": 1762185357990, + "startPosition": "4030660.4960630001", + "dir": "Sell", + "closedPnl": "-733.28607546", + "hash": "0xed4a53daa2512803eec4042ec4582402069100c03d5446d59112ff2d615501ee", + "oid": 221322437428, + "crossed": true, + "fee": "0.10393809", + "tid": 348757866463115, + "cloid": "0x10000000000000000000000475000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "6.69", + "side": "B", + "time": 1762185359175, + "startPosition": "-238004.05", + "dir": "Close Short", + "closedPnl": "222.524787", + "hash": "0xcf5a158abe91e63dd0d3042ec4583302066a00705995050f7322c0dd7d95c028", + "oid": 221322459329, + "crossed": true, + "fee": "0.233986", + "tid": 32908631209722, + "cloid": "0x00000000000000000000000388000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "22.73", + "side": "B", + "time": 1762185359175, + "startPosition": "-237997.36", + "dir": "Close Short", + "closedPnl": "755.824779", + "hash": "0xcf5a158abe91e63dd0d3042ec4583302066a00705995050f7322c0dd7d95c028", + "oid": 221322459329, + "crossed": true, + "fee": "0.79504", + "tid": 232935990382754, + "cloid": "0x00000000000000000000000388000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "3.0", + "side": "B", + "time": 1762185359175, + "startPosition": "-237974.63", + "dir": "Close Short", + "closedPnl": "99.7569", + "hash": "0xcf5a158abe91e63dd0d3042ec4583302066a00705995050f7322c0dd7d95c028", + "oid": 221322459329, + "crossed": true, + "fee": "0.104932", + "tid": 785414968175444, + "cloid": "0x00000000000000000000000388000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "27.52", + "side": "B", + "time": 1762185359175, + "startPosition": "-237971.63", + "dir": "Close Short", + "closedPnl": "915.103296", + "hash": "0xcf5a158abe91e63dd0d3042ec4583302066a00705995050f7322c0dd7d95c028", + "oid": 221322459329, + "crossed": true, + "fee": "0.962583", + "tid": 448600889064287, + "cloid": "0x00000000000000000000000388000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "0.2781", + "side": "B", + "time": 1762185359709, + "startPosition": "-2125.7555", + "dir": "Close Short", + "closedPnl": "143.271558", + "hash": "0x3ea68f89650f52704020042ec458390207cb006f00027142e26f3adc24032c5a", + "oid": 221322470078, + "crossed": true, + "fee": "0.209974", + "tid": 1034306003404327, + "cloid": "0x00000000000000000000000387000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "2.501", + "side": "B", + "time": 1762185359709, + "startPosition": "-2125.4774", + "dir": "Close Short", + "closedPnl": "1288.46518", + "hash": "0x3ea68f89650f52704020042ec458390207cb006f00027142e26f3adc24032c5a", + "oid": 221322470078, + "crossed": true, + "fee": "1.88834", + "tid": 482030123737746, + "cloid": "0x00000000000000000000000387000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26953", + "sz": "3708.8", + "side": "B", + "time": 1762185360123, + "startPosition": "-4011686.2999999998", + "dir": "Close Short", + "closedPnl": "1972.117312", + "hash": "0x1e242d8fe62e47d41f9d042ec4583f02050f0075812166a6c1ecd8e2a52221be", + "oid": 221322482900, + "crossed": true, + "fee": "0.209922", + "tid": 214713788961830, + "cloid": "0x00000000000000000000000384000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003793", + "sz": "131822.0", + "side": "B", + "time": 1762185361203, + "startPosition": "-1197153992.0", + "dir": "Close Short", + "closedPnl": "231.743076", + "hash": "0x273c12b4b9b063c728b5042ec4584b020c74009a54b38299cb04be0778b43db1", + "oid": 221322503842, + "crossed": true, + "fee": "0.105", + "tid": 753051147771669, + "cloid": "0x00000000000000000000000385000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "11.43", + "side": "B", + "time": 1762185361395, + "startPosition": "-237944.11", + "dir": "Close Short", + "closedPnl": "380.302389", + "hash": "0x317fb9483041e6ab32f9042ec4584e020576002dcb45057dd548649aef45c095", + "oid": 221322506658, + "crossed": true, + "fee": "0.399745", + "tid": 442056348693243, + "cloid": "0x00000000000000000000000388000108", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "11.78", + "side": "B", + "time": 1762185361395, + "startPosition": "-237932.68", + "dir": "Close Short", + "closedPnl": "391.947694", + "hash": "0x317fb9483041e6ab32f9042ec4584e020576002dcb45057dd548649aef45c095", + "oid": 221322506658, + "crossed": true, + "fee": "0.411986", + "tid": 181264949106079, + "cloid": "0x00000000000000000000000388000108", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "36.75", + "side": "B", + "time": 1762185361395, + "startPosition": "-237920.9", + "dir": "Close Short", + "closedPnl": "1222.757025", + "hash": "0x317fb9483041e6ab32f9042ec4584e020576002dcb45057dd548649aef45c095", + "oid": 221322506658, + "crossed": true, + "fee": "1.285272", + "tid": 623047918948984, + "cloid": "0x00000000000000000000000388000108", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26944", + "sz": "2833.0", + "side": "A", + "time": 1762185361395, + "startPosition": "4029282.7960629999", + "dir": "Sell", + "closedPnl": "-1507.87504666", + "hash": "0x2a04fd662f8b18552b7e042ec4584e02058a004bca8e3727cdcda8b8ee8ef23f", + "oid": 221322506675, + "crossed": true, + "fee": "0.21373058", + "tid": 636373529594191, + "cloid": "0x10000000000000000000000475000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26923", + "sz": "875.8", + "side": "A", + "time": 1762185361395, + "startPosition": "4026449.7960629999", + "dir": "Sell", + "closedPnl": "-466.3318057", + "hash": "0xdcd87401491c5ad0de52042ec4584e02058b00e6e41f79a280a11f54081034bb", + "oid": 221322506675, + "crossed": false, + "fee": "0.01650541", + "tid": 748139617020889, + "cloid": "0x10000000000000000000000475000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.8", + "sz": "0.2781", + "side": "B", + "time": 1762185361723, + "startPosition": "-2122.9764", + "dir": "Close Short", + "closedPnl": "143.438418", + "hash": "0x0fe7133bb3cc699f1160042ec4585102151f00214ecf8871b3afbe8e72c04389", + "oid": 221322518171, + "crossed": true, + "fee": "0.209939", + "tid": 629683137008495, + "cloid": "0x00000000000000000000000387000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.8", + "sz": "2.5011", + "side": "B", + "time": 1762185361723, + "startPosition": "-2122.6983", + "dir": "Close Short", + "closedPnl": "1290.017358", + "hash": "0x0fe7133bb3cc699f1160042ec4585102151f00214ecf8871b3afbe8e72c04389", + "oid": 221322518171, + "crossed": true, + "fee": "1.8881", + "tid": 246858849996810, + "cloid": "0x00000000000000000000000387000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131817.0", + "side": "B", + "time": 1762185363485, + "startPosition": "-1197022170.0", + "dir": "Close Short", + "closedPnl": "232.129737", + "hash": "0x5f8079b839ad65da60fa042ec45863020753009dd4a084ac0349250af8a13fc5", + "oid": 221322552386, + "crossed": true, + "fee": "0.104913", + "tid": 899940713171636, + "cloid": "0x00000000000000000000000385000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "9.47", + "side": "B", + "time": 1762185363485, + "startPosition": "-237884.15", + "dir": "Close Short", + "closedPnl": "315.562181", + "hash": "0x4348b7f5ec96373c44c2042ec4586302075a00db8799560ee7116348ab9a1126", + "oid": 221322552392, + "crossed": true, + "fee": "0.331098", + "tid": 401067797687243, + "cloid": "0x00000000000000000000000388000109", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "50.51", + "side": "B", + "time": 1762185363485, + "startPosition": "-237874.68", + "dir": "Close Short", + "closedPnl": "1683.109373", + "hash": "0x4348b7f5ec96373c44c2042ec4586302075a00db8799560ee7116348ab9a1126", + "oid": 221322552392, + "crossed": true, + "fee": "1.765976", + "tid": 724000396407262, + "cloid": "0x00000000000000000000000388000109", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.2", + "sz": "0.1933", + "side": "B", + "time": 1762185363485, + "startPosition": "-2120.1972", + "dir": "Close Short", + "closedPnl": "99.816254", + "hash": "0x7dc26ba5d123f0e97f3c042ec4586302078b008b6c270fbb218b16f89027cad4", + "oid": 221322552432, + "crossed": true, + "fee": "0.145899", + "tid": 555041309422970, + "cloid": "0x00000000000000000000000387000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.2", + "sz": "2.5868", + "side": "B", + "time": 1762185363485, + "startPosition": "-2120.0039", + "dir": "Close Short", + "closedPnl": "1335.771784", + "hash": "0x7dc26ba5d123f0e97f3c042ec4586302078b008b6c270fbb218b16f89027cad4", + "oid": 221322552432, + "crossed": true, + "fee": "1.95247", + "tid": 460897522187867, + "cloid": "0x00000000000000000000000387000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "0.9974", + "side": "B", + "time": 1762185365401, + "startPosition": "-2117.4171", + "dir": "Close Short", + "closedPnl": "513.840532", + "hash": "0xef92b5bba4712d9bf10c042ec4587a0208d500a13f744c6d935b610e63750786", + "oid": 221322589097, + "crossed": true, + "fee": "0.75307", + "tid": 245699476491573, + "cloid": "0x00000000000000000000000387000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "0.0144", + "side": "B", + "time": 1762185365401, + "startPosition": "-2116.4197", + "dir": "Close Short", + "closedPnl": "7.418592", + "hash": "0xef92b5bba4712d9bf10c042ec4587a0208d500a13f744c6d935b610e63750786", + "oid": 221322589097, + "crossed": true, + "fee": "0.010872", + "tid": 870390625747836, + "cloid": "0x00000000000000000000000387000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.5", + "sz": "0.1391", + "side": "B", + "time": 1762185365401, + "startPosition": "-2116.4053", + "dir": "Close Short", + "closedPnl": "71.647628", + "hash": "0xef92b5bba4712d9bf10c042ec4587a0208d500a13f744c6d935b610e63750786", + "oid": 221322589097, + "crossed": true, + "fee": "0.105028", + "tid": 1003794263449000, + "cloid": "0x00000000000000000000000387000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.5", + "sz": "0.0083", + "side": "B", + "time": 1762185365401, + "startPosition": "-2116.2662", + "dir": "Close Short", + "closedPnl": "4.275164", + "hash": "0xef92b5bba4712d9bf10c042ec4587a0208d500a13f744c6d935b610e63750786", + "oid": 221322589097, + "crossed": true, + "fee": "0.006266", + "tid": 998297061227196, + "cloid": "0x00000000000000000000000387000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.6", + "sz": "0.0042", + "side": "B", + "time": 1762185365401, + "startPosition": "-2116.2579", + "dir": "Close Short", + "closedPnl": "2.162916", + "hash": "0xef92b5bba4712d9bf10c042ec4587a0208d500a13f744c6d935b610e63750786", + "oid": 221322589097, + "crossed": true, + "fee": "0.003171", + "tid": 969305267640840, + "cloid": "0x00000000000000000000000387000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.7", + "sz": "1.6151", + "side": "B", + "time": 1762185365401, + "startPosition": "-2116.2537", + "dir": "Close Short", + "closedPnl": "831.582688", + "hash": "0xef92b5bba4712d9bf10c042ec4587a0208d500a13f744c6d935b610e63750786", + "oid": 221322589097, + "crossed": true, + "fee": "1.219557", + "tid": 598904697629847, + "cloid": "0x00000000000000000000000387000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "6.48", + "side": "B", + "time": 1762185365401, + "startPosition": "-237824.17", + "dir": "Close Short", + "closedPnl": "215.410104", + "hash": "0x3901e12f8a8c83f53a7b042ec4587a0208de0015258fa2c7dcca8c8249805ddf", + "oid": 221322589106, + "crossed": true, + "fee": "0.226668", + "tid": 527990717214322, + "cloid": "0x00000000000000000000000388000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "0.18", + "side": "B", + "time": 1762185365401, + "startPosition": "-237817.69", + "dir": "Close Short", + "closedPnl": "5.981814", + "hash": "0x3901e12f8a8c83f53a7b042ec4587a0208de0015258fa2c7dcca8c8249805ddf", + "oid": 221322589106, + "crossed": true, + "fee": "0.006296", + "tid": 400561343009007, + "cloid": "0x00000000000000000000000388000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "29.4", + "side": "B", + "time": 1762185365401, + "startPosition": "-237817.51", + "dir": "Close Short", + "closedPnl": "974.38362", + "hash": "0x3901e12f8a8c83f53a7b042ec4587a0208de0015258fa2c7dcca8c8249805ddf", + "oid": 221322589106, + "crossed": true, + "fee": "1.02902", + "tid": 1055580574382610, + "cloid": "0x00000000000000000000000388000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "5.97", + "side": "B", + "time": 1762185365401, + "startPosition": "-237788.11", + "dir": "Close Short", + "closedPnl": "197.859531", + "hash": "0x3901e12f8a8c83f53a7b042ec4587a0208de0015258fa2c7dcca8c8249805ddf", + "oid": 221322589106, + "crossed": true, + "fee": "0.208954", + "tid": 921448437718538, + "cloid": "0x00000000000000000000000388000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "14.95", + "side": "B", + "time": 1762185365401, + "startPosition": "-237782.14", + "dir": "Close Short", + "closedPnl": "495.477385", + "hash": "0x3901e12f8a8c83f53a7b042ec4587a0208de0015258fa2c7dcca8c8249805ddf", + "oid": 221322589106, + "crossed": true, + "fee": "0.52326", + "tid": 999875702444634, + "cloid": "0x00000000000000000000000388000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.68", + "sz": "2.95", + "side": "B", + "time": 1762185365401, + "startPosition": "-237767.19", + "dir": "Close Short", + "closedPnl": "97.740285", + "hash": "0x3901e12f8a8c83f53a7b042ec4587a0208de0015258fa2c7dcca8c8249805ddf", + "oid": 221322589106, + "crossed": true, + "fee": "0.103258", + "tid": 139707193064094, + "cloid": "0x00000000000000000000000388000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003793", + "sz": "131748.0", + "side": "B", + "time": 1762185365401, + "startPosition": "-1196890353.0", + "dir": "Close Short", + "closedPnl": "231.612984", + "hash": "0x044fbb9bf0c18de405c9042ec4587a0208e200818bc4acb6a81866eeafc567ce", + "oid": 221322589109, + "crossed": true, + "fee": "0.104941", + "tid": 102374774239029, + "cloid": "0x00000000000000000000000385000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "59.96", + "side": "B", + "time": 1762185367954, + "startPosition": "-237764.24", + "dir": "Close Short", + "closedPnl": "1992.608708", + "hash": "0x2fa14be01434fd1c311b042ec45896020ba500c5af381beed369f732d338d706", + "oid": 221322640273, + "crossed": true, + "fee": "2.097508", + "tid": 217035369952078, + "cloid": "0x00000000000000000000000388000111", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.5", + "sz": "1.8", + "side": "B", + "time": 1762185368961, + "startPosition": "-2114.6386", + "dir": "Close Short", + "closedPnl": "927.144", + "hash": "0x158d969870eb41ad1707042ec458a00202f6007e0bee607fb95641eb2fef1b97", + "oid": 221322658617, + "crossed": true, + "fee": "1.359098", + "tid": 365220050997604, + "cloid": "0x00000000000000000000000387000128", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.5", + "sz": "0.979", + "side": "B", + "time": 1762185368961, + "startPosition": "-2112.8386", + "dir": "Close Short", + "closedPnl": "504.26332", + "hash": "0x158d969870eb41ad1707042ec458a00202f6007e0bee607fb95641eb2fef1b97", + "oid": 221322658617, + "crossed": true, + "fee": "0.739198", + "tid": 413512167421767, + "cloid": "0x00000000000000000000000387000128", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003793", + "sz": "131713.0", + "side": "B", + "time": 1762185368961, + "startPosition": "-1196758605.0", + "dir": "Close Short", + "closedPnl": "231.551454", + "hash": "0xc8610d338a7c8428c9da042ec458a00202f70019257fa2fa6c29b88649705e13", + "oid": 221322658618, + "crossed": true, + "fee": "0.104913", + "tid": 1011824376194292, + "cloid": "0x00000000000000000000000385000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "30.99", + "side": "B", + "time": 1762185369625, + "startPosition": "-237704.28", + "dir": "Close Short", + "closedPnl": "1032.658077", + "hash": "0x69b784994c6a60796b31042ec458a9020981007ee76d7f4b0d802fec0b6e3a64", + "oid": 221322679446, + "crossed": true, + "fee": "1.0835", + "tid": 66492383698303, + "cloid": "0x00000000000000000000000388000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "28.99", + "side": "B", + "time": 1762185369625, + "startPosition": "-237673.29", + "dir": "Close Short", + "closedPnl": "966.013477", + "hash": "0x69b784994c6a60796b31042ec458a9020981007ee76d7f4b0d802fec0b6e3a64", + "oid": 221322679446, + "crossed": true, + "fee": "1.013574", + "tid": 482211220822969, + "cloid": "0x00000000000000000000000388000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.1", + "sz": "2.7793", + "side": "B", + "time": 1762185370985, + "startPosition": "-2111.8596", + "dir": "Close Short", + "closedPnl": "1432.673564", + "hash": "0x932c1fc834dba67494a5042ec458b8020c1500adcfdec54636f4cb1af3df805f", + "oid": 221322701080, + "crossed": true, + "fee": "2.09829", + "tid": 921094859940237, + "cloid": "0x00000000000000000000000387000129", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.48", + "sz": "60.0", + "side": "B", + "time": 1762185371920, + "startPosition": "-237644.3", + "dir": "Close Short", + "closedPnl": "1999.938", + "hash": "0x63bd8e68e0d1d3626537042ec458c50205d4004e7bd4f234078639bb9fd5ad4d", + "oid": 221322715146, + "crossed": true, + "fee": "2.097648", + "tid": 1110356376019359, + "cloid": "0x00000000000000000000000388000113", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.1", + "sz": "2.7795", + "side": "B", + "time": 1762185373325, + "startPosition": "-2109.0803", + "dir": "Close Short", + "closedPnl": "1432.77666", + "hash": "0xa61401f60df002e8a78d042ec458d702069c00dba8f321ba49dcad48ccf3dcd3", + "oid": 221322743870, + "crossed": true, + "fee": "2.098441", + "tid": 523945080003900, + "cloid": "0x00000000000000000000000387000130", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "9.91", + "side": "B", + "time": 1762185373812, + "startPosition": "-237584.3", + "dir": "Close Short", + "closedPnl": "327.548293", + "hash": "0x9ef9b2a19d84cca6a073042ec458de019a00ca873887eb7842c25df45c88a691", + "oid": 221322753219, + "crossed": true, + "fee": "0.347044", + "tid": 227998277042135, + "cloid": "0x00000000000000000000000388000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.77", + "sz": "6.59", + "side": "B", + "time": 1762185373812, + "startPosition": "-237574.39", + "dir": "Close Short", + "closedPnl": "217.748757", + "hash": "0x9ef9b2a19d84cca6a073042ec458de019a00ca873887eb7842c25df45c88a691", + "oid": 221322753219, + "crossed": true, + "fee": "0.230793", + "tid": 939105110755198, + "cloid": "0x00000000000000000000000388000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.78", + "sz": "43.42", + "side": "B", + "time": 1762185373812, + "startPosition": "-237567.8", + "dir": "Close Short", + "closedPnl": "1434.262466", + "hash": "0x9ef9b2a19d84cca6a073042ec458de019a00ca873887eb7842c25df45c88a691", + "oid": 221322753219, + "crossed": true, + "fee": "1.520733", + "tid": 728519739501483, + "cloid": "0x00000000000000000000000388000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.79", + "sz": "59.89", + "side": "B", + "time": 1762185375993, + "startPosition": "-237524.38", + "dir": "Close Short", + "closedPnl": "1977.705547", + "hash": "0xbae6a5a4529ab853bc60042ec458fb020fc20089ed9dd7255eaf50f7119e923e", + "oid": 221322799829, + "crossed": true, + "fee": "2.097701", + "tid": 409003546729454, + "cloid": "0x00000000000000000000000388000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.3", + "sz": "2.6602", + "side": "B", + "time": 1762185376239, + "startPosition": "-2106.3008", + "dir": "Close Short", + "closedPnl": "1368.087656", + "hash": "0x1abf621c418f46201c39042ec458ff0202750001dc8264f2be880d6f0083200a", + "oid": 221322802663, + "crossed": true, + "fee": "2.009044", + "tid": 989041288230228, + "cloid": "0x00000000000000000000000387000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.3", + "sz": "0.1184", + "side": "B", + "time": 1762185376239, + "startPosition": "-2103.6406", + "dir": "Close Short", + "closedPnl": "60.890752", + "hash": "0x1abf621c418f46201c39042ec458ff0202750001dc8264f2be880d6f0083200a", + "oid": 221322802663, + "crossed": true, + "fee": "0.089418", + "tid": 952514366820067, + "cloid": "0x00000000000000000000000387000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.79", + "sz": "11.99", + "side": "B", + "time": 1762185378152, + "startPosition": "-237464.49", + "dir": "Close Short", + "closedPnl": "395.937377", + "hash": "0x87dcee7cddd049f98956042ec45919021180006278d368cb2ba599cf9cd423e4", + "oid": 221322839534, + "crossed": true, + "fee": "0.41996", + "tid": 341910586303445, + "cloid": "0x00000000000000000000000388000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "0.1", + "side": "B", + "time": 1762185378152, + "startPosition": "-237452.5", + "dir": "Close Short", + "closedPnl": "3.30123", + "hash": "0x87dcee7cddd049f98956042ec45919021180006278d368cb2ba599cf9cd423e4", + "oid": 221322839534, + "crossed": true, + "fee": "0.003502", + "tid": 788663087328721, + "cloid": "0x00000000000000000000000388000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "3.0", + "side": "B", + "time": 1762185378152, + "startPosition": "-237452.4", + "dir": "Close Short", + "closedPnl": "99.0369", + "hash": "0x87dcee7cddd049f98956042ec45919021180006278d368cb2ba599cf9cd423e4", + "oid": 221322839534, + "crossed": true, + "fee": "0.105083", + "tid": 222867293881633, + "cloid": "0x00000000000000000000000388000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.81", + "sz": "0.1", + "side": "B", + "time": 1762185378152, + "startPosition": "-237449.4", + "dir": "Close Short", + "closedPnl": "3.30023", + "hash": "0x87dcee7cddd049f98956042ec45919021180006278d368cb2ba599cf9cd423e4", + "oid": 221322839534, + "crossed": true, + "fee": "0.003503", + "tid": 513311950735499, + "cloid": "0x00000000000000000000000388000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.82", + "sz": "44.68", + "side": "B", + "time": 1762185378152, + "startPosition": "-237449.3", + "dir": "Close Short", + "closedPnl": "1474.095964", + "hash": "0x87dcee7cddd049f98956042ec45919021180006278d368cb2ba599cf9cd423e4", + "oid": 221322839534, + "crossed": true, + "fee": "1.565238", + "tid": 536200178615185, + "cloid": "0x00000000000000000000000388000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.3", + "sz": "2.7568", + "side": "B", + "time": 1762185378152, + "startPosition": "-2103.5222", + "dir": "Close Short", + "closedPnl": "1415.010304", + "hash": "0x532ac8e9441553e854a4042ec4591902118400cedf1872baf6f3743c03192dd2", + "oid": 221322839536, + "crossed": true, + "fee": "2.082577", + "tid": 154733430008810, + "cloid": "0x00000000000000000000000387000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.4", + "sz": "0.0083", + "side": "B", + "time": 1762185378152, + "startPosition": "-2100.7654", + "dir": "Close Short", + "closedPnl": "4.259394", + "hash": "0x532ac8e9441553e854a4042ec4591902118400cedf1872baf6f3743c03192dd2", + "oid": 221322839536, + "crossed": true, + "fee": "0.00627", + "tid": 857499278666085, + "cloid": "0x00000000000000000000000387000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.5", + "sz": "0.0042", + "side": "B", + "time": 1762185378152, + "startPosition": "-2100.7571", + "dir": "Close Short", + "closedPnl": "2.154936", + "hash": "0x532ac8e9441553e854a4042ec4591902118400cedf1872baf6f3743c03192dd2", + "oid": 221322839536, + "crossed": true, + "fee": "0.003172", + "tid": 977116296772865, + "cloid": "0x00000000000000000000000387000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.6", + "sz": "0.0083", + "side": "B", + "time": 1762185378152, + "startPosition": "-2100.7529", + "dir": "Close Short", + "closedPnl": "4.257734", + "hash": "0x532ac8e9441553e854a4042ec4591902118400cedf1872baf6f3743c03192dd2", + "oid": 221322839536, + "crossed": true, + "fee": "0.00627", + "tid": 526096190955849, + "cloid": "0x00000000000000000000000387000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.6", + "sz": "0.0005", + "side": "B", + "time": 1762185378152, + "startPosition": "-2100.7446", + "dir": "Close Short", + "closedPnl": "0.25649", + "hash": "0x532ac8e9441553e854a4042ec4591902118400cedf1872baf6f3743c03192dd2", + "oid": 221322839536, + "crossed": true, + "fee": "0.000377", + "tid": 734763566488081, + "cloid": "0x00000000000000000000000387000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3598.6", + "sz": "2.7767", + "side": "B", + "time": 1762185380467, + "startPosition": "-2100.7441", + "dir": "Close Short", + "closedPnl": "1421.614866", + "hash": "0x9be1d9297d6fbe939d5b042ec459370203cb000f1862dd653faa847c3c63987e", + "oid": 221322877159, + "crossed": true, + "fee": "2.098368", + "tid": 85411560337530, + "cloid": "0x00000000000000000000000387000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.9", + "sz": "59.84", + "side": "B", + "time": 1762185380467, + "startPosition": "-237404.62", + "dir": "Close Short", + "closedPnl": "1969.472032", + "hash": "0xf650ac8caf680e09f7ca042ec459370203eb00724a6b2cdc9a1957df6e6be7f4", + "oid": 221322877184, + "crossed": true, + "fee": "2.097332", + "tid": 155034770818146, + "cloid": "0x00000000000000000000000388000117", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "59.86", + "side": "B", + "time": 1762185382261, + "startPosition": "-237344.78", + "dir": "Close Short", + "closedPnl": "1976.116278", + "hash": "0xf566f74f3946cceaf6e0042ec4594c0203100034d449ebbd992fa2a1f84aa6d5", + "oid": 221322922148, + "crossed": true, + "fee": "2.096776", + "tid": 684070199586588, + "cloid": "0x00000000000000000000000388000118", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.2", + "sz": "1.2644", + "side": "B", + "time": 1762185382581, + "startPosition": "-2097.9674", + "dir": "Close Short", + "closedPnl": "649.117672", + "hash": "0x1cb7c99716d184051e31042ec45951020878007cb1d4a2d7c08074e9d5d55def", + "oid": 221322928847, + "crossed": true, + "fee": "0.955142", + "tid": 917283283270853, + "cloid": "0x00000000000000000000000387000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.2", + "sz": "1.5128", + "side": "B", + "time": 1762185382581, + "startPosition": "-2096.703", + "dir": "Close Short", + "closedPnl": "776.641264", + "hash": "0x1cb7c99716d184051e31042ec45951020878007cb1d4a2d7c08074e9d5d55def", + "oid": 221322928847, + "crossed": true, + "fee": "1.142787", + "tid": 146600688279758, + "cloid": "0x00000000000000000000000387000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131822.0", + "side": "B", + "time": 1762185382581, + "startPosition": "-1196626892.0", + "dir": "Close Short", + "closedPnl": "230.952144", + "hash": "0x9ad91a9e96a7d06f9c52042ec4595102087d008431aaef413ea1c5f155abaa5a", + "oid": 221322928851, + "crossed": true, + "fee": "0.105166", + "tid": 1024378121730957, + "cloid": "0x00000000000000000000000385000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "45.91", + "side": "B", + "time": 1762185384683, + "startPosition": "-237284.92", + "dir": "Close Short", + "closedPnl": "1522.022093", + "hash": "0x99d0e33aedadaae79b4a042ec4596b02016b002088a0c9b93d998e8daca184d2", + "oid": 221322988651, + "crossed": true, + "fee": "1.606785", + "tid": 1091075549493709, + "cloid": "0x00000000000000000000000388000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "14.0", + "side": "B", + "time": 1762185384683, + "startPosition": "-237239.01", + "dir": "Close Short", + "closedPnl": "464.1322", + "hash": "0x99d0e33aedadaae79b4a042ec4596b02016b002088a0c9b93d998e8daca184d2", + "oid": 221322988651, + "crossed": true, + "fee": "0.48998", + "tid": 872206447398896, + "cloid": "0x00000000000000000000000388000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.9", + "sz": "0.7505", + "side": "B", + "time": 1762185384683, + "startPosition": "-2095.1902", + "dir": "Close Short", + "closedPnl": "387.01784", + "hash": "0xdbc552ccd2f232eadd3f042ec4596b02018800b26df551bc7f8dfe1f91f60cd5", + "oid": 221322988669, + "crossed": true, + "fee": "0.566574", + "tid": 1092955711319466, + "cloid": "0x00000000000000000000000387000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.9", + "sz": "0.7504", + "side": "B", + "time": 1762185384683, + "startPosition": "-2094.4397", + "dir": "Close Short", + "closedPnl": "386.966272", + "hash": "0xdbc552ccd2f232eadd3f042ec4596b02018800b26df551bc7f8dfe1f91f60cd5", + "oid": 221322988669, + "crossed": true, + "fee": "0.566498", + "tid": 892971176749053, + "cloid": "0x00000000000000000000000387000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.9", + "sz": "0.4755", + "side": "B", + "time": 1762185384683, + "startPosition": "-2093.6893", + "dir": "Close Short", + "closedPnl": "245.20584", + "hash": "0xdbc552ccd2f232eadd3f042ec4596b02018800b26df551bc7f8dfe1f91f60cd5", + "oid": 221322988669, + "crossed": true, + "fee": "0.358968", + "tid": 242374330607445, + "cloid": "0x00000000000000000000000387000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.9", + "sz": "0.2124", + "side": "B", + "time": 1762185384683, + "startPosition": "-2093.2138", + "dir": "Close Short", + "closedPnl": "109.530432", + "hash": "0xdbc552ccd2f232eadd3f042ec4596b02018800b26df551bc7f8dfe1f91f60cd5", + "oid": 221322988669, + "crossed": true, + "fee": "0.160346", + "tid": 514204941283961, + "cloid": "0x00000000000000000000000387000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.9", + "sz": "0.59", + "side": "B", + "time": 1762185384683, + "startPosition": "-2093.0014", + "dir": "Close Short", + "closedPnl": "304.2512", + "hash": "0xdbc552ccd2f232eadd3f042ec4596b02018800b26df551bc7f8dfe1f91f60cd5", + "oid": 221322988669, + "crossed": true, + "fee": "0.445408", + "tid": 76721009317778, + "cloid": "0x00000000000000000000000387000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3598.2", + "sz": "2.777", + "side": "B", + "time": 1762185387127, + "startPosition": "-2092.4114", + "dir": "Close Short", + "closedPnl": "1422.87926", + "hash": "0x67e38ba1322519f0695d042ec459880209a20086cd2838c20bac36f3f128f3db", + "oid": 221323037291, + "crossed": true, + "fee": "2.098362", + "tid": 42823312257368, + "cloid": "0x00000000000000000000000387000136", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "58.63", + "side": "B", + "time": 1762185387127, + "startPosition": "-237225.01", + "dir": "Close Short", + "closedPnl": "1939.615249", + "hash": "0x0bc18a784a38bfc00d3b042ec459880209cb005de53bde92af8a35cb093c99aa", + "oid": 221323037323, + "crossed": true, + "fee": "2.052829", + "tid": 291674275718673, + "cloid": "0x00000000000000000000000388000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "1.28", + "side": "B", + "time": 1762185387127, + "startPosition": "-237166.38", + "dir": "Close Short", + "closedPnl": "42.345344", + "hash": "0x0bc18a784a38bfc00d3b042ec459880209cb005de53bde92af8a35cb093c99aa", + "oid": 221323037323, + "crossed": true, + "fee": "0.044817", + "tid": 138998708448309, + "cloid": "0x00000000000000000000000388000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003794", + "sz": "131774.0", + "side": "B", + "time": 1762185388345, + "startPosition": "-1196495070.0", + "dir": "Close Short", + "closedPnl": "231.526918", + "hash": "0xea035a46332cd446eb7d042ec45994020ef6002bce2ff3188dcc0598f220ae31", + "oid": 221323058318, + "crossed": true, + "fee": "0.104989", + "tid": 463270144971532, + "cloid": "0x00000000000000000000000385000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "59.88", + "side": "B", + "time": 1762185388872, + "startPosition": "-237165.1", + "dir": "Close Short", + "closedPnl": "1980.369324", + "hash": "0x832147c87508a935849b042ec4599a02082600ae100bc80726e9f31b340c8320", + "oid": 221323064174, + "crossed": true, + "fee": "2.096722", + "tid": 76505533329023, + "cloid": "0x00000000000000000000000388000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3598.4", + "sz": "2.777", + "side": "B", + "time": 1762185389105, + "startPosition": "-2089.6344", + "dir": "Close Short", + "closedPnl": "1422.32386", + "hash": "0xb47da5c1d5d4cc5ab5f7042ec4599d02036c00a770d7eb2c5846511494d8a645", + "oid": 221323066952, + "crossed": true, + "fee": "2.098478", + "tid": 878314350188823, + "cloid": "0x00000000000000000000000387000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "21.03", + "side": "B", + "time": 1762185390445, + "startPosition": "-237105.22", + "dir": "Close Short", + "closedPnl": "695.510469", + "hash": "0x2e8525e1109ce54e2ffe042ec459ac02056d00c6ab900420d24dd133cf90bf38", + "oid": 221323086232, + "crossed": true, + "fee": "0.736373", + "tid": 960427529984834, + "cloid": "0x00000000000000000000000388000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "38.86", + "side": "B", + "time": 1762185390445, + "startPosition": "-237084.19", + "dir": "Close Short", + "closedPnl": "1285.189578", + "hash": "0x2e8525e1109ce54e2ffe042ec459ac02056d00c6ab900420d24dd133cf90bf38", + "oid": 221323086232, + "crossed": true, + "fee": "1.360698", + "tid": 836858688965900, + "cloid": "0x00000000000000000000000388000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.7", + "sz": "1.4087", + "side": "B", + "time": 1762185390445, + "startPosition": "-2086.8574", + "dir": "Close Short", + "closedPnl": "722.494056", + "hash": "0x270a69ff0fd616f82884042ec459ac02058100e4aad935cacad31551ced9f0e2", + "oid": 221323086249, + "crossed": true, + "fee": "1.064296", + "tid": 520727734874565, + "cloid": "0x00000000000000000000000387000138", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.7", + "sz": "1.3686", + "side": "B", + "time": 1762185390445, + "startPosition": "-2085.4487", + "dir": "Close Short", + "closedPnl": "701.927568", + "hash": "0x270a69ff0fd616f82884042ec459ac02058100e4aad935cacad31551ced9f0e2", + "oid": 221323086249, + "crossed": true, + "fee": "1.034", + "tid": 370369404174935, + "cloid": "0x00000000000000000000000387000138", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.6", + "sz": "2.7775", + "side": "B", + "time": 1762185392182, + "startPosition": "-2084.0801", + "dir": "Close Short", + "closedPnl": "1424.80195", + "hash": "0x14337fc85b7141fc15ad042ec459c00204e700adf67460ceb7fc2b1b1a751be6", + "oid": 221323120516, + "crossed": true, + "fee": "2.09839", + "tid": 111023915038283, + "cloid": "0x00000000000000000000000387000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "19.1", + "side": "B", + "time": 1762185392408, + "startPosition": "-237045.33", + "dir": "Close Short", + "closedPnl": "631.29893", + "hash": "0x49fb1eb4163bfd934b74042ec459c30204240099b13f1c65edc3ca06d53fd77d", + "oid": 221323126017, + "crossed": true, + "fee": "0.668874", + "tid": 1042256259130539, + "cloid": "0x00000000000000000000000388000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "40.78", + "side": "B", + "time": 1762185392408, + "startPosition": "-237026.23", + "dir": "Close Short", + "closedPnl": "1347.872794", + "hash": "0x49fb1eb4163bfd934b74042ec459c30204240099b13f1c65edc3ca06d53fd77d", + "oid": 221323126017, + "crossed": true, + "fee": "1.428099", + "tid": 197093997227658, + "cloid": "0x00000000000000000000000388000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "131784.0", + "side": "B", + "time": 1762185392810, + "startPosition": "-1196363296.0", + "dir": "Close Short", + "closedPnl": "232.466976", + "hash": "0x48bf940f1ce801044a39042ec459c902062900f4b7eb1fd6ec883f61dbebdaee", + "oid": 221323135230, + "crossed": true, + "fee": "0.104803", + "tid": 480926385301921, + "cloid": "0x00000000000000000000000385000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "59.88", + "side": "B", + "time": 1762185394899, + "startPosition": "-236985.45", + "dir": "Close Short", + "closedPnl": "1976.776524", + "hash": "0x45ec4f61847c1fe84766042ec459e402064300471f7f3ebae9b4fab4437ff9d2", + "oid": 221323171224, + "crossed": true, + "fee": "2.097476", + "tid": 203082501383021, + "cloid": "0x00000000000000000000000388000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3598.3", + "sz": "0.0373", + "side": "B", + "time": 1762185395772, + "startPosition": "-2081.3026", + "dir": "Close Short", + "closedPnl": "19.108044", + "hash": "0x6727d985af1d95e568a1042ec459f0020741006b4a10b4b70af084d86e116fd0", + "oid": 221323186232, + "crossed": true, + "fee": "0.028185", + "tid": 186783090395151, + "cloid": "0x00000000000000000000000387000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3598.3", + "sz": "2.7401", + "side": "B", + "time": 1762185395772, + "startPosition": "-2081.2653", + "dir": "Close Short", + "closedPnl": "1403.698428", + "hash": "0x6727d985af1d95e568a1042ec459f0020741006b4a10b4b70af084d86e116fd0", + "oid": 221323186232, + "crossed": true, + "fee": "2.070537", + "tid": 999015196311894, + "cloid": "0x00000000000000000000000387000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "46.49", + "side": "B", + "time": 1762185396825, + "startPosition": "-236925.57", + "dir": "Close Short", + "closedPnl": "1537.996127", + "hash": "0x5db53aa11dca2f3c5f2e042ec459fe02059e0086b8cd4e0e017de5f3dcce0927", + "oid": 221323209082, + "crossed": true, + "fee": "1.627768", + "tid": 323180096821209, + "cloid": "0x00000000000000000000000388000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "13.37", + "side": "B", + "time": 1762185396825, + "startPosition": "-236879.08", + "dir": "Close Short", + "closedPnl": "442.310351", + "hash": "0x5db53aa11dca2f3c5f2e042ec459fe02059e0086b8cd4e0e017de5f3dcce0927", + "oid": 221323209082, + "crossed": true, + "fee": "0.468127", + "tid": 454603622454203, + "cloid": "0x00000000000000000000000388000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "29798.0", + "side": "B", + "time": 1762185397361, + "startPosition": "-1196231512.0", + "dir": "Close Short", + "closedPnl": "52.533874", + "hash": "0x4620f67ced6d2210479a042ec45a030209cf0062886040e2e9e9a1cfac60fbfa", + "oid": 221323219860, + "crossed": true, + "fee": "0.023703", + "tid": 770870446446049, + "cloid": "0x00000000000000000000000385000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "29798.0", + "side": "B", + "time": 1762185397361, + "startPosition": "-1196201714.0", + "dir": "Close Short", + "closedPnl": "52.504076", + "hash": "0x4620f67ced6d2210479a042ec45a030209cf0062886040e2e9e9a1cfac60fbfa", + "oid": 221323219860, + "crossed": true, + "fee": "0.023709", + "tid": 336943885252826, + "cloid": "0x00000000000000000000000385000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "72365.0", + "side": "B", + "time": 1762185397361, + "startPosition": "-1196171916.0", + "dir": "Close Short", + "closedPnl": "127.434765", + "hash": "0x4620f67ced6d2210479a042ec45a030209cf0062886040e2e9e9a1cfac60fbfa", + "oid": 221323219860, + "crossed": true, + "fee": "0.057595", + "tid": 506715848512470, + "cloid": "0x00000000000000000000000385000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.9", + "sz": "2.7782", + "side": "B", + "time": 1762185397361, + "startPosition": "-2078.5252", + "dir": "Close Short", + "closedPnl": "1427.105776", + "hash": "0xc44247846d336e7ac5bc042ec45a030209d4006a08368d4c680af2d72c374865", + "oid": 221323219863, + "crossed": true, + "fee": "2.09851", + "tid": 685592072266738, + "cloid": "0x00000000000000000000000387000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "22.73", + "side": "B", + "time": 1762185398490, + "startPosition": "-236865.71", + "dir": "Close Short", + "closedPnl": "751.278779", + "hash": "0x7505fb98bcba67c9767f042ec45a12020f01007e57bd869b18cea6eb7bbe41b4", + "oid": 221323242871, + "crossed": true, + "fee": "0.795995", + "tid": 858428974332421, + "cloid": "0x00000000000000000000000388000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.77", + "sz": "0.07", + "side": "B", + "time": 1762185398490, + "startPosition": "-236842.98", + "dir": "Close Short", + "closedPnl": "2.312961", + "hash": "0x7505fb98bcba67c9767f042ec45a12020f01007e57bd869b18cea6eb7bbe41b4", + "oid": 221323242871, + "crossed": true, + "fee": "0.002451", + "tid": 501841912901102, + "cloid": "0x00000000000000000000000388000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.77", + "sz": "12.0", + "side": "B", + "time": 1762185398490, + "startPosition": "-236842.91", + "dir": "Close Short", + "closedPnl": "396.5076", + "hash": "0x7505fb98bcba67c9767f042ec45a12020f01007e57bd869b18cea6eb7bbe41b4", + "oid": 221323242871, + "crossed": true, + "fee": "0.42026", + "tid": 912035191363274, + "cloid": "0x00000000000000000000000388000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.78", + "sz": "3.0", + "side": "B", + "time": 1762185398490, + "startPosition": "-236830.91", + "dir": "Close Short", + "closedPnl": "99.0969", + "hash": "0x7505fb98bcba67c9767f042ec45a12020f01007e57bd869b18cea6eb7bbe41b4", + "oid": 221323242871, + "crossed": true, + "fee": "0.105071", + "tid": 994520624627547, + "cloid": "0x00000000000000000000000388000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.79", + "sz": "0.17", + "side": "B", + "time": 1762185398490, + "startPosition": "-236827.91", + "dir": "Close Short", + "closedPnl": "5.613791", + "hash": "0x7505fb98bcba67c9767f042ec45a12020f01007e57bd869b18cea6eb7bbe41b4", + "oid": 221323242871, + "crossed": true, + "fee": "0.005954", + "tid": 539176317228679, + "cloid": "0x00000000000000000000000388000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.79", + "sz": "12.0", + "side": "B", + "time": 1762185398490, + "startPosition": "-236827.74", + "dir": "Close Short", + "closedPnl": "396.2676", + "hash": "0x7505fb98bcba67c9767f042ec45a12020f01007e57bd869b18cea6eb7bbe41b4", + "oid": 221323242871, + "crossed": true, + "fee": "0.42031", + "tid": 634852715254439, + "cloid": "0x00000000000000000000000388000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.79", + "sz": "9.93", + "side": "B", + "time": 1762185398490, + "startPosition": "-236815.74", + "dir": "Close Short", + "closedPnl": "327.911439", + "hash": "0x7505fb98bcba67c9767f042ec45a12020f01007e57bd869b18cea6eb7bbe41b4", + "oid": 221323242871, + "crossed": true, + "fee": "0.347807", + "tid": 267290863896957, + "cloid": "0x00000000000000000000000388000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.8", + "sz": "1.3895", + "side": "B", + "time": 1762185398908, + "startPosition": "-2075.747", + "dir": "Close Short", + "closedPnl": "712.50781", + "hash": "0xd121168c0c64aa1cd29a042ec45a160207a00071a767c8ee74e9c1decb688407", + "oid": 221323250409, + "crossed": true, + "fee": "1.04982", + "tid": 1067050280365334, + "cloid": "0x00000000000000000000000387000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.8", + "sz": "1.3886", + "side": "B", + "time": 1762185398908, + "startPosition": "-2074.3575", + "dir": "Close Short", + "closedPnl": "712.046308", + "hash": "0xd121168c0c64aa1cd29a042ec45a160207a00071a767c8ee74e9c1decb688407", + "oid": 221323250409, + "crossed": true, + "fee": "1.04914", + "tid": 189772917854916, + "cloid": "0x00000000000000000000000387000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "59.86", + "side": "B", + "time": 1762185400563, + "startPosition": "-236805.81", + "dir": "Close Short", + "closedPnl": "1976.116278", + "hash": "0x64a0b61a4ace1156661a042ec45a29020cd700ffe5c130280869616d09c1eb41", + "oid": 221323274591, + "crossed": true, + "fee": "2.096776", + "tid": 448247857855063, + "cloid": "0x00000000000000000000000388000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.8", + "sz": "1.8", + "side": "B", + "time": 1762185400563, + "startPosition": "-2072.9689", + "dir": "Close Short", + "closedPnl": "923.004", + "hash": "0x2fee9086b1031b453168042ec45a29020cdb006c4c063a17d3b73bd97006f52f", + "oid": 221323274595, + "crossed": true, + "fee": "1.359968", + "tid": 236605542437405, + "cloid": "0x00000000000000000000000387000143", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.8", + "sz": "0.9777", + "side": "B", + "time": 1762185400563, + "startPosition": "-2071.1689", + "dir": "Close Short", + "closedPnl": "501.345006", + "hash": "0x2fee9086b1031b453168042ec45a29020cdb006c4c063a17d3b73bd97006f52f", + "oid": 221323274595, + "crossed": true, + "fee": "0.738689", + "tid": 296850572697595, + "cloid": "0x00000000000000000000000387000143", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131991.0", + "side": "B", + "time": 1762185401837, + "startPosition": "-1196099551.0", + "dir": "Close Short", + "closedPnl": "232.568142", + "hash": "0xfab1690baa88fa92fc2b042ec45a3a02021e00f1458c19659e7a145e698cd47d", + "oid": 221323296216, + "crossed": true, + "fee": "0.105023", + "tid": 1029240587240526, + "cloid": "0x00000000000000000000000385000104", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.8", + "sz": "1.1945", + "side": "B", + "time": 1762185402242, + "startPosition": "-2070.1912", + "dir": "Close Short", + "closedPnl": "612.51571", + "hash": "0x8c14ced98377258b8d8e042ec45a3f0202ac00bf1e7a445d2fdd7a2c427aff76", + "oid": 221323301006, + "crossed": true, + "fee": "0.90249", + "tid": 465917740464359, + "cloid": "0x00000000000000000000000387000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.8", + "sz": "1.5828", + "side": "B", + "time": 1762185402242, + "startPosition": "-2068.9967", + "dir": "Close Short", + "closedPnl": "811.628184", + "hash": "0x8c14ced98377258b8d8e042ec45a3f0202ac00bf1e7a445d2fdd7a2c427aff76", + "oid": 221323301006, + "crossed": true, + "fee": "1.195865", + "tid": 666752612628140, + "cloid": "0x00000000000000000000000387000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "59.88", + "side": "B", + "time": 1762185403308, + "startPosition": "-236745.95", + "dir": "Close Short", + "closedPnl": "1979.770524", + "hash": "0xdbb4d7f802b35555dd2e042ec45a4d0201fa00dd9db674277f7d834ac1b72f40", + "oid": 221323310387, + "crossed": true, + "fee": "2.096847", + "tid": 239973477887770, + "cloid": "0x00000000000000000000000388000128", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.8", + "sz": "2.0177", + "side": "B", + "time": 1762185404107, + "startPosition": "-2067.4139", + "dir": "Close Short", + "closedPnl": "1034.636206", + "hash": "0xa0e5fce3e00f3daea25f042ec45a5802022000c97b025c8044aea8369f031799", + "oid": 221323317379, + "crossed": true, + "fee": "1.524449", + "tid": 181836627809851, + "cloid": "0x00000000000000000000000387000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.8", + "sz": "0.7597", + "side": "B", + "time": 1762185404107, + "startPosition": "-2065.3962", + "dir": "Close Short", + "closedPnl": "389.558966", + "hash": "0xa0e5fce3e00f3daea25f042ec45a5802022000c97b025c8044aea8369f031799", + "oid": 221323317379, + "crossed": true, + "fee": "0.573982", + "tid": 969673311718271, + "cloid": "0x00000000000000000000000387000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "34.52", + "side": "B", + "time": 1762185404930, + "startPosition": "-236686.07", + "dir": "Close Short", + "closedPnl": "1142.000996", + "hash": "0xf759e6e26e24948bf8d3042ec45a620201a000c80927b35e9b2292352d286e76", + "oid": 221323323775, + "crossed": true, + "fee": "1.208659", + "tid": 107611209565133, + "cloid": "0x00000000000000000000000388000129", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "25.37", + "side": "B", + "time": 1762185404930, + "startPosition": "-236651.55", + "dir": "Close Short", + "closedPnl": "839.297951", + "hash": "0xf759e6e26e24948bf8d3042ec45a620201a000c80927b35e9b2292352d286e76", + "oid": 221323323775, + "crossed": true, + "fee": "0.888287", + "tid": 945650228280919, + "cloid": "0x00000000000000000000000388000129", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.7", + "sz": "0.6097", + "side": "B", + "time": 1762185405723, + "startPosition": "-2064.6365", + "dir": "Close Short", + "closedPnl": "312.702936", + "hash": "0x4cb06304c78c7cce4e2a042ec45a6d02122f00ea628f9ba0f0790e57868056b8", + "oid": 221323332934, + "crossed": true, + "fee": "0.460638", + "tid": 55891693094187, + "cloid": "0x00000000000000000000000387000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.7", + "sz": "1.7468", + "side": "B", + "time": 1762185405723, + "startPosition": "-2064.0268", + "dir": "Close Short", + "closedPnl": "895.898784", + "hash": "0x4cb06304c78c7cce4e2a042ec45a6d02122f00ea628f9ba0f0790e57868056b8", + "oid": 221323332934, + "crossed": true, + "fee": "1.319737", + "tid": 631405333932475, + "cloid": "0x00000000000000000000000387000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.7", + "sz": "0.421", + "side": "B", + "time": 1762185405723, + "startPosition": "-2062.28", + "dir": "Close Short", + "closedPnl": "215.92248", + "hash": "0x4cb06304c78c7cce4e2a042ec45a6d02122f00ea628f9ba0f0790e57868056b8", + "oid": 221323332934, + "crossed": true, + "fee": "0.318072", + "tid": 48656467862843, + "cloid": "0x00000000000000000000000387000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "58.79", + "side": "B", + "time": 1762185406729, + "startPosition": "-236626.18", + "dir": "Close Short", + "closedPnl": "1944.908417", + "hash": "0x98647f421e50e71899de042ec45a7d0204d40027b95405ea3c2d2a94dd54c103", + "oid": 221323348237, + "crossed": true, + "fee": "2.058431", + "tid": 308727164629556, + "cloid": "0x00000000000000000000000388000130", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "1.11", + "side": "B", + "time": 1762185406729, + "startPosition": "-236567.39", + "dir": "Close Short", + "closedPnl": "36.721353", + "hash": "0x98647f421e50e71899de042ec45a7d0204d40027b95405ea3c2d2a94dd54c103", + "oid": 221323348237, + "crossed": true, + "fee": "0.038864", + "tid": 1041405056575120, + "cloid": "0x00000000000000000000000388000130", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.2", + "sz": "1.1282", + "side": "B", + "time": 1762185407163, + "startPosition": "-2061.859", + "dir": "Close Short", + "closedPnl": "579.195316", + "hash": "0x134015795a63da8314b9042ec45a8302069f005ef566f955b708c0cc1967b46d", + "oid": 221323355199, + "crossed": true, + "fee": "0.852255", + "tid": 765372199260506, + "cloid": "0x00000000000000000000000387000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.2", + "sz": "1.6501", + "side": "B", + "time": 1762185407163, + "startPosition": "-2060.7308", + "dir": "Close Short", + "closedPnl": "847.128338", + "hash": "0x134015795a63da8314b9042ec45a8302069f005ef566f955b708c0cc1967b46d", + "oid": 221323355199, + "crossed": true, + "fee": "1.246505", + "tid": 831019898766276, + "cloid": "0x00000000000000000000000387000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "59.92", + "side": "B", + "time": 1762185408319, + "startPosition": "-236566.28", + "dir": "Close Short", + "closedPnl": "1985.886616", + "hash": "0x7bb1a6988a4a959e7d2b042ec45a91020387007e254db4701f7a51eb494e6f89", + "oid": 221323377774, + "crossed": true, + "fee": "2.097241", + "tid": 190320767710901, + "cloid": "0x00000000000000000000000388000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.5", + "sz": "2.7777", + "side": "B", + "time": 1762185408887, + "startPosition": "-2059.0807", + "dir": "Close Short", + "closedPnl": "1425.182316", + "hash": "0x8a4163071ab891c88bbb042ec45a990208fe00ecb5bbb09a2e0a0e59d9bc6bb3", + "oid": 221323390899, + "crossed": true, + "fee": "2.098482", + "tid": 793670046967638, + "cloid": "0x00000000000000000000000387000148", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "25.38", + "side": "B", + "time": 1762185410106, + "startPosition": "-236506.36", + "dir": "Close Short", + "closedPnl": "842.420574", + "hash": "0x848c221389c8924a8605042ec45aa702075100f924cbb11c2854cd6648cc6c35", + "oid": 221323413647, + "crossed": true, + "fee": "0.888051", + "tid": 809072014343548, + "cloid": "0x00000000000000000000000388000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "34.53", + "side": "B", + "time": 1762185410106, + "startPosition": "-236480.98", + "dir": "Close Short", + "closedPnl": "1146.130119", + "hash": "0x848c221389c8924a8605042ec45aa702075100f924cbb11c2854cd6648cc6c35", + "oid": 221323413647, + "crossed": true, + "fee": "1.208211", + "tid": 154507124111169, + "cloid": "0x00000000000000000000000388000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "0.02", + "side": "B", + "time": 1762185410106, + "startPosition": "-236446.45", + "dir": "Close Short", + "closedPnl": "0.663846", + "hash": "0x848c221389c8924a8605042ec45aa702075100f924cbb11c2854cd6648cc6c35", + "oid": 221323413647, + "crossed": true, + "fee": "0.000699", + "tid": 639942503705065, + "cloid": "0x00000000000000000000000388000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.1", + "sz": "0.3847", + "side": "B", + "time": 1762185410544, + "startPosition": "-2056.303", + "dir": "Close Short", + "closedPnl": "197.535756", + "hash": "0x57bc0b2519521a805935042ec45aaa020863000ab4553952fb84b677d855f46a", + "oid": 221323419220, + "crossed": true, + "fee": "0.290598", + "tid": 152163515817229, + "cloid": "0x00000000000000000000000387000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.1", + "sz": "1.6975", + "side": "B", + "time": 1762185410544, + "startPosition": "-2055.9183", + "dir": "Close Short", + "closedPnl": "871.6323", + "hash": "0x57bc0b2519521a805935042ec45aaa020863000ab4553952fb84b677d855f46a", + "oid": 221323419220, + "crossed": true, + "fee": "1.282276", + "tid": 26053224305924, + "cloid": "0x00000000000000000000000387000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.1", + "sz": "0.6955", + "side": "B", + "time": 1762185410544, + "startPosition": "-2054.2208", + "dir": "Close Short", + "closedPnl": "357.12534", + "hash": "0x57bc0b2519521a805935042ec45aaa020863000ab4553952fb84b677d855f46a", + "oid": 221323419220, + "crossed": true, + "fee": "0.525374", + "tid": 961508911301715, + "cloid": "0x00000000000000000000000387000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131922.0", + "side": "B", + "time": 1762185410544, + "startPosition": "-1195967560.0", + "dir": "Close Short", + "closedPnl": "232.314642", + "hash": "0xd5dd5c2c992866ead757042ec45aaa0208680012342b85bc79a6077f582c40d5", + "oid": 221323419222, + "crossed": true, + "fee": "0.104996", + "tid": 1103979098659766, + "cloid": "0x00000000000000000000000385000108", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.0", + "sz": "2.7781", + "side": "B", + "time": 1762185411963, + "startPosition": "-2053.5253", + "dir": "Close Short", + "closedPnl": "1426.776598", + "hash": "0x538ae1dfd883fecb5504042ec45aba02057e00c573871d9df7538d329787d8b5", + "oid": 221323434831, + "crossed": true, + "fee": "2.098493", + "tid": 1110861981504605, + "cloid": "0x00000000000000000000000387000150", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "16.0", + "side": "B", + "time": 1762185411963, + "startPosition": "-1195835638.0", + "dir": "Close Short", + "closedPnl": "0.028176", + "hash": "0x3753201d8b7cd02d38cc042ec45aba0205850003267feeffdb1bcb704a70aa17", + "oid": 221323434836, + "crossed": true, + "fee": "0.000012", + "tid": 367546004540374, + "cloid": "0x00000000000000000000000385000109", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131906.0", + "side": "B", + "time": 1762185411963, + "startPosition": "-1195835622.0", + "dir": "Close Short", + "closedPnl": "232.286466", + "hash": "0x3753201d8b7cd02d38cc042ec45aba0205850003267feeffdb1bcb704a70aa17", + "oid": 221323434836, + "crossed": true, + "fee": "0.104983", + "tid": 444191535106185, + "cloid": "0x00000000000000000000000385000109", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "3.0", + "side": "B", + "time": 1762185412608, + "startPosition": "-236446.43", + "dir": "Close Short", + "closedPnl": "99.5769", + "hash": "0x374488f77e53f38938be042ec45ac20208bb00dd1957125bdb0d344a3d57cd73", + "oid": 221323446199, + "crossed": true, + "fee": "0.10497", + "tid": 683573287344593, + "cloid": "0x00000000000000000000000388000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.64", + "sz": "12.0", + "side": "B", + "time": 1762185412608, + "startPosition": "-236443.43", + "dir": "Close Short", + "closedPnl": "398.0676", + "hash": "0x374488f77e53f38938be042ec45ac20208bb00dd1957125bdb0d344a3d57cd73", + "oid": 221323446199, + "crossed": true, + "fee": "0.419932", + "tid": 2505603016567, + "cloid": "0x00000000000000000000000388000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.65", + "sz": "0.29", + "side": "B", + "time": 1762185412608, + "startPosition": "-236431.43", + "dir": "Close Short", + "closedPnl": "9.617067", + "hash": "0x374488f77e53f38938be042ec45ac20208bb00dd1957125bdb0d344a3d57cd73", + "oid": 221323446199, + "crossed": true, + "fee": "0.010148", + "tid": 700733140543360, + "cloid": "0x00000000000000000000000388000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "12.0", + "side": "B", + "time": 1762185412608, + "startPosition": "-236431.14", + "dir": "Close Short", + "closedPnl": "397.8276", + "hash": "0x374488f77e53f38938be042ec45ac20208bb00dd1957125bdb0d344a3d57cd73", + "oid": 221323446199, + "crossed": true, + "fee": "0.419983", + "tid": 46791102529115, + "cloid": "0x00000000000000000000000388000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "0.17", + "side": "B", + "time": 1762185412608, + "startPosition": "-236419.14", + "dir": "Close Short", + "closedPnl": "5.634191", + "hash": "0x374488f77e53f38938be042ec45ac20208bb00dd1957125bdb0d344a3d57cd73", + "oid": 221323446199, + "crossed": true, + "fee": "0.00595", + "tid": 427215493539486, + "cloid": "0x00000000000000000000000388000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "0.29", + "side": "B", + "time": 1762185412608, + "startPosition": "-236418.97", + "dir": "Close Short", + "closedPnl": "9.611267", + "hash": "0x374488f77e53f38938be042ec45ac20208bb00dd1957125bdb0d344a3d57cd73", + "oid": 221323446199, + "crossed": true, + "fee": "0.01015", + "tid": 719590574227259, + "cloid": "0x00000000000000000000000388000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.69", + "sz": "32.18", + "side": "B", + "time": 1762185412608, + "startPosition": "-236418.68", + "dir": "Close Short", + "closedPnl": "1065.875614", + "hash": "0x374488f77e53f38938be042ec45ac20208bb00dd1957125bdb0d344a3d57cd73", + "oid": 221323446199, + "crossed": true, + "fee": "1.126457", + "tid": 171895909729654, + "cloid": "0x00000000000000000000000388000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.3", + "sz": "0.0358", + "side": "B", + "time": 1762185413430, + "startPosition": "-2050.7472", + "dir": "Close Short", + "closedPnl": "18.375424", + "hash": "0x7fb0883bfd42487a812a042ec45acd02080b00219845674c2379338ebc462265", + "oid": 221323464623, + "crossed": true, + "fee": "0.027044", + "tid": 863872320283221, + "cloid": "0x00000000000000000000000387000151", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.5", + "sz": "1.0883", + "side": "B", + "time": 1762185413430, + "startPosition": "-2050.7114", + "dir": "Close Short", + "closedPnl": "558.384964", + "hash": "0x7fb0883bfd42487a812a042ec45acd02080b00219845674c2379338ebc462265", + "oid": 221323464623, + "crossed": true, + "fee": "0.822183", + "tid": 419455961511743, + "cloid": "0x00000000000000000000000387000151", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.5", + "sz": "0.0042", + "side": "B", + "time": 1762185413430, + "startPosition": "-2049.6231", + "dir": "Close Short", + "closedPnl": "2.154936", + "hash": "0x7fb0883bfd42487a812a042ec45acd02080b00219845674c2379338ebc462265", + "oid": 221323464623, + "crossed": true, + "fee": "0.003172", + "tid": 863720561944734, + "cloid": "0x00000000000000000000000387000151", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.6", + "sz": "1.6493", + "side": "B", + "time": 1762185413430, + "startPosition": "-2049.6189", + "dir": "Close Short", + "closedPnl": "846.057914", + "hash": "0x7fb0883bfd42487a812a042ec45acd02080b00219845674c2379338ebc462265", + "oid": 221323464623, + "crossed": true, + "fee": "1.246039", + "tid": 936843847991402, + "cloid": "0x00000000000000000000000387000151", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.71", + "sz": "22.73", + "side": "B", + "time": 1762185414654, + "startPosition": "-236386.5", + "dir": "Close Short", + "closedPnl": "752.415279", + "hash": "0xd31e833cafdb21f7d498042ec45ade02020700224ade40c976e72e8f6edefbe2", + "oid": 221323486903, + "crossed": true, + "fee": "0.795756", + "tid": 220664966986448, + "cloid": "0x00000000000000000000000388000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.71", + "sz": "0.95", + "side": "B", + "time": 1762185414654, + "startPosition": "-236363.77", + "dir": "Close Short", + "closedPnl": "31.447185", + "hash": "0xd31e833cafdb21f7d498042ec45ade02020700224ade40c976e72e8f6edefbe2", + "oid": 221323486903, + "crossed": true, + "fee": "0.033258", + "tid": 414773333391140, + "cloid": "0x00000000000000000000000388000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.71", + "sz": "36.22", + "side": "B", + "time": 1762185414654, + "startPosition": "-236362.82", + "dir": "Close Short", + "closedPnl": "1198.965306", + "hash": "0xd31e833cafdb21f7d498042ec45ade02020700224ade40c976e72e8f6edefbe2", + "oid": 221323486903, + "crossed": true, + "fee": "1.268029", + "tid": 1022395168727049, + "cloid": "0x00000000000000000000000388000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.6", + "sz": "0.0277", + "side": "B", + "time": 1762185414977, + "startPosition": "-2047.9696", + "dir": "Close Short", + "closedPnl": "14.209546", + "hash": "0x8215d62cf7493491838f042ec45ae30201bd0012924c536325de817fb64d0e7c", + "oid": 221323488622, + "crossed": true, + "fee": "0.020927", + "tid": 866272700309782, + "cloid": "0x00000000000000000000000387000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.6", + "sz": "2.7499", + "side": "B", + "time": 1762185414977, + "startPosition": "-2047.9419", + "dir": "Close Short", + "closedPnl": "1410.643702", + "hash": "0x8215d62cf7493491838f042ec45ae30201bd0012924c536325de817fb64d0e7c", + "oid": 221323488622, + "crossed": true, + "fee": "2.077538", + "tid": 770358068203643, + "cloid": "0x00000000000000000000000387000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.6", + "sz": "2.7775", + "side": "B", + "time": 1762185416949, + "startPosition": "-2045.192", + "dir": "Close Short", + "closedPnl": "1424.80195", + "hash": "0x7c32f4c5e899ab6a7dac042ec45afe0208d300ab839cca3c1ffba018a79d8555", + "oid": 221323518324, + "crossed": true, + "fee": "2.09839", + "tid": 286414838817110, + "cloid": "0x00000000000000000000000387000153", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "59.88", + "side": "B", + "time": 1762185417492, + "startPosition": "-236326.6", + "dir": "Close Short", + "closedPnl": "1976.776524", + "hash": "0x1d4a05b6b0a302901ec3042ec45b06020dd4009c4ba62162c112b1096fa6dc7a", + "oid": 221323530518, + "crossed": true, + "fee": "2.097476", + "tid": 997975002619296, + "cloid": "0x00000000000000000000000388000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.9", + "sz": "0.1065", + "side": "B", + "time": 1762185418493, + "startPosition": "-2042.4145", + "dir": "Close Short", + "closedPnl": "54.70692", + "hash": "0x9bd4c8164e42d6f69d4e042ec45b140209f800fbe945f5c83f9d73690d46b0e1", + "oid": 221323550092, + "crossed": true, + "fee": "0.080444", + "tid": 672257773077450, + "cloid": "0x00000000000000000000000387000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.9", + "sz": "1.5803", + "side": "B", + "time": 1762185418493, + "startPosition": "-2042.308", + "dir": "Close Short", + "closedPnl": "811.768504", + "hash": "0x9bd4c8164e42d6f69d4e042ec45b140209f800fbe945f5c83f9d73690d46b0e1", + "oid": 221323550092, + "crossed": true, + "fee": "1.193678", + "tid": 485377745111378, + "cloid": "0x00000000000000000000000387000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.9", + "sz": "1.0866", + "side": "B", + "time": 1762185418493, + "startPosition": "-2040.7277", + "dir": "Close Short", + "closedPnl": "558.164688", + "hash": "0x9bd4c8164e42d6f69d4e042ec45b140209f800fbe945f5c83f9d73690d46b0e1", + "oid": 221323550092, + "crossed": true, + "fee": "0.820762", + "tid": 597383849350471, + "cloid": "0x00000000000000000000000387000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.9", + "sz": "0.0042", + "side": "B", + "time": 1762185418493, + "startPosition": "-2039.6411", + "dir": "Close Short", + "closedPnl": "2.157456", + "hash": "0x9bd4c8164e42d6f69d4e042ec45b140209f800fbe945f5c83f9d73690d46b0e1", + "oid": 221323550092, + "crossed": true, + "fee": "0.003172", + "tid": 916659813757119, + "cloid": "0x00000000000000000000000387000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26926", + "sz": "372.8", + "side": "B", + "time": 1762185418869, + "startPosition": "-4007977.5", + "dir": "Close Short", + "closedPnl": "198.333328", + "hash": "0x67f1ad6673f5973c696b042ec45b1a02036d004c0ef8b60e0bba58b932f97127", + "oid": 221323530521, + "crossed": false, + "fee": "0.00281", + "tid": 202051039685577, + "cloid": "0x00000000000000000000000384000111", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "121160.0", + "side": "B", + "time": 1762185419005, + "startPosition": "-1195703716.0", + "dir": "Close Short", + "closedPnl": "213.36276", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 221323554007, + "crossed": false, + "fee": "0.012857", + "tid": 664273302630236, + "cloid": "0x00000000000000000000000385000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.77", + "sz": "59.89", + "side": "B", + "time": 1762185419146, + "startPosition": "-236266.72", + "dir": "Close Short", + "closedPnl": "1978.903347", + "hash": "0x69468d338ed9e1ed6ac0042ec45b1e020437001929dd00bf0d0f38864dddbbd8", + "oid": 221323563391, + "crossed": true, + "fee": "2.097449", + "tid": 362562574342973, + "cloid": "0x00000000000000000000000388000136", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26898", + "sz": "372.8", + "side": "A", + "time": 1762185419510, + "startPosition": "4025573.9960630001", + "dir": "Sell", + "closedPnl": "-198.59570875", + "hash": "0xee44e5af7a72b779efbe042ec45b210203b200951575d64b920d910239769164", + "oid": 221323571920, + "crossed": true, + "fee": "0.0280772", + "tid": 155580048999319, + "cloid": "0x10000000000000000000000475000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.9", + "sz": "2.7782", + "side": "B", + "time": 1762185420027, + "startPosition": "-2039.6369", + "dir": "Close Short", + "closedPnl": "1427.105776", + "hash": "0xfffbdac81bcb283a0175042ec45b2802012c00adb6ce470da3c4861adacf0225", + "oid": 221323578430, + "crossed": true, + "fee": "2.09851", + "tid": 697751022053597, + "cloid": "0x00000000000000000000000387000155", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.77", + "sz": "59.88", + "side": "B", + "time": 1762185421079, + "startPosition": "-236206.83", + "dir": "Close Short", + "closedPnl": "1978.572924", + "hash": "0x54cc60374a4109fc5646042ec45b35020d53001ce54428cef8950b8a0944e3e6", + "oid": 221323598497, + "crossed": true, + "fee": "2.097099", + "tid": 353445881322109, + "cloid": "0x00000000000000000000000388000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "10697.0", + "side": "B", + "time": 1762185421552, + "startPosition": "-1195582556.0", + "dir": "Close Short", + "closedPnl": "18.837417", + "hash": "0x2f581da7396625aa30d1042ec45b3d0210ed008cd469447cd320c8f9f869ff94", + "oid": 221323598505, + "crossed": false, + "fee": "0.001135", + "tid": 315732685112936, + "cloid": "0x00000000000000000000000385000113", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.8", + "sz": "2.7786", + "side": "B", + "time": 1762185421975, + "startPosition": "-2036.8587", + "dir": "Close Short", + "closedPnl": "1427.589108", + "hash": "0x7b6074c42240cedd7cda042ec45b420217d200a9bd43edaf1f292016e144a8c8", + "oid": 221323614063, + "crossed": true, + "fee": "2.098754", + "tid": 634697638562420, + "cloid": "0x00000000000000000000000387000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "59.93", + "side": "B", + "time": 1762185423114, + "startPosition": "-236146.95", + "dir": "Close Short", + "closedPnl": "1989.214539", + "hash": "0xdbc1468431533b35dd3b042ec45b4f0209ea0069cc565a077f89f1d6f0571520", + "oid": 221323638433, + "crossed": true, + "fee": "2.096962", + "tid": 829558217970005, + "cloid": "0x00000000000000000000000388000138", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26896", + "sz": "372.8", + "side": "B", + "time": 1762185424079, + "startPosition": "-4007604.7000000002", + "dir": "Close Short", + "closedPnl": "198.445168", + "hash": "0xec93d5273d4e7345ee0d042ec45b5c020700000cd8419217905c8079fc424d30", + "oid": 221323591135, + "crossed": false, + "fee": "0.002807", + "tid": 437422659493277, + "cloid": "0x00000000000000000000000384000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26896", + "sz": "1346.2", + "side": "B", + "time": 1762185424247, + "startPosition": "-4007231.8999999999", + "dir": "Close Short", + "closedPnl": "716.595722", + "hash": "0x5ffbb77be048225e6175042ec45b5e020d2600617b4b413003c462ce9f4bfc49", + "oid": 221323591135, + "crossed": false, + "fee": "0.010138", + "tid": 609366032044830, + "cloid": "0x00000000000000000000000384000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26896", + "sz": "1624.3", + "side": "B", + "time": 1762185424247, + "startPosition": "-4005885.7000000002", + "dir": "Close Short", + "closedPnl": "864.631133", + "hash": "0xda5faa925fbb079ddbd9042ec45b5e020d350077fabe266f7e2855e51ebee188", + "oid": 221323591135, + "crossed": false, + "fee": "0.012232", + "tid": 369731638040083, + "cloid": "0x00000000000000000000000384000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003781", + "sz": "132064.0", + "side": "B", + "time": 1762185424585, + "startPosition": "-1195571859.0", + "dir": "Close Short", + "closedPnl": "233.75328", + "hash": "0x18ce71b7c9a9e8da1a48042ec45b63021953009d64ad07acbc971d0a88adc2c4", + "oid": 221323677268, + "crossed": true, + "fee": "0.10486", + "tid": 1004254266583322, + "cloid": "0x00000000000000000000000385000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "59.98", + "side": "B", + "time": 1762185425697, + "startPosition": "-236087.02", + "dir": "Close Short", + "closedPnl": "1998.671554", + "hash": "0x9914566130fb710f9a8e042ec45b6d0204de0046cbfe8fe13cdd01b3efff4afa", + "oid": 221323693576, + "crossed": true, + "fee": "2.097074", + "tid": 405305585332716, + "cloid": "0x00000000000000000000000388000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.7", + "sz": "2.7791", + "side": "B", + "time": 1762185425697, + "startPosition": "-2034.0801", + "dir": "Close Short", + "closedPnl": "1433.682108", + "hash": "0x8fe66cb97a4097ff9160042ec45b6d02053b009f1543b6d133af180c394471ea", + "oid": 221323693620, + "crossed": true, + "fee": "2.097906", + "tid": 216169305945200, + "cloid": "0x00000000000000000000000387000157", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "83847.0", + "side": "B", + "time": 1762185427477, + "startPosition": "-1195439795.0", + "dir": "Close Short", + "closedPnl": "148.493037", + "hash": "0x6b998b4cd5f5e6dc6d13042ec45b86020f71003270f905ae0f62369f94f9c0c7", + "oid": 221323720189, + "crossed": false, + "fee": "0.008874", + "tid": 975511721104988, + "cloid": "0x00000000000000000000000385000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "48453.0", + "side": "B", + "time": 1762185427529, + "startPosition": "-1195355948.0", + "dir": "Close Short", + "closedPnl": "85.810263", + "hash": "0x2e504a49823245122fca042ec45b87020910002f1d3563e4d218f59c41361efc", + "oid": 221323720189, + "crossed": false, + "fee": "0.005128", + "tid": 965805244563675, + "cloid": "0x00000000000000000000000385000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.48", + "sz": "60.0", + "side": "B", + "time": 1762185427712, + "startPosition": "-236027.04", + "dir": "Close Short", + "closedPnl": "1999.938", + "hash": "0x4334f8e45e54ebd244ae042ec45b89020e9800c9f9580aa4e6fda4371d58c5bc", + "oid": 221323743624, + "crossed": true, + "fee": "2.097648", + "tid": 135487441071469, + "cloid": "0x00000000000000000000000388000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.0", + "sz": "0.1104", + "side": "B", + "time": 1762185427712, + "startPosition": "-2031.301", + "dir": "Close Short", + "closedPnl": "57.030432", + "hash": "0x57f1fec4aaa54c1a596b042ec45b89020ea500aa45a86aecfbbaaa1769a92604", + "oid": 221323743632, + "crossed": true, + "fee": "0.083323", + "tid": 362913338225401, + "cloid": "0x00000000000000000000000387000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.0", + "sz": "0.2677", + "side": "B", + "time": 1762185427712, + "startPosition": "-2031.1906", + "dir": "Close Short", + "closedPnl": "138.288466", + "hash": "0x57f1fec4aaa54c1a596b042ec45b89020ea500aa45a86aecfbbaaa1769a92604", + "oid": 221323743632, + "crossed": true, + "fee": "0.202043", + "tid": 987781930554859, + "cloid": "0x00000000000000000000000387000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.0", + "sz": "1.2642", + "side": "B", + "time": 1762185427712, + "startPosition": "-2030.9229", + "dir": "Close Short", + "closedPnl": "653.060436", + "hash": "0x57f1fec4aaa54c1a596b042ec45b89020ea500aa45a86aecfbbaaa1769a92604", + "oid": 221323743632, + "crossed": true, + "fee": "0.954142", + "tid": 622409241234010, + "cloid": "0x00000000000000000000000387000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.0", + "sz": "1.138", + "side": "B", + "time": 1762185427712, + "startPosition": "-2029.6587", + "dir": "Close Short", + "closedPnl": "587.86804", + "hash": "0x57f1fec4aaa54c1a596b042ec45b89020ea500aa45a86aecfbbaaa1769a92604", + "oid": 221323743632, + "crossed": true, + "fee": "0.858894", + "tid": 892654968716610, + "cloid": "0x00000000000000000000000387000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.6", + "sz": "2.7805", + "side": "B", + "time": 1762185429564, + "startPosition": "-2028.5207", + "dir": "Close Short", + "closedPnl": "1437.46289", + "hash": "0x65679c044688b51366e1042ec45b9d0205af00e9e18bd3e509304757058c8efe", + "oid": 221323781417, + "crossed": true, + "fee": "2.098321", + "tid": 369358850662180, + "cloid": "0x00000000000000000000000387000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "132345.0", + "side": "B", + "time": 1762185429776, + "startPosition": "-1195307495.0", + "dir": "Close Short", + "closedPnl": "234.382995", + "hash": "0x89818e358c5fd41f8afb042ec45ba00203c5001b2752f2f12d4a39884b53ae0a", + "oid": 221323784485, + "crossed": true, + "fee": "0.105055", + "tid": 294289660274506, + "cloid": "0x00000000000000000000000385000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "11.7", + "side": "B", + "time": 1762185429776, + "startPosition": "-235967.04", + "dir": "Close Short", + "closedPnl": "390.33891", + "hash": "0x3c5504d0a5e1169b3dce042ec45ba00203c600b640e4356de01db02364e4f085", + "oid": 221323784486, + "crossed": true, + "fee": "0.408967", + "tid": 497158647257213, + "cloid": "0x00000000000000000000000388000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.47", + "sz": "12.0", + "side": "B", + "time": 1762185429776, + "startPosition": "-235955.34", + "dir": "Close Short", + "closedPnl": "400.1076", + "hash": "0x3c5504d0a5e1169b3dce042ec45ba00203c600b640e4356de01db02364e4f085", + "oid": 221323784486, + "crossed": true, + "fee": "0.419504", + "tid": 446439911694652, + "cloid": "0x00000000000000000000000388000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "1.0", + "side": "B", + "time": 1762185429776, + "startPosition": "-235943.34", + "dir": "Close Short", + "closedPnl": "33.3223", + "hash": "0x3c5504d0a5e1169b3dce042ec45ba00203c600b640e4356de01db02364e4f085", + "oid": 221323784486, + "crossed": true, + "fee": "0.034962", + "tid": 514165906760641, + "cloid": "0x00000000000000000000000388000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "35.3", + "side": "B", + "time": 1762185429776, + "startPosition": "-235942.34", + "dir": "Close Short", + "closedPnl": "1175.92419", + "hash": "0x3c5504d0a5e1169b3dce042ec45ba00203c600b640e4356de01db02364e4f085", + "oid": 221323784486, + "crossed": true, + "fee": "1.234264", + "tid": 751947442845125, + "cloid": "0x00000000000000000000000388000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.2", + "sz": "2.0861", + "side": "B", + "time": 1762185431244, + "startPosition": "-2025.7402", + "dir": "Close Short", + "closedPnl": "1075.134218", + "hash": "0x915e4e12d4e049f892d8042ec45bb202045c00f86fe368ca3526f96593e423e3", + "oid": 221323815822, + "crossed": true, + "fee": "1.574988", + "tid": 702136405432125, + "cloid": "0x00000000000000000000000387000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.2", + "sz": "0.6934", + "side": "B", + "time": 1762185431244, + "startPosition": "-2023.6541", + "dir": "Close Short", + "closedPnl": "357.364492", + "hash": "0x915e4e12d4e049f892d8042ec45bb202045c00f86fe368ca3526f96593e423e3", + "oid": 221323815822, + "crossed": true, + "fee": "0.523511", + "tid": 250355781116944, + "cloid": "0x00000000000000000000000387000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26866", + "sz": "372.8", + "side": "A", + "time": 1762185431244, + "startPosition": "4025201.1960629998", + "dir": "Sell", + "closedPnl": "-198.71500475", + "hash": "0x8268d64ed362ad4c83e2042ec45bb202048400346e65cc1e263181a192668737", + "oid": 221323693697, + "crossed": false, + "fee": "0.00701095", + "tid": 608878717686670, + "cloid": "0x10000000000000000000000475000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26866", + "sz": "1624.3", + "side": "A", + "time": 1762185431244, + "startPosition": "4024828.396063", + "dir": "Sell", + "closedPnl": "-865.80681926", + "hash": "0x8268d64ed362ad4c83e2042ec45bb202048400346e65cc1e263181a192668737", + "oid": 221323704276, + "crossed": false, + "fee": "0.03054691", + "tid": 964909362358931, + "cloid": "0x10000000000000000000000475000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26866", + "sz": "1336.2", + "side": "A", + "time": 1762185431244, + "startPosition": "4023204.0960630002", + "dir": "Sell", + "closedPnl": "-712.2397783", + "hash": "0x8268d64ed362ad4c83e2042ec45bb202048400346e65cc1e263181a192668737", + "oid": 221323704278, + "crossed": false, + "fee": "0.02512884", + "tid": 37228261587240, + "cloid": "0x10000000000000000000000475000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26866", + "sz": "10.0", + "side": "A", + "time": 1762185431664, + "startPosition": "4021867.896063", + "dir": "Sell", + "closedPnl": "-5.33033811", + "hash": "0xf484ff6ab87173c2f5fe042ec45bb7020924005053749295984daabd77754dad", + "oid": 221323704278, + "crossed": false, + "fee": "0.00018806", + "tid": 707329277104181, + "cloid": "0x10000000000000000000000475000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "26.53", + "side": "B", + "time": 1762185432298, + "startPosition": "-235907.04", + "dir": "Close Short", + "closedPnl": "883.775319", + "hash": "0xf56417186d1aa405f6dd042ec45bc002091100fe081dc2d8992cc26b2c1e7df0", + "oid": 221323835962, + "crossed": true, + "fee": "0.927621", + "tid": 687851189766763, + "cloid": "0x00000000000000000000000388000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "12.01", + "side": "B", + "time": 1762185432298, + "startPosition": "-235880.51", + "dir": "Close Short", + "closedPnl": "400.080723", + "hash": "0xf56417186d1aa405f6dd042ec45bc002091100fe081dc2d8992cc26b2c1e7df0", + "oid": 221323835962, + "crossed": true, + "fee": "0.419929", + "tid": 433392962234322, + "cloid": "0x00000000000000000000000388000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "14.81", + "side": "B", + "time": 1762185432298, + "startPosition": "-235868.5", + "dir": "Close Short", + "closedPnl": "493.355163", + "hash": "0xf56417186d1aa405f6dd042ec45bc002091100fe081dc2d8992cc26b2c1e7df0", + "oid": 221323835962, + "crossed": true, + "fee": "0.517831", + "tid": 41701653864526, + "cloid": "0x00000000000000000000000388000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "6.63", + "side": "B", + "time": 1762185432298, + "startPosition": "-235853.69", + "dir": "Close Short", + "closedPnl": "220.860549", + "hash": "0xf56417186d1aa405f6dd042ec45bc002091100fe081dc2d8992cc26b2c1e7df0", + "oid": 221323835962, + "crossed": true, + "fee": "0.231817", + "tid": 333789699510441, + "cloid": "0x00000000000000000000000388000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "132236.0", + "side": "B", + "time": 1762185432298, + "startPosition": "-1195175150.0", + "dir": "Close Short", + "closedPnl": "234.189956", + "hash": "0x71d23a5a36fce5b6734b042ec45bc002095f003fd1f00488159ae5acf5f0bfa1", + "oid": 221323835966, + "crossed": false, + "fee": "0.013995", + "tid": 713579639268021, + "cloid": "0x00000000000000000000000385000117", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "59.99", + "side": "B", + "time": 1762185433797, + "startPosition": "-235847.06", + "dir": "Close Short", + "closedPnl": "1998.404877", + "hash": "0x25863e46ed39f5bd26ff042ec45bd40212ff002c883d148fc94ee999ac3dcfa7", + "oid": 221323863635, + "crossed": true, + "fee": "2.09755", + "tid": 521675889020631, + "cloid": "0x00000000000000000000000388000143", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.8", + "sz": "0.4913", + "side": "B", + "time": 1762185434600, + "startPosition": "-2022.9607", + "dir": "Close Short", + "closedPnl": "253.894014", + "hash": "0x2f7c09092c3988f930f5042ec45bde020abd00eec73ca7cbd344b45beb3d62e3", + "oid": 221323885029, + "crossed": true, + "fee": "0.370783", + "tid": 1119469719231957, + "cloid": "0x00000000000000000000000387000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.8", + "sz": "0.709", + "side": "B", + "time": 1762185434600, + "startPosition": "-2022.4694", + "dir": "Close Short", + "closedPnl": "366.39702", + "hash": "0x2f7c09092c3988f930f5042ec45bde020abd00eec73ca7cbd344b45beb3d62e3", + "oid": 221323885029, + "crossed": true, + "fee": "0.53508", + "tid": 7961199713863, + "cloid": "0x00000000000000000000000387000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.8", + "sz": "0.7645", + "side": "B", + "time": 1762185434600, + "startPosition": "-2021.7604", + "dir": "Close Short", + "closedPnl": "395.07831", + "hash": "0x2f7c09092c3988f930f5042ec45bde020abd00eec73ca7cbd344b45beb3d62e3", + "oid": 221323885029, + "crossed": true, + "fee": "0.576966", + "tid": 916618810003875, + "cloid": "0x00000000000000000000000387000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.8", + "sz": "0.8155", + "side": "B", + "time": 1762185434600, + "startPosition": "-2020.9959", + "dir": "Close Short", + "closedPnl": "421.43409", + "hash": "0x2f7c09092c3988f930f5042ec45bde020abd00eec73ca7cbd344b45beb3d62e3", + "oid": 221323885029, + "crossed": true, + "fee": "0.615456", + "tid": 573015892515286, + "cloid": "0x00000000000000000000000387000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "45497.0", + "side": "B", + "time": 1762185434600, + "startPosition": "-1195042914.0", + "dir": "Close Short", + "closedPnl": "80.575187", + "hash": "0xf34f279391b7c491f4c8042ec45bde020ad500792cbae3649717d2e650bb9e7c", + "oid": 221323866553, + "crossed": false, + "fee": "0.004815", + "tid": 271411450056145, + "cloid": "0x00000000000000000000000385000118", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "86739.0", + "side": "B", + "time": 1762185434600, + "startPosition": "-1194997417.0", + "dir": "Close Short", + "closedPnl": "153.614769", + "hash": "0x3cbe530777c31aeb3e38042ec45bde020ade00ed12c639bde086fe5a36c6f4d5", + "oid": 221323866553, + "crossed": false, + "fee": "0.00918", + "tid": 211447003086277, + "cloid": "0x00000000000000000000000385000118", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "21.23", + "side": "B", + "time": 1762185435719, + "startPosition": "-235787.07", + "dir": "Close Short", + "closedPnl": "709.130829", + "hash": "0xd5e5671e169851e8d75f042ec45beb0203520003b19b70ba79ae1270d59c2bd3", + "oid": 221323905160, + "crossed": true, + "fee": "0.741905", + "tid": 950859714013039, + "cloid": "0x00000000000000000000000388000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "12.15", + "side": "B", + "time": 1762185435719, + "startPosition": "-235765.84", + "dir": "Close Short", + "closedPnl": "405.837945", + "hash": "0xd5e5671e169851e8d75f042ec45beb0203520003b19b70ba79ae1270d59c2bd3", + "oid": 221323905160, + "crossed": true, + "fee": "0.424595", + "tid": 577391867939236, + "cloid": "0x00000000000000000000000388000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "21.23", + "side": "B", + "time": 1762185435719, + "startPosition": "-235753.69", + "dir": "Close Short", + "closedPnl": "709.130829", + "hash": "0xd5e5671e169851e8d75f042ec45beb0203520003b19b70ba79ae1270d59c2bd3", + "oid": 221323905160, + "crossed": true, + "fee": "0.741905", + "tid": 343552852400940, + "cloid": "0x00000000000000000000000388000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "5.41", + "side": "B", + "time": 1762185435719, + "startPosition": "-235732.46", + "dir": "Close Short", + "closedPnl": "180.706443", + "hash": "0xd5e5671e169851e8d75f042ec45beb0203520003b19b70ba79ae1270d59c2bd3", + "oid": 221323905160, + "crossed": true, + "fee": "0.189058", + "tid": 2466031749773, + "cloid": "0x00000000000000000000000388000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.4", + "sz": "0.6554", + "side": "B", + "time": 1762185436868, + "startPosition": "-2020.1804", + "dir": "Close Short", + "closedPnl": "338.959772", + "hash": "0x30d50436622a1199324e042ec45bf8020472001bfd2d306bd49daf89212deb83", + "oid": 221323924206, + "crossed": true, + "fee": "0.494574", + "tid": 396471169421545, + "cloid": "0x00000000000000000000000387000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.5", + "sz": "0.2226", + "side": "B", + "time": 1762185436868, + "startPosition": "-2019.525", + "dir": "Close Short", + "closedPnl": "115.102008", + "hash": "0x30d50436622a1199324e042ec45bf8020472001bfd2d306bd49daf89212deb83", + "oid": 221323924206, + "crossed": true, + "fee": "0.167981", + "tid": 248386143111017, + "cloid": "0x00000000000000000000000387000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.7", + "sz": "1.9027", + "side": "B", + "time": 1762185436868, + "startPosition": "-2019.3024", + "dir": "Close Short", + "closedPnl": "983.467576", + "hash": "0x30d50436622a1199324e042ec45bf8020472001bfd2d306bd49daf89212deb83", + "oid": 221323924206, + "crossed": true, + "fee": "1.435923", + "tid": 150392829242207, + "cloid": "0x00000000000000000000000387000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "3.0", + "side": "B", + "time": 1762185437458, + "startPosition": "-235727.05", + "dir": "Close Short", + "closedPnl": "100.2069", + "hash": "0x2f2adb3b39b3f6c730a4042ec45bff0206f00020d4b71599d2f3868df8b7d0b1", + "oid": 221323937261, + "crossed": true, + "fee": "0.104838", + "tid": 466177331884658, + "cloid": "0x00000000000000000000000388000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.42", + "sz": "18.02", + "side": "B", + "time": 1762185437458, + "startPosition": "-235724.05", + "dir": "Close Short", + "closedPnl": "601.729246", + "hash": "0x2f2adb3b39b3f6c730a4042ec45bff0206f00020d4b71599d2f3868df8b7d0b1", + "oid": 221323937261, + "crossed": true, + "fee": "0.629766", + "tid": 488193044454576, + "cloid": "0x00000000000000000000000388000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.43", + "sz": "12.0", + "side": "B", + "time": 1762185437458, + "startPosition": "-235706.03", + "dir": "Close Short", + "closedPnl": "400.5876", + "hash": "0x2f2adb3b39b3f6c730a4042ec45bff0206f00020d4b71599d2f3868df8b7d0b1", + "oid": 221323937261, + "crossed": true, + "fee": "0.419403", + "tid": 203911047981831, + "cloid": "0x00000000000000000000000388000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "0.18", + "side": "B", + "time": 1762185437458, + "startPosition": "-235694.03", + "dir": "Close Short", + "closedPnl": "6.007014", + "hash": "0x2f2adb3b39b3f6c730a4042ec45bff0206f00020d4b71599d2f3868df8b7d0b1", + "oid": 221323937261, + "crossed": true, + "fee": "0.006291", + "tid": 40992922934855, + "cloid": "0x00000000000000000000000388000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "0.95", + "side": "B", + "time": 1762185437458, + "startPosition": "-235693.85", + "dir": "Close Short", + "closedPnl": "31.694185", + "hash": "0x2f2adb3b39b3f6c730a4042ec45bff0206f00020d4b71599d2f3868df8b7d0b1", + "oid": 221323937261, + "crossed": true, + "fee": "0.033206", + "tid": 165560153444562, + "cloid": "0x00000000000000000000000388000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "18.02", + "side": "B", + "time": 1762185437458, + "startPosition": "-235692.9", + "dir": "Close Short", + "closedPnl": "601.188646", + "hash": "0x2f2adb3b39b3f6c730a4042ec45bff0206f00020d4b71599d2f3868df8b7d0b1", + "oid": 221323937261, + "crossed": true, + "fee": "0.62988", + "tid": 555918852129390, + "cloid": "0x00000000000000000000000388000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "7.84", + "side": "B", + "time": 1762185437458, + "startPosition": "-235674.88", + "dir": "Close Short", + "closedPnl": "261.560432", + "hash": "0x2f2adb3b39b3f6c730a4042ec45bff0206f00020d4b71599d2f3868df8b7d0b1", + "oid": 221323937261, + "crossed": true, + "fee": "0.274043", + "tid": 936997450507859, + "cloid": "0x00000000000000000000000388000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.0", + "sz": "2.7803", + "side": "B", + "time": 1762185438468, + "startPosition": "-2017.3997", + "dir": "Close Short", + "closedPnl": "1436.247374", + "hash": "0x60785e7aee8058fa61f2042ec45c0a020b4e0060898377cc044109cdad8432e5", + "oid": 221323958920, + "crossed": true, + "fee": "2.098403", + "tid": 289970794772860, + "cloid": "0x00000000000000000000000387000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.36", + "sz": "60.04", + "side": "B", + "time": 1762185439426, + "startPosition": "-235667.04", + "dir": "Close Short", + "closedPnl": "2008.476092", + "hash": "0xebddd48210452b13ed57042ec45c15020c530067ab4849e58fa67fd4cf4904fe", + "oid": 221323984957, + "crossed": true, + "fee": "2.097533", + "tid": 924576045824228, + "cloid": "0x00000000000000000000000388000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003776", + "sz": "132236.0", + "side": "B", + "time": 1762185439426, + "startPosition": "-1194910678.0", + "dir": "Close Short", + "closedPnl": "234.7189", + "hash": "0xfcdd7c715c322430fe57042ec45c15020c6a0056f7354303a0a627c41b35fe1b", + "oid": 221323984970, + "crossed": true, + "fee": "0.104857", + "tid": 872806275503601, + "cloid": "0x00000000000000000000000385000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26832", + "sz": "3730.4", + "side": "B", + "time": 1762185439919, + "startPosition": "-4004261.3999999999", + "dir": "Close Short", + "closedPnl": "1988.11668", + "hash": "0x7e2ec759db89f0cc7fa8042ec45c1b020c89003f768d0f9e21f772ac9a8dcab7", + "oid": 221323946824, + "crossed": false, + "fee": "0.028026", + "tid": 320378658098464, + "cloid": "0x00000000000000000000000384000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.1", + "sz": "0.6558", + "side": "B", + "time": 1762185440416, + "startPosition": "-2014.6194", + "dir": "Close Short", + "closedPnl": "339.363384", + "hash": "0x5d3e2c679bd91e625eb7042ec45c22020173004d36dc3d340106d7ba5adcf84d", + "oid": 221324006594, + "crossed": true, + "fee": "0.494834", + "tid": 487886298358055, + "cloid": "0x00000000000000000000000387000164", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.1", + "sz": "2.1252", + "side": "B", + "time": 1762185440416, + "startPosition": "-2013.9636", + "dir": "Close Short", + "closedPnl": "1099.748496", + "hash": "0x5d3e2c679bd91e625eb7042ec45c22020173004d36dc3d340106d7ba5adcf84d", + "oid": 221324006594, + "crossed": true, + "fee": "1.603571", + "tid": 358413433955269, + "cloid": "0x00000000000000000000000387000164", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.14", + "sz": "60.08", + "side": "B", + "time": 1762185441513, + "startPosition": "-235607.0", + "dir": "Close Short", + "closedPnl": "2023.031784", + "hash": "0x58cd374ff2d4270d5a46042ec45c310205d800358dd745dffc95e2a2b1d800f7", + "oid": 221324038482, + "crossed": true, + "fee": "2.096155", + "tid": 577193864089211, + "cloid": "0x00000000000000000000000388000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132556.0", + "side": "B", + "time": 1762185441585, + "startPosition": "-1194778442.0", + "dir": "Close Short", + "closedPnl": "236.082236", + "hash": "0x7bba36024c70262e7d33042ec45c320202bd00e7e77345001f82e1550b740019", + "oid": 221324039852, + "crossed": true, + "fee": "0.104944", + "tid": 818687254100726, + "cloid": "0x00000000000000000000000385000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26802", + "sz": "373.1", + "side": "A", + "time": 1762185442670, + "startPosition": "4021857.896063", + "dir": "Sell", + "closedPnl": "-199.11369889", + "hash": "0x7fe09fedfc5abee0815a042ec45c400207a500d3975dddb223a94b40bb5e98cb", + "oid": 221324057081, + "crossed": false, + "fee": "0.00699987", + "tid": 20341847817521, + "cloid": "0x10000000000000000000000475000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "0.4673", + "side": "B", + "time": 1762185442742, + "startPosition": "-2011.8384", + "dir": "Close Short", + "closedPnl": "243.267034", + "hash": "0x71819104893cf91672fb042ec45c410209de00ea243017e8154a3c574830d301", + "oid": 221324069522, + "crossed": true, + "fee": "0.352297", + "tid": 343058094532259, + "cloid": "0x00000000000000000000000387000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "0.1546", + "side": "B", + "time": 1762185442742, + "startPosition": "-2011.3711", + "dir": "Close Short", + "closedPnl": "80.481668", + "hash": "0x71819104893cf91672fb042ec45c410209de00ea243017e8154a3c574830d301", + "oid": 221324069522, + "crossed": true, + "fee": "0.116552", + "tid": 520440666414641, + "cloid": "0x00000000000000000000000387000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "0.5578", + "side": "B", + "time": 1762185442742, + "startPosition": "-2011.2165", + "dir": "Close Short", + "closedPnl": "290.379524", + "hash": "0x71819104893cf91672fb042ec45c410209de00ea243017e8154a3c574830d301", + "oid": 221324069522, + "crossed": true, + "fee": "0.420525", + "tid": 135069413241404, + "cloid": "0x00000000000000000000000387000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "0.4673", + "side": "B", + "time": 1762185442742, + "startPosition": "-2010.6587", + "dir": "Close Short", + "closedPnl": "243.267034", + "hash": "0x71819104893cf91672fb042ec45c410209de00ea243017e8154a3c574830d301", + "oid": 221324069522, + "crossed": true, + "fee": "0.352297", + "tid": 504831203706423, + "cloid": "0x00000000000000000000000387000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "1.1364", + "side": "B", + "time": 1762185442742, + "startPosition": "-2010.1914", + "dir": "Close Short", + "closedPnl": "591.587112", + "hash": "0x71819104893cf91672fb042ec45c410209de00ea243017e8154a3c574830d301", + "oid": 221324069522, + "crossed": true, + "fee": "0.856731", + "tid": 418744045122818, + "cloid": "0x00000000000000000000000387000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003764", + "sz": "132781.0", + "side": "B", + "time": 1762185443541, + "startPosition": "-1194645886.0", + "dir": "Close Short", + "closedPnl": "237.279647", + "hash": "0x976f51b6ad1cdf5098e9042ec45c4a0208df009c481ffe223b37fd096c10b93b", + "oid": 221324093312, + "crossed": true, + "fee": "0.104955", + "tid": 696148944234088, + "cloid": "0x00000000000000000000000385000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.0", + "sz": "60.13", + "side": "B", + "time": 1762185444253, + "startPosition": "-235546.92", + "dir": "Close Short", + "closedPnl": "2033.133599", + "hash": "0x28349db982c46ea029ae042ec45c520211ca009f1dc78d72cbfd490c41c8488a", + "oid": 221324107851, + "crossed": true, + "fee": "2.096131", + "tid": 1005528776008769, + "cloid": "0x00000000000000000000000388000148", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.9", + "sz": "1.136", + "side": "B", + "time": 1762185444253, + "startPosition": "-2009.055", + "dir": "Close Short", + "closedPnl": "592.62848", + "hash": "0xa8b72151e1856932aa30042ec45c5202129600377c8888044c7fcca4a089431d", + "oid": 221324107961, + "crossed": true, + "fee": "0.856167", + "tid": 46104199481566, + "cloid": "0x00000000000000000000000387000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.9", + "sz": "1.6477", + "side": "B", + "time": 1762185444253, + "startPosition": "-2007.919", + "dir": "Close Short", + "closedPnl": "859.572136", + "hash": "0xa8b72151e1856932aa30042ec45c5202129600377c8888044c7fcca4a089431d", + "oid": 221324107961, + "crossed": true, + "fee": "1.24182", + "tid": 34067455035893, + "cloid": "0x00000000000000000000000387000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133036.0", + "side": "B", + "time": 1762185446070, + "startPosition": "-1194513105.0", + "dir": "Close Short", + "closedPnl": "238.79962", + "hash": "0xedaed6d5f4ac06ceef28042ec45c650206f900bb8faf25a091778228b3afe0b9", + "oid": 221324144686, + "crossed": true, + "fee": "0.104933", + "tid": 1028527703856438, + "cloid": "0x00000000000000000000000385000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.94", + "sz": "12.73", + "side": "B", + "time": 1762185446289, + "startPosition": "-235486.79", + "dir": "Close Short", + "closedPnl": "431.194379", + "hash": "0x2f0591fa450c499e307f042ec45c680206a000dfe00f6870d2ce3d4d04002388", + "oid": 221324146933, + "crossed": true, + "fee": "0.443607", + "tid": 806226671109044, + "cloid": "0x00000000000000000000000388000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.94", + "sz": "47.46", + "side": "B", + "time": 1762185446289, + "startPosition": "-235474.06", + "dir": "Close Short", + "closedPnl": "1607.579358", + "hash": "0x2f0591fa450c499e307f042ec45c680206a000dfe00f6870d2ce3d4d04002388", + "oid": 221324146933, + "crossed": true, + "fee": "1.653857", + "tid": 779853468898354, + "cloid": "0x00000000000000000000000388000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.8", + "sz": "0.4628", + "side": "B", + "time": 1762185447265, + "startPosition": "-2006.2713", + "dir": "Close Short", + "closedPnl": "241.942584", + "hash": "0x96f83465b1be883c9871042ec45c74020367004b4cb1a70e3ac0dfb870b26227", + "oid": 221324167999, + "crossed": true, + "fee": "0.348691", + "tid": 940087701016355, + "cloid": "0x00000000000000000000000387000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.8", + "sz": "0.5182", + "side": "B", + "time": 1762185447265, + "startPosition": "-2005.8085", + "dir": "Close Short", + "closedPnl": "270.904596", + "hash": "0x96f83465b1be883c9871042ec45c74020367004b4cb1a70e3ac0dfb870b26227", + "oid": 221324167999, + "crossed": true, + "fee": "0.390431", + "tid": 975224276568562, + "cloid": "0x00000000000000000000000387000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.8", + "sz": "0.6381", + "side": "B", + "time": 1762185447265, + "startPosition": "-2005.2903", + "dir": "Close Short", + "closedPnl": "333.585918", + "hash": "0x96f83465b1be883c9871042ec45c74020367004b4cb1a70e3ac0dfb870b26227", + "oid": 221324167999, + "crossed": true, + "fee": "0.480768", + "tid": 706031027373739, + "cloid": "0x00000000000000000000000387000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.8", + "sz": "0.4569", + "side": "B", + "time": 1762185447265, + "startPosition": "-2004.6522", + "dir": "Close Short", + "closedPnl": "238.858182", + "hash": "0x96f83465b1be883c9871042ec45c74020367004b4cb1a70e3ac0dfb870b26227", + "oid": 221324167999, + "crossed": true, + "fee": "0.344245", + "tid": 300740445743428, + "cloid": "0x00000000000000000000000387000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.9", + "sz": "0.4483", + "side": "B", + "time": 1762185447265, + "startPosition": "-2004.1953", + "dir": "Close Short", + "closedPnl": "234.317444", + "hash": "0x96f83465b1be883c9871042ec45c74020367004b4cb1a70e3ac0dfb870b26227", + "oid": 221324167999, + "crossed": true, + "fee": "0.337775", + "tid": 326264695767228, + "cloid": "0x00000000000000000000000387000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.9", + "sz": "0.2599", + "side": "B", + "time": 1762185447265, + "startPosition": "-2003.747", + "dir": "Close Short", + "closedPnl": "135.844532", + "hash": "0x96f83465b1be883c9871042ec45c74020367004b4cb1a70e3ac0dfb870b26227", + "oid": 221324167999, + "crossed": true, + "fee": "0.195823", + "tid": 23461634843617, + "cloid": "0x00000000000000000000000387000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.92", + "sz": "60.19", + "side": "B", + "time": 1762185448336, + "startPosition": "-235426.6", + "dir": "Close Short", + "closedPnl": "2039.977537", + "hash": "0xe1ad43233732f62de326042ec45c800210430008d23614ff8575ee75f636d018", + "oid": 221324186697, + "crossed": true, + "fee": "2.097212", + "tid": 831725894000620, + "cloid": "0x00000000000000000000000388000150", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.5", + "sz": "2.7849", + "side": "B", + "time": 1762185449231, + "startPosition": "-2003.4871", + "dir": "Close Short", + "closedPnl": "1453.940592", + "hash": "0xa28b06a0f41df6eea404042ec45c8a02058f00868f1115c04653b1f3b311d0d9", + "oid": 221324199823, + "crossed": true, + "fee": "2.098658", + "tid": 959015144899753, + "cloid": "0x00000000000000000000000387000168", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.3", + "sz": "1.0594", + "side": "B", + "time": 1762185451209, + "startPosition": "-2000.7022", + "dir": "Close Short", + "closedPnl": "553.303432", + "hash": "0xab36af982ca0b0f7acb0042ec45ca2020288007dc7a3cfc94eff5aeaeba48ae2", + "oid": 221324233418, + "crossed": true, + "fee": "0.798303", + "tid": 1107375841539570, + "cloid": "0x00000000000000000000000387000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.4", + "sz": "1.0594", + "side": "B", + "time": 1762185451209, + "startPosition": "-1999.6428", + "dir": "Close Short", + "closedPnl": "553.197492", + "hash": "0xab36af982ca0b0f7acb0042ec45ca2020288007dc7a3cfc94eff5aeaeba48ae2", + "oid": 221324233418, + "crossed": true, + "fee": "0.798325", + "tid": 343876595400304, + "cloid": "0x00000000000000000000000387000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.5", + "sz": "0.2229", + "side": "B", + "time": 1762185451209, + "startPosition": "-1998.5834", + "dir": "Close Short", + "closedPnl": "116.371632", + "hash": "0xab36af982ca0b0f7acb0042ec45ca2020288007dc7a3cfc94eff5aeaeba48ae2", + "oid": 221324233418, + "crossed": true, + "fee": "0.167974", + "tid": 651133909576232, + "cloid": "0x00000000000000000000000387000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.5", + "sz": "0.4433", + "side": "B", + "time": 1762185451209, + "startPosition": "-1998.3605", + "dir": "Close Short", + "closedPnl": "231.438064", + "hash": "0xab36af982ca0b0f7acb0042ec45ca2020288007dc7a3cfc94eff5aeaeba48ae2", + "oid": 221324233418, + "crossed": true, + "fee": "0.334064", + "tid": 430403938957737, + "cloid": "0x00000000000000000000000387000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.01", + "sz": "0.09", + "side": "B", + "time": 1762185451209, + "startPosition": "-235366.41", + "dir": "Close Short", + "closedPnl": "3.042207", + "hash": "0xbc365787789daa14bdb0042ec45ca202029f006d1390c8e65fff02da379183ff", + "oid": 221324233431, + "crossed": true, + "fee": "0.003137", + "tid": 1058852481382724, + "cloid": "0x00000000000000000000000388000151", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.01", + "sz": "60.06", + "side": "B", + "time": 1762185451209, + "startPosition": "-235366.32", + "dir": "Close Short", + "closedPnl": "2030.166138", + "hash": "0xbc365787789daa14bdb0042ec45ca202029f006d1390c8e65fff02da379183ff", + "oid": 221324233431, + "crossed": true, + "fee": "2.093817", + "tid": 454365297350483, + "cloid": "0x00000000000000000000000388000151", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003765", + "sz": "133014.0", + "side": "B", + "time": 1762185451692, + "startPosition": "-1194380069.0", + "dir": "Close Short", + "closedPnl": "237.563004", + "hash": "0x436601c200ba59ee44df042ec45ca702139800a79bbd78c0e72ead14bfbe33d8", + "oid": 221324241397, + "crossed": true, + "fee": "0.105167", + "tid": 403154450770592, + "cloid": "0x00000000000000000000000385000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.5", + "sz": "0.0755", + "side": "B", + "time": 1762185453124, + "startPosition": "-1997.9172", + "dir": "Close Short", + "closedPnl": "39.34154", + "hash": "0xbe43d8580174978abfbd042ec45cb8020d6f003d9c77b65c620c83aac0787175", + "oid": 221324284502, + "crossed": true, + "fee": "0.056911", + "tid": 146316494644845, + "cloid": "0x00000000000000000000000387000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.5", + "sz": "0.0055", + "side": "B", + "time": 1762185453124, + "startPosition": "-1997.8417", + "dir": "Close Short", + "closedPnl": "2.86594", + "hash": "0xbe43d8580174978abfbd042ec45cb8020d6f003d9c77b65c620c83aac0787175", + "oid": 221324284502, + "crossed": true, + "fee": "0.004145", + "tid": 838745435721532, + "cloid": "0x00000000000000000000000387000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.8", + "sz": "0.0755", + "side": "B", + "time": 1762185453124, + "startPosition": "-1997.8362", + "dir": "Close Short", + "closedPnl": "39.31889", + "hash": "0xbe43d8580174978abfbd042ec45cb8020d6f003d9c77b65c620c83aac0787175", + "oid": 221324284502, + "crossed": true, + "fee": "0.056916", + "tid": 167273977181634, + "cloid": "0x00000000000000000000000387000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "0.0083", + "side": "B", + "time": 1762185453124, + "startPosition": "-1997.7607", + "dir": "Close Short", + "closedPnl": "4.320814", + "hash": "0xbe43d8580174978abfbd042ec45cb8020d6f003d9c77b65c620c83aac0787175", + "oid": 221324284502, + "crossed": true, + "fee": "0.006257", + "tid": 993662019827859, + "cloid": "0x00000000000000000000000387000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "2.6188", + "side": "B", + "time": 1762185453124, + "startPosition": "-1997.7524", + "dir": "Close Short", + "closedPnl": "1363.294904", + "hash": "0xbe43d8580174978abfbd042ec45cb8020d6f003d9c77b65c620c83aac0787175", + "oid": 221324284502, + "crossed": true, + "fee": "1.974313", + "tid": 335625890846968, + "cloid": "0x00000000000000000000000387000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.11", + "sz": "5.94", + "side": "B", + "time": 1762185453520, + "startPosition": "-235306.26", + "dir": "Close Short", + "closedPnl": "200.191662", + "hash": "0x872912d6b2cf12d888a2042ec45cbc02113800bc4dc231aa2af1be2971c2ecc3", + "oid": 221324293197, + "crossed": true, + "fee": "0.207205", + "tid": 517224596520961, + "cloid": "0x00000000000000000000000388000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.12", + "sz": "0.18", + "side": "B", + "time": 1762185453520, + "startPosition": "-235300.32", + "dir": "Close Short", + "closedPnl": "6.064614", + "hash": "0x872912d6b2cf12d888a2042ec45cbc02113800bc4dc231aa2af1be2971c2ecc3", + "oid": 221324293197, + "crossed": true, + "fee": "0.006279", + "tid": 736152746847886, + "cloid": "0x00000000000000000000000388000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.15", + "sz": "5.97", + "side": "B", + "time": 1762185453520, + "startPosition": "-235300.14", + "dir": "Close Short", + "closedPnl": "200.963931", + "hash": "0x872912d6b2cf12d888a2042ec45cbc02113800bc4dc231aa2af1be2971c2ecc3", + "oid": 221324293197, + "crossed": true, + "fee": "0.208302", + "tid": 602087346050933, + "cloid": "0x00000000000000000000000388000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.16", + "sz": "48.05", + "side": "B", + "time": 1762185453520, + "startPosition": "-235294.17", + "dir": "Close Short", + "closedPnl": "1616.993015", + "hash": "0x872912d6b2cf12d888a2042ec45cbc02113800bc4dc231aa2af1be2971c2ecc3", + "oid": 221324293197, + "crossed": true, + "fee": "1.676637", + "tid": 258128800330818, + "cloid": "0x00000000000000000000000388000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132688.0", + "side": "B", + "time": 1762185453736, + "startPosition": "-1194247055.0", + "dir": "Close Short", + "closedPnl": "236.582704", + "hash": "0xdbf8cb93066b9214dd72042ec45cbe0204f80078a16eb0e67fc176e5c56f6bff", + "oid": 221324296029, + "crossed": true, + "fee": "0.104993", + "tid": 834671830001230, + "cloid": "0x00000000000000000000000385000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.0", + "sz": "2.7821", + "side": "B", + "time": 1762185455235, + "startPosition": "-1995.1336", + "dir": "Close Short", + "closedPnl": "1442.741418", + "hash": "0x808ff294ca3fa3458209042ec45cd0020363007a6532c21724589de789337d30", + "oid": 221324341684, + "crossed": true, + "fee": "2.098593", + "tid": 934805787069403, + "cloid": "0x00000000000000000000000387000171", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132591.0", + "side": "B", + "time": 1762185455936, + "startPosition": "-1194114367.0", + "dir": "Close Short", + "closedPnl": "236.144571", + "hash": "0xc7e5cf901af4f7edc95f042ec45cd80212270075b5f816bf6bae7ae2d9f8d1d8", + "oid": 221324352652, + "crossed": true, + "fee": "0.104972", + "tid": 828408596016112, + "cloid": "0x00000000000000000000000385000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.2", + "sz": "60.08", + "side": "B", + "time": 1762185456502, + "startPosition": "-235246.12", + "dir": "Close Short", + "closedPnl": "2019.426984", + "hash": "0x18828405d76e67b819fc042ec45cdf02022300eb7261868abc4b2f58966241a2", + "oid": 221324366538, + "crossed": true, + "fee": "2.096912", + "tid": 485036562303312, + "cloid": "0x00000000000000000000000388000153", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.0", + "sz": "0.152", + "side": "B", + "time": 1762185457489, + "startPosition": "-1992.3515", + "dir": "Close Short", + "closedPnl": "78.82416", + "hash": "0x29abf344a8697f582b25042ec45cec0202b2002a436c9e2acd749e97676d5942", + "oid": 221324384781, + "crossed": true, + "fee": "0.114656", + "tid": 973826558220093, + "cloid": "0x00000000000000000000000387000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.0", + "sz": "2.6298", + "side": "B", + "time": 1762185457489, + "startPosition": "-1992.1995", + "dir": "Close Short", + "closedPnl": "1363.761684", + "hash": "0x29abf344a8697f582b25042ec45cec0202b2002a436c9e2acd749e97676d5942", + "oid": 221324384781, + "crossed": true, + "fee": "1.98371", + "tid": 899160769750650, + "cloid": "0x00000000000000000000000387000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132591.0", + "side": "B", + "time": 1762185457793, + "startPosition": "-1193981776.0", + "dir": "Close Short", + "closedPnl": "236.144571", + "hash": "0xce30898a1373e81ccfaa042ec45cf0020877006fae7706ee71f934dcd277c207", + "oid": 221324391842, + "crossed": true, + "fee": "0.104972", + "tid": 708461607347319, + "cloid": "0x00000000000000000000000385000128", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.17", + "sz": "4.13", + "side": "B", + "time": 1762185458703, + "startPosition": "-235186.04", + "dir": "Close Short", + "closedPnl": "138.942699", + "hash": "0x647716fea1d79e0065f0042ec45cfb0208d600e43cdabcd2083fc25160db77eb", + "oid": 221324406476, + "crossed": true, + "fee": "0.144119", + "tid": 78270328325770, + "cloid": "0x00000000000000000000000388000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.17", + "sz": "55.98", + "side": "B", + "time": 1762185458703, + "startPosition": "-235181.91", + "dir": "Close Short", + "closedPnl": "1883.295954", + "hash": "0x647716fea1d79e0065f0042ec45cfb0208d600e43cdabcd2083fc25160db77eb", + "oid": 221324406476, + "crossed": true, + "fee": "1.953461", + "tid": 449783110925460, + "cloid": "0x00000000000000000000000388000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.0", + "sz": "1.1848", + "side": "B", + "time": 1762185459389, + "startPosition": "-1989.5697", + "dir": "Close Short", + "closedPnl": "615.598384", + "hash": "0x1b67d0f10e5a171f1ce1042ec45d02020e7b00d6a95d35f1bf307c43cd5df109", + "oid": 221324419352, + "crossed": true, + "fee": "0.893469", + "tid": 675574113982944, + "cloid": "0x00000000000000000000000387000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.0", + "sz": "1.5976", + "side": "B", + "time": 1762185459389, + "startPosition": "-1988.3849", + "dir": "Close Short", + "closedPnl": "830.081008", + "hash": "0x1b67d0f10e5a171f1ce1042ec45d02020e7b00d6a95d35f1bf307c43cd5df109", + "oid": 221324419352, + "crossed": true, + "fee": "1.204766", + "tid": 773368113127858, + "cloid": "0x00000000000000000000000387000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "60.11", + "side": "B", + "time": 1762185460708, + "startPosition": "-235125.93", + "dir": "Close Short", + "closedPnl": "2019.834253", + "hash": "0x43d7a882d8204c434551042ec45d11020995006873236b15e7a053d59724262d", + "oid": 221324441830, + "crossed": true, + "fee": "2.098085", + "tid": 928574587768689, + "cloid": "0x00000000000000000000000388000155", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "0.6488", + "side": "B", + "time": 1762185461335, + "startPosition": "-1986.7873", + "dir": "Close Short", + "closedPnl": "337.752304", + "hash": "0x0a6c4461dd795bf10be6042ec45d1802074f0047787c7ac3ae34efb49c7d35db", + "oid": 221324453235, + "crossed": true, + "fee": "0.48913", + "tid": 583824921548403, + "cloid": "0x00000000000000000000000387000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "0.2596", + "side": "B", + "time": 1762185461335, + "startPosition": "-1986.1385", + "dir": "Close Short", + "closedPnl": "135.142568", + "hash": "0x0a6c4461dd795bf10be6042ec45d1802074f0047787c7ac3ae34efb49c7d35db", + "oid": 221324453235, + "crossed": true, + "fee": "0.195712", + "tid": 222973084734129, + "cloid": "0x00000000000000000000000387000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "0.0256", + "side": "B", + "time": 1762185461335, + "startPosition": "-1985.8789", + "dir": "Close Short", + "closedPnl": "13.326848", + "hash": "0x0a6c4461dd795bf10be6042ec45d1802074f0047787c7ac3ae34efb49c7d35db", + "oid": 221324453235, + "crossed": true, + "fee": "0.019299", + "tid": 983151915998077, + "cloid": "0x00000000000000000000000387000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.1", + "sz": "0.2228", + "side": "B", + "time": 1762185461335, + "startPosition": "-1985.8533", + "dir": "Close Short", + "closedPnl": "115.962944", + "hash": "0x0a6c4461dd795bf10be6042ec45d1802074f0047787c7ac3ae34efb49c7d35db", + "oid": 221324453235, + "crossed": true, + "fee": "0.167973", + "tid": 757432112137940, + "cloid": "0x00000000000000000000000387000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.2", + "sz": "0.064", + "side": "B", + "time": 1762185461335, + "startPosition": "-1985.6305", + "dir": "Close Short", + "closedPnl": "33.30432", + "hash": "0x0a6c4461dd795bf10be6042ec45d1802074f0047787c7ac3ae34efb49c7d35db", + "oid": 221324453235, + "crossed": true, + "fee": "0.048252", + "tid": 768999269417262, + "cloid": "0x00000000000000000000000387000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.2", + "sz": "1.5625", + "side": "B", + "time": 1762185461335, + "startPosition": "-1985.5665", + "dir": "Close Short", + "closedPnl": "813.09375", + "hash": "0x0a6c4461dd795bf10be6042ec45d1802074f0047787c7ac3ae34efb49c7d35db", + "oid": 221324453235, + "crossed": true, + "fee": "1.178034", + "tid": 186852338624007, + "cloid": "0x00000000000000000000000387000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "36.08", + "side": "B", + "time": 1762185462748, + "startPosition": "-235065.82", + "dir": "Close Short", + "closedPnl": "1208.762984", + "hash": "0xaeac68fe0cc21b6ab026042ec45d2a02053200e3a7c53a3c52751450cbc5f555", + "oid": 221324485018, + "crossed": true, + "fee": "1.260097", + "tid": 47160893429226, + "cloid": "0x00000000000000000000000388000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "12.02", + "side": "B", + "time": 1762185462748, + "startPosition": "-235029.74", + "dir": "Close Short", + "closedPnl": "402.697646", + "hash": "0xaeac68fe0cc21b6ab026042ec45d2a02053200e3a7c53a3c52751450cbc5f555", + "oid": 221324485018, + "crossed": true, + "fee": "0.419799", + "tid": 1042988481445177, + "cloid": "0x00000000000000000000000388000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "11.95", + "side": "B", + "time": 1762185462748, + "startPosition": "-235017.72", + "dir": "Close Short", + "closedPnl": "400.352485", + "hash": "0xaeac68fe0cc21b6ab026042ec45d2a02053200e3a7c53a3c52751450cbc5f555", + "oid": 221324485018, + "crossed": true, + "fee": "0.417354", + "tid": 272329990555767, + "cloid": "0x00000000000000000000000388000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003774", + "sz": "132488.0", + "side": "B", + "time": 1762185464243, + "startPosition": "-1193849185.0", + "dir": "Close Short", + "closedPnl": "235.431176", + "hash": "0x536b7c4dff4f576154e5042ec45d3e02033600339a427633f73427a0be43314b", + "oid": 221324510122, + "crossed": true, + "fee": "0.105002", + "tid": 502128111446187, + "cloid": "0x00000000000000000000000385000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.29", + "sz": "60.07", + "side": "B", + "time": 1762185464455, + "startPosition": "-235005.77", + "dir": "Close Short", + "closedPnl": "2013.684561", + "hash": "0x2b756671e75508732cef042ec45d400204d5005782582745cf3e11c4a658e25d", + "oid": 221324513772, + "crossed": true, + "fee": "2.097698", + "tid": 1103708140837826, + "cloid": "0x00000000000000000000000388000157", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.1", + "sz": "2.7829", + "side": "B", + "time": 1762185464701, + "startPosition": "-1984.004", + "dir": "Close Short", + "closedPnl": "1445.660892", + "hash": "0x0917c89ab46b56300a91042ec45d440205ba00804f6e7502ace073ed736f301a", + "oid": 221324517663, + "crossed": true, + "fee": "2.098671", + "tid": 903719305247189, + "cloid": "0x00000000000000000000000387000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "0.96", + "side": "B", + "time": 1762185466432, + "startPosition": "-234945.7", + "dir": "Close Short", + "closedPnl": "32.162208", + "hash": "0x46a48b731d1fbb14481e042ec45d5a02068f0058b812d9e6ea6d36c5dc1394fe", + "oid": 221324541471, + "crossed": true, + "fee": "0.033528", + "tid": 232109259802072, + "cloid": "0x00000000000000000000000388000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "22.73", + "side": "B", + "time": 1762185466432, + "startPosition": "-234944.74", + "dir": "Close Short", + "closedPnl": "761.507279", + "hash": "0x46a48b731d1fbb14481e042ec45d5a02068f0058b812d9e6ea6d36c5dc1394fe", + "oid": 221324541471, + "crossed": true, + "fee": "0.793847", + "tid": 755408970816826, + "cloid": "0x00000000000000000000000388000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "36.08", + "side": "B", + "time": 1762185466432, + "startPosition": "-234922.01", + "dir": "Close Short", + "closedPnl": "1208.762984", + "hash": "0x46a48b731d1fbb14481e042ec45d5a02068f0058b812d9e6ea6d36c5dc1394fe", + "oid": 221324541471, + "crossed": true, + "fee": "1.260097", + "tid": 1090800705045738, + "cloid": "0x00000000000000000000000388000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "0.29", + "side": "B", + "time": 1762185466432, + "startPosition": "-234885.93", + "dir": "Close Short", + "closedPnl": "9.709867", + "hash": "0x46a48b731d1fbb14481e042ec45d5a02068f0058b812d9e6ea6d36c5dc1394fe", + "oid": 221324541471, + "crossed": true, + "fee": "0.010129", + "tid": 800601948224490, + "cloid": "0x00000000000000000000000388000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.1", + "sz": "2.7828", + "side": "B", + "time": 1762185466561, + "startPosition": "-1981.2211", + "dir": "Close Short", + "closedPnl": "1445.608944", + "hash": "0x66c132172ae1252e683a042ec45d5c020eea00fcc5e444000a89dd69e9e4ff19", + "oid": 221324546867, + "crossed": true, + "fee": "2.098595", + "tid": 628908233763730, + "cloid": "0x00000000000000000000000387000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.9", + "sz": "0.0042", + "side": "B", + "time": 1762185468306, + "startPosition": "-1978.4383", + "dir": "Close Short", + "closedPnl": "2.178456", + "hash": "0xfc83e76d83aeac9bfdfd042ec45d740205de00531ea1cb6ea04c92c042a28686", + "oid": 221324589269, + "crossed": true, + "fee": "0.003168", + "tid": 1031999285981350, + "cloid": "0x00000000000000000000000387000177", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.9", + "sz": "0.6396", + "side": "B", + "time": 1762185468306, + "startPosition": "-1978.4341", + "dir": "Close Short", + "closedPnl": "331.747728", + "hash": "0xfc83e76d83aeac9bfdfd042ec45d740205de00531ea1cb6ea04c92c042a28686", + "oid": 221324589269, + "crossed": true, + "fee": "0.482449", + "tid": 546935593503910, + "cloid": "0x00000000000000000000000387000177", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.0", + "sz": "2.1385", + "side": "B", + "time": 1762185468306, + "startPosition": "-1977.7945", + "dir": "Close Short", + "closedPnl": "1108.98333", + "hash": "0xfc83e76d83aeac9bfdfd042ec45d740205de00531ea1cb6ea04c92c042a28686", + "oid": 221324589269, + "crossed": true, + "fee": "1.613113", + "tid": 1086430516769405, + "cloid": "0x00000000000000000000000387000177", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003779", + "sz": "132464.0", + "side": "B", + "time": 1762185468306, + "startPosition": "-1193716697.0", + "dir": "Close Short", + "closedPnl": "234.726208", + "hash": "0xf5092b8b82e7de45f682042ec45d740205f200711deafd1898d1d6de41ebb830", + "oid": 221324589289, + "crossed": true, + "fee": "0.105122", + "tid": 556539814187630, + "cloid": "0x00000000000000000000000385000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "35.86", + "side": "B", + "time": 1762185468531, + "startPosition": "-234885.64", + "dir": "Close Short", + "closedPnl": "1197.806478", + "hash": "0xa108e3105d0b6bd5a282042ec45d780202d000f5f80e8aa744d18e631c0f45c0", + "oid": 221324592451, + "crossed": true, + "fee": "1.253167", + "tid": 183381529695778, + "cloid": "0x00000000000000000000000388000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.42", + "sz": "18.02", + "side": "B", + "time": 1762185468531, + "startPosition": "-234849.78", + "dir": "Close Short", + "closedPnl": "601.729246", + "hash": "0xa108e3105d0b6bd5a282042ec45d780202d000f5f80e8aa744d18e631c0f45c0", + "oid": 221324592451, + "crossed": true, + "fee": "0.629766", + "tid": 331601221393578, + "cloid": "0x00000000000000000000000388000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.42", + "sz": "0.18", + "side": "B", + "time": 1762185468531, + "startPosition": "-234831.76", + "dir": "Close Short", + "closedPnl": "6.010614", + "hash": "0xa108e3105d0b6bd5a282042ec45d780202d000f5f80e8aa744d18e631c0f45c0", + "oid": 221324592451, + "crossed": true, + "fee": "0.00629", + "tid": 119317224774765, + "cloid": "0x00000000000000000000000388000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.42", + "sz": "5.97", + "side": "B", + "time": 1762185468531, + "startPosition": "-234831.58", + "dir": "Close Short", + "closedPnl": "199.352031", + "hash": "0xa108e3105d0b6bd5a282042ec45d780202d000f5f80e8aa744d18e631c0f45c0", + "oid": 221324592451, + "crossed": true, + "fee": "0.20864", + "tid": 902365788095450, + "cloid": "0x00000000000000000000000388000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.4", + "sz": "2.7817", + "side": "B", + "time": 1762185470424, + "startPosition": "-1975.656", + "dir": "Close Short", + "closedPnl": "1441.421306", + "hash": "0xa5fe3615fce848b7a777042ec45d8c02041a00fb97eb678949c6e168bbec22a2", + "oid": 221324627190, + "crossed": true, + "fee": "2.098525", + "tid": 516666239919676, + "cloid": "0x00000000000000000000000387000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "2.3", + "side": "B", + "time": 1762185470778, + "startPosition": "-234825.61", + "dir": "Close Short", + "closedPnl": "76.75629", + "hash": "0x54b600c77b0663ff562f042ec45d9002053800ad160982d1f87eac1a3a0a3de9", + "oid": 221324631067, + "crossed": true, + "fee": "0.08039", + "tid": 407019540439706, + "cloid": "0x00000000000000000000000388000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "6.52", + "side": "B", + "time": 1762185470778, + "startPosition": "-234823.31", + "dir": "Close Short", + "closedPnl": "217.587396", + "hash": "0x54b600c77b0663ff562f042ec45d9002053800ad160982d1f87eac1a3a0a3de9", + "oid": 221324631067, + "crossed": true, + "fee": "0.227889", + "tid": 440889411028118, + "cloid": "0x00000000000000000000000388000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "6.55", + "side": "B", + "time": 1762185470778, + "startPosition": "-234816.79", + "dir": "Close Short", + "closedPnl": "218.588565", + "hash": "0x54b600c77b0663ff562f042ec45d9002053800ad160982d1f87eac1a3a0a3de9", + "oid": 221324631067, + "crossed": true, + "fee": "0.228938", + "tid": 1082486783824311, + "cloid": "0x00000000000000000000000388000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "12.01", + "side": "B", + "time": 1762185470778, + "startPosition": "-234810.24", + "dir": "Close Short", + "closedPnl": "400.801323", + "hash": "0x54b600c77b0663ff562f042ec45d9002053800ad160982d1f87eac1a3a0a3de9", + "oid": 221324631067, + "crossed": true, + "fee": "0.419778", + "tid": 622963813198764, + "cloid": "0x00000000000000000000000388000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "32.62", + "side": "B", + "time": 1762185470778, + "startPosition": "-234798.23", + "dir": "Close Short", + "closedPnl": "1088.604426", + "hash": "0x54b600c77b0663ff562f042ec45d9002053800ad160982d1f87eac1a3a0a3de9", + "oid": 221324631067, + "crossed": true, + "fee": "1.140147", + "tid": 318625997846130, + "cloid": "0x00000000000000000000000388000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "38837.0", + "side": "B", + "time": 1762185471181, + "startPosition": "-1193584233.0", + "dir": "Close Short", + "closedPnl": "68.896838", + "hash": "0x05b783e30ce3d30a0731042ec45d9502052d00c8a7e6f1dca9802f35cbe7acf4", + "oid": 221324637088, + "crossed": true, + "fee": "0.030804", + "tid": 373902162773293, + "cloid": "0x00000000000000000000000385000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003778", + "sz": "38837.0", + "side": "B", + "time": 1762185471181, + "startPosition": "-1193545396.0", + "dir": "Close Short", + "closedPnl": "68.858001", + "hash": "0x05b783e30ce3d30a0731042ec45d9502052d00c8a7e6f1dca9802f35cbe7acf4", + "oid": 221324637088, + "crossed": true, + "fee": "0.030812", + "tid": 163856915857677, + "cloid": "0x00000000000000000000000385000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003778", + "sz": "54593.0", + "side": "B", + "time": 1762185471181, + "startPosition": "-1193506559.0", + "dir": "Close Short", + "closedPnl": "96.793389", + "hash": "0x05b783e30ce3d30a0731042ec45d9502052d00c8a7e6f1dca9802f35cbe7acf4", + "oid": 221324637088, + "crossed": true, + "fee": "0.043312", + "tid": 789569829673826, + "cloid": "0x00000000000000000000000385000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.6", + "sz": "2.7824", + "side": "B", + "time": 1762185472748, + "startPosition": "-1972.8743", + "dir": "Close Short", + "closedPnl": "1444.009952", + "hash": "0xa7103ba79388f98ca889042ec45da90203c3008d2e8c185e4ad8e6fa528cd377", + "oid": 221324671172, + "crossed": true, + "fee": "2.098586", + "tid": 831149829007662, + "cloid": "0x00000000000000000000000387000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "1.08", + "side": "B", + "time": 1762185472949, + "startPosition": "-234765.61", + "dir": "Close Short", + "closedPnl": "36.139284", + "hash": "0x34a5f326d8015f20361f042ec45dab0203c1000c73047df2d86e9e799705390a", + "oid": 221324675098, + "crossed": true, + "fee": "0.037728", + "tid": 232694553682226, + "cloid": "0x00000000000000000000000388000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "6.71", + "side": "B", + "time": 1762185472949, + "startPosition": "-234764.53", + "dir": "Close Short", + "closedPnl": "224.532033", + "hash": "0x34a5f326d8015f20361f042ec45dab0203c1000c73047df2d86e9e799705390a", + "oid": 221324675098, + "crossed": true, + "fee": "0.234403", + "tid": 324807348047758, + "cloid": "0x00000000000000000000000388000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "52.24", + "side": "B", + "time": 1762185472949, + "startPosition": "-234757.82", + "dir": "Close Short", + "closedPnl": "1748.070552", + "hash": "0x34a5f326d8015f20361f042ec45dab0203c1000c73047df2d86e9e799705390a", + "oid": 221324675098, + "crossed": true, + "fee": "1.824926", + "tid": 213209751409198, + "cloid": "0x00000000000000000000000388000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "24602.0", + "side": "B", + "time": 1762185473086, + "startPosition": "-1193451966.0", + "dir": "Close Short", + "closedPnl": "43.570142", + "hash": "0xacd09ffaa732c0fdae4a042ec45dad0202a200e04235dfcf50994b4d66369ae8", + "oid": 221324678731, + "crossed": true, + "fee": "0.019529", + "tid": 57649763116802, + "cloid": "0x00000000000000000000000385000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "107665.0", + "side": "B", + "time": 1762185473086, + "startPosition": "-1193427364.0", + "dir": "Close Short", + "closedPnl": "190.674715", + "hash": "0xacd09ffaa732c0fdae4a042ec45dad0202a200e04235dfcf50994b4d66369ae8", + "oid": 221324678731, + "crossed": true, + "fee": "0.085464", + "tid": 313049552829536, + "cloid": "0x00000000000000000000000385000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.3", + "sz": "2.7819", + "side": "B", + "time": 1762185474768, + "startPosition": "-1970.0919", + "dir": "Close Short", + "closedPnl": "1441.803132", + "hash": "0xbca6c6da14d79d5bbe20042ec45dc102092800bfafdabc2d606f722cd3db7746", + "oid": 221324714183, + "crossed": true, + "fee": "2.098618", + "tid": 327532116529515, + "cloid": "0x00000000000000000000000387000180", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "12.0", + "side": "B", + "time": 1762185474768, + "startPosition": "-234705.58", + "dir": "Close Short", + "closedPnl": "401.1876", + "hash": "0x6f7a3d752e68dfd770f3042ec45dc1020929005ac96bfea91342e8c7ed6cb9c2", + "oid": 221324714184, + "crossed": true, + "fee": "0.419277", + "tid": 985000835602551, + "cloid": "0x00000000000000000000000388000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "0.18", + "side": "B", + "time": 1762185474768, + "startPosition": "-234693.58", + "dir": "Close Short", + "closedPnl": "6.014214", + "hash": "0x6f7a3d752e68dfd770f3042ec45dc1020929005ac96bfea91342e8c7ed6cb9c2", + "oid": 221324714184, + "crossed": true, + "fee": "0.006289", + "tid": 824505182226690, + "cloid": "0x00000000000000000000000388000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "12.0", + "side": "B", + "time": 1762185474768, + "startPosition": "-234693.4", + "dir": "Close Short", + "closedPnl": "400.9476", + "hash": "0x6f7a3d752e68dfd770f3042ec45dc1020929005ac96bfea91342e8c7ed6cb9c2", + "oid": 221324714184, + "crossed": true, + "fee": "0.419327", + "tid": 26987416048033, + "cloid": "0x00000000000000000000000388000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.42", + "sz": "12.0", + "side": "B", + "time": 1762185474768, + "startPosition": "-234681.4", + "dir": "Close Short", + "closedPnl": "400.7076", + "hash": "0x6f7a3d752e68dfd770f3042ec45dc1020929005ac96bfea91342e8c7ed6cb9c2", + "oid": 221324714184, + "crossed": true, + "fee": "0.419378", + "tid": 711532937340670, + "cloid": "0x00000000000000000000000388000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.43", + "sz": "18.02", + "side": "B", + "time": 1762185474768, + "startPosition": "-234669.4", + "dir": "Close Short", + "closedPnl": "601.549046", + "hash": "0x6f7a3d752e68dfd770f3042ec45dc1020929005ac96bfea91342e8c7ed6cb9c2", + "oid": 221324714184, + "crossed": true, + "fee": "0.629804", + "tid": 232743792008236, + "cloid": "0x00000000000000000000000388000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "5.82", + "side": "B", + "time": 1762185474768, + "startPosition": "-234651.38", + "dir": "Close Short", + "closedPnl": "194.168586", + "hash": "0x6f7a3d752e68dfd770f3042ec45dc1020929005ac96bfea91342e8c7ed6cb9c2", + "oid": 221324714184, + "crossed": true, + "fee": "0.203435", + "tid": 1044674095405355, + "cloid": "0x00000000000000000000000388000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.4", + "sz": "0.0042", + "side": "B", + "time": 1762185477232, + "startPosition": "-1967.31", + "dir": "Close Short", + "closedPnl": "2.176356", + "hash": "0xb5e72fede5a1a04ab760042ec45dde02056c00d380a4bf1c59afdb40a4a57a35", + "oid": 221324752808, + "crossed": true, + "fee": "0.003168", + "tid": 644598396018623, + "cloid": "0x00000000000000000000000387000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.6", + "sz": "0.0042", + "side": "B", + "time": 1762185477232, + "startPosition": "-1967.3058", + "dir": "Close Short", + "closedPnl": "2.175516", + "hash": "0xb5e72fede5a1a04ab760042ec45dde02056c00d380a4bf1c59afdb40a4a57a35", + "oid": 221324752808, + "crossed": true, + "fee": "0.003168", + "tid": 641172347300810, + "cloid": "0x00000000000000000000000387000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.6", + "sz": "0.1392", + "side": "B", + "time": 1762185477232, + "startPosition": "-1967.3016", + "dir": "Close Short", + "closedPnl": "72.102816", + "hash": "0xb5e72fede5a1a04ab760042ec45dde02056c00d380a4bf1c59afdb40a4a57a35", + "oid": 221324752808, + "crossed": true, + "fee": "0.105018", + "tid": 995420859190810, + "cloid": "0x00000000000000000000000387000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.6", + "sz": "2.6339", + "side": "B", + "time": 1762185477232, + "startPosition": "-1967.1624", + "dir": "Close Short", + "closedPnl": "1364.307522", + "hash": "0xb5e72fede5a1a04ab760042ec45dde02056c00d380a4bf1c59afdb40a4a57a35", + "oid": 221324752808, + "crossed": true, + "fee": "1.987135", + "tid": 836444778117378, + "cloid": "0x00000000000000000000000387000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132196.0", + "side": "B", + "time": 1762185477628, + "startPosition": "-1193319699.0", + "dir": "Close Short", + "closedPnl": "233.32594", + "hash": "0x4cbb433c4452af4f4e34042ec45de30202b60021df55ce21f083ee8f03568939", + "oid": 221324761077, + "crossed": true, + "fee": "0.105103", + "tid": 829373132042999, + "cloid": "0x00000000000000000000000385000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "60.0", + "side": "B", + "time": 1762185477828, + "startPosition": "-234645.56", + "dir": "Close Short", + "closedPnl": "2001.738", + "hash": "0x9e3b4fd91aadc6929fb5042ec45de4020a9e00beb5a0e5644203fb2bd9a1a07d", + "oid": 221324763525, + "crossed": true, + "fee": "2.09727", + "tid": 53062914705726, + "cloid": "0x00000000000000000000000388000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.6", + "sz": "2.7815", + "side": "B", + "time": 1762185478828, + "startPosition": "-1964.5285", + "dir": "Close Short", + "closedPnl": "1440.76137", + "hash": "0xa37ee40d606ee991a4f8042ec45df102045900f2fb62086347478f601f62c37c", + "oid": 221324779600, + "crossed": true, + "fee": "2.098491", + "tid": 1045999130895360, + "cloid": "0x00000000000000000000000387000182", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003785", + "sz": "132057.0", + "side": "B", + "time": 1762185479185, + "startPosition": "-1193187503.0", + "dir": "Close Short", + "closedPnl": "233.212662", + "hash": "0x717da7dd3385850d72f7042ec45df502074700c2ce88a3df1546532ff2895ef8", + "oid": 221324785535, + "crossed": true, + "fee": "0.104965", + "tid": 993390455434783, + "cloid": "0x00000000000000000000000385000138", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "59.98", + "side": "B", + "time": 1762185480258, + "startPosition": "-234585.56", + "dir": "Close Short", + "closedPnl": "1997.471954", + "hash": "0xf6d52153a8e5845bf84e042ec45e03020247003943e8a32e9a9dcca667e95e46", + "oid": 221324801759, + "crossed": true, + "fee": "2.097326", + "tid": 226987923876046, + "cloid": "0x00000000000000000000000388000164", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003785", + "sz": "132091.0", + "side": "B", + "time": 1762185480786, + "startPosition": "-1193055446.0", + "dir": "Close Short", + "closedPnl": "233.272706", + "hash": "0xe91ced6c27a565d4ea96042ec45e0802043a0051c2a884a68ce598bee6a93fbf", + "oid": 221324806817, + "crossed": true, + "fee": "0.104992", + "tid": 999945749621218, + "cloid": "0x00000000000000000000000385000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.6", + "sz": "0.6791", + "side": "B", + "time": 1762185480946, + "startPosition": "-1961.747", + "dir": "Close Short", + "closedPnl": "351.760218", + "hash": "0x545c52a73fc8877755d6042ec45e0a020382008cdacba649f824fdf9fecc6161", + "oid": 221324807887, + "crossed": true, + "fee": "0.512344", + "tid": 1026285030688950, + "cloid": "0x00000000000000000000000387000183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.6", + "sz": "1.3999", + "side": "B", + "time": 1762185480946, + "startPosition": "-1961.0679", + "dir": "Close Short", + "closedPnl": "725.120202", + "hash": "0x545c52a73fc8877755d6042ec45e0a020382008cdacba649f824fdf9fecc6161", + "oid": 221324807887, + "crossed": true, + "fee": "1.056148", + "tid": 1030135289583295, + "cloid": "0x00000000000000000000000387000183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.6", + "sz": "0.7025", + "side": "B", + "time": 1762185480946, + "startPosition": "-1959.668", + "dir": "Close Short", + "closedPnl": "363.88095", + "hash": "0x545c52a73fc8877755d6042ec45e0a020382008cdacba649f824fdf9fecc6161", + "oid": 221324807887, + "crossed": true, + "fee": "0.529998", + "tid": 901958431259659, + "cloid": "0x00000000000000000000000387000183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "1.52", + "side": "B", + "time": 1762185482271, + "startPosition": "-234525.58", + "dir": "Close Short", + "closedPnl": "50.619496", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.053149", + "tid": 46793811378858, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "1.63", + "side": "B", + "time": 1762185482271, + "startPosition": "-234524.06", + "dir": "Close Short", + "closedPnl": "54.282749", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.056996", + "tid": 502722087487644, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "1.63", + "side": "B", + "time": 1762185482271, + "startPosition": "-234522.43", + "dir": "Close Short", + "closedPnl": "54.282749", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.056996", + "tid": 216431060766617, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "1.63", + "side": "B", + "time": 1762185482271, + "startPosition": "-234520.8", + "dir": "Close Short", + "closedPnl": "54.282749", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.056996", + "tid": 964644286905049, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "1.63", + "side": "B", + "time": 1762185482271, + "startPosition": "-234519.17", + "dir": "Close Short", + "closedPnl": "54.282749", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.056996", + "tid": 663795583048229, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "1.63", + "side": "B", + "time": 1762185482271, + "startPosition": "-234517.54", + "dir": "Close Short", + "closedPnl": "54.282749", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.056996", + "tid": 438909452393593, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "0.29", + "side": "B", + "time": 1762185482271, + "startPosition": "-234515.91", + "dir": "Close Short", + "closedPnl": "9.657667", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.01014", + "tid": 296635975131711, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "0.18", + "side": "B", + "time": 1762185482271, + "startPosition": "-234515.62", + "dir": "Close Short", + "closedPnl": "5.987214", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.006295", + "tid": 594784241181751, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "3.0", + "side": "B", + "time": 1762185482271, + "startPosition": "-234515.44", + "dir": "Close Short", + "closedPnl": "99.7869", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.104926", + "tid": 664973721881920, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "0.18", + "side": "B", + "time": 1762185482271, + "startPosition": "-234512.44", + "dir": "Close Short", + "closedPnl": "5.980014", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.006297", + "tid": 738403564466254, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "46.66", + "side": "B", + "time": 1762185482271, + "startPosition": "-234512.26", + "dir": "Close Short", + "closedPnl": "1549.685918", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "1.632446", + "tid": 914091014835327, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "131997.0", + "side": "B", + "time": 1762185482670, + "startPosition": "-1192923355.0", + "dir": "Close Short", + "closedPnl": "232.842708", + "hash": "0x2b251fcaaeef4f3e2c9e042ec45e21020c9100b049e26e10ceedcb1d6de32928", + "oid": 221324841722, + "crossed": true, + "fee": "0.104973", + "tid": 344679875227353, + "cloid": "0x00000000000000000000000385000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.0", + "sz": "2.7806", + "side": "B", + "time": 1762185483340, + "startPosition": "-1958.9655", + "dir": "Close Short", + "closedPnl": "1436.402348", + "hash": "0x4f208fd5c1dd89e1509a042ec45e2902047000bb5cd0a8b3f2e93b2880d163cb", + "oid": 221324854844, + "crossed": true, + "fee": "2.09863", + "tid": 136886169574318, + "cloid": "0x00000000000000000000000387000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26802", + "sz": "3333.3", + "side": "A", + "time": 1762185483795, + "startPosition": "4021484.7960629999", + "dir": "Sell", + "closedPnl": "-1778.89491433", + "hash": "0x1458bcc106d6fc3e15d2042ec45e300208dd00a6a1da1b10b8216813c5dad628", + "oid": 221324057081, + "crossed": false, + "fee": "0.06253737", + "tid": 506094853494394, + "cloid": "0x10000000000000000000000475000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26802", + "sz": "24.0", + "side": "A", + "time": 1762185483795, + "startPosition": "4018151.4960630001", + "dir": "Sell", + "closedPnl": "-12.80817146", + "hash": "0x79ffa9f739f981357b79042ec45e300208df00dcd4fca0071dc85549f8fd5b20", + "oid": 221324057081, + "crossed": false, + "fee": "0.00045027", + "tid": 322854978751320, + "cloid": "0x10000000000000000000000475000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.72", + "sz": "39.16", + "side": "B", + "time": 1762185484070, + "startPosition": "-234465.6", + "dir": "Close Short", + "closedPnl": "1295.894468", + "hash": "0xf0b66db07dafeb5cf230042ec45e33020c83009618a30a2f947f19033ca3c547", + "oid": 221324871760, + "crossed": true, + "fee": "1.371038", + "tid": 746207327348939, + "cloid": "0x00000000000000000000000388000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "6.01", + "side": "B", + "time": 1762185484070, + "startPosition": "-234426.44", + "dir": "Close Short", + "closedPnl": "198.764523", + "hash": "0xf0b66db07dafeb5cf230042ec45e33020c83009618a30a2f947f19033ca3c547", + "oid": 221324871760, + "crossed": true, + "fee": "0.210442", + "tid": 14824870881842, + "cloid": "0x00000000000000000000000388000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "5.97", + "side": "B", + "time": 1762185484070, + "startPosition": "-234420.43", + "dir": "Close Short", + "closedPnl": "197.441631", + "hash": "0xf0b66db07dafeb5cf230042ec45e33020c83009618a30a2f947f19033ca3c547", + "oid": 221324871760, + "crossed": true, + "fee": "0.209041", + "tid": 53748146543810, + "cloid": "0x00000000000000000000000388000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "8.78", + "side": "B", + "time": 1762185484070, + "startPosition": "-234414.46", + "dir": "Close Short", + "closedPnl": "290.374794", + "hash": "0xf0b66db07dafeb5cf230042ec45e33020c83009618a30a2f947f19033ca3c547", + "oid": 221324871760, + "crossed": true, + "fee": "0.307435", + "tid": 927416690517411, + "cloid": "0x00000000000000000000000388000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "17.92", + "side": "B", + "time": 1762185486148, + "startPosition": "-234405.68", + "dir": "Close Short", + "closedPnl": "592.297216", + "hash": "0x55f2b626cd411dd9576c042ec45e4a0208da000c68443cabf9bb61798c44f7c3", + "oid": 221324908997, + "crossed": true, + "fee": "0.627551", + "tid": 57175795171896, + "cloid": "0x00000000000000000000000388000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "6.75", + "side": "B", + "time": 1762185486148, + "startPosition": "-234387.76", + "dir": "Close Short", + "closedPnl": "223.103025", + "hash": "0x55f2b626cd411dd9576c042ec45e4a0208da000c68443cabf9bb61798c44f7c3", + "oid": 221324908997, + "crossed": true, + "fee": "0.236382", + "tid": 711523840399797, + "cloid": "0x00000000000000000000000388000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "11.99", + "side": "B", + "time": 1762185486148, + "startPosition": "-234381.01", + "dir": "Close Short", + "closedPnl": "396.297077", + "hash": "0x55f2b626cd411dd9576c042ec45e4a0208da000c68443cabf9bb61798c44f7c3", + "oid": 221324908997, + "crossed": true, + "fee": "0.419885", + "tid": 1080630059661791, + "cloid": "0x00000000000000000000000388000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.78", + "sz": "23.24", + "side": "B", + "time": 1762185486148, + "startPosition": "-234369.02", + "dir": "Close Short", + "closedPnl": "767.670652", + "hash": "0x55f2b626cd411dd9576c042ec45e4a0208da000c68443cabf9bb61798c44f7c3", + "oid": 221324908997, + "crossed": true, + "fee": "0.813953", + "tid": 46021892136728, + "cloid": "0x00000000000000000000000388000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.6", + "sz": "0.0042", + "side": "B", + "time": 1762185486192, + "startPosition": "-1956.1849", + "dir": "Close Short", + "closedPnl": "2.162916", + "hash": "0xe44e302ba4d2658de5c7042ec45e4b0205f600113fd5845f8816db7e63d63f78", + "oid": 221324910961, + "crossed": true, + "fee": "0.003171", + "tid": 682918182432787, + "cloid": "0x00000000000000000000000387000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.7", + "sz": "0.0567", + "side": "B", + "time": 1762185486192, + "startPosition": "-1956.1807", + "dir": "Close Short", + "closedPnl": "29.193696", + "hash": "0xe44e302ba4d2658de5c7042ec45e4b0205f600113fd5845f8816db7e63d63f78", + "oid": 221324910961, + "crossed": true, + "fee": "0.042813", + "tid": 211859822323034, + "cloid": "0x00000000000000000000000387000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.9", + "sz": "0.0042", + "side": "B", + "time": 1762185486192, + "startPosition": "-1956.124", + "dir": "Close Short", + "closedPnl": "2.161656", + "hash": "0xe44e302ba4d2658de5c7042ec45e4b0205f600113fd5845f8816db7e63d63f78", + "oid": 221324910961, + "crossed": true, + "fee": "0.003171", + "tid": 532180921531667, + "cloid": "0x00000000000000000000000387000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.9", + "sz": "0.0055", + "side": "B", + "time": 1762185486192, + "startPosition": "-1956.1198", + "dir": "Close Short", + "closedPnl": "2.83074", + "hash": "0xe44e302ba4d2658de5c7042ec45e4b0205f600113fd5845f8816db7e63d63f78", + "oid": 221324910961, + "crossed": true, + "fee": "0.004153", + "tid": 988488382256429, + "cloid": "0x00000000000000000000000387000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.9", + "sz": "2.7091", + "side": "B", + "time": 1762185486192, + "startPosition": "-1956.1143", + "dir": "Close Short", + "closedPnl": "1394.319588", + "hash": "0xe44e302ba4d2658de5c7042ec45e4b0205f600113fd5845f8816db7e63d63f78", + "oid": 221324910961, + "crossed": true, + "fee": "2.045747", + "tid": 897936626730932, + "cloid": "0x00000000000000000000000387000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.0", + "sz": "2.7785", + "side": "B", + "time": 1762185488475, + "startPosition": "-1953.4052", + "dir": "Close Short", + "closedPnl": "1426.98203", + "hash": "0x8d6a52a55277b3c78ee4042ec45e67020254008aed7ad2993132fdf8117b8db2", + "oid": 221324952814, + "crossed": true, + "fee": "2.098795", + "tid": 381767058883632, + "cloid": "0x00000000000000000000000387000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "65374.0", + "side": "B", + "time": 1762185488475, + "startPosition": "-1192791358.0", + "dir": "Close Short", + "closedPnl": "114.665996", + "hash": "0x4247f96bb67852b443c1042ec45e670202940051517b7186e610a4be757c2c9e", + "oid": 221324952871, + "crossed": true, + "fee": "0.052127", + "tid": 934279743954125, + "cloid": "0x00000000000000000000000385000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "66439.0", + "side": "B", + "time": 1762185488475, + "startPosition": "-1192725984.0", + "dir": "Close Short", + "closedPnl": "116.467567", + "hash": "0x4247f96bb67852b443c1042ec45e670202940051517b7186e610a4be757c2c9e", + "oid": 221324952871, + "crossed": true, + "fee": "0.05299", + "tid": 15363060768758, + "cloid": "0x00000000000000000000000385000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.79", + "sz": "25.14", + "side": "B", + "time": 1762185488669, + "startPosition": "-234345.78", + "dir": "Close Short", + "closedPnl": "830.180622", + "hash": "0xb366235645b2ae09b4df042ec45e680209e3003be0b5ccdb572ecea904b687f4", + "oid": 221324955765, + "crossed": true, + "fee": "0.880551", + "tid": 877547331190643, + "cloid": "0x00000000000000000000000388000168", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.79", + "sz": "34.75", + "side": "B", + "time": 1762185488669, + "startPosition": "-234320.64", + "dir": "Close Short", + "closedPnl": "1147.524925", + "hash": "0xb366235645b2ae09b4df042ec45e680209e3003be0b5ccdb572ecea904b687f4", + "oid": 221324955765, + "crossed": true, + "fee": "1.21715", + "tid": 170440579104483, + "cloid": "0x00000000000000000000000388000168", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "56117.0", + "side": "B", + "time": 1762185490230, + "startPosition": "-1192659545.0", + "dir": "Close Short", + "closedPnl": "98.373101", + "hash": "0x961d039bf2b7f7d49796042ec45e7b02039400818dbb16a639e5aeeeb1bbd1bf", + "oid": 221324989535, + "crossed": true, + "fee": "0.044757", + "tid": 268874629898564, + "cloid": "0x00000000000000000000000385000143", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "75488.0", + "side": "B", + "time": 1762185490230, + "startPosition": "-1192603428.0", + "dir": "Close Short", + "closedPnl": "132.254976", + "hash": "0x961d039bf2b7f7d49796042ec45e7b02039400818dbb16a639e5aeeeb1bbd1bf", + "oid": 221324989535, + "crossed": true, + "fee": "0.060223", + "tid": 889950763235879, + "cloid": "0x00000000000000000000000385000143", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "59.89", + "side": "B", + "time": 1762185490230, + "startPosition": "-234285.89", + "dir": "Close Short", + "closedPnl": "1979.502247", + "hash": "0x616ade0858fd01c362e4042ec45e7b02039800edf3f020950533895b17f0dbae", + "oid": 221324989539, + "crossed": true, + "fee": "2.097323", + "tid": 722098981018725, + "cloid": "0x00000000000000000000000388000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.5", + "sz": "1.158", + "side": "B", + "time": 1762185490518, + "startPosition": "-1950.6267", + "dir": "Close Short", + "closedPnl": "595.30464", + "hash": "0x36fc1b7496ecaa483875042ec45e7e020280005a31efc91adac4c6c755e08432", + "oid": 221324992298, + "crossed": true, + "fee": "0.874596", + "tid": 1099806603427025, + "cloid": "0x00000000000000000000000387000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.5", + "sz": "1.6205", + "side": "B", + "time": 1762185490518, + "startPosition": "-1949.4687", + "dir": "Close Short", + "closedPnl": "833.06664", + "hash": "0x36fc1b7496ecaa483875042ec45e7e020280005a31efc91adac4c6c755e08432", + "oid": 221324992298, + "crossed": true, + "fee": "1.223906", + "tid": 234043545865440, + "cloid": "0x00000000000000000000000387000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "105390.0", + "side": "B", + "time": 1762185492324, + "startPosition": "-1192527940.0", + "dir": "Close Short", + "closedPnl": "184.74867", + "hash": "0x14e8a214724eeeae1662042ec45e95020af300fa0d420d80b8b14d673142c898", + "oid": 221325032300, + "crossed": true, + "fee": "0.084056", + "tid": 532042978438137, + "cloid": "0x00000000000000000000000385000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "26258.0", + "side": "B", + "time": 1762185492324, + "startPosition": "-1192422550.0", + "dir": "Close Short", + "closedPnl": "45.977758", + "hash": "0x14e8a214724eeeae1662042ec45e95020af300fa0d420d80b8b14d673142c898", + "oid": 221325032300, + "crossed": true, + "fee": "0.020953", + "tid": 354532166814218, + "cloid": "0x00000000000000000000000385000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "59.9", + "side": "B", + "time": 1762185492831, + "startPosition": "-234226.0", + "dir": "Close Short", + "closedPnl": "1977.43677", + "hash": "0xd0cb3c9d70cb4182d244042ec45e9a020a4200830bce60547493e7f02fcf1b6d", + "oid": 221325042411, + "crossed": true, + "fee": "2.098177", + "tid": 762757705305013, + "cloid": "0x00000000000000000000000388000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.4", + "sz": "2.25", + "side": "B", + "time": 1762185492831, + "startPosition": "-1947.8482", + "dir": "Close Short", + "closedPnl": "1156.905", + "hash": "0x5c2ed7a33c2b1fdf5da8042ec45e9a020a680088d72e3eb1fff782f5fb2ef9c9", + "oid": 221325042445, + "crossed": true, + "fee": "1.699298", + "tid": 880671387979432, + "cloid": "0x00000000000000000000000387000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.4", + "sz": "0.5291", + "side": "B", + "time": 1762185492831, + "startPosition": "-1945.5982", + "dir": "Close Short", + "closedPnl": "272.052638", + "hash": "0x5c2ed7a33c2b1fdf5da8042ec45e9a020a680088d72e3eb1fff782f5fb2ef9c9", + "oid": 221325042445, + "crossed": true, + "fee": "0.399599", + "tid": 34502619123814, + "cloid": "0x00000000000000000000000387000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "16.09", + "side": "B", + "time": 1762185494770, + "startPosition": "-234166.1", + "dir": "Close Short", + "closedPnl": "531.972407", + "hash": "0xb9c10a8c865c78c6bb3a042ec45eb3020bc60072215f97985d89b5df455052b1", + "oid": 221325084169, + "crossed": true, + "fee": "0.563431", + "tid": 861575226527491, + "cloid": "0x00000000000000000000000388000171", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "43.8", + "side": "B", + "time": 1762185494770, + "startPosition": "-234150.01", + "dir": "Close Short", + "closedPnl": "1448.12874", + "hash": "0xb9c10a8c865c78c6bb3a042ec45eb3020bc60072215f97985d89b5df455052b1", + "oid": 221325084169, + "crossed": true, + "fee": "1.533766", + "tid": 347759717818315, + "cloid": "0x00000000000000000000000388000171", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.3", + "sz": "1.2038", + "side": "B", + "time": 1762185494940, + "startPosition": "-1945.0691", + "dir": "Close Short", + "closedPnl": "620.294064", + "hash": "0xef88cb421082a684f102042ec45eb60208120027ab85c55693517694cf86806f", + "oid": 221325088790, + "crossed": true, + "fee": "0.908884", + "tid": 842705138986413, + "cloid": "0x00000000000000000000000387000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.3", + "sz": "1.575", + "side": "B", + "time": 1762185494940, + "startPosition": "-1943.8653", + "dir": "Close Short", + "closedPnl": "811.566", + "hash": "0xef88cb421082a684f102042ec45eb60208120027ab85c55693517694cf86806f", + "oid": 221325088790, + "crossed": true, + "fee": "1.189145", + "tid": 665152561757505, + "cloid": "0x00000000000000000000000387000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131509.0", + "side": "B", + "time": 1762185496245, + "startPosition": "-1192396292.0", + "dir": "Close Short", + "closedPnl": "230.403768", + "hash": "0xd26e9fd553eea519d3e8042ec45ec70205a300baeee1c3eb76374b2812e27f04", + "oid": 221325122673, + "crossed": true, + "fee": "0.104916", + "tid": 834169748152379, + "cloid": "0x00000000000000000000000385000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "8.81", + "side": "B", + "time": 1762185496707, + "startPosition": "-234106.21", + "dir": "Close Short", + "closedPnl": "292.071763", + "hash": "0x2928d67e742a98ff2aa2042ec45ece020de400640f2db7d1ccf181d1332e72e9", + "oid": 221325131205, + "crossed": true, + "fee": "0.308337", + "tid": 665727795344804, + "cloid": "0x00000000000000000000000388000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "8.81", + "side": "B", + "time": 1762185496707, + "startPosition": "-234097.4", + "dir": "Close Short", + "closedPnl": "292.071763", + "hash": "0x2928d67e742a98ff2aa2042ec45ece020de400640f2db7d1ccf181d1332e72e9", + "oid": 221325131205, + "crossed": true, + "fee": "0.308337", + "tid": 275753455209431, + "cloid": "0x00000000000000000000000388000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "11.38", + "side": "B", + "time": 1762185496707, + "startPosition": "-234088.59", + "dir": "Close Short", + "closedPnl": "377.273174", + "hash": "0x2928d67e742a98ff2aa2042ec45ece020de400640f2db7d1ccf181d1332e72e9", + "oid": 221325131205, + "crossed": true, + "fee": "0.398284", + "tid": 1047377346764663, + "cloid": "0x00000000000000000000000388000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "8.81", + "side": "B", + "time": 1762185496707, + "startPosition": "-234077.21", + "dir": "Close Short", + "closedPnl": "292.071763", + "hash": "0x2928d67e742a98ff2aa2042ec45ece020de400640f2db7d1ccf181d1332e72e9", + "oid": 221325131205, + "crossed": true, + "fee": "0.308337", + "tid": 668664548132803, + "cloid": "0x00000000000000000000000388000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "8.81", + "side": "B", + "time": 1762185496707, + "startPosition": "-234068.4", + "dir": "Close Short", + "closedPnl": "292.071763", + "hash": "0x2928d67e742a98ff2aa2042ec45ece020de400640f2db7d1ccf181d1332e72e9", + "oid": 221325131205, + "crossed": true, + "fee": "0.308337", + "tid": 785053502347405, + "cloid": "0x00000000000000000000000388000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "11.38", + "side": "B", + "time": 1762185496707, + "startPosition": "-234059.59", + "dir": "Close Short", + "closedPnl": "377.273174", + "hash": "0x2928d67e742a98ff2aa2042ec45ece020de400640f2db7d1ccf181d1332e72e9", + "oid": 221325131205, + "crossed": true, + "fee": "0.398284", + "tid": 487927665765465, + "cloid": "0x00000000000000000000000388000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "1.92", + "side": "B", + "time": 1762185496707, + "startPosition": "-234048.21", + "dir": "Close Short", + "closedPnl": "63.652416", + "hash": "0x2928d67e742a98ff2aa2042ec45ece020de400640f2db7d1ccf181d1332e72e9", + "oid": 221325131205, + "crossed": true, + "fee": "0.067197", + "tid": 869798680241448, + "cloid": "0x00000000000000000000000388000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.5", + "sz": "2.7799", + "side": "B", + "time": 1762185497340, + "startPosition": "-1942.2903", + "dir": "Close Short", + "closedPnl": "1437.430692", + "hash": "0xdad15665c7512173dc4b042ec45ed7020aa2004b625440457e9a01b88654fb5e", + "oid": 221325145579, + "crossed": true, + "fee": "2.097809", + "tid": 293081174409258, + "cloid": "0x00000000000000000000000387000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131719.0", + "side": "B", + "time": 1762185498173, + "startPosition": "-1192264783.0", + "dir": "Close Short", + "closedPnl": "231.166845", + "hash": "0x47dda3ec254af2674957042ec45ee302039d00d1c04e1139eba64f3ee44ecc51", + "oid": 221325169867, + "crossed": true, + "fee": "0.105001", + "tid": 560459095459788, + "cloid": "0x00000000000000000000000385000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "6.11", + "side": "B", + "time": 1762185498336, + "startPosition": "-234046.29", + "dir": "Close Short", + "closedPnl": "203.110453", + "hash": "0x5499b3a3a71b998a5613042ec45ee50205380089421eb85cf8625ef6661f7374", + "oid": 221325173994, + "crossed": true, + "fee": "0.213725", + "tid": 713811678518509, + "cloid": "0x00000000000000000000000388000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "13.95", + "side": "B", + "time": 1762185498336, + "startPosition": "-234040.18", + "dir": "Close Short", + "closedPnl": "463.730085", + "hash": "0x5499b3a3a71b998a5613042ec45ee50205380089421eb85cf8625ef6661f7374", + "oid": 221325173994, + "crossed": true, + "fee": "0.487966", + "tid": 1027640383812804, + "cloid": "0x00000000000000000000000388000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "6.11", + "side": "B", + "time": 1762185498336, + "startPosition": "-234026.23", + "dir": "Close Short", + "closedPnl": "203.110453", + "hash": "0x5499b3a3a71b998a5613042ec45ee50205380089421eb85cf8625ef6661f7374", + "oid": 221325173994, + "crossed": true, + "fee": "0.213725", + "tid": 172756089986930, + "cloid": "0x00000000000000000000000388000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "6.11", + "side": "B", + "time": 1762185498336, + "startPosition": "-234020.12", + "dir": "Close Short", + "closedPnl": "203.049353", + "hash": "0x5499b3a3a71b998a5613042ec45ee50205380089421eb85cf8625ef6661f7374", + "oid": 221325173994, + "crossed": true, + "fee": "0.213738", + "tid": 227337292471494, + "cloid": "0x00000000000000000000000388000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "6.11", + "side": "B", + "time": 1762185498336, + "startPosition": "-234014.01", + "dir": "Close Short", + "closedPnl": "203.049353", + "hash": "0x5499b3a3a71b998a5613042ec45ee50205380089421eb85cf8625ef6661f7374", + "oid": 221325173994, + "crossed": true, + "fee": "0.213738", + "tid": 371073888647975, + "cloid": "0x00000000000000000000000388000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "6.11", + "side": "B", + "time": 1762185498336, + "startPosition": "-234007.9", + "dir": "Close Short", + "closedPnl": "203.049353", + "hash": "0x5499b3a3a71b998a5613042ec45ee50205380089421eb85cf8625ef6661f7374", + "oid": 221325173994, + "crossed": true, + "fee": "0.213738", + "tid": 994818026142761, + "cloid": "0x00000000000000000000000388000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "6.11", + "side": "B", + "time": 1762185498336, + "startPosition": "-234001.79", + "dir": "Close Short", + "closedPnl": "203.049353", + "hash": "0x5499b3a3a71b998a5613042ec45ee50205380089421eb85cf8625ef6661f7374", + "oid": 221325173994, + "crossed": true, + "fee": "0.213738", + "tid": 33269077179646, + "cloid": "0x00000000000000000000000388000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "6.11", + "side": "B", + "time": 1762185498336, + "startPosition": "-233995.68", + "dir": "Close Short", + "closedPnl": "203.049353", + "hash": "0x5499b3a3a71b998a5613042ec45ee50205380089421eb85cf8625ef6661f7374", + "oid": 221325173994, + "crossed": true, + "fee": "0.213738", + "tid": 262766671161356, + "cloid": "0x00000000000000000000000388000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "3.23", + "side": "B", + "time": 1762185498336, + "startPosition": "-233989.57", + "dir": "Close Short", + "closedPnl": "107.340329", + "hash": "0x5499b3a3a71b998a5613042ec45ee50205380089421eb85cf8625ef6661f7374", + "oid": 221325173994, + "crossed": true, + "fee": "0.112991", + "tid": 1015590553992749, + "cloid": "0x00000000000000000000000388000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.5", + "sz": "2.7816", + "side": "B", + "time": 1762185499373, + "startPosition": "-1939.5104", + "dir": "Close Short", + "closedPnl": "1441.091328", + "hash": "0xde1d07977c85ac1fdf96042ec45ef20202a6007d1788caf181e5b2ea3b89860a", + "oid": 221325197066, + "crossed": true, + "fee": "2.098508", + "tid": 747488582571074, + "cloid": "0x00000000000000000000000387000191", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "59.97", + "side": "B", + "time": 1762185499957, + "startPosition": "-233986.34", + "dir": "Close Short", + "closedPnl": "1995.339831", + "hash": "0xe9f44b7bfaa6c41ceb6e042ec45efa020cb0006195a9e2ee8dbcf6ceb9aa9e07", + "oid": 221325211865, + "crossed": true, + "fee": "2.097354", + "tid": 12164134176337, + "cloid": "0x00000000000000000000000388000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131707.0", + "side": "B", + "time": 1762185499957, + "startPosition": "-1192133064.0", + "dir": "Close Short", + "closedPnl": "230.618957", + "hash": "0x1ae9131e940e53031c62042ec45efa020cb600042f0171d5beb1be7153022ced", + "oid": 221325211868, + "crossed": true, + "fee": "0.105102", + "tid": 495698122806125, + "cloid": "0x00000000000000000000000385000148", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.5", + "sz": "2.7809", + "side": "B", + "time": 1762185500841, + "startPosition": "-1936.7288", + "dir": "Close Short", + "closedPnl": "1440.728672", + "hash": "0xf96ad088b494b550fae4042ec45f070207a6006e4f97d4239d337bdb73988f3b", + "oid": 221325228695, + "crossed": true, + "fee": "2.09798", + "tid": 313952436128419, + "cloid": "0x00000000000000000000000387000192", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "3.0", + "side": "B", + "time": 1762185501858, + "startPosition": "-233926.37", + "dir": "Close Short", + "closedPnl": "99.6369", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.104957", + "tid": 346270463752498, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "0.29", + "side": "B", + "time": 1762185501858, + "startPosition": "-233923.37", + "dir": "Close Short", + "closedPnl": "9.631567", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.010145", + "tid": 744733445250953, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "0.18", + "side": "B", + "time": 1762185501858, + "startPosition": "-233923.08", + "dir": "Close Short", + "closedPnl": "5.974614", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.006298", + "tid": 829061092376456, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "0.18", + "side": "B", + "time": 1762185501858, + "startPosition": "-233922.9", + "dir": "Close Short", + "closedPnl": "5.972814", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.006298", + "tid": 818343861248704, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "3.0", + "side": "B", + "time": 1762185501858, + "startPosition": "-233922.72", + "dir": "Close Short", + "closedPnl": "99.5469", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.104976", + "tid": 1034553924070474, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.64", + "sz": "5.97", + "side": "B", + "time": 1762185501858, + "startPosition": "-233919.72", + "dir": "Close Short", + "closedPnl": "198.038631", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.208916", + "tid": 408917980303813, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.64", + "sz": "5.97", + "side": "B", + "time": 1762185501858, + "startPosition": "-233913.75", + "dir": "Close Short", + "closedPnl": "198.038631", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.208916", + "tid": 1004509157881726, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.64", + "sz": "5.97", + "side": "B", + "time": 1762185501858, + "startPosition": "-233907.78", + "dir": "Close Short", + "closedPnl": "198.038631", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.208916", + "tid": 1015729443274568, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.64", + "sz": "6.53", + "side": "B", + "time": 1762185501858, + "startPosition": "-233901.81", + "dir": "Close Short", + "closedPnl": "216.615119", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.228513", + "tid": 239838324911233, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "17.99", + "side": "B", + "time": 1762185501858, + "startPosition": "-233895.28", + "dir": "Close Short", + "closedPnl": "596.229977", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.629662", + "tid": 463147781991517, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "6.48", + "side": "B", + "time": 1762185501858, + "startPosition": "-233877.29", + "dir": "Close Short", + "closedPnl": "214.762104", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.226804", + "tid": 1022964178166850, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.68", + "sz": "4.38", + "side": "B", + "time": 1762185501858, + "startPosition": "-233870.81", + "dir": "Close Short", + "closedPnl": "145.119474", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.153312", + "tid": 981484631536535, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131544.0", + "side": "B", + "time": 1762185502002, + "startPosition": "-1192001357.0", + "dir": "Close Short", + "closedPnl": "230.333544", + "hash": "0xcabab61bed1f560dcc34042ec45f17011e00ce01881274df6e83616eac132ff8", + "oid": 221325249699, + "crossed": false, + "fee": "0.013996", + "tid": 713366552472927, + "cloid": "0x00000000000000000000000385000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.7", + "sz": "2.7806", + "side": "B", + "time": 1762185502730, + "startPosition": "-1933.9479", + "dir": "Close Short", + "closedPnl": "1434.455928", + "hash": "0xaab6781b54ce1b04ac30042ec45f1f020f290000efc139d64e7f236e13c1f4ef", + "oid": 221325272979, + "crossed": true, + "fee": "2.099038", + "tid": 1059017501512019, + "cloid": "0x00000000000000000000000387000193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.68", + "sz": "59.91", + "side": "B", + "time": 1762185503321, + "startPosition": "-233866.43", + "dir": "Close Short", + "closedPnl": "1984.956093", + "hash": "0xe2c0e93b8b061281e43a042ec45f270206050021260931538689948e4a09ec6c", + "oid": 221325283397, + "crossed": true, + "fee": "2.097017", + "tid": 236064829825860, + "cloid": "0x00000000000000000000000388000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.1", + "sz": "0.5587", + "side": "B", + "time": 1762185504496, + "startPosition": "-1931.1673", + "dir": "Close Short", + "closedPnl": "288.557376", + "hash": "0xd5d074a4c2af3bffd74a042ec45f36020304008a5da25ad179991ff781a315ea", + "oid": 221325298325, + "crossed": true, + "fee": "0.421684", + "tid": 811839634833062, + "cloid": "0x00000000000000000000000387000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.1", + "sz": "0.5587", + "side": "B", + "time": 1762185504496, + "startPosition": "-1930.6086", + "dir": "Close Short", + "closedPnl": "288.557376", + "hash": "0xd5d074a4c2af3bffd74a042ec45f36020304008a5da25ad179991ff781a315ea", + "oid": 221325298325, + "crossed": true, + "fee": "0.421684", + "tid": 617233029887494, + "cloid": "0x00000000000000000000000387000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.1", + "sz": "0.5587", + "side": "B", + "time": 1762185504496, + "startPosition": "-1930.0499", + "dir": "Close Short", + "closedPnl": "288.557376", + "hash": "0xd5d074a4c2af3bffd74a042ec45f36020304008a5da25ad179991ff781a315ea", + "oid": 221325298325, + "crossed": true, + "fee": "0.421684", + "tid": 122031950967317, + "cloid": "0x00000000000000000000000387000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.1", + "sz": "0.5587", + "side": "B", + "time": 1762185504496, + "startPosition": "-1929.4912", + "dir": "Close Short", + "closedPnl": "288.557376", + "hash": "0xd5d074a4c2af3bffd74a042ec45f36020304008a5da25ad179991ff781a315ea", + "oid": 221325298325, + "crossed": true, + "fee": "0.421684", + "tid": 306610561011808, + "cloid": "0x00000000000000000000000387000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.1", + "sz": "0.5453", + "side": "B", + "time": 1762185504496, + "startPosition": "-1928.9325", + "dir": "Close Short", + "closedPnl": "281.636544", + "hash": "0xd5d074a4c2af3bffd74a042ec45f36020304008a5da25ad179991ff781a315ea", + "oid": 221325298325, + "crossed": true, + "fee": "0.411571", + "tid": 902320359115217, + "cloid": "0x00000000000000000000000387000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.68", + "sz": "3.0", + "side": "B", + "time": 1762185504991, + "startPosition": "-233806.52", + "dir": "Close Short", + "closedPnl": "99.3969", + "hash": "0xaaabb8c1c3da9801ac25042ec45f3d02112c00a75eddb6d34e74641482de71ec", + "oid": 221325307167, + "crossed": true, + "fee": "0.105008", + "tid": 570320354255002, + "cloid": "0x00000000000000000000000388000177", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.68", + "sz": "56.92", + "side": "B", + "time": 1762185504991, + "startPosition": "-233803.52", + "dir": "Close Short", + "closedPnl": "1885.890516", + "hash": "0xaaabb8c1c3da9801ac25042ec45f3d02112c00a75eddb6d34e74641482de71ec", + "oid": 221325307167, + "crossed": true, + "fee": "1.992359", + "tid": 1058013972124017, + "cloid": "0x00000000000000000000000388000177", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.8", + "sz": "2.25", + "side": "B", + "time": 1762185506033, + "startPosition": "-1928.3872", + "dir": "Close Short", + "closedPnl": "1162.755", + "hash": "0x7383489f141c55bc74fd042ec45f490203940084af1f748e174bf3f1d3102fa7", + "oid": 221325325197, + "crossed": true, + "fee": "1.69807", + "tid": 739449733043545, + "cloid": "0x00000000000000000000000387000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.1", + "sz": "0.5307", + "side": "B", + "time": 1762185506033, + "startPosition": "-1926.1372", + "dir": "Close Short", + "closedPnl": "274.095936", + "hash": "0x7383489f141c55bc74fd042ec45f490203940084af1f748e174bf3f1d3102fa7", + "oid": 221325325197, + "crossed": true, + "fee": "0.400551", + "tid": 872054408036268, + "cloid": "0x00000000000000000000000387000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "0.17", + "side": "B", + "time": 1762185506796, + "startPosition": "-233746.6", + "dir": "Close Short", + "closedPnl": "5.622291", + "hash": "0xf8a241d627d9e7bcfa1b042ec45f5202044300bbc2dd068f9c6aed28e6ddc1a7", + "oid": 221325339133, + "crossed": true, + "fee": "0.005952", + "tid": 732612429792299, + "cloid": "0x00000000000000000000000388000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "0.17", + "side": "B", + "time": 1762185506796, + "startPosition": "-233746.43", + "dir": "Close Short", + "closedPnl": "5.622291", + "hash": "0xf8a241d627d9e7bcfa1b042ec45f5202044300bbc2dd068f9c6aed28e6ddc1a7", + "oid": 221325339133, + "crossed": true, + "fee": "0.005952", + "tid": 804549892487302, + "cloid": "0x00000000000000000000000388000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "6.91", + "side": "B", + "time": 1762185506796, + "startPosition": "-233746.26", + "dir": "Close Short", + "closedPnl": "228.529593", + "hash": "0xf8a241d627d9e7bcfa1b042ec45f5202044300bbc2dd068f9c6aed28e6ddc1a7", + "oid": 221325339133, + "crossed": true, + "fee": "0.241956", + "tid": 883004765166763, + "cloid": "0x00000000000000000000000388000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "7.25", + "side": "B", + "time": 1762185506796, + "startPosition": "-233739.35", + "dir": "Close Short", + "closedPnl": "239.774175", + "hash": "0xf8a241d627d9e7bcfa1b042ec45f5202044300bbc2dd068f9c6aed28e6ddc1a7", + "oid": 221325339133, + "crossed": true, + "fee": "0.253861", + "tid": 198402746608167, + "cloid": "0x00000000000000000000000388000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "45.39", + "side": "B", + "time": 1762185506796, + "startPosition": "-233732.1", + "dir": "Close Short", + "closedPnl": "1501.151697", + "hash": "0xf8a241d627d9e7bcfa1b042ec45f5202044300bbc2dd068f9c6aed28e6ddc1a7", + "oid": 221325339133, + "crossed": true, + "fee": "1.589349", + "tid": 534978856247743, + "cloid": "0x00000000000000000000000388000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.0", + "sz": "1.0982", + "side": "B", + "time": 1762185508045, + "startPosition": "-1925.6065", + "dir": "Close Short", + "closedPnl": "567.308156", + "hash": "0xd5d80273eb9e7d1ad751042ec45f6202038f005986919bec79a0adc6aa925705", + "oid": 221325357554, + "crossed": true, + "fee": "0.828855", + "tid": 448820089375269, + "cloid": "0x00000000000000000000000387000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.0", + "sz": "1.6821", + "side": "B", + "time": 1762185508045, + "startPosition": "-1924.5083", + "dir": "Close Short", + "closedPnl": "868.939218", + "hash": "0xd5d80273eb9e7d1ad751042ec45f6202038f005986919bec79a0adc6aa925705", + "oid": 221325357554, + "crossed": true, + "fee": "1.269548", + "tid": 784492178840906, + "cloid": "0x00000000000000000000000387000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "0.07", + "side": "B", + "time": 1762185508375, + "startPosition": "-233686.71", + "dir": "Close Short", + "closedPnl": "2.314361", + "hash": "0x413eee9fc418730e42b8042ec45f66020b4300855f1b91e0e50799f2831c4cf8", + "oid": 221325366881, + "crossed": true, + "fee": "0.002451", + "tid": 766539509380921, + "cloid": "0x00000000000000000000000388000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "0.07", + "side": "B", + "time": 1762185508375, + "startPosition": "-233686.64", + "dir": "Close Short", + "closedPnl": "2.314361", + "hash": "0x413eee9fc418730e42b8042ec45f66020b4300855f1b91e0e50799f2831c4cf8", + "oid": 221325366881, + "crossed": true, + "fee": "0.002451", + "tid": 928252312275706, + "cloid": "0x00000000000000000000000388000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "0.07", + "side": "B", + "time": 1762185508375, + "startPosition": "-233686.57", + "dir": "Close Short", + "closedPnl": "2.314361", + "hash": "0x413eee9fc418730e42b8042ec45f66020b4300855f1b91e0e50799f2831c4cf8", + "oid": 221325366881, + "crossed": true, + "fee": "0.002451", + "tid": 180660870319885, + "cloid": "0x00000000000000000000000388000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "0.07", + "side": "B", + "time": 1762185508375, + "startPosition": "-233686.5", + "dir": "Close Short", + "closedPnl": "2.314361", + "hash": "0x413eee9fc418730e42b8042ec45f66020b4300855f1b91e0e50799f2831c4cf8", + "oid": 221325366881, + "crossed": true, + "fee": "0.002451", + "tid": 724187229660186, + "cloid": "0x00000000000000000000000388000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "0.07", + "side": "B", + "time": 1762185508375, + "startPosition": "-233686.43", + "dir": "Close Short", + "closedPnl": "2.314361", + "hash": "0x413eee9fc418730e42b8042ec45f66020b4300855f1b91e0e50799f2831c4cf8", + "oid": 221325366881, + "crossed": true, + "fee": "0.002451", + "tid": 129087252454250, + "cloid": "0x00000000000000000000000388000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "0.07", + "side": "B", + "time": 1762185508375, + "startPosition": "-233686.36", + "dir": "Close Short", + "closedPnl": "2.314361", + "hash": "0x413eee9fc418730e42b8042ec45f66020b4300855f1b91e0e50799f2831c4cf8", + "oid": 221325366881, + "crossed": true, + "fee": "0.002451", + "tid": 479359183022862, + "cloid": "0x00000000000000000000000388000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "3.0", + "side": "B", + "time": 1762185508375, + "startPosition": "-233686.29", + "dir": "Close Short", + "closedPnl": "99.1869", + "hash": "0x413eee9fc418730e42b8042ec45f66020b4300855f1b91e0e50799f2831c4cf8", + "oid": 221325366881, + "crossed": true, + "fee": "0.105052", + "tid": 47622562632665, + "cloid": "0x00000000000000000000000388000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.79", + "sz": "0.29", + "side": "B", + "time": 1762185508375, + "startPosition": "-233683.29", + "dir": "Close Short", + "closedPnl": "9.576467", + "hash": "0x413eee9fc418730e42b8042ec45f66020b4300855f1b91e0e50799f2831c4cf8", + "oid": 221325366881, + "crossed": true, + "fee": "0.010157", + "tid": 1011844846076701, + "cloid": "0x00000000000000000000000388000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "56.18", + "side": "B", + "time": 1762185508375, + "startPosition": "-233683.0", + "dir": "Close Short", + "closedPnl": "1854.631014", + "hash": "0x413eee9fc418730e42b8042ec45f66020b4300855f1b91e0e50799f2831c4cf8", + "oid": 221325366881, + "crossed": true, + "fee": "1.967873", + "tid": 396251664077871, + "cloid": "0x00000000000000000000000388000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "24420.0", + "side": "B", + "time": 1762185508700, + "startPosition": "-1191869813.0", + "dir": "Close Short", + "closedPnl": "42.56406", + "hash": "0xe450012811fa3a91e5c9042ec45f6b020cf8000dacfd59638818ac7ad0fe147c", + "oid": 221325372698, + "crossed": true, + "fee": "0.019528", + "tid": 76639235963771, + "cloid": "0x00000000000000000000000385000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "107095.0", + "side": "B", + "time": 1762185508700, + "startPosition": "-1191845393.0", + "dir": "Close Short", + "closedPnl": "186.55949", + "hash": "0xe450012811fa3a91e5c9042ec45f6b020cf8000dacfd59638818ac7ad0fe147c", + "oid": 221325372698, + "crossed": true, + "fee": "0.085664", + "tid": 709395750568503, + "cloid": "0x00000000000000000000000385000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.1", + "sz": "2.7803", + "side": "B", + "time": 1762185509696, + "startPosition": "-1922.8262", + "dir": "Close Short", + "closedPnl": "1435.969344", + "hash": "0xf0e664f029c90120f260042ec45f7602070600d5c4cc1ff394af1042e8ccdb0b", + "oid": 221325391285, + "crossed": true, + "fee": "2.098462", + "tid": 213515754429457, + "cloid": "0x00000000000000000000000387000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "59.87", + "side": "B", + "time": 1762185510166, + "startPosition": "-233626.82", + "dir": "Close Short", + "closedPnl": "1976.446401", + "hash": "0xc891df51a7538002ca0b042ec45f7c020ca9003742569ed46c5a8aa4665759ed", + "oid": 221325400765, + "crossed": true, + "fee": "2.097126", + "tid": 718812292116253, + "cloid": "0x00000000000000000000000388000180", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "131336.0", + "side": "B", + "time": 1762185510426, + "startPosition": "-1191738298.0", + "dir": "Close Short", + "closedPnl": "229.049984", + "hash": "0xe68d41010ddc89bbe806042ec45f7f020a0200e6a8dfa88d8a55ec53ccd063a6", + "oid": 221325406281, + "crossed": true, + "fee": "0.104999", + "tid": 677025534445480, + "cloid": "0x00000000000000000000000385000153", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.1", + "sz": "2.7807", + "side": "B", + "time": 1762185511464, + "startPosition": "-1920.0459", + "dir": "Close Short", + "closedPnl": "1436.175936", + "hash": "0xc5bce16c87fe1d50c736042ec45f8c0208f3005222f13c2269858cbf46f1f73b", + "oid": 221325428683, + "crossed": true, + "fee": "2.098763", + "tid": 594871114737080, + "cloid": "0x00000000000000000000000387000198", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.77", + "sz": "59.89", + "side": "B", + "time": 1762185512072, + "startPosition": "-233566.95", + "dir": "Close Short", + "closedPnl": "1978.903347", + "hash": "0x7e78434b759ffb8e7ff1042ec45f9202103f003110931a602240ee9e3493d579", + "oid": 221325442106, + "crossed": true, + "fee": "2.097449", + "tid": 305630323175579, + "cloid": "0x00000000000000000000000388000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "0.95", + "side": "B", + "time": 1762185514041, + "startPosition": "-233507.06", + "dir": "Close Short", + "closedPnl": "31.409185", + "hash": "0x7e8c49abb66c41428006042ec45fab0212970091516f60142254f4fe75601b2d", + "oid": 221325479930, + "crossed": true, + "fee": "0.033266", + "tid": 985625843908808, + "cloid": "0x00000000000000000000000388000182", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "58.95", + "side": "B", + "time": 1762185514041, + "startPosition": "-233506.11", + "dir": "Close Short", + "closedPnl": "1949.022585", + "hash": "0x7e8c49abb66c41428006042ec45fab0212970091516f60142254f4fe75601b2d", + "oid": 221325479930, + "crossed": true, + "fee": "2.064281", + "tid": 1063525652264178, + "cloid": "0x00000000000000000000000388000182", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.2", + "sz": "2.7808", + "side": "B", + "time": 1762185514913, + "startPosition": "-1917.2652", + "dir": "Close Short", + "closedPnl": "1438.730304", + "hash": "0x1f45d75ec00a854920bf042ec45fb702070500445b0da41bc30e82b17f0e5f33", + "oid": 221325500614, + "crossed": true, + "fee": "2.098313", + "tid": 569983431711358, + "cloid": "0x00000000000000000000000387000199", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.71", + "sz": "59.92", + "side": "B", + "time": 1762185516462, + "startPosition": "-233447.16", + "dir": "Close Short", + "closedPnl": "1983.489816", + "hash": "0x4e4bc0c956536bc44fc5042ec45fcc02078900aef1568a96f2146c1c155745ae", + "oid": 221325532387, + "crossed": true, + "fee": "2.097745", + "tid": 762132551763488, + "cloid": "0x00000000000000000000000388000183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.2", + "sz": "0.7418", + "side": "B", + "time": 1762185516736, + "startPosition": "-1914.4844", + "dir": "Close Short", + "closedPnl": "384.534284", + "hash": "0x2164517dea2d0bbc22de042ec45fd00203ba006385202a8ec52cfcd0a920e5a6", + "oid": 221325535705, + "crossed": true, + "fee": "0.559585", + "tid": 964612237121852, + "cloid": "0x00000000000000000000000387000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.2", + "sz": "1.1689", + "side": "B", + "time": 1762185516736, + "startPosition": "-1913.7426", + "dir": "Close Short", + "closedPnl": "605.934382", + "hash": "0x2164517dea2d0bbc22de042ec45fd00203ba006385202a8ec52cfcd0a920e5a6", + "oid": 221325535705, + "crossed": true, + "fee": "0.881773", + "tid": 682244665413761, + "cloid": "0x00000000000000000000000387000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.2", + "sz": "0.8717", + "side": "B", + "time": 1762185516736, + "startPosition": "-1912.5737", + "dir": "Close Short", + "closedPnl": "451.871846", + "hash": "0x2164517dea2d0bbc22de042ec45fd00203ba006385202a8ec52cfcd0a920e5a6", + "oid": 221325535705, + "crossed": true, + "fee": "0.657577", + "tid": 264382995738351, + "cloid": "0x00000000000000000000000387000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.68", + "sz": "18.53", + "side": "B", + "time": 1762185518533, + "startPosition": "-233387.24", + "dir": "Close Short", + "closedPnl": "613.941519", + "hash": "0x9e3d9f4f58c256fe9fb7042ec45fe90203f70034f3c575d042064aa217c630e9", + "oid": 221325564233, + "crossed": true, + "fee": "0.648601", + "tid": 1096247552032505, + "cloid": "0x00000000000000000000000388000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.68", + "sz": "9.17", + "side": "B", + "time": 1762185518533, + "startPosition": "-233368.71", + "dir": "Close Short", + "closedPnl": "303.823191", + "hash": "0x9e3d9f4f58c256fe9fb7042ec45fe90203f70034f3c575d042064aa217c630e9", + "oid": 221325564233, + "crossed": true, + "fee": "0.320975", + "tid": 515951697258328, + "cloid": "0x00000000000000000000000388000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.68", + "sz": "32.22", + "side": "B", + "time": 1762185518533, + "startPosition": "-233359.54", + "dir": "Close Short", + "closedPnl": "1067.522706", + "hash": "0x9e3d9f4f58c256fe9fb7042ec45fe90203f70034f3c575d042064aa217c630e9", + "oid": 221325564233, + "crossed": true, + "fee": "1.12779", + "tid": 1062850276766155, + "cloid": "0x00000000000000000000000388000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.7", + "sz": "1.0301", + "side": "B", + "time": 1762185519815, + "startPosition": "-1911.702", + "dir": "Close Short", + "closedPnl": "534.498288", + "hash": "0x12bcf7c7429c31811436042ec45ff902074c00acdd9f5053b685a31a01900b6b", + "oid": 221325591363, + "crossed": true, + "fee": "0.77696", + "tid": 1117805306822370, + "cloid": "0x00000000000000000000000387000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.7", + "sz": "1.7523", + "side": "B", + "time": 1762185519815, + "startPosition": "-1910.6719", + "dir": "Close Short", + "closedPnl": "909.233424", + "hash": "0x12bcf7c7429c31811436042ec45ff902074c00acdd9f5053b685a31a01900b6b", + "oid": 221325591363, + "crossed": true, + "fee": "1.321684", + "tid": 200648707921594, + "cloid": "0x00000000000000000000000387000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "14.82", + "side": "B", + "time": 1762185520191, + "startPosition": "-233327.32", + "dir": "Close Short", + "closedPnl": "493.540086", + "hash": "0xe344da762356a5eae4be042ec45fff020a9a005bbe59c4bc870d85c8e25a7fd5", + "oid": 221325598958, + "crossed": true, + "fee": "0.518212", + "tid": 720238394079379, + "cloid": "0x00000000000000000000000388000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "14.82", + "side": "B", + "time": 1762185520191, + "startPosition": "-233312.5", + "dir": "Close Short", + "closedPnl": "493.540086", + "hash": "0xe344da762356a5eae4be042ec45fff020a9a005bbe59c4bc870d85c8e25a7fd5", + "oid": 221325598958, + "crossed": true, + "fee": "0.518212", + "tid": 877004156599729, + "cloid": "0x00000000000000000000000388000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "14.82", + "side": "B", + "time": 1762185520191, + "startPosition": "-233297.68", + "dir": "Close Short", + "closedPnl": "493.540086", + "hash": "0xe344da762356a5eae4be042ec45fff020a9a005bbe59c4bc870d85c8e25a7fd5", + "oid": 221325598958, + "crossed": true, + "fee": "0.518212", + "tid": 1103611188729600, + "cloid": "0x00000000000000000000000388000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "14.82", + "side": "B", + "time": 1762185520191, + "startPosition": "-233282.86", + "dir": "Close Short", + "closedPnl": "493.540086", + "hash": "0xe344da762356a5eae4be042ec45fff020a9a005bbe59c4bc870d85c8e25a7fd5", + "oid": 221325598958, + "crossed": true, + "fee": "0.518212", + "tid": 13170033014575, + "cloid": "0x00000000000000000000000388000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "0.68", + "side": "B", + "time": 1762185520191, + "startPosition": "-233268.04", + "dir": "Close Short", + "closedPnl": "22.645564", + "hash": "0xe344da762356a5eae4be042ec45fff020a9a005bbe59c4bc870d85c8e25a7fd5", + "oid": 221325598958, + "crossed": true, + "fee": "0.023777", + "tid": 1058326044397902, + "cloid": "0x00000000000000000000000388000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131429.0", + "side": "B", + "time": 1762185520981, + "startPosition": "-1191606962.0", + "dir": "Close Short", + "closedPnl": "230.263608", + "hash": "0x2b5a1ae8aca08d732cd3042ec4600a02038000ce47a3ac45cf22c63b6ba4675d", + "oid": 221325615536, + "crossed": true, + "fee": "0.104852", + "tid": 755500715859691, + "cloid": "0x00000000000000000000000385000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.0", + "sz": "2.783", + "side": "B", + "time": 1762185521530, + "startPosition": "-1908.9196", + "dir": "Close Short", + "closedPnl": "1445.99114", + "hash": "0x3439e52b8ce2928d35b3042ec460110207c1001127e5b15fd802907e4be66c77", + "oid": 221325626021, + "crossed": true, + "fee": "2.098688", + "tid": 310627613132236, + "cloid": "0x00000000000000000000000387000202", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "59.97", + "side": "B", + "time": 1762185521722, + "startPosition": "-233267.36", + "dir": "Close Short", + "closedPnl": "1994.740131", + "hash": "0xf834f0042119f8ebf9ae042ec4601302077200e9bc1d17be9bfd9b56e01dd2d6", + "oid": 221325628729, + "crossed": true, + "fee": "2.09748", + "tid": 696009853456807, + "cloid": "0x00000000000000000000000388000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131746.0", + "side": "B", + "time": 1762185523579, + "startPosition": "-1191475533.0", + "dir": "Close Short", + "closedPnl": "230.950738", + "hash": "0x04b592dcf4a6e6ac062f042ec4602a02036000c28faa057ea87e3e2fb3aac096", + "oid": 221325669730, + "crossed": true, + "fee": "0.105077", + "tid": 150080106831259, + "cloid": "0x00000000000000000000000385000157", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "0.29", + "side": "B", + "time": 1762185523645, + "startPosition": "-233207.39", + "dir": "Close Short", + "closedPnl": "9.651867", + "hash": "0x2231c244f9148f9a23ab042ec4602b02067a002a9417ae6cc5fa6d97b8186984", + "oid": 221325672494, + "crossed": true, + "fee": "0.010141", + "tid": 539299659239547, + "cloid": "0x00000000000000000000000388000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "6.25", + "side": "B", + "time": 1762185523645, + "startPosition": "-233207.1", + "dir": "Close Short", + "closedPnl": "208.014375", + "hash": "0x2231c244f9148f9a23ab042ec4602b02067a002a9417ae6cc5fa6d97b8186984", + "oid": 221325672494, + "crossed": true, + "fee": "0.21857", + "tid": 708334794861996, + "cloid": "0x00000000000000000000000388000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "12.01", + "side": "B", + "time": 1762185523645, + "startPosition": "-233200.85", + "dir": "Close Short", + "closedPnl": "399.600323", + "hash": "0x2231c244f9148f9a23ab042ec4602b02067a002a9417ae6cc5fa6d97b8186984", + "oid": 221325672494, + "crossed": true, + "fee": "0.42003", + "tid": 155816199195518, + "cloid": "0x00000000000000000000000388000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "41.45", + "side": "B", + "time": 1762185523645, + "startPosition": "-233188.84", + "dir": "Close Short", + "closedPnl": "1378.722335", + "hash": "0x2231c244f9148f9a23ab042ec4602b02067a002a9417ae6cc5fa6d97b8186984", + "oid": 221325672494, + "crossed": true, + "fee": "1.449734", + "tid": 684118121424862, + "cloid": "0x00000000000000000000000388000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.7", + "sz": "2.7835", + "side": "B", + "time": 1762185523645, + "startPosition": "-1906.1366", + "dir": "Close Short", + "closedPnl": "1447.08598", + "hash": "0xd50538e012a5d215d67e042ec4602b02067b00c5ada8f0e778cde432d1a9ac00", + "oid": 221325672495, + "crossed": true, + "fee": "2.098889", + "tid": 503612392224997, + "cloid": "0x00000000000000000000000387000203", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "59.97", + "side": "B", + "time": 1762185525186, + "startPosition": "-233147.39", + "dir": "Close Short", + "closedPnl": "1994.740131", + "hash": "0x6e1d9406d4e6ba486f97042ec4604002051600ec6fe9d91a11e63f5993ea9433", + "oid": 221325700611, + "crossed": true, + "fee": "2.09748", + "tid": 597259289527530, + "cloid": "0x00000000000000000000000388000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131640.0", + "side": "B", + "time": 1762185525186, + "startPosition": "-1191343787.0", + "dir": "Close Short", + "closedPnl": "230.76492", + "hash": "0x9f125ba96e4e492ea08c042ec4604002051c008f0941680042db06fc2d422319", + "oid": 221325700616, + "crossed": true, + "fee": "0.104993", + "tid": 104720009149545, + "cloid": "0x00000000000000000000000385000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.9", + "sz": "0.0735", + "side": "B", + "time": 1762185526605, + "startPosition": "-1903.3531", + "dir": "Close Short", + "closedPnl": "38.19648", + "hash": "0xf05e0366fe033112f1d7042ec46052020b9e004c99064fe59426aeb9bd070afd", + "oid": 221325721243, + "crossed": true, + "fee": "0.055425", + "tid": 682637564335246, + "cloid": "0x00000000000000000000000387000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.9", + "sz": "0.1705", + "side": "B", + "time": 1762185526605, + "startPosition": "-1903.2796", + "dir": "Close Short", + "closedPnl": "88.60544", + "hash": "0xf05e0366fe033112f1d7042ec46052020b9e004c99064fe59426aeb9bd070afd", + "oid": 221325721243, + "crossed": true, + "fee": "0.128572", + "tid": 289222547779925, + "cloid": "0x00000000000000000000000387000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.2", + "sz": "0.0055", + "side": "B", + "time": 1762185526605, + "startPosition": "-1903.1091", + "dir": "Close Short", + "closedPnl": "2.85659", + "hash": "0xf05e0366fe033112f1d7042ec46052020b9e004c99064fe59426aeb9bd070afd", + "oid": 221325721243, + "crossed": true, + "fee": "0.004147", + "tid": 92853707592220, + "cloid": "0x00000000000000000000000387000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.6", + "sz": "2.5334", + "side": "B", + "time": 1762185526605, + "startPosition": "-1903.1036", + "dir": "Close Short", + "closedPnl": "1314.783932", + "hash": "0xf05e0366fe033112f1d7042ec46052020b9e004c99064fe59426aeb9bd070afd", + "oid": 221325721243, + "crossed": true, + "fee": "1.910781", + "tid": 984149509580995, + "cloid": "0x00000000000000000000000387000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "1.21", + "side": "B", + "time": 1762185527231, + "startPosition": "-233087.42", + "dir": "Close Short", + "closedPnl": "40.235283", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.042322", + "tid": 416588487504291, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "1.21", + "side": "B", + "time": 1762185527231, + "startPosition": "-233086.21", + "dir": "Close Short", + "closedPnl": "40.235283", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.042322", + "tid": 1076977714617713, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "1.21", + "side": "B", + "time": 1762185527231, + "startPosition": "-233085.0", + "dir": "Close Short", + "closedPnl": "40.235283", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.042322", + "tid": 868839766427761, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "1.21", + "side": "B", + "time": 1762185527231, + "startPosition": "-233083.79", + "dir": "Close Short", + "closedPnl": "40.235283", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.042322", + "tid": 920127021420276, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "1.21", + "side": "B", + "time": 1762185527231, + "startPosition": "-233082.58", + "dir": "Close Short", + "closedPnl": "40.235283", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.042322", + "tid": 329988303296069, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "1.21", + "side": "B", + "time": 1762185527231, + "startPosition": "-233081.37", + "dir": "Close Short", + "closedPnl": "40.235283", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.042322", + "tid": 266983900257119, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "0.1", + "side": "B", + "time": 1762185527231, + "startPosition": "-233080.16", + "dir": "Close Short", + "closedPnl": "3.32423", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.003497", + "tid": 990983164925268, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "0.1", + "side": "B", + "time": 1762185527231, + "startPosition": "-233080.06", + "dir": "Close Short", + "closedPnl": "3.32423", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.003497", + "tid": 916701980247063, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "3.0", + "side": "B", + "time": 1762185527231, + "startPosition": "-233079.96", + "dir": "Close Short", + "closedPnl": "99.7269", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.104939", + "tid": 772962853555110, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "0.18", + "side": "B", + "time": 1762185527231, + "startPosition": "-233076.96", + "dir": "Close Short", + "closedPnl": "5.983614", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.006296", + "tid": 1079966384320117, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "18.0", + "side": "B", + "time": 1762185527231, + "startPosition": "-233076.78", + "dir": "Close Short", + "closedPnl": "598.1814", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.629672", + "tid": 217639129173931, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "31.34", + "side": "B", + "time": 1762185527231, + "startPosition": "-233058.78", + "dir": "Close Short", + "closedPnl": "1041.186882", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "1.096395", + "tid": 608531463823846, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.7", + "sz": "2.7822", + "side": "B", + "time": 1762185528733, + "startPosition": "-1900.5702", + "dir": "Close Short", + "closedPnl": "1443.627936", + "hash": "0x525bdca0107578e153d5042ec4606b0208200085ab7897b3f62487f2cf7952cb", + "oid": 221325765960, + "crossed": true, + "fee": "2.098493", + "tid": 990712561686308, + "cloid": "0x00000000000000000000000387000205", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "59.97", + "side": "B", + "time": 1762185528959, + "startPosition": "-233027.44", + "dir": "Close Short", + "closedPnl": "1994.740131", + "hash": "0x1d0c029ee1c63d9c1e85042ec4606e0207ae00847cc95c6ec0d4adf1a0ca1786", + "oid": 221325769307, + "crossed": true, + "fee": "2.09748", + "tid": 706053855876625, + "cloid": "0x00000000000000000000000388000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "131648.0", + "side": "B", + "time": 1762185528959, + "startPosition": "-1191212147.0", + "dir": "Close Short", + "closedPnl": "229.594112", + "hash": "0xc864bd57fa90b1c1c9de042ec4606e0207c3003d9593d0936c2d68aab9948bac", + "oid": 221325769319, + "crossed": true, + "fee": "0.105248", + "tid": 1065613584807392, + "cloid": "0x00000000000000000000000385000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.6", + "sz": "0.741", + "side": "B", + "time": 1762185530276, + "startPosition": "-1897.788", + "dir": "Close Short", + "closedPnl": "384.56418", + "hash": "0x680a4756cb41cd8a6984042ec460820206a2003c6644ec5c0bd2f2a98a45a775", + "oid": 221325785604, + "crossed": true, + "fee": "0.558888", + "tid": 765824590548736, + "cloid": "0x00000000000000000000000387000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.6", + "sz": "0.3705", + "side": "B", + "time": 1762185530276, + "startPosition": "-1897.047", + "dir": "Close Short", + "closedPnl": "192.28209", + "hash": "0x680a4756cb41cd8a6984042ec460820206a2003c6644ec5c0bd2f2a98a45a775", + "oid": 221325785604, + "crossed": true, + "fee": "0.279444", + "tid": 27197174885767, + "cloid": "0x00000000000000000000000387000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.6", + "sz": "0.3705", + "side": "B", + "time": 1762185530276, + "startPosition": "-1896.6765", + "dir": "Close Short", + "closedPnl": "192.28209", + "hash": "0x680a4756cb41cd8a6984042ec460820206a2003c6644ec5c0bd2f2a98a45a775", + "oid": 221325785604, + "crossed": true, + "fee": "0.279444", + "tid": 401611092629668, + "cloid": "0x00000000000000000000000387000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.6", + "sz": "0.3705", + "side": "B", + "time": 1762185530276, + "startPosition": "-1896.306", + "dir": "Close Short", + "closedPnl": "192.28209", + "hash": "0x680a4756cb41cd8a6984042ec460820206a2003c6644ec5c0bd2f2a98a45a775", + "oid": 221325785604, + "crossed": true, + "fee": "0.279444", + "tid": 475512131677960, + "cloid": "0x00000000000000000000000387000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.6", + "sz": "0.3705", + "side": "B", + "time": 1762185530276, + "startPosition": "-1895.9355", + "dir": "Close Short", + "closedPnl": "192.28209", + "hash": "0x680a4756cb41cd8a6984042ec460820206a2003c6644ec5c0bd2f2a98a45a775", + "oid": 221325785604, + "crossed": true, + "fee": "0.279444", + "tid": 103444514042636, + "cloid": "0x00000000000000000000000387000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.6", + "sz": "0.3705", + "side": "B", + "time": 1762185530276, + "startPosition": "-1895.565", + "dir": "Close Short", + "closedPnl": "192.28209", + "hash": "0x680a4756cb41cd8a6984042ec460820206a2003c6644ec5c0bd2f2a98a45a775", + "oid": 221325785604, + "crossed": true, + "fee": "0.279444", + "tid": 461915161881360, + "cloid": "0x00000000000000000000000387000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.6", + "sz": "0.189", + "side": "B", + "time": 1762185530276, + "startPosition": "-1895.1945", + "dir": "Close Short", + "closedPnl": "98.08722", + "hash": "0x680a4756cb41cd8a6984042ec460820206a2003c6644ec5c0bd2f2a98a45a775", + "oid": 221325785604, + "crossed": true, + "fee": "0.14255", + "tid": 801199376964409, + "cloid": "0x00000000000000000000000387000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "1.09", + "side": "B", + "time": 1762185530618, + "startPosition": "-232967.47", + "dir": "Close Short", + "closedPnl": "36.212307", + "hash": "0x46f117254fbe9597486a042ec46087020aa8000aeab1b469eab9c2780eb26f81", + "oid": 221325791689, + "crossed": true, + "fee": "0.038132", + "tid": 644456561448401, + "cloid": "0x00000000000000000000000388000191", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "58.87", + "side": "B", + "time": 1762185530618, + "startPosition": "-232966.38", + "dir": "Close Short", + "closedPnl": "1955.796801", + "hash": "0x46f117254fbe9597486a042ec46087020aa8000aeab1b469eab9c2780eb26f81", + "oid": 221325791689, + "crossed": true, + "fee": "2.059502", + "tid": 850208299984479, + "cloid": "0x00000000000000000000000388000191", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131294.0", + "side": "B", + "time": 1762185530618, + "startPosition": "-1191080499.0", + "dir": "Close Short", + "closedPnl": "228.845442", + "hash": "0xc512682ccf84e201c68c042ec46087020aad00126a8800d368db137f8e88bbec", + "oid": 221325791692, + "crossed": true, + "fee": "0.104993", + "tid": 25284940658796, + "cloid": "0x00000000000000000000000385000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.7", + "sz": "0.0314", + "side": "B", + "time": 1762185532213, + "startPosition": "-1895.0055", + "dir": "Close Short", + "closedPnl": "16.292832", + "hash": "0x35bd4dea5c1251693737042ec4609802034900cff715703bd985f93d1b162b53", + "oid": 221325819219, + "crossed": true, + "fee": "0.023683", + "tid": 344297110234440, + "cloid": "0x00000000000000000000000387000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.7", + "sz": "0.0314", + "side": "B", + "time": 1762185532213, + "startPosition": "-1894.9741", + "dir": "Close Short", + "closedPnl": "16.292832", + "hash": "0x35bd4dea5c1251693737042ec4609802034900cff715703bd985f93d1b162b53", + "oid": 221325819219, + "crossed": true, + "fee": "0.023683", + "tid": 796361421010981, + "cloid": "0x00000000000000000000000387000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.7", + "sz": "0.0314", + "side": "B", + "time": 1762185532213, + "startPosition": "-1894.9427", + "dir": "Close Short", + "closedPnl": "16.292832", + "hash": "0x35bd4dea5c1251693737042ec4609802034900cff715703bd985f93d1b162b53", + "oid": 221325819219, + "crossed": true, + "fee": "0.023683", + "tid": 939249537881041, + "cloid": "0x00000000000000000000000387000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.7", + "sz": "0.0314", + "side": "B", + "time": 1762185532213, + "startPosition": "-1894.9113", + "dir": "Close Short", + "closedPnl": "16.292832", + "hash": "0x35bd4dea5c1251693737042ec4609802034900cff715703bd985f93d1b162b53", + "oid": 221325819219, + "crossed": true, + "fee": "0.023683", + "tid": 29306450565740, + "cloid": "0x00000000000000000000000387000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.7", + "sz": "0.0314", + "side": "B", + "time": 1762185532213, + "startPosition": "-1894.8799", + "dir": "Close Short", + "closedPnl": "16.292832", + "hash": "0x35bd4dea5c1251693737042ec4609802034900cff715703bd985f93d1b162b53", + "oid": 221325819219, + "crossed": true, + "fee": "0.023683", + "tid": 262610475127483, + "cloid": "0x00000000000000000000000387000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.7", + "sz": "0.0314", + "side": "B", + "time": 1762185532213, + "startPosition": "-1894.8485", + "dir": "Close Short", + "closedPnl": "16.292832", + "hash": "0x35bd4dea5c1251693737042ec4609802034900cff715703bd985f93d1b162b53", + "oid": 221325819219, + "crossed": true, + "fee": "0.023683", + "tid": 841064458332942, + "cloid": "0x00000000000000000000000387000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.1", + "sz": "2.5936", + "side": "B", + "time": 1762185532213, + "startPosition": "-1894.8171", + "dir": "Close Short", + "closedPnl": "1344.729728", + "hash": "0x35bd4dea5c1251693737042ec4609802034900cff715703bd985f93d1b162b53", + "oid": 221325819219, + "crossed": true, + "fee": "1.956458", + "tid": 722330015592027, + "cloid": "0x00000000000000000000000387000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "0.1", + "side": "B", + "time": 1762185532701, + "startPosition": "-232907.51", + "dir": "Close Short", + "closedPnl": "3.32123", + "hash": "0x311b8983c651b18d3295042ec4609e0202ef00696154d05fd4e434d685558b77", + "oid": 221325828449, + "crossed": true, + "fee": "0.003498", + "tid": 223637242325090, + "cloid": "0x00000000000000000000000388000192", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "59.84", + "side": "B", + "time": 1762185532701, + "startPosition": "-232907.41", + "dir": "Close Short", + "closedPnl": "1986.825632", + "hash": "0x311b8983c651b18d3295042ec4609e0202ef00696154d05fd4e434d685558b77", + "oid": 221325828449, + "crossed": true, + "fee": "2.093687", + "tid": 23018372777413, + "cloid": "0x00000000000000000000000388000192", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131259.0", + "side": "B", + "time": 1762185532701, + "startPosition": "-1190949205.0", + "dir": "Close Short", + "closedPnl": "228.653178", + "hash": "0xe3ef001edfe2f408e568042ec4609e0202f000047ae612da87b7ab719ee6cdf3", + "oid": 221325828450, + "crossed": true, + "fee": "0.104992", + "tid": 808052951706839, + "cloid": "0x00000000000000000000000385000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.2", + "sz": "2.7818", + "side": "B", + "time": 1762185533680, + "startPosition": "-1892.2235", + "dir": "Close Short", + "closedPnl": "1442.029484", + "hash": "0x39ed21fe07cd30783b66042ec460ad02019300e3a2c04f4addb5cd50c6c10a62", + "oid": 221325846818, + "crossed": true, + "fee": "2.098484", + "tid": 941317181808525, + "cloid": "0x00000000000000000000000387000208", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "59.94", + "side": "B", + "time": 1762185534303, + "startPosition": "-232847.57", + "dir": "Close Short", + "closedPnl": "1989.546462", + "hash": "0x8e1731c8b2b7c16b8f90042ec460b602052d00ae4dbae03d31dfdd1b71bb9b56", + "oid": 221325857116, + "crossed": true, + "fee": "2.097312", + "tid": 136427403924736, + "cloid": "0x00000000000000000000000388000193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131234.0", + "side": "B", + "time": 1762185534303, + "startPosition": "-1190817946.0", + "dir": "Close Short", + "closedPnl": "228.740862", + "hash": "0xf3be1efee5da4662f537042ec460b602052f00e480dd65359786ca51a4de204d", + "oid": 221325857117, + "crossed": true, + "fee": "0.104945", + "tid": 457340366204139, + "cloid": "0x00000000000000000000000385000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.0", + "sz": "0.1522", + "side": "B", + "time": 1762185535314, + "startPosition": "-1889.4417", + "dir": "Close Short", + "closedPnl": "78.927876", + "hash": "0x1c4c78b6e2895ff01dc6042ec460c0020680009c7d8c7ec2c0152409a18d39da", + "oid": 221325873325, + "crossed": true, + "fee": "0.114807", + "tid": 165897554480088, + "cloid": "0x00000000000000000000000387000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.0", + "sz": "0.5548", + "side": "B", + "time": 1762185535314, + "startPosition": "-1889.2895", + "dir": "Close Short", + "closedPnl": "287.708184", + "hash": "0x1c4c78b6e2895ff01dc6042ec460c0020680009c7d8c7ec2c0152409a18d39da", + "oid": 221325873325, + "crossed": true, + "fee": "0.418496", + "tid": 140093531041401, + "cloid": "0x00000000000000000000000387000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.0", + "sz": "0.4805", + "side": "B", + "time": 1762185535314, + "startPosition": "-1888.7347", + "dir": "Close Short", + "closedPnl": "249.17769", + "hash": "0x1c4c78b6e2895ff01dc6042ec460c0020680009c7d8c7ec2c0152409a18d39da", + "oid": 221325873325, + "crossed": true, + "fee": "0.36245", + "tid": 1012680050276259, + "cloid": "0x00000000000000000000000387000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.0", + "sz": "0.2783", + "side": "B", + "time": 1762185535314, + "startPosition": "-1888.2542", + "dir": "Close Short", + "closedPnl": "144.320814", + "hash": "0x1c4c78b6e2895ff01dc6042ec460c0020680009c7d8c7ec2c0152409a18d39da", + "oid": 221325873325, + "crossed": true, + "fee": "0.209927", + "tid": 872875505864258, + "cloid": "0x00000000000000000000000387000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.0", + "sz": "0.2783", + "side": "B", + "time": 1762185535314, + "startPosition": "-1887.9759", + "dir": "Close Short", + "closedPnl": "144.320814", + "hash": "0x1c4c78b6e2895ff01dc6042ec460c0020680009c7d8c7ec2c0152409a18d39da", + "oid": 221325873325, + "crossed": true, + "fee": "0.209927", + "tid": 1044729794647877, + "cloid": "0x00000000000000000000000387000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.2", + "sz": "1.0377", + "side": "B", + "time": 1762185535314, + "startPosition": "-1887.6976", + "dir": "Close Short", + "closedPnl": "537.922926", + "hash": "0x1c4c78b6e2895ff01dc6042ec460c0020680009c7d8c7ec2c0152409a18d39da", + "oid": 221325873325, + "crossed": true, + "fee": "0.782801", + "tid": 788579868875876, + "cloid": "0x00000000000000000000000387000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "9.16", + "side": "B", + "time": 1762185536168, + "startPosition": "-232787.63", + "dir": "Close Short", + "closedPnl": "304.041468", + "hash": "0xc932937c77da8c14caac042ec460c90201b0006212ddaae66cfb3ecf36de65ff", + "oid": 221325882353, + "crossed": true, + "fee": "0.32051", + "tid": 240908923450011, + "cloid": "0x00000000000000000000000388000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "15.72", + "side": "B", + "time": 1762185536168, + "startPosition": "-232778.47", + "dir": "Close Short", + "closedPnl": "521.782956", + "hash": "0xc932937c77da8c14caac042ec460c90201b0006212ddaae66cfb3ecf36de65ff", + "oid": 221325882353, + "crossed": true, + "fee": "0.550045", + "tid": 192612953882697, + "cloid": "0x00000000000000000000000388000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "35.05", + "side": "B", + "time": 1762185536168, + "startPosition": "-232762.75", + "dir": "Close Short", + "closedPnl": "1163.390115", + "hash": "0xc932937c77da8c14caac042ec460c90201b0006212ddaae66cfb3ecf36de65ff", + "oid": 221325882353, + "crossed": true, + "fee": "1.226406", + "tid": 1124069802490459, + "cloid": "0x00000000000000000000000388000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131303.0", + "side": "B", + "time": 1762185536168, + "startPosition": "-1190686712.0", + "dir": "Close Short", + "closedPnl": "228.729826", + "hash": "0x2ed980b2aafd110c3053042ec460c90201b2009845f02fded2a22c0569f0eaf6", + "oid": 221325882355, + "crossed": true, + "fee": "0.105027", + "tid": 621083300887966, + "cloid": "0x00000000000000000000000385000164", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.9", + "sz": "0.0042", + "side": "B", + "time": 1762185537701, + "startPosition": "-1886.6599", + "dir": "Close Short", + "closedPnl": "2.174256", + "hash": "0xf88f3bb903c7dff8fa08042ec460de02089e009e9ecafecb9c57e70bc2cbb9e3", + "oid": 221325915656, + "crossed": true, + "fee": "0.003168", + "tid": 32838431901097, + "cloid": "0x00000000000000000000000387000210", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.9", + "sz": "2.7775", + "side": "B", + "time": 1762185537701, + "startPosition": "-1886.6557", + "dir": "Close Short", + "closedPnl": "1437.8562", + "hash": "0xf88f3bb903c7dff8fa08042ec460de02089e009e9ecafecb9c57e70bc2cbb9e3", + "oid": 221325915656, + "crossed": true, + "fee": "2.095648", + "tid": 187610188138036, + "cloid": "0x00000000000000000000000387000210", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131302.0", + "side": "B", + "time": 1762185537989, + "startPosition": "-1190555409.0", + "dir": "Close Short", + "closedPnl": "228.728084", + "hash": "0xc42ceec1c76f3f73c5a6042ec460e20207d400a762625e4567f59a148663195e", + "oid": 221325922811, + "crossed": true, + "fee": "0.105027", + "tid": 1013880867683328, + "cloid": "0x00000000000000000000000385000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.71", + "sz": "17.49", + "side": "B", + "time": 1762185538463, + "startPosition": "-232727.7", + "dir": "Close Short", + "closedPnl": "578.959227", + "hash": "0xcd0cdace771cb6b4ce86042ec460e902092400b4121fd58670d586213610909f", + "oid": 221325930946, + "crossed": true, + "fee": "0.612309", + "tid": 327812449854726, + "cloid": "0x00000000000000000000000388000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.71", + "sz": "42.43", + "side": "B", + "time": 1762185538463, + "startPosition": "-232710.21", + "dir": "Close Short", + "closedPnl": "1404.530589", + "hash": "0xcd0cdace771cb6b4ce86042ec460e902092400b4121fd58670d586213610909f", + "oid": 221325930946, + "crossed": true, + "fee": "1.485436", + "tid": 257253087393468, + "cloid": "0x00000000000000000000000388000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.9", + "sz": "2.7814", + "side": "B", + "time": 1762185539245, + "startPosition": "-1883.8782", + "dir": "Close Short", + "closedPnl": "1439.875152", + "hash": "0x101fea4cda5a664d1199042ec460f30207c60032755d851fb3e8959f995e4037", + "oid": 221325940546, + "crossed": true, + "fee": "2.098591", + "tid": 785370510564309, + "cloid": "0x00000000000000000000000387000211", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131175.0", + "side": "B", + "time": 1762185539870, + "startPosition": "-1190424107.0", + "dir": "Close Short", + "closedPnl": "228.50685", + "hash": "0x561a44d916d03cb55794042ec460fb0208a600beb1d35b87f9e2f02bd5d4169f", + "oid": 221325948823, + "crossed": true, + "fee": "0.104925", + "tid": 68723559431600, + "cloid": "0x00000000000000000000000385000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "0.29", + "side": "B", + "time": 1762185540275, + "startPosition": "-232667.78", + "dir": "Close Short", + "closedPnl": "9.611267", + "hash": "0x21f78020a3c793822371042ec4610002067400063ecab254c5c02b7362cb6d6c", + "oid": 221325954055, + "crossed": true, + "fee": "0.01015", + "tid": 142889584848159, + "cloid": "0x00000000000000000000000388000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "6.5", + "side": "B", + "time": 1762185540275, + "startPosition": "-232667.49", + "dir": "Close Short", + "closedPnl": "215.42495", + "hash": "0x21f78020a3c793822371042ec4610002067400063ecab254c5c02b7362cb6d6c", + "oid": 221325954055, + "crossed": true, + "fee": "0.227504", + "tid": 763931653490668, + "cloid": "0x00000000000000000000000388000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "53.13", + "side": "B", + "time": 1762185540275, + "startPosition": "-232660.99", + "dir": "Close Short", + "closedPnl": "1760.850399", + "hash": "0x21f78020a3c793822371042ec4610002067400063ecab254c5c02b7362cb6d6c", + "oid": 221325954055, + "crossed": true, + "fee": "1.859587", + "tid": 403225704531462, + "cloid": "0x00000000000000000000000388000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.9", + "sz": "2.7813", + "side": "B", + "time": 1762185540817, + "startPosition": "-1881.0968", + "dir": "Close Short", + "closedPnl": "1439.823384", + "hash": "0x613ce150729f7db562b6042ec4610702048600360d929c8705058ca3319357a0", + "oid": 221325960551, + "crossed": true, + "fee": "2.098515", + "tid": 868962160417448, + "cloid": "0x00000000000000000000000387000212", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131229.0", + "side": "B", + "time": 1762185541425, + "startPosition": "-1190292932.0", + "dir": "Close Short", + "closedPnl": "228.600918", + "hash": "0x3c375ee0604229cd3db1042ec4610e0204b600c5fb45489fe0000a331f4603b7", + "oid": 221325969874, + "crossed": true, + "fee": "0.104968", + "tid": 984201887497307, + "cloid": "0x00000000000000000000000385000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "59.92", + "side": "B", + "time": 1762185543520, + "startPosition": "-232607.86", + "dir": "Close Short", + "closedPnl": "1980.493816", + "hash": "0x8312688808ef3fe7848c042ec4612a020c44006da3e25eb926db13dac7e319d2", + "oid": 221326012041, + "crossed": true, + "fee": "2.098374", + "tid": 1026565312369930, + "cloid": "0x00000000000000000000000388000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.3", + "sz": "2.7814", + "side": "B", + "time": 1762185543796, + "startPosition": "-1878.3155", + "dir": "Close Short", + "closedPnl": "1441.543992", + "hash": "0x617a060f2b40a72962f3042ec4612d02160b00f4c643c5fb0542b161ea448114", + "oid": 221326018513, + "crossed": true, + "fee": "2.09824", + "tid": 809623400273698, + "cloid": "0x00000000000000000000000387000213", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "59.95", + "side": "B", + "time": 1762185545434, + "startPosition": "-232547.94", + "dir": "Close Short", + "closedPnl": "1989.278885", + "hash": "0xda6e4d3509b044c8dbe8042ec461440210d7001aa4b3639a7e36f887c8b41eb3", + "oid": 221326056804, + "crossed": true, + "fee": "2.097788", + "tid": 146051991032345, + "cloid": "0x00000000000000000000000388000198", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.2", + "sz": "2.783", + "side": "B", + "time": 1762185545434, + "startPosition": "-1875.5341", + "dir": "Close Short", + "closedPnl": "1445.43454", + "hash": "0x62148a49d4bcbbfa638e042ec46144021107002f6fbfdacc05dd359c93b095e5", + "oid": 221326056833, + "crossed": true, + "fee": "2.098805", + "tid": 252250366331857, + "cloid": "0x00000000000000000000000387000214", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131129.0", + "side": "B", + "time": 1762185547235, + "startPosition": "-1190161703.0", + "dir": "Close Short", + "closedPnl": "228.295589", + "hash": "0xa551a4ab5bef6e63a6cb042ec4615b020a3f0090f6e28d35491a4ffe1ae3484e", + "oid": 221326072820, + "crossed": false, + "fee": "0.013988", + "tid": 441371514044245, + "cloid": "0x00000000000000000000000385000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.8", + "sz": "2.7833", + "side": "B", + "time": 1762185547374, + "startPosition": "-1872.7511", + "dir": "Close Short", + "closedPnl": "1446.703674", + "hash": "0xb883474a51897c90b9fd042ec4615d020d1f002fec8c9b625c4bf29d108d567b", + "oid": 221326086482, + "crossed": true, + "fee": "2.098797", + "tid": 763966137699357, + "cloid": "0x00000000000000000000000387000215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "59.97", + "side": "B", + "time": 1762185547578, + "startPosition": "-232487.99", + "dir": "Close Short", + "closedPnl": "1994.740131", + "hash": "0xf7e7b1c790f813c8f961042ec4615f0205a400ad2bfb329b9bb05d1a4ffbedb3", + "oid": 221326088975, + "crossed": true, + "fee": "2.09748", + "tid": 1084258632020013, + "cloid": "0x00000000000000000000000388000199", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003805", + "sz": "131384.0", + "side": "B", + "time": 1762185549677, + "startPosition": "-1190030574.0", + "dir": "Close Short", + "closedPnl": "229.396464", + "hash": "0x74f8d6e7540691967672042ec4617d020ee700ccef09b06818c1823a130a6b81", + "oid": 221326130810, + "crossed": true, + "fee": "0.104982", + "tid": 6744405080410, + "cloid": "0x00000000000000000000000385000171", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.3", + "sz": "0.6843", + "side": "B", + "time": 1762185549933, + "startPosition": "-1869.9678", + "dir": "Close Short", + "closedPnl": "356.027604", + "hash": "0xb50ae0d24e2975c7b684042ec4617f02114f00b7e92c949958d38c250d2d4fb2", + "oid": 221326137747, + "crossed": true, + "fee": "0.515936", + "tid": 1006062555504601, + "cloid": "0x00000000000000000000000387000216", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.3", + "sz": "0.9318", + "side": "B", + "time": 1762185549933, + "startPosition": "-1869.2835", + "dir": "Close Short", + "closedPnl": "484.796904", + "hash": "0xb50ae0d24e2975c7b684042ec4617f02114f00b7e92c949958d38c250d2d4fb2", + "oid": 221326137747, + "crossed": true, + "fee": "0.702542", + "tid": 911169973810247, + "cloid": "0x00000000000000000000000387000216", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.3", + "sz": "0.8634", + "side": "B", + "time": 1762185549933, + "startPosition": "-1868.3517", + "dir": "Close Short", + "closedPnl": "449.209752", + "hash": "0xb50ae0d24e2975c7b684042ec4617f02114f00b7e92c949958d38c250d2d4fb2", + "oid": 221326137747, + "crossed": true, + "fee": "0.650971", + "tid": 999616029485728, + "cloid": "0x00000000000000000000000387000216", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.3", + "sz": "0.2928", + "side": "B", + "time": 1762185549933, + "startPosition": "-1867.4883", + "dir": "Close Short", + "closedPnl": "152.337984", + "hash": "0xb50ae0d24e2975c7b684042ec4617f02114f00b7e92c949958d38c250d2d4fb2", + "oid": 221326137747, + "crossed": true, + "fee": "0.22076", + "tid": 295452443310784, + "cloid": "0x00000000000000000000000387000216", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.3", + "sz": "0.0104", + "side": "B", + "time": 1762185549933, + "startPosition": "-1867.1955", + "dir": "Close Short", + "closedPnl": "5.410912", + "hash": "0xb50ae0d24e2975c7b684042ec4617f02114f00b7e92c949958d38c250d2d4fb2", + "oid": 221326137747, + "crossed": true, + "fee": "0.007841", + "tid": 1084634495011947, + "cloid": "0x00000000000000000000000387000216", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "13.86", + "side": "B", + "time": 1762185549933, + "startPosition": "-232428.02", + "dir": "Close Short", + "closedPnl": "461.015478", + "hash": "0x67de576d67bab8436958042ec4617f021150005302bdd7150ba702c026be922e", + "oid": 221326137748, + "crossed": true, + "fee": "0.48476", + "tid": 1089278416407088, + "cloid": "0x00000000000000000000000388000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "46.09", + "side": "B", + "time": 1762185549933, + "startPosition": "-232414.16", + "dir": "Close Short", + "closedPnl": "1533.059407", + "hash": "0x67de576d67bab8436958042ec4617f021150005302bdd7150ba702c026be922e", + "oid": 221326137748, + "crossed": true, + "fee": "1.61202", + "tid": 725563058374931, + "cloid": "0x00000000000000000000000388000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003805", + "sz": "131406.0", + "side": "B", + "time": 1762185551635, + "startPosition": "-1189899190.0", + "dir": "Close Short", + "closedPnl": "229.434876", + "hash": "0x4e7aa3bc133806264ff4042ec4619402079f00a1ae3b24f8f2434f0ed23be010", + "oid": 221326171713, + "crossed": true, + "fee": "0.104999", + "tid": 554427615897332, + "cloid": "0x00000000000000000000000385000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.6", + "sz": "2.7844", + "side": "B", + "time": 1762185551778, + "startPosition": "-1867.1851", + "dir": "Close Short", + "closedPnl": "1450.616712", + "hash": "0x97badae262eca7b59934042ec461960203c800c7fdefc6873b83863521e081a0", + "oid": 221326174706, + "crossed": true, + "fee": "2.098925", + "tid": 1055138685064386, + "cloid": "0x00000000000000000000000387000217", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "59.99", + "side": "B", + "time": 1762185552253, + "startPosition": "-232368.07", + "dir": "Close Short", + "closedPnl": "1998.404877", + "hash": "0x5df80efe65680f375f71042ec4619d0209cd00e4006b2e0901c0ba51246be922", + "oid": 221326184684, + "crossed": true, + "fee": "2.09755", + "tid": 651923018628242, + "cloid": "0x00000000000000000000000388000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.23", + "side": "B", + "time": 1762185553531, + "startPosition": "-1864.4007", + "dir": "Close Short", + "closedPnl": "120.0324", + "hash": "0xb7f3170d56f5aa23b96c042ec461ad0206fe00f2f1f8c8f55bbbc26015f9840e", + "oid": 221326207091, + "crossed": true, + "fee": "0.173334", + "tid": 371748488083888, + "cloid": "0x00000000000000000000000387000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.23", + "side": "B", + "time": 1762185553531, + "startPosition": "-1864.1707", + "dir": "Close Short", + "closedPnl": "120.0324", + "hash": "0xb7f3170d56f5aa23b96c042ec461ad0206fe00f2f1f8c8f55bbbc26015f9840e", + "oid": 221326207091, + "crossed": true, + "fee": "0.173334", + "tid": 216671211873072, + "cloid": "0x00000000000000000000000387000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.1924", + "side": "B", + "time": 1762185553531, + "startPosition": "-1863.9407", + "dir": "Close Short", + "closedPnl": "100.409712", + "hash": "0xb7f3170d56f5aa23b96c042ec461ad0206fe00f2f1f8c8f55bbbc26015f9840e", + "oid": 221326207091, + "crossed": true, + "fee": "0.144997", + "tid": 828606816115973, + "cloid": "0x00000000000000000000000387000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.6326", + "side": "B", + "time": 1762185553531, + "startPosition": "-1863.7483", + "dir": "Close Short", + "closedPnl": "330.141288", + "hash": "0xb7f3170d56f5aa23b96c042ec461ad0206fe00f2f1f8c8f55bbbc26015f9840e", + "oid": 221326207091, + "crossed": true, + "fee": "0.476744", + "tid": 455276850128423, + "cloid": "0x00000000000000000000000387000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.6326", + "side": "B", + "time": 1762185553531, + "startPosition": "-1863.1157", + "dir": "Close Short", + "closedPnl": "330.141288", + "hash": "0xb7f3170d56f5aa23b96c042ec461ad0206fe00f2f1f8c8f55bbbc26015f9840e", + "oid": 221326207091, + "crossed": true, + "fee": "0.476744", + "tid": 479710147612029, + "cloid": "0x00000000000000000000000387000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.1924", + "side": "B", + "time": 1762185553531, + "startPosition": "-1862.4831", + "dir": "Close Short", + "closedPnl": "100.409712", + "hash": "0xb7f3170d56f5aa23b96c042ec461ad0206fe00f2f1f8c8f55bbbc26015f9840e", + "oid": 221326207091, + "crossed": true, + "fee": "0.144997", + "tid": 722558918903393, + "cloid": "0x00000000000000000000000387000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.1924", + "side": "B", + "time": 1762185553531, + "startPosition": "-1862.2907", + "dir": "Close Short", + "closedPnl": "100.409712", + "hash": "0xb7f3170d56f5aa23b96c042ec461ad0206fe00f2f1f8c8f55bbbc26015f9840e", + "oid": 221326207091, + "crossed": true, + "fee": "0.144997", + "tid": 522267952310164, + "cloid": "0x00000000000000000000000387000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.4826", + "side": "B", + "time": 1762185553531, + "startPosition": "-1862.0983", + "dir": "Close Short", + "closedPnl": "251.859288", + "hash": "0xb7f3170d56f5aa23b96c042ec461ad0206fe00f2f1f8c8f55bbbc26015f9840e", + "oid": 221326207091, + "crossed": true, + "fee": "0.3637", + "tid": 1057899822197772, + "cloid": "0x00000000000000000000000387000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.48", + "sz": "10.8", + "side": "B", + "time": 1762185553891, + "startPosition": "-232308.08", + "dir": "Close Short", + "closedPnl": "359.98884", + "hash": "0x922f3f74879f549393a8042ec461b1020584005a2292736535f7eac746932e7e", + "oid": 221326220294, + "crossed": true, + "fee": "0.377576", + "tid": 1053267091250325, + "cloid": "0x00000000000000000000000388000202", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.48", + "sz": "22.09", + "side": "B", + "time": 1762185553891, + "startPosition": "-232297.28", + "dir": "Close Short", + "closedPnl": "736.310507", + "hash": "0x922f3f74879f549393a8042ec461b1020584005a2292736535f7eac746932e7e", + "oid": 221326220294, + "crossed": true, + "fee": "0.772284", + "tid": 36411705231719, + "cloid": "0x00000000000000000000000388000202", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.48", + "sz": "27.12", + "side": "B", + "time": 1762185553891, + "startPosition": "-232275.19", + "dir": "Close Short", + "closedPnl": "903.971976", + "hash": "0x922f3f74879f549393a8042ec461b1020584005a2292736535f7eac746932e7e", + "oid": 221326220294, + "crossed": true, + "fee": "0.948136", + "tid": 111057747518353, + "cloid": "0x00000000000000000000000388000202", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131471.0", + "side": "B", + "time": 1762185554482, + "startPosition": "-1189767784.0", + "dir": "Close Short", + "closedPnl": "230.205721", + "hash": "0x0887d6feffa170d90a01042ec461b802074a00e49aa48fabac508251bea54ac3", + "oid": 221326207093, + "crossed": false, + "fee": "0.013988", + "tid": 1080747552952945, + "cloid": "0x00000000000000000000000385000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.4", + "sz": "2.785", + "side": "B", + "time": 1762185555611, + "startPosition": "-1861.6157", + "dir": "Close Short", + "closedPnl": "1454.2713", + "hash": "0x8ae7717668d006cf8c61042ec461c5020554005c03d325a12eb01cc927d3e0ba", + "oid": 221326251902, + "crossed": true, + "fee": "2.098675", + "tid": 313612004837530, + "cloid": "0x00000000000000000000000387000219", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.47", + "sz": "12.0", + "side": "B", + "time": 1762185555912, + "startPosition": "-232248.07", + "dir": "Close Short", + "closedPnl": "400.1076", + "hash": "0xfa235783dc543079fb9d042ec461c8020bfd006977574f4c9dec02d69b580a64", + "oid": 221326259024, + "crossed": true, + "fee": "0.419504", + "tid": 638418579706256, + "cloid": "0x00000000000000000000000388000203", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.47", + "sz": "48.0", + "side": "B", + "time": 1762185555912, + "startPosition": "-232236.07", + "dir": "Close Short", + "closedPnl": "1600.4304", + "hash": "0xfa235783dc543079fb9d042ec461c8020bfd006977574f4c9dec02d69b580a64", + "oid": 221326259024, + "crossed": true, + "fee": "1.678017", + "tid": 174101765074675, + "cloid": "0x00000000000000000000000388000203", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.4", + "sz": "0.3302", + "side": "B", + "time": 1762185557190, + "startPosition": "-1858.8307", + "dir": "Close Short", + "closedPnl": "172.423836", + "hash": "0x4cea994c6c7ad4db4e64042ec461d502034e0032077df3adf0b3449f2b7eaec5", + "oid": 221326275267, + "crossed": true, + "fee": "0.248826", + "tid": 93902765681209, + "cloid": "0x00000000000000000000000387000220", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.4", + "sz": "0.1393", + "side": "B", + "time": 1762185557190, + "startPosition": "-1858.5005", + "dir": "Close Short", + "closedPnl": "72.739674", + "hash": "0x4cea994c6c7ad4db4e64042ec461d502034e0032077df3adf0b3449f2b7eaec5", + "oid": 221326275267, + "crossed": true, + "fee": "0.104971", + "tid": 808094273045994, + "cloid": "0x00000000000000000000000387000220", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.4", + "sz": "0.2773", + "side": "B", + "time": 1762185557190, + "startPosition": "-1858.3612", + "dir": "Close Short", + "closedPnl": "144.800514", + "hash": "0x4cea994c6c7ad4db4e64042ec461d502034e0032077df3adf0b3449f2b7eaec5", + "oid": 221326275267, + "crossed": true, + "fee": "0.208963", + "tid": 381343756840618, + "cloid": "0x00000000000000000000000387000220", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.4", + "sz": "2.0381", + "side": "B", + "time": 1762185557190, + "startPosition": "-1858.0839", + "dir": "Close Short", + "closedPnl": "1064.255058", + "hash": "0x4cea994c6c7ad4db4e64042ec461d502034e0032077df3adf0b3449f2b7eaec5", + "oid": 221326275267, + "crossed": true, + "fee": "1.535838", + "tid": 663671414368935, + "cloid": "0x00000000000000000000000387000220", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "18.24", + "side": "B", + "time": 1762185557760, + "startPosition": "-232188.07", + "dir": "Close Short", + "closedPnl": "608.528352", + "hash": "0x97fe17cc5c7a74fc9977042ec461dd020c2600b1f77d93ce3bc6c31f1b7e4ee7", + "oid": 221326293608, + "crossed": true, + "fee": "0.63757", + "tid": 290619061490447, + "cloid": "0x00000000000000000000000388000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "41.78", + "side": "B", + "time": 1762185557760, + "startPosition": "-232169.83", + "dir": "Close Short", + "closedPnl": "1393.876894", + "hash": "0x97fe17cc5c7a74fc9977042ec461dd020c2600b1f77d93ce3bc6c31f1b7e4ee7", + "oid": 221326293608, + "crossed": true, + "fee": "1.460399", + "tid": 237816512220822, + "cloid": "0x00000000000000000000000388000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131509.0", + "side": "B", + "time": 1762185559564, + "startPosition": "-1189636313.0", + "dir": "Close Short", + "closedPnl": "230.272259", + "hash": "0x7da58b7e0f1cb9cd7f1f042ec461f50204680063aa1fd89f216e36d0ce1093b8", + "oid": 221326323075, + "crossed": true, + "fee": "0.104944", + "tid": 256706741751771, + "cloid": "0x00000000000000000000000385000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "60.03", + "side": "B", + "time": 1762185559881, + "startPosition": "-232128.05", + "dir": "Close Short", + "closedPnl": "2005.140069", + "hash": "0xb8c5f866161ca896ba3f042ec461f9020744004bb11fc7685c8ea3b8d5108281", + "oid": 221326331080, + "crossed": true, + "fee": "2.097814", + "tid": 147572378838334, + "cloid": "0x00000000000000000000000388000205", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.6", + "sz": "0.673", + "side": "B", + "time": 1762185560089, + "startPosition": "-1856.0458", + "dir": "Close Short", + "closedPnl": "351.96554", + "hash": "0xf15d8a02ae5fa2bff2d7042ec461fb0203de00e84952c192952635556d537caa", + "oid": 221326333709, + "crossed": true, + "fee": "0.507035", + "tid": 1062823547814146, + "cloid": "0x00000000000000000000000387000221", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.6", + "sz": "2.1123", + "side": "B", + "time": 1762185560089, + "startPosition": "-1855.3728", + "dir": "Close Short", + "closedPnl": "1104.690654", + "hash": "0xf15d8a02ae5fa2bff2d7042ec461fb0203de00e84952c192952635556d537caa", + "oid": 221326333709, + "crossed": true, + "fee": "1.591398", + "tid": 800198347596556, + "cloid": "0x00000000000000000000000387000221", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131578.0", + "side": "B", + "time": 1762185560974, + "startPosition": "-1189504804.0", + "dir": "Close Short", + "closedPnl": "230.393078", + "hash": "0x23efbe7bb96963912569042ec4620702057b0061546c8263c7b869ce786d3d7b", + "oid": 221326349422, + "crossed": true, + "fee": "0.104999", + "tid": 466159501236479, + "cloid": "0x00000000000000000000000385000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.36", + "sz": "20.0", + "side": "B", + "time": 1762185561488, + "startPosition": "-232068.02", + "dir": "Close Short", + "closedPnl": "669.046", + "hash": "0xf3b22238a5f1da27f52b042ec4620e0205c9001e40f4f8fa977acd8b64f5b412", + "oid": 221326356321, + "crossed": true, + "fee": "0.698711", + "tid": 358081531762991, + "cloid": "0x00000000000000000000000388000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.36", + "sz": "12.02", + "side": "B", + "time": 1762185561488, + "startPosition": "-232048.02", + "dir": "Close Short", + "closedPnl": "402.096646", + "hash": "0xf3b22238a5f1da27f52b042ec4620e0205c9001e40f4f8fa977acd8b64f5b412", + "oid": 221326356321, + "crossed": true, + "fee": "0.419925", + "tid": 384298694836109, + "cloid": "0x00000000000000000000000388000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.37", + "sz": "0.95", + "side": "B", + "time": 1762185561488, + "startPosition": "-232036.0", + "dir": "Close Short", + "closedPnl": "31.770185", + "hash": "0xf3b22238a5f1da27f52b042ec4620e0205c9001e40f4f8fa977acd8b64f5b412", + "oid": 221326356321, + "crossed": true, + "fee": "0.03319", + "tid": 53189300418306, + "cloid": "0x00000000000000000000000388000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "12.0", + "side": "B", + "time": 1762185561488, + "startPosition": "-232035.05", + "dir": "Close Short", + "closedPnl": "401.1876", + "hash": "0xf3b22238a5f1da27f52b042ec4620e0205c9001e40f4f8fa977acd8b64f5b412", + "oid": 221326356321, + "crossed": true, + "fee": "0.419277", + "tid": 504690860313306, + "cloid": "0x00000000000000000000000388000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.39", + "sz": "15.05", + "side": "B", + "time": 1762185561488, + "startPosition": "-232023.05", + "dir": "Close Short", + "closedPnl": "503.005615", + "hash": "0xf3b22238a5f1da27f52b042ec4620e0205c9001e40f4f8fa977acd8b64f5b412", + "oid": 221326356321, + "crossed": true, + "fee": "0.525875", + "tid": 36695677258820, + "cloid": "0x00000000000000000000000388000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "0.95", + "side": "B", + "time": 1762185563947, + "startPosition": "-232008.0", + "dir": "Close Short", + "closedPnl": "31.741685", + "hash": "0x6c1feb841bc1a8aa6d99042ec462270207f10069b6c4c77c0fe896d6dac58295", + "oid": 221326396552, + "crossed": true, + "fee": "0.033196", + "tid": 11614454852517, + "cloid": "0x00000000000000000000000388000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "0.1", + "side": "B", + "time": 1762185563947, + "startPosition": "-232007.05", + "dir": "Close Short", + "closedPnl": "3.34023", + "hash": "0x6c1feb841bc1a8aa6d99042ec462270207f10069b6c4c77c0fe896d6dac58295", + "oid": 221326396552, + "crossed": true, + "fee": "0.003494", + "tid": 774478915664987, + "cloid": "0x00000000000000000000000388000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.43", + "sz": "0.1", + "side": "B", + "time": 1762185563947, + "startPosition": "-232006.95", + "dir": "Close Short", + "closedPnl": "3.33823", + "hash": "0x6c1feb841bc1a8aa6d99042ec462270207f10069b6c4c77c0fe896d6dac58295", + "oid": 221326396552, + "crossed": true, + "fee": "0.003495", + "tid": 186071972022687, + "cloid": "0x00000000000000000000000388000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.43", + "sz": "12.01", + "side": "B", + "time": 1762185563947, + "startPosition": "-232006.85", + "dir": "Close Short", + "closedPnl": "400.921423", + "hash": "0x6c1feb841bc1a8aa6d99042ec462270207f10069b6c4c77c0fe896d6dac58295", + "oid": 221326396552, + "crossed": true, + "fee": "0.419753", + "tid": 71567189464299, + "cloid": "0x00000000000000000000000388000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "0.18", + "side": "B", + "time": 1762185563947, + "startPosition": "-231994.84", + "dir": "Close Short", + "closedPnl": "6.007014", + "hash": "0x6c1feb841bc1a8aa6d99042ec462270207f10069b6c4c77c0fe896d6dac58295", + "oid": 221326396552, + "crossed": true, + "fee": "0.006291", + "tid": 687395357733873, + "cloid": "0x00000000000000000000000388000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "18.02", + "side": "B", + "time": 1762185563947, + "startPosition": "-231994.66", + "dir": "Close Short", + "closedPnl": "601.368846", + "hash": "0x6c1feb841bc1a8aa6d99042ec462270207f10069b6c4c77c0fe896d6dac58295", + "oid": 221326396552, + "crossed": true, + "fee": "0.629842", + "tid": 915541784964016, + "cloid": "0x00000000000000000000000388000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "28.66", + "side": "B", + "time": 1762185563947, + "startPosition": "-231976.64", + "dir": "Close Short", + "closedPnl": "956.450118", + "hash": "0x6c1feb841bc1a8aa6d99042ec462270207f10069b6c4c77c0fe896d6dac58295", + "oid": 221326396552, + "crossed": true, + "fee": "1.001735", + "tid": 859168131602934, + "cloid": "0x00000000000000000000000388000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "0.9173", + "side": "B", + "time": 1762185564106, + "startPosition": "-1853.2605", + "dir": "Close Short", + "closedPnl": "480.830314", + "hash": "0x0c6878b8622b12150de2042ec462290207bd009dfd2e30e7b031240b212eebff", + "oid": 221326400119, + "crossed": true, + "fee": "0.690858", + "tid": 832791111431871, + "cloid": "0x00000000000000000000000387000222", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "1.8682", + "side": "B", + "time": 1762185564106, + "startPosition": "-1852.3432", + "dir": "Close Short", + "closedPnl": "979.273076", + "hash": "0x0c6878b8622b12150de2042ec462290207bd009dfd2e30e7b031240b212eebff", + "oid": 221326400119, + "crossed": true, + "fee": "1.407023", + "tid": 302299131459310, + "cloid": "0x00000000000000000000000387000222", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26661", + "sz": "524.6", + "side": "B", + "time": 1762185564299, + "startPosition": "-4000531.0", + "dir": "Close Short", + "closedPnl": "280.482636", + "hash": "0xac99ad8facc49341ae13042ec4622c0202a8007547c7b213506258e26bc86d2c", + "oid": 221326402086, + "crossed": true, + "fee": "0.029371", + "tid": 1104263944585798, + "cloid": "0x00000000000000000000000384000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26665", + "sz": "524.6", + "side": "B", + "time": 1762185564299, + "startPosition": "-4000006.3999999999", + "dir": "Close Short", + "closedPnl": "280.461652", + "hash": "0xac99ad8facc49341ae13042ec4622c0202a8007547c7b213506258e26bc86d2c", + "oid": 221326402086, + "crossed": true, + "fee": "0.029375", + "tid": 862546980122787, + "cloid": "0x00000000000000000000000384000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26669", + "sz": "2686.3", + "side": "B", + "time": 1762185564408, + "startPosition": "-3999481.7999999998", + "dir": "Close Short", + "closedPnl": "1436.042254", + "hash": "0x45675d1822fbbc2f46e1042ec4622e02057900fdbdfedb01e930086ae1ff9619", + "oid": 221326402086, + "crossed": false, + "fee": "0.020059", + "tid": 395868534956360, + "cloid": "0x00000000000000000000000384000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.46", + "sz": "60.0", + "side": "B", + "time": 1762185565556, + "startPosition": "-231947.98", + "dir": "Close Short", + "closedPnl": "2001.138", + "hash": "0xc449001385ab7025c5c2042ec4623c02051600f920ae8ef76811ab6644af4a10", + "oid": 221326424707, + "crossed": true, + "fee": "2.097396", + "tid": 1081935587758252, + "cloid": "0x00000000000000000000000388000208", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003803", + "sz": "131571.0", + "side": "B", + "time": 1762185565556, + "startPosition": "-1189373226.0", + "dir": "Close Short", + "closedPnl": "229.986108", + "hash": "0x29efed49b8cdf51d2b69042ec4623c020518002f53c113efcdb8989c77c1cf07", + "oid": 221326424708, + "crossed": true, + "fee": "0.105076", + "tid": 466498551764216, + "cloid": "0x00000000000000000000000385000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26632", + "sz": "524.6", + "side": "A", + "time": 1762185566351, + "startPosition": "4018127.4960630001", + "dir": "Sell", + "closedPnl": "-280.85710127", + "hash": "0xa11eb9812766c3e4a298042ec462450201a50066c269e2b644e764d3e66a9dcf", + "oid": 221326419284, + "crossed": false, + "fee": "0.0097798", + "tid": 776107471409269, + "cloid": "0x10000000000000000000000475000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26634", + "sz": "524.6", + "side": "A", + "time": 1762185566767, + "startPosition": "4017602.896063", + "dir": "Sell", + "closedPnl": "-280.84660927", + "hash": "0x8c82545c033b20108dfc042ec4624b0202cc00419e3e3ee2304affaec23ef9fb", + "oid": 221326419285, + "crossed": false, + "fee": "0.00978053", + "tid": 174577068628330, + "cloid": "0x10000000000000000000000475000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003803", + "sz": "131402.0", + "side": "B", + "time": 1762185566947, + "startPosition": "-1189241655.0", + "dir": "Close Short", + "closedPnl": "229.690696", + "hash": "0x1e2c6c31dc923e861fa6042ec4624d020348001777955d58c1f517849b961870", + "oid": 221326435564, + "crossed": true, + "fee": "0.104941", + "tid": 513239769871230, + "cloid": "0x00000000000000000000000385000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26638", + "sz": "2686.3", + "side": "A", + "time": 1762185567089, + "startPosition": "4017078.2960629999", + "dir": "Sell", + "closedPnl": "-1438.01349058", + "hash": "0x760ad522fa6246bc7784042ec4624f0204a300089565658e19d38075b96620a7", + "oid": 221326421874, + "crossed": false, + "fee": "0.05009036", + "tid": 510766668125991, + "cloid": "0x10000000000000000000000475000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.46", + "sz": "60.0", + "side": "B", + "time": 1762185567641, + "startPosition": "-231887.98", + "dir": "Close Short", + "closedPnl": "2001.138", + "hash": "0xa912f3853b229422aa8c042ec4625602042c006ad625b2f44cdb9ed7fa266e0d", + "oid": 221326444670, + "crossed": true, + "fee": "2.097396", + "tid": 169319495951665, + "cloid": "0x00000000000000000000000388000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.7", + "sz": "2.2259", + "side": "B", + "time": 1762185568227, + "startPosition": "-1850.475", + "dir": "Close Short", + "closedPnl": "1166.104492", + "hash": "0x987352c6113edca499ed042ec4625d0206d200abac31fb763c3bfe18d032b68f", + "oid": 221326454399, + "crossed": true, + "fee": "1.676563", + "tid": 89087656245900, + "cloid": "0x00000000000000000000000387000223", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.7", + "sz": "0.5598", + "side": "B", + "time": 1762185568227, + "startPosition": "-1848.2491", + "dir": "Close Short", + "closedPnl": "293.268024", + "hash": "0x987352c6113edca499ed042ec4625d0206d200abac31fb763c3bfe18d032b68f", + "oid": 221326454399, + "crossed": true, + "fee": "0.421645", + "tid": 409188557564334, + "cloid": "0x00000000000000000000000387000223", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003805", + "sz": "131383.0", + "side": "B", + "time": 1762185568908, + "startPosition": "-1189110253.0", + "dir": "Close Short", + "closedPnl": "229.394718", + "hash": "0x0be47d78e09d5ff30d5e042ec4626602094b005e7b907ec5afad28cb9f9139dd", + "oid": 221326468037, + "crossed": true, + "fee": "0.104981", + "tid": 82160293728119, + "cloid": "0x00000000000000000000000385000180", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "59.98", + "side": "B", + "time": 1762185569290, + "startPosition": "-231827.98", + "dir": "Close Short", + "closedPnl": "1997.471954", + "hash": "0x0ad84c7eebf26ea30c52042ec4626a02065d006486f58d75aea0f7d1aaf6488d", + "oid": 221326476076, + "crossed": true, + "fee": "2.097326", + "tid": 142972585846486, + "cloid": "0x00000000000000000000000388000210", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.0", + "sz": "2.786", + "side": "B", + "time": 1762185570630, + "startPosition": "-1847.6893", + "dir": "Close Short", + "closedPnl": "1458.69388", + "hash": "0xb923976f303a43b2ba9d042ec4627a0202f10054cb3d62845cec42c1ef3e1d9d", + "oid": 221326496336, + "crossed": true, + "fee": "2.09861", + "tid": 632842771077003, + "cloid": "0x00000000000000000000000387000224", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003805", + "sz": "131406.0", + "side": "B", + "time": 1762185570630, + "startPosition": "-1188978870.0", + "dir": "Close Short", + "closedPnl": "229.434876", + "hash": "0x6bf70e0a49cb862e6d70042ec4627a0202f200efe4cea5000fbfb95d08cf6019", + "oid": 221326496337, + "crossed": true, + "fee": "0.104999", + "tid": 1097037759709112, + "cloid": "0x00000000000000000000000385000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.46", + "sz": "60.0", + "side": "B", + "time": 1762185570756, + "startPosition": "-231768.0", + "dir": "Close Short", + "closedPnl": "2001.138", + "hash": "0x1207295adaf7b3351380042ec4627c0202f3004075fad207b5cfd4ad99fb8d1f", + "oid": 221326498770, + "crossed": true, + "fee": "2.097396", + "tid": 1055902915621942, + "cloid": "0x00000000000000000000000388000211", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "0.5631", + "side": "B", + "time": 1762185572045, + "startPosition": "-1844.9033", + "dir": "Close Short", + "closedPnl": "295.165758", + "hash": "0x7be4f2a42172a13f7d5e042ec4628d0205860089bc75c0111fad9df6e0767b2a", + "oid": 221326520936, + "crossed": true, + "fee": "0.424095", + "tid": 178916374718225, + "cloid": "0x00000000000000000000000387000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "0.794", + "side": "B", + "time": 1762185572045, + "startPosition": "-1844.3402", + "dir": "Close Short", + "closedPnl": "416.19892", + "hash": "0x7be4f2a42172a13f7d5e042ec4628d0205860089bc75c0111fad9df6e0767b2a", + "oid": 221326520936, + "crossed": true, + "fee": "0.597996", + "tid": 949181256010876, + "cloid": "0x00000000000000000000000387000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "0.794", + "side": "B", + "time": 1762185572045, + "startPosition": "-1843.5462", + "dir": "Close Short", + "closedPnl": "416.19892", + "hash": "0x7be4f2a42172a13f7d5e042ec4628d0205860089bc75c0111fad9df6e0767b2a", + "oid": 221326520936, + "crossed": true, + "fee": "0.597996", + "tid": 1068944588289344, + "cloid": "0x00000000000000000000000387000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "0.2028", + "side": "B", + "time": 1762185572045, + "startPosition": "-1842.7522", + "dir": "Close Short", + "closedPnl": "106.303704", + "hash": "0x7be4f2a42172a13f7d5e042ec4628d0205860089bc75c0111fad9df6e0767b2a", + "oid": 221326520936, + "crossed": true, + "fee": "0.152737", + "tid": 357359019483640, + "cloid": "0x00000000000000000000000387000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "0.4325", + "side": "B", + "time": 1762185572045, + "startPosition": "-1842.5494", + "dir": "Close Short", + "closedPnl": "226.70785", + "hash": "0x7be4f2a42172a13f7d5e042ec4628d0205860089bc75c0111fad9df6e0767b2a", + "oid": 221326520936, + "crossed": true, + "fee": "0.325734", + "tid": 468042748359943, + "cloid": "0x00000000000000000000000387000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "8.21", + "side": "B", + "time": 1762185572208, + "startPosition": "-231708.0", + "dir": "Close Short", + "closedPnl": "274.232883", + "hash": "0x9120e73830f77e04929a042ec4628f0205b4001dcbfa9cd634e9928aeffb57ef", + "oid": 221326523430, + "crossed": true, + "fee": "0.286907", + "tid": 171297441007413, + "cloid": "0x00000000000000000000000388000212", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "51.82", + "side": "B", + "time": 1762185572208, + "startPosition": "-231699.79", + "dir": "Close Short", + "closedPnl": "1730.907186", + "hash": "0x9120e73830f77e04929a042ec4628f0205b4001dcbfa9cd634e9928aeffb57ef", + "oid": 221326523430, + "crossed": true, + "fee": "1.810906", + "tid": 849101185470921, + "cloid": "0x00000000000000000000000388000212", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131475.0", + "side": "B", + "time": 1762185572857, + "startPosition": "-1188847464.0", + "dir": "Close Short", + "closedPnl": "230.212725", + "hash": "0x6d4858470ad54a076ec2042ec46298020715002ca5d868d911110399c9d923f2", + "oid": 221326520935, + "crossed": false, + "fee": "0.013988", + "tid": 967716007575878, + "cloid": "0x00000000000000000000000385000182", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.3", + "sz": "0.2028", + "side": "B", + "time": 1762185574371, + "startPosition": "-1842.1169", + "dir": "Close Short", + "closedPnl": "106.323984", + "hash": "0xa332b682e2f09a1da4ac042ec462ac02028300687df3b8ef46fb61d5a1f47408", + "oid": 221326550335, + "crossed": true, + "fee": "0.152733", + "tid": 316483019988941, + "cloid": "0x00000000000000000000000387000226", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.3", + "sz": "2.5837", + "side": "B", + "time": 1762185574371, + "startPosition": "-1841.9141", + "dir": "Close Short", + "closedPnl": "1354.582236", + "hash": "0xa332b682e2f09a1da4ac042ec462ac02028300687df3b8ef46fb61d5a1f47408", + "oid": 221326550335, + "crossed": true, + "fee": "1.945843", + "tid": 1021800925032322, + "cloid": "0x00000000000000000000000387000226", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "5.26", + "side": "B", + "time": 1762185574529, + "startPosition": "-231647.97", + "dir": "Close Short", + "closedPnl": "175.748698", + "hash": "0xc607d5b1031ee864c781042ec462ae02064b00969e12073669d08103c212c24f", + "oid": 221326553307, + "crossed": true, + "fee": "0.183805", + "tid": 517337127117292, + "cloid": "0x00000000000000000000000388000213", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "7.61", + "side": "B", + "time": 1762185574529, + "startPosition": "-231642.71", + "dir": "Close Short", + "closedPnl": "254.267603", + "hash": "0xc607d5b1031ee864c781042ec462ae02064b00969e12073669d08103c212c24f", + "oid": 221326553307, + "crossed": true, + "fee": "0.265923", + "tid": 1075131505774193, + "cloid": "0x00000000000000000000000388000213", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "47.16", + "side": "B", + "time": 1762185574529, + "startPosition": "-231635.1", + "dir": "Close Short", + "closedPnl": "1575.724068", + "hash": "0xc607d5b1031ee864c781042ec462ae02064b00969e12073669d08103c212c24f", + "oid": 221326553307, + "crossed": true, + "fee": "1.647959", + "tid": 378314553283698, + "cloid": "0x00000000000000000000000388000213", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.3", + "sz": "2.7862", + "side": "B", + "time": 1762185575969, + "startPosition": "-1839.3304", + "dir": "Close Short", + "closedPnl": "1460.748936", + "hash": "0x256c3fad73daf90b26e5042ec462c20201d300930ede17ddc934eb0032ded2f5", + "oid": 221326570913, + "crossed": true, + "fee": "2.098351", + "tid": 798623351182003, + "cloid": "0x00000000000000000000000387000227", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "55.08", + "side": "B", + "time": 1762185576370, + "startPosition": "-231587.94", + "dir": "Close Short", + "closedPnl": "1840.349484", + "hash": "0xfdae667d1eac331cff28042ec462c90203a50062b9af51efa17711cfdda00d07", + "oid": 221326574686, + "crossed": true, + "fee": "1.924715", + "tid": 1046967034150470, + "cloid": "0x00000000000000000000000388000214", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "3.0", + "side": "B", + "time": 1762185576370, + "startPosition": "-231532.86", + "dir": "Close Short", + "closedPnl": "100.2369", + "hash": "0xfdae667d1eac331cff28042ec462c90203a50062b9af51efa17711cfdda00d07", + "oid": 221326574686, + "crossed": true, + "fee": "0.104831", + "tid": 656406095679595, + "cloid": "0x00000000000000000000000388000214", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "1.94", + "side": "B", + "time": 1762185576370, + "startPosition": "-231529.86", + "dir": "Close Short", + "closedPnl": "64.819862", + "hash": "0xfdae667d1eac331cff28042ec462c90203a50062b9af51efa17711cfdda00d07", + "oid": 221326574686, + "crossed": true, + "fee": "0.067791", + "tid": 202471570955377, + "cloid": "0x00000000000000000000000388000214", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.43", + "sz": "0.1", + "side": "B", + "time": 1762185578587, + "startPosition": "-231527.92", + "dir": "Close Short", + "closedPnl": "3.33823", + "hash": "0xcb1a7775102cdf30cc94042ec462e2020640005aab2ffe026ee322c7cf20b91b", + "oid": 221326608118, + "crossed": true, + "fee": "0.003495", + "tid": 317760385965784, + "cloid": "0x00000000000000000000000388000215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.46", + "sz": "0.18", + "side": "B", + "time": 1762185578587, + "startPosition": "-231527.82", + "dir": "Close Short", + "closedPnl": "6.003414", + "hash": "0xcb1a7775102cdf30cc94042ec462e2020640005aab2ffe026ee322c7cf20b91b", + "oid": 221326608118, + "crossed": true, + "fee": "0.006292", + "tid": 129221240722830, + "cloid": "0x00000000000000000000000388000215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "0.18", + "side": "B", + "time": 1762185578587, + "startPosition": "-231527.64", + "dir": "Close Short", + "closedPnl": "5.996214", + "hash": "0xcb1a7775102cdf30cc94042ec462e2020640005aab2ffe026ee322c7cf20b91b", + "oid": 221326608118, + "crossed": true, + "fee": "0.006293", + "tid": 450267731246945, + "cloid": "0x00000000000000000000000388000215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "32.96", + "side": "B", + "time": 1762185578587, + "startPosition": "-231527.46", + "dir": "Close Short", + "closedPnl": "1097.973408", + "hash": "0xcb1a7775102cdf30cc94042ec462e2020640005aab2ffe026ee322c7cf20b91b", + "oid": 221326608118, + "crossed": true, + "fee": "1.152446", + "tid": 483467940945947, + "cloid": "0x00000000000000000000000388000215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "18.01", + "side": "B", + "time": 1762185578587, + "startPosition": "-231494.5", + "dir": "Close Short", + "closedPnl": "599.774423", + "hash": "0xcb1a7775102cdf30cc94042ec462e2020640005aab2ffe026ee322c7cf20b91b", + "oid": 221326608118, + "crossed": true, + "fee": "0.629757", + "tid": 630760760123288, + "cloid": "0x00000000000000000000000388000215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.52", + "sz": "8.59", + "side": "B", + "time": 1762185578587, + "startPosition": "-231476.49", + "dir": "Close Short", + "closedPnl": "285.980857", + "hash": "0xcb1a7775102cdf30cc94042ec462e2020640005aab2ffe026ee322c7cf20b91b", + "oid": 221326608118, + "crossed": true, + "fee": "0.300385", + "tid": 383098347896895, + "cloid": "0x00000000000000000000000388000215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.3", + "sz": "2.7863", + "side": "B", + "time": 1762185578587, + "startPosition": "-1836.5442", + "dir": "Close Short", + "closedPnl": "1460.801364", + "hash": "0x7dedee1029be21ac7f67042ec462e202064100f5c4b1407e21b69962e8b1fb97", + "oid": 221326608119, + "crossed": true, + "fee": "2.098426", + "tid": 937550148536166, + "cloid": "0x00000000000000000000000387000228", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.9", + "sz": "2.0914", + "side": "B", + "time": 1762185579928, + "startPosition": "-1833.7579", + "dir": "Close Short", + "closedPnl": "1095.224352", + "hash": "0x0faa3144ed8c92191123042ec462f2020836002a888fb0ebb372dc97ac806c03", + "oid": 221326631000, + "crossed": true, + "fee": "1.575344", + "tid": 13456732354001, + "cloid": "0x00000000000000000000000387000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.0", + "sz": "0.2", + "side": "B", + "time": 1762185579928, + "startPosition": "-1831.6665", + "dir": "Close Short", + "closedPnl": "104.716", + "hash": "0x0faa3144ed8c92191123042ec462f2020836002a888fb0ebb372dc97ac806c03", + "oid": 221326631000, + "crossed": true, + "fee": "0.150654", + "tid": 172602198403406, + "cloid": "0x00000000000000000000000387000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.0", + "sz": "0.4948", + "side": "B", + "time": 1762185579928, + "startPosition": "-1831.4665", + "dir": "Close Short", + "closedPnl": "259.067384", + "hash": "0x0faa3144ed8c92191123042ec462f2020836002a888fb0ebb372dc97ac806c03", + "oid": 221326631000, + "crossed": true, + "fee": "0.372717", + "tid": 838609482551559, + "cloid": "0x00000000000000000000000387000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "59.99", + "side": "B", + "time": 1762185580081, + "startPosition": "-231467.9", + "dir": "Close Short", + "closedPnl": "1998.404877", + "hash": "0xa5bfcda0bfb92d4ea739042ec462f40206c700865abc4c20498878f37ebd0739", + "oid": 221326633791, + "crossed": true, + "fee": "2.09755", + "tid": 41032503397924, + "cloid": "0x00000000000000000000000388000216", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.1", + "sz": "2.7868", + "side": "B", + "time": 1762185581724, + "startPosition": "-1830.9717", + "dir": "Close Short", + "closedPnl": "1461.620864", + "hash": "0x04f52185caa31704066e042ec4630a020160006b65a635d6a8bdccd889a6f0ee", + "oid": 221326659766, + "crossed": true, + "fee": "2.098686", + "tid": 214495736448259, + "cloid": "0x00000000000000000000000387000230", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "59.98", + "side": "B", + "time": 1762185581724, + "startPosition": "-231407.91", + "dir": "Close Short", + "closedPnl": "1998.071754", + "hash": "0x2e6f2d466343d7942fe8042ec4630a02017a002bfe46f666d237d8992247b17e", + "oid": 221326659786, + "crossed": true, + "fee": "2.0972", + "tid": 617772938861951, + "cloid": "0x00000000000000000000000388000217", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.52", + "sz": "0.96", + "side": "B", + "time": 1762185584644, + "startPosition": "-231347.93", + "dir": "Close Short", + "closedPnl": "31.960608", + "hash": "0x1caf53d5876cd78d1e29042ec4632c0206e200bb226ff65fc077ff284660b177", + "oid": 221326698494, + "crossed": true, + "fee": "0.03357", + "tid": 278533681806078, + "cloid": "0x00000000000000000000000388000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "0.1", + "side": "B", + "time": 1762185584644, + "startPosition": "-231346.97", + "dir": "Close Short", + "closedPnl": "3.32823", + "hash": "0x1caf53d5876cd78d1e29042ec4632c0206e200bb226ff65fc077ff284660b177", + "oid": 221326698494, + "crossed": true, + "fee": "0.003497", + "tid": 35994023386891, + "cloid": "0x00000000000000000000000388000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "58.92", + "side": "B", + "time": 1762185584644, + "startPosition": "-231346.87", + "dir": "Close Short", + "closedPnl": "1960.993116", + "hash": "0x1caf53d5876cd78d1e29042ec4632c0206e200bb226ff65fc077ff284660b177", + "oid": 221326698494, + "crossed": true, + "fee": "2.060508", + "tid": 985854272736229, + "cloid": "0x00000000000000000000000388000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.1", + "sz": "2.7868", + "side": "B", + "time": 1762185584836, + "startPosition": "-1828.1849", + "dir": "Close Short", + "closedPnl": "1461.620864", + "hash": "0xb9e8cb7795406188bb62042ec4632e0201e6005d3043805a5db176ca54443b73", + "oid": 221326699388, + "crossed": true, + "fee": "2.098686", + "tid": 505727867583876, + "cloid": "0x00000000000000000000000387000231", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.0", + "sz": "2.7866", + "side": "B", + "time": 1762185586658, + "startPosition": "-1825.3981", + "dir": "Close Short", + "closedPnl": "1464.581228", + "hash": "0x5543937564bc2f2c56bd042ec4634801f300ab5affbf4dfef90c3ec823b00916", + "oid": 221326724820, + "crossed": true, + "fee": "2.097891", + "tid": 796318021031624, + "cloid": "0x00000000000000000000000387000232", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003802", + "sz": "131571.0", + "side": "B", + "time": 1762185586883, + "startPosition": "-1188715989.0", + "dir": "Close Short", + "closedPnl": "230.117679", + "hash": "0x8a5cea02579963078bd6042ec4634b02050200e7f29c81d92e259555169d3cf2", + "oid": 221326727431, + "crossed": true, + "fee": "0.105048", + "tid": 516963531232524, + "cloid": "0x00000000000000000000000385000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "59.99", + "side": "B", + "time": 1762185587058, + "startPosition": "-231287.95", + "dir": "Close Short", + "closedPnl": "1996.005277", + "hash": "0xc2f47b9eefdc5d30c46e042ec4634d02019c00848adf7c0266bd26f1aed0371b", + "oid": 221326728313, + "crossed": true, + "fee": "2.098054", + "tid": 452528204971927, + "cloid": "0x00000000000000000000000388000219", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.4", + "sz": "0.2568", + "side": "B", + "time": 1762185588958, + "startPosition": "-1822.6115", + "dir": "Close Short", + "closedPnl": "134.866224", + "hash": "0xb9b26875ac6dbac0bb2c042ec46364020a9a005b4760d9925d7b13c86b6194ab", + "oid": 221326762669, + "crossed": true, + "fee": "0.193353", + "tid": 764685939367545, + "cloid": "0x00000000000000000000000387000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.4", + "sz": "1.25", + "side": "B", + "time": 1762185588958, + "startPosition": "-1822.3547", + "dir": "Close Short", + "closedPnl": "656.475", + "hash": "0xb9b26875ac6dbac0bb2c042ec46364020a9a005b4760d9925d7b13c86b6194ab", + "oid": 221326762669, + "crossed": true, + "fee": "0.941167", + "tid": 492435596336683, + "cloid": "0x00000000000000000000000387000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.4", + "sz": "1.2801", + "side": "B", + "time": 1762185588958, + "startPosition": "-1821.1047", + "dir": "Close Short", + "closedPnl": "672.282918", + "hash": "0xb9b26875ac6dbac0bb2c042ec46364020a9a005b4760d9925d7b13c86b6194ab", + "oid": 221326762669, + "crossed": true, + "fee": "0.96383", + "tid": 410837118893460, + "cloid": "0x00000000000000000000000387000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "59.98", + "side": "B", + "time": 1762185588958, + "startPosition": "-231227.96", + "dir": "Close Short", + "closedPnl": "1994.472954", + "hash": "0x6c85df10c5fefd3c6dff042ec46364020a9b00f660f21c0e104e8a6384f2d727", + "oid": 221326762670, + "crossed": true, + "fee": "2.097956", + "tid": 1035053791033110, + "cloid": "0x00000000000000000000000388000220", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.3", + "sz": "2.7865", + "side": "B", + "time": 1762185591041, + "startPosition": "-1819.8246", + "dir": "Close Short", + "closedPnl": "1460.90622", + "hash": "0xb43e68f86bb7342ab5b8042ec4637e020b5500de06ba52fc5807144b2abb0e15", + "oid": 221326808303, + "crossed": true, + "fee": "2.098577", + "tid": 988509535483285, + "cloid": "0x00000000000000000000000387000234", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "59.95", + "side": "B", + "time": 1762185591445, + "startPosition": "-231167.98", + "dir": "Close Short", + "closedPnl": "1991.676885", + "hash": "0xa0fe9490d7469fcea278042ec463840202d800767249bea044c73fe3964a79b9", + "oid": 221326814712, + "crossed": true, + "fee": "2.097284", + "tid": 44644143532265, + "cloid": "0x00000000000000000000000388000221", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131471.0", + "side": "B", + "time": 1762185591702, + "startPosition": "-1188584418.0", + "dir": "Close Short", + "closedPnl": "229.153953", + "hash": "0xbb9378eb027c21ecbd0d042ec463870203b400d09d7f40be5f5c243dc17ffbd7", + "oid": 221326817795, + "crossed": true, + "fee": "0.105134", + "tid": 1123410356590460, + "cloid": "0x00000000000000000000000385000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.7", + "sz": "1.25", + "side": "B", + "time": 1762185592715, + "startPosition": "-1817.0381", + "dir": "Close Short", + "closedPnl": "656.1", + "hash": "0x59eb4ce5ef61ef2f5b65042ec4639302031f00cb8a650e01fdb3f838ae65c919", + "oid": 221326835218, + "crossed": true, + "fee": "0.941246", + "tid": 455495782348320, + "cloid": "0x00000000000000000000000387000235", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.7", + "sz": "1.5369", + "side": "B", + "time": 1762185592715, + "startPosition": "-1815.7881", + "dir": "Close Short", + "closedPnl": "806.688072", + "hash": "0x59eb4ce5ef61ef2f5b65042ec4639302031f00cb8a650e01fdb3f838ae65c919", + "oid": 221326835218, + "crossed": true, + "fee": "1.157281", + "tid": 398310805812876, + "cloid": "0x00000000000000000000000387000235", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.47", + "sz": "0.95", + "side": "B", + "time": 1762185594005, + "startPosition": "-231108.03", + "dir": "Close Short", + "closedPnl": "31.675185", + "hash": "0x73e414403d213b88755d042ec463a4020a460025d8245a5a17acbf92fc251573", + "oid": 221326862335, + "crossed": true, + "fee": "0.03321", + "tid": 930216042155088, + "cloid": "0x00000000000000000000000388000222", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "12.1", + "side": "B", + "time": 1762185594005, + "startPosition": "-231107.08", + "dir": "Close Short", + "closedPnl": "403.19983", + "hash": "0x73e414403d213b88755d042ec463a4020a460025d8245a5a17acbf92fc251573", + "oid": 221326862335, + "crossed": true, + "fee": "0.423051", + "tid": 377551294918705, + "cloid": "0x00000000000000000000000388000222", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "46.95", + "side": "B", + "time": 1762185594005, + "startPosition": "-231094.98", + "dir": "Close Short", + "closedPnl": "1564.481985", + "hash": "0x73e414403d213b88755d042ec463a4020a460025d8245a5a17acbf92fc251573", + "oid": 221326862335, + "crossed": true, + "fee": "1.641508", + "tid": 560315827238720, + "cloid": "0x00000000000000000000000388000222", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131337.0", + "side": "B", + "time": 1762185594005, + "startPosition": "-1188452947.0", + "dir": "Close Short", + "closedPnl": "228.920391", + "hash": "0x8c5e781189d502fb8dd8042ec463a4020a4900f724d821cd3027236448d8dce6", + "oid": 221326862337, + "crossed": true, + "fee": "0.105027", + "tid": 962118436749363, + "cloid": "0x00000000000000000000000385000191", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.9", + "sz": "2.7868", + "side": "B", + "time": 1762185594449, + "startPosition": "-1814.2512", + "dir": "Close Short", + "closedPnl": "1462.178224", + "hash": "0x697ac1bd5c9dd8106af4042ec463aa0209b700a2f790f6e20d436d101b91b1fb", + "oid": 221326868889, + "crossed": true, + "fee": "2.098569", + "tid": 221917213808962, + "cloid": "0x00000000000000000000000387000236", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "0.95", + "side": "B", + "time": 1762185595480, + "startPosition": "-231048.03", + "dir": "Close Short", + "closedPnl": "31.618185", + "hash": "0xeb43f35a376c9724ecbd042ec463b60205b0003fd26fb5f68f0c9eacf660710f", + "oid": 221326885647, + "crossed": true, + "fee": "0.033222", + "tid": 22619629091554, + "cloid": "0x00000000000000000000000388000223", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "59.01", + "side": "B", + "time": 1762185595480, + "startPosition": "-231047.08", + "dir": "Close Short", + "closedPnl": "1962.218223", + "hash": "0xeb43f35a376c9724ecbd042ec463b60205b0003fd26fb5f68f0c9eacf660710f", + "oid": 221326885647, + "crossed": true, + "fee": "2.064028", + "tid": 264899541798757, + "cloid": "0x00000000000000000000000388000223", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131260.0", + "side": "B", + "time": 1762185595480, + "startPosition": "-1188321610.0", + "dir": "Close Short", + "closedPnl": "228.78618", + "hash": "0x69654461b732e38f6adf042ec463b60205b50047523602610d2defb47636bd7a", + "oid": 221326885650, + "crossed": true, + "fee": "0.104965", + "tid": 946787898975965, + "cloid": "0x00000000000000000000000385000192", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "159.0", + "side": "B", + "time": 1762185596940, + "startPosition": "-1188190350.0", + "dir": "Close Short", + "closedPnl": "0.277137", + "hash": "0x2d6b2f062f4d2d932ee4042ec463ca02087a00ebca404c65d133da58ee41077d", + "oid": 221326910134, + "crossed": true, + "fee": "0.000127", + "tid": 53948200039702, + "cloid": "0x00000000000000000000000385000193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131075.0", + "side": "B", + "time": 1762185596940, + "startPosition": "-1188190191.0", + "dir": "Close Short", + "closedPnl": "228.463725", + "hash": "0x2d6b2f062f4d2d932ee4042ec463ca02087a00ebca404c65d133da58ee41077d", + "oid": 221326910134, + "crossed": true, + "fee": "0.104818", + "tid": 450645321050110, + "cloid": "0x00000000000000000000000385000193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.52", + "sz": "38.7", + "side": "B", + "time": 1762185597603, + "startPosition": "-230988.07", + "dir": "Close Short", + "closedPnl": "1288.41201", + "hash": "0x3c3ad910f75d77843db4042ec463d30203b600f692509656e0038463b651516e", + "oid": 221326914149, + "crossed": true, + "fee": "1.353308", + "tid": 109075006492100, + "cloid": "0x00000000000000000000000388000224", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.52", + "sz": "21.27", + "side": "B", + "time": 1762185597603, + "startPosition": "-230949.37", + "dir": "Close Short", + "closedPnl": "708.127221", + "hash": "0x3c3ad910f75d77843db4042ec463d30203b600f692509656e0038463b651516e", + "oid": 221326914149, + "crossed": true, + "fee": "0.743794", + "tid": 24146839813140, + "cloid": "0x00000000000000000000000388000224", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.2", + "sz": "2.7739", + "side": "B", + "time": 1762185598253, + "startPosition": "-1811.4644", + "dir": "Close Short", + "closedPnl": "1454.577682", + "hash": "0x91d88e628eec1bdf9352042ec463db02086f004829ef3ab135a139b54deff5ca", + "oid": 221326921151, + "crossed": true, + "fee": "2.089029", + "tid": 422243248284135, + "cloid": "0x00000000000000000000000387000237", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.2", + "sz": "0.0126", + "side": "B", + "time": 1762185598253, + "startPosition": "-1808.6905", + "dir": "Close Short", + "closedPnl": "6.607188", + "hash": "0x91d88e628eec1bdf9352042ec463db02086f004829ef3ab135a139b54deff5ca", + "oid": 221326921151, + "crossed": true, + "fee": "0.009489", + "tid": 657839245177991, + "cloid": "0x00000000000000000000000387000237", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131296.0", + "side": "B", + "time": 1762185598688, + "startPosition": "-1188059116.0", + "dir": "Close Short", + "closedPnl": "228.848928", + "hash": "0xa0585fd0f99a1044a1d2042ec463e002047900b6949d2f1644210b23b89dea2f", + "oid": 221326924571, + "crossed": true, + "fee": "0.104994", + "tid": 757994619502470, + "cloid": "0x00000000000000000000000385000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "10.12", + "side": "B", + "time": 1762185600100, + "startPosition": "-230928.1", + "dir": "Close Short", + "closedPnl": "336.614476", + "hash": "0x802edb3e65994b1c81a8042ec463f10203240024009c69ee23f78691249d2507", + "oid": 221326938867, + "crossed": true, + "fee": "0.353952", + "tid": 856747878169919, + "cloid": "0x00000000000000000000000388000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "0.07", + "side": "B", + "time": 1762185600100, + "startPosition": "-230917.98", + "dir": "Close Short", + "closedPnl": "2.328361", + "hash": "0x802edb3e65994b1c81a8042ec463f10203240024009c69ee23f78691249d2507", + "oid": 221326938867, + "crossed": true, + "fee": "0.002448", + "tid": 716174668467307, + "cloid": "0x00000000000000000000000388000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "6.67", + "side": "B", + "time": 1762185600100, + "startPosition": "-230917.91", + "dir": "Close Short", + "closedPnl": "221.859541", + "hash": "0x802edb3e65994b1c81a8042ec463f10203240024009c69ee23f78691249d2507", + "oid": 221326938867, + "crossed": true, + "fee": "0.233286", + "tid": 991385569317225, + "cloid": "0x00000000000000000000000388000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "43.11", + "side": "B", + "time": 1762185600100, + "startPosition": "-230911.24", + "dir": "Close Short", + "closedPnl": "1433.506653", + "hash": "0x802edb3e65994b1c81a8042ec463f10203240024009c69ee23f78691249d2507", + "oid": 221326938867, + "crossed": true, + "fee": "1.507884", + "tid": 541134287668381, + "cloid": "0x00000000000000000000000388000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131294.0", + "side": "B", + "time": 1762185600337, + "startPosition": "-1187927820.0", + "dir": "Close Short", + "closedPnl": "228.845442", + "hash": "0x41022645ab287448427b042ec463f4021696002b462b931ae4cad1986a2c4e32", + "oid": 221326943803, + "crossed": true, + "fee": "0.104993", + "tid": 84277630104551, + "cloid": "0x00000000000000000000000385000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.9", + "sz": "2.7861", + "side": "B", + "time": 1762185601953, + "startPosition": "-1808.6779", + "dir": "Close Short", + "closedPnl": "1459.024848", + "hash": "0x009495e8186ae2dc020e042ec4640102018900cdb36e01aea45d413ad76ebcc6", + "oid": 221326954330, + "crossed": true, + "fee": "2.098627", + "tid": 232961236592717, + "cloid": "0x00000000000000000000000387000238", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003813", + "sz": "130987.0", + "side": "B", + "time": 1762185606033, + "startPosition": "-1187796526.0", + "dir": "Close Short", + "closedPnl": "227.655406", + "hash": "0x3a8fbeea2b9a64fc3c09042ec4642f01ce00d6cfc69d83cede586a3cea9e3ee6", + "oid": 221327005913, + "crossed": true, + "fee": "0.104885", + "tid": 357334974599594, + "cloid": "0x00000000000000000000000385000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "59.94", + "side": "B", + "time": 1762185606033, + "startPosition": "-230868.13", + "dir": "Close Short", + "closedPnl": "1990.745262", + "hash": "0xb8b10ff1ab60b166ba2a042ec4642f01d30027d74663d0385c79bb446a648b51", + "oid": 221327005916, + "crossed": true, + "fee": "2.09706", + "tid": 176189084567644, + "cloid": "0x00000000000000000000000388000226", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.2", + "sz": "2.7858", + "side": "B", + "time": 1762185606033, + "startPosition": "-1805.8918", + "dir": "Close Short", + "closedPnl": "1458.032004", + "hash": "0xd335a3ee4283d54ad4af042ec4642f02011500d3dd86f41c76fe4f410187af35", + "oid": 221327005945, + "crossed": true, + "fee": "2.098576", + "tid": 592833425353652, + "cloid": "0x00000000000000000000000387000239", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003813", + "sz": "131062.0", + "side": "B", + "time": 1762185608593, + "startPosition": "-1187665539.0", + "dir": "Close Short", + "closedPnl": "227.785756", + "hash": "0x81aa50d09d8772688324042ec4644c0206f400b6388a913a2572fc235c8b4c53", + "oid": 221327049486, + "crossed": true, + "fee": "0.104945", + "tid": 729803362218585, + "cloid": "0x00000000000000000000000385000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.8", + "sz": "2.7854", + "side": "B", + "time": 1762185609063, + "startPosition": "-1803.106", + "dir": "Close Short", + "closedPnl": "1458.936812", + "hash": "0x3bd97a004738d6353d53042ec46451020c6e00e5e23bf507dfa22553063cb01f", + "oid": 221327060521, + "crossed": true, + "fee": "2.098041", + "tid": 1087098401713200, + "cloid": "0x00000000000000000000000387000240", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "59.93", + "side": "B", + "time": 1762185609392, + "startPosition": "-230808.19", + "dir": "Close Short", + "closedPnl": "1990.413139", + "hash": "0xd88c73c7ec7c9113da06042ec46455020ece00ad877fafe57c551f1aab706afe", + "oid": 221327070478, + "crossed": true, + "fee": "2.09671", + "tid": 289312473707718, + "cloid": "0x00000000000000000000000388000227", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.3", + "sz": "1.767", + "side": "B", + "time": 1762185612114, + "startPosition": "-1800.3206", + "dir": "Close Short", + "closedPnl": "928.16976", + "hash": "0x2f4b6ec234fdfdab30c5042ec4647202014500a7cff11c7dd3141a14f3f1d795", + "oid": 221327124936, + "crossed": true, + "fee": "1.330397", + "tid": 321097889420131, + "cloid": "0x00000000000000000000000387000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.3", + "sz": "1.02", + "side": "B", + "time": 1762185612114, + "startPosition": "-1798.5536", + "dir": "Close Short", + "closedPnl": "535.7856", + "hash": "0x2f4b6ec234fdfdab30c5042ec4647202014500a7cff11c7dd3141a14f3f1d795", + "oid": 221327124936, + "crossed": true, + "fee": "0.767971", + "tid": 14638317846338, + "cloid": "0x00000000000000000000000387000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "12.01", + "side": "B", + "time": 1762185612395, + "startPosition": "-230748.26", + "dir": "Close Short", + "closedPnl": "399.960623", + "hash": "0xc73b7c40de9e939dc8b5042ec46476020ddb00267991b26f6b0427939d926d88", + "oid": 221327129785, + "crossed": true, + "fee": "0.419954", + "tid": 267823022120036, + "cloid": "0x00000000000000000000000388000228", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "47.99", + "side": "B", + "time": 1762185612395, + "startPosition": "-230736.25", + "dir": "Close Short", + "closedPnl": "1596.737677", + "hash": "0xc73b7c40de9e939dc8b5042ec46476020ddb00267991b26f6b0427939d926d88", + "oid": 221327129785, + "crossed": true, + "fee": "1.678373", + "tid": 661735053759226, + "cloid": "0x00000000000000000000000388000228", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003806", + "sz": "131268.0", + "side": "B", + "time": 1762185613376, + "startPosition": "-1187534477.0", + "dir": "Close Short", + "closedPnl": "229.06266", + "hash": "0x5ada68b02c758c2a5c54042ec464840207a30095c778aafcfea31402eb796614", + "oid": 221327144243, + "crossed": true, + "fee": "0.104917", + "tid": 501355860476798, + "cloid": "0x00000000000000000000000385000198", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.0", + "sz": "0.2175", + "side": "B", + "time": 1762185614794, + "startPosition": "-1797.5336", + "dir": "Close Short", + "closedPnl": "114.09615", + "hash": "0x30658c99ad0c7f5731df042ec464960217ba007f480f9e29d42e37ec6c005941", + "oid": 221327180365, + "crossed": true, + "fee": "0.16379", + "tid": 307569309105944, + "cloid": "0x00000000000000000000000387000242", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.2", + "sz": "0.0042", + "side": "B", + "time": 1762185614794, + "startPosition": "-1797.3161", + "dir": "Close Short", + "closedPnl": "2.202396", + "hash": "0x30658c99ad0c7f5731df042ec464960217ba007f480f9e29d42e37ec6c005941", + "oid": 221327180365, + "crossed": true, + "fee": "0.003163", + "tid": 1064255055317950, + "cloid": "0x00000000000000000000000387000242", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.2", + "sz": "0.0055", + "side": "B", + "time": 1762185614794, + "startPosition": "-1797.3119", + "dir": "Close Short", + "closedPnl": "2.88409", + "hash": "0x30658c99ad0c7f5731df042ec464960217ba007f480f9e29d42e37ec6c005941", + "oid": 221327180365, + "crossed": true, + "fee": "0.004142", + "tid": 541309452334632, + "cloid": "0x00000000000000000000000387000242", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "0.0083", + "side": "B", + "time": 1762185614794, + "startPosition": "-1797.3064", + "dir": "Close Short", + "closedPnl": "4.350694", + "hash": "0x30658c99ad0c7f5731df042ec464960217ba007f480f9e29d42e37ec6c005941", + "oid": 221327180365, + "crossed": true, + "fee": "0.006251", + "tid": 253039618399397, + "cloid": "0x00000000000000000000000387000242", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "0.0042", + "side": "B", + "time": 1762185614794, + "startPosition": "-1797.2981", + "dir": "Close Short", + "closedPnl": "2.201556", + "hash": "0x30658c99ad0c7f5731df042ec464960217ba007f480f9e29d42e37ec6c005941", + "oid": 221327180365, + "crossed": true, + "fee": "0.003163", + "tid": 130878932072370, + "cloid": "0x00000000000000000000000387000242", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "2.5466", + "side": "B", + "time": 1762185614794, + "startPosition": "-1797.2939", + "dir": "Close Short", + "closedPnl": "1334.876788", + "hash": "0x30658c99ad0c7f5731df042ec464960217ba007f480f9e29d42e37ec6c005941", + "oid": 221327180365, + "crossed": true, + "fee": "1.917956", + "tid": 184762338878729, + "cloid": "0x00000000000000000000000387000242", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "0.18", + "side": "B", + "time": 1762185614794, + "startPosition": "-230688.26", + "dir": "Close Short", + "closedPnl": "5.980014", + "hash": "0xe3390334c69dc1d2e4b2042ec464960217bb001a6190e0a48701ae8785919bbd", + "oid": 221327180366, + "crossed": true, + "fee": "0.006297", + "tid": 6216187462154, + "cloid": "0x00000000000000000000000388000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "0.29", + "side": "B", + "time": 1762185614794, + "startPosition": "-230688.08", + "dir": "Close Short", + "closedPnl": "9.634467", + "hash": "0xe3390334c69dc1d2e4b2042ec464960217bb001a6190e0a48701ae8785919bbd", + "oid": 221327180366, + "crossed": true, + "fee": "0.010145", + "tid": 687836874156747, + "cloid": "0x00000000000000000000000388000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "0.29", + "side": "B", + "time": 1762185614794, + "startPosition": "-230687.79", + "dir": "Close Short", + "closedPnl": "9.634467", + "hash": "0xe3390334c69dc1d2e4b2042ec464960217bb001a6190e0a48701ae8785919bbd", + "oid": 221327180366, + "crossed": true, + "fee": "0.010145", + "tid": 744560518485074, + "cloid": "0x00000000000000000000000388000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "59.21", + "side": "B", + "time": 1762185614794, + "startPosition": "-230687.5", + "dir": "Close Short", + "closedPnl": "1966.500283", + "hash": "0xe3390334c69dc1d2e4b2042ec464960217bb001a6190e0a48701ae8785919bbd", + "oid": 221327180366, + "crossed": true, + "fee": "2.071521", + "tid": 71780260927331, + "cloid": "0x00000000000000000000000388000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003803", + "sz": "131363.0", + "side": "B", + "time": 1762185615673, + "startPosition": "-1187403209.0", + "dir": "Close Short", + "closedPnl": "229.622524", + "hash": "0x566424d0a2bc8c6757dd042ec464a2020b9100b63dbfab39fa2cd02361b06651", + "oid": 221327198259, + "crossed": true, + "fee": "0.10491", + "tid": 440101170589999, + "cloid": "0x00000000000000000000000385000199", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.4", + "sz": "2.7873", + "side": "B", + "time": 1762185617377, + "startPosition": "-1794.7473", + "dir": "Close Short", + "closedPnl": "1463.834214", + "hash": "0xa18a340ceb75d4f4a303042ec464b8020d0f00f28678f3c64552df5faa79aedf", + "oid": 221327234563, + "crossed": true, + "fee": "2.098652", + "tid": 801597147521179, + "cloid": "0x00000000000000000000000387000243", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "59.99", + "side": "B", + "time": 1762185617377, + "startPosition": "-230628.29", + "dir": "Close Short", + "closedPnl": "1996.005277", + "hash": "0x1bee27236ae8ba341d67042ec464b8020d1e000905ebd906bfb6d27629ec941e", + "oid": 221327234571, + "crossed": true, + "fee": "2.098054", + "tid": 362446614711200, + "cloid": "0x00000000000000000000000388000230", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131588.0", + "side": "B", + "time": 1762185617789, + "startPosition": "-1187271846.0", + "dir": "Close Short", + "closedPnl": "230.542176", + "hash": "0x3f2b63cf9039655640a5042ec464bd0162007bb52b3c8428e2f40f224f3d3f40", + "oid": 221327242093, + "crossed": true, + "fee": "0.104979", + "tid": 945588105363488, + "cloid": "0x00000000000000000000000385000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "131752.0", + "side": "B", + "time": 1762185619822, + "startPosition": "-1187140258.0", + "dir": "Close Short", + "closedPnl": "231.356512", + "hash": "0x9bf76ed5d90f85a79d71042ec464d7020d7500bb7402a4793fc01a2898035f92", + "oid": 221327289358, + "crossed": true, + "fee": "0.104999", + "tid": 417322963631378, + "cloid": "0x00000000000000000000000385000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.1", + "sz": "2.092", + "side": "B", + "time": 1762185619822, + "startPosition": "-1791.96", + "dir": "Close Short", + "closedPnl": "1099.30416", + "hash": "0x4d17b7ab3cacbd694e91042ec464d7020dbf0090d7afdc3bf0e062fdfba09753", + "oid": 221327289405, + "crossed": true, + "fee": "1.575006", + "tid": 954135118593449, + "cloid": "0x00000000000000000000000387000244", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.1", + "sz": "0.695", + "side": "B", + "time": 1762185619822, + "startPosition": "-1789.868", + "dir": "Close Short", + "closedPnl": "365.2086", + "hash": "0x4d17b7ab3cacbd694e91042ec464d7020dbf0090d7afdc3bf0e062fdfba09753", + "oid": 221327289405, + "crossed": true, + "fee": "0.523245", + "tid": 1006841074473440, + "cloid": "0x00000000000000000000000387000244", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.37", + "sz": "60.01", + "side": "B", + "time": 1762185620092, + "startPosition": "-230568.3", + "dir": "Close Short", + "closedPnl": "2006.872423", + "hash": "0x9a3cf57d1c870c9b9bb6042ec464db020f590062b78a2b6d3e05a0cfdb8ae686", + "oid": 221327304338, + "crossed": true, + "fee": "2.096611", + "tid": 608307673908319, + "cloid": "0x00000000000000000000000388000231", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131844.0", + "side": "B", + "time": 1762185622578, + "startPosition": "-1187008506.0", + "dir": "Close Short", + "closedPnl": "232.309128", + "hash": "0x38df96e024f20b4a3a59042ec464fa02079d00c5bff52a1cdca84232e3f5e534", + "oid": 221327360729, + "crossed": true, + "fee": "0.104906", + "tid": 990970329766228, + "cloid": "0x00000000000000000000000385000202", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.9", + "sz": "0.833", + "side": "B", + "time": 1762185622838, + "startPosition": "-1789.173", + "dir": "Close Short", + "closedPnl": "439.55744", + "hash": "0x74173a5b5846702a7590042ec464fd02124b0040f3498efc17dfe5ae174a4a15", + "oid": 221327369869, + "crossed": true, + "fee": "0.626756", + "tid": 363684991663837, + "cloid": "0x00000000000000000000000387000245", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.9", + "sz": "1.9554", + "side": "B", + "time": 1762185622838, + "startPosition": "-1788.34", + "dir": "Close Short", + "closedPnl": "1031.825472", + "hash": "0x74173a5b5846702a7590042ec464fd02124b0040f3498efc17dfe5ae174a4a15", + "oid": 221327369869, + "crossed": true, + "fee": "1.47126", + "tid": 55615780179019, + "cloid": "0x00000000000000000000000387000245", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.29", + "sz": "60.05", + "side": "B", + "time": 1762185622838, + "startPosition": "-230508.29", + "dir": "Close Short", + "closedPnl": "2013.014115", + "hash": "0xa50c01fdf1adff10a685042ec464fd02125100e38ca11de248d4ad50b0a1d8fb", + "oid": 221327369873, + "crossed": true, + "fee": "2.097", + "tid": 426321800873218, + "cloid": "0x00000000000000000000000388000232", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.34", + "sz": "0.18", + "side": "B", + "time": 1762185625293, + "startPosition": "-230448.24", + "dir": "Close Short", + "closedPnl": "6.025014", + "hash": "0xbd14b90ff322ea04be8e042ec46518020a6200f58e2608d660dd6462b226c3ef", + "oid": 221327414087, + "crossed": true, + "fee": "0.006287", + "tid": 402020420929761, + "cloid": "0x00000000000000000000000388000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.34", + "sz": "31.52", + "side": "B", + "time": 1762185625293, + "startPosition": "-230448.06", + "dir": "Close Short", + "closedPnl": "1055.046896", + "hash": "0xbd14b90ff322ea04be8e042ec46518020a6200f58e2608d660dd6462b226c3ef", + "oid": 221327414087, + "crossed": true, + "fee": "1.101037", + "tid": 310281558885667, + "cloid": "0x00000000000000000000000388000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.34", + "sz": "11.67", + "side": "B", + "time": 1762185625293, + "startPosition": "-230416.54", + "dir": "Close Short", + "closedPnl": "390.621741", + "hash": "0xbd14b90ff322ea04be8e042ec46518020a6200f58e2608d660dd6462b226c3ef", + "oid": 221327414087, + "crossed": true, + "fee": "0.407649", + "tid": 745083783886524, + "cloid": "0x00000000000000000000000388000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.36", + "sz": "1.0", + "side": "B", + "time": 1762185625293, + "startPosition": "-230404.87", + "dir": "Close Short", + "closedPnl": "33.4523", + "hash": "0xbd14b90ff322ea04be8e042ec46518020a6200f58e2608d660dd6462b226c3ef", + "oid": 221327414087, + "crossed": true, + "fee": "0.034935", + "tid": 930962093495812, + "cloid": "0x00000000000000000000000388000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "0.18", + "side": "B", + "time": 1762185625293, + "startPosition": "-230403.87", + "dir": "Close Short", + "closedPnl": "6.017814", + "hash": "0xbd14b90ff322ea04be8e042ec46518020a6200f58e2608d660dd6462b226c3ef", + "oid": 221327414087, + "crossed": true, + "fee": "0.006289", + "tid": 701826727097936, + "cloid": "0x00000000000000000000000388000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "0.18", + "side": "B", + "time": 1762185625293, + "startPosition": "-230403.69", + "dir": "Close Short", + "closedPnl": "6.017814", + "hash": "0xbd14b90ff322ea04be8e042ec46518020a6200f58e2608d660dd6462b226c3ef", + "oid": 221327414087, + "crossed": true, + "fee": "0.006289", + "tid": 97038004887376, + "cloid": "0x00000000000000000000000388000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.39", + "sz": "15.29", + "side": "B", + "time": 1762185625293, + "startPosition": "-230403.51", + "dir": "Close Short", + "closedPnl": "511.026967", + "hash": "0xbd14b90ff322ea04be8e042ec46518020a6200f58e2608d660dd6462b226c3ef", + "oid": 221327414087, + "crossed": true, + "fee": "0.534261", + "tid": 728842407731311, + "cloid": "0x00000000000000000000000388000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.8", + "sz": "0.0055", + "side": "B", + "time": 1762185626416, + "startPosition": "-1786.3846", + "dir": "Close Short", + "closedPnl": "2.89179", + "hash": "0x825693b6d2d3870c83d0042ec4652602024f009c6dd6a5de261f3f0991d760f7", + "oid": 221327440113, + "crossed": true, + "fee": "0.00414", + "tid": 563394588491492, + "cloid": "0x00000000000000000000000387000246", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.8", + "sz": "2.7822", + "side": "B", + "time": 1762185626416, + "startPosition": "-1786.3791", + "dir": "Close Short", + "closedPnl": "1462.825116", + "hash": "0x825693b6d2d3870c83d0042ec4652602024f009c6dd6a5de261f3f0991d760f7", + "oid": 221327440113, + "crossed": true, + "fee": "2.094462", + "tid": 758186096830315, + "cloid": "0x00000000000000000000000387000246", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.39", + "sz": "60.01", + "side": "B", + "time": 1762185627299, + "startPosition": "-230388.22", + "dir": "Close Short", + "closedPnl": "2005.672223", + "hash": "0x03610acd8246ee0404da042ec4652f02057100b31d4a0cd6a729b620414ac7ee", + "oid": 221327457187, + "crossed": true, + "fee": "2.096863", + "tid": 31322899969562, + "cloid": "0x00000000000000000000000388000234", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131813.0", + "side": "B", + "time": 1762185627873, + "startPosition": "-1186876662.0", + "dir": "Close Short", + "closedPnl": "231.200002", + "hash": "0x2010917a5b699cf4218a042ec46535020435005ff66cbbc6c3d93ccd1a6d76de", + "oid": 221327468266, + "crossed": true, + "fee": "0.105103", + "tid": 818247770945715, + "cloid": "0x00000000000000000000000385000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "2.7888", + "side": "B", + "time": 1762185628947, + "startPosition": "-1783.5969", + "dir": "Close Short", + "closedPnl": "1471.315104", + "hash": "0x6526859102823aab66a0042ec465430204b100769d85597d08ef30e3c1861496", + "oid": 221327485574, + "crossed": true, + "fee": "2.098376", + "tid": 300768345778198, + "cloid": "0x00000000000000000000000387000247", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "60.03", + "side": "B", + "time": 1762185629427, + "startPosition": "-230328.21", + "dir": "Close Short", + "closedPnl": "2006.940969", + "hash": "0xaaa213334b4f06bdac1b042ec4654902027f0018e642258f4e6abe860a42e0a8", + "oid": 221327492791, + "crossed": true, + "fee": "2.097436", + "tid": 589042041515752, + "cloid": "0x00000000000000000000000388000235", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131640.0", + "side": "B", + "time": 1762185629493, + "startPosition": "-1186744849.0", + "dir": "Close Short", + "closedPnl": "230.89656", + "hash": "0x54de09013c85470b5657042ec4654a0204ee00e6d78865ddf8a6b453fb8920f5", + "oid": 221327494278, + "crossed": true, + "fee": "0.104965", + "tid": 130429024381259, + "cloid": "0x00000000000000000000000385000205", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.1", + "sz": "2.518", + "side": "B", + "time": 1762185630600, + "startPosition": "-1780.8081", + "dir": "Close Short", + "closedPnl": "1328.19464", + "hash": "0x0f260031ca09305e109f042ec465590218fb0017650c4f30b2eeab84890d0a48", + "oid": 221327513865, + "crossed": true, + "fee": "1.894671", + "tid": 984674564423220, + "cloid": "0x00000000000000000000000387000248", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.7", + "sz": "0.2706", + "side": "B", + "time": 1762185630600, + "startPosition": "-1778.2901", + "dir": "Close Short", + "closedPnl": "142.573728", + "hash": "0x0f260031ca09305e109f042ec465590218fb0017650c4f30b2eeab84890d0a48", + "oid": 221327513865, + "crossed": true, + "fee": "0.203647", + "tid": 678787889837799, + "cloid": "0x00000000000000000000000387000248", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "60.01", + "side": "B", + "time": 1762185631243, + "startPosition": "-230268.18", + "dir": "Close Short", + "closedPnl": "1997.270823", + "hash": "0xedaf90562ee1c999ef29042ec4656202068c003bc9e4e86b91783ba8ede5a384", + "oid": 221327533982, + "crossed": true, + "fee": "2.098627", + "tid": 1021150644069878, + "cloid": "0x00000000000000000000000388000236", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "114599.0", + "side": "B", + "time": 1762185632589, + "startPosition": "-1186613209.0", + "dir": "Close Short", + "closedPnl": "200.662849", + "hash": "0x606397f08a63043a61dd042ec465730216ef00d62566230c042c43434966de25", + "oid": 221327527334, + "crossed": false, + "fee": "0.012193", + "tid": 702462080585511, + "cloid": "0x00000000000000000000000385000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "17006.0", + "side": "B", + "time": 1762185633210, + "startPosition": "-1186498610.0", + "dir": "Close Short", + "closedPnl": "29.777506", + "hash": "0x26331a3b09dc6c8a27ac042ec4657b0208d60020a4df8b5cc9fbc58dc8d04674", + "oid": 221327527334, + "crossed": false, + "fee": "0.001809", + "tid": 96371952708572, + "cloid": "0x00000000000000000000000385000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.8", + "sz": "1.8", + "side": "B", + "time": 1762185633519, + "startPosition": "-1778.0195", + "dir": "Close Short", + "closedPnl": "946.404", + "hash": "0xe1104835dc8473c4e28a042ec46580020f60001b7787929684d8f3889b884daf", + "oid": 221327575050, + "crossed": true, + "fee": "1.355054", + "tid": 146405241851545, + "cloid": "0x00000000000000000000000387000249", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.8", + "sz": "0.9867", + "side": "B", + "time": 1762185633519, + "startPosition": "-1776.2195", + "dir": "Close Short", + "closedPnl": "518.787126", + "hash": "0xe1104835dc8473c4e28a042ec46580020f60001b7787929684d8f3889b884daf", + "oid": 221327575050, + "crossed": true, + "fee": "0.742795", + "tid": 612139511425142, + "cloid": "0x00000000000000000000000387000249", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "59.98", + "side": "B", + "time": 1762185633519, + "startPosition": "-230208.17", + "dir": "Close Short", + "closedPnl": "1996.272354", + "hash": "0x83921bacd32f6091850b042ec4658002105a00926e227f63275ac6ff92233a7c", + "oid": 221327575167, + "crossed": true, + "fee": "2.097578", + "tid": 951757886876978, + "cloid": "0x00000000000000000000000388000237", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.46", + "sz": "60.01", + "side": "B", + "time": 1762185635661, + "startPosition": "-230148.19", + "dir": "Close Short", + "closedPnl": "2001.471523", + "hash": "0xdb45cd7a45106413dcbf042ec4659a0203cf005fe01382e57f0e78cd04143dfe", + "oid": 221327634445, + "crossed": true, + "fee": "2.097745", + "tid": 790257175620388, + "cloid": "0x00000000000000000000000388000238", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.4", + "sz": "2.2013", + "side": "B", + "time": 1762185635729, + "startPosition": "-1775.2328", + "dir": "Close Short", + "closedPnl": "1160.481334", + "hash": "0xbbe716a18605a52cbd60042ec4659b0205f100872108c3fe5fafc1f445097f17", + "oid": 221327636602, + "crossed": true, + "fee": "1.656509", + "tid": 1082655265112000, + "cloid": "0x00000000000000000000000387000250", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.4", + "sz": "0.5869", + "side": "B", + "time": 1762185635729, + "startPosition": "-1773.0315", + "dir": "Close Short", + "closedPnl": "309.401942", + "hash": "0xbbe716a18605a52cbd60042ec4659b0205f100872108c3fe5fafc1f445097f17", + "oid": 221327636602, + "crossed": true, + "fee": "0.44165", + "tid": 301531891035664, + "cloid": "0x00000000000000000000000387000250", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131648.0", + "side": "B", + "time": 1762185635729, + "startPosition": "-1186481604.0", + "dir": "Close Short", + "closedPnl": "231.04224", + "hash": "0x6afd2f4b9f33807d6c76042ec4659b0205fc00313a369f4f0ec5da9e5e375a68", + "oid": 221327636609, + "crossed": true, + "fee": "0.104944", + "tid": 347320605055900, + "cloid": "0x00000000000000000000000385000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "31.1", + "side": "B", + "time": 1762185637202, + "startPosition": "-230088.18", + "dir": "Close Short", + "closedPnl": "1037.56753", + "hash": "0xf67c5fd850daf72df7f6042ec465b001fd0077bdebde16009a450b2b0fded118", + "oid": 221327668615, + "crossed": true, + "fee": "1.087084", + "tid": 402637301432269, + "cloid": "0x00000000000000000000000388000239", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "28.92", + "side": "B", + "time": 1762185637202, + "startPosition": "-230057.08", + "dir": "Close Short", + "closedPnl": "964.837716", + "hash": "0xf67c5fd850daf72df7f6042ec465b001fd0077bdebde16009a450b2b0fded118", + "oid": 221327668615, + "crossed": true, + "fee": "1.010884", + "tid": 639629876683191, + "cloid": "0x00000000000000000000000388000239", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.4", + "sz": "2.0324", + "side": "B", + "time": 1762185637481, + "startPosition": "-1772.4446", + "dir": "Close Short", + "closedPnl": "1071.440632", + "hash": "0xaafb96dc4a5063eaac75042ec465b402054100c1e55382bc4ec4422f09543dd5", + "oid": 221327675750, + "crossed": true, + "fee": "1.529409", + "tid": 22650620639397, + "cloid": "0x00000000000000000000000387000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.4", + "sz": "0.7562", + "side": "B", + "time": 1762185637481, + "startPosition": "-1770.4122", + "dir": "Close Short", + "closedPnl": "398.653516", + "hash": "0xaafb96dc4a5063eaac75042ec465b402054100c1e55382bc4ec4422f09543dd5", + "oid": 221327675750, + "crossed": true, + "fee": "0.569051", + "tid": 792715949131968, + "cloid": "0x00000000000000000000000387000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131718.0", + "side": "B", + "time": 1762185637481, + "startPosition": "-1186349956.0", + "dir": "Close Short", + "closedPnl": "231.16509", + "hash": "0x10a284127d72e8e2121c042ec465b402054300f8187607b4b46b2f653c76c2cc", + "oid": 221327675751, + "crossed": true, + "fee": "0.105", + "tid": 965686321506398, + "cloid": "0x00000000000000000000000385000208", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "26.06", + "side": "B", + "time": 1762185639235, + "startPosition": "-230028.16", + "dir": "Close Short", + "closedPnl": "872.548738", + "hash": "0x3ea322b8b762f5ea401c042ec465c9020a11009e526614bce26bce0b7666cfd4", + "oid": 221327711390, + "crossed": true, + "fee": "0.910257", + "tid": 293040535903617, + "cloid": "0x00000000000000000000000388000240", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "33.99", + "side": "B", + "time": 1762185639235, + "startPosition": "-230002.1", + "dir": "Close Short", + "closedPnl": "1138.063377", + "hash": "0x3ea322b8b762f5ea401c042ec465c9020a11009e526614bce26bce0b7666cfd4", + "oid": 221327711390, + "crossed": true, + "fee": "1.187246", + "tid": 854374816166969, + "cloid": "0x00000000000000000000000388000240", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131605.0", + "side": "B", + "time": 1762185639235, + "startPosition": "-1186218238.0", + "dir": "Close Short", + "closedPnl": "230.83517", + "hash": "0xb90715cf36d5db29ba80042ec465c9020a2000b4d1d8f9fb5ccfc121f5d9b514", + "oid": 221327711404, + "crossed": true, + "fee": "0.104937", + "tid": 896220935610822, + "cloid": "0x00000000000000000000000385000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.8", + "sz": "2.7881", + "side": "B", + "time": 1762185640032, + "startPosition": "-1769.656", + "dir": "Close Short", + "closedPnl": "1468.715318", + "hash": "0x451ad435207834ff4694042ec465d4020653001abb7b53d1e8e37f87df7c0ee9", + "oid": 221327724475, + "crossed": true, + "fee": "2.098318", + "tid": 655159336594715, + "cloid": "0x00000000000000000000000387000252", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.37", + "sz": "12.0", + "side": "B", + "time": 1762185640915, + "startPosition": "-229968.11", + "dir": "Close Short", + "closedPnl": "401.3076", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.419252", + "tid": 397504260364240, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.37", + "sz": "0.96", + "side": "B", + "time": 1762185640915, + "startPosition": "-229956.11", + "dir": "Close Short", + "closedPnl": "32.104608", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.03354", + "tid": 551814289405886, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "0.07", + "side": "B", + "time": 1762185640915, + "startPosition": "-229955.15", + "dir": "Close Short", + "closedPnl": "2.340261", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.002445", + "tid": 920611280149001, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "0.07", + "side": "B", + "time": 1762185640915, + "startPosition": "-229955.08", + "dir": "Close Short", + "closedPnl": "2.340261", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.002445", + "tid": 84149181649785, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "0.07", + "side": "B", + "time": 1762185640915, + "startPosition": "-229955.01", + "dir": "Close Short", + "closedPnl": "2.340261", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.002445", + "tid": 1056058922634683, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "0.07", + "side": "B", + "time": 1762185640915, + "startPosition": "-229954.94", + "dir": "Close Short", + "closedPnl": "2.340261", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.002445", + "tid": 969027537378923, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "0.07", + "side": "B", + "time": 1762185640915, + "startPosition": "-229954.87", + "dir": "Close Short", + "closedPnl": "2.340261", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.002445", + "tid": 230264652871153, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "0.07", + "side": "B", + "time": 1762185640915, + "startPosition": "-229954.8", + "dir": "Close Short", + "closedPnl": "2.340261", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.002445", + "tid": 725820532805959, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "32.78", + "side": "B", + "time": 1762185640915, + "startPosition": "-229954.73", + "dir": "Close Short", + "closedPnl": "1094.927394", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "1.145533", + "tid": 392526372181888, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "3.0", + "side": "B", + "time": 1762185640915, + "startPosition": "-229921.95", + "dir": "Close Short", + "closedPnl": "100.2069", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.104838", + "tid": 761128045127761, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.42", + "sz": "0.18", + "side": "B", + "time": 1762185640915, + "startPosition": "-229918.95", + "dir": "Close Short", + "closedPnl": "6.010614", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.00629", + "tid": 154964450601103, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.43", + "sz": "10.69", + "side": "B", + "time": 1762185640915, + "startPosition": "-229918.77", + "dir": "Close Short", + "closedPnl": "356.856787", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.373618", + "tid": 686472561436209, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.4", + "sz": "2.788", + "side": "B", + "time": 1762185641563, + "startPosition": "-1766.8679", + "dir": "Close Short", + "closedPnl": "1466.98984", + "hash": "0x56d31d27da67d0e1584c042ec465e6021070000d756aefb3fa9bc87a996baacb", + "oid": 221327752835, + "crossed": true, + "fee": "2.098594", + "tid": 942981315851210, + "cloid": "0x00000000000000000000000387000253", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.37", + "sz": "60.04", + "side": "B", + "time": 1762185642469, + "startPosition": "-229908.08", + "dir": "Close Short", + "closedPnl": "2007.875692", + "hash": "0xfa8b91d957e50843fc05042ec465ef02061b00bef2e827169e543d2c16e8e22e", + "oid": 221327765503, + "crossed": true, + "fee": "2.097659", + "tid": 798897689964906, + "cloid": "0x00000000000000000000000388000242", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003793", + "sz": "74064.0", + "side": "B", + "time": 1762185643366, + "startPosition": "-1186086633.0", + "dir": "Close Short", + "closedPnl": "130.204512", + "hash": "0xcc68761f22ff3985cde2042ec465f90207420004bdf2585770312171e1f31370", + "oid": 221327799459, + "crossed": true, + "fee": "0.058994", + "tid": 984606161592493, + "cloid": "0x00000000000000000000000385000211", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003794", + "sz": "57572.0", + "side": "B", + "time": 1762185643366, + "startPosition": "-1186012569.0", + "dir": "Close Short", + "closedPnl": "101.154004", + "hash": "0xcc68761f22ff3985cde2042ec465f90207420004bdf2585770312171e1f31370", + "oid": 221327799459, + "crossed": true, + "fee": "0.045869", + "tid": 560963765878453, + "cloid": "0x00000000000000000000000385000211", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.5", + "sz": "1.7611", + "side": "B", + "time": 1762185643366, + "startPosition": "-1764.0799", + "dir": "Close Short", + "closedPnl": "930.001688", + "hash": "0x77c130d83bc9adab793a042ec465f902075700bdd6cccc7d1b89dc2afacd8796", + "oid": 221327799474, + "crossed": true, + "fee": "1.324919", + "tid": 484450500901633, + "cloid": "0x00000000000000000000000387000254", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.5", + "sz": "1.0283", + "side": "B", + "time": 1762185643366, + "startPosition": "-1762.3188", + "dir": "Close Short", + "closedPnl": "543.024664", + "hash": "0x77c130d83bc9adab793a042ec465f902075700bdd6cccc7d1b89dc2afacd8796", + "oid": 221327799474, + "crossed": true, + "fee": "0.773615", + "tid": 673754347793462, + "cloid": "0x00000000000000000000000387000254", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "60.07", + "side": "B", + "time": 1762185644373, + "startPosition": "-229848.04", + "dir": "Close Short", + "closedPnl": "2016.688061", + "hash": "0x00c55284af285f76023f042ec46604020a86006a4a2b7e48a48dfdd76e2c3960", + "oid": 221327821130, + "crossed": true, + "fee": "2.097067", + "tid": 51850202544330, + "cloid": "0x00000000000000000000000388000243", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131891.0", + "side": "B", + "time": 1762185645280, + "startPosition": "-1185954997.0", + "dir": "Close Short", + "closedPnl": "232.391942", + "hash": "0x12f40c87dc8c5089146d042ec466110206cb006d778f6f5bb6bcb7da9b802a73", + "oid": 221327844432, + "crossed": true, + "fee": "0.104944", + "tid": 648772322986304, + "cloid": "0x00000000000000000000000385000212", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.4", + "sz": "2.04", + "side": "B", + "time": 1762185645874, + "startPosition": "-1761.2905", + "dir": "Close Short", + "closedPnl": "1079.5272", + "hash": "0x8a9111b80bf4e71e8c0a042ec46619020bb2009da6f805f02e59bd0acaf8c109", + "oid": 221327861988, + "crossed": true, + "fee": "1.534271", + "tid": 1005239482341349, + "cloid": "0x00000000000000000000000387000255", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.4", + "sz": "0.7498", + "side": "B", + "time": 1762185645874, + "startPosition": "-1759.2505", + "dir": "Close Short", + "closedPnl": "396.779164", + "hash": "0x8a9111b80bf4e71e8c0a042ec46619020bb2009da6f805f02e59bd0acaf8c109", + "oid": 221327861988, + "crossed": true, + "fee": "0.56392", + "tid": 569421487092383, + "cloid": "0x00000000000000000000000387000255", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "60.09", + "side": "B", + "time": 1762185646114, + "startPosition": "-229787.97", + "dir": "Close Short", + "closedPnl": "2017.960407", + "hash": "0x01307d1453eb690802aa042ec4661d020a7500f9eeee87daa4f9286712ef42f2", + "oid": 221327872949, + "crossed": true, + "fee": "2.097639", + "tid": 228388392252919, + "cloid": "0x00000000000000000000000388000244", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131926.0", + "side": "B", + "time": 1762185647666, + "startPosition": "-1185823106.0", + "dir": "Close Short", + "closedPnl": "232.453612", + "hash": "0xc565e32da01a3071c6df042ec4662f02055600133b1d4f43692e8e805f1e0a5c", + "oid": 221327903603, + "crossed": true, + "fee": "0.104972", + "tid": 224034264465559, + "cloid": "0x00000000000000000000000385000213", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.6", + "sz": "2.7892", + "side": "B", + "time": 1762185648507, + "startPosition": "-1758.5007", + "dir": "Close Short", + "closedPnl": "1475.431016", + "hash": "0x9f14c94e9f4d660ea08e042ec4663902010f00343a4084e042dd74a15e413ff9", + "oid": 221327920685, + "crossed": true, + "fee": "2.097857", + "tid": 157903078661477, + "cloid": "0x00000000000000000000000387000256", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "60.06", + "side": "B", + "time": 1762185648606, + "startPosition": "-229727.88", + "dir": "Close Short", + "closedPnl": "2012.148138", + "hash": "0xa106d66211582d57a280042ec4663a020e130047ac5b4c2944cf81b4d05c0742", + "oid": 221327926968, + "crossed": true, + "fee": "2.097601", + "tid": 337980190517961, + "cloid": "0x00000000000000000000000388000245", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131926.0", + "side": "B", + "time": 1762185650128, + "startPosition": "-1185691180.0", + "dir": "Close Short", + "closedPnl": "232.453612", + "hash": "0x8d822af3d2d3993b8efb042ec4664e02068700d96dd6b80d314ad64691d77326", + "oid": 221327959624, + "crossed": true, + "fee": "0.104972", + "tid": 302248482930617, + "cloid": "0x00000000000000000000000385000214", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "60.09", + "side": "B", + "time": 1762185650720, + "startPosition": "-229667.82", + "dir": "Close Short", + "closedPnl": "2016.758607", + "hash": "0xaf1be146c9195d1ab095042ec46656020963002c641c7bec52e48c99881d3705", + "oid": 221327971828, + "crossed": true, + "fee": "2.097892", + "tid": 241533551527841, + "cloid": "0x00000000000000000000000388000246", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.9", + "sz": "2.04", + "side": "B", + "time": 1762185650720, + "startPosition": "-1755.7115", + "dir": "Close Short", + "closedPnl": "1078.5072", + "hash": "0xa3e3c773c7ff2799a55d042ec46656020981005962f2466b47ac72c686f30184", + "oid": 221327971837, + "crossed": true, + "fee": "1.534485", + "tid": 215530936444255, + "cloid": "0x00000000000000000000000387000257", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.9", + "sz": "0.7497", + "side": "B", + "time": 1762185650720, + "startPosition": "-1753.6715", + "dir": "Close Short", + "closedPnl": "396.351396", + "hash": "0xa3e3c773c7ff2799a55d042ec46656020981005962f2466b47ac72c686f30184", + "oid": 221327971837, + "crossed": true, + "fee": "0.563923", + "tid": 1085388140291295, + "cloid": "0x00000000000000000000000387000257", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131933.0", + "side": "B", + "time": 1762185652087, + "startPosition": "-1185559254.0", + "dir": "Close Short", + "closedPnl": "232.465946", + "hash": "0x2cc1f99d327514822e3b042ec4666a020b050082cd783354d08aa4eff178ee6c", + "oid": 221328003628, + "crossed": true, + "fee": "0.104977", + "tid": 437409571798938, + "cloid": "0x00000000000000000000000385000215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.1", + "sz": "2.7896", + "side": "B", + "time": 1762185652289, + "startPosition": "-1752.9218", + "dir": "Close Short", + "closedPnl": "1474.247808", + "hash": "0x219a958533bf93b02314042ec4666d0202ea006aceb2b282c56340d7f2b36d9a", + "oid": 221328004950, + "crossed": true, + "fee": "2.098451", + "tid": 1013197607479432, + "cloid": "0x00000000000000000000000387000258", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.14", + "sz": "60.1", + "side": "B", + "time": 1762185652534, + "startPosition": "-229607.73", + "dir": "Close Short", + "closedPnl": "2023.70523", + "hash": "0x9dc22888cc94540a9f3b042ec46670015900406e679772dc418ad3db8b982df5", + "oid": 221328007166, + "crossed": true, + "fee": "2.096852", + "tid": 7151583792134, + "cloid": "0x00000000000000000000000388000247", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.7", + "sz": "0.0055", + "side": "B", + "time": 1762185654127, + "startPosition": "-1750.1322", + "dir": "Close Short", + "closedPnl": "2.90334", + "hash": "0x586acfda894ab9bf59e4042ec4668602086e00c0244dd891fc337b2d484e93a9", + "oid": 221328036244, + "crossed": true, + "fee": "0.004138", + "tid": 310700275911214, + "cloid": "0x00000000000000000000000387000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "0.0042", + "side": "B", + "time": 1762185654127, + "startPosition": "-1750.1267", + "dir": "Close Short", + "closedPnl": "2.215836", + "hash": "0x586acfda894ab9bf59e4042ec4668602086e00c0244dd891fc337b2d484e93a9", + "oid": 221328036244, + "crossed": true, + "fee": "0.00316", + "tid": 1086695283227909, + "cloid": "0x00000000000000000000000387000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.0042", + "side": "B", + "time": 1762185654127, + "startPosition": "-1750.1225", + "dir": "Close Short", + "closedPnl": "2.214996", + "hash": "0x586acfda894ab9bf59e4042ec4668602086e00c0244dd891fc337b2d484e93a9", + "oid": 221328036244, + "crossed": true, + "fee": "0.00316", + "tid": 1020025435769208, + "cloid": "0x00000000000000000000000387000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.4", + "sz": "0.0083", + "side": "B", + "time": 1762185654127, + "startPosition": "-1750.1183", + "dir": "Close Short", + "closedPnl": "4.375594", + "hash": "0x586acfda894ab9bf59e4042ec4668602086e00c0244dd891fc337b2d484e93a9", + "oid": 221328036244, + "crossed": true, + "fee": "0.006245", + "tid": 600947489828465, + "cloid": "0x00000000000000000000000387000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.5", + "sz": "0.0042", + "side": "B", + "time": 1762185654127, + "startPosition": "-1750.11", + "dir": "Close Short", + "closedPnl": "2.213736", + "hash": "0x586acfda894ab9bf59e4042ec4668602086e00c0244dd891fc337b2d484e93a9", + "oid": 221328036244, + "crossed": true, + "fee": "0.00316", + "tid": 757192145556283, + "cloid": "0x00000000000000000000000387000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.5", + "sz": "0.0083", + "side": "B", + "time": 1762185654127, + "startPosition": "-1750.1058", + "dir": "Close Short", + "closedPnl": "4.374764", + "hash": "0x586acfda894ab9bf59e4042ec4668602086e00c0244dd891fc337b2d484e93a9", + "oid": 221328036244, + "crossed": true, + "fee": "0.006246", + "tid": 253042420203249, + "cloid": "0x00000000000000000000000387000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.6", + "sz": "2.7546", + "side": "B", + "time": 1762185654127, + "startPosition": "-1750.0975", + "dir": "Close Short", + "closedPnl": "1451.619108", + "hash": "0x586acfda894ab9bf59e4042ec4668602086e00c0244dd891fc337b2d484e93a9", + "oid": 221328036244, + "crossed": true, + "fee": "2.07299", + "tid": 1037944123992817, + "cloid": "0x00000000000000000000000387000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "13.62", + "side": "B", + "time": 1762185654720, + "startPosition": "-229547.63", + "dir": "Close Short", + "closedPnl": "457.527126", + "hash": "0xf1c7be7456b8bd63f341042ec4668d020bfa0059f1bbdc36959069c715bc974e", + "oid": 221328049697, + "crossed": true, + "fee": "0.475422", + "tid": 761602076647852, + "cloid": "0x00000000000000000000000388000248", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "46.47", + "side": "B", + "time": 1762185654720, + "startPosition": "-229534.01", + "dir": "Close Short", + "closedPnl": "1561.034181", + "hash": "0xf1c7be7456b8bd63f341042ec4668d020bfa0059f1bbdc36959069c715bc974e", + "oid": 221328049697, + "crossed": true, + "fee": "1.622091", + "tid": 1021418356332141, + "cloid": "0x00000000000000000000000388000248", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.27", + "sz": "60.07", + "side": "B", + "time": 1762185656675, + "startPosition": "-229487.54", + "dir": "Close Short", + "closedPnl": "2014.885961", + "hash": "0x28987ff0ea01ac0f2a12042ec466a60205ba00d68504cae1cc612b43a90585f9", + "oid": 221328085926, + "crossed": true, + "fee": "2.097446", + "tid": 847796097952211, + "cloid": "0x00000000000000000000000388000249", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.7", + "sz": "2.7885", + "side": "B", + "time": 1762185657773, + "startPosition": "-1747.3429", + "dir": "Close Short", + "closedPnl": "1469.20488", + "hash": "0x8ee8232a6566cc069061042ec466b502065500100069ead832b0ce7d246aa5f1", + "oid": 221328105177, + "crossed": true, + "fee": "2.09856", + "tid": 544833245276160, + "cloid": "0x00000000000000000000000387000260", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.29", + "sz": "46.1", + "side": "B", + "time": 1762185658816, + "startPosition": "-229427.47", + "dir": "Close Short", + "closedPnl": "1545.37803", + "hash": "0xe3ff9e35333c8592e579042ec466bf020c88001ace3fa46487c84987f2305f7d", + "oid": 221328126825, + "crossed": true, + "fee": "1.609853", + "tid": 60374014212723, + "cloid": "0x00000000000000000000000388000250", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.29", + "sz": "13.97", + "side": "B", + "time": 1762185658816, + "startPosition": "-229381.37", + "dir": "Close Short", + "closedPnl": "468.306531", + "hash": "0xe3ff9e35333c8592e579042ec466bf020c88001ace3fa46487c84987f2305f7d", + "oid": 221328126825, + "crossed": true, + "fee": "0.487844", + "tid": 1102774945524327, + "cloid": "0x00000000000000000000000388000250", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.8", + "sz": "2.7879", + "side": "B", + "time": 1762185659907, + "startPosition": "-1744.5544", + "dir": "Close Short", + "closedPnl": "1468.609962", + "hash": "0x9d4aa482e66794fc9ec4042ec466ca020bbc0068816ab3ce41134fd5a56b6ee7", + "oid": 221328141555, + "crossed": true, + "fee": "2.098167", + "tid": 1106066843293541, + "cloid": "0x00000000000000000000000387000261", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "131839.0", + "side": "B", + "time": 1762185660557, + "startPosition": "-1185427321.0", + "dir": "Close Short", + "closedPnl": "231.509284", + "hash": "0xc65f5a4b7c4b0b7fc7d9042ec466d20208a20031174e2a516a28059e3b4ee56a", + "oid": 221328151873, + "crossed": true, + "fee": "0.105069", + "tid": 476114496484661, + "cloid": "0x00000000000000000000000385000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "3.59", + "side": "B", + "time": 1762185660802, + "startPosition": "-229367.4", + "dir": "Close Short", + "closedPnl": "120.201457", + "hash": "0x25f7a1fff5df82e92771042ec466d502115400e590d2a1bbc9c04d52b4d35cd3", + "oid": 221328157803, + "crossed": true, + "fee": "0.125396", + "tid": 234366629153664, + "cloid": "0x00000000000000000000000388000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "5.97", + "side": "B", + "time": 1762185660802, + "startPosition": "-229363.81", + "dir": "Close Short", + "closedPnl": "199.889331", + "hash": "0x25f7a1fff5df82e92771042ec466d502115400e590d2a1bbc9c04d52b4d35cd3", + "oid": 221328157803, + "crossed": true, + "fee": "0.208527", + "tid": 383334133920078, + "cloid": "0x00000000000000000000000388000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.34", + "sz": "6.01", + "side": "B", + "time": 1762185660802, + "startPosition": "-229357.84", + "dir": "Close Short", + "closedPnl": "201.168523", + "hash": "0x25f7a1fff5df82e92771042ec466d502115400e590d2a1bbc9c04d52b4d35cd3", + "oid": 221328157803, + "crossed": true, + "fee": "0.209937", + "tid": 945235393416961, + "cloid": "0x00000000000000000000000388000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.34", + "sz": "7.88", + "side": "B", + "time": 1762185660802, + "startPosition": "-229351.83", + "dir": "Close Short", + "closedPnl": "263.761724", + "hash": "0x25f7a1fff5df82e92771042ec466d502115400e590d2a1bbc9c04d52b4d35cd3", + "oid": 221328157803, + "crossed": true, + "fee": "0.275259", + "tid": 379495959641773, + "cloid": "0x00000000000000000000000388000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "6.01", + "side": "B", + "time": 1762185660802, + "startPosition": "-229343.95", + "dir": "Close Short", + "closedPnl": "201.108423", + "hash": "0x25f7a1fff5df82e92771042ec466d502115400e590d2a1bbc9c04d52b4d35cd3", + "oid": 221328157803, + "crossed": true, + "fee": "0.20995", + "tid": 880254176855383, + "cloid": "0x00000000000000000000000388000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.36", + "sz": "6.01", + "side": "B", + "time": 1762185660802, + "startPosition": "-229337.94", + "dir": "Close Short", + "closedPnl": "201.048323", + "hash": "0x25f7a1fff5df82e92771042ec466d502115400e590d2a1bbc9c04d52b4d35cd3", + "oid": 221328157803, + "crossed": true, + "fee": "0.209962", + "tid": 812518572261740, + "cloid": "0x00000000000000000000000388000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.36", + "sz": "0.18", + "side": "B", + "time": 1762185660802, + "startPosition": "-229331.93", + "dir": "Close Short", + "closedPnl": "6.021414", + "hash": "0x25f7a1fff5df82e92771042ec466d502115400e590d2a1bbc9c04d52b4d35cd3", + "oid": 221328157803, + "crossed": true, + "fee": "0.006288", + "tid": 16528322106481, + "cloid": "0x00000000000000000000000388000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.37", + "sz": "10.99", + "side": "B", + "time": 1762185660802, + "startPosition": "-229331.75", + "dir": "Close Short", + "closedPnl": "367.530877", + "hash": "0x25f7a1fff5df82e92771042ec466d502115400e590d2a1bbc9c04d52b4d35cd3", + "oid": 221328157803, + "crossed": true, + "fee": "0.383965", + "tid": 843008736064333, + "cloid": "0x00000000000000000000000388000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.37", + "sz": "13.42", + "side": "B", + "time": 1762185660802, + "startPosition": "-229320.76", + "dir": "Close Short", + "closedPnl": "448.795666", + "hash": "0x25f7a1fff5df82e92771042ec466d502115400e590d2a1bbc9c04d52b4d35cd3", + "oid": 221328157803, + "crossed": true, + "fee": "0.468863", + "tid": 523119439717455, + "cloid": "0x00000000000000000000000388000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.3", + "sz": "0.0007", + "side": "B", + "time": 1762185661844, + "startPosition": "-1741.7665", + "dir": "Close Short", + "closedPnl": "0.367696", + "hash": "0x3a8815bb3febeac03c01042ec466e202029c00a0daef0992de50c10dfeefc4aa", + "oid": 221328179123, + "crossed": true, + "fee": "0.000527", + "tid": 835171654123571, + "cloid": "0x00000000000000000000000387000262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.3", + "sz": "0.056", + "side": "B", + "time": 1762185661844, + "startPosition": "-1741.7658", + "dir": "Close Short", + "closedPnl": "29.41568", + "hash": "0x3a8815bb3febeac03c01042ec466e202029c00a0daef0992de50c10dfeefc4aa", + "oid": 221328179123, + "crossed": true, + "fee": "0.042163", + "tid": 200744620299163, + "cloid": "0x00000000000000000000000387000262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.3", + "sz": "0.0598", + "side": "B", + "time": 1762185661844, + "startPosition": "-1741.7098", + "dir": "Close Short", + "closedPnl": "31.411744", + "hash": "0x3a8815bb3febeac03c01042ec466e202029c00a0daef0992de50c10dfeefc4aa", + "oid": 221328179123, + "crossed": true, + "fee": "0.045024", + "tid": 625105643691697, + "cloid": "0x00000000000000000000000387000262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.3", + "sz": "0.0581", + "side": "B", + "time": 1762185661844, + "startPosition": "-1741.65", + "dir": "Close Short", + "closedPnl": "30.518768", + "hash": "0x3a8815bb3febeac03c01042ec466e202029c00a0daef0992de50c10dfeefc4aa", + "oid": 221328179123, + "crossed": true, + "fee": "0.043744", + "tid": 390015939044382, + "cloid": "0x00000000000000000000000387000262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.4", + "sz": "2.6124", + "side": "B", + "time": 1762185661844, + "startPosition": "-1741.5919", + "dir": "Close Short", + "closedPnl": "1371.980232", + "hash": "0x3a8815bb3febeac03c01042ec466e202029c00a0daef0992de50c10dfeefc4aa", + "oid": 221328179123, + "crossed": true, + "fee": "1.966964", + "tid": 308909410682423, + "cloid": "0x00000000000000000000000387000262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131544.0", + "side": "B", + "time": 1762185662334, + "startPosition": "-1185295482.0", + "dir": "Close Short", + "closedPnl": "230.596632", + "hash": "0xdd40d3fbdeefeb06deba042ec466e702213300e179e309d881097f4e9de3c4f1", + "oid": 221328191045, + "crossed": true, + "fee": "0.104916", + "tid": 96283482747739, + "cloid": "0x00000000000000000000000385000219", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "28.77", + "side": "B", + "time": 1762185663278, + "startPosition": "-229307.34", + "dir": "Close Short", + "closedPnl": "961.847271", + "hash": "0x99b378511147c57c9b2d042ec466f1020f970036ac4ae44e3d7c23a3d04b9f67", + "oid": 221328204628, + "crossed": true, + "fee": "1.005218", + "tid": 170727234351134, + "cloid": "0x00000000000000000000000388000252", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "31.26", + "side": "B", + "time": 1762185663278, + "startPosition": "-229278.57", + "dir": "Close Short", + "closedPnl": "1045.093698", + "hash": "0x99b378511147c57c9b2d042ec466f1020f970036ac4ae44e3d7c23a3d04b9f67", + "oid": 221328204628, + "crossed": true, + "fee": "1.092218", + "tid": 838962299018128, + "cloid": "0x00000000000000000000000388000252", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.1", + "sz": "2.788", + "side": "B", + "time": 1762185664601, + "startPosition": "-1738.9795", + "dir": "Close Short", + "closedPnl": "1467.82624", + "hash": "0x16baaa299c837eb61834042ec466fd02012f000f37869d88ba83557c5b8758a0", + "oid": 221328228473, + "crossed": true, + "fee": "2.098418", + "tid": 710539429298647, + "cloid": "0x00000000000000000000000387000263", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.3", + "sz": "60.06", + "side": "B", + "time": 1762185665992, + "startPosition": "-229247.31", + "dir": "Close Short", + "closedPnl": "2012.748738", + "hash": "0xdcbfc55ba9f384f9de39042ec4670a022e1d004144f6a3cb808870ae68f75ee4", + "oid": 221328255819, + "crossed": true, + "fee": "2.097475", + "tid": 624908395486381, + "cloid": "0x00000000000000000000000388000253", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "60.1", + "side": "B", + "time": 1762185668596, + "startPosition": "-229187.25", + "dir": "Close Short", + "closedPnl": "2017.09423", + "hash": "0xacef2cb1936f4344ae68042ec4672a02052c00972e62621650b7d80452631d2f", + "oid": 221328295469, + "crossed": true, + "fee": "2.098241", + "tid": 21997532456588, + "cloid": "0x00000000000000000000000388000254", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.5", + "sz": "2.7873", + "side": "B", + "time": 1762185668596, + "startPosition": "-1736.1915", + "dir": "Close Short", + "closedPnl": "1466.342784", + "hash": "0xdde3f4542cc6d22adf5d042ec4672a0205320039c7c9f0fc81ac9fa6ebcaac15", + "oid": 221328295472, + "crossed": true, + "fee": "2.098126", + "tid": 192566056370490, + "cloid": "0x00000000000000000000000387000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131822.0", + "side": "B", + "time": 1762185669997, + "startPosition": "-1185163938.0", + "dir": "Close Short", + "closedPnl": "232.270364", + "hash": "0x7240f25898dfe81173ba042ec4673b020686003e33d306e316099dab57d3c1fc", + "oid": 221328340574, + "crossed": true, + "fee": "0.104889", + "tid": 455517718392843, + "cloid": "0x00000000000000000000000385000221", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26673", + "sz": "3756.5", + "side": "B", + "time": 1762185669997, + "startPosition": "-3996795.5", + "dir": "Close Short", + "closedPnl": "2007.99951", + "hash": "0x0161eb4f64932d9902db042ec4673b0206a20034ff964c6ba52a96a223970783", + "oid": 221328144066, + "crossed": false, + "fee": "0.028055", + "tid": 447540472495514, + "cloid": "0x00000000000000000000000384000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.9", + "sz": "2.7889", + "side": "B", + "time": 1762185671032, + "startPosition": "-1733.4042", + "dir": "Close Short", + "closedPnl": "1471.646752", + "hash": "0xfe3caf7079891ee5ffb6042ec46747020c8d0056148c3db8a2055ac3388cf8d0", + "oid": 221328355647, + "crossed": true, + "fee": "2.098393", + "tid": 345613242136745, + "cloid": "0x00000000000000000000000387000265", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.12", + "sz": "39.44", + "side": "B", + "time": 1762185671032, + "startPosition": "-229127.15", + "dir": "Close Short", + "closedPnl": "1328.824312", + "hash": "0xa9956a299253930bab0f042ec46747020ca2000f2d56b1dd4d5e157c51576cf6", + "oid": 221328355662, + "crossed": true, + "fee": "1.375872", + "tid": 44290918366276, + "cloid": "0x00000000000000000000000388000255", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.12", + "sz": "20.67", + "side": "B", + "time": 1762185671032, + "startPosition": "-229087.71", + "dir": "Close Short", + "closedPnl": "696.419841", + "hash": "0xa9956a299253930bab0f042ec46747020ca2000f2d56b1dd4d5e157c51576cf6", + "oid": 221328355662, + "crossed": true, + "fee": "0.721077", + "tid": 1112845684158332, + "cloid": "0x00000000000000000000000388000255", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26661", + "sz": "2464.2", + "side": "A", + "time": 1762185671376, + "startPosition": "4014391.9960630001", + "dir": "Sell", + "closedPnl": "-1318.55352715", + "hash": "0x9b85f048ddb13e7f9cff042ec4674c0213ef002e78b45d513f4e9b9b9cb5186a", + "oid": 221328365362, + "crossed": true, + "fee": "0.1839545", + "tid": 331748612252024, + "cloid": "0x10000000000000000000000475000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "131926.0", + "side": "B", + "time": 1762185671812, + "startPosition": "-1185032116.0", + "dir": "Close Short", + "closedPnl": "232.717464", + "hash": "0xd46e0372e08fc8f7d5e7042ec4675202010600587b82e7c97836aec59f83a2e2", + "oid": 221328372859, + "crossed": true, + "fee": "0.104916", + "tid": 116962245068058, + "cloid": "0x00000000000000000000000385000222", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26644", + "sz": "273.7", + "side": "A", + "time": 1762185672999, + "startPosition": "4011927.7960629999", + "dir": "Sell", + "closedPnl": "-146.49896808", + "hash": "0xce216d20152fd386cf9b042ec4675f0211df0005b022f25871ea1872d423ad71", + "oid": 221328365362, + "crossed": false, + "fee": "0.00510472", + "tid": 77488070670024, + "cloid": "0x10000000000000000000000475000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26644", + "sz": "1018.6", + "side": "A", + "time": 1762185672999, + "startPosition": "4011654.0960630002", + "dir": "Sell", + "closedPnl": "-545.20953192", + "hash": "0x80f4e3bb2eb11602826e042ec4675f0211e000a0c9b434d424bd8f0dedb4efed", + "oid": 221328365362, + "crossed": false, + "fee": "0.0189977", + "tid": 362608982164020, + "cloid": "0x10000000000000000000000475000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.9", + "sz": "2.7887", + "side": "B", + "time": 1762185673614, + "startPosition": "-1730.6153", + "dir": "Close Short", + "closedPnl": "1471.541216", + "hash": "0xe9b4d7d2d3e78961eb2e042ec4676602044800b86eeaa8338d7d832592eb634c", + "oid": 221328396882, + "crossed": true, + "fee": "2.098242", + "tid": 439958790056774, + "cloid": "0x00000000000000000000000387000266", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.09", + "sz": "60.14", + "side": "B", + "time": 1762185673827, + "startPosition": "-229067.04", + "dir": "Close Short", + "closedPnl": "2028.059122", + "hash": "0xa30e0fe925e91efaa487042ec4676902091900cec0ec3dcc46d6bb3be4ecf8e5", + "oid": 221328404911, + "crossed": true, + "fee": "2.097617", + "tid": 624493406923353, + "cloid": "0x00000000000000000000000388000256", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "102618.0", + "side": "B", + "time": 1762185674215, + "startPosition": "-1184900190.0", + "dir": "Close Short", + "closedPnl": "180.710298", + "hash": "0x2ca01cccd7e7805b2e19042ec4676e01600034b272ea9f2dd068c81f96eb5a45", + "oid": 221328404900, + "crossed": false, + "fee": "0.010889", + "tid": 798769177168000, + "cloid": "0x00000000000000000000000385000223", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "29408.0", + "side": "B", + "time": 1762185674215, + "startPosition": "-1184797572.0", + "dir": "Close Short", + "closedPnl": "51.787488", + "hash": "0xbbc115c3a3aac5e2bd3a042ec4676e017c002da93eade4b45f89c11662ae9fcd", + "oid": 221328404900, + "crossed": false, + "fee": "0.00312", + "tid": 573784726053269, + "cloid": "0x00000000000000000000000385000223", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.1", + "sz": "0.5526", + "side": "B", + "time": 1762185676304, + "startPosition": "-1727.8266", + "dir": "Close Short", + "closedPnl": "291.485448", + "hash": "0x2eb6e5fb8d2342073030042ec4678b02078300e1282660d9d27f914e4c271bf1", + "oid": 221328442360, + "crossed": true, + "fee": "0.415804", + "tid": 802951432364683, + "cloid": "0x00000000000000000000000387000267", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.1", + "sz": "1.6184", + "side": "B", + "time": 1762185676304, + "startPosition": "-1727.274", + "dir": "Close Short", + "closedPnl": "853.673632", + "hash": "0x2eb6e5fb8d2342073030042ec4678b02078300e1282660d9d27f914e4c271bf1", + "oid": 221328442360, + "crossed": true, + "fee": "1.217766", + "tid": 563288524385196, + "cloid": "0x00000000000000000000000387000267", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.6173", + "side": "B", + "time": 1762185676304, + "startPosition": "-1725.6556", + "dir": "Close Short", + "closedPnl": "325.551674", + "hash": "0x2eb6e5fb8d2342073030042ec4678b02078300e1282660d9d27f914e4c271bf1", + "oid": 221328442360, + "crossed": true, + "fee": "0.4645", + "tid": 35107138434292, + "cloid": "0x00000000000000000000000387000267", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.1", + "sz": "60.12", + "side": "B", + "time": 1762185676304, + "startPosition": "-229006.9", + "dir": "Close Short", + "closedPnl": "2026.783476", + "hash": "0xc5529ad459ad55e4c6cc042ec4678b02078b00b9f4a074b6691b462718a12fcf", + "oid": 221328442365, + "crossed": true, + "fee": "2.097045", + "tid": 413999498734045, + "cloid": "0x00000000000000000000000388000257", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003793", + "sz": "131752.0", + "side": "B", + "time": 1762185677086, + "startPosition": "-1184768164.0", + "dir": "Close Short", + "closedPnl": "231.620016", + "hash": "0xb753d6aea76fb607b8cd042ec4679302069f00944262d4d95b1c820166638ff2", + "oid": 221328457097, + "crossed": true, + "fee": "0.104944", + "tid": 795121602348051, + "cloid": "0x00000000000000000000000385000224", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.11", + "sz": "60.13", + "side": "B", + "time": 1762185677997, + "startPosition": "-228946.78", + "dir": "Close Short", + "closedPnl": "2026.519299", + "hash": "0xcace49ea92be8fbccc48042ec4679d02046a00d02db1ae8e6e96f53d51b269a7", + "oid": 221328470080, + "crossed": true, + "fee": "2.09752", + "tid": 46275985437668, + "cloid": "0x00000000000000000000000388000258", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.0152", + "side": "B", + "time": 1762185678634, + "startPosition": "-1725.0383", + "dir": "Close Short", + "closedPnl": "8.016176", + "hash": "0xdaba53831400b710dc34042ec467a502061f0068af03d5e27e82fed5d30490fb", + "oid": 221328478169, + "crossed": true, + "fee": "0.011437", + "tid": 869601460472201, + "cloid": "0x00000000000000000000000387000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.0252", + "side": "B", + "time": 1762185678634, + "startPosition": "-1725.0231", + "dir": "Close Short", + "closedPnl": "13.289976", + "hash": "0xdaba53831400b710dc34042ec467a502061f0068af03d5e27e82fed5d30490fb", + "oid": 221328478169, + "crossed": true, + "fee": "0.018962", + "tid": 922828926085394, + "cloid": "0x00000000000000000000000387000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.0252", + "side": "B", + "time": 1762185678634, + "startPosition": "-1724.9979", + "dir": "Close Short", + "closedPnl": "13.289976", + "hash": "0xdaba53831400b710dc34042ec467a502061f0068af03d5e27e82fed5d30490fb", + "oid": 221328478169, + "crossed": true, + "fee": "0.018962", + "tid": 587069615010718, + "cloid": "0x00000000000000000000000387000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.0252", + "side": "B", + "time": 1762185678634, + "startPosition": "-1724.9727", + "dir": "Close Short", + "closedPnl": "13.289976", + "hash": "0xdaba53831400b710dc34042ec467a502061f0068af03d5e27e82fed5d30490fb", + "oid": 221328478169, + "crossed": true, + "fee": "0.018962", + "tid": 502249402970079, + "cloid": "0x00000000000000000000000387000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.0252", + "side": "B", + "time": 1762185678634, + "startPosition": "-1724.9475", + "dir": "Close Short", + "closedPnl": "13.289976", + "hash": "0xdaba53831400b710dc34042ec467a502061f0068af03d5e27e82fed5d30490fb", + "oid": 221328478169, + "crossed": true, + "fee": "0.018962", + "tid": 1082385539835456, + "cloid": "0x00000000000000000000000387000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.0252", + "side": "B", + "time": 1762185678634, + "startPosition": "-1724.9223", + "dir": "Close Short", + "closedPnl": "13.289976", + "hash": "0xdaba53831400b710dc34042ec467a502061f0068af03d5e27e82fed5d30490fb", + "oid": 221328478169, + "crossed": true, + "fee": "0.018962", + "tid": 55414272382202, + "cloid": "0x00000000000000000000000387000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "2.25", + "side": "B", + "time": 1762185678634, + "startPosition": "-1724.8971", + "dir": "Close Short", + "closedPnl": "1186.605", + "hash": "0xdaba53831400b710dc34042ec467a502061f0068af03d5e27e82fed5d30490fb", + "oid": 221328478169, + "crossed": true, + "fee": "1.693061", + "tid": 899941740363026, + "cloid": "0x00000000000000000000000387000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.3977", + "side": "B", + "time": 1762185678634, + "startPosition": "-1722.6471", + "dir": "Close Short", + "closedPnl": "209.739026", + "hash": "0xdaba53831400b710dc34042ec467a502061f0068af03d5e27e82fed5d30490fb", + "oid": 221328478169, + "crossed": true, + "fee": "0.299258", + "tid": 836738373571861, + "cloid": "0x00000000000000000000000387000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003792", + "sz": "131744.0", + "side": "B", + "time": 1762185679560, + "startPosition": "-1184636412.0", + "dir": "Close Short", + "closedPnl": "231.737696", + "hash": "0x075d2f5b7509fba708d6042ec467af0204fd0041100d1a79ab25daae340dd591", + "oid": 221328490295, + "crossed": true, + "fee": "0.10491", + "tid": 642404480497301, + "cloid": "0x00000000000000000000000385000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.18", + "side": "B", + "time": 1762185679757, + "startPosition": "-228886.65", + "dir": "Close Short", + "closedPnl": "6.044814", + "hash": "0xf3f4a3ead54b8f9af56e042ec467b3020e8d00d0704eae6d97bd4f3d944f6985", + "oid": 221328502753, + "crossed": true, + "fee": "0.006283", + "tid": 1061924188308052, + "cloid": "0x00000000000000000000000388000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "6.02", + "side": "B", + "time": 1762185679757, + "startPosition": "-228886.47", + "dir": "Close Short", + "closedPnl": "202.105246", + "hash": "0xf3f4a3ead54b8f9af56e042ec467b3020e8d00d0704eae6d97bd4f3d944f6985", + "oid": 221328502753, + "crossed": true, + "fee": "0.21016", + "tid": 1020765633592997, + "cloid": "0x00000000000000000000000388000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "6.02", + "side": "B", + "time": 1762185679757, + "startPosition": "-228880.45", + "dir": "Close Short", + "closedPnl": "202.045046", + "hash": "0xf3f4a3ead54b8f9af56e042ec467b3020e8d00d0704eae6d97bd4f3d944f6985", + "oid": 221328502753, + "crossed": true, + "fee": "0.210173", + "tid": 332994882090853, + "cloid": "0x00000000000000000000000388000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.26", + "sz": "6.01", + "side": "B", + "time": 1762185679757, + "startPosition": "-228874.43", + "dir": "Close Short", + "closedPnl": "201.649323", + "hash": "0xf3f4a3ead54b8f9af56e042ec467b3020e8d00d0704eae6d97bd4f3d944f6985", + "oid": 221328502753, + "crossed": true, + "fee": "0.209836", + "tid": 194390113635487, + "cloid": "0x00000000000000000000000388000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.27", + "sz": "6.02", + "side": "B", + "time": 1762185679757, + "startPosition": "-228868.42", + "dir": "Close Short", + "closedPnl": "201.924646", + "hash": "0xf3f4a3ead54b8f9af56e042ec467b3020e8d00d0704eae6d97bd4f3d944f6985", + "oid": 221328502753, + "crossed": true, + "fee": "0.210198", + "tid": 562283837143505, + "cloid": "0x00000000000000000000000388000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.27", + "sz": "0.18", + "side": "B", + "time": 1762185679757, + "startPosition": "-228862.4", + "dir": "Close Short", + "closedPnl": "6.037614", + "hash": "0xf3f4a3ead54b8f9af56e042ec467b3020e8d00d0704eae6d97bd4f3d944f6985", + "oid": 221328502753, + "crossed": true, + "fee": "0.006285", + "tid": 593874302358471, + "cloid": "0x00000000000000000000000388000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.27", + "sz": "35.66", + "side": "B", + "time": 1762185679757, + "startPosition": "-228862.22", + "dir": "Close Short", + "closedPnl": "1196.118418", + "hash": "0xf3f4a3ead54b8f9af56e042ec467b3020e8d00d0704eae6d97bd4f3d944f6985", + "oid": 221328502753, + "crossed": true, + "fee": "1.245129", + "tid": 807079177472399, + "cloid": "0x00000000000000000000000388000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.3", + "sz": "2.7868", + "side": "B", + "time": 1762185680615, + "startPosition": "-1722.2494", + "dir": "Close Short", + "closedPnl": "1463.850304", + "hash": "0x8f9bb04c24cb3d779115042ec467bb02081d0031bfce5c4933645b9ee3cf1762", + "oid": 221328524740, + "crossed": true, + "fee": "2.098217", + "tid": 915532285162338, + "cloid": "0x00000000000000000000000387000269", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131471.0", + "side": "B", + "time": 1762185680931, + "startPosition": "-1184504668.0", + "dir": "Close Short", + "closedPnl": "230.468663", + "hash": "0xc2ea3d22c71d9a0cc463042ec467bf020d7600086210b8de66b2e875861173f7", + "oid": 221328534620, + "crossed": true, + "fee": "0.104858", + "tid": 672769226281025, + "cloid": "0x00000000000000000000000385000226", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "60.07", + "side": "B", + "time": 1762185681810, + "startPosition": "-228826.56", + "dir": "Close Short", + "closedPnl": "2011.281761", + "hash": "0x7e27f974f98cab827fa1042ec467cb020af9005a948fca5421f0a4c7b880856d", + "oid": 221328545508, + "crossed": true, + "fee": "2.098203", + "tid": 564422176435903, + "cloid": "0x00000000000000000000000388000260", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.4", + "sz": "2.7867", + "side": "B", + "time": 1762185682699, + "startPosition": "-1719.4626", + "dir": "Close Short", + "closedPnl": "1463.519106", + "hash": "0x9f3b974af574f6b9a0b5042ec467d5020c5e00309078158b4304429db478d0a4", + "oid": 221328558531, + "crossed": true, + "fee": "2.098201", + "tid": 31727090182980, + "cloid": "0x00000000000000000000000387000270", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "131367.0", + "side": "B", + "time": 1762185682971, + "startPosition": "-1184373197.0", + "dir": "Close Short", + "closedPnl": "229.104048", + "hash": "0x741e6a8e9c1ba55b7598042ec467d80213090074371ec42d17e715e15b1f7f46", + "oid": 221328564824, + "crossed": true, + "fee": "0.105023", + "tid": 288147074727192, + "cloid": "0x00000000000000000000000385000227", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "12.0", + "side": "B", + "time": 1762185683659, + "startPosition": "-228766.49", + "dir": "Close Short", + "closedPnl": "401.7876", + "hash": "0x95b8c9d29f8aa3fd9732042ec467e002073000b83a8dc2cf398175255e8e7de8", + "oid": 221328569863, + "crossed": true, + "fee": "0.419151", + "tid": 812495002152661, + "cloid": "0x00000000000000000000000388000261", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "36.08", + "side": "B", + "time": 1762185683659, + "startPosition": "-228754.49", + "dir": "Close Short", + "closedPnl": "1208.041384", + "hash": "0x95b8c9d29f8aa3fd9732042ec467e002073000b83a8dc2cf398175255e8e7de8", + "oid": 221328569863, + "crossed": true, + "fee": "1.260249", + "tid": 719532494568305, + "cloid": "0x00000000000000000000000388000261", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "11.98", + "side": "B", + "time": 1762185683659, + "startPosition": "-228718.41", + "dir": "Close Short", + "closedPnl": "401.117954", + "hash": "0x95b8c9d29f8aa3fd9732042ec467e002073000b83a8dc2cf398175255e8e7de8", + "oid": 221328569863, + "crossed": true, + "fee": "0.418453", + "tid": 546561907348284, + "cloid": "0x00000000000000000000000388000261", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003806", + "sz": "131379.0", + "side": "B", + "time": 1762185684704, + "startPosition": "-1184241830.0", + "dir": "Close Short", + "closedPnl": "229.256355", + "hash": "0xa15a3333ef02ef53a2d3042ec467ee02062200198a060e254522de86ae06c93e", + "oid": 221328589162, + "crossed": true, + "fee": "0.105005", + "tid": 186220669631998, + "cloid": "0x00000000000000000000000385000228", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.9", + "sz": "2.3064", + "side": "B", + "time": 1762185685126, + "startPosition": "-1716.6759", + "dir": "Close Short", + "closedPnl": "1210.121952", + "hash": "0x25d1431a956748d9274a042ec467f3021e9f0000306a67abc999ee6d546b22c3", + "oid": 221328600574, + "crossed": true, + "fee": "1.736809", + "tid": 41187510448794, + "cloid": "0x00000000000000000000000387000271", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.0", + "sz": "0.4803", + "side": "B", + "time": 1762185685126, + "startPosition": "-1714.3695", + "dir": "Close Short", + "closedPnl": "251.955774", + "hash": "0x25d1431a956748d9274a042ec467f3021e9f0000306a67abc999ee6d546b22c3", + "oid": 221328600574, + "crossed": true, + "fee": "0.361694", + "tid": 394688893943184, + "cloid": "0x00000000000000000000000387000271", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "58.87", + "side": "B", + "time": 1762185686056, + "startPosition": "-228706.43", + "dir": "Close Short", + "closedPnl": "1966.393401", + "hash": "0xefc597e30d3d3a6bf13f042ec467fe020ead00c8a830593e938e4335cc311456", + "oid": 221328621386, + "crossed": true, + "fee": "2.057276", + "tid": 431433734059629, + "cloid": "0x00000000000000000000000388000262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "1.17", + "side": "B", + "time": 1762185686056, + "startPosition": "-228647.56", + "dir": "Close Short", + "closedPnl": "39.080691", + "hash": "0xefc597e30d3d3a6bf13f042ec467fe020ead00c8a830593e938e4335cc311456", + "oid": 221328621386, + "crossed": true, + "fee": "0.040886", + "tid": 306545119602179, + "cloid": "0x00000000000000000000000388000262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131298.0", + "side": "B", + "time": 1762185686863, + "startPosition": "-1184110451.0", + "dir": "Close Short", + "closedPnl": "228.589818", + "hash": "0xf759ec80ce6b3b31f8d3042ec46808020b860066696e5a049b2297d38d6f151c", + "oid": 221328640774, + "crossed": true, + "fee": "0.105051", + "tid": 336468948010324, + "cloid": "0x00000000000000000000000385000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.0", + "sz": "0.4052", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.8892", + "dir": "Close Short", + "closedPnl": "211.749416", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.30531", + "tid": 869280037374278, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.2", + "sz": "0.0623", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.484", + "dir": "Close Short", + "closedPnl": "32.544274", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.046944", + "tid": 1022079914280811, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.3", + "sz": "0.0042", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.4217", + "dir": "Close Short", + "closedPnl": "2.193576", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.003164", + "tid": 355334509131606, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.4", + "sz": "0.0049", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.4175", + "dir": "Close Short", + "closedPnl": "2.558682", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.003692", + "tid": 1024914256584570, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.4", + "sz": "0.0083", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.4126", + "dir": "Close Short", + "closedPnl": "4.334094", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.006254", + "tid": 463022470650987, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.5", + "sz": "0.0042", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.4043", + "dir": "Close Short", + "closedPnl": "2.192736", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.003165", + "tid": 1069600530666072, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.6", + "sz": "0.0623", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.4001", + "dir": "Close Short", + "closedPnl": "32.519354", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.046949", + "tid": 203943024575276, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.6", + "sz": "0.0055", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.3378", + "dir": "Close Short", + "closedPnl": "2.87089", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.004144", + "tid": 969093943453295, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.6", + "sz": "0.1393", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.3323", + "dir": "Close Short", + "closedPnl": "72.711814", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.104977", + "tid": 553511733445600, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.0042", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.193", + "dir": "Close Short", + "closedPnl": "2.191896", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.003165", + "tid": 677036665568280, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.8", + "sz": "2.0844", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.1888", + "dir": "Close Short", + "closedPnl": "1087.598232", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "1.570903", + "tid": 1111282299497855, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "1.88", + "side": "B", + "time": 1762185687850, + "startPosition": "-228646.39", + "dir": "Close Short", + "closedPnl": "62.627124", + "hash": "0xd27570295284fa32d3ef042ec46815020417000eed881904763e1b7c1188d41d", + "oid": 221328659779, + "crossed": true, + "fee": "0.065734", + "tid": 300583019865636, + "cloid": "0x00000000000000000000000388000263", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "58.12", + "side": "B", + "time": 1762185687850, + "startPosition": "-228644.51", + "dir": "Close Short", + "closedPnl": "1936.110876", + "hash": "0xd27570295284fa32d3ef042ec46815020417000eed881904763e1b7c1188d41d", + "oid": 221328659779, + "crossed": true, + "fee": "2.032165", + "tid": 950921450000510, + "cloid": "0x00000000000000000000000388000263", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131126.0", + "side": "B", + "time": 1762185689520, + "startPosition": "-1183979153.0", + "dir": "Close Short", + "closedPnl": "228.290366", + "hash": "0x07f7b0e7257ded6e0971042ec4682602100900ccc0710c40abc05c39e471c758", + "oid": 221328685297, + "crossed": false, + "fee": "0.013988", + "tid": 15023620008681, + "cloid": "0x00000000000000000000000385000230", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.7", + "sz": "2.7845", + "side": "B", + "time": 1762185689588, + "startPosition": "-1711.1044", + "dir": "Close Short", + "closedPnl": "1450.39036", + "hash": "0xa753166ee7d3128da8cc042ec4682702075a005482d6315f4b1bc1c1a6d6ec78", + "oid": 221328689309, + "crossed": true, + "fee": "2.099059", + "tid": 916215022819692, + "cloid": "0x00000000000000000000000387000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "4.28", + "side": "B", + "time": 1762185690203, + "startPosition": "-228586.39", + "dir": "Close Short", + "closedPnl": "142.405444", + "hash": "0xc2a62e2800a6242cc41f042ec4682d020cd1000d9ba942fe666ed97abfa9fe17", + "oid": 221328696212, + "crossed": true, + "fee": "0.149686", + "tid": 428667624351336, + "cloid": "0x00000000000000000000000388000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "0.18", + "side": "B", + "time": 1762185690203, + "startPosition": "-228582.11", + "dir": "Close Short", + "closedPnl": "5.987214", + "hash": "0xc2a62e2800a6242cc41f042ec4682d020cd1000d9ba942fe666ed97abfa9fe17", + "oid": 221328696212, + "crossed": true, + "fee": "0.006295", + "tid": 382494557782833, + "cloid": "0x00000000000000000000000388000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "0.41", + "side": "B", + "time": 1762185690203, + "startPosition": "-228581.93", + "dir": "Close Short", + "closedPnl": "13.633443", + "hash": "0xc2a62e2800a6242cc41f042ec4682d020cd1000d9ba942fe666ed97abfa9fe17", + "oid": 221328696212, + "crossed": true, + "fee": "0.01434", + "tid": 614509018741577, + "cloid": "0x00000000000000000000000388000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "6.64", + "side": "B", + "time": 1762185690203, + "startPosition": "-228581.52", + "dir": "Close Short", + "closedPnl": "220.795272", + "hash": "0xc2a62e2800a6242cc41f042ec4682d020cd1000d9ba942fe666ed97abfa9fe17", + "oid": 221328696212, + "crossed": true, + "fee": "0.232251", + "tid": 382423761142601, + "cloid": "0x00000000000000000000000388000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "18.01", + "side": "B", + "time": 1762185690203, + "startPosition": "-228574.88", + "dir": "Close Short", + "closedPnl": "598.873923", + "hash": "0xc2a62e2800a6242cc41f042ec4682d020cd1000d9ba942fe666ed97abfa9fe17", + "oid": 221328696212, + "crossed": true, + "fee": "0.629946", + "tid": 350393045231850, + "cloid": "0x00000000000000000000000388000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "18.01", + "side": "B", + "time": 1762185690203, + "startPosition": "-228556.87", + "dir": "Close Short", + "closedPnl": "598.693823", + "hash": "0xc2a62e2800a6242cc41f042ec4682d020cd1000d9ba942fe666ed97abfa9fe17", + "oid": 221328696212, + "crossed": true, + "fee": "0.629984", + "tid": 724893927871036, + "cloid": "0x00000000000000000000000388000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "5.97", + "side": "B", + "time": 1762185690203, + "startPosition": "-228538.86", + "dir": "Close Short", + "closedPnl": "198.337131", + "hash": "0xc2a62e2800a6242cc41f042ec4682d020cd1000d9ba942fe666ed97abfa9fe17", + "oid": 221328696212, + "crossed": true, + "fee": "0.208853", + "tid": 317217664705820, + "cloid": "0x00000000000000000000000388000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "6.02", + "side": "B", + "time": 1762185690203, + "startPosition": "-228532.89", + "dir": "Close Short", + "closedPnl": "199.998246", + "hash": "0xc2a62e2800a6242cc41f042ec4682d020cd1000d9ba942fe666ed97abfa9fe17", + "oid": 221328696212, + "crossed": true, + "fee": "0.210603", + "tid": 330511053610832, + "cloid": "0x00000000000000000000000388000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "0.46", + "side": "B", + "time": 1762185690203, + "startPosition": "-228526.87", + "dir": "Close Short", + "closedPnl": "15.282258", + "hash": "0xc2a62e2800a6242cc41f042ec4682d020cd1000d9ba942fe666ed97abfa9fe17", + "oid": 221328696212, + "crossed": true, + "fee": "0.016092", + "tid": 753438674435033, + "cloid": "0x00000000000000000000000388000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003812", + "sz": "131027.0", + "side": "B", + "time": 1762185691545, + "startPosition": "-1183848027.0", + "dir": "Close Short", + "closedPnl": "227.855953", + "hash": "0xe67b8ce63b4027c6e7f5042ec4683e0205f600cbd64346988a443838fa4401b1", + "oid": 221328720577, + "crossed": true, + "fee": "0.104889", + "tid": 438114009496417, + "cloid": "0x00000000000000000000000385000231", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.5", + "sz": "2.7837", + "side": "B", + "time": 1762185691813, + "startPosition": "-1708.3199", + "dir": "Close Short", + "closedPnl": "1450.530396", + "hash": "0x1c2ae6f04e3adc0f1da4042ec468420214e900d5e93dfae1bff392430d3eb5f9", + "oid": 221328728963, + "crossed": true, + "fee": "2.098339", + "tid": 1018571880779607, + "cloid": "0x00000000000000000000000387000274", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "12.0", + "side": "B", + "time": 1762185691979, + "startPosition": "-228526.41", + "dir": "Close Short", + "closedPnl": "399.3876", + "hash": "0xfe688ca78712083fffe2042ec4684402061d008d22152712a23137fa4615e22a", + "oid": 221328732103, + "crossed": true, + "fee": "0.419655", + "tid": 130345614543045, + "cloid": "0x00000000000000000000000388000265", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "12.0", + "side": "B", + "time": 1762185691979, + "startPosition": "-228514.41", + "dir": "Close Short", + "closedPnl": "399.3876", + "hash": "0xfe688ca78712083fffe2042ec4684402061d008d22152712a23137fa4615e22a", + "oid": 221328732103, + "crossed": true, + "fee": "0.419655", + "tid": 824504557841396, + "cloid": "0x00000000000000000000000388000265", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "36.0", + "side": "B", + "time": 1762185691979, + "startPosition": "-228502.41", + "dir": "Close Short", + "closedPnl": "1198.1628", + "hash": "0xfe688ca78712083fffe2042ec4684402061d008d22152712a23137fa4615e22a", + "oid": 221328732103, + "crossed": true, + "fee": "1.258966", + "tid": 997464911225752, + "cloid": "0x00000000000000000000000388000265", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131337.0", + "side": "B", + "time": 1762185693114, + "startPosition": "-1183717000.0", + "dir": "Close Short", + "closedPnl": "228.920391", + "hash": "0x2c31106bcdb1fe6f2daa042ec468540207c7005168b51d41cff9bbbe8cb5d859", + "oid": 221328766873, + "crossed": true, + "fee": "0.105027", + "tid": 314917337642365, + "cloid": "0x00000000000000000000000385000232", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.5", + "sz": "2.7861", + "side": "B", + "time": 1762185693847, + "startPosition": "-1705.5362", + "dir": "Close Short", + "closedPnl": "1460.139288", + "hash": "0x22ae2129a85c398c2427042ec4685f02058a000f435f585ec676cc7c67501376", + "oid": 221328775298, + "crossed": true, + "fee": "2.098393", + "tid": 779960154127157, + "cloid": "0x00000000000000000000000387000275", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.46", + "sz": "12.0", + "side": "B", + "time": 1762185694294, + "startPosition": "-228466.41", + "dir": "Close Short", + "closedPnl": "400.2276", + "hash": "0xbfa03dd2a89d9547c119042ec46864020f5500b84390b4196368e92567916f32", + "oid": 221328785323, + "crossed": true, + "fee": "0.419479", + "tid": 768424072547746, + "cloid": "0x00000000000000000000000388000266", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "6.73", + "side": "B", + "time": 1762185694294, + "startPosition": "-228454.41", + "dir": "Close Short", + "closedPnl": "224.259079", + "hash": "0xbfa03dd2a89d9547c119042ec46864020f5500b84390b4196368e92567916f32", + "oid": 221328785323, + "crossed": true, + "fee": "0.2353", + "tid": 1085075271941048, + "cloid": "0x00000000000000000000000388000266", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "12.0", + "side": "B", + "time": 1762185694294, + "startPosition": "-228447.68", + "dir": "Close Short", + "closedPnl": "399.8676", + "hash": "0xbfa03dd2a89d9547c119042ec46864020f5500b84390b4196368e92567916f32", + "oid": 221328785323, + "crossed": true, + "fee": "0.419554", + "tid": 34207279790435, + "cloid": "0x00000000000000000000000388000266", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "29.28", + "side": "B", + "time": 1762185694294, + "startPosition": "-228435.68", + "dir": "Close Short", + "closedPnl": "975.676944", + "hash": "0xbfa03dd2a89d9547c119042ec46864020f5500b84390b4196368e92567916f32", + "oid": 221328785323, + "crossed": true, + "fee": "1.023713", + "tid": 719311090619564, + "cloid": "0x00000000000000000000000388000266", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131264.0", + "side": "B", + "time": 1762185695129, + "startPosition": "-1183585663.0", + "dir": "Close Short", + "closedPnl": "228.793152", + "hash": "0x7a764204442ca0577bef042ec4686d02148900e9df2fbf291e3eed5703207a42", + "oid": 221328803537, + "crossed": true, + "fee": "0.104969", + "tid": 848985336275879, + "cloid": "0x00000000000000000000000385000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.0", + "sz": "2.7852", + "side": "B", + "time": 1762185695520, + "startPosition": "-1702.7501", + "dir": "Close Short", + "closedPnl": "1455.489816", + "hash": "0x4ad724e9a24e090c4c50042ec468710203a700cf3d4127deee9fd03c6141e2f6", + "oid": 221328806300, + "crossed": true, + "fee": "2.098592", + "tid": 733006764514741, + "cloid": "0x00000000000000000000000387000276", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "59.97", + "side": "B", + "time": 1762185696796, + "startPosition": "-228406.4", + "dir": "Close Short", + "closedPnl": "1989.942531", + "hash": "0xabb61aa297e044f7ad2f042ec46880020786008832e363c94f7ec5f556e41ee2", + "oid": 221328838461, + "crossed": true, + "fee": "2.098488", + "tid": 159114007721420, + "cloid": "0x00000000000000000000000388000267", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003814", + "sz": "130989.0", + "side": "B", + "time": 1762185697026, + "startPosition": "-1183454399.0", + "dir": "Close Short", + "closedPnl": "227.527893", + "hash": "0x5a6e071de579d2665be7042ec468840205b30003807cf138fe36b270a47dac50", + "oid": 221328849346, + "crossed": true, + "fee": "0.104914", + "tid": 138894833179246, + "cloid": "0x00000000000000000000000385000234", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.9", + "sz": "0.8824", + "side": "B", + "time": 1762185697306, + "startPosition": "-1699.9649", + "dir": "Close Short", + "closedPnl": "459.448032", + "hash": "0xb06a6fc5866a8d3fb1e4042ec4688801860087ab216dac1154331b18456e672a", + "oid": 221328856696, + "crossed": true, + "fee": "0.665222", + "tid": 673206051988291, + "cloid": "0x00000000000000000000000387000277", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "1.9012", + "side": "B", + "time": 1762185697306, + "startPosition": "-1699.0825", + "dir": "Close Short", + "closedPnl": "989.726696", + "hash": "0xb06a6fc5866a8d3fb1e4042ec4688801860087ab216dac1154331b18456e672a", + "oid": 221328856696, + "crossed": true, + "fee": "1.433314", + "tid": 942621105213437, + "cloid": "0x00000000000000000000000387000277", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "0.13", + "side": "B", + "time": 1762185699553, + "startPosition": "-228346.43", + "dir": "Close Short", + "closedPnl": "4.308499", + "hash": "0x4a67fe14b8e210a84be1042ec468a20217ec00fa53e52f7aee30a96777e5ea92", + "oid": 221328894277, + "crossed": true, + "fee": "0.00455", + "tid": 386574538131501, + "cloid": "0x00000000000000000000000388000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "0.31", + "side": "B", + "time": 1762185699553, + "startPosition": "-228346.3", + "dir": "Close Short", + "closedPnl": "10.274113", + "hash": "0x4a67fe14b8e210a84be1042ec468a20217ec00fa53e52f7aee30a96777e5ea92", + "oid": 221328894277, + "crossed": true, + "fee": "0.01085", + "tid": 708110853320432, + "cloid": "0x00000000000000000000000388000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "59.48", + "side": "B", + "time": 1762185699553, + "startPosition": "-228345.99", + "dir": "Close Short", + "closedPnl": "1971.304004", + "hash": "0x4a67fe14b8e210a84be1042ec468a20217ec00fa53e52f7aee30a96777e5ea92", + "oid": 221328894277, + "crossed": true, + "fee": "2.081841", + "tid": 702234760005651, + "cloid": "0x00000000000000000000000388000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003815", + "sz": "131061.0", + "side": "B", + "time": 1762185700251, + "startPosition": "-1183323410.0", + "dir": "Close Short", + "closedPnl": "227.521896", + "hash": "0x8891434a6d5f01c68a0a042ec468aa0209a30030085220982c59ee9d2c52dbb1", + "oid": 221328910671, + "crossed": true, + "fee": "0.104999", + "tid": 305209122719154, + "cloid": "0x00000000000000000000000385000235", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.2", + "sz": "1.2444", + "side": "B", + "time": 1762185700251, + "startPosition": "-1697.1813", + "dir": "Close Short", + "closedPnl": "648.805272", + "hash": "0x13f4de5038bee023156e042ec468aa0209c90035d3b1fef5b7bd89a2f7b2ba0d", + "oid": 221328910692, + "crossed": true, + "fee": "0.937944", + "tid": 454915609908972, + "cloid": "0x00000000000000000000000387000278", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.2", + "sz": "1.5393", + "side": "B", + "time": 1762185700251, + "startPosition": "-1695.9369", + "dir": "Close Short", + "closedPnl": "802.560234", + "hash": "0x13f4de5038bee023156e042ec468aa0209c90035d3b1fef5b7bd89a2f7b2ba0d", + "oid": 221328910692, + "crossed": true, + "fee": "1.160219", + "tid": 675023801362672, + "cloid": "0x00000000000000000000000387000278", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "59.97", + "side": "B", + "time": 1762185701649, + "startPosition": "-228286.51", + "dir": "Close Short", + "closedPnl": "1995.339831", + "hash": "0x04d24d3ff73f826a064c042ec468b70206f000259232a13ca89af892b6335c54", + "oid": 221328942823, + "crossed": true, + "fee": "2.097354", + "tid": 706658019402365, + "cloid": "0x00000000000000000000000388000269", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.3", + "sz": "1.6861", + "side": "B", + "time": 1762185702140, + "startPosition": "-1694.3976", + "dir": "Close Short", + "closedPnl": "880.616308", + "hash": "0xa25b165724b79955a3d4042ec468bd020cea003cbfbab8274623c1a9e3bb7340", + "oid": 221328957548, + "crossed": true, + "fee": "1.270548", + "tid": 274421355584246, + "cloid": "0x00000000000000000000000387000279", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.3", + "sz": "1.0994", + "side": "B", + "time": 1762185702140, + "startPosition": "-1692.7115", + "dir": "Close Short", + "closedPnl": "574.194632", + "hash": "0xa25b165724b79955a3d4042ec468bd020cea003cbfbab8274623c1a9e3bb7340", + "oid": 221328957548, + "crossed": true, + "fee": "0.828445", + "tid": 827332634480229, + "cloid": "0x00000000000000000000000387000279", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131227.0", + "side": "B", + "time": 1762185702414, + "startPosition": "-1183192349.0", + "dir": "Close Short", + "closedPnl": "228.466207", + "hash": "0x7c00d5e3c6f16ce37d7a042ec468c002095f00c961f48bb51fc9813685f546ce", + "oid": 221328962074, + "crossed": true, + "fee": "0.104994", + "tid": 717578799054400, + "cloid": "0x00000000000000000000000385000236", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "59.97", + "side": "B", + "time": 1762185704232, + "startPosition": "-228226.54", + "dir": "Close Short", + "closedPnl": "1995.339831", + "hash": "0x2bd95f16b84487cb2d53042ec468d90203ff00fc5347a69dcfa20a69774861b5", + "oid": 221328995726, + "crossed": true, + "fee": "2.097354", + "tid": 372969191911519, + "cloid": "0x00000000000000000000000388000270", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131280.0", + "side": "B", + "time": 1762185704703, + "startPosition": "-1183061122.0", + "dir": "Close Short", + "closedPnl": "228.55848", + "hash": "0x5795941abf39497e590f042ec468de020a6d00005a3c6850fb5e3f6d7e3d2368", + "oid": 221329007364, + "crossed": true, + "fee": "0.105037", + "tid": 812975151329432, + "cloid": "0x00000000000000000000000385000237", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.5", + "sz": "1.0137", + "side": "B", + "time": 1762185705187, + "startPosition": "-1691.6121", + "dir": "Close Short", + "closedPnl": "530.246196", + "hash": "0x40d7ea00f3b545494251042ec468e501920001e68eb8641be4a09553b2b91f33", + "oid": 221329010868, + "crossed": true, + "fee": "0.763696", + "tid": 125199235156120, + "cloid": "0x00000000000000000000000387000280", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.5", + "sz": "1.7716", + "side": "B", + "time": 1762185705187, + "startPosition": "-1690.5984", + "dir": "Close Short", + "closedPnl": "926.688528", + "hash": "0x40d7ea00f3b545494251042ec468e501920001e68eb8641be4a09553b2b91f33", + "oid": 221329010868, + "crossed": true, + "fee": "1.334679", + "tid": 443553730265230, + "cloid": "0x00000000000000000000000387000280", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "59.96", + "side": "B", + "time": 1762185706218, + "startPosition": "-228166.57", + "dir": "Close Short", + "closedPnl": "1994.407508", + "hash": "0x6c172d1c5d45f0636d90042ec468f30204cd0001f8490f350fdfd86f1c49ca4e", + "oid": 221329029755, + "crossed": true, + "fee": "2.09713", + "tid": 454911221034192, + "cloid": "0x00000000000000000000000388000271", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "13120.0", + "side": "B", + "time": 1762185706468, + "startPosition": "-1182929842.0", + "dir": "Close Short", + "closedPnl": "22.84192", + "hash": "0xaaf4b461c5c26209ac6e042ec468f7020d81004760c580db4ebd5fb484c63bf4", + "oid": 221329035253, + "crossed": true, + "fee": "0.010497", + "tid": 301400262167380, + "cloid": "0x00000000000000000000000385000238", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "118075.0", + "side": "B", + "time": 1762185706468, + "startPosition": "-1182916722.0", + "dir": "Close Short", + "closedPnl": "205.568575", + "hash": "0xaaf4b461c5c26209ac6e042ec468f7020d81004760c580db4ebd5fb484c63bf4", + "oid": 221329035253, + "crossed": true, + "fee": "0.094471", + "tid": 860866724577239, + "cloid": "0x00000000000000000000000385000238", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.5", + "sz": "2.7853", + "side": "B", + "time": 1762185707362, + "startPosition": "-1688.8268", + "dir": "Close Short", + "closedPnl": "1456.934724", + "hash": "0x7dd6e36bed356cbe7f50042ec46901020a5e005188388b90219f8ebeac3946a9", + "oid": 221329051611, + "crossed": true, + "fee": "2.098375", + "tid": 579726559114236, + "cloid": "0x00000000000000000000000387000281", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "59.98", + "side": "B", + "time": 1762185708040, + "startPosition": "-228106.61", + "dir": "Close Short", + "closedPnl": "1995.672554", + "hash": "0xf8441ee0990d2633f9bd042ec469080206c000c6340045069c0cca335801001e", + "oid": 221329061028, + "crossed": true, + "fee": "2.097704", + "tid": 968168028687544, + "cloid": "0x00000000000000000000000388000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131303.0", + "side": "B", + "time": 1762185708159, + "startPosition": "-1182798647.0", + "dir": "Close Short", + "closedPnl": "228.729826", + "hash": "0xe1656eae37120f15e2df042ec469090204840093d2152de7852e1a00f615e900", + "oid": 221329063010, + "crossed": true, + "fee": "0.105027", + "tid": 569413456869767, + "cloid": "0x00000000000000000000000385000239", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "0.1", + "side": "B", + "time": 1762185710002, + "startPosition": "-228046.63", + "dir": "Close Short", + "closedPnl": "3.32523", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.003497", + "tid": 1100252148717127, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "0.1", + "side": "B", + "time": 1762185710002, + "startPosition": "-228046.53", + "dir": "Close Short", + "closedPnl": "3.32523", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.003497", + "tid": 604082521154207, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "0.1", + "side": "B", + "time": 1762185710002, + "startPosition": "-228046.43", + "dir": "Close Short", + "closedPnl": "3.32523", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.003497", + "tid": 745001339506517, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "7.3", + "side": "B", + "time": 1762185710002, + "startPosition": "-228046.33", + "dir": "Close Short", + "closedPnl": "242.59579", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.255367", + "tid": 598453925719824, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "0.18", + "side": "B", + "time": 1762185710002, + "startPosition": "-228039.03", + "dir": "Close Short", + "closedPnl": "5.980014", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.006297", + "tid": 392023312697156, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "6.52", + "side": "B", + "time": 1762185710002, + "startPosition": "-228038.85", + "dir": "Close Short", + "closedPnl": "216.609396", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.228095", + "tid": 458828132508130, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "6.0", + "side": "B", + "time": 1762185710002, + "startPosition": "-228032.33", + "dir": "Close Short", + "closedPnl": "199.1538", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.209941", + "tid": 239639194248002, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "6.0", + "side": "B", + "time": 1762185710002, + "startPosition": "-228026.33", + "dir": "Close Short", + "closedPnl": "199.0938", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.209953", + "tid": 608874788868894, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "18.0", + "side": "B", + "time": 1762185710002, + "startPosition": "-228020.33", + "dir": "Close Short", + "closedPnl": "597.2814", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.629861", + "tid": 414560337620529, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "15.68", + "side": "B", + "time": 1762185710002, + "startPosition": "-228002.33", + "dir": "Close Short", + "closedPnl": "520.298464", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.548679", + "tid": 904234298388323, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.9", + "sz": "2.7845", + "side": "B", + "time": 1762185710002, + "startPosition": "-1686.0415", + "dir": "Close Short", + "closedPnl": "1452.61796", + "hash": "0x03395e7815e3c1d904b3042ec46921020581005db0e6e0aba70209cad4e79bc3", + "oid": 221329098857, + "crossed": true, + "fee": "2.098591", + "tid": 808841802433944, + "cloid": "0x00000000000000000000000387000282", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "0.1", + "side": "B", + "time": 1762185711803, + "startPosition": "-227986.65", + "dir": "Close Short", + "closedPnl": "3.32023", + "hash": "0xfe91c42261a150f2000b042ec469360210740007fca46fc5a25a6f7520a52add", + "oid": 221329138507, + "crossed": true, + "fee": "0.003498", + "tid": 930177219894982, + "cloid": "0x00000000000000000000000388000274", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "3.0", + "side": "B", + "time": 1762185711803, + "startPosition": "-227986.55", + "dir": "Close Short", + "closedPnl": "99.6069", + "hash": "0xfe91c42261a150f2000b042ec469360210740007fca46fc5a25a6f7520a52add", + "oid": 221329138507, + "crossed": true, + "fee": "0.104964", + "tid": 816952460011297, + "cloid": "0x00000000000000000000000388000274", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "12.0", + "side": "B", + "time": 1762185711803, + "startPosition": "-227983.55", + "dir": "Close Short", + "closedPnl": "398.4276", + "hash": "0xfe91c42261a150f2000b042ec469360210740007fca46fc5a25a6f7520a52add", + "oid": 221329138507, + "crossed": true, + "fee": "0.419857", + "tid": 568649323703581, + "cloid": "0x00000000000000000000000388000274", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "44.85", + "side": "B", + "time": 1762185711803, + "startPosition": "-227971.55", + "dir": "Close Short", + "closedPnl": "1489.123155", + "hash": "0xfe91c42261a150f2000b042ec469360210740007fca46fc5a25a6f7520a52add", + "oid": 221329138507, + "crossed": true, + "fee": "1.569216", + "tid": 620949995875084, + "cloid": "0x00000000000000000000000388000274", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003816", + "sz": "131199.0", + "side": "B", + "time": 1762185712187, + "startPosition": "-1182667344.0", + "dir": "Close Short", + "closedPnl": "227.630265", + "hash": "0x438e1f7d4852bc3a4507042ec4693a0214030062e355db0ce756cad007569624", + "oid": 221329147944, + "crossed": true, + "fee": "0.105137", + "tid": 540055770924719, + "cloid": "0x00000000000000000000000385000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.3", + "sz": "2.784", + "side": "B", + "time": 1762185713019, + "startPosition": "-1683.257", + "dir": "Close Short", + "closedPnl": "1454.02752", + "hash": "0x600f1739f9610cd56188042ec46942020614001f94642ba703d7c28cb864e6c0", + "oid": 221329163210, + "crossed": true, + "fee": "2.097863", + "tid": 496942608544337, + "cloid": "0x00000000000000000000000387000283", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "59.98", + "side": "B", + "time": 1762185713582, + "startPosition": "-227926.7", + "dir": "Close Short", + "closedPnl": "1998.071754", + "hash": "0xdf5653c0fdb4ef26e0d0042ec4694802030300a698b80df8831eff13bcb8c911", + "oid": 221329178261, + "crossed": true, + "fee": "2.0972", + "tid": 818590578217062, + "cloid": "0x00000000000000000000000388000275", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.3", + "sz": "1.25", + "side": "B", + "time": 1762185715237, + "startPosition": "-1680.473", + "dir": "Close Short", + "closedPnl": "654.1", + "hash": "0x99804ff2961dbcac9afa042ec4695c02051500d83110db7e3d48fb4555119697", + "oid": 221329207042, + "crossed": true, + "fee": "0.941666", + "tid": 958754302948479, + "cloid": "0x00000000000000000000000387000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.3", + "sz": "0.8059", + "side": "B", + "time": 1762185715237, + "startPosition": "-1679.223", + "dir": "Close Short", + "closedPnl": "421.711352", + "hash": "0x99804ff2961dbcac9afa042ec4695c02051500d83110db7e3d48fb4555119697", + "oid": 221329207042, + "crossed": true, + "fee": "0.607111", + "tid": 395571807197593, + "cloid": "0x00000000000000000000000387000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.3", + "sz": "0.6359", + "side": "B", + "time": 1762185715237, + "startPosition": "-1678.4171", + "dir": "Close Short", + "closedPnl": "332.753752", + "hash": "0x99804ff2961dbcac9afa042ec4695c02051500d83110db7e3d48fb4555119697", + "oid": 221329207042, + "crossed": true, + "fee": "0.479044", + "tid": 466850485884200, + "cloid": "0x00000000000000000000000387000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.3", + "sz": "0.0935", + "side": "B", + "time": 1762185715237, + "startPosition": "-1677.7812", + "dir": "Close Short", + "closedPnl": "48.92668", + "hash": "0x99804ff2961dbcac9afa042ec4695c02051500d83110db7e3d48fb4555119697", + "oid": 221329207042, + "crossed": true, + "fee": "0.070436", + "tid": 994239304960857, + "cloid": "0x00000000000000000000000387000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "59.99", + "side": "B", + "time": 1762185715762, + "startPosition": "-227866.72", + "dir": "Close Short", + "closedPnl": "1997.804977", + "hash": "0x42ef15de1e4b3a604468042ec46962020ef200c3b94e5932e6b7c130dd4f144a", + "oid": 221329216561, + "crossed": true, + "fee": "2.097676", + "tid": 385529314151398, + "cloid": "0x00000000000000000000000388000276", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.5", + "sz": "2.7849", + "side": "B", + "time": 1762185716981, + "startPosition": "-1677.6877", + "dir": "Close Short", + "closedPnl": "1453.940592", + "hash": "0xf4906bfc3a58c6a9f60a042ec4696f020a5a00e1d55be57c9859174ef95ca094", + "oid": 221329242638, + "crossed": true, + "fee": "2.098658", + "tid": 720400909313037, + "cloid": "0x00000000000000000000000387000285", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "59.96", + "side": "B", + "time": 1762185717659, + "startPosition": "-227806.73", + "dir": "Close Short", + "closedPnl": "1990.809908", + "hash": "0xb5b4bfb8283148c0b72e042ec46976020285009dc3346792597d6b0ae73522ab", + "oid": 221329251666, + "crossed": true, + "fee": "2.097886", + "tid": 1028963657407104, + "cloid": "0x00000000000000000000000388000277", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "2.7849", + "side": "B", + "time": 1762185718524, + "startPosition": "-1674.9028", + "dir": "Close Short", + "closedPnl": "1453.383612", + "hash": "0xf23a7e94ad93529bf3b4042ec469810203d4007a4896716e960329e76c972c86", + "oid": 221329266744, + "crossed": true, + "fee": "2.098775", + "tid": 77399623709038, + "cloid": "0x00000000000000000000000387000286", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003815", + "sz": "131117.0", + "side": "B", + "time": 1762185718671, + "startPosition": "-1182536145.0", + "dir": "Close Short", + "closedPnl": "227.619112", + "hash": "0x6486015b975b245165ff042ec469840203810041325e4323084eacae565efe3c", + "oid": 221329269470, + "crossed": true, + "fee": "0.105044", + "tid": 607331959040673, + "cloid": "0x00000000000000000000000385000243", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "10.01", + "side": "B", + "time": 1762185719734, + "startPosition": "-227746.77", + "dir": "Close Short", + "closedPnl": "332.254923", + "hash": "0x7f5c0562435ead3080d5042ec469930209b60047de51cc022324b0b50252871b", + "oid": 221329290927, + "crossed": true, + "fee": "0.350251", + "tid": 392087721860221, + "cloid": "0x00000000000000000000000388000278", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "49.93", + "side": "B", + "time": 1762185719734, + "startPosition": "-227736.76", + "dir": "Close Short", + "closedPnl": "1657.291539", + "hash": "0x7f5c0562435ead3080d5042ec469930209b60047de51cc022324b0b50252871b", + "oid": 221329290927, + "crossed": true, + "fee": "1.74706", + "tid": 968983614390628, + "cloid": "0x00000000000000000000000388000278", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003813", + "sz": "131023.0", + "side": "B", + "time": 1762185720325, + "startPosition": "-1182405028.0", + "dir": "Close Short", + "closedPnl": "227.717974", + "hash": "0xcfa15214fcfa74ced11b042ec4699a0201fd00fa97fd93a07369fd67bbfe4eb9", + "oid": 221329299586, + "crossed": true, + "fee": "0.104914", + "tid": 1035571703800322, + "cloid": "0x00000000000000000000000385000244", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "2.7843", + "side": "B", + "time": 1762185720541, + "startPosition": "-1672.1179", + "dir": "Close Short", + "closedPnl": "1453.070484", + "hash": "0xd888462114557613da02042ec4699d0207940006af5894e57c50f173d3594ffe", + "oid": 221329303178, + "crossed": true, + "fee": "2.098323", + "tid": 294498226659765, + "cloid": "0x00000000000000000000000387000287", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "29.63", + "side": "B", + "time": 1762185721209, + "startPosition": "-227686.83", + "dir": "Close Short", + "closedPnl": "983.191549", + "hash": "0xa406efdc67562889a580042ec469a6020c5700c20259475b47cf9b2f265a0274", + "oid": 221329316377, + "crossed": true, + "fee": "1.036821", + "tid": 202502238167533, + "cloid": "0x00000000000000000000000388000279", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "30.31", + "side": "B", + "time": 1762185721209, + "startPosition": "-227657.2", + "dir": "Close Short", + "closedPnl": "1005.755513", + "hash": "0xa406efdc67562889a580042ec469a6020c5700c20259475b47cf9b2f265a0274", + "oid": 221329316377, + "crossed": true, + "fee": "1.060616", + "tid": 769332340703439, + "cloid": "0x00000000000000000000000388000279", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "130954.0", + "side": "B", + "time": 1762185721966, + "startPosition": "-1182274005.0", + "dir": "Close Short", + "closedPnl": "226.943282", + "hash": "0x5f5c481f346c068b60d6042ec469b10208d90004cf6f255d0324f371f36fe076", + "oid": 221329333438, + "crossed": true, + "fee": "0.104996", + "tid": 1020441197798813, + "cloid": "0x00000000000000000000000385000245", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.0", + "sz": "0.0042", + "side": "B", + "time": 1762185722101, + "startPosition": "-1669.3336", + "dir": "Close Short", + "closedPnl": "2.190636", + "hash": "0xcdaae4b6547079c3cf24042ec469b30209f8009bef73989571739009137453ae", + "oid": 221329337492, + "crossed": true, + "fee": "0.003165", + "tid": 723065316743479, + "cloid": "0x00000000000000000000000387000288", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.1", + "sz": "2.7794", + "side": "B", + "time": 1762185722101, + "startPosition": "-1669.3294", + "dir": "Close Short", + "closedPnl": "1449.401512", + "hash": "0xcdaae4b6547079c3cf24042ec469b30209f8009bef73989571739009137453ae", + "oid": 221329337492, + "crossed": true, + "fee": "2.094864", + "tid": 76628496388447, + "cloid": "0x00000000000000000000000387000288", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.65", + "sz": "1.76", + "side": "B", + "time": 1762185723463, + "startPosition": "-227626.89", + "dir": "Close Short", + "closedPnl": "58.365648", + "hash": "0x032cc016b917168a04a6042ec469c4021ebd00fc541a355ca6f56b69781af074", + "oid": 221329358778, + "crossed": true, + "fee": "0.061593", + "tid": 764811053152473, + "cloid": "0x00000000000000000000000388000280", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.65", + "sz": "53.74", + "side": "B", + "time": 1762185723463, + "startPosition": "-227625.13", + "dir": "Close Short", + "closedPnl": "1782.142002", + "hash": "0x032cc016b917168a04a6042ec469c4021ebd00fc541a355ca6f56b69781af074", + "oid": 221329358778, + "crossed": true, + "fee": "1.880711", + "tid": 558710839293881, + "cloid": "0x00000000000000000000000388000280", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.65", + "sz": "4.41", + "side": "B", + "time": 1762185723463, + "startPosition": "-227571.39", + "dir": "Close Short", + "closedPnl": "146.245743", + "hash": "0x032cc016b917168a04a6042ec469c4021ebd00fc541a355ca6f56b69781af074", + "oid": 221329358778, + "crossed": true, + "fee": "0.154334", + "tid": 952657176260053, + "cloid": "0x00000000000000000000000388000280", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "131023.0", + "side": "B", + "time": 1762185723928, + "startPosition": "-1182143051.0", + "dir": "Close Short", + "closedPnl": "227.193882", + "hash": "0x096d4335daec5dd70ae6042ec469ca020344001b75ef7ca9ad35ee8899e037c1", + "oid": 221329370339, + "crossed": true, + "fee": "0.105024", + "tid": 17476017889392, + "cloid": "0x00000000000000000000000385000246", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.2", + "sz": "2.1482", + "side": "B", + "time": 1762185725467, + "startPosition": "-1666.55", + "dir": "Close Short", + "closedPnl": "1126.473116", + "hash": "0xd58430cd12a1daebd6fd042ec469df020af700b2ada4f9bd794cdc1fd1a5b4d6", + "oid": 221329411213, + "crossed": true, + "fee": "1.617813", + "tid": 233531345535128, + "cloid": "0x00000000000000000000000387000289", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.2", + "sz": "0.6361", + "side": "B", + "time": 1762185725467, + "startPosition": "-1664.4018", + "dir": "Close Short", + "closedPnl": "333.558118", + "hash": "0xd58430cd12a1daebd6fd042ec469df020af700b2ada4f9bd794cdc1fd1a5b4d6", + "oid": 221329411213, + "crossed": true, + "fee": "0.479048", + "tid": 702690594829799, + "cloid": "0x00000000000000000000000387000289", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "60.01", + "side": "B", + "time": 1762185725935, + "startPosition": "-227566.98", + "dir": "Close Short", + "closedPnl": "1999.671223", + "hash": "0x893e0aa8e760bbfc8ab7042ec469e402094a008e8263dace2d06b5fba66495e7", + "oid": 221329421496, + "crossed": true, + "fee": "2.098123", + "tid": 31912896882730, + "cloid": "0x00000000000000000000000388000281", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.2", + "sz": "0.2787", + "side": "B", + "time": 1762185728089, + "startPosition": "-1663.7657", + "dir": "Close Short", + "closedPnl": "145.866006", + "hash": "0x331fcdde58a37a303499042ec469ff0205b700c3f3a69902d6e8793117a7541a", + "oid": 221329462608, + "crossed": true, + "fee": "0.209948", + "tid": 225999206569520, + "cloid": "0x00000000000000000000000387000290", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.2", + "sz": "2.5067", + "side": "B", + "time": 1762185728089, + "startPosition": "-1663.487", + "dir": "Close Short", + "closedPnl": "1311.956646", + "hash": "0x331fcdde58a37a303499042ec469ff0205b700c3f3a69902d6e8793117a7541a", + "oid": 221329462608, + "crossed": true, + "fee": "1.888327", + "tid": 66573626292027, + "cloid": "0x00000000000000000000000387000290", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "59.97", + "side": "B", + "time": 1762185728359, + "startPosition": "-227506.97", + "dir": "Close Short", + "closedPnl": "2001.336831", + "hash": "0xd455c652c1e80c33d5cf042ec46a0202081c00385ceb2b05781e71a580ebe61e", + "oid": 221329466837, + "crossed": true, + "fee": "2.096095", + "tid": 445891494831694, + "cloid": "0x00000000000000000000000388000282", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.8", + "sz": "2.7858", + "side": "B", + "time": 1762185731262, + "startPosition": "-1660.9803", + "dir": "Close Short", + "closedPnl": "1459.146324", + "hash": "0x9abe592c00ffa1a79c38042ec46a2102155a00119bf2c0793e87047ebff37b92", + "oid": 221329525753, + "crossed": true, + "fee": "2.098342", + "tid": 101743967061866, + "cloid": "0x00000000000000000000000387000291", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.46", + "sz": "59.98", + "side": "B", + "time": 1762185731568, + "startPosition": "-227447.0", + "dir": "Close Short", + "closedPnl": "2000.470954", + "hash": "0x6fa218f453a66f5a711b042ec46a2402076e00d9eea98e2c136ac44712aa4945", + "oid": 221329530948, + "crossed": true, + "fee": "2.096696", + "tid": 1056568240647813, + "cloid": "0x00000000000000000000000388000283", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131130.0", + "side": "B", + "time": 1762185731695, + "startPosition": "-1182012028.0", + "dir": "Close Short", + "closedPnl": "228.29733", + "hash": "0xa4eaa7627bc13c4da664042ec46a2502097b004816c45b1f48b352b53ac51638", + "oid": 221329525735, + "crossed": false, + "fee": "0.013988", + "tid": 179910005358931, + "cloid": "0x00000000000000000000000385000248", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.8", + "sz": "2.7773", + "side": "B", + "time": 1762185733189, + "startPosition": "-1658.1945", + "dir": "Close Short", + "closedPnl": "1454.694194", + "hash": "0x8e06430acacfc64c8f7f042ec46a35020f9b00f065c2e51e31ceee5d89c3a037", + "oid": 221329558169, + "crossed": true, + "fee": "2.09194", + "tid": 844051104539547, + "cloid": "0x00000000000000000000000387000292", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.8", + "sz": "0.0078", + "side": "B", + "time": 1762185733189, + "startPosition": "-1655.4172", + "dir": "Close Short", + "closedPnl": "4.085484", + "hash": "0x8e06430acacfc64c8f7f042ec46a35020f9b00f065c2e51e31ceee5d89c3a037", + "oid": 221329558169, + "crossed": true, + "fee": "0.005875", + "tid": 853014992065253, + "cloid": "0x00000000000000000000000387000292", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003814", + "sz": "131057.0", + "side": "B", + "time": 1762185733720, + "startPosition": "-1181880898.0", + "dir": "Close Short", + "closedPnl": "227.646009", + "hash": "0x0da5091ea15cc2f10f1e042ec46a3b02014e00043c5fe1c3b16db47160509cdb", + "oid": 221329564169, + "crossed": true, + "fee": "0.104968", + "tid": 1043481177537929, + "cloid": "0x00000000000000000000000385000249", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "59.96", + "side": "B", + "time": 1762185734110, + "startPosition": "-227387.02", + "dir": "Close Short", + "closedPnl": "1994.407508", + "hash": "0x86a541ae59eb9c8d881e042ec46a3f0209ab0093f4eebb5f2a6ded0118ef7678", + "oid": 221329570500, + "crossed": true, + "fee": "2.09713", + "tid": 997748553932026, + "cloid": "0x00000000000000000000000388000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.9", + "sz": "2.2041", + "side": "B", + "time": 1762185735207, + "startPosition": "-1655.4094", + "dir": "Close Short", + "closedPnl": "1154.243088", + "hash": "0x0a387246a8a085fe0bb2042ec46a4a021600002c43a3a4d0ae011d9967a45fe8", + "oid": 221329589804, + "crossed": true, + "fee": "1.660236", + "tid": 784931326480106, + "cloid": "0x00000000000000000000000387000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.6", + "sz": "0.128", + "side": "B", + "time": 1762185735207, + "startPosition": "-1653.2053", + "dir": "Close Short", + "closedPnl": "66.94144", + "hash": "0x0a387246a8a085fe0bb2042ec46a4a021600002c43a3a4d0ae011d9967a45fe8", + "oid": 221329589804, + "crossed": true, + "fee": "0.096434", + "tid": 37451309720912, + "cloid": "0x00000000000000000000000387000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.6", + "sz": "0.128", + "side": "B", + "time": 1762185735207, + "startPosition": "-1653.0773", + "dir": "Close Short", + "closedPnl": "66.94144", + "hash": "0x0a387246a8a085fe0bb2042ec46a4a021600002c43a3a4d0ae011d9967a45fe8", + "oid": 221329589804, + "crossed": true, + "fee": "0.096434", + "tid": 940831872153394, + "cloid": "0x00000000000000000000000387000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.6", + "sz": "0.128", + "side": "B", + "time": 1762185735207, + "startPosition": "-1652.9493", + "dir": "Close Short", + "closedPnl": "66.94144", + "hash": "0x0a387246a8a085fe0bb2042ec46a4a021600002c43a3a4d0ae011d9967a45fe8", + "oid": 221329589804, + "crossed": true, + "fee": "0.096434", + "tid": 556910561574181, + "cloid": "0x00000000000000000000000387000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.6", + "sz": "0.128", + "side": "B", + "time": 1762185735207, + "startPosition": "-1652.8213", + "dir": "Close Short", + "closedPnl": "66.94144", + "hash": "0x0a387246a8a085fe0bb2042ec46a4a021600002c43a3a4d0ae011d9967a45fe8", + "oid": 221329589804, + "crossed": true, + "fee": "0.096434", + "tid": 300600460249546, + "cloid": "0x00000000000000000000000387000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.6", + "sz": "0.0693", + "side": "B", + "time": 1762185735207, + "startPosition": "-1652.6933", + "dir": "Close Short", + "closedPnl": "36.242514", + "hash": "0x0a387246a8a085fe0bb2042ec46a4a021600002c43a3a4d0ae011d9967a45fe8", + "oid": 221329589804, + "crossed": true, + "fee": "0.05221", + "tid": 357574809041254, + "cloid": "0x00000000000000000000000387000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003813", + "sz": "82011.0", + "side": "B", + "time": 1762185735335, + "startPosition": "-1181749841.0", + "dir": "Close Short", + "closedPnl": "142.535118", + "hash": "0xdbcd943df9817cefdd47042ec46a4c0204b4002394849bc17f963f90b88556da", + "oid": 221329593450, + "crossed": true, + "fee": "0.065668", + "tid": 164589140504969, + "cloid": "0x00000000000000000000000385000250", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003813", + "sz": "49038.0", + "side": "B", + "time": 1762185735335, + "startPosition": "-1181667830.0", + "dir": "Close Short", + "closedPnl": "85.228044", + "hash": "0xdbcd943df9817cefdd47042ec46a4c0204b4002394849bc17f963f90b88556da", + "oid": 221329593450, + "crossed": true, + "fee": "0.039266", + "tid": 733751265438405, + "cloid": "0x00000000000000000000000385000250", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "59.97", + "side": "B", + "time": 1762185735715, + "startPosition": "-227327.06", + "dir": "Close Short", + "closedPnl": "1994.740131", + "hash": "0x66d2e14b29d19b43684c042ec46a500205ed0030c4d4ba150a9b8c9de8d5752e", + "oid": 221329597180, + "crossed": true, + "fee": "2.09748", + "tid": 306097376552493, + "cloid": "0x00000000000000000000000388000285", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.6", + "sz": "0.2494", + "side": "B", + "time": 1762185737259, + "startPosition": "-1652.624", + "dir": "Close Short", + "closedPnl": "130.431212", + "hash": "0x24c0ffd98b6475aa263a042ec46a6002121e00bf2667947cc889ab2c4a684f94", + "oid": 221329628270, + "crossed": true, + "fee": "0.187896", + "tid": 807049969602029, + "cloid": "0x00000000000000000000000387000294", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.6", + "sz": "2.5357", + "side": "B", + "time": 1762185737259, + "startPosition": "-1652.3746", + "dir": "Close Short", + "closedPnl": "1326.120386", + "hash": "0x24c0ffd98b6475aa263a042ec46a6002121e00bf2667947cc889ab2c4a684f94", + "oid": 221329628270, + "crossed": true, + "fee": "1.910386", + "tid": 141482630349292, + "cloid": "0x00000000000000000000000387000294", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003816", + "sz": "130915.0", + "side": "B", + "time": 1762185737259, + "startPosition": "-1181618792.0", + "dir": "Close Short", + "closedPnl": "227.137525", + "hash": "0x55b5c77c24cc0490572f042ec46a600212240061bfcf2362f97e72cee3cfde7a", + "oid": 221329628276, + "crossed": true, + "fee": "0.10491", + "tid": 386994064341601, + "cloid": "0x00000000000000000000000385000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "38.23", + "side": "B", + "time": 1762185737331, + "startPosition": "-227267.09", + "dir": "Close Short", + "closedPnl": "1270.088529", + "hash": "0xaeb17c7fa7ee093ab02b042ec46a61020561006542e1280c527a27d266e1e325", + "oid": 221329630586, + "crossed": true, + "fee": "1.337434", + "tid": 831695230551040, + "cloid": "0x00000000000000000000000388000286", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "21.74", + "side": "B", + "time": 1762185737331, + "startPosition": "-227228.86", + "dir": "Close Short", + "closedPnl": "722.252802", + "hash": "0xaeb17c7fa7ee093ab02b042ec46a61020561006542e1280c527a27d266e1e325", + "oid": 221329630586, + "crossed": true, + "fee": "0.760549", + "tid": 480768180265618, + "cloid": "0x00000000000000000000000388000286", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.0", + "sz": "2.3059", + "side": "B", + "time": 1762185738797, + "startPosition": "-1649.8389", + "dir": "Close Short", + "closedPnl": "1207.323122", + "hash": "0x6e7a2dfab05050856ff3042ec46a73021ca600e04b536f571242d94d6f542a70", + "oid": 221329666983, + "crossed": true, + "fee": "1.736965", + "tid": 295313351372411, + "cloid": "0x00000000000000000000000387000295", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.0", + "sz": "0.4796", + "side": "B", + "time": 1762185738797, + "startPosition": "-1647.533", + "dir": "Close Short", + "closedPnl": "251.108968", + "hash": "0x6e7a2dfab05050856ff3042ec46a73021ca600e04b536f571242d94d6f542a70", + "oid": 221329666983, + "crossed": true, + "fee": "0.361268", + "tid": 970866595091360, + "cloid": "0x00000000000000000000000387000295", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "59.98", + "side": "B", + "time": 1762185739137, + "startPosition": "-227207.12", + "dir": "Close Short", + "closedPnl": "1998.671554", + "hash": "0x0ff0dec62ddbdd3a116a042ec46a7702032a00abc8defc0cb3b98a18ecdfb724", + "oid": 221329672567, + "crossed": true, + "fee": "2.097074", + "tid": 167022404725298, + "cloid": "0x00000000000000000000000388000287", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003813", + "sz": "130959.0", + "side": "B", + "time": 1762185739760, + "startPosition": "-1181487877.0", + "dir": "Close Short", + "closedPnl": "227.606742", + "hash": "0x3459ded8f460a4e835d3042ec46a7e02121800be8f63c3bad8228a2bb3647ed2", + "oid": 221329685818, + "crossed": true, + "fee": "0.104862", + "tid": 980561992992318, + "cloid": "0x00000000000000000000000385000252", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.0", + "sz": "0.7039", + "side": "B", + "time": 1762185741260, + "startPosition": "-1647.0534", + "dir": "Close Short", + "closedPnl": "369.955762", + "hash": "0x6599b777482449886713042ec46a91020515005ce327685a096262ca07282373", + "oid": 221329723984, + "crossed": true, + "fee": "0.529931", + "tid": 866354239275644, + "cloid": "0x00000000000000000000000387000296", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.0", + "sz": "1.4063", + "side": "B", + "time": 1762185741260, + "startPosition": "-1646.3495", + "dir": "Close Short", + "closedPnl": "739.123154", + "hash": "0x6599b777482449886713042ec46a91020515005ce327685a096262ca07282373", + "oid": 221329723984, + "crossed": true, + "fee": "1.058732", + "tid": 374719272613175, + "cloid": "0x00000000000000000000000387000296", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.0", + "sz": "0.6772", + "side": "B", + "time": 1762185741260, + "startPosition": "-1644.9432", + "dir": "Close Short", + "closedPnl": "355.922776", + "hash": "0x6599b777482449886713042ec46a91020515005ce327685a096262ca07282373", + "oid": 221329723984, + "crossed": true, + "fee": "0.50983", + "tid": 846276803751417, + "cloid": "0x00000000000000000000000387000296", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "60.04", + "side": "B", + "time": 1762185741323, + "startPosition": "-227147.14", + "dir": "Close Short", + "closedPnl": "2006.074492", + "hash": "0xdf8eea6dc9099e5de108042ec46a9202088e0053640cbd2f835795c0880d7848", + "oid": 221329727549, + "crossed": true, + "fee": "2.098037", + "tid": 122808806970271, + "cloid": "0x00000000000000000000000388000288", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131264.0", + "side": "B", + "time": 1762185741323, + "startPosition": "-1181356918.0", + "dir": "Close Short", + "closedPnl": "228.530624", + "hash": "0xf08e925d14f6977af208042ec46a920208a50042aff9b64d94573dafd3fa7165", + "oid": 221329727560, + "crossed": false, + "fee": "0.014003", + "tid": 455335823165947, + "cloid": "0x00000000000000000000000385000253", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "131406.0", + "side": "B", + "time": 1762185743438, + "startPosition": "-1181225654.0", + "dir": "Close Short", + "closedPnl": "229.172064", + "hash": "0xdc4cc3d66294bab0ddc6042ec46aae020f0300bbfd97d98280156f292198949b", + "oid": 221329769675, + "crossed": true, + "fee": "0.105055", + "tid": 917680882290371, + "cloid": "0x00000000000000000000000385000254", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.3", + "sz": "12.02", + "side": "B", + "time": 1762185743438, + "startPosition": "-227087.1", + "dir": "Close Short", + "closedPnl": "402.817846", + "hash": "0x78b006cb79e1922a7a29042ec46aae020f4000b114e4b0fc1c78b21e38e56c15", + "oid": 221329769705, + "crossed": true, + "fee": "0.419774", + "tid": 389659414004915, + "cloid": "0x00000000000000000000000388000289", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.3", + "sz": "48.03", + "side": "B", + "time": 1762185743438, + "startPosition": "-227075.08", + "dir": "Close Short", + "closedPnl": "1609.595769", + "hash": "0x78b006cb79e1922a7a29042ec46aae020f4000b114e4b0fc1c78b21e38e56c15", + "oid": 221329769705, + "crossed": true, + "fee": "1.677351", + "tid": 372128250579256, + "cloid": "0x00000000000000000000000388000289", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.9", + "sz": "2.7878", + "side": "B", + "time": 1762185744011, + "startPosition": "-1644.266", + "dir": "Close Short", + "closedPnl": "1468.278504", + "hash": "0xbeda20602962ca46c053042ec46ab402025a0045c465e91862a2cbb2e866a431", + "oid": 221329779034, + "crossed": true, + "fee": "2.098151", + "tid": 174969508219517, + "cloid": "0x00000000000000000000000387000297", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.29", + "sz": "60.06", + "side": "B", + "time": 1762185745389, + "startPosition": "-227027.05", + "dir": "Close Short", + "closedPnl": "2013.349338", + "hash": "0xbb9640913c046503bd0f042ec46ac50204ff0076d70783d55f5eebe3fb083eee", + "oid": 221329813351, + "crossed": true, + "fee": "2.097349", + "tid": 759248694574634, + "cloid": "0x00000000000000000000000388000290", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26769", + "sz": "3757.1", + "side": "B", + "time": 1762185746752, + "startPosition": "-3993039.0", + "dir": "Close Short", + "closedPnl": "2004.713418", + "hash": "0x65b58f3a50c6b4a5672f042ec46ad6020216001febc9d377097e3a8d0fca8e90", + "oid": 221329293195, + "crossed": false, + "fee": "0.02816", + "tid": 163278608804733, + "cloid": "0x00000000000000000000000384000138", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.2", + "sz": "1.1266", + "side": "B", + "time": 1762185746820, + "startPosition": "-1641.4782", + "dir": "Close Short", + "closedPnl": "595.272908", + "hash": "0xc88c2462381ea495ca05042ec46ad7020d8e0047d311c3676c54cfb4f7127e80", + "oid": 221329852093, + "crossed": true, + "fee": "0.847498", + "tid": 77152871292271, + "cloid": "0x00000000000000000000000387000298", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.2", + "sz": "1.6616", + "side": "B", + "time": 1762185746820, + "startPosition": "-1640.3516", + "dir": "Close Short", + "closedPnl": "877.956208", + "hash": "0xc88c2462381ea495ca05042ec46ad7020d8e0047d311c3676c54cfb4f7127e80", + "oid": 221329852093, + "crossed": true, + "fee": "1.249958", + "tid": 1108013177951847, + "cloid": "0x00000000000000000000000387000298", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.17", + "sz": "46.92", + "side": "B", + "time": 1762185747431, + "startPosition": "-226966.99", + "dir": "Close Short", + "closedPnl": "1578.496716", + "hash": "0x31e21bf6fd529862335b042ec46adf020ada00dc9855b734d5aac749bc56724c", + "oid": 221329880882, + "crossed": true, + "fee": "1.637306", + "tid": 250939794508193, + "cloid": "0x00000000000000000000000388000291", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.17", + "sz": "13.2", + "side": "B", + "time": 1762185747431, + "startPosition": "-226920.07", + "dir": "Close Short", + "closedPnl": "444.07836", + "hash": "0x31e21bf6fd529862335b042ec46adf020ada00dc9855b734d5aac749bc56724c", + "oid": 221329880882, + "crossed": true, + "fee": "0.460623", + "tid": 240034841421158, + "cloid": "0x00000000000000000000000388000291", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131459.0", + "side": "B", + "time": 1762185749025, + "startPosition": "-1181094248.0", + "dir": "Close Short", + "closedPnl": "230.447627", + "hash": "0x568663cf27fee02c5800042ec46af60161007bb4c2f1fefefa4f0f21e6f2ba16", + "oid": 221329906519, + "crossed": true, + "fee": "0.104849", + "tid": 572029735731154, + "cloid": "0x00000000000000000000000385000256", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3580.1", + "sz": "2.7906", + "side": "B", + "time": 1762185749530, + "startPosition": "-1638.69", + "dir": "Close Short", + "closedPnl": "1480.357488", + "hash": "0x598d84dd4cb716865b07042ec46afa02157900c2e7ba3558fd5630300bbaf070", + "oid": 221329922395, + "crossed": true, + "fee": "2.098031", + "tid": 1042486822252809, + "cloid": "0x00000000000000000000000387000299", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.09", + "sz": "13.34", + "side": "B", + "time": 1762185750421, + "startPosition": "-226906.87", + "dir": "Close Short", + "closedPnl": "449.855482", + "hash": "0x25f9780ef3277f6e2773042ec46b04021fc600f48e2a9e40c9c22361b22b5958", + "oid": 221329932376, + "crossed": true, + "fee": "0.465284", + "tid": 591929009568581, + "cloid": "0x00000000000000000000000388000292", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.1", + "sz": "46.81", + "side": "B", + "time": 1762185750421, + "startPosition": "-226893.53", + "dir": "Close Short", + "closedPnl": "1578.072763", + "hash": "0x25f9780ef3277f6e2773042ec46b04021fc600f48e2a9e40c9c22361b22b5958", + "oid": 221329932376, + "crossed": true, + "fee": "1.632779", + "tid": 578959659765063, + "cloid": "0x00000000000000000000000388000292", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.15", + "sz": "60.11", + "side": "B", + "time": 1762185752408, + "startPosition": "-226846.72", + "dir": "Close Short", + "closedPnl": "2023.440853", + "hash": "0x46728e5acae2eeb447ec042ec46b1c02042a004065e60d86ea3b39ad89e6c89e", + "oid": 221329976009, + "crossed": true, + "fee": "2.097328", + "tid": 378649541523845, + "cloid": "0x00000000000000000000000388000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3580.5", + "sz": "2.2912", + "side": "B", + "time": 1762185752408, + "startPosition": "-1635.8994", + "dir": "Close Short", + "closedPnl": "1214.519296", + "hash": "0x3ef7d278ca2c205e4071042ec46b1c02043e005e652f3f30e2c07dcb892ffa48", + "oid": 221329976020, + "crossed": true, + "fee": "1.722764", + "tid": 41153435269079, + "cloid": "0x00000000000000000000000387000300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3580.6", + "sz": "0.4995", + "side": "B", + "time": 1762185752408, + "startPosition": "-1633.6082", + "dir": "Close Short", + "closedPnl": "264.72501", + "hash": "0x3ef7d278ca2c205e4071042ec46b1c02043e005e652f3f30e2c07dcb892ffa48", + "oid": 221329976020, + "crossed": true, + "fee": "0.375587", + "tid": 404033297442194, + "cloid": "0x00000000000000000000000387000300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.2674", + "sz": "3757.1", + "side": "A", + "time": 1762185753905, + "startPosition": "4010635.4960630001", + "dir": "Sell", + "closedPnl": "-2007.39527744", + "hash": "0xfc30e43c9b0acd52fdaa042ec46b30020b180022360dec259ff98f8f5a0ea73d", + "oid": 221329886007, + "crossed": false, + "fee": "0.07032539", + "tid": 169134580465084, + "cloid": "0x10000000000000000000000475000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.15", + "sz": "60.11", + "side": "B", + "time": 1762185754141, + "startPosition": "-226786.61", + "dir": "Close Short", + "closedPnl": "2023.440853", + "hash": "0x83e7b54298f0870c8561042ec46b33020600002833f3a5de27b0609557f460f7", + "oid": 221330004431, + "crossed": true, + "fee": "2.097328", + "tid": 1091702229350757, + "cloid": "0x00000000000000000000000388000294", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.1", + "sz": "2.0774", + "side": "B", + "time": 1762185754877, + "startPosition": "-1633.1087", + "dir": "Close Short", + "closedPnl": "1099.941752", + "hash": "0x6510d01e5b2cc263668a042ec46b3d020d690003f62fe13508d97b711a209c4e", + "oid": 221330028261, + "crossed": true, + "fee": "1.562269", + "tid": 856504347497929, + "cloid": "0x00000000000000000000000387000301", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.1", + "sz": "0.0055", + "side": "B", + "time": 1762185754877, + "startPosition": "-1631.0313", + "dir": "Close Short", + "closedPnl": "2.91214", + "hash": "0x6510d01e5b2cc263668a042ec46b3d020d690003f62fe13508d97b711a209c4e", + "oid": 221330028261, + "crossed": true, + "fee": "0.004136", + "tid": 112690027381806, + "cloid": "0x00000000000000000000000387000301", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.1", + "sz": "0.7069", + "side": "B", + "time": 1762185754877, + "startPosition": "-1631.0258", + "dir": "Close Short", + "closedPnl": "374.289412", + "hash": "0x6510d01e5b2cc263668a042ec46b3d020d690003f62fe13508d97b711a209c4e", + "oid": 221330028261, + "crossed": true, + "fee": "0.53161", + "tid": 528161417918987, + "cloid": "0x00000000000000000000000387000301", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "60.09", + "side": "B", + "time": 1762185756166, + "startPosition": "-226726.5", + "dir": "Close Short", + "closedPnl": "2018.561307", + "hash": "0x64dc4975452b20dd6656042ec46b4e020ef4005ae02e3faf08a4f4c8042efac8", + "oid": 221330059718, + "crossed": true, + "fee": "2.097513", + "tid": 734293479347861, + "cloid": "0x00000000000000000000000388000295", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.6", + "sz": "0.1334", + "side": "B", + "time": 1762185757210, + "startPosition": "-1630.3189", + "dir": "Close Short", + "closedPnl": "70.565932", + "hash": "0x6767ca7ce6e1b62468e1042ec46b5b02046f006281e4d4f60b3075cfa5e5900f", + "oid": 221330077818, + "crossed": true, + "fee": "0.100334", + "tid": 290857360720862, + "cloid": "0x00000000000000000000000387000302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.6", + "sz": "0.619", + "side": "B", + "time": 1762185757210, + "startPosition": "-1630.1855", + "dir": "Close Short", + "closedPnl": "327.43862", + "hash": "0x6767ca7ce6e1b62468e1042ec46b5b02046f006281e4d4f60b3075cfa5e5900f", + "oid": 221330077818, + "crossed": true, + "fee": "0.465572", + "tid": 859963249912858, + "cloid": "0x00000000000000000000000387000302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.6", + "sz": "0.2792", + "side": "B", + "time": 1762185757210, + "startPosition": "-1629.5665", + "dir": "Close Short", + "closedPnl": "147.691216", + "hash": "0x6767ca7ce6e1b62468e1042ec46b5b02046f006281e4d4f60b3075cfa5e5900f", + "oid": 221330077818, + "crossed": true, + "fee": "0.209996", + "tid": 797148897548991, + "cloid": "0x00000000000000000000000387000302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.6", + "sz": "0.1334", + "side": "B", + "time": 1762185757210, + "startPosition": "-1629.2873", + "dir": "Close Short", + "closedPnl": "70.565932", + "hash": "0x6767ca7ce6e1b62468e1042ec46b5b02046f006281e4d4f60b3075cfa5e5900f", + "oid": 221330077818, + "crossed": true, + "fee": "0.100334", + "tid": 623204225443484, + "cloid": "0x00000000000000000000000387000302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.6", + "sz": "1.6247", + "side": "B", + "time": 1762185757210, + "startPosition": "-1629.1539", + "dir": "Close Short", + "closedPnl": "859.433806", + "hash": "0x6767ca7ce6e1b62468e1042ec46b5b02046f006281e4d4f60b3075cfa5e5900f", + "oid": 221330077818, + "crossed": true, + "fee": "1.221995", + "tid": 26636413354838, + "cloid": "0x00000000000000000000000387000302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "60.1", + "side": "B", + "time": 1762185757752, + "startPosition": "-226666.41", + "dir": "Close Short", + "closedPnl": "2018.89723", + "hash": "0x23c9102609bba1282542042ec46b620209c1000ba4bebffac791bb78c8bf7b12", + "oid": 221330087549, + "crossed": true, + "fee": "2.097862", + "tid": 511602233978950, + "cloid": "0x00000000000000000000000388000296", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3580.9", + "sz": "2.7902", + "side": "B", + "time": 1762185758973, + "startPosition": "-1627.5292", + "dir": "Close Short", + "closedPnl": "1477.913136", + "hash": "0x1b33adedd6ac77051cad042ec46b6e02072c00d371af95d7befc594095a050ef", + "oid": 221330110070, + "crossed": true, + "fee": "2.098199", + "tid": 1091301250575257, + "cloid": "0x00000000000000000000000387000303", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.57", + "side": "B", + "time": 1762185759937, + "startPosition": "-226606.31", + "dir": "Close Short", + "closedPnl": "19.141911", + "hash": "0x0b91c8cc63a6465a0d0b042ec46b79020d0500b1fea9652caf5a741f22aa2044", + "oid": 221330127150, + "crossed": true, + "fee": "0.019897", + "tid": 198649257788008, + "cloid": "0x00000000000000000000000388000297", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "0.1", + "side": "B", + "time": 1762185759937, + "startPosition": "-226605.74", + "dir": "Close Short", + "closedPnl": "3.35723", + "hash": "0x0b91c8cc63a6465a0d0b042ec46b79020d0500b1fea9652caf5a741f22aa2044", + "oid": 221330127150, + "crossed": true, + "fee": "0.003491", + "tid": 827406527231865, + "cloid": "0x00000000000000000000000388000297", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "0.1", + "side": "B", + "time": 1762185759937, + "startPosition": "-226605.64", + "dir": "Close Short", + "closedPnl": "3.35723", + "hash": "0x0b91c8cc63a6465a0d0b042ec46b79020d0500b1fea9652caf5a741f22aa2044", + "oid": 221330127150, + "crossed": true, + "fee": "0.003491", + "tid": 479603648136661, + "cloid": "0x00000000000000000000000388000297", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "59.3", + "side": "B", + "time": 1762185759937, + "startPosition": "-226605.54", + "dir": "Close Short", + "closedPnl": "1990.24439", + "hash": "0x0b91c8cc63a6465a0d0b042ec46b79020d0500b1fea9652caf5a741f22aa2044", + "oid": 221330127150, + "crossed": true, + "fee": "2.070311", + "tid": 683391682958646, + "cloid": "0x00000000000000000000000388000297", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003803", + "sz": "131579.0", + "side": "B", + "time": 1762185760696, + "startPosition": "-1180962789.0", + "dir": "Close Short", + "closedPnl": "230.000092", + "hash": "0x7e7d405fa709a7757ff6042ec46b840205340045420cc6472245ebb2660d8160", + "oid": 221330142417, + "crossed": true, + "fee": "0.105082", + "tid": 265675652514330, + "cloid": "0x00000000000000000000000385000260", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.1", + "sz": "2.3935", + "side": "B", + "time": 1762185760810, + "startPosition": "-1624.739", + "dir": "Close Short", + "closedPnl": "1264.91688", + "hash": "0x2021b5606ff4e595219b042ec46b86020a1100460af80467c3ea60b32ef8bf7f", + "oid": 221330147924, + "crossed": true, + "fee": "1.800488", + "tid": 970969474853536, + "cloid": "0x00000000000000000000000387000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.1", + "sz": "0.0415", + "side": "B", + "time": 1762185760810, + "startPosition": "-1622.3455", + "dir": "Close Short", + "closedPnl": "21.93192", + "hash": "0x2021b5606ff4e595219b042ec46b86020a1100460af80467c3ea60b32ef8bf7f", + "oid": 221330147924, + "crossed": true, + "fee": "0.031218", + "tid": 484337223523266, + "cloid": "0x00000000000000000000000387000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.2", + "sz": "0.0055", + "side": "B", + "time": 1762185760810, + "startPosition": "-1622.304", + "dir": "Close Short", + "closedPnl": "2.90609", + "hash": "0x2021b5606ff4e595219b042ec46b86020a1100460af80467c3ea60b32ef8bf7f", + "oid": 221330147924, + "crossed": true, + "fee": "0.004137", + "tid": 405778650306595, + "cloid": "0x00000000000000000000000387000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.5", + "sz": "0.0415", + "side": "B", + "time": 1762185760810, + "startPosition": "-1622.2985", + "dir": "Close Short", + "closedPnl": "21.91532", + "hash": "0x2021b5606ff4e595219b042ec46b86020a1100460af80467c3ea60b32ef8bf7f", + "oid": 221330147924, + "crossed": true, + "fee": "0.031221", + "tid": 148336675721741, + "cloid": "0x00000000000000000000000387000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.8", + "sz": "0.0415", + "side": "B", + "time": 1762185760810, + "startPosition": "-1622.257", + "dir": "Close Short", + "closedPnl": "21.90287", + "hash": "0x2021b5606ff4e595219b042ec46b86020a1100460af80467c3ea60b32ef8bf7f", + "oid": 221330147924, + "crossed": true, + "fee": "0.031224", + "tid": 544755543258564, + "cloid": "0x00000000000000000000000387000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.9", + "sz": "0.2666", + "side": "B", + "time": 1762185760810, + "startPosition": "-1622.2155", + "dir": "Close Short", + "closedPnl": "140.679488", + "hash": "0x2021b5606ff4e595219b042ec46b86020a1100460af80467c3ea60b32ef8bf7f", + "oid": 221330147924, + "crossed": true, + "fee": "0.200592", + "tid": 508953460759609, + "cloid": "0x00000000000000000000000387000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.3", + "sz": "60.05", + "side": "B", + "time": 1762185761890, + "startPosition": "-226546.24", + "dir": "Close Short", + "closedPnl": "2012.413615", + "hash": "0x8583ed59c87edcf386fd042ec46b94020813003f6371fbc5294c98ac8772b6de", + "oid": 221330165890, + "crossed": true, + "fee": "2.097126", + "tid": 757224860555316, + "cloid": "0x00000000000000000000000388000298", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.2", + "sz": "2.7896", + "side": "B", + "time": 1762185762675, + "startPosition": "-1621.9489", + "dir": "Close Short", + "closedPnl": "1473.968848", + "hash": "0x9edd037b5b797e34a056042ec46b9d0210d60060f67c9d0642a5aece1a7d581f", + "oid": 221330179140, + "crossed": true, + "fee": "2.09851", + "tid": 636160198478973, + "cloid": "0x00000000000000000000000387000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131441.0", + "side": "B", + "time": 1762185763084, + "startPosition": "-1180831210.0", + "dir": "Close Short", + "closedPnl": "230.153191", + "hash": "0x64451138e2e9c46c65be042ec46ba202048c001e7dece33e080dbc8ba1ed9e57", + "oid": 221330170798, + "crossed": false, + "fee": "0.013985", + "tid": 773060709567071, + "cloid": "0x00000000000000000000000385000261", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.3", + "sz": "60.07", + "side": "B", + "time": 1762185763535, + "startPosition": "-226486.19", + "dir": "Close Short", + "closedPnl": "2013.083861", + "hash": "0xc946fe6e7a8395ddcac0042ec46ba90205b300541586b4af6d0fa9c139876fc8", + "oid": 221330197222, + "crossed": true, + "fee": "2.097824", + "tid": 1112738346502204, + "cloid": "0x00000000000000000000000388000299", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26716", + "sz": "3744.8", + "side": "B", + "time": 1762185763907, + "startPosition": "-3989281.8999999999", + "dir": "Close Short", + "closedPnl": "2000.135128", + "hash": "0xe6d3c1c7b1ea8153e84d042ec46bad02038500ad4ceda0258a9c6d1a70ee5b3e", + "oid": 221330202299, + "crossed": true, + "fee": "0.210096", + "tid": 874587172934115, + "cloid": "0x00000000000000000000000384000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "0.0042", + "side": "B", + "time": 1762185764978, + "startPosition": "-1619.1593", + "dir": "Close Short", + "closedPnl": "2.215836", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.00316", + "tid": 192434997239001, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "0.0754", + "side": "B", + "time": 1762185764978, + "startPosition": "-1619.1551", + "dir": "Close Short", + "closedPnl": "39.779532", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.056733", + "tid": 467359434800013, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "0.0754", + "side": "B", + "time": 1762185764978, + "startPosition": "-1619.0797", + "dir": "Close Short", + "closedPnl": "39.779532", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.056733", + "tid": 543380717743594, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "0.0754", + "side": "B", + "time": 1762185764978, + "startPosition": "-1619.0043", + "dir": "Close Short", + "closedPnl": "39.779532", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.056733", + "tid": 476314497518630, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "0.0754", + "side": "B", + "time": 1762185764978, + "startPosition": "-1618.9289", + "dir": "Close Short", + "closedPnl": "39.779532", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.056733", + "tid": 980970739372166, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "0.0754", + "side": "B", + "time": 1762185764978, + "startPosition": "-1618.8535", + "dir": "Close Short", + "closedPnl": "39.779532", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.056733", + "tid": 673793363533434, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "0.0754", + "side": "B", + "time": 1762185764978, + "startPosition": "-1618.7781", + "dir": "Close Short", + "closedPnl": "39.779532", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.056733", + "tid": 1026064171044736, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "0.0083", + "side": "B", + "time": 1762185764978, + "startPosition": "-1618.7027", + "dir": "Close Short", + "closedPnl": "4.378914", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.006245", + "tid": 783675400895916, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.1", + "sz": "0.876", + "side": "B", + "time": 1762185764978, + "startPosition": "-1618.6944", + "dir": "Close Short", + "closedPnl": "462.07248", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.659147", + "tid": 259518548175593, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.0415", + "side": "B", + "time": 1762185764978, + "startPosition": "-1617.8184", + "dir": "Close Short", + "closedPnl": "21.88627", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.031227", + "tid": 274165994623049, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.0042", + "side": "B", + "time": 1762185764978, + "startPosition": "-1617.7769", + "dir": "Close Short", + "closedPnl": "2.214996", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.00316", + "tid": 1028308538305795, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.4", + "sz": "0.0055", + "side": "B", + "time": 1762185764978, + "startPosition": "-1617.7727", + "dir": "Close Short", + "closedPnl": "2.89949", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.004138", + "tid": 392317141183744, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.4", + "sz": "0.1928", + "side": "B", + "time": 1762185764978, + "startPosition": "-1617.7672", + "dir": "Close Short", + "closedPnl": "101.640304", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.145084", + "tid": 766968004744323, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.4", + "sz": "1.2042", + "side": "B", + "time": 1762185764978, + "startPosition": "-1617.5744", + "dir": "Close Short", + "closedPnl": "634.830156", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.906177", + "tid": 301142262728096, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003805", + "sz": "131405.0", + "side": "B", + "time": 1762185765212, + "startPosition": "-1180699769.0", + "dir": "Close Short", + "closedPnl": "229.43313", + "hash": "0x69d9f3ad6e1fda3f6b53042ec46bbe02072b00930912f9110da29f002d13b42a", + "oid": 221330225314, + "crossed": true, + "fee": "0.104999", + "tid": 560150276802637, + "cloid": "0x00000000000000000000000385000262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.32", + "sz": "0.1", + "side": "B", + "time": 1762185765400, + "startPosition": "-226426.12", + "dir": "Close Short", + "closedPnl": "3.34923", + "hash": "0xed25402d73301738ee9e042ec46bc10203fe00130e33360a90edeb803233f123", + "oid": 221330231187, + "crossed": true, + "fee": "0.003492", + "tid": 492322971444616, + "cloid": "0x00000000000000000000000388000300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.32", + "sz": "12.0", + "side": "B", + "time": 1762185765400, + "startPosition": "-226426.02", + "dir": "Close Short", + "closedPnl": "401.9076", + "hash": "0xed25402d73301738ee9e042ec46bc10203fe00130e33360a90edeb803233f123", + "oid": 221330231187, + "crossed": true, + "fee": "0.419126", + "tid": 65254212924886, + "cloid": "0x00000000000000000000000388000300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "47.95", + "side": "B", + "time": 1762185765400, + "startPosition": "-226414.02", + "dir": "Close Short", + "closedPnl": "1605.476285", + "hash": "0xed25402d73301738ee9e042ec46bc10203fe00130e33360a90edeb803233f123", + "oid": 221330231187, + "crossed": true, + "fee": "1.674859", + "tid": 413775246630849, + "cloid": "0x00000000000000000000000388000300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26687", + "sz": "1973.5", + "side": "A", + "time": 1762185765576, + "startPosition": "4006878.396063", + "dir": "Sell", + "closedPnl": "-1055.47479108", + "hash": "0x5dd4cbc1d358544b5f4e042ec46bc3020bc600a76e5b731d019d7714925c2e36", + "oid": 221330221502, + "crossed": false, + "fee": "0.03686675", + "tid": 852116125363061, + "cloid": "0x10000000000000000000000475000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26687", + "sz": "1771.3", + "side": "A", + "time": 1762185765846, + "startPosition": "4004904.896063", + "dir": "Sell", + "closedPnl": "-947.33341649", + "hash": "0x255e6207a0f7df3226d8042ec46bc702049c00ed3bfafe04c9270d5a5ffbb91c", + "oid": 221330221502, + "crossed": false, + "fee": "0.03308947", + "tid": 124530241645385, + "cloid": "0x10000000000000000000000475000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.3", + "sz": "2.7893", + "side": "B", + "time": 1762185766505, + "startPosition": "-1616.3702", + "dir": "Close Short", + "closedPnl": "1473.531404", + "hash": "0xe2c5143eef9615cfe43e042ec46bce0202b300248a9934a1868dbf91ae99efba", + "oid": 221330250940, + "crossed": true, + "fee": "2.098342", + "tid": 864970553799859, + "cloid": "0x00000000000000000000000387000307", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.3", + "sz": "60.05", + "side": "B", + "time": 1762185767094, + "startPosition": "-226366.07", + "dir": "Close Short", + "closedPnl": "2012.413615", + "hash": "0x48355c37177b213649af042ec46bd4020943001cb27e4008ebfe0789d67efb20", + "oid": 221330269207, + "crossed": true, + "fee": "2.097126", + "tid": 776249153725184, + "cloid": "0x00000000000000000000000388000301", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.2", + "sz": "2.7898", + "side": "B", + "time": 1762185768621, + "startPosition": "-1613.5809", + "dir": "Close Short", + "closedPnl": "1474.074524", + "hash": "0xcf77dac197385dc9d0f1042ec46be7020d0000a7323b7c9b73408614563c37b4", + "oid": 221330298209, + "crossed": true, + "fee": "2.09866", + "tid": 314562325804357, + "cloid": "0x00000000000000000000000387000308", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.26", + "sz": "60.07", + "side": "B", + "time": 1762185769139, + "startPosition": "-226306.02", + "dir": "Close Short", + "closedPnl": "2015.486661", + "hash": "0xeb79a036e63b4d99ecf3042ec46bed0204d2001c813e6c6b8f424b89a53f2784", + "oid": 221330302845, + "crossed": true, + "fee": "2.09732", + "tid": 294950968367464, + "cloid": "0x00000000000000000000000388000302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003804", + "sz": "131440.0", + "side": "B", + "time": 1762185769531, + "startPosition": "-1180568364.0", + "dir": "Close Short", + "closedPnl": "229.62568", + "hash": "0x903e024eb97c91fe91b7042ec46bf202034d0034547fb0d03406ada178706be9", + "oid": 221330309978, + "crossed": true, + "fee": "0.104999", + "tid": 564982758305618, + "cloid": "0x00000000000000000000000385000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.2", + "sz": "2.7891", + "side": "B", + "time": 1762185770531, + "startPosition": "-1610.7911", + "dir": "Close Short", + "closedPnl": "1473.704658", + "hash": "0x75a3ad62de17954b771d042ec46bfe0204eb0048791ab41d196c58b59d1b6f36", + "oid": 221330326983, + "crossed": true, + "fee": "2.098133", + "tid": 1023843217555811, + "cloid": "0x00000000000000000000000387000309", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.27", + "sz": "60.07", + "side": "B", + "time": 1762185770925, + "startPosition": "-226245.95", + "dir": "Close Short", + "closedPnl": "2014.885961", + "hash": "0x26bc237dfd62961f2835042ec46c0202129400639865b4f1ca84ced0bc667009", + "oid": 221330337278, + "crossed": true, + "fee": "2.097446", + "tid": 14115229630220, + "cloid": "0x00000000000000000000000388000303", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131441.0", + "side": "B", + "time": 1762185771756, + "startPosition": "-1180436924.0", + "dir": "Close Short", + "closedPnl": "230.153191", + "hash": "0xc65f6d1e096c67b5c7d9042ec46c0b0219670003a46f86876a281870c86041a0", + "oid": 221330352190, + "crossed": false, + "fee": "0.013985", + "tid": 595179002705465, + "cloid": "0x00000000000000000000000385000265", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.3", + "sz": "1.6905", + "side": "B", + "time": 1762185772239, + "startPosition": "-1608.002", + "dir": "Close Short", + "closedPnl": "894.74784", + "hash": "0x1935ab6a14fe3f301aaf042ec46c100204af004faff15e02bcfe56bcd3f2191a", + "oid": 221330367334, + "crossed": true, + "fee": "1.271379", + "tid": 369434326623297, + "cloid": "0x00000000000000000000000387000310", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.3", + "sz": "1.03", + "side": "B", + "time": 1762185772239, + "startPosition": "-1606.3115", + "dir": "Close Short", + "closedPnl": "545.1584", + "hash": "0x1935ab6a14fe3f301aaf042ec46c100204af004faff15e02bcfe56bcd3f2191a", + "oid": 221330367334, + "crossed": true, + "fee": "0.774635", + "tid": 171948239397816, + "cloid": "0x00000000000000000000000387000310", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.3", + "sz": "0.0699", + "side": "B", + "time": 1762185772239, + "startPosition": "-1605.2815", + "dir": "Close Short", + "closedPnl": "36.996672", + "hash": "0x1935ab6a14fe3f301aaf042ec46c100204af004faff15e02bcfe56bcd3f2191a", + "oid": 221330367334, + "crossed": true, + "fee": "0.052569", + "tid": 438187721786940, + "cloid": "0x00000000000000000000000387000310", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.14", + "sz": "48.12", + "side": "B", + "time": 1762185772737, + "startPosition": "-226185.88", + "dir": "Close Short", + "closedPnl": "1620.311076", + "hash": "0xc19f8beeaf1539e5c319042ec46c16020a0300d44a1858b7656837416e1913d0", + "oid": 221330377828, + "crossed": true, + "fee": "1.678877", + "tid": 6037239802266, + "cloid": "0x00000000000000000000000388000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.14", + "sz": "11.99", + "side": "B", + "time": 1762185772737, + "startPosition": "-226137.76", + "dir": "Close Short", + "closedPnl": "403.730877", + "hash": "0xc19f8beeaf1539e5c319042ec46c16020a0300d44a1858b7656837416e1913d0", + "oid": 221330377828, + "crossed": true, + "fee": "0.418323", + "tid": 163059534280350, + "cloid": "0x00000000000000000000000388000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131671.0", + "side": "B", + "time": 1762185773717, + "startPosition": "-1180305483.0", + "dir": "Close Short", + "closedPnl": "230.819263", + "hash": "0xc99b5519684c5cc3cb15042ec46c2302050d00ff034f7b956d64006c274036ae", + "oid": 221330395355, + "crossed": true, + "fee": "0.105018", + "tid": 66550696222993, + "cloid": "0x00000000000000000000000385000266", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.2", + "sz": "0.5851", + "side": "B", + "time": 1762185773717, + "startPosition": "-1605.2116", + "dir": "Close Short", + "closedPnl": "309.740238", + "hash": "0x47bca620e812a92e4936042ec46c2302051200068315c800eb855173a7168318", + "oid": 221330395360, + "crossed": true, + "fee": "0.440025", + "tid": 597014741869011, + "cloid": "0x00000000000000000000000387000311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.2", + "sz": "2.2053", + "side": "B", + "time": 1762185773717, + "startPosition": "-1604.6265", + "dir": "Close Short", + "closedPnl": "1167.441714", + "hash": "0x47bca620e812a92e4936042ec46c2302051200068315c800eb855173a7168318", + "oid": 221330395360, + "crossed": true, + "fee": "1.6585", + "tid": 836715759580392, + "cloid": "0x00000000000000000000000387000311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.14", + "sz": "0.35", + "side": "B", + "time": 1762185775268, + "startPosition": "-226125.77", + "dir": "Close Short", + "closedPnl": "11.785305", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.012211", + "tid": 1012754792031588, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.14", + "sz": "3.01", + "side": "B", + "time": 1762185775268, + "startPosition": "-226125.42", + "dir": "Close Short", + "closedPnl": "101.353623", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.105017", + "tid": 200418323704593, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.16", + "sz": "12.58", + "side": "B", + "time": 1762185775268, + "startPosition": "-226122.41", + "dir": "Close Short", + "closedPnl": "423.345934", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.438961", + "tid": 1075797137952010, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.18", + "sz": "12.0", + "side": "B", + "time": 1762185775268, + "startPosition": "-226109.83", + "dir": "Close Short", + "closedPnl": "403.5876", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.418773", + "tid": 234011724374756, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.19", + "sz": "0.18", + "side": "B", + "time": 1762185775268, + "startPosition": "-226097.83", + "dir": "Close Short", + "closedPnl": "6.052014", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.006281", + "tid": 1015997286670195, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.19", + "sz": "1.74", + "side": "B", + "time": 1762185775268, + "startPosition": "-226097.65", + "dir": "Close Short", + "closedPnl": "58.502802", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.060725", + "tid": 234569822260337, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "12.0", + "side": "B", + "time": 1762185775268, + "startPosition": "-226095.91", + "dir": "Close Short", + "closedPnl": "403.2276", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.418849", + "tid": 864655757846778, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.18", + "side": "B", + "time": 1762185775268, + "startPosition": "-226083.91", + "dir": "Close Short", + "closedPnl": "6.044814", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.006283", + "tid": 765315802753838, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "16.65", + "side": "B", + "time": 1762185775268, + "startPosition": "-226083.73", + "dir": "Close Short", + "closedPnl": "558.978795", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.581258", + "tid": 328557973202519, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "1.0", + "side": "B", + "time": 1762185775268, + "startPosition": "-226067.08", + "dir": "Close Short", + "closedPnl": "33.5723", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.03491", + "tid": 127863344870034, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "0.29", + "side": "B", + "time": 1762185775268, + "startPosition": "-226066.08", + "dir": "Close Short", + "closedPnl": "9.735967", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.010124", + "tid": 525773100969759, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "0.13", + "side": "B", + "time": 1762185775268, + "startPosition": "-226065.79", + "dir": "Close Short", + "closedPnl": "4.364399", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.004538", + "tid": 944711902661655, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.8", + "sz": "0.0042", + "side": "B", + "time": 1762185775583, + "startPosition": "-1602.4212", + "dir": "Close Short", + "closedPnl": "2.220876", + "hash": "0x6c9fab7cff6a3b606e19042ec46c3b020ad700629a6d5a32106856cfbe6e154b", + "oid": 221330426798, + "crossed": true, + "fee": "0.003159", + "tid": 25313305051042, + "cloid": "0x00000000000000000000000387000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.9", + "sz": "0.5697", + "side": "B", + "time": 1762185775583, + "startPosition": "-1602.417", + "dir": "Close Short", + "closedPnl": "301.188996", + "hash": "0x6c9fab7cff6a3b606e19042ec46c3b020ad700629a6d5a32106856cfbe6e154b", + "oid": 221330426798, + "crossed": true, + "fee": "0.428527", + "tid": 23498543635524, + "cloid": "0x00000000000000000000000387000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.9", + "sz": "2.2162", + "side": "B", + "time": 1762185775583, + "startPosition": "-1601.8473", + "dir": "Close Short", + "closedPnl": "1171.660616", + "hash": "0x6c9fab7cff6a3b606e19042ec46c3b020ad700629a6d5a32106856cfbe6e154b", + "oid": 221330426798, + "crossed": true, + "fee": "1.667023", + "tid": 764696734061673, + "cloid": "0x00000000000000000000000387000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131614.0", + "side": "B", + "time": 1762185775583, + "startPosition": "-1180173812.0", + "dir": "Close Short", + "closedPnl": "230.719342", + "hash": "0xeac0fc847f3087caec3a042ec46c3b020adc006a1a33a69c8e89a7d73e3461b5", + "oid": 221330426802, + "crossed": true, + "fee": "0.104972", + "tid": 808682523105569, + "cloid": "0x00000000000000000000000385000267", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "12.03", + "side": "B", + "time": 1762185776732, + "startPosition": "-226065.66", + "dir": "Close Short", + "closedPnl": "403.754469", + "hash": "0x2c312e9ac09c8ae32daa042ec46c48020a6100805b9fa9b5cff9d9ed7f9064cd", + "oid": 221330446885, + "crossed": true, + "fee": "0.419997", + "tid": 428246837918802, + "cloid": "0x00000000000000000000000388000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "48.05", + "side": "B", + "time": 1762185776732, + "startPosition": "-226053.63", + "dir": "Close Short", + "closedPnl": "1612.668515", + "hash": "0x2c312e9ac09c8ae32daa042ec46c48020a6100805b9fa9b5cff9d9ed7f9064cd", + "oid": 221330446885, + "crossed": true, + "fee": "1.677545", + "tid": 989093102886350, + "cloid": "0x00000000000000000000000388000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.0", + "sz": "2.7904", + "side": "B", + "time": 1762185777412, + "startPosition": "-1599.6311", + "dir": "Close Short", + "closedPnl": "1474.949632", + "hash": "0xb2c432b62f4086c0b43d042ec46c5002035c009bca43a592568cde08ee4460ab", + "oid": 221330455130, + "crossed": true, + "fee": "2.098994", + "tid": 627609324371441, + "cloid": "0x00000000000000000000000387000313", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "48.66", + "side": "B", + "time": 1762185778306, + "startPosition": "-226005.58", + "dir": "Close Short", + "closedPnl": "1633.141518", + "hash": "0xde0ac1649f65a02cdf84042ec46c5a0205fc004a3a68befe81d36cb75e697a17", + "oid": 221330470218, + "crossed": true, + "fee": "1.698842", + "tid": 659392169092241, + "cloid": "0x00000000000000000000000388000307", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "11.43", + "side": "B", + "time": 1762185778306, + "startPosition": "-225956.92", + "dir": "Close Short", + "closedPnl": "383.617089", + "hash": "0xde0ac1649f65a02cdf84042ec46c5a0205fc004a3a68befe81d36cb75e697a17", + "oid": 221330470218, + "crossed": true, + "fee": "0.399049", + "tid": 747619044169870, + "cloid": "0x00000000000000000000000388000307", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.6", + "sz": "0.0002", + "side": "B", + "time": 1762185778725, + "startPosition": "-1596.8407", + "dir": "Close Short", + "closedPnl": "0.105796", + "hash": "0x9320c6a0959d3a40949a042ec46c5f02037e00863090591236e971f35491142b", + "oid": 221330474186, + "crossed": true, + "fee": "0.00015", + "tid": 151624837258881, + "cloid": "0x00000000000000000000000387000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.6", + "sz": "2.79", + "side": "B", + "time": 1762185778725, + "startPosition": "-1596.8405", + "dir": "Close Short", + "closedPnl": "1475.8542", + "hash": "0x9320c6a0959d3a40949a042ec46c5f02037e00863090591236e971f35491142b", + "oid": 221330474186, + "crossed": true, + "fee": "2.098459", + "tid": 50335329519963, + "cloid": "0x00000000000000000000000387000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "60.09", + "side": "B", + "time": 1762185780160, + "startPosition": "-225945.49", + "dir": "Close Short", + "closedPnl": "2018.561307", + "hash": "0x819573d8cfb7dbbf830f042ec46c7002075b00be6abafa91255e1f2b8ebbb5aa", + "oid": 221330494106, + "crossed": true, + "fee": "2.097513", + "tid": 913478426681825, + "cloid": "0x00000000000000000000000388000308", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.4", + "sz": "0.7262", + "side": "B", + "time": 1762185780160, + "startPosition": "-1594.0505", + "dir": "Close Short", + "closedPnl": "384.290516", + "hash": "0x7dd815e7cf5474947f51042ec46c7002076500cd6a57936621a0c13a8e584e7f", + "oid": 221330494113, + "crossed": true, + "fee": "0.54617", + "tid": 73527218986986, + "cloid": "0x00000000000000000000000387000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.4", + "sz": "2.0641", + "side": "B", + "time": 1762185780160, + "startPosition": "-1593.3243", + "dir": "Close Short", + "closedPnl": "1092.280438", + "hash": "0x7dd815e7cf5474947f51042ec46c7002076500cd6a57936621a0c13a8e584e7f", + "oid": 221330494113, + "crossed": true, + "fee": "1.552397", + "tid": 463642018821746, + "cloid": "0x00000000000000000000000387000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.4", + "sz": "2.7905", + "side": "B", + "time": 1762185781532, + "startPosition": "-1591.2602", + "dir": "Close Short", + "closedPnl": "1476.67679", + "hash": "0x6722c7a784252584689c042ec46c7e020e74008d1f2844560aeb72fa4328ff6f", + "oid": 221330520507, + "crossed": true, + "fee": "2.098718", + "tid": 98848047212456, + "cloid": "0x00000000000000000000000387000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.11", + "sz": "60.11", + "side": "B", + "time": 1762185781770, + "startPosition": "-225885.4", + "dir": "Close Short", + "closedPnl": "2025.845253", + "hash": "0x4638cf573ddf86a947b2042ec46c81021078003cd8d2a57bea017aa9fcd36093", + "oid": 221330524141, + "crossed": true, + "fee": "2.096823", + "tid": 965114721813194, + "cloid": "0x00000000000000000000000388000309", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.8", + "sz": "2.79", + "side": "B", + "time": 1762185783608, + "startPosition": "-1588.4697", + "dir": "Close Short", + "closedPnl": "1475.2962", + "hash": "0x6c1134778bcfea896d8a042ec46c96020886005d26c3095b0fd9dfca4ac3c474", + "oid": 221330554448, + "crossed": true, + "fee": "2.098576", + "tid": 680081212893536, + "cloid": "0x00000000000000000000000387000317", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.2", + "sz": "0.1", + "side": "B", + "time": 1762185784078, + "startPosition": "-225825.29", + "dir": "Close Short", + "closedPnl": "3.36123", + "hash": "0xc6a0ec2984c3dac1c81a042ec46c9c0203f8000f1fc6f9936a69977c43c7b4ac", + "oid": 221330557753, + "crossed": true, + "fee": "0.00349", + "tid": 1077536615042384, + "cloid": "0x00000000000000000000000388000310", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.2", + "sz": "60.0", + "side": "B", + "time": 1762185784078, + "startPosition": "-225825.19", + "dir": "Close Short", + "closedPnl": "2016.738", + "hash": "0xc6a0ec2984c3dac1c81a042ec46c9c0203f8000f1fc6f9936a69977c43c7b4ac", + "oid": 221330557753, + "crossed": true, + "fee": "2.094119", + "tid": 761390785167142, + "cloid": "0x00000000000000000000000388000310", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.4", + "sz": "2.7903", + "side": "B", + "time": 1762185785481, + "startPosition": "-1585.6797", + "dir": "Close Short", + "closedPnl": "1476.570954", + "hash": "0x0ac1807bf543a6cb0c3b042ec46cad02122b00619046c59dae8a2bceb44780b5", + "oid": 221330587416, + "crossed": true, + "fee": "2.098567", + "tid": 1076009152157368, + "cloid": "0x00000000000000000000000387000318", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.15", + "sz": "45.18", + "side": "B", + "time": 1762185785825, + "startPosition": "-225765.19", + "dir": "Close Short", + "closedPnl": "1520.862714", + "hash": "0xf61552207ac36d58f78f042ec46cb00206f4000615c68c2b99ddfd7339c74743", + "oid": 221330592840, + "crossed": true, + "fee": "1.576397", + "tid": 515709215682391, + "cloid": "0x00000000000000000000000388000311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.15", + "sz": "14.95", + "side": "B", + "time": 1762185785825, + "startPosition": "-225720.01", + "dir": "Close Short", + "closedPnl": "503.251385", + "hash": "0xf61552207ac36d58f78f042ec46cb00206f4000615c68c2b99ddfd7339c74743", + "oid": 221330592840, + "crossed": true, + "fee": "0.521627", + "tid": 477879104146674, + "cloid": "0x00000000000000000000000388000311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131501.0", + "side": "B", + "time": 1762185786863, + "startPosition": "-1180042198.0", + "dir": "Close Short", + "closedPnl": "230.521253", + "hash": "0x89e2cd7ff0bec43a8b5c042ec46cbc020d6f00658bb1e30c2dab78d2afb29e25", + "oid": 221330611273, + "crossed": true, + "fee": "0.104882", + "tid": 198248767055179, + "cloid": "0x00000000000000000000000385000271", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.0", + "sz": "2.7902", + "side": "B", + "time": 1762185787595, + "startPosition": "-1582.8894", + "dir": "Close Short", + "closedPnl": "1474.843916", + "hash": "0xb96cb0d28c194b52bae6042ec46cc402146d00b8271c6a245d355c254b1d253d", + "oid": 221330626421, + "crossed": true, + "fee": "2.098844", + "tid": 780676522973768, + "cloid": "0x00000000000000000000000387000319", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.11", + "sz": "3.01", + "side": "B", + "time": 1762185787595, + "startPosition": "-225705.06", + "dir": "Close Short", + "closedPnl": "101.443923", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.104998", + "tid": 10271801799045, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.16", + "sz": "0.18", + "side": "B", + "time": 1762185787595, + "startPosition": "-225702.05", + "dir": "Close Short", + "closedPnl": "6.057414", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.00628", + "tid": 919455982097051, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.17", + "sz": "0.1", + "side": "B", + "time": 1762185787595, + "startPosition": "-225701.87", + "dir": "Close Short", + "closedPnl": "3.36423", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.003489", + "tid": 863143760145531, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.19", + "sz": "0.3", + "side": "B", + "time": 1762185787595, + "startPosition": "-225701.77", + "dir": "Close Short", + "closedPnl": "10.08669", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.010469", + "tid": 246566925680083, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.2", + "sz": "31.13", + "side": "B", + "time": 1762185787595, + "startPosition": "-225701.47", + "dir": "Close Short", + "closedPnl": "1046.350899", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "1.086499", + "tid": 93553136077242, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.2", + "sz": "0.18", + "side": "B", + "time": 1762185787595, + "startPosition": "-225670.34", + "dir": "Close Short", + "closedPnl": "6.050214", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.006282", + "tid": 798113803818840, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "3.69", + "side": "B", + "time": 1762185787595, + "startPosition": "-225670.16", + "dir": "Close Short", + "closedPnl": "123.992487", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.128796", + "tid": 928751361984424, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "3.69", + "side": "B", + "time": 1762185787595, + "startPosition": "-225666.47", + "dir": "Close Short", + "closedPnl": "123.992487", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.128796", + "tid": 699460408431221, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "3.69", + "side": "B", + "time": 1762185787595, + "startPosition": "-225662.78", + "dir": "Close Short", + "closedPnl": "123.992487", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.128796", + "tid": 37699793620681, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "3.69", + "side": "B", + "time": 1762185787595, + "startPosition": "-225659.09", + "dir": "Close Short", + "closedPnl": "123.992487", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.128796", + "tid": 264895990532283, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "3.69", + "side": "B", + "time": 1762185787595, + "startPosition": "-225655.4", + "dir": "Close Short", + "closedPnl": "123.992487", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.128796", + "tid": 711419779154035, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "3.69", + "side": "B", + "time": 1762185787595, + "startPosition": "-225651.71", + "dir": "Close Short", + "closedPnl": "123.992487", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.128796", + "tid": 801326612770445, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "3.09", + "side": "B", + "time": 1762185787595, + "startPosition": "-225648.02", + "dir": "Close Short", + "closedPnl": "103.800207", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.10786", + "tid": 464728414935773, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131544.0", + "side": "B", + "time": 1762185789376, + "startPosition": "-1179910697.0", + "dir": "Close Short", + "closedPnl": "230.333544", + "hash": "0x183b1751dcc7db8c19b4042ec46cd7020511003777cafa5ebc03c2a49bcbb576", + "oid": 221330650109, + "crossed": false, + "fee": "0.013996", + "tid": 379707716273883, + "cloid": "0x00000000000000000000000385000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.4", + "sz": "2.7896", + "side": "B", + "time": 1762185789980, + "startPosition": "-1580.0992", + "dir": "Close Short", + "closedPnl": "1473.410928", + "hash": "0x4a15fea1927624b94b8f042ec46cdc02094b00872d79438beddea9f45179fea3", + "oid": 221330661247, + "crossed": true, + "fee": "2.098627", + "tid": 1052047723546934, + "cloid": "0x00000000000000000000000387000320", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.16", + "sz": "12.03", + "side": "B", + "time": 1762185789980, + "startPosition": "-225644.93", + "dir": "Close Short", + "closedPnl": "404.837169", + "hash": "0xfb364776f6135c7afcb0042ec46cdc020995005c91167b4d9efef2c9b5173665", + "oid": 221330661299, + "crossed": true, + "fee": "0.41977", + "tid": 609067356416115, + "cloid": "0x00000000000000000000000388000313", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.16", + "sz": "48.08", + "side": "B", + "time": 1762185789980, + "startPosition": "-225632.9", + "dir": "Close Short", + "closedPnl": "1618.002584", + "hash": "0xfb364776f6135c7afcb0042ec46cdc020995005c91167b4d9efef2c9b5173665", + "oid": 221330661299, + "crossed": true, + "fee": "1.677684", + "tid": 749536136578927, + "cloid": "0x00000000000000000000000388000313", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "1.08", + "side": "B", + "time": 1762185792149, + "startPosition": "-225584.82", + "dir": "Close Short", + "closedPnl": "36.279684", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.037698", + "tid": 1102840166582640, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.41", + "side": "B", + "time": 1762185792149, + "startPosition": "-225583.74", + "dir": "Close Short", + "closedPnl": "13.768743", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.014312", + "tid": 780384197235963, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.41", + "side": "B", + "time": 1762185792149, + "startPosition": "-225583.33", + "dir": "Close Short", + "closedPnl": "13.768743", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.014312", + "tid": 624080984269249, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.41", + "side": "B", + "time": 1762185792149, + "startPosition": "-225582.92", + "dir": "Close Short", + "closedPnl": "13.768743", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.014312", + "tid": 74863012575321, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.41", + "side": "B", + "time": 1762185792149, + "startPosition": "-225582.51", + "dir": "Close Short", + "closedPnl": "13.768743", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.014312", + "tid": 87800980592305, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.41", + "side": "B", + "time": 1762185792149, + "startPosition": "-225582.1", + "dir": "Close Short", + "closedPnl": "13.768743", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.014312", + "tid": 618109292212887, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.41", + "side": "B", + "time": 1762185792149, + "startPosition": "-225581.69", + "dir": "Close Short", + "closedPnl": "13.768743", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.014312", + "tid": 814058936196367, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "0.1", + "side": "B", + "time": 1762185792149, + "startPosition": "-225581.28", + "dir": "Close Short", + "closedPnl": "3.35723", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.003491", + "tid": 11079909624940, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "0.1", + "side": "B", + "time": 1762185792149, + "startPosition": "-225581.18", + "dir": "Close Short", + "closedPnl": "3.35723", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.003491", + "tid": 459786286307317, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "6.7", + "side": "B", + "time": 1762185792149, + "startPosition": "-225581.08", + "dir": "Close Short", + "closedPnl": "224.86741", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.233913", + "tid": 273738020970872, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "0.18", + "side": "B", + "time": 1762185792149, + "startPosition": "-225574.38", + "dir": "Close Short", + "closedPnl": "6.041214", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.006284", + "tid": 716972768364664, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.26", + "sz": "49.47", + "side": "B", + "time": 1762185792149, + "startPosition": "-225574.2", + "dir": "Close Short", + "closedPnl": "1659.832281", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "1.727225", + "tid": 248956286787613, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.8", + "sz": "0.0042", + "side": "B", + "time": 1762185792868, + "startPosition": "-1577.3096", + "dir": "Close Short", + "closedPnl": "2.216676", + "hash": "0xc93adfde6b3fb77bcab4042ec46d0102093e00c40632d64d6d038b312a339166", + "oid": 221330712044, + "crossed": true, + "fee": "0.00316", + "tid": 608574949268802, + "cloid": "0x00000000000000000000000387000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.8", + "sz": "0.2791", + "side": "B", + "time": 1762185792868, + "startPosition": "-1577.3054", + "dir": "Close Short", + "closedPnl": "147.303398", + "hash": "0xc93adfde6b3fb77bcab4042ec46d0102093e00c40632d64d6d038b312a339166", + "oid": 221330712044, + "crossed": true, + "fee": "0.209991", + "tid": 269343435295838, + "cloid": "0x00000000000000000000000387000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.8", + "sz": "0.2791", + "side": "B", + "time": 1762185792868, + "startPosition": "-1577.0263", + "dir": "Close Short", + "closedPnl": "147.303398", + "hash": "0xc93adfde6b3fb77bcab4042ec46d0102093e00c40632d64d6d038b312a339166", + "oid": 221330712044, + "crossed": true, + "fee": "0.209991", + "tid": 76004142313076, + "cloid": "0x00000000000000000000000387000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.8", + "sz": "0.2791", + "side": "B", + "time": 1762185792868, + "startPosition": "-1576.7472", + "dir": "Close Short", + "closedPnl": "147.303398", + "hash": "0xc93adfde6b3fb77bcab4042ec46d0102093e00c40632d64d6d038b312a339166", + "oid": 221330712044, + "crossed": true, + "fee": "0.209991", + "tid": 358268970999263, + "cloid": "0x00000000000000000000000387000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.8", + "sz": "1.9472", + "side": "B", + "time": 1762185792868, + "startPosition": "-1576.4681", + "dir": "Close Short", + "closedPnl": "1027.693216", + "hash": "0xc93adfde6b3fb77bcab4042ec46d0102093e00c40632d64d6d038b312a339166", + "oid": 221330712044, + "crossed": true, + "fee": "1.465049", + "tid": 84606166872548, + "cloid": "0x00000000000000000000000387000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.26", + "sz": "12.02", + "side": "B", + "time": 1762185793701, + "startPosition": "-225524.73", + "dir": "Close Short", + "closedPnl": "403.298646", + "hash": "0xf6e3067b2891d584f85c042ec46d0b0203d20060c394f4579aabb1cde795af6f", + "oid": 221330723864, + "crossed": true, + "fee": "0.419673", + "tid": 764859414219131, + "cloid": "0x00000000000000000000000388000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.27", + "sz": "0.1", + "side": "B", + "time": 1762185793701, + "startPosition": "-225512.71", + "dir": "Close Short", + "closedPnl": "3.35423", + "hash": "0xf6e3067b2891d584f85c042ec46d0b0203d20060c394f4579aabb1cde795af6f", + "oid": 221330723864, + "crossed": true, + "fee": "0.003491", + "tid": 936345538711728, + "cloid": "0x00000000000000000000000388000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.27", + "sz": "0.58", + "side": "B", + "time": 1762185793701, + "startPosition": "-225512.61", + "dir": "Close Short", + "closedPnl": "19.454534", + "hash": "0xf6e3067b2891d584f85c042ec46d0b0203d20060c394f4579aabb1cde795af6f", + "oid": 221330723864, + "crossed": true, + "fee": "0.020251", + "tid": 295476973447399, + "cloid": "0x00000000000000000000000388000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.28", + "sz": "0.1", + "side": "B", + "time": 1762185793701, + "startPosition": "-225512.03", + "dir": "Close Short", + "closedPnl": "3.35323", + "hash": "0xf6e3067b2891d584f85c042ec46d0b0203d20060c394f4579aabb1cde795af6f", + "oid": 221330723864, + "crossed": true, + "fee": "0.003491", + "tid": 337548073558809, + "cloid": "0x00000000000000000000000388000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.28", + "sz": "0.1", + "side": "B", + "time": 1762185793701, + "startPosition": "-225511.93", + "dir": "Close Short", + "closedPnl": "3.35323", + "hash": "0xf6e3067b2891d584f85c042ec46d0b0203d20060c394f4579aabb1cde795af6f", + "oid": 221330723864, + "crossed": true, + "fee": "0.003491", + "tid": 1022567371824056, + "cloid": "0x00000000000000000000000388000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.28", + "sz": "28.0", + "side": "B", + "time": 1762185793701, + "startPosition": "-225511.83", + "dir": "Close Short", + "closedPnl": "938.9044", + "hash": "0xf6e3067b2891d584f85c042ec46d0b0203d20060c394f4579aabb1cde795af6f", + "oid": 221330723864, + "crossed": true, + "fee": "0.977726", + "tid": 259206197864883, + "cloid": "0x00000000000000000000000388000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.3", + "sz": "19.18", + "side": "B", + "time": 1762185793701, + "startPosition": "-225483.83", + "dir": "Close Short", + "closedPnl": "642.765914", + "hash": "0xf6e3067b2891d584f85c042ec46d0b0203d20060c394f4579aabb1cde795af6f", + "oid": 221330723864, + "crossed": true, + "fee": "0.669823", + "tid": 613731622405323, + "cloid": "0x00000000000000000000000388000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.8", + "sz": "2.7884", + "side": "B", + "time": 1762185794459, + "startPosition": "-1574.5209", + "dir": "Close Short", + "closedPnl": "1471.661752", + "hash": "0x22ef7978fb3b43392469042ec46d14019f00915e963e620bc6b824cbba3f1d23", + "oid": 221330732480, + "crossed": true, + "fee": "2.097958", + "tid": 981144340360458, + "cloid": "0x00000000000000000000000387000322", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.34", + "sz": "0.3", + "side": "B", + "time": 1762185796455, + "startPosition": "-225464.65", + "dir": "Close Short", + "closedPnl": "10.04169", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.010479", + "tid": 758693448633852, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "0.18", + "side": "B", + "time": 1762185796455, + "startPosition": "-225464.35", + "dir": "Close Short", + "closedPnl": "6.023214", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.006288", + "tid": 769934774963102, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.36", + "sz": "0.1", + "side": "B", + "time": 1762185796455, + "startPosition": "-225464.17", + "dir": "Close Short", + "closedPnl": "3.34523", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.003493", + "tid": 735540304110242, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.36", + "sz": "25.96", + "side": "B", + "time": 1762185796455, + "startPosition": "-225464.07", + "dir": "Close Short", + "closedPnl": "868.421708", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.906928", + "tid": 880662633323538, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.37", + "sz": "6.01", + "side": "B", + "time": 1762185796455, + "startPosition": "-225438.11", + "dir": "Close Short", + "closedPnl": "200.988223", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.209975", + "tid": 653211557557681, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.39", + "sz": "6.01", + "side": "B", + "time": 1762185796455, + "startPosition": "-225432.1", + "dir": "Close Short", + "closedPnl": "200.868023", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.21", + "tid": 1068158116406022, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.39", + "sz": "0.18", + "side": "B", + "time": 1762185796455, + "startPosition": "-225426.09", + "dir": "Close Short", + "closedPnl": "6.016014", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.006289", + "tid": 597886935937683, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "6.01", + "side": "B", + "time": 1762185796455, + "startPosition": "-225425.91", + "dir": "Close Short", + "closedPnl": "200.807923", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.210013", + "tid": 284206157834715, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "0.84", + "side": "B", + "time": 1762185796455, + "startPosition": "-225419.9", + "dir": "Close Short", + "closedPnl": "28.066332", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.029352", + "tid": 347001598405790, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "0.1", + "side": "B", + "time": 1762185796455, + "startPosition": "-225419.06", + "dir": "Close Short", + "closedPnl": "3.34123", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.003494", + "tid": 471707328112319, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "5.97", + "side": "B", + "time": 1762185796455, + "startPosition": "-225418.96", + "dir": "Close Short", + "closedPnl": "199.411731", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.208628", + "tid": 961592328056937, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "5.97", + "side": "B", + "time": 1762185796455, + "startPosition": "-225412.99", + "dir": "Close Short", + "closedPnl": "199.411731", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.208628", + "tid": 858329858723820, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "0.36", + "side": "B", + "time": 1762185796455, + "startPosition": "-225407.02", + "dir": "Close Short", + "closedPnl": "12.024828", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.01258", + "tid": 406092849470848, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "0.29", + "side": "B", + "time": 1762185796455, + "startPosition": "-225406.66", + "dir": "Close Short", + "closedPnl": "9.686667", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.010134", + "tid": 831088999206271, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.42", + "sz": "1.79", + "side": "B", + "time": 1762185796455, + "startPosition": "-225406.37", + "dir": "Close Short", + "closedPnl": "59.772217", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.062557", + "tid": 615211282825143, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.8", + "sz": "2.7889", + "side": "B", + "time": 1762185797495, + "startPosition": "-1571.7325", + "dir": "Close Short", + "closedPnl": "1466.347842", + "hash": "0xf973915f8fb97d66faed042ec46d390207ae00452abc9c399d3c3cb24ebd5751", + "oid": 221330790717, + "crossed": true, + "fee": "2.099506", + "tid": 847474953833211, + "cloid": "0x00000000000000000000000387000323", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "59.95", + "side": "B", + "time": 1762185799633, + "startPosition": "-225404.58", + "dir": "Close Short", + "closedPnl": "1991.676885", + "hash": "0x13b58eb4417febbd152f042ec46d5201ed00a699dc730a8fb77e3a070073c5a7", + "oid": 221330829603, + "crossed": true, + "fee": "2.097284", + "tid": 9302251407368, + "cloid": "0x00000000000000000000000388000317", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.4", + "sz": "2.7855", + "side": "B", + "time": 1762185800205, + "startPosition": "-1568.9436", + "dir": "Close Short", + "closedPnl": "1457.31789", + "hash": "0x20ffad64cf906a382279042ec46d59021dbc004a6a93890ac4c858b78e944422", + "oid": 221330840253, + "crossed": true, + "fee": "2.098467", + "tid": 682750892894701, + "cloid": "0x00000000000000000000000387000324", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "39.21", + "side": "B", + "time": 1762185801676, + "startPosition": "-225344.63", + "dir": "Close Short", + "closedPnl": "1304.998983", + "hash": "0xc0d46f44d58f1f18c24e042ec46d6b021a99002a70823dea649d1a979482f903", + "oid": 221330874353, + "crossed": true, + "fee": "1.371224", + "tid": 950831659206032, + "cloid": "0x00000000000000000000000388000318", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "20.78", + "side": "B", + "time": 1762185801676, + "startPosition": "-225305.42", + "dir": "Close Short", + "closedPnl": "691.606194", + "hash": "0xc0d46f44d58f1f18c24e042ec46d6b021a99002a70823dea649d1a979482f903", + "oid": 221330874353, + "crossed": true, + "fee": "0.726703", + "tid": 419125403875175, + "cloid": "0x00000000000000000000000388000318", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003813", + "sz": "131488.0", + "side": "B", + "time": 1762185802175, + "startPosition": "-1179779153.0", + "dir": "Close Short", + "closedPnl": "228.526144", + "hash": "0x5984459826069e605afe042ec46d7202087e007dc109bd32fd4cf0eae50a784a", + "oid": 221330885172, + "crossed": true, + "fee": "0.105286", + "tid": 379661836918145, + "cloid": "0x00000000000000000000000385000276", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.2", + "sz": "2.4986", + "side": "B", + "time": 1762185803013, + "startPosition": "-1566.1581", + "dir": "Close Short", + "closedPnl": "1310.215868", + "hash": "0xaca8c70ad5b17192ae22042ec46d7b02164400f070b490645071725d94b54b7d", + "oid": 221330898356, + "crossed": true, + "fee": "1.8817", + "tid": 943201916102586, + "cloid": "0x00000000000000000000000387000325", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.2", + "sz": "0.2879", + "side": "B", + "time": 1762185803013, + "startPosition": "-1563.6595", + "dir": "Close Short", + "closedPnl": "150.969002", + "hash": "0xaca8c70ad5b17192ae22042ec46d7b02164400f070b490645071725d94b54b7d", + "oid": 221330898356, + "crossed": true, + "fee": "0.216818", + "tid": 477296205148378, + "cloid": "0x00000000000000000000000387000325", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "59.98", + "side": "B", + "time": 1762185803421, + "startPosition": "-225284.64", + "dir": "Close Short", + "closedPnl": "1998.671554", + "hash": "0xca75bb93e3918f1dcbef042ec46d800203f900797e94adef6e3e66e6a2956908", + "oid": 221330902594, + "crossed": true, + "fee": "2.097074", + "tid": 127464157889555, + "cloid": "0x00000000000000000000000388000319", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "2.786", + "side": "B", + "time": 1762185804981, + "startPosition": "-1563.3716", + "dir": "Close Short", + "closedPnl": "1460.36548", + "hash": "0x8acedc388e31b47e8c48042ec46d97020180001e2934d3502e97878b4d358e69", + "oid": 221330924655, + "crossed": true, + "fee": "2.098259", + "tid": 701664072528052, + "cloid": "0x00000000000000000000000387000326", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.9", + "sz": "2.7855", + "side": "B", + "time": 1762185806696, + "startPosition": "-1560.5856", + "dir": "Close Short", + "closedPnl": "1458.71064", + "hash": "0xd2fd2e3f9a3505dad476042ec46dac0203170025353824ac76c5d9925938dfc5", + "oid": 221330956927, + "crossed": true, + "fee": "2.098175", + "tid": 861773015009971, + "cloid": "0x00000000000000000000000387000327", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "59.94", + "side": "B", + "time": 1762185807376, + "startPosition": "-225224.66", + "dir": "Close Short", + "closedPnl": "1990.145862", + "hash": "0x22649554e863563023de042ec46db5020b05003a83667502c62d40a7a767301a", + "oid": 221330974856, + "crossed": true, + "fee": "2.097186", + "tid": 879958665417716, + "cloid": "0x00000000000000000000000388000320", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003816", + "sz": "131130.0", + "side": "B", + "time": 1762185807376, + "startPosition": "-1179647665.0", + "dir": "Close Short", + "closedPnl": "227.51055", + "hash": "0xedb26fc14ea8601eef2c042ec46db5020b0900a6e9ab7ef0917b1b140dac3a09", + "oid": 221330974858, + "crossed": true, + "fee": "0.105082", + "tid": 644938286336001, + "cloid": "0x00000000000000000000000385000278", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.2", + "sz": "0.2787", + "side": "B", + "time": 1762185808541, + "startPosition": "-1557.8001", + "dir": "Close Short", + "closedPnl": "145.866006", + "hash": "0x6d421787da5eb7836ebb042ec46dc3020bb6006d7551d655110ac2da9952916e", + "oid": 221330994163, + "crossed": true, + "fee": "0.209948", + "tid": 2995195072929, + "cloid": "0x00000000000000000000000387000328", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.2", + "sz": "2.5074", + "side": "B", + "time": 1762185808541, + "startPosition": "-1557.5214", + "dir": "Close Short", + "closedPnl": "1312.323012", + "hash": "0x6d421787da5eb7836ebb042ec46dc3020bb6006d7551d655110ac2da9952916e", + "oid": 221330994163, + "crossed": true, + "fee": "1.888854", + "tid": 1014288960162846, + "cloid": "0x00000000000000000000000387000328", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003815", + "sz": "131027.0", + "side": "B", + "time": 1762185809326, + "startPosition": "-1179516535.0", + "dir": "Close Short", + "closedPnl": "227.462872", + "hash": "0x029b7d4fe4be291c0415042ec46dcd02039a00357fb147eea66428a2a3b20306", + "oid": 221331004048, + "crossed": true, + "fee": "0.104972", + "tid": 695274215362421, + "cloid": "0x00000000000000000000000385000279", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "16.82", + "side": "B", + "time": 1762185809858, + "startPosition": "-225164.72", + "dir": "Close Short", + "closedPnl": "558.462686", + "hash": "0xc1ccb5a9e50052b1c346042ec46dd3020649008f80037183659560fca4042c9c", + "oid": 221331009944, + "crossed": true, + "fee": "0.588499", + "tid": 47212191142598, + "cloid": "0x00000000000000000000000388000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "43.12", + "side": "B", + "time": 1762185809858, + "startPosition": "-225147.9", + "dir": "Close Short", + "closedPnl": "1431.683176", + "hash": "0xc1ccb5a9e50052b1c346042ec46dd3020649008f80037183659560fca4042c9c", + "oid": 221331009944, + "crossed": true, + "fee": "1.508686", + "tid": 50109340820400, + "cloid": "0x00000000000000000000000388000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003815", + "sz": "131027.0", + "side": "B", + "time": 1762185810921, + "startPosition": "-1179385508.0", + "dir": "Close Short", + "closedPnl": "227.462872", + "hash": "0x61d7520d1997d4396351042ec46ddf020e3e00f2b49af30b059ffd5fd89bae24", + "oid": 221331031967, + "crossed": true, + "fee": "0.104972", + "tid": 344718286011281, + "cloid": "0x00000000000000000000000385000280", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.4", + "sz": "2.7854", + "side": "B", + "time": 1762185811209, + "startPosition": "-1555.014", + "dir": "Close Short", + "closedPnl": "1457.265572", + "hash": "0xeee6cf4594574efdf060042ec46de3020fb6002b2f5a6dcf92af7a98535b28e8", + "oid": 221331037633, + "crossed": true, + "fee": "2.098392", + "tid": 831973232335976, + "cloid": "0x00000000000000000000000387000329", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "59.96", + "side": "B", + "time": 1762185811575, + "startPosition": "-225104.78", + "dir": "Close Short", + "closedPnl": "1991.409508", + "hash": "0xb156ba7070bf478fb2d0042ec46de7020c5800560bb26661551f65c32fb3217a", + "oid": 221331041801, + "crossed": true, + "fee": "2.09776", + "tid": 960291725557462, + "cloid": "0x00000000000000000000000388000322", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.5", + "sz": "1.1785", + "side": "B", + "time": 1762185813075, + "startPosition": "-1552.2286", + "dir": "Close Short", + "closedPnl": "617.62828", + "hash": "0x626aac7e8beaecdf63e4042ec46dfa0207e4006426ee0bb1063357d14aeec6ca", + "oid": 221331083916, + "crossed": true, + "fee": "0.887604", + "tid": 1037710444392309, + "cloid": "0x00000000000000000000000387000330", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.5", + "sz": "1.6077", + "side": "B", + "time": 1762185813075, + "startPosition": "-1551.0501", + "dir": "Close Short", + "closedPnl": "842.563416", + "hash": "0x626aac7e8beaecdf63e4042ec46dfa0207e4006426ee0bb1063357d14aeec6ca", + "oid": 221331083916, + "crossed": true, + "fee": "1.210863", + "tid": 747750937591799, + "cloid": "0x00000000000000000000000387000330", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "31.97", + "side": "B", + "time": 1762185813587, + "startPosition": "-225044.82", + "dir": "Close Short", + "closedPnl": "1067.871531", + "hash": "0xec7a77fdb626c75dedf4042ec46e010219c500e35129e62f90432350752aa148", + "oid": 221331094764, + "crossed": true, + "fee": "1.117226", + "tid": 706261222292290, + "cloid": "0x00000000000000000000000388000323", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "28.06", + "side": "B", + "time": 1762185813587, + "startPosition": "-225012.85", + "dir": "Close Short", + "closedPnl": "937.268538", + "hash": "0xec7a77fdb626c75dedf4042ec46e010219c500e35129e62f90432350752aa148", + "oid": 221331094764, + "crossed": true, + "fee": "0.980587", + "tid": 821960393660361, + "cloid": "0x00000000000000000000000388000323", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131302.0", + "side": "B", + "time": 1762185814018, + "startPosition": "-1179254481.0", + "dir": "Close Short", + "closedPnl": "228.728084", + "hash": "0x9706ef5911f897fa9880042ec46e06020cb1003eacfbb6cc3acf9aabd0fc71e5", + "oid": 221331103031, + "crossed": true, + "fee": "0.105027", + "tid": 990772383721757, + "cloid": "0x00000000000000000000000385000281", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.6", + "sz": "2.7868", + "side": "B", + "time": 1762185814835, + "startPosition": "-1549.4424", + "dir": "Close Short", + "closedPnl": "1463.014264", + "hash": "0x93a29098cbe0e86a951c042ec46e11020b31007e66e4073c376b3beb8ae4c255", + "oid": 221331117064, + "crossed": true, + "fee": "2.098393", + "tid": 279965418447838, + "cloid": "0x00000000000000000000000387000331", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "60.05", + "side": "B", + "time": 1762185815805, + "startPosition": "-224984.79", + "dir": "Close Short", + "closedPnl": "2009.411115", + "hash": "0x35a06a27bd7a349a371a042ec46e1e0205b1000d587d536cd969157a7c7e0e84", + "oid": 221331150416, + "crossed": true, + "fee": "2.097756", + "tid": 790228851689074, + "cloid": "0x00000000000000000000000388000324", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.8", + "sz": "2.7876", + "side": "B", + "time": 1762185816988, + "startPosition": "-1546.6556", + "dir": "Close Short", + "closedPnl": "1465.664328", + "hash": "0x67c379235ba40e8c693d042ec46e2b02138b0008f6a72d5e0b8c24761aa7e877", + "oid": 221331180480, + "crossed": true, + "fee": "2.098527", + "tid": 585850309014402, + "cloid": "0x00000000000000000000000387000332", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "60.04", + "side": "B", + "time": 1762185817658, + "startPosition": "-224924.74", + "dir": "Close Short", + "closedPnl": "2009.076492", + "hash": "0x8b504ad83f702aec8cca042ec46e34020be300bdda7349be2f18f62afe7404d7", + "oid": 221331189078, + "crossed": true, + "fee": "2.097407", + "tid": 1095744989861472, + "cloid": "0x00000000000000000000000388000325", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.8", + "sz": "2.7872", + "side": "B", + "time": 1762185819388, + "startPosition": "-1543.868", + "dir": "Close Short", + "closedPnl": "1465.454016", + "hash": "0x466839713871e9a747e1042ec46e490204ca0056d3750879ea30e4c3f775c391", + "oid": 221331217195, + "crossed": true, + "fee": "2.098226", + "tid": 538983163184824, + "cloid": "0x00000000000000000000000387000333", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "131427.0", + "side": "B", + "time": 1762185819666, + "startPosition": "-1179123179.0", + "dir": "Close Short", + "closedPnl": "229.208688", + "hash": "0x30f5e332bc96779f326f042ec46e4d020548001857999671d4be8e857b9a5189", + "oid": 221331219647, + "crossed": true, + "fee": "0.105071", + "tid": 542629067341419, + "cloid": "0x00000000000000000000000385000283", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.37", + "sz": "60.04", + "side": "B", + "time": 1762185820047, + "startPosition": "-224864.7", + "dir": "Close Short", + "closedPnl": "2007.875692", + "hash": "0x567bebc44996577357f5042ec46e53020bfa00a9e4997645fa449717089a315d", + "oid": 221331231621, + "crossed": true, + "fee": "2.097659", + "tid": 337502520521729, + "cloid": "0x00000000000000000000000388000326", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26821", + "sz": "3749.9", + "side": "B", + "time": 1762185821209, + "startPosition": "-3985537.1000000001", + "dir": "Close Short", + "closedPnl": "1998.921694", + "hash": "0x59dd5de5430cbaee5b57042ec46e6202021e00cade0fd9c0fda60938020094d8", + "oid": 221331252510, + "crossed": true, + "fee": "0.211209", + "tid": 675631448090314, + "cloid": "0x00000000000000000000000384000148", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.7", + "sz": "2.7887", + "side": "B", + "time": 1762185821209, + "startPosition": "-1541.0808", + "dir": "Close Short", + "closedPnl": "1469.310256", + "hash": "0x561ffff442a953c35799042ec46e6202022800d9ddac7295f9e8ab4701ad2dad", + "oid": 221331252516, + "crossed": true, + "fee": "2.098711", + "tid": 828815196481086, + "cloid": "0x00000000000000000000000387000334", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003805", + "sz": "131397.0", + "side": "B", + "time": 1762185821887, + "startPosition": "-1178991752.0", + "dir": "Close Short", + "closedPnl": "229.419162", + "hash": "0x257381c76138c7c926ed042ec46e6a0208d100acfc3be69bc93c2d1a203ca1b3", + "oid": 221331271180, + "crossed": true, + "fee": "0.104992", + "tid": 950016268995583, + "cloid": "0x00000000000000000000000385000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "60.06", + "side": "B", + "time": 1762185822088, + "startPosition": "-224804.66", + "dir": "Close Short", + "closedPnl": "2010.946938", + "hash": "0x5d9c5343faee31885f16042ec46e6d0208d5002995e1505a0164fe96b9e20b73", + "oid": 221331274927, + "crossed": true, + "fee": "2.097853", + "tid": 645004991921401, + "cloid": "0x00000000000000000000000388000327", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26814", + "sz": "3439.6", + "side": "A", + "time": 1762185822088, + "startPosition": "4003133.5960630002", + "dir": "Sell", + "closedPnl": "-1835.21168844", + "hash": "0x2cfe8e06f601f4592e78042ec46e6d02095700ec9105132bd0c73959b505ce43", + "oid": 221331275029, + "crossed": true, + "fee": "0.25824241", + "tid": 65209298113409, + "cloid": "0x10000000000000000000000475000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26791", + "sz": "310.3", + "side": "A", + "time": 1762185822799, + "startPosition": "3999693.9960630001", + "dir": "Sell", + "closedPnl": "-165.63311656", + "hash": "0xce84a2ab5b8fc036cffe042ec46e7402050c0090f682df08724d4dfe1a839a21", + "oid": 221331275029, + "crossed": false, + "fee": "0.00581927", + "tid": 117018572822683, + "cloid": "0x10000000000000000000000475000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.5", + "sz": "2.7886", + "side": "B", + "time": 1762185822999, + "startPosition": "-1538.2921", + "dir": "Close Short", + "closedPnl": "1469.815288", + "hash": "0xaba8162065619176ad21042ec46e760205d000060064b0484f70c17324656b61", + "oid": 221331286559, + "crossed": true, + "fee": "2.098519", + "tid": 796815719761869, + "cloid": "0x00000000000000000000000387000335", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105625.0", + "sz": "0.23649", + "side": "B", + "time": 1762185822999, + "startPosition": "-1175.95405", + "dir": "Close Short", + "closedPnl": "2043.841176", + "hash": "0xbca7be0fb15e8a93be21042ec46e760205e700f54c51a965607069627052647e", + "oid": 221331286576, + "crossed": true, + "fee": "5.245643", + "tid": 331093732875944, + "cloid": "0x00000000000000000000000389000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "21.26", + "side": "B", + "time": 1762185824009, + "startPosition": "-224744.6", + "dir": "Close Short", + "closedPnl": "711.833698", + "hash": "0xd4cd1c468f576633d646042ec46e81020350002c2a5a85057895c7994e5b401e", + "oid": 221331301723, + "crossed": true, + "fee": "0.742596", + "tid": 183574736466695, + "cloid": "0x00000000000000000000000388000328", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "38.79", + "side": "B", + "time": 1762185824009, + "startPosition": "-224723.34", + "dir": "Close Short", + "closedPnl": "1298.778417", + "hash": "0xd4cd1c468f576633d646042ec46e81020350002c2a5a85057895c7994e5b401e", + "oid": 221331301723, + "crossed": true, + "fee": "1.354907", + "tid": 678624699113201, + "cloid": "0x00000000000000000000000388000328", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105625.0", + "sz": "0.23649", + "side": "B", + "time": 1762185824304, + "startPosition": "-1175.71756", + "dir": "Close Short", + "closedPnl": "2043.841176", + "hash": "0x9106b935225f0abf9280042ec46e86020327001abd52299134cf6487e152e4aa", + "oid": 221331305749, + "crossed": true, + "fee": "5.245643", + "tid": 980323150269611, + "cloid": "0x00000000000000000000000389000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.6", + "sz": "1.8", + "side": "B", + "time": 1762185824969, + "startPosition": "-1535.5035", + "dir": "Close Short", + "closedPnl": "950.364", + "hash": "0xfa44f30f7d80bfd8fbbe042ec46e8f02046500f51883deab9e0d9e623c8499c3", + "oid": 221331314637, + "crossed": true, + "fee": "1.354222", + "tid": 590841275133702, + "cloid": "0x00000000000000000000000387000336", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.6", + "sz": "0.9891", + "side": "B", + "time": 1762185824969, + "startPosition": "-1533.7035", + "dir": "Close Short", + "closedPnl": "522.225018", + "hash": "0xfa44f30f7d80bfd8fbbe042ec46e8f02046500f51883deab9e0d9e623c8499c3", + "oid": 221331314637, + "crossed": true, + "fee": "0.744145", + "tid": 106983875738655, + "cloid": "0x00000000000000000000000387000336", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "60.05", + "side": "B", + "time": 1762185826120, + "startPosition": "-224684.55", + "dir": "Close Short", + "closedPnl": "2010.612115", + "hash": "0x476c0be2b3c002c848e5042ec46e9e0206de00c84ec3219aeb34b73572c3dcb2", + "oid": 221331338682, + "crossed": true, + "fee": "2.097504", + "tid": 360915466757750, + "cloid": "0x00000000000000000000000388000329", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105629.0", + "sz": "0.2365", + "side": "B", + "time": 1762185826120, + "startPosition": "-1175.48107", + "dir": "Close Short", + "closedPnl": "2042.9816", + "hash": "0xba554317327c19b1bbce042ec46e9e02070100fccd7f38835e1dee69f17ff39c", + "oid": 221331338702, + "crossed": true, + "fee": "5.246064", + "tid": 406757201292198, + "cloid": "0x00000000000000000000000389000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.3", + "sz": "0.1395", + "side": "B", + "time": 1762185826494, + "startPosition": "-1532.7144", + "dir": "Close Short", + "closedPnl": "73.55556", + "hash": "0x1c205036325253151d9a042ec46ea301d600681bcd5571e7bfe8fb88f1562cff", + "oid": 221331346502, + "crossed": true, + "fee": "0.104972", + "tid": 850511171861134, + "cloid": "0x00000000000000000000000387000337", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.6", + "sz": "2.6495", + "side": "B", + "time": 1762185826494, + "startPosition": "-1532.5749", + "dir": "Close Short", + "closedPnl": "1396.23351", + "hash": "0x1c205036325253151d9a042ec46ea301d600681bcd5571e7bfe8fb88f1562cff", + "oid": 221331346502, + "crossed": true, + "fee": "1.993897", + "tid": 897503345813436, + "cloid": "0x00000000000000000000000387000337", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003805", + "sz": "131432.0", + "side": "B", + "time": 1762185826494, + "startPosition": "-1178860355.0", + "dir": "Close Short", + "closedPnl": "229.480272", + "hash": "0x81c73d6c6574d80c8340042ec46ea301d80055520077f6de258fe8bf2478b1f7", + "oid": 221331346503, + "crossed": true, + "fee": "0.10502", + "tid": 186137830442761, + "cloid": "0x00000000000000000000000385000286", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.34", + "sz": "60.04", + "side": "B", + "time": 1762185827848, + "startPosition": "-224624.5", + "dir": "Close Short", + "closedPnl": "2009.676892", + "hash": "0xaa761615badd3be6abef042ec46eb302064e00fb55d05ab84e3ec16879d115d1", + "oid": 221331374452, + "crossed": true, + "fee": "2.097281", + "tid": 787179883758756, + "cloid": "0x00000000000000000000000388000330", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003806", + "sz": "131406.0", + "side": "B", + "time": 1762185827993, + "startPosition": "-1178728923.0", + "dir": "Close Short", + "closedPnl": "229.30347", + "hash": "0x999e7c3e6d04dfb69b18042ec46eb50202df00240807fe883d6727912c08b9a1", + "oid": 221331376853, + "crossed": true, + "fee": "0.105027", + "tid": 872849036240701, + "cloid": "0x00000000000000000000000385000287", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.2", + "sz": "0.198", + "side": "B", + "time": 1762185828849, + "startPosition": "-1529.9254", + "dir": "Close Short", + "closedPnl": "104.22324", + "hash": "0x78bdaa8283a8a2ea7a37042ec46ebf02042700681eabc1bc1c8655d542ac7cd5", + "oid": 221331393648, + "crossed": true, + "fee": "0.149031", + "tid": 256874748537051, + "cloid": "0x00000000000000000000000387000338", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.2", + "sz": "2.5902", + "side": "B", + "time": 1762185828849, + "startPosition": "-1529.7274", + "dir": "Close Short", + "closedPnl": "1363.429476", + "hash": "0x78bdaa8283a8a2ea7a37042ec46ebf02042700681eabc1bc1c8655d542ac7cd5", + "oid": 221331393648, + "crossed": true, + "fee": "1.949596", + "tid": 462877674921804, + "cloid": "0x00000000000000000000000387000338", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105643.0", + "sz": "0.17693", + "side": "B", + "time": 1762185829123, + "startPosition": "-1175.24457", + "dir": "Close Short", + "closedPnl": "1525.915092", + "hash": "0xcd5d826c94de4e4bced7042ec46ec302089e00522fd16d1d71262dbf53d22836", + "oid": 221331398306, + "crossed": true, + "fee": "3.925197", + "tid": 1054865124360559, + "cloid": "0x00000000000000000000000389000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105643.0", + "sz": "0.05955", + "side": "B", + "time": 1762185829123, + "startPosition": "-1175.06764", + "dir": "Close Short", + "closedPnl": "513.58302", + "hash": "0xcd5d826c94de4e4bced7042ec46ec302089e00522fd16d1d71262dbf53d22836", + "oid": 221331398306, + "crossed": true, + "fee": "1.321118", + "tid": 1039816291129820, + "cloid": "0x00000000000000000000000389000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003804", + "sz": "131406.0", + "side": "B", + "time": 1762185829532, + "startPosition": "-1178597517.0", + "dir": "Close Short", + "closedPnl": "229.566282", + "hash": "0xdb17b31f3beed2b6dc91042ec46ec90204990004d6e1f1887ee05e71fae2aca1", + "oid": 221331403880, + "crossed": true, + "fee": "0.104972", + "tid": 208086449603920, + "cloid": "0x00000000000000000000000385000288", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "60.03", + "side": "B", + "time": 1762185829796, + "startPosition": "-224564.46", + "dir": "Close Short", + "closedPnl": "2005.740369", + "hash": "0x7b882ca1b0f166e77d01042ec46ecd0203fe00874bf485b91f50d7f46ff540d2", + "oid": 221331406312, + "crossed": true, + "fee": "2.097688", + "tid": 620105576724118, + "cloid": "0x00000000000000000000000388000331", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105643.0", + "sz": "0.23646", + "side": "B", + "time": 1762185830811, + "startPosition": "-1175.00809", + "dir": "Close Short", + "closedPnl": "2039.325624", + "hash": "0x5c533d1876f4c6835dcc042ec46edb02069800fe11f7e555001be86b35f8a06e", + "oid": 221331423906, + "crossed": true, + "fee": "5.245872", + "tid": 1022026211162963, + "cloid": "0x00000000000000000000000389000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.5", + "sz": "1.4807", + "side": "B", + "time": 1762185831011, + "startPosition": "-1527.1372", + "dir": "Close Short", + "closedPnl": "780.447356", + "hash": "0x00efb2e21b8ce0220269042ec46ede02057a00c7b68ffef4a4b85e34da80ba0c", + "oid": 221331427069, + "crossed": true, + "fee": "1.114278", + "tid": 632853584070122, + "cloid": "0x00000000000000000000000387000339", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.5", + "sz": "1.3076", + "side": "B", + "time": 1762185831011, + "startPosition": "-1525.6565", + "dir": "Close Short", + "closedPnl": "689.209808", + "hash": "0x00efb2e21b8ce0220269042ec46ede02057a00c7b68ffef4a4b85e34da80ba0c", + "oid": 221331427069, + "crossed": true, + "fee": "0.984014", + "tid": 46169931483416, + "cloid": "0x00000000000000000000000387000339", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "59.01", + "side": "B", + "time": 1762185831417, + "startPosition": "-224504.43", + "dir": "Close Short", + "closedPnl": "1974.610323", + "hash": "0xc194d456a75a016dc30e042ec46ee3020366003c425d203f655d7fa9665ddb58", + "oid": 221331434912, + "crossed": true, + "fee": "2.061425", + "tid": 876072272428819, + "cloid": "0x00000000000000000000000388000332", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "1.02", + "side": "B", + "time": 1762185831417, + "startPosition": "-224445.42", + "dir": "Close Short", + "closedPnl": "34.131546", + "hash": "0xc194d456a75a016dc30e042ec46ee3020366003c425d203f655d7fa9665ddb58", + "oid": 221331434912, + "crossed": true, + "fee": "0.035632", + "tid": 708227459580093, + "cloid": "0x00000000000000000000000388000332", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "60.04", + "side": "B", + "time": 1762185834139, + "startPosition": "-224444.4", + "dir": "Close Short", + "closedPnl": "2010.277292", + "hash": "0x9b007adeb3f746b99c7a042ec46f060206d100c44efa658b3ec9263172fb20a4", + "oid": 221331469772, + "crossed": true, + "fee": "2.097155", + "tid": 266019207960039, + "cloid": "0x00000000000000000000000388000333", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.6", + "sz": "1.3281", + "side": "B", + "time": 1762185834139, + "startPosition": "-1524.3489", + "dir": "Close Short", + "closedPnl": "699.882138", + "hash": "0xb37adeb000ab0e2cb4f4042ec46f060206d400959bae2cfe57438a02bfaee817", + "oid": 221331469773, + "crossed": true, + "fee": "0.999469", + "tid": 235010198846007, + "cloid": "0x00000000000000000000000387000340", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.6", + "sz": "1.4602", + "side": "B", + "time": 1762185834139, + "startPosition": "-1523.0208", + "dir": "Close Short", + "closedPnl": "769.496196", + "hash": "0xb37adeb000ab0e2cb4f4042ec46f060206d400959bae2cfe57438a02bfaee817", + "oid": 221331469773, + "crossed": true, + "fee": "1.098882", + "tid": 869204941465669, + "cloid": "0x00000000000000000000000387000340", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105654.0", + "sz": "0.00011", + "side": "B", + "time": 1762185834983, + "startPosition": "-1174.77163", + "dir": "Close Short", + "closedPnl": "0.947474", + "hash": "0xf61f4fd834c69f81f799042ec46f110205ef00bdcfc9be5499e7fb2af3ca796c", + "oid": 221331484111, + "crossed": true, + "fee": "0.00244", + "tid": 1053457681116420, + "cloid": "0x00000000000000000000000389000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105654.0", + "sz": "0.00011", + "side": "B", + "time": 1762185834983, + "startPosition": "-1174.77152", + "dir": "Close Short", + "closedPnl": "0.947474", + "hash": "0xf61f4fd834c69f81f799042ec46f110205ef00bdcfc9be5499e7fb2af3ca796c", + "oid": 221331484111, + "crossed": true, + "fee": "0.00244", + "tid": 693290043976221, + "cloid": "0x00000000000000000000000389000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105655.0", + "sz": "0.00011", + "side": "B", + "time": 1762185834983, + "startPosition": "-1174.77141", + "dir": "Close Short", + "closedPnl": "0.947364", + "hash": "0xf61f4fd834c69f81f799042ec46f110205ef00bdcfc9be5499e7fb2af3ca796c", + "oid": 221331484111, + "crossed": true, + "fee": "0.00244", + "tid": 678758355641116, + "cloid": "0x00000000000000000000000389000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105655.0", + "sz": "0.00011", + "side": "B", + "time": 1762185834983, + "startPosition": "-1174.7713", + "dir": "Close Short", + "closedPnl": "0.947364", + "hash": "0xf61f4fd834c69f81f799042ec46f110205ef00bdcfc9be5499e7fb2af3ca796c", + "oid": 221331484111, + "crossed": true, + "fee": "0.00244", + "tid": 398771327384427, + "cloid": "0x00000000000000000000000389000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105655.0", + "sz": "0.00015", + "side": "B", + "time": 1762185834983, + "startPosition": "-1174.77119", + "dir": "Close Short", + "closedPnl": "1.29186", + "hash": "0xf61f4fd834c69f81f799042ec46f110205ef00bdcfc9be5499e7fb2af3ca796c", + "oid": 221331484111, + "crossed": true, + "fee": "0.003328", + "tid": 1067726220791828, + "cloid": "0x00000000000000000000000389000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105656.0", + "sz": "0.00011", + "side": "B", + "time": 1762185834983, + "startPosition": "-1174.77104", + "dir": "Close Short", + "closedPnl": "0.947254", + "hash": "0xf61f4fd834c69f81f799042ec46f110205ef00bdcfc9be5499e7fb2af3ca796c", + "oid": 221331484111, + "crossed": true, + "fee": "0.00244", + "tid": 382207426829136, + "cloid": "0x00000000000000000000000389000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105656.0", + "sz": "0.00011", + "side": "B", + "time": 1762185834983, + "startPosition": "-1174.77093", + "dir": "Close Short", + "closedPnl": "0.947254", + "hash": "0xf61f4fd834c69f81f799042ec46f110205ef00bdcfc9be5499e7fb2af3ca796c", + "oid": 221331484111, + "crossed": true, + "fee": "0.00244", + "tid": 224514565947851, + "cloid": "0x00000000000000000000000389000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105656.0", + "sz": "0.00094", + "side": "B", + "time": 1762185834983, + "startPosition": "-1174.77082", + "dir": "Close Short", + "closedPnl": "8.094716", + "hash": "0xf61f4fd834c69f81f799042ec46f110205ef00bdcfc9be5499e7fb2af3ca796c", + "oid": 221331484111, + "crossed": true, + "fee": "0.020856", + "tid": 594339312098804, + "cloid": "0x00000000000000000000000389000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105656.0", + "sz": "0.23472", + "side": "B", + "time": 1762185834983, + "startPosition": "-1174.76988", + "dir": "Close Short", + "closedPnl": "2021.267808", + "hash": "0xf61f4fd834c69f81f799042ec46f110205ef00bdcfc9be5499e7fb2af3ca796c", + "oid": 221331484111, + "crossed": true, + "fee": "5.207911", + "tid": 1011558398690803, + "cloid": "0x00000000000000000000000389000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.1", + "sz": "2.7882", + "side": "B", + "time": 1762185836028, + "startPosition": "-1521.5606", + "dir": "Close Short", + "closedPnl": "1467.931536", + "hash": "0x3b7c17c0abc3a2dd3cf5042ec46f1c02036800a646c6c1afdf44c3136ac77cc7", + "oid": 221331499460, + "crossed": true, + "fee": "2.098569", + "tid": 351282375065667, + "cloid": "0x00000000000000000000000387000341", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "60.04", + "side": "B", + "time": 1762185836230, + "startPosition": "-224384.36", + "dir": "Close Short", + "closedPnl": "2010.277292", + "hash": "0x87cb42af6482b1b48944042ec46f1e02074a0094ff85d0862b93ee0223868b9f", + "oid": 221331505077, + "crossed": true, + "fee": "2.097155", + "tid": 820996720075856, + "cloid": "0x00000000000000000000000388000334", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105654.0", + "sz": "0.23648", + "side": "B", + "time": 1762185836230, + "startPosition": "-1174.53516", + "dir": "Close Short", + "closedPnl": "2036.896832", + "hash": "0xcd7d10324a3aa0e2cef6042ec46f1e02075d0017e53dbfb47145bb85093e7acd", + "oid": 221331505090, + "crossed": true, + "fee": "5.246862", + "tid": 450530099827458, + "cloid": "0x00000000000000000000000389000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "2.7889", + "side": "B", + "time": 1762185837645, + "startPosition": "-1518.7724", + "dir": "Close Short", + "closedPnl": "1470.810082", + "hash": "0x69eb7686e441404f6b65042ec46f300204cc006c7f445f210db421d9a3451a3a", + "oid": 221331538045, + "crossed": true, + "fee": "2.098569", + "tid": 1122595454304259, + "cloid": "0x00000000000000000000000387000342", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.29", + "sz": "50.6", + "side": "B", + "time": 1762185837841, + "startPosition": "-224324.32", + "dir": "Close Short", + "closedPnl": "1696.22838", + "hash": "0xf18a89d27824bb55f304042ec46f340203a600b81327da289553352537289540", + "oid": 221331544153, + "crossed": true, + "fee": "1.766997", + "tid": 5959949889229, + "cloid": "0x00000000000000000000000388000335", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.29", + "sz": "9.46", + "side": "B", + "time": 1762185837841, + "startPosition": "-224273.72", + "dir": "Close Short", + "closedPnl": "317.120958", + "hash": "0xf18a89d27824bb55f304042ec46f340203a600b81327da289553352537289540", + "oid": 221331544153, + "crossed": true, + "fee": "0.330351", + "tid": 913422175567617, + "cloid": "0x00000000000000000000000388000335", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105642.0", + "sz": "0.23649", + "side": "B", + "time": 1762185839372, + "startPosition": "-1174.29868", + "dir": "Close Short", + "closedPnl": "2039.820846", + "hash": "0xaf71c22b41757ddfb0eb042ec46f4802089f0010dc789cb1533a6d7e007957ca", + "oid": 221331568274, + "crossed": true, + "fee": "5.246488", + "tid": 814805509525192, + "cloid": "0x00000000000000000000000389000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "18.84", + "side": "B", + "time": 1762185840090, + "startPosition": "-224264.26", + "dir": "Close Short", + "closedPnl": "631.183332", + "hash": "0x494dc142a18370284ac7042ec46f5102095b00283c868efaed166c9560874a12", + "oid": 221331580950, + "crossed": true, + "fee": "0.657988", + "tid": 326071395580800, + "cloid": "0x00000000000000000000000388000336", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "1.08", + "side": "B", + "time": 1762185840090, + "startPosition": "-224245.42", + "dir": "Close Short", + "closedPnl": "36.182484", + "hash": "0x494dc142a18370284ac7042ec46f5102095b00283c868efaed166c9560874a12", + "oid": 221331580950, + "crossed": true, + "fee": "0.037719", + "tid": 488892302243125, + "cloid": "0x00000000000000000000000388000336", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "0.29", + "side": "B", + "time": 1762185840090, + "startPosition": "-224244.34", + "dir": "Close Short", + "closedPnl": "9.709867", + "hash": "0x494dc142a18370284ac7042ec46f5102095b00283c868efaed166c9560874a12", + "oid": 221331580950, + "crossed": true, + "fee": "0.010129", + "tid": 755531242337139, + "cloid": "0x00000000000000000000000388000336", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "39.84", + "side": "B", + "time": 1762185840090, + "startPosition": "-224244.05", + "dir": "Close Short", + "closedPnl": "1333.138032", + "hash": "0x494dc142a18370284ac7042ec46f5102095b00283c868efaed166c9560874a12", + "oid": 221331580950, + "crossed": true, + "fee": "1.39175", + "tid": 112036698908182, + "cloid": "0x00000000000000000000000388000336", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.1", + "sz": "2.7884", + "side": "B", + "time": 1762185840627, + "startPosition": "-1515.9835", + "dir": "Close Short", + "closedPnl": "1468.036832", + "hash": "0x2de4c6d0750313932f5e042ec46f570208b500b610063265d1ad72233406ed7d", + "oid": 221331593072, + "crossed": true, + "fee": "2.098719", + "tid": 55552902708571, + "cloid": "0x00000000000000000000000387000343", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105650.0", + "sz": "0.23648", + "side": "B", + "time": 1762185841763, + "startPosition": "-1174.06219", + "dir": "Close Short", + "closedPnl": "2037.842752", + "hash": "0xc248ee9e183525a4c3c2042ec46f64020b5f0083b3384476661199f0d738ff8f", + "oid": 221331608978, + "crossed": true, + "fee": "5.246663", + "tid": 54166681972852, + "cloid": "0x00000000000000000000000389000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "60.06", + "side": "B", + "time": 1762185842000, + "startPosition": "-224204.21", + "dir": "Close Short", + "closedPnl": "2010.946938", + "hash": "0x69f4bd8d942a03006b6e042ec46f6702092700732f2d21d20dbd68e0532ddceb", + "oid": 221331614044, + "crossed": true, + "fee": "2.097853", + "tid": 1088232320110405, + "cloid": "0x00000000000000000000000388000337", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.8", + "sz": "2.7883", + "side": "B", + "time": 1762185842276, + "startPosition": "-1513.1951", + "dir": "Close Short", + "closedPnl": "1468.820674", + "hash": "0x33487498a52b2a6a34c2042ec46f6a020f68007e402e493cd7111feb642f0454", + "oid": 221331622351, + "crossed": true, + "fee": "2.098469", + "tid": 1084389145922883, + "cloid": "0x00000000000000000000000387000344", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105640.0", + "sz": "0.23652", + "side": "B", + "time": 1762185843099, + "startPosition": "-1173.82571", + "dir": "Close Short", + "closedPnl": "2040.552648", + "hash": "0x5a63aff0f2f3f92b5bdd042ec46f750203d600d68df717fdfe2c5b43b1f7d315", + "oid": 221331642838, + "crossed": true, + "fee": "5.247054", + "tid": 464568437728579, + "cloid": "0x00000000000000000000000389000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.18", + "sz": "48.11", + "side": "B", + "time": 1762185843885, + "startPosition": "-224144.15", + "dir": "Close Short", + "closedPnl": "1618.049953", + "hash": "0x4d4b0b785d0d13954ec4042ec46f8202071e005df8003267f113b6cb1c00ed7f", + "oid": 221331665792, + "crossed": true, + "fee": "1.678933", + "tid": 772149601835699, + "cloid": "0x00000000000000000000000388000338", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.19", + "sz": "11.99", + "side": "B", + "time": 1762185843885, + "startPosition": "-224096.04", + "dir": "Close Short", + "closedPnl": "403.131377", + "hash": "0x4d4b0b785d0d13954ec4042ec46f8202071e005df8003267f113b6cb1c00ed7f", + "oid": 221331665792, + "crossed": true, + "fee": "0.418449", + "tid": 191929903161789, + "cloid": "0x00000000000000000000000388000338", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26795", + "sz": "3733.5", + "side": "B", + "time": 1762185843885, + "startPosition": "-3981787.2000000002", + "dir": "Close Short", + "closedPnl": "1991.15022", + "hash": "0x62081158a95d73dd6381042ec46f8202072b003e445092af05d0bcab68514dc8", + "oid": 221331572361, + "crossed": false, + "fee": "0.02801", + "tid": 615761400871336, + "cloid": "0x00000000000000000000000384000153", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131475.0", + "side": "B", + "time": 1762185845227, + "startPosition": "-1178466111.0", + "dir": "Close Short", + "closedPnl": "230.475675", + "hash": "0x384885a0597f78ca39c2042ec46f900216b70085f472979cdc1130f3187352b4", + "oid": 221331691512, + "crossed": true, + "fee": "0.104861", + "tid": 630524535050004, + "cloid": "0x00000000000000000000000385000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.1", + "sz": "2.7891", + "side": "B", + "time": 1762185845227, + "startPosition": "-1510.4068", + "dir": "Close Short", + "closedPnl": "1473.983568", + "hash": "0x0d1b4c1a0aeaad800e95042ec46f900216e600ffa5edcc52b0e3f76cc9ee876a", + "oid": 221331691536, + "crossed": true, + "fee": "2.098075", + "tid": 828558461392481, + "cloid": "0x00000000000000000000000387000345", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26794", + "sz": "2687.4", + "side": "A", + "time": 1762185846326, + "startPosition": "3999383.6960629998", + "dir": "Sell", + "closedPnl": "-1434.40999178", + "hash": "0x6337ac8bc6c6ea0a64b1042ec46f9a0221a2007161ca08dc070057de85cac3f5", + "oid": 221331718351, + "crossed": true, + "fee": "0.20161734", + "tid": 406027626327906, + "cloid": "0x10000000000000000000000475000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.2677", + "sz": "1046.1", + "side": "A", + "time": 1762185846326, + "startPosition": "3996696.2960629999", + "dir": "Sell", + "closedPnl": "-558.61092572", + "hash": "0x6337ac8bc6c6ea0a64b1042ec46f9a0221a2007161ca08dc070057de85cac3f5", + "oid": 221331718351, + "crossed": true, + "fee": "0.07841147", + "tid": 880347216002094, + "cloid": "0x10000000000000000000000475000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105613.0", + "sz": "0.23655", + "side": "B", + "time": 1762185846735, + "startPosition": "-1173.58919", + "dir": "Close Short", + "closedPnl": "2047.19832", + "hash": "0xea692fcfa703d805ebe2042ec46f9f02096d00b54206f6d78e31db226607b1f0", + "oid": 221331722372, + "crossed": true, + "fee": "5.246378", + "tid": 462594570830766, + "cloid": "0x00000000000000000000000389000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.2", + "sz": "2.31", + "side": "B", + "time": 1762185846918, + "startPosition": "-224084.05", + "dir": "Close Short", + "closedPnl": "77.644413", + "hash": "0x55e7d9b5e9900cac5761042ec46fa2020d2f009b84932b7ef9b08508a893e696", + "oid": 221331727940, + "crossed": true, + "fee": "0.080623", + "tid": 827459568561075, + "cloid": "0x00000000000000000000000388000339", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "12.0", + "side": "B", + "time": 1762185846918, + "startPosition": "-224081.74", + "dir": "Close Short", + "closedPnl": "403.2276", + "hash": "0x55e7d9b5e9900cac5761042ec46fa2020d2f009b84932b7ef9b08508a893e696", + "oid": 221331727940, + "crossed": true, + "fee": "0.418849", + "tid": 833365726149245, + "cloid": "0x00000000000000000000000388000339", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "45.77", + "side": "B", + "time": 1762185846918, + "startPosition": "-224069.74", + "dir": "Close Short", + "closedPnl": "1537.977271", + "hash": "0x55e7d9b5e9900cac5761042ec46fa2020d2f009b84932b7ef9b08508a893e696", + "oid": 221331727940, + "crossed": true, + "fee": "1.59756", + "tid": 587114014029779, + "cloid": "0x00000000000000000000000388000339", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131659.0", + "side": "B", + "time": 1762185847809, + "startPosition": "-1178334636.0", + "dir": "Close Short", + "closedPnl": "231.061545", + "hash": "0xdbadf1828e122a3ddd27042ec46faf0207b600682915490f7f769cd54d160428", + "oid": 221331738042, + "crossed": true, + "fee": "0.104953", + "tid": 940137539065497, + "cloid": "0x00000000000000000000000385000294", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.1", + "sz": "2.7895", + "side": "B", + "time": 1762185847809, + "startPosition": "-1507.6177", + "dir": "Close Short", + "closedPnl": "1474.19496", + "hash": "0x8ac40a2ca740058e8c3d042ec46faf0207c10012424324602e8cb57f6643df79", + "oid": 221331738049, + "crossed": true, + "fee": "2.098376", + "tid": 117761482619155, + "cloid": "0x00000000000000000000000387000346", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105613.0", + "sz": "0.23652", + "side": "B", + "time": 1762185848883, + "startPosition": "-1173.35264", + "dir": "Close Short", + "closedPnl": "2046.938688", + "hash": "0x7156a8bfb81628c672d0042ec46fbd020a9000a553194798151f5412771a02b1", + "oid": 221331757230, + "crossed": true, + "fee": "5.245713", + "tid": 821438211300919, + "cloid": "0x00000000000000000000000389000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26797", + "sz": "1267.9", + "side": "B", + "time": 1762185849328, + "startPosition": "-3978053.7000000002", + "dir": "Close Short", + "closedPnl": "676.17107", + "hash": "0x6242aed583bfa7b163bc042ec46fc202048100bb1eb2c683060b5a2842b3819c", + "oid": 221331762489, + "crossed": true, + "fee": "0.071349", + "tid": 504225133051407, + "cloid": "0x00000000000000000000000384000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26797", + "sz": "2464.2", + "side": "B", + "time": 1762185849328, + "startPosition": "-3976785.7999999998", + "dir": "Close Short", + "closedPnl": "1314.15786", + "hash": "0x6242aed583bfa7b163bc042ec46fc202048100bb1eb2c683060b5a2842b3819c", + "oid": 221331762489, + "crossed": true, + "fee": "0.138669", + "tid": 748148694031854, + "cloid": "0x00000000000000000000000384000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.12", + "sz": "60.12", + "side": "B", + "time": 1762185849539, + "startPosition": "-224023.97", + "dir": "Close Short", + "closedPnl": "2025.581076", + "hash": "0xab140412056b46afac8d042ec46fc502070500f7a06e65814edcaf64c46f209a", + "oid": 221331769244, + "crossed": true, + "fee": "2.097298", + "tid": 1103501197990461, + "cloid": "0x00000000000000000000000388000340", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.1", + "sz": "0.2791", + "side": "B", + "time": 1762185850895, + "startPosition": "-1504.8282", + "dir": "Close Short", + "closedPnl": "147.498768", + "hash": "0x8c1d8e7919330c658d97042ec46fd4021fbf005eb4362b372fe639cbd836e650", + "oid": 221331788480, + "crossed": true, + "fee": "0.20995", + "tid": 723507074648950, + "cloid": "0x00000000000000000000000387000347", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.1", + "sz": "0.2791", + "side": "B", + "time": 1762185850895, + "startPosition": "-1504.5491", + "dir": "Close Short", + "closedPnl": "147.498768", + "hash": "0x8c1d8e7919330c658d97042ec46fd4021fbf005eb4362b372fe639cbd836e650", + "oid": 221331788480, + "crossed": true, + "fee": "0.20995", + "tid": 725767154282805, + "cloid": "0x00000000000000000000000387000347", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.1", + "sz": "0.0122", + "side": "B", + "time": 1762185850895, + "startPosition": "-1504.27", + "dir": "Close Short", + "closedPnl": "6.447456", + "hash": "0x8c1d8e7919330c658d97042ec46fd4021fbf005eb4362b372fe639cbd836e650", + "oid": 221331788480, + "crossed": true, + "fee": "0.009177", + "tid": 616162272681773, + "cloid": "0x00000000000000000000000387000347", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.1", + "sz": "2.2192", + "side": "B", + "time": 1762185850895, + "startPosition": "-1504.2578", + "dir": "Close Short", + "closedPnl": "1172.802816", + "hash": "0x8c1d8e7919330c658d97042ec46fd4021fbf005eb4362b372fe639cbd836e650", + "oid": 221331788480, + "crossed": true, + "fee": "1.669373", + "tid": 837199134471500, + "cloid": "0x00000000000000000000000387000347", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26787", + "sz": "1578.2", + "side": "A", + "time": 1762185851093, + "startPosition": "3995650.1960629998", + "dir": "Sell", + "closedPnl": "-842.48073857", + "hash": "0xa094f09fe0960a68a20e042ec46fd702085600857b99293a445d9bf29f99e453", + "oid": 221331792420, + "crossed": true, + "fee": "0.11837068", + "tid": 689275284614215, + "cloid": "0x10000000000000000000000475000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26787", + "sz": "886.0", + "side": "A", + "time": 1762185851093, + "startPosition": "3994071.9960630001", + "dir": "Sell", + "closedPnl": "-472.96789657", + "hash": "0xa094f09fe0960a68a20e042ec46fd702085600857b99293a445d9bf29f99e453", + "oid": 221331792420, + "crossed": true, + "fee": "0.06645318", + "tid": 461688809539316, + "cloid": "0x10000000000000000000000475000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26787", + "sz": "1267.9", + "side": "A", + "time": 1762185851093, + "startPosition": "3993185.9960630001", + "dir": "Sell", + "closedPnl": "-676.83521001", + "hash": "0x5368673afa274ce454e2042ec46fd70208570020952a6bb6f731128db92b26ce", + "oid": 221331792421, + "crossed": true, + "fee": "0.09509706", + "tid": 719083549899984, + "cloid": "0x10000000000000000000000475000063", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.13", + "sz": "60.12", + "side": "B", + "time": 1762185851926, + "startPosition": "-223963.85", + "dir": "Close Short", + "closedPnl": "2024.979876", + "hash": "0x4d630a176cfe138c4edc042ec46fe1020d5a00fd07f1325ef12bb56a2bf1ed76", + "oid": 221331807767, + "crossed": true, + "fee": "2.097424", + "tid": 579639729817166, + "cloid": "0x00000000000000000000000388000341", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105616.0", + "sz": "0.23656", + "side": "B", + "time": 1762185851926, + "startPosition": "-1173.11612", + "dir": "Close Short", + "closedPnl": "2046.575184", + "hash": "0x003680b2868f560801b0042ec46fe1020d5b0098218274daa3ff2c0545832ff2", + "oid": 221331807768, + "crossed": true, + "fee": "5.246749", + "tid": 49767787861186, + "cloid": "0x00000000000000000000000389000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.8", + "sz": "0.9847", + "side": "B", + "time": 1762185852695, + "startPosition": "-1502.0386", + "dir": "Close Short", + "closedPnl": "520.689666", + "hash": "0x58dccabe2ca4186a5a56042ec46fed0206d100a3c7a7373cfca57610eba7f254", + "oid": 221331822632, + "crossed": true, + "fee": "0.740669", + "tid": 253920648155293, + "cloid": "0x00000000000000000000000387000348", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.8", + "sz": "0.6458", + "side": "B", + "time": 1762185852695, + "startPosition": "-1501.0539", + "dir": "Close Short", + "closedPnl": "341.486124", + "hash": "0x58dccabe2ca4186a5a56042ec46fed0206d100a3c7a7373cfca57610eba7f254", + "oid": 221331822632, + "crossed": true, + "fee": "0.485756", + "tid": 144996753407615, + "cloid": "0x00000000000000000000000387000348", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.8", + "sz": "0.8751", + "side": "B", + "time": 1762185852695, + "startPosition": "-1500.4081", + "dir": "Close Short", + "closedPnl": "462.735378", + "hash": "0x58dccabe2ca4186a5a56042ec46fed0206d100a3c7a7373cfca57610eba7f254", + "oid": 221331822632, + "crossed": true, + "fee": "0.65823", + "tid": 174705003733073, + "cloid": "0x00000000000000000000000387000348", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.8", + "sz": "0.2846", + "side": "B", + "time": 1762185852695, + "startPosition": "-1499.533", + "dir": "Close Short", + "closedPnl": "150.490788", + "hash": "0x58dccabe2ca4186a5a56042ec46fed0206d100a3c7a7373cfca57610eba7f254", + "oid": 221331822632, + "crossed": true, + "fee": "0.214069", + "tid": 662044054638911, + "cloid": "0x00000000000000000000000387000348", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.19", + "sz": "60.11", + "side": "B", + "time": 1762185853801, + "startPosition": "-223903.73", + "dir": "Close Short", + "closedPnl": "2021.036453", + "hash": "0xa0da2bac7c704f18a253042ec46ff902069a009217736dea44a2d6ff3b742903", + "oid": 221331835991, + "crossed": true, + "fee": "2.097832", + "tid": 8345752309364, + "cloid": "0x00000000000000000000000388000342", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105634.0", + "sz": "0.23653", + "side": "B", + "time": 1762185854788, + "startPosition": "-1172.87956", + "dir": "Close Short", + "closedPnl": "2042.058102", + "hash": "0xa172915230a08bdea2ec042ec470050206990037cba3aab0453b3ca4efa465c9", + "oid": 221331854359, + "crossed": true, + "fee": "5.246978", + "tid": 1002641098937792, + "cloid": "0x00000000000000000000000389000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.5", + "sz": "2.7899", + "side": "B", + "time": 1762185855121, + "startPosition": "-1499.2484", + "dir": "Close Short", + "closedPnl": "1476.080292", + "hash": "0xcb3c53e557382fd3ccb6042ec470090208d600caf23b4ea56f04ff38163c09be", + "oid": 221331858109, + "crossed": true, + "fee": "2.098325", + "tid": 917680841395879, + "cloid": "0x00000000000000000000000387000349", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.09", + "sz": "60.15", + "side": "B", + "time": 1762185856362, + "startPosition": "-223843.62", + "dir": "Close Short", + "closedPnl": "2028.396345", + "hash": "0xb1092ff2d4f570eab282042ec47018020e8700d86ff88fbc54d1db4593f94ad5", + "oid": 221331896136, + "crossed": true, + "fee": "2.097965", + "tid": 903445610699139, + "cloid": "0x00000000000000000000000388000343", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105604.0", + "sz": "0.23658", + "side": "B", + "time": 1762185856362, + "startPosition": "-1172.64303", + "dir": "Close Short", + "closedPnl": "2049.587172", + "hash": "0x6db89500ce382fe46f32042ec47018020f3b00e6693b4eb6118140538d3c09cf", + "oid": 221331896217, + "crossed": true, + "fee": "5.246596", + "tid": 548783100661841, + "cloid": "0x00000000000000000000000389000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131763.0", + "side": "B", + "time": 1762185856362, + "startPosition": "-1178202977.0", + "dir": "Close Short", + "closedPnl": "232.034643", + "hash": "0x13a0c40330bb3225151a042ec47018020fa300e8cbbe50f7b7696f55efbf0c0f", + "oid": 221331896137, + "crossed": false, + "fee": "0.013982", + "tid": 1027059604073222, + "cloid": "0x00000000000000000000000385000297", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.96", + "sz": "60.16", + "side": "B", + "time": 1762185858583, + "startPosition": "-223783.47", + "dir": "Close Short", + "closedPnl": "2036.554368", + "hash": "0x3ba35118e40674273d1d042ec470330217d900fe7f0992f9df6bfc6ba30a4e11", + "oid": 221331949006, + "crossed": true, + "fee": "2.096672", + "tid": 1090627677048364, + "cloid": "0x00000000000000000000000388000344", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "131994.0", + "side": "B", + "time": 1762185858583, + "startPosition": "-1178071214.0", + "dir": "Close Short", + "closedPnl": "232.837416", + "hash": "0x61b7014e10cf1f436330042ec470330218850033abc23e15057faca0cfc2f92e", + "oid": 221331949068, + "crossed": true, + "fee": "0.10497", + "tid": 761341890531034, + "cloid": "0x00000000000000000000000385000298", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26789", + "sz": "3736.6", + "side": "B", + "time": 1762185858583, + "startPosition": "-3974321.6000000001", + "dir": "Close Short", + "closedPnl": "1993.027708", + "hash": "0x605ad5edef56664061d4042ec4703302195600d38a59851204238140ae5a402b", + "oid": 221331896138, + "crossed": false, + "fee": "0.028027", + "tid": 138314510784294, + "cloid": "0x00000000000000000000000384000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3577.2", + "sz": "0.0878", + "side": "B", + "time": 1762185858583, + "startPosition": "-1496.4585", + "dir": "Close Short", + "closedPnl": "46.830764", + "hash": "0x2a4c84fa3422b72c2bc6042ec47033021a2b00dfcf25d5fece15304cf3269116", + "oid": 221331949282, + "crossed": true, + "fee": "0.065956", + "tid": 1114347181250440, + "cloid": "0x00000000000000000000000387000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3577.3", + "sz": "0.1839", + "side": "B", + "time": 1762185858583, + "startPosition": "-1496.3707", + "dir": "Close Short", + "closedPnl": "98.070192", + "hash": "0x2a4c84fa3422b72c2bc6042ec47033021a2b00dfcf25d5fece15304cf3269116", + "oid": 221331949282, + "crossed": true, + "fee": "0.138151", + "tid": 895628768646554, + "cloid": "0x00000000000000000000000387000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3577.4", + "sz": "0.1839", + "side": "B", + "time": 1762185858583, + "startPosition": "-1496.1868", + "dir": "Close Short", + "closedPnl": "98.051802", + "hash": "0x2a4c84fa3422b72c2bc6042ec47033021a2b00dfcf25d5fece15304cf3269116", + "oid": 221331949282, + "crossed": true, + "fee": "0.138155", + "tid": 298717333955563, + "cloid": "0x00000000000000000000000387000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3577.5", + "sz": "0.1839", + "side": "B", + "time": 1762185858583, + "startPosition": "-1496.0029", + "dir": "Close Short", + "closedPnl": "98.033412", + "hash": "0x2a4c84fa3422b72c2bc6042ec47033021a2b00dfcf25d5fece15304cf3269116", + "oid": 221331949282, + "crossed": true, + "fee": "0.138159", + "tid": 713062225343716, + "cloid": "0x00000000000000000000000387000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3577.6", + "sz": "0.1839", + "side": "B", + "time": 1762185858583, + "startPosition": "-1495.819", + "dir": "Close Short", + "closedPnl": "98.015022", + "hash": "0x2a4c84fa3422b72c2bc6042ec47033021a2b00dfcf25d5fece15304cf3269116", + "oid": 221331949282, + "crossed": true, + "fee": "0.138163", + "tid": 1018694390221313, + "cloid": "0x00000000000000000000000387000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3577.7", + "sz": "0.18", + "side": "B", + "time": 1762185858583, + "startPosition": "-1495.6351", + "dir": "Close Short", + "closedPnl": "95.9184", + "hash": "0x2a4c84fa3422b72c2bc6042ec47033021a2b00dfcf25d5fece15304cf3269116", + "oid": 221331949282, + "crossed": true, + "fee": "0.135237", + "tid": 35576092684968, + "cloid": "0x00000000000000000000000387000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3577.8", + "sz": "1.7876", + "side": "B", + "time": 1762185858583, + "startPosition": "-1495.4551", + "dir": "Close Short", + "closedPnl": "952.397528", + "hash": "0x2a4c84fa3422b72c2bc6042ec47033021a2b00dfcf25d5fece15304cf3269116", + "oid": 221331949282, + "crossed": true, + "fee": "1.343091", + "tid": 1109823407961073, + "cloid": "0x00000000000000000000000387000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105577.0", + "sz": "0.04735", + "side": "B", + "time": 1762185858583, + "startPosition": "-1172.40645", + "dir": "Close Short", + "closedPnl": "411.49044", + "hash": "0x2328cb7dc7e73a8d24a2042ec47033021ac7006362ea595fc6f176d086eb1477", + "oid": 221331949416, + "crossed": true, + "fee": "1.049804", + "tid": 673449661361518, + "cloid": "0x00000000000000000000000389000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105577.0", + "sz": "0.18924", + "side": "B", + "time": 1762185858583, + "startPosition": "-1172.3591", + "dir": "Close Short", + "closedPnl": "1644.571296", + "hash": "0x2328cb7dc7e73a8d24a2042ec47033021ac7006362ea595fc6f176d086eb1477", + "oid": 221331949416, + "crossed": true, + "fee": "4.195672", + "tid": 423203680170885, + "cloid": "0x00000000000000000000000389000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26775", + "sz": "2364.4", + "side": "A", + "time": 1762185859808, + "startPosition": "3991918.0960630002", + "dir": "Sell", + "closedPnl": "-1262.45674681", + "hash": "0x5487ad698c418c325601042ec47041020837004f2744ab04f85058bc4b45661c", + "oid": 221331973859, + "crossed": true, + "fee": "0.17725906", + "tid": 937466156182085, + "cloid": "0x10000000000000000000000475000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26775", + "sz": "1372.2", + "side": "A", + "time": 1762185859808, + "startPosition": "3989553.6960629998", + "dir": "Sell", + "closedPnl": "-732.6776975", + "hash": "0x5487ad698c418c325601042ec47041020837004f2744ab04f85058bc4b45661c", + "oid": 221331973859, + "crossed": true, + "fee": "0.10287383", + "tid": 1042668351655334, + "cloid": "0x10000000000000000000000475000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3575.2", + "sz": "2.7937", + "side": "B", + "time": 1762185860284, + "startPosition": "-1493.6675", + "dir": "Close Short", + "closedPnl": "1495.691106", + "hash": "0xc92d38f81ddb0fe4caa6042ec4704802075500ddb8de2eb66cf5e44adcdee9cf", + "oid": 221331989059, + "crossed": true, + "fee": "2.097487", + "tid": 126668666815245, + "cloid": "0x00000000000000000000000387000351", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "60340.0", + "side": "B", + "time": 1762185860622, + "startPosition": "-1177939220.0", + "dir": "Close Short", + "closedPnl": "106.37942", + "hash": "0x777643899d6b9ac278ef042ec4704d020bdd006f386eb9941b3eeedc5c6f74ad", + "oid": 221331995183, + "crossed": true, + "fee": "0.047999", + "tid": 5778281896420, + "cloid": "0x00000000000000000000000385000299", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "71586.0", + "side": "B", + "time": 1762185860622, + "startPosition": "-1177878880.0", + "dir": "Close Short", + "closedPnl": "126.206118", + "hash": "0x777643899d6b9ac278ef042ec4704d020bdd006f386eb9941b3eeedc5c6f74ad", + "oid": 221331995183, + "crossed": true, + "fee": "0.056945", + "tid": 526526609954657, + "cloid": "0x00000000000000000000000385000299", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.0", + "sz": "12.08", + "side": "B", + "time": 1762185861086, + "startPosition": "-223723.31", + "dir": "Close Short", + "closedPnl": "408.452584", + "hash": "0x895cb41712d888e98ad6042ec4705202017300fcaddba7bb2d255f69d1dc62d4", + "oid": 221331998048, + "crossed": true, + "fee": "0.421108", + "tid": 470189863252682, + "cloid": "0x00000000000000000000000388000345", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.0", + "sz": "48.1", + "side": "B", + "time": 1762185861086, + "startPosition": "-223711.23", + "dir": "Close Short", + "closedPnl": "1626.37163", + "hash": "0x895cb41712d888e98ad6042ec4705202017300fcaddba7bb2d255f69d1dc62d4", + "oid": 221331998048, + "crossed": true, + "fee": "1.676765", + "tid": 661954019736322, + "cloid": "0x00000000000000000000000388000345", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105564.0", + "sz": "0.14807", + "side": "B", + "time": 1762185861634, + "startPosition": "-1172.16986", + "dir": "Close Short", + "closedPnl": "1288.712438", + "hash": "0xfd92f85e6816b395ff0c042ec4705a020fbf00440319d268a15ba3b1271a8d80", + "oid": 221332012798, + "crossed": true, + "fee": "3.28248", + "tid": 706523959982434, + "cloid": "0x00000000000000000000000389000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105564.0", + "sz": "0.08856", + "side": "B", + "time": 1762185861634, + "startPosition": "-1172.02179", + "dir": "Close Short", + "closedPnl": "770.773104", + "hash": "0xfd92f85e6816b395ff0c042ec4705a020fbf00440319d268a15ba3b1271a8d80", + "oid": 221332012798, + "crossed": true, + "fee": "1.963237", + "tid": 712600966756352, + "cloid": "0x00000000000000000000000389000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3574.1", + "sz": "2.7954", + "side": "B", + "time": 1762185862390, + "startPosition": "-1490.8738", + "dir": "Close Short", + "closedPnl": "1499.676192", + "hash": "0x5e62031737f8e7bc5fdb042ec47066020a3100fcd2fc068e022aae69f6fcc1a7", + "oid": 221332022668, + "crossed": true, + "fee": "2.098118", + "tid": 245817771446848, + "cloid": "0x00000000000000000000000387000352", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132014.0", + "side": "B", + "time": 1762185862650, + "startPosition": "-1177807294.0", + "dir": "Close Short", + "closedPnl": "232.740682", + "hash": "0x4fd378b8f0b6a48c514d042ec4706902144e009e8bb9c35ef39c240bafba7e76", + "oid": 221332036185, + "crossed": true, + "fee": "0.105014", + "tid": 336082694362226, + "cloid": "0x00000000000000000000000385000300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105554.0", + "sz": "0.06016", + "side": "B", + "time": 1762185863370, + "startPosition": "-1171.93323", + "dir": "Close Short", + "closedPnl": "524.198144", + "hash": "0x0baf0b4287856d5d0d28042ec47072020f56002822888c2faf77b69546894747", + "oid": 221332049589, + "crossed": true, + "fee": "1.333527", + "tid": 804604409882670, + "cloid": "0x00000000000000000000000389000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105554.0", + "sz": "0.06026", + "side": "B", + "time": 1762185863370, + "startPosition": "-1171.87307", + "dir": "Close Short", + "closedPnl": "525.069484", + "hash": "0x0baf0b4287856d5d0d28042ec47072020f56002822888c2faf77b69546894747", + "oid": 221332049589, + "crossed": true, + "fee": "1.335743", + "tid": 313827603655815, + "cloid": "0x00000000000000000000000389000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105554.0", + "sz": "0.06026", + "side": "B", + "time": 1762185863370, + "startPosition": "-1171.81281", + "dir": "Close Short", + "closedPnl": "525.069484", + "hash": "0x0baf0b4287856d5d0d28042ec47072020f56002822888c2faf77b69546894747", + "oid": 221332049589, + "crossed": true, + "fee": "1.335743", + "tid": 418915433083703, + "cloid": "0x00000000000000000000000389000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105554.0", + "sz": "0.05599", + "side": "B", + "time": 1762185863370, + "startPosition": "-1171.75255", + "dir": "Close Short", + "closedPnl": "487.863266", + "hash": "0x0baf0b4287856d5d0d28042ec47072020f56002822888c2faf77b69546894747", + "oid": 221332049589, + "crossed": true, + "fee": "1.241093", + "tid": 79000269695061, + "cloid": "0x00000000000000000000000389000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26745", + "sz": "2547.4", + "side": "B", + "time": 1762185863539, + "startPosition": "-3970585.0", + "dir": "Close Short", + "closedPnl": "1359.853068", + "hash": "0x5044576de4800d0151be042ec47073020be100537f832bd3f40d02c0a383e6eb", + "oid": 221332052852, + "crossed": true, + "fee": "0.143073", + "tid": 688610933400606, + "cloid": "0x00000000000000000000000384000157", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26748", + "sz": "1190.2", + "side": "B", + "time": 1762185863539, + "startPosition": "-3968037.6000000001", + "dir": "Close Short", + "closedPnl": "635.316858", + "hash": "0x5044576de4800d0151be042ec47073020be100537f832bd3f40d02c0a383e6eb", + "oid": 221332052852, + "crossed": true, + "fee": "0.066854", + "tid": 162035934754032, + "cloid": "0x00000000000000000000000384000157", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.9", + "sz": "60.21", + "side": "B", + "time": 1762185863539, + "startPosition": "-223663.13", + "dir": "Close Short", + "closedPnl": "2041.859583", + "hash": "0xaab32ad116885c77ac2c042ec47073020c0100b6b18b7b494e7bd623d58c3662", + "oid": 221332052865, + "crossed": true, + "fee": "2.097656", + "tid": 202409937725980, + "cloid": "0x00000000000000000000000388000346", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3571.1", + "sz": "1.3432", + "side": "B", + "time": 1762185864197, + "startPosition": "-1488.0784", + "dir": "Close Short", + "closedPnl": "724.629536", + "hash": "0xcbb58bc4d25e2a63cd2f042ec4707a02216300aa6d5149356f7e37179152044e", + "oid": 221332067310, + "crossed": true, + "fee": "1.007307", + "tid": 789619973921440, + "cloid": "0x00000000000000000000000387000353", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3571.1", + "sz": "1.3432", + "side": "B", + "time": 1762185864197, + "startPosition": "-1486.7352", + "dir": "Close Short", + "closedPnl": "724.629536", + "hash": "0xcbb58bc4d25e2a63cd2f042ec4707a02216300aa6d5149356f7e37179152044e", + "oid": 221332067310, + "crossed": true, + "fee": "1.007307", + "tid": 216558124217136, + "cloid": "0x00000000000000000000000387000353", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3571.1", + "sz": "0.1104", + "side": "B", + "time": 1762185864197, + "startPosition": "-1485.392", + "dir": "Close Short", + "closedPnl": "59.558592", + "hash": "0xcbb58bc4d25e2a63cd2f042ec4707a02216300aa6d5149356f7e37179152044e", + "oid": 221332067310, + "crossed": true, + "fee": "0.082792", + "tid": 141690482997858, + "cloid": "0x00000000000000000000000387000353", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003785", + "sz": "128004.0", + "side": "B", + "time": 1762185864773, + "startPosition": "-1177675280.0", + "dir": "Close Short", + "closedPnl": "226.055064", + "hash": "0x01ce336535623ee60347042ec47081020559004ad0655db8a596deb7f46618d0", + "oid": 221332072090, + "crossed": true, + "fee": "0.101743", + "tid": 209480537856549, + "cloid": "0x00000000000000000000000385000301", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003785", + "sz": "4061.0", + "side": "B", + "time": 1762185864773, + "startPosition": "-1177547276.0", + "dir": "Close Short", + "closedPnl": "7.171726", + "hash": "0x01ce336535623ee60347042ec47081020559004ad0655db8a596deb7f46618d0", + "oid": 221332072090, + "crossed": true, + "fee": "0.003227", + "tid": 324954007204596, + "cloid": "0x00000000000000000000000385000301", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26723", + "sz": "1190.2", + "side": "A", + "time": 1762185865198, + "startPosition": "3988181.4960630001", + "dir": "Sell", + "closedPnl": "-636.11882789", + "hash": "0x9592ed8dbcb68a2d970c042ec470860203bd007357b9a8ff395b98e07bba6418", + "oid": 221332073804, + "crossed": true, + "fee": "0.089056", + "tid": 943613491319720, + "cloid": "0x10000000000000000000000475000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26723", + "sz": "1287.5", + "side": "A", + "time": 1762185865198, + "startPosition": "3986991.2960629999", + "dir": "Sell", + "closedPnl": "-688.12215671", + "hash": "0x48666428d647cca949e0042ec470860203be000e714aeb7bec2f0f7b954ba693", + "oid": 221332073805, + "crossed": true, + "fee": "0.09633641", + "tid": 206166350314065, + "cloid": "0x10000000000000000000000475000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.8", + "sz": "19.33", + "side": "B", + "time": 1762185865500, + "startPosition": "-223602.92", + "dir": "Close Short", + "closedPnl": "657.457759", + "hash": "0x38bb5873065839ef3a35042ec4708a020a530058a15b58c1dc8403c5c55c13d9", + "oid": 221332082207, + "crossed": true, + "fee": "0.673031", + "tid": 174665078778559, + "cloid": "0x00000000000000000000000388000347", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.8", + "sz": "40.9", + "side": "B", + "time": 1762185865500, + "startPosition": "-223583.59", + "dir": "Close Short", + "closedPnl": "1391.10307", + "hash": "0x38bb5873065839ef3a35042ec4708a020a530058a15b58c1dc8403c5c55c13d9", + "oid": 221332082207, + "crossed": true, + "fee": "1.424056", + "tid": 1062382306338994, + "cloid": "0x00000000000000000000000388000347", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105554.0", + "sz": "0.23667", + "side": "B", + "time": 1762185865903, + "startPosition": "-1171.69656", + "dir": "Close Short", + "closedPnl": "2062.200378", + "hash": "0xce31ee7f293e1a6acfab042ec4708f0225d80064c431393c71fa99d1e831f455", + "oid": 221332091475, + "crossed": true, + "fee": "5.246107", + "tid": 647629052190323, + "cloid": "0x00000000000000000000000389000019", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26716", + "sz": "925.3", + "side": "A", + "time": 1762185866052, + "startPosition": "3985703.7960629999", + "dir": "Sell", + "closedPnl": "-494.60413535", + "hash": "0x27c51aabb63b872f293e042ec4709102039e0091513ea601cb8dc5fe753f6119", + "oid": 221332073805, + "crossed": false, + "fee": "0.01730422", + "tid": 21247133094440, + "cloid": "0x10000000000000000000000475000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26716", + "sz": "334.6", + "side": "A", + "time": 1762185866335, + "startPosition": "3984778.4960630001", + "dir": "Sell", + "closedPnl": "-178.85501317", + "hash": "0x9295bfc6cfc11867940f042ec4709402065000ac6ac43739365e6b198ec4f252", + "oid": 221332073805, + "crossed": false, + "fee": "0.00625742", + "tid": 239039000766652, + "cloid": "0x10000000000000000000000475000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131926.0", + "side": "B", + "time": 1762185866584, + "startPosition": "-1177543215.0", + "dir": "Close Short", + "closedPnl": "232.453612", + "hash": "0xa828fa5412a82b31a9a2042ec470960201240039adab4a034bf1a5a6d1ac051c", + "oid": 221332099711, + "crossed": true, + "fee": "0.104972", + "tid": 436015391959, + "cloid": "0x00000000000000000000000385000302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.75", + "sz": "35.76", + "side": "B", + "time": 1762185867600, + "startPosition": "-223542.69", + "dir": "Close Short", + "closedPnl": "1218.067848", + "hash": "0x9e36c3cab0f70d489fb0042ec470a2020e1500b04bfa2c1a41ff6f1d6ffae733", + "oid": 221332118338, + "crossed": true, + "fee": "1.244716", + "tid": 665664717870350, + "cloid": "0x00000000000000000000000388000348", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.75", + "sz": "24.48", + "side": "B", + "time": 1762185867600, + "startPosition": "-223506.93", + "dir": "Close Short", + "closedPnl": "833.845104", + "hash": "0x9e36c3cab0f70d489fb0042ec470a2020e1500b04bfa2c1a41ff6f1d6ffae733", + "oid": 221332118338, + "crossed": true, + "fee": "0.852087", + "tid": 443418766748277, + "cloid": "0x00000000000000000000000388000348", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3568.9", + "sz": "0.9151", + "side": "B", + "time": 1762185867600, + "startPosition": "-1485.2816", + "dir": "Close Short", + "closedPnl": "495.691368", + "hash": "0xcf2b8b6d4a5e9c2ed0a5042ec470a2020e1b0052e551bb0072f436c009527619", + "oid": 221332118344, + "crossed": true, + "fee": "0.685839", + "tid": 447748749698291, + "cloid": "0x00000000000000000000000387000354", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3568.9", + "sz": "0.9151", + "side": "B", + "time": 1762185867600, + "startPosition": "-1484.3665", + "dir": "Close Short", + "closedPnl": "495.691368", + "hash": "0xcf2b8b6d4a5e9c2ed0a5042ec470a2020e1b0052e551bb0072f436c009527619", + "oid": 221332118344, + "crossed": true, + "fee": "0.685839", + "tid": 474044933851727, + "cloid": "0x00000000000000000000000387000354", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3568.9", + "sz": "0.9151", + "side": "B", + "time": 1762185867600, + "startPosition": "-1483.4514", + "dir": "Close Short", + "closedPnl": "495.691368", + "hash": "0xcf2b8b6d4a5e9c2ed0a5042ec470a2020e1b0052e551bb0072f436c009527619", + "oid": 221332118344, + "crossed": true, + "fee": "0.685839", + "tid": 362855569063007, + "cloid": "0x00000000000000000000000387000354", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3568.9", + "sz": "0.0116", + "side": "B", + "time": 1762185867600, + "startPosition": "-1482.5363", + "dir": "Close Short", + "closedPnl": "6.283488", + "hash": "0xcf2b8b6d4a5e9c2ed0a5042ec470a2020e1b0052e551bb0072f436c009527619", + "oid": 221332118344, + "crossed": true, + "fee": "0.008693", + "tid": 414758295736833, + "cloid": "0x00000000000000000000000387000354", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3568.9", + "sz": "0.0412", + "side": "B", + "time": 1762185867600, + "startPosition": "-1482.5247", + "dir": "Close Short", + "closedPnl": "22.317216", + "hash": "0xcf2b8b6d4a5e9c2ed0a5042ec470a2020e1b0052e551bb0072f436c009527619", + "oid": 221332118344, + "crossed": true, + "fee": "0.030878", + "tid": 143807920532760, + "cloid": "0x00000000000000000000000387000354", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105554.0", + "sz": "0.23669", + "side": "B", + "time": 1762185867600, + "startPosition": "-1171.45989", + "dir": "Close Short", + "closedPnl": "2062.374646", + "hash": "0x4b99aeaf1430dddf4d13042ec470a2020e690094af33fcb1ef625a01d334b7c9", + "oid": 221332118397, + "crossed": true, + "fee": "5.246551", + "tid": 714367356629907, + "cloid": "0x00000000000000000000000389000020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132012.0", + "side": "B", + "time": 1762185868230, + "startPosition": "-1177411289.0", + "dir": "Close Short", + "closedPnl": "233.00118", + "hash": "0xca9a176448a05a8ccc13042ec470ab020e5b0049e3a3795e6e62c2b707a43477", + "oid": 221332134938, + "crossed": true, + "fee": "0.104957", + "tid": 1053936983859441, + "cloid": "0x00000000000000000000000385000303", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26717", + "sz": "914.7", + "side": "B", + "time": 1762185869047, + "startPosition": "-3966847.3999999999", + "dir": "Close Short", + "closedPnl": "488.54127", + "hash": "0x6342805ac327f95b64bc042ec470b601cc0098405e2b182d070b2bad822bd346", + "oid": 221332145118, + "crossed": false, + "fee": "0.006842", + "tid": 704537904860518, + "cloid": "0x00000000000000000000000384000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.69", + "sz": "60.27", + "side": "B", + "time": 1762185869913, + "startPosition": "-223482.45", + "dir": "Close Short", + "closedPnl": "2056.551021", + "hash": "0x18388fc49ca8c75919b2042ec470c002187200aa37abe62bbc013b175baca143", + "oid": 221332170154, + "crossed": true, + "fee": "2.097088", + "tid": 233665595980837, + "cloid": "0x00000000000000000000000388000349", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105525.0", + "sz": "0.23674", + "side": "B", + "time": 1762185869913, + "startPosition": "-1171.2232", + "dir": "Close Short", + "closedPnl": "2069.675776", + "hash": "0xbc168e9bb4bc6d28bd90042ec470c002189b00814fbf8bfa5fdf39ee73b04713", + "oid": 221332170178, + "crossed": true, + "fee": "5.246217", + "tid": 220530809000236, + "cloid": "0x00000000000000000000000389000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.2", + "sz": "0.1009", + "side": "B", + "time": 1762185869913, + "startPosition": "-1482.4835", + "dir": "Close Short", + "closedPnl": "54.524342", + "hash": "0x7e367f6064469e077fb0042ec470c00218fc0045ff49bcd921ff2ab3234a77f2", + "oid": 221332170248, + "crossed": true, + "fee": "0.075648", + "tid": 680773374513826, + "cloid": "0x00000000000000000000000387000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.3", + "sz": "0.281", + "side": "B", + "time": 1762185869913, + "startPosition": "-1482.3826", + "dir": "Close Short", + "closedPnl": "151.81868", + "hash": "0x7e367f6064469e077fb0042ec470c00218fc0045ff49bcd921ff2ab3234a77f2", + "oid": 221332170248, + "crossed": true, + "fee": "0.210683", + "tid": 668197881463252, + "cloid": "0x00000000000000000000000387000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.3", + "sz": "1.3856", + "side": "B", + "time": 1762185869913, + "startPosition": "-1482.1016", + "dir": "Close Short", + "closedPnl": "748.611968", + "hash": "0x7e367f6064469e077fb0042ec470c00218fc0045ff49bcd921ff2ab3234a77f2", + "oid": 221332170248, + "crossed": true, + "fee": "1.038871", + "tid": 749753223338702, + "cloid": "0x00000000000000000000000387000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.4", + "sz": "0.281", + "side": "B", + "time": 1762185869913, + "startPosition": "-1480.716", + "dir": "Close Short", + "closedPnl": "151.79058", + "hash": "0x7e367f6064469e077fb0042ec470c00218fc0045ff49bcd921ff2ab3234a77f2", + "oid": 221332170248, + "crossed": true, + "fee": "0.210689", + "tid": 385368971385953, + "cloid": "0x00000000000000000000000387000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.4", + "sz": "0.2", + "side": "B", + "time": 1762185869913, + "startPosition": "-1480.435", + "dir": "Close Short", + "closedPnl": "108.036", + "hash": "0x7e367f6064469e077fb0042ec470c00218fc0045ff49bcd921ff2ab3234a77f2", + "oid": 221332170248, + "crossed": true, + "fee": "0.149956", + "tid": 567513748336643, + "cloid": "0x00000000000000000000000387000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.4", + "sz": "0.2", + "side": "B", + "time": 1762185869913, + "startPosition": "-1480.235", + "dir": "Close Short", + "closedPnl": "108.036", + "hash": "0x7e367f6064469e077fb0042ec470c00218fc0045ff49bcd921ff2ab3234a77f2", + "oid": 221332170248, + "crossed": true, + "fee": "0.149956", + "tid": 143441732693538, + "cloid": "0x00000000000000000000000387000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.4", + "sz": "0.281", + "side": "B", + "time": 1762185869913, + "startPosition": "-1480.035", + "dir": "Close Short", + "closedPnl": "151.79058", + "hash": "0x7e367f6064469e077fb0042ec470c00218fc0045ff49bcd921ff2ab3234a77f2", + "oid": 221332170248, + "crossed": true, + "fee": "0.210689", + "tid": 683865717598392, + "cloid": "0x00000000000000000000000387000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.5", + "sz": "0.0677", + "side": "B", + "time": 1762185869913, + "startPosition": "-1479.754", + "dir": "Close Short", + "closedPnl": "36.563416", + "hash": "0x7e367f6064469e077fb0042ec470c00218fc0045ff49bcd921ff2ab3234a77f2", + "oid": 221332170248, + "crossed": true, + "fee": "0.050761", + "tid": 993916017364557, + "cloid": "0x00000000000000000000000387000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132087.0", + "side": "B", + "time": 1762185870255, + "startPosition": "-1177279277.0", + "dir": "Close Short", + "closedPnl": "233.001468", + "hash": "0x412d2bf948254a0442a6042ec470c202086000dee32868d6e4f5d74c072923ee", + "oid": 221332172889, + "crossed": true, + "fee": "0.105044", + "tid": 508727714509310, + "cloid": "0x00000000000000000000000385000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26716", + "sz": "374.3", + "side": "A", + "time": 1762185871105, + "startPosition": "3984443.896063", + "dir": "Sell", + "closedPnl": "-200.07600547", + "hash": "0xd8e780be92988576da61042ec470cc0206ed00a42d9ba4487cb02c11519c5f61", + "oid": 221332187686, + "crossed": true, + "fee": "0.02799943", + "tid": 1120612035639959, + "cloid": "0x10000000000000000000000475000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26716", + "sz": "374.3", + "side": "A", + "time": 1762185871105, + "startPosition": "3984069.5960630002", + "dir": "Sell", + "closedPnl": "-200.07600547", + "hash": "0xd8e780be92988576da61042ec470cc0206ed00a42d9ba4487cb02c11519c5f61", + "oid": 221332187686, + "crossed": true, + "fee": "0.02799943", + "tid": 908036389302427, + "cloid": "0x10000000000000000000000475000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26714", + "sz": "166.1", + "side": "A", + "time": 1762185871105, + "startPosition": "3983695.2960629999", + "dir": "Sell", + "closedPnl": "-88.78938801", + "hash": "0xd8e780be92988576da61042ec470cc0206ed00a42d9ba4487cb02c11519c5f61", + "oid": 221332187686, + "crossed": true, + "fee": "0.01242414", + "tid": 290935150536549, + "cloid": "0x10000000000000000000000475000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105525.0", + "sz": "0.04892", + "side": "B", + "time": 1762185871979, + "startPosition": "-1170.98646", + "dir": "Close Short", + "closedPnl": "427.678208", + "hash": "0xfefd4f88b49d089d0077042ec470d7020296006e4f902770a2c5fadb7390e288", + "oid": 221332204761, + "crossed": true, + "fee": "1.084079", + "tid": 70805368830148, + "cloid": "0x00000000000000000000000389000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105525.0", + "sz": "0.18784", + "side": "B", + "time": 1762185871979, + "startPosition": "-1170.93754", + "dir": "Close Short", + "closedPnl": "1642.172416", + "hash": "0xfefd4f88b49d089d0077042ec470d7020296006e4f902770a2c5fadb7390e288", + "oid": 221332204761, + "crossed": true, + "fee": "4.162581", + "tid": 300793112767258, + "cloid": "0x00000000000000000000000389000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3569.3", + "sz": "1.6774", + "side": "B", + "time": 1762185872697, + "startPosition": "-1479.6863", + "dir": "Close Short", + "closedPnl": "907.943072", + "hash": "0xe3a3dab93f8a5d58e51d042ec470e0021430009eda8d7c2a876c860bfe8e3743", + "oid": 221332218526, + "crossed": true, + "fee": "1.2573", + "tid": 312518185581057, + "cloid": "0x00000000000000000000000387000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3569.3", + "sz": "0.3072", + "side": "B", + "time": 1762185872697, + "startPosition": "-1478.0089", + "dir": "Close Short", + "closedPnl": "166.281216", + "hash": "0xe3a3dab93f8a5d58e51d042ec470e0021430009eda8d7c2a876c860bfe8e3743", + "oid": 221332218526, + "crossed": true, + "fee": "0.230262", + "tid": 502426408311008, + "cloid": "0x00000000000000000000000387000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3569.5", + "sz": "0.192", + "side": "B", + "time": 1762185872697, + "startPosition": "-1477.7017", + "dir": "Close Short", + "closedPnl": "103.88736", + "hash": "0xe3a3dab93f8a5d58e51d042ec470e0021430009eda8d7c2a876c860bfe8e3743", + "oid": 221332218526, + "crossed": true, + "fee": "0.143922", + "tid": 560861266526084, + "cloid": "0x00000000000000000000000387000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3569.5", + "sz": "0.028", + "side": "B", + "time": 1762185872697, + "startPosition": "-1477.5097", + "dir": "Close Short", + "closedPnl": "15.15024", + "hash": "0xe3a3dab93f8a5d58e51d042ec470e0021430009eda8d7c2a876c860bfe8e3743", + "oid": 221332218526, + "crossed": true, + "fee": "0.020988", + "tid": 263324489316027, + "cloid": "0x00000000000000000000000387000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3569.7", + "sz": "0.0084", + "side": "B", + "time": 1762185872697, + "startPosition": "-1477.4817", + "dir": "Close Short", + "closedPnl": "4.543392", + "hash": "0xe3a3dab93f8a5d58e51d042ec470e0021430009eda8d7c2a876c860bfe8e3743", + "oid": 221332218526, + "crossed": true, + "fee": "0.006296", + "tid": 1060665952375258, + "cloid": "0x00000000000000000000000387000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.0", + "sz": "0.0768", + "side": "B", + "time": 1762185872697, + "startPosition": "-1477.4733", + "dir": "Close Short", + "closedPnl": "41.516544", + "hash": "0xe3a3dab93f8a5d58e51d042ec470e0021430009eda8d7c2a876c860bfe8e3743", + "oid": 221332218526, + "crossed": true, + "fee": "0.057576", + "tid": 126843341334953, + "cloid": "0x00000000000000000000000387000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.2", + "sz": "0.5099", + "side": "B", + "time": 1762185872697, + "startPosition": "-1477.3965", + "dir": "Close Short", + "closedPnl": "275.539762", + "hash": "0xe3a3dab93f8a5d58e51d042ec470e0021430009eda8d7c2a876c860bfe8e3743", + "oid": 221332218526, + "crossed": true, + "fee": "0.382293", + "tid": 956965404881454, + "cloid": "0x00000000000000000000000387000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.74", + "sz": "0.53", + "side": "B", + "time": 1762185872697, + "startPosition": "-223422.18", + "dir": "Close Short", + "closedPnl": "18.058319", + "hash": "0x10db446ad88e85141255042ec470e002144000507381a3e6b4a3efbd97825efe", + "oid": 221332218534, + "crossed": true, + "fee": "0.018446", + "tid": 163687307287818, + "cloid": "0x00000000000000000000000388000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.75", + "sz": "1.0", + "side": "B", + "time": 1762185872697, + "startPosition": "-223421.65", + "dir": "Close Short", + "closedPnl": "34.0623", + "hash": "0x10db446ad88e85141255042ec470e002144000507381a3e6b4a3efbd97825efe", + "oid": 221332218534, + "crossed": true, + "fee": "0.034807", + "tid": 827731524162592, + "cloid": "0x00000000000000000000000388000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.75", + "sz": "6.76", + "side": "B", + "time": 1762185872697, + "startPosition": "-223420.65", + "dir": "Close Short", + "closedPnl": "230.261148", + "hash": "0x10db446ad88e85141255042ec470e002144000507381a3e6b4a3efbd97825efe", + "oid": 221332218534, + "crossed": true, + "fee": "0.235298", + "tid": 762569718548512, + "cloid": "0x00000000000000000000000388000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.76", + "sz": "51.99", + "side": "B", + "time": 1762185872697, + "startPosition": "-223413.89", + "dir": "Close Short", + "closedPnl": "1770.379077", + "hash": "0x10db446ad88e85141255042ec470e002144000507381a3e6b4a3efbd97825efe", + "oid": 221332218534, + "crossed": true, + "fee": "1.809751", + "tid": 304507381709036, + "cloid": "0x00000000000000000000000388000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003784", + "sz": "132063.0", + "side": "B", + "time": 1762185872697, + "startPosition": "-1177147190.0", + "dir": "Close Short", + "closedPnl": "233.355321", + "hash": "0xf4a382a88b775675f61d042ec470e0021447008e267a7548986c2dfb4a7b3060", + "oid": 221332218541, + "crossed": true, + "fee": "0.104942", + "tid": 295244882482766, + "cloid": "0x00000000000000000000000385000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26711", + "sz": "179.2", + "side": "B", + "time": 1762185872818, + "startPosition": "-3965932.7000000002", + "dir": "Close Short", + "closedPnl": "95.721472", + "hash": "0xfb98cefe9f19e6e6fd12042ec470e202040700e43a1d05b99f617a515e1dc0d1", + "oid": 221332220031, + "crossed": true, + "fee": "0.010051", + "tid": 660499629624910, + "cloid": "0x00000000000000000000000384000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26711", + "sz": "2649.4", + "side": "B", + "time": 1762185872818, + "startPosition": "-3965753.5", + "dir": "Close Short", + "closedPnl": "1415.203504", + "hash": "0xfb98cefe9f19e6e6fd12042ec470e202040700e43a1d05b99f617a515e1dc0d1", + "oid": 221332220031, + "crossed": true, + "fee": "0.148613", + "tid": 48231598502336, + "cloid": "0x00000000000000000000000384000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.7", + "sz": "15.93", + "side": "B", + "time": 1762185874638, + "startPosition": "-223361.9", + "dir": "Close Short", + "closedPnl": "543.408939", + "hash": "0xd2326440d8f31595d3ac042ec470fb020f18002673f6346775fb0f9397f6ef80", + "oid": 221332263206, + "crossed": true, + "fee": "0.554316", + "tid": 1016736882078737, + "cloid": "0x00000000000000000000000388000351", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.7", + "sz": "17.72", + "side": "B", + "time": 1762185874638, + "startPosition": "-223345.97", + "dir": "Close Short", + "closedPnl": "604.469956", + "hash": "0xd2326440d8f31595d3ac042ec470fb020f18002673f6346775fb0f9397f6ef80", + "oid": 221332263206, + "crossed": true, + "fee": "0.616602", + "tid": 368827615375637, + "cloid": "0x00000000000000000000000388000351", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.7", + "sz": "17.72", + "side": "B", + "time": 1762185874638, + "startPosition": "-223328.25", + "dir": "Close Short", + "closedPnl": "604.469956", + "hash": "0xd2326440d8f31595d3ac042ec470fb020f18002673f6346775fb0f9397f6ef80", + "oid": 221332263206, + "crossed": true, + "fee": "0.616602", + "tid": 370595299285689, + "cloid": "0x00000000000000000000000388000351", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.71", + "sz": "8.91", + "side": "B", + "time": 1762185874638, + "startPosition": "-223310.53", + "dir": "Close Short", + "closedPnl": "303.851493", + "hash": "0xd2326440d8f31595d3ac042ec470fb020f18002673f6346775fb0f9397f6ef80", + "oid": 221332263206, + "crossed": true, + "fee": "0.310059", + "tid": 390585720686364, + "cloid": "0x00000000000000000000000388000351", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3567.7", + "sz": "0.8205", + "side": "B", + "time": 1762185875387, + "startPosition": "-1476.8866", + "dir": "Close Short", + "closedPnl": "445.43304", + "hash": "0x3aaba6507db095783c25042ec47105020192003618b3b44ade7451a33cb46f62", + "oid": 221332285748, + "crossed": true, + "fee": "0.614732", + "tid": 690103603709781, + "cloid": "0x00000000000000000000000387000357", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3567.8", + "sz": "1.9784", + "side": "B", + "time": 1762185875387, + "startPosition": "-1476.0661", + "dir": "Close Short", + "closedPnl": "1073.835952", + "hash": "0x3aaba6507db095783c25042ec47105020192003618b3b44ade7451a33cb46f62", + "oid": 221332285748, + "crossed": true, + "fee": "1.482292", + "tid": 1103832729198449, + "cloid": "0x00000000000000000000000387000357", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105471.0", + "sz": "0.06704", + "side": "B", + "time": 1762185875387, + "startPosition": "-1170.7497", + "dir": "Close Short", + "closedPnl": "589.710656", + "hash": "0x7eaa460dad7479ec8024042ec471050201ee00f3487798be2272f1606c7853d7", + "oid": 221332285829, + "crossed": true, + "fee": "1.484862", + "tid": 49604732049217, + "cloid": "0x00000000000000000000000389000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105471.0", + "sz": "0.06669", + "side": "B", + "time": 1762185875387, + "startPosition": "-1170.68266", + "dir": "Close Short", + "closedPnl": "586.631916", + "hash": "0x7eaa460dad7479ec8024042ec471050201ee00f3487798be2272f1606c7853d7", + "oid": 221332285829, + "crossed": true, + "fee": "1.47711", + "tid": 1049580271185555, + "cloid": "0x00000000000000000000000389000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105471.0", + "sz": "0.06669", + "side": "B", + "time": 1762185875387, + "startPosition": "-1170.61597", + "dir": "Close Short", + "closedPnl": "586.631916", + "hash": "0x7eaa460dad7479ec8024042ec471050201ee00f3487798be2272f1606c7853d7", + "oid": 221332285829, + "crossed": true, + "fee": "1.47711", + "tid": 202894613262023, + "cloid": "0x00000000000000000000000389000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105472.0", + "sz": "0.03636", + "side": "B", + "time": 1762185875387, + "startPosition": "-1170.54928", + "dir": "Close Short", + "closedPnl": "319.800744", + "hash": "0x7eaa460dad7479ec8024042ec471050201ee00f3487798be2272f1606c7853d7", + "oid": 221332285829, + "crossed": true, + "fee": "0.805342", + "tid": 769899508276700, + "cloid": "0x00000000000000000000000389000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26682", + "sz": "2052.9", + "side": "A", + "time": 1762185875964, + "startPosition": "3983529.1960629998", + "dir": "Sell", + "closedPnl": "-1098.04244667", + "hash": "0x30efd17188660cd23269042ec4710b020dd7005723692ba4d4b87cc44769e6bc", + "oid": 221332257652, + "crossed": false, + "fee": "0.03834283", + "tid": 1124025580492353, + "cloid": "0x10000000000000000000000475000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26682", + "sz": "596.5", + "side": "A", + "time": 1762185876328, + "startPosition": "3981476.2960629999", + "dir": "Sell", + "closedPnl": "-319.05222828", + "hash": "0xc0b71e4308493100c230042ec4710f0219710028a34c4fd2647fc995c74d0aeb", + "oid": 221332257652, + "crossed": false, + "fee": "0.01114106", + "tid": 767843036240706, + "cloid": "0x10000000000000000000000475000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26682", + "sz": "179.2", + "side": "A", + "time": 1762185876328, + "startPosition": "3980879.7960629999", + "dir": "Sell", + "closedPnl": "-95.84938693", + "hash": "0xc0b71e4308493100c230042ec4710f0219710028a34c4fd2647fc995c74d0aeb", + "oid": 221332257653, + "crossed": false, + "fee": "0.00334699", + "tid": 721799736093678, + "cloid": "0x10000000000000000000000475000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.69", + "sz": "60.28", + "side": "B", + "time": 1762185877690, + "startPosition": "-223301.62", + "dir": "Close Short", + "closedPnl": "2056.892244", + "hash": "0xb4f467e608b22753b66e042ec471200205fb00cba3b5462558bd1338c7b6013e", + "oid": 221332327695, + "crossed": true, + "fee": "2.097436", + "tid": 791107207350470, + "cloid": "0x00000000000000000000000388000352", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3564.7", + "sz": "1.74", + "side": "B", + "time": 1762185878903, + "startPosition": "-1474.0877", + "dir": "Close Short", + "closedPnl": "949.8312", + "hash": "0x3be75167c9f3f2a93d61042ec4712f0204a4004d64f7117bdfaffcba88f7cc93", + "oid": 221332363305, + "crossed": true, + "fee": "1.302541", + "tid": 341834527510673, + "cloid": "0x00000000000000000000000387000358", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3564.7", + "sz": "1.0619", + "side": "B", + "time": 1762185878903, + "startPosition": "-1472.3477", + "dir": "Close Short", + "closedPnl": "579.669972", + "hash": "0x3be75167c9f3f2a93d61042ec4712f0204a4004d64f7117bdfaffcba88f7cc93", + "oid": 221332363305, + "crossed": true, + "fee": "0.794924", + "tid": 297465402215877, + "cloid": "0x00000000000000000000000387000358", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105468.0", + "sz": "0.18274", + "side": "B", + "time": 1762185878903, + "startPosition": "-1170.51292", + "dir": "Close Short", + "closedPnl": "1608.002356", + "hash": "0x18e2d88ea52c99231a5c042ec4712f0205cf0074402fb7f5bcab83e16420730d", + "oid": 221332363572, + "crossed": true, + "fee": "4.047376", + "tid": 795465105376883, + "cloid": "0x00000000000000000000000389000024", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105468.0", + "sz": "0.05416", + "side": "B", + "time": 1762185878903, + "startPosition": "-1170.33018", + "dir": "Close Short", + "closedPnl": "476.575504", + "hash": "0x18e2d88ea52c99231a5c042ec4712f0205cf0074402fb7f5bcab83e16420730d", + "oid": 221332363572, + "crossed": true, + "fee": "1.19955", + "tid": 5025499815272, + "cloid": "0x00000000000000000000000389000024", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26663", + "sz": "3750.9", + "side": "B", + "time": 1762185879191, + "startPosition": "-3963104.1000000001", + "dir": "Close Short", + "closedPnl": "2005.381176", + "hash": "0xfda481d4602d2befff1e042ec471320202a30101fb204ac2a16d2d271f2105da", + "oid": 221332367341, + "crossed": false, + "fee": "0.028002", + "tid": 1110674486875418, + "cloid": "0x00000000000000000000000384000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "132170.0", + "side": "B", + "time": 1762185879191, + "startPosition": "-1177015127.0", + "dir": "Close Short", + "closedPnl": "234.07307", + "hash": "0x74be49795c1b71fd7638042ec471320202c7005ef71e90cf1886f4cc1b1f4be8", + "oid": 221332367383, + "crossed": false, + "fee": "0.013988", + "tid": 516795204052970, + "cloid": "0x00000000000000000000000385000307", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.51", + "sz": "60.37", + "side": "B", + "time": 1762185880199, + "startPosition": "-223241.34", + "dir": "Close Short", + "closedPnl": "2070.829851", + "hash": "0x59a47eb27fc430315b1e042ec4713c02100800981ac74f03fd6d2a053ec80a1b", + "oid": 221332395105, + "crossed": true, + "fee": "2.098286", + "tid": 21727422534087, + "cloid": "0x00000000000000000000000388000353", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105322.0", + "sz": "0.02083", + "side": "B", + "time": 1762185880805, + "startPosition": "-1170.27602", + "dir": "Close Short", + "closedPnl": "186.332682", + "hash": "0x76a3ffc585b4a6d4781d042ec47146020b0d00ab20b7c5a61a6cab1844b880bf", + "oid": 221332413992, + "crossed": true, + "fee": "0.46071", + "tid": 440341018702657, + "cloid": "0x00000000000000000000000389000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105322.0", + "sz": "0.08799", + "side": "B", + "time": 1762185880805, + "startPosition": "-1170.25519", + "dir": "Close Short", + "closedPnl": "787.105746", + "hash": "0x76a3ffc585b4a6d4781d042ec47146020b0d00ab20b7c5a61a6cab1844b880bf", + "oid": 221332413992, + "crossed": true, + "fee": "1.946129", + "tid": 175462181416059, + "cloid": "0x00000000000000000000000389000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105323.0", + "sz": "0.02083", + "side": "B", + "time": 1762185880805, + "startPosition": "-1170.1672", + "dir": "Close Short", + "closedPnl": "186.311852", + "hash": "0x76a3ffc585b4a6d4781d042ec47146020b0d00ab20b7c5a61a6cab1844b880bf", + "oid": 221332413992, + "crossed": true, + "fee": "0.460714", + "tid": 28669119811614, + "cloid": "0x00000000000000000000000389000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105323.0", + "sz": "0.08799", + "side": "B", + "time": 1762185880805, + "startPosition": "-1170.14637", + "dir": "Close Short", + "closedPnl": "787.017756", + "hash": "0x76a3ffc585b4a6d4781d042ec47146020b0d00ab20b7c5a61a6cab1844b880bf", + "oid": 221332413992, + "crossed": true, + "fee": "1.946147", + "tid": 614289048874988, + "cloid": "0x00000000000000000000000389000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105324.0", + "sz": "0.01955", + "side": "B", + "time": 1762185880805, + "startPosition": "-1170.05838", + "dir": "Close Short", + "closedPnl": "174.84347", + "hash": "0x76a3ffc585b4a6d4781d042ec47146020b0d00ab20b7c5a61a6cab1844b880bf", + "oid": 221332413992, + "crossed": true, + "fee": "0.432407", + "tid": 153617557919646, + "cloid": "0x00000000000000000000000389000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3562.1", + "sz": "2.8041", + "side": "B", + "time": 1762185881663, + "startPosition": "-1471.2858", + "dir": "Close Short", + "closedPnl": "1537.992768", + "hash": "0xd2f4f734024c6b69d46e042ec4714f0238d100199d4f8a3b76bda286c1404554", + "oid": 221332433632, + "crossed": true, + "fee": "2.097581", + "tid": 986640781375653, + "cloid": "0x00000000000000000000000387000359", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "6707.0", + "side": "B", + "time": 1762185882093, + "startPosition": "-1176882957.0", + "dir": "Close Short", + "closedPnl": "11.898218", + "hash": "0x311bd7c855af64023295042ec47153020e6300adf0a282d4d4e4831b14a33dec", + "oid": 221332442094, + "crossed": true, + "fee": "0.005319", + "tid": 562263646228014, + "cloid": "0x00000000000000000000000385000308", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003778", + "sz": "125743.0", + "side": "B", + "time": 1762185882093, + "startPosition": "-1176876250.0", + "dir": "Close Short", + "closedPnl": "222.942339", + "hash": "0x311bd7c855af64023295042ec47153020e6300adf0a282d4d4e4831b14a33dec", + "oid": 221332442094, + "crossed": true, + "fee": "0.099761", + "tid": 345102656979691, + "cloid": "0x00000000000000000000000385000308", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26634", + "sz": "2914.8", + "side": "A", + "time": 1762185882427, + "startPosition": "3980700.5960630002", + "dir": "Sell", + "closedPnl": "-1560.44928841", + "hash": "0x791055b5e7691cef7a8a042ec47158020906009b826c3bc11cd90108a66cf6da", + "oid": 221332433842, + "crossed": false, + "fee": "0.05434294", + "tid": 633714402645071, + "cloid": "0x10000000000000000000000475000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26634", + "sz": "836.1", + "side": "A", + "time": 1762185882729, + "startPosition": "3977785.7960629999", + "dir": "Sell", + "closedPnl": "-447.6093214", + "hash": "0x80f242914142290f826b042ec4715b020d050076dc4547e124baede4004602fa", + "oid": 221332433842, + "crossed": false, + "fee": "0.01558808", + "tid": 430729554701783, + "cloid": "0x10000000000000000000000475000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.66", + "sz": "60.32", + "side": "B", + "time": 1762185883528, + "startPosition": "-223180.97", + "dir": "Close Short", + "closedPnl": "2060.066736", + "hash": "0x9f544e12c32fa7f6a0ce042ec47161021a3500f85e22c6c8431cf965822381e1", + "oid": 221332478490, + "crossed": true, + "fee": "2.098448", + "tid": 723622271707867, + "cloid": "0x00000000000000000000000388000354", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105355.0", + "sz": "0.23726", + "side": "B", + "time": 1762185883528, + "startPosition": "-1170.03883", + "dir": "Close Short", + "closedPnl": "2114.556024", + "hash": "0xf1433c996773c1caf2bc042ec47161021bc2007f0276e09d950be7ec26779bb5", + "oid": 221332478678, + "crossed": true, + "fee": "5.24927", + "tid": 876685722297508, + "cloid": "0x00000000000000000000000389000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3565.7", + "sz": "2.6894", + "side": "B", + "time": 1762185885190, + "startPosition": "-1468.4817", + "dir": "Close Short", + "closedPnl": "1465.400272", + "hash": "0x48be08ca0970018a4a37042ec47176021db900afa473205cec86b41cc873db74", + "oid": 221332507462, + "crossed": true, + "fee": "2.013814", + "tid": 879580121660338, + "cloid": "0x00000000000000000000000387000360", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3565.7", + "sz": "0.1139", + "side": "B", + "time": 1762185885190, + "startPosition": "-1465.7923", + "dir": "Close Short", + "closedPnl": "62.061832", + "hash": "0x48be08ca0970018a4a37042ec47176021db900afa473205cec86b41cc873db74", + "oid": 221332507462, + "crossed": true, + "fee": "0.085287", + "tid": 302453187353436, + "cloid": "0x00000000000000000000000387000360", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105347.0", + "sz": "0.05575", + "side": "B", + "time": 1762185886442, + "startPosition": "-1169.80157", + "dir": "Close Short", + "closedPnl": "497.3123", + "hash": "0x2e7b3d6b00541f2a2ff4042ec4718202141b00509b573dfcd243e8bdbf57f914", + "oid": 221332535212, + "crossed": true, + "fee": "1.23335", + "tid": 1083791621848498, + "cloid": "0x00000000000000000000000389000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105347.0", + "sz": "0.18144", + "side": "B", + "time": 1762185886442, + "startPosition": "-1169.74582", + "dir": "Close Short", + "closedPnl": "1618.517376", + "hash": "0x2e7b3d6b00541f2a2ff4042ec4718202141b00509b573dfcd243e8bdbf57f914", + "oid": 221332535212, + "crossed": true, + "fee": "4.013973", + "tid": 714931909557498, + "cloid": "0x00000000000000000000000389000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.61", + "sz": "47.07", + "side": "B", + "time": 1762185886442, + "startPosition": "-223120.65", + "dir": "Close Short", + "closedPnl": "1609.902261", + "hash": "0x4cbd2f5897daaa394e36042ec47182021453003e32ddc90bf085daab56de8423", + "oid": 221332535241, + "crossed": true, + "fee": "1.637005", + "tid": 66554360986978, + "cloid": "0x00000000000000000000000388000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.61", + "sz": "13.25", + "side": "B", + "time": 1762185886442, + "startPosition": "-223073.58", + "dir": "Close Short", + "closedPnl": "453.180475", + "hash": "0x4cbd2f5897daaa394e36042ec47182021453003e32ddc90bf085daab56de8423", + "oid": 221332535241, + "crossed": true, + "fee": "0.460809", + "tid": 511462198869798, + "cloid": "0x00000000000000000000000388000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3563.5", + "sz": "2.8032", + "side": "B", + "time": 1762185887846, + "startPosition": "-1465.6784", + "dir": "Close Short", + "closedPnl": "1533.574656", + "hash": "0x98493d7df08a779699c2042ec47190020a5000638b8d96683c11e8d0af8e5181", + "oid": 221332577139, + "crossed": true, + "fee": "2.097732", + "tid": 657078828457360, + "cloid": "0x00000000000000000000000387000361", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.48", + "sz": "18.83", + "side": "B", + "time": 1762185888897, + "startPosition": "-223060.33", + "dir": "Close Short", + "closedPnl": "646.477209", + "hash": "0xe17add7e33163c81e2f4042ec4719a0209af0063ce195b53854388d0f21a166c", + "oid": 221332596917, + "crossed": true, + "fee": "0.654357", + "tid": 348528040896753, + "cloid": "0x00000000000000000000000388000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.48", + "sz": "41.52", + "side": "B", + "time": 1762185888897, + "startPosition": "-223041.5", + "dir": "Close Short", + "closedPnl": "1425.477096", + "hash": "0xe17add7e33163c81e2f4042ec4719a0209af0063ce195b53854388d0f21a166c", + "oid": 221332596917, + "crossed": true, + "fee": "1.442853", + "tid": 697848082710106, + "cloid": "0x00000000000000000000000388000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "132135.0", + "side": "B", + "time": 1762185888897, + "startPosition": "-1176750507.0", + "dir": "Close Short", + "closedPnl": "234.40749", + "hash": "0xeaffc98b7e4c6748ec79042ec4719a0209da0071194f861a8ec874de3d404133", + "oid": 221332596933, + "crossed": true, + "fee": "0.104805", + "tid": 1013932171251342, + "cloid": "0x00000000000000000000000385000310", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105268.0", + "sz": "0.23729", + "side": "B", + "time": 1762185888897, + "startPosition": "-1169.56438", + "dir": "Close Short", + "closedPnl": "2135.467626", + "hash": "0x037a2d5ccaf02ebc04f3042ec4719a0209dd004265f34d8ea742d8af89f408a6", + "oid": 221332596935, + "crossed": true, + "fee": "5.245599", + "tid": 742478706806251, + "cloid": "0x00000000000000000000000389000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "132415.0", + "side": "B", + "time": 1762185891200, + "startPosition": "-1176618372.0", + "dir": "Close Short", + "closedPnl": "234.90421", + "hash": "0xa539f450db4c20e1a6b3042ec471b1020f770036764f3fb349029fa39a4ffacc", + "oid": 221332646663, + "crossed": true, + "fee": "0.105027", + "tid": 375683569935699, + "cloid": "0x00000000000000000000000385000311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.4", + "sz": "43.83", + "side": "B", + "time": 1762185891200, + "startPosition": "-222999.98", + "dir": "Close Short", + "closedPnl": "1508.291109", + "hash": "0xa17c965fdae8b9b6a2f6042ec471b1020f81004575ebd888454541b299ec93a1", + "oid": 221332646668, + "crossed": true, + "fee": "1.522391", + "tid": 466429653482463, + "cloid": "0x00000000000000000000000388000357", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.4", + "sz": "16.55", + "side": "B", + "time": 1762185891200, + "startPosition": "-222956.15", + "dir": "Close Short", + "closedPnl": "569.523565", + "hash": "0xa17c965fdae8b9b6a2f6042ec471b1020f81004575ebd888454541b299ec93a1", + "oid": 221332646668, + "crossed": true, + "fee": "0.574847", + "tid": 757035056754344, + "cloid": "0x00000000000000000000000388000357", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105273.0", + "sz": "0.23734", + "side": "B", + "time": 1762185892504, + "startPosition": "-1169.32709", + "dir": "Close Short", + "closedPnl": "2134.730896", + "hash": "0xc7b38d0c62cfc1edc92d042ec471c2019a00a4f1fdc2e0bf6b7c385f21c39bd8", + "oid": 221332672529, + "crossed": true, + "fee": "5.246953", + "tid": 122730790480672, + "cloid": "0x00000000000000000000000389000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3563.5", + "sz": "2.8051", + "side": "B", + "time": 1762185892933, + "startPosition": "-1462.8752", + "dir": "Close Short", + "closedPnl": "1534.614108", + "hash": "0x5143e2b08c19575352bd042ec471c7021e1e0096271c7625f50c8e034b1d313d", + "oid": 221332684761, + "crossed": true, + "fee": "2.099154", + "tid": 604674604980316, + "cloid": "0x00000000000000000000000387000362", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003779", + "sz": "132275.0", + "side": "B", + "time": 1762185893750, + "startPosition": "-1176485957.0", + "dir": "Close Short", + "closedPnl": "234.3913", + "hash": "0x621e65d7abc238786398042ec471d0020ae400bd46c5574a05e7112a6ac61263", + "oid": 221332698708, + "crossed": true, + "fee": "0.104972", + "tid": 92606751943331, + "cloid": "0x00000000000000000000000385000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.54", + "sz": "0.3", + "side": "B", + "time": 1762185893915, + "startPosition": "-222939.6", + "dir": "Close Short", + "closedPnl": "10.28169", + "hash": "0xb5916c0ca0383615b70b042ec471d2020b3900f23b3b54e7595a175f5f3c1000", + "oid": 221332703095, + "crossed": true, + "fee": "0.010429", + "tid": 1088807245213255, + "cloid": "0x00000000000000000000000388000358", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.56", + "sz": "0.36", + "side": "B", + "time": 1762185893915, + "startPosition": "-222939.3", + "dir": "Close Short", + "closedPnl": "12.330828", + "hash": "0xb5916c0ca0383615b70b042ec471d2020b3900f23b3b54e7595a175f5f3c1000", + "oid": 221332703095, + "crossed": true, + "fee": "0.012516", + "tid": 828031432532590, + "cloid": "0x00000000000000000000000388000358", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.56", + "sz": "59.67", + "side": "B", + "time": 1762185893915, + "startPosition": "-222938.94", + "dir": "Close Short", + "closedPnl": "2043.834741", + "hash": "0xb5916c0ca0383615b70b042ec471d2020b3900f23b3b54e7595a175f5f3c1000", + "oid": 221332703095, + "crossed": true, + "fee": "2.074582", + "tid": 150595095011845, + "cloid": "0x00000000000000000000000388000358", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105304.0", + "sz": "0.23725", + "side": "B", + "time": 1762185894957, + "startPosition": "-1169.08975", + "dir": "Close Short", + "closedPnl": "2126.56665", + "hash": "0xa3a6993bf6175e91a520042ec471dc019500b121911a7d63476f448eb51b387c", + "oid": 221332718841, + "crossed": true, + "fee": "5.246508", + "tid": 960292537929847, + "cloid": "0x00000000000000000000000389000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3565.9", + "sz": "2.8024", + "side": "B", + "time": 1762185895532, + "startPosition": "-1460.0701", + "dir": "Close Short", + "closedPnl": "1526.411232", + "hash": "0xed359ab027a2c474eeaf042ec471e20213780095c2a5e34690fe4602e6a69e5f", + "oid": 221332735434, + "crossed": true, + "fee": "2.098546", + "tid": 277351104246479, + "cloid": "0x00000000000000000000000387000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.7", + "sz": "60.26", + "side": "B", + "time": 1762185896040, + "startPosition": "-222879.27", + "dir": "Close Short", + "closedPnl": "2055.607198", + "hash": "0xda4cc8ae27bd81cfdbc6042ec471e8020b830093c2b0a0a17e157400e6b15bba", + "oid": 221332741049, + "crossed": true, + "fee": "2.096867", + "tid": 597682223941351, + "cloid": "0x00000000000000000000000388000359", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.78", + "sz": "60.25", + "side": "B", + "time": 1762185897965, + "startPosition": "-222819.01", + "dir": "Close Short", + "closedPnl": "2050.446075", + "hash": "0x4ca3909e63aa8d9f4e1d042ec471fd0205710083feadac71f06c3bf122ae6789", + "oid": 221332778785, + "crossed": true, + "fee": "2.097531", + "tid": 972556809706217, + "cloid": "0x00000000000000000000000388000360", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3566.4", + "sz": "1.079", + "side": "B", + "time": 1762185898083, + "startPosition": "-1457.2677", + "dir": "Close Short", + "closedPnl": "587.17022", + "hash": "0x4306e6d6ae6224254480042ec471fe02093800bc496542f7e6cf92296d65fe0f", + "oid": 221332780979, + "crossed": true, + "fee": "0.80811", + "tid": 593772641537135, + "cloid": "0x00000000000000000000000387000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3566.4", + "sz": "0.0058", + "side": "B", + "time": 1762185898083, + "startPosition": "-1456.1887", + "dir": "Close Short", + "closedPnl": "3.156244", + "hash": "0x4306e6d6ae6224254480042ec471fe02093800bc496542f7e6cf92296d65fe0f", + "oid": 221332780979, + "crossed": true, + "fee": "0.004343", + "tid": 113083004716111, + "cloid": "0x00000000000000000000000387000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3566.4", + "sz": "1.6184", + "side": "B", + "time": 1762185898083, + "startPosition": "-1456.1829", + "dir": "Close Short", + "closedPnl": "880.700912", + "hash": "0x4306e6d6ae6224254480042ec471fe02093800bc496542f7e6cf92296d65fe0f", + "oid": 221332780979, + "crossed": true, + "fee": "1.21209", + "tid": 772175174860603, + "cloid": "0x00000000000000000000000387000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3566.5", + "sz": "0.0141", + "side": "B", + "time": 1762185898083, + "startPosition": "-1454.5645", + "dir": "Close Short", + "closedPnl": "7.671528", + "hash": "0x4306e6d6ae6224254480042ec471fe02093800bc496542f7e6cf92296d65fe0f", + "oid": 221332780979, + "crossed": true, + "fee": "0.01056", + "tid": 538956047345952, + "cloid": "0x00000000000000000000000387000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3566.6", + "sz": "0.0243", + "side": "B", + "time": 1762185898083, + "startPosition": "-1454.5504", + "dir": "Close Short", + "closedPnl": "13.218714", + "hash": "0x4306e6d6ae6224254480042ec471fe02093800bc496542f7e6cf92296d65fe0f", + "oid": 221332780979, + "crossed": true, + "fee": "0.0182", + "tid": 435216892667408, + "cloid": "0x00000000000000000000000387000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3566.6", + "sz": "0.0592", + "side": "B", + "time": 1762185898083, + "startPosition": "-1454.5261", + "dir": "Close Short", + "closedPnl": "32.203616", + "hash": "0x4306e6d6ae6224254480042ec471fe02093800bc496542f7e6cf92296d65fe0f", + "oid": 221332780979, + "crossed": true, + "fee": "0.044339", + "tid": 121191422516190, + "cloid": "0x00000000000000000000000387000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105335.0", + "sz": "0.02985", + "side": "B", + "time": 1762185898314, + "startPosition": "-1168.8525", + "dir": "Close Short", + "closedPnl": "266.63214", + "hash": "0x7de80f138af8ffea7f61042ec4720102079a00f925fc1ebc21b0ba6649fcd9d5", + "oid": 221332785622, + "crossed": true, + "fee": "0.660292", + "tid": 660137884610428, + "cloid": "0x00000000000000000000000389000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105335.0", + "sz": "0.20733", + "side": "B", + "time": 1762185898314, + "startPosition": "-1168.82265", + "dir": "Close Short", + "closedPnl": "1851.954492", + "hash": "0x7de80f138af8ffea7f61042ec4720102079a00f925fc1ebc21b0ba6649fcd9d5", + "oid": 221332785622, + "crossed": true, + "fee": "4.586212", + "tid": 740693826688574, + "cloid": "0x00000000000000000000000389000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003784", + "sz": "13233.0", + "side": "B", + "time": 1762185898880, + "startPosition": "-1176353682.0", + "dir": "Close Short", + "closedPnl": "23.382711", + "hash": "0x1a93bd4829a84c771c0d042ec47209020b95002dc4ab6b49be5c689ae8ac2661", + "oid": 221332797438, + "crossed": true, + "fee": "0.010515", + "tid": 556654400210501, + "cloid": "0x00000000000000000000000385000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003784", + "sz": "118889.0", + "side": "B", + "time": 1762185898880, + "startPosition": "-1176340449.0", + "dir": "Close Short", + "closedPnl": "210.076863", + "hash": "0x1a93bd4829a84c771c0d042ec47209020b95002dc4ab6b49be5c689ae8ac2661", + "oid": 221332797438, + "crossed": true, + "fee": "0.094473", + "tid": 425874404600801, + "cloid": "0x00000000000000000000000385000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.82", + "sz": "60.21", + "side": "B", + "time": 1762185899853, + "startPosition": "-222758.76", + "dir": "Close Short", + "closedPnl": "2046.676383", + "hash": "0xe014dc9a33c1fc82e18e042ec472180207fc007fcec51b5483dd87ecf2c5d66d", + "oid": 221332816733, + "crossed": true, + "fee": "2.096644", + "tid": 582005907659847, + "cloid": "0x00000000000000000000000388000361", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3565.9", + "sz": "1.74", + "side": "B", + "time": 1762185900593, + "startPosition": "-1454.4669", + "dir": "Close Short", + "closedPnl": "947.7432", + "hash": "0x8fcaea10a69b67399144042ec4722001890001f6419e860b33939563659f4124", + "oid": 221332824888, + "crossed": true, + "fee": "1.302979", + "tid": 941785362962692, + "cloid": "0x00000000000000000000000387000365", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3565.9", + "sz": "1.0613", + "side": "B", + "time": 1762185900593, + "startPosition": "-1452.7269", + "dir": "Close Short", + "closedPnl": "578.068884", + "hash": "0x8fcaea10a69b67399144042ec4722001890001f6419e860b33939563659f4124", + "oid": 221332824888, + "crossed": true, + "fee": "0.794742", + "tid": 521214250642369, + "cloid": "0x00000000000000000000000387000365", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105354.0", + "sz": "0.01916", + "side": "B", + "time": 1762185900593, + "startPosition": "-1168.61532", + "dir": "Close Short", + "closedPnl": "170.780744", + "hash": "0xa0ca91fff2886056a244042ec4722001a000a9e58d8b7f2844933d52b18c3a41", + "oid": 221332824899, + "crossed": true, + "fee": "0.423902", + "tid": 36601422087640, + "cloid": "0x00000000000000000000000389000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105354.0", + "sz": "0.21802", + "side": "B", + "time": 1762185900593, + "startPosition": "-1168.59616", + "dir": "Close Short", + "closedPnl": "1943.299468", + "hash": "0xa0ca91fff2886056a244042ec4722001a000a9e58d8b7f2844933d52b18c3a41", + "oid": 221332824899, + "crossed": true, + "fee": "4.823548", + "tid": 849707369074165, + "cloid": "0x00000000000000000000000389000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "97821.0", + "side": "B", + "time": 1762185901584, + "startPosition": "-1176221560.0", + "dir": "Close Short", + "closedPnl": "172.556244", + "hash": "0x623d8e3ff2dc349a63b7042ec4722b02127600258ddf536c06063992b1d00e85", + "oid": 221332849095, + "crossed": true, + "fee": "0.077794", + "tid": 626487370387231, + "cloid": "0x00000000000000000000000385000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "34279.0", + "side": "B", + "time": 1762185901584, + "startPosition": "-1176123739.0", + "dir": "Close Short", + "closedPnl": "60.468156", + "hash": "0x623d8e3ff2dc349a63b7042ec4722b02127600258ddf536c06063992b1d00e85", + "oid": 221332849095, + "crossed": true, + "fee": "0.027261", + "tid": 611745385357678, + "cloid": "0x00000000000000000000000385000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.81", + "sz": "2.67", + "side": "B", + "time": 1762185901991, + "startPosition": "-222698.55", + "dir": "Close Short", + "closedPnl": "90.786141", + "hash": "0xb5c16bf9b912590db73b042ec472300207a100df541577df598a174c781632f8", + "oid": 221332854183, + "crossed": true, + "fee": "0.092969", + "tid": 965694754854167, + "cloid": "0x00000000000000000000000388000362", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.82", + "sz": "12.0", + "side": "B", + "time": 1762185901991, + "startPosition": "-222695.88", + "dir": "Close Short", + "closedPnl": "407.9076", + "hash": "0xb5c16bf9b912590db73b042ec472300207a100df541577df598a174c781632f8", + "oid": 221332854183, + "crossed": true, + "fee": "0.417866", + "tid": 927577137787323, + "cloid": "0x00000000000000000000000388000362", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.83", + "sz": "45.56", + "side": "B", + "time": 1762185901991, + "startPosition": "-222683.88", + "dir": "Close Short", + "closedPnl": "1548.233588", + "hash": "0xb5c16bf9b912590db73b042ec472300207a100df541577df598a174c781632f8", + "oid": 221332854183, + "crossed": true, + "fee": "1.586595", + "tid": 430223041901415, + "cloid": "0x00000000000000000000000388000362", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3564.7", + "sz": "2.4205", + "side": "B", + "time": 1762185902693, + "startPosition": "-1451.6656", + "dir": "Close Short", + "closedPnl": "1321.30254", + "hash": "0x277e5a985701406a28f8042ec472390221eb007df2045f3ccb4705eb16051a54", + "oid": 221332862903, + "crossed": true, + "fee": "1.811954", + "tid": 868142478423517, + "cloid": "0x00000000000000000000000387000366", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3564.8", + "sz": "0.3816", + "side": "B", + "time": 1762185902693, + "startPosition": "-1449.2451", + "dir": "Close Short", + "closedPnl": "208.269648", + "hash": "0x277e5a985701406a28f8042ec472390221eb007df2045f3ccb4705eb16051a54", + "oid": 221332862903, + "crossed": true, + "fee": "0.285668", + "tid": 732512385602335, + "cloid": "0x00000000000000000000000387000366", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105349.0", + "sz": "0.13828", + "side": "B", + "time": 1762185902693, + "startPosition": "-1168.37814", + "dir": "Close Short", + "closedPnl": "1233.236352", + "hash": "0x8d2547ce8a23c5618e9f042ec472390221ed00b42526e43330edf32149279f4c", + "oid": 221332862905, + "crossed": true, + "fee": "3.059208", + "tid": 332099897727950, + "cloid": "0x00000000000000000000000389000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105350.0", + "sz": "0.00011", + "side": "B", + "time": 1762185902693, + "startPosition": "-1168.23986", + "dir": "Close Short", + "closedPnl": "0.980914", + "hash": "0x8d2547ce8a23c5618e9f042ec472390221ed00b42526e43330edf32149279f4c", + "oid": 221332862905, + "crossed": true, + "fee": "0.002433", + "tid": 182323064176736, + "cloid": "0x00000000000000000000000389000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105351.0", + "sz": "0.00011", + "side": "B", + "time": 1762185902693, + "startPosition": "-1168.23975", + "dir": "Close Short", + "closedPnl": "0.980804", + "hash": "0x8d2547ce8a23c5618e9f042ec472390221ed00b42526e43330edf32149279f4c", + "oid": 221332862905, + "crossed": true, + "fee": "0.002433", + "tid": 987656945782477, + "cloid": "0x00000000000000000000000389000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105351.0", + "sz": "0.00949", + "side": "B", + "time": 1762185902693, + "startPosition": "-1168.23964", + "dir": "Close Short", + "closedPnl": "84.616636", + "hash": "0x8d2547ce8a23c5618e9f042ec472390221ed00b42526e43330edf32149279f4c", + "oid": 221332862905, + "crossed": true, + "fee": "0.209954", + "tid": 537795609793539, + "cloid": "0x00000000000000000000000389000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105352.0", + "sz": "0.00011", + "side": "B", + "time": 1762185902693, + "startPosition": "-1168.23015", + "dir": "Close Short", + "closedPnl": "0.980694", + "hash": "0x8d2547ce8a23c5618e9f042ec472390221ed00b42526e43330edf32149279f4c", + "oid": 221332862905, + "crossed": true, + "fee": "0.002433", + "tid": 1058752498691749, + "cloid": "0x00000000000000000000000389000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105353.0", + "sz": "0.08904", + "side": "B", + "time": 1762185902693, + "startPosition": "-1168.23004", + "dir": "Close Short", + "closedPnl": "793.738176", + "hash": "0x8d2547ce8a23c5618e9f042ec472390221ed00b42526e43330edf32149279f4c", + "oid": 221332862905, + "crossed": true, + "fee": "1.969932", + "tid": 1043197672490839, + "cloid": "0x00000000000000000000000389000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.86", + "sz": "0.1", + "side": "B", + "time": 1762185903849, + "startPosition": "-222638.32", + "dir": "Close Short", + "closedPnl": "3.39523", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.003483", + "tid": 1047779319385322, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.88", + "sz": "0.18", + "side": "B", + "time": 1762185903849, + "startPosition": "-222638.22", + "dir": "Close Short", + "closedPnl": "6.107814", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.00627", + "tid": 568058756469499, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.89", + "sz": "6.03", + "side": "B", + "time": 1762185903849, + "startPosition": "-222638.04", + "dir": "Close Short", + "closedPnl": "204.551469", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.210066", + "tid": 446415104452929, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.9", + "sz": "6.03", + "side": "B", + "time": 1762185903849, + "startPosition": "-222632.01", + "dir": "Close Short", + "closedPnl": "204.491169", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.210079", + "tid": 175950346299800, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.91", + "sz": "0.1", + "side": "B", + "time": 1762185903849, + "startPosition": "-222625.98", + "dir": "Close Short", + "closedPnl": "3.39023", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.003484", + "tid": 179203824770289, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.94", + "sz": "6.03", + "side": "B", + "time": 1762185903849, + "startPosition": "-222625.88", + "dir": "Close Short", + "closedPnl": "204.249969", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.210129", + "tid": 560520225099929, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.96", + "sz": "0.1", + "side": "B", + "time": 1762185903849, + "startPosition": "-222619.85", + "dir": "Close Short", + "closedPnl": "3.38523", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.003485", + "tid": 485128419236134, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.99", + "sz": "24.0", + "side": "B", + "time": 1762185903849, + "startPosition": "-222619.75", + "dir": "Close Short", + "closedPnl": "811.7352", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.836589", + "tid": 234272431875865, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.99", + "sz": "6.68", + "side": "B", + "time": 1762185903849, + "startPosition": "-222595.75", + "dir": "Close Short", + "closedPnl": "225.932964", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.23285", + "tid": 64627244732386, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.01", + "sz": "0.1", + "side": "B", + "time": 1762185903849, + "startPosition": "-222589.07", + "dir": "Close Short", + "closedPnl": "3.38023", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.003486", + "tid": 395717235932640, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.04", + "sz": "5.97", + "side": "B", + "time": 1762185903849, + "startPosition": "-222588.97", + "dir": "Close Short", + "closedPnl": "201.620631", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.208164", + "tid": 566732690729501, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.05", + "sz": "0.36", + "side": "B", + "time": 1762185903849, + "startPosition": "-222583.0", + "dir": "Close Short", + "closedPnl": "12.154428", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.012553", + "tid": 877965971799132, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.05", + "sz": "0.5", + "side": "B", + "time": 1762185903849, + "startPosition": "-222582.64", + "dir": "Close Short", + "closedPnl": "16.88115", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.017435", + "tid": 311725848030364, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.06", + "sz": "4.0", + "side": "B", + "time": 1762185903849, + "startPosition": "-222582.14", + "dir": "Close Short", + "closedPnl": "135.0092", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.13949", + "tid": 750001618085025, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003793", + "sz": "131648.0", + "side": "B", + "time": 1762185904250, + "startPosition": "-1176089460.0", + "dir": "Close Short", + "closedPnl": "231.437184", + "hash": "0xf7f1f003dd57c3b1f96b042ec4724b0206be00e9785ae2849bba9b569c5b9d9c", + "oid": 221332891913, + "crossed": true, + "fee": "0.104861", + "tid": 955647977746069, + "cloid": "0x00000000000000000000000385000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105421.0", + "sz": "0.00011", + "side": "B", + "time": 1762185905273, + "startPosition": "-1168.141", + "dir": "Close Short", + "closedPnl": "0.973104", + "hash": "0x4c83745b804b76bd4dfd042ec4725702088900411b4e958ff04c1fae3f4f50a7", + "oid": 221332919212, + "crossed": true, + "fee": "0.002435", + "tid": 357079365216573, + "cloid": "0x00000000000000000000000389000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105421.0", + "sz": "0.23686", + "side": "B", + "time": 1762185905273, + "startPosition": "-1168.14089", + "dir": "Close Short", + "closedPnl": "2095.358304", + "hash": "0x4c83745b804b76bd4dfd042ec4725702088900411b4e958ff04c1fae3f4f50a7", + "oid": 221332919212, + "crossed": true, + "fee": "5.243703", + "tid": 252209964060830, + "cloid": "0x00000000000000000000000389000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.4", + "sz": "0.0043", + "side": "B", + "time": 1762185905573, + "startPosition": "-1448.8635", + "dir": "Close Short", + "closedPnl": "2.322774", + "hash": "0xeda21472edc02082ef1b042ec4725b02060d005888c33f54916abfc5acc3fa6d", + "oid": 221332924209, + "crossed": true, + "fee": "0.003224", + "tid": 333262743610382, + "cloid": "0x00000000000000000000000387000367", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.5", + "sz": "0.281", + "side": "B", + "time": 1762185905573, + "startPosition": "-1448.8592", + "dir": "Close Short", + "closedPnl": "151.76248", + "hash": "0xeda21472edc02082ef1b042ec4725b02060d005888c33f54916abfc5acc3fa6d", + "oid": 221332924209, + "crossed": true, + "fee": "0.210695", + "tid": 229455981926888, + "cloid": "0x00000000000000000000000387000367", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.6", + "sz": "0.0043", + "side": "B", + "time": 1762185905573, + "startPosition": "-1448.5782", + "dir": "Close Short", + "closedPnl": "2.321914", + "hash": "0xeda21472edc02082ef1b042ec4725b02060d005888c33f54916abfc5acc3fa6d", + "oid": 221332924209, + "crossed": true, + "fee": "0.003224", + "tid": 259356895468975, + "cloid": "0x00000000000000000000000387000367", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.8", + "sz": "2.509", + "side": "B", + "time": 1762185905573, + "startPosition": "-1448.5739", + "dir": "Close Short", + "closedPnl": "1354.30802", + "hash": "0xeda21472edc02082ef1b042ec4725b02060d005888c33f54916abfc5acc3fa6d", + "oid": 221332924209, + "crossed": true, + "fee": "1.881418", + "tid": 484996855390637, + "cloid": "0x00000000000000000000000387000367", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.2", + "sz": "23.06", + "side": "B", + "time": 1762185907763, + "startPosition": "-222578.14", + "dir": "Close Short", + "closedPnl": "775.099638", + "hash": "0x45eabb6f0443133a4764042ec47276021bee00549f46320ce9b366c1c346ed24", + "oid": 221332967789, + "crossed": true, + "fee": "0.80484", + "tid": 1027002379465863, + "cloid": "0x00000000000000000000000388000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "0.1", + "side": "B", + "time": 1762185907763, + "startPosition": "-222555.08", + "dir": "Close Short", + "closedPnl": "3.36023", + "hash": "0x45eabb6f0443133a4764042ec47276021bee00549f46320ce9b366c1c346ed24", + "oid": 221332967789, + "crossed": true, + "fee": "0.00349", + "tid": 965111150699037, + "cloid": "0x00000000000000000000000388000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "0.18", + "side": "B", + "time": 1762185907763, + "startPosition": "-222554.98", + "dir": "Close Short", + "closedPnl": "6.048414", + "hash": "0x45eabb6f0443133a4764042ec47276021bee00549f46320ce9b366c1c346ed24", + "oid": 221332967789, + "crossed": true, + "fee": "0.006282", + "tid": 961936871745838, + "cloid": "0x00000000000000000000000388000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "6.03", + "side": "B", + "time": 1762185907763, + "startPosition": "-222554.8", + "dir": "Close Short", + "closedPnl": "202.561569", + "hash": "0x45eabb6f0443133a4764042ec47276021bee00549f46320ce9b366c1c346ed24", + "oid": 221332967789, + "crossed": true, + "fee": "0.210484", + "tid": 258399620181589, + "cloid": "0x00000000000000000000000388000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "30.76", + "side": "B", + "time": 1762185907763, + "startPosition": "-222548.77", + "dir": "Close Short", + "closedPnl": "1033.299148", + "hash": "0x45eabb6f0443133a4764042ec47276021bee00549f46320ce9b366c1c346ed24", + "oid": 221332967789, + "crossed": true, + "fee": "1.073714", + "tid": 186775235822171, + "cloid": "0x00000000000000000000000388000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105456.0", + "sz": "0.21", + "side": "B", + "time": 1762185908355, + "startPosition": "-1167.90403", + "dir": "Close Short", + "closedPnl": "1850.394", + "hash": "0x9cbd9c573aa164e39e37042ec4727c020ba6003cd5a483b5408647a9f9a53ece", + "oid": 221332981227, + "crossed": true, + "fee": "4.650609", + "tid": 347626623491405, + "cloid": "0x00000000000000000000000389000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105456.0", + "sz": "0.02694", + "side": "B", + "time": 1762185908355, + "startPosition": "-1167.69403", + "dir": "Close Short", + "closedPnl": "237.379116", + "hash": "0x9cbd9c573aa164e39e37042ec4727c020ba6003cd5a483b5408647a9f9a53ece", + "oid": 221332981227, + "crossed": true, + "fee": "0.596606", + "tid": 72588116066298, + "cloid": "0x00000000000000000000000389000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3575.7", + "sz": "2.7958", + "side": "B", + "time": 1762185909633, + "startPosition": "-1446.0649", + "dir": "Close Short", + "closedPnl": "1495.417504", + "hash": "0xe8b8053f239c6c35ea31042ec4728902070c0024be9f8b078c80b091e2904620", + "oid": 221332996090, + "crossed": true, + "fee": "2.099357", + "tid": 1015404566009353, + "cloid": "0x00000000000000000000000387000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "60.06", + "side": "B", + "time": 1762185911513, + "startPosition": "-222518.01", + "dir": "Close Short", + "closedPnl": "2012.148138", + "hash": "0xae3173a0b8df577aafab042ec4729c020de1008653d2764c51fa1ef377d33165", + "oid": 221333030528, + "crossed": true, + "fee": "2.097601", + "tid": 279918257281365, + "cloid": "0x00000000000000000000000388000365", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105474.0", + "sz": "0.12812", + "side": "B", + "time": 1762185911513, + "startPosition": "-1167.66709", + "dir": "Close Short", + "closedPnl": "1126.610408", + "hash": "0xc2ee7981052fb7c2c468042ec4729c020dee0066a022d69466b724d3c42391ad", + "oid": 221333030536, + "crossed": true, + "fee": "2.837799", + "tid": 185466907296852, + "cloid": "0x00000000000000000000000389000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105474.0", + "sz": "0.10871", + "side": "B", + "time": 1762185911513, + "startPosition": "-1167.53897", + "dir": "Close Short", + "closedPnl": "955.930514", + "hash": "0xc2ee7981052fb7c2c468042ec4729c020dee0066a022d69466b724d3c42391ad", + "oid": 221333030536, + "crossed": true, + "fee": "2.407876", + "tid": 112685165578706, + "cloid": "0x00000000000000000000000389000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3576.0", + "sz": "1.5247", + "side": "B", + "time": 1762185912805, + "startPosition": "-1443.2691", + "dir": "Close Short", + "closedPnl": "815.074126", + "hash": "0x98a97e3cc82d7eca9a23042ec472ac020d4e002263209d9c3c72298f872158b5", + "oid": 221333054982, + "crossed": true, + "fee": "1.144988", + "tid": 6360567175611, + "cloid": "0x00000000000000000000000387000369", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3576.1", + "sz": "0.876", + "side": "B", + "time": 1762185912805, + "startPosition": "-1441.7444", + "dir": "Close Short", + "closedPnl": "468.20448", + "hash": "0x98a97e3cc82d7eca9a23042ec472ac020d4e002263209d9c3c72298f872158b5", + "oid": 221333054982, + "crossed": true, + "fee": "0.657859", + "tid": 727804165011560, + "cloid": "0x00000000000000000000000387000369", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3576.2", + "sz": "0.3927", + "side": "B", + "time": 1762185912805, + "startPosition": "-1440.8684", + "dir": "Close Short", + "closedPnl": "209.851026", + "hash": "0x98a97e3cc82d7eca9a23042ec472ac020d4e002263209d9c3c72298f872158b5", + "oid": 221333054982, + "crossed": true, + "fee": "0.294918", + "tid": 745648026772052, + "cloid": "0x00000000000000000000000387000369", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003805", + "sz": "3977.0", + "side": "B", + "time": 1762185912805, + "startPosition": "-1175957812.0", + "dir": "Close Short", + "closedPnl": "6.943842", + "hash": "0xf8dfdfbc44f891dcfa59042ec472ac020da300a1dffbb0af9ca88b0f03fc6bc7", + "oid": 221333055052, + "crossed": true, + "fee": "0.003177", + "tid": 1068512191194051, + "cloid": "0x00000000000000000000000385000318", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003805", + "sz": "127511.0", + "side": "B", + "time": 1762185912805, + "startPosition": "-1175953835.0", + "dir": "Close Short", + "closedPnl": "222.634206", + "hash": "0xf8dfdfbc44f891dcfa59042ec472ac020da300a1dffbb0af9ca88b0f03fc6bc7", + "oid": 221333055052, + "crossed": true, + "fee": "0.101887", + "tid": 514640658618585, + "cloid": "0x00000000000000000000000385000318", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.26", + "sz": "60.06", + "side": "B", + "time": 1762185913526, + "startPosition": "-222457.95", + "dir": "Close Short", + "closedPnl": "2015.151138", + "hash": "0xec554844bd1cce03edcf042ec472b3020212002a581fecd5901df3977c10a7ee", + "oid": 221333064367, + "crossed": true, + "fee": "2.09697", + "tid": 418323812246356, + "cloid": "0x00000000000000000000000388000366", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105477.0", + "sz": "0.23686", + "side": "B", + "time": 1762185915968, + "startPosition": "-1167.43026", + "dir": "Close Short", + "closedPnl": "2082.094144", + "hash": "0x3060e662c5ff6e2831da042ec472d0017f00fe4860f28cfad42991b584f34812", + "oid": 221333100061, + "crossed": true, + "fee": "5.246489", + "tid": 587719875811102, + "cloid": "0x00000000000000000000000389000037", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3578.2", + "sz": "2.792", + "side": "B", + "time": 1762185915968, + "startPosition": "-1440.4757", + "dir": "Close Short", + "closedPnl": "1486.40496", + "hash": "0x70f92a9489db3d287272042ec472d002016d007a24de5bfa14c1d5e748df1713", + "oid": 221333100163, + "crossed": true, + "fee": "2.09797", + "tid": 279496472953620, + "cloid": "0x00000000000000000000000387000370", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003806", + "sz": "131268.0", + "side": "B", + "time": 1762185915968, + "startPosition": "-1175826324.0", + "dir": "Close Short", + "closedPnl": "229.06266", + "hash": "0x3165ed938371634d32df042ec472d002021700791e74821fd52e98e642753d37", + "oid": 221333100260, + "crossed": true, + "fee": "0.104917", + "tid": 527264521552147, + "cloid": "0x00000000000000000000000385000319", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.42", + "sz": "60.04", + "side": "B", + "time": 1762185915968, + "startPosition": "-222397.89", + "dir": "Close Short", + "closedPnl": "2004.873692", + "hash": "0x1eb317de81905f76202c042ec472d002024900c41c937e48c27bc33140943960", + "oid": 221333100289, + "crossed": true, + "fee": "2.098289", + "tid": 514775514706890, + "cloid": "0x00000000000000000000000388000367", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "116001.0", + "side": "B", + "time": 1762185918464, + "startPosition": "-1175695056.0", + "dir": "Close Short", + "closedPnl": "201.957741", + "hash": "0x9a21e6bd608af95f9b9b042ec472f101ab00fea2fb8e18313dea92101f8ed34a", + "oid": 221333147171, + "crossed": true, + "fee": "0.092812", + "tid": 937351317228560, + "cloid": "0x00000000000000000000000385000320", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "0.54", + "side": "B", + "time": 1762185918464, + "startPosition": "-222337.85", + "dir": "Close Short", + "closedPnl": "17.945442", + "hash": "0x1a4d67f02ac0a23b1bc7042ec472f101ef007fd5c5c3c10dbe161342e9c47c25", + "oid": 221333147194, + "crossed": true, + "fee": "0.01889", + "tid": 143256791127095, + "cloid": "0x00000000000000000000000388000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "12.0", + "side": "B", + "time": 1762185918464, + "startPosition": "-222337.31", + "dir": "Close Short", + "closedPnl": "398.5476", + "hash": "0x1a4d67f02ac0a23b1bc7042ec472f101ef007fd5c5c3c10dbe161342e9c47c25", + "oid": 221333147194, + "crossed": true, + "fee": "0.419831", + "tid": 597286876467056, + "cloid": "0x00000000000000000000000388000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "0.1", + "side": "B", + "time": 1762185918464, + "startPosition": "-222325.31", + "dir": "Close Short", + "closedPnl": "3.31923", + "hash": "0x1a4d67f02ac0a23b1bc7042ec472f101ef007fd5c5c3c10dbe161342e9c47c25", + "oid": 221333147194, + "crossed": true, + "fee": "0.003499", + "tid": 364522094433806, + "cloid": "0x00000000000000000000000388000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "22.39", + "side": "B", + "time": 1762185918464, + "startPosition": "-222325.21", + "dir": "Close Short", + "closedPnl": "743.175597", + "hash": "0x1a4d67f02ac0a23b1bc7042ec472f101ef007fd5c5c3c10dbe161342e9c47c25", + "oid": 221333147194, + "crossed": true, + "fee": "0.78343", + "tid": 849654269698070, + "cloid": "0x00000000000000000000000388000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "6.01", + "side": "B", + "time": 1762185918464, + "startPosition": "-222302.82", + "dir": "Close Short", + "closedPnl": "199.485723", + "hash": "0x1a4d67f02ac0a23b1bc7042ec472f101ef007fd5c5c3c10dbe161342e9c47c25", + "oid": 221333147194, + "crossed": true, + "fee": "0.210291", + "tid": 948342661052342, + "cloid": "0x00000000000000000000000388000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "6.01", + "side": "B", + "time": 1762185918464, + "startPosition": "-222296.81", + "dir": "Close Short", + "closedPnl": "199.425623", + "hash": "0x1a4d67f02ac0a23b1bc7042ec472f101ef007fd5c5c3c10dbe161342e9c47c25", + "oid": 221333147194, + "crossed": true, + "fee": "0.210303", + "tid": 462289176687914, + "cloid": "0x00000000000000000000000388000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.64", + "sz": "12.92", + "side": "B", + "time": 1762185918464, + "startPosition": "-222290.8", + "dir": "Close Short", + "closedPnl": "428.586116", + "hash": "0x1a4d67f02ac0a23b1bc7042ec472f101ef007fd5c5c3c10dbe161342e9c47c25", + "oid": 221333147194, + "crossed": true, + "fee": "0.452127", + "tid": 893325363439801, + "cloid": "0x00000000000000000000000388000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3580.7", + "sz": "0.1644", + "side": "B", + "time": 1762185918464, + "startPosition": "-1437.6837", + "dir": "Close Short", + "closedPnl": "87.112272", + "hash": "0xcd20de8b4451e4b6ce9a042ec472f101f000f670df55038870e989de0355bea1", + "oid": 221333147195, + "crossed": true, + "fee": "0.12362", + "tid": 703502386237895, + "cloid": "0x00000000000000000000000387000371", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.2", + "sz": "0.0042", + "side": "B", + "time": 1762185918464, + "startPosition": "-1437.5193", + "dir": "Close Short", + "closedPnl": "2.223396", + "hash": "0xcd20de8b4451e4b6ce9a042ec472f101f000f670df55038870e989de0355bea1", + "oid": 221333147195, + "crossed": true, + "fee": "0.003158", + "tid": 774436762207385, + "cloid": "0x00000000000000000000000387000371", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.2", + "sz": "1.6184", + "side": "B", + "time": 1762185918464, + "startPosition": "-1437.5151", + "dir": "Close Short", + "closedPnl": "856.748592", + "hash": "0xcd20de8b4451e4b6ce9a042ec472f101f000f670df55038870e989de0355bea1", + "oid": 221333147195, + "crossed": true, + "fee": "1.21712", + "tid": 1013488523978133, + "cloid": "0x00000000000000000000000387000371", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.3", + "sz": "1.0055", + "side": "B", + "time": 1762185918464, + "startPosition": "-1435.8967", + "dir": "Close Short", + "closedPnl": "532.19104", + "hash": "0xcd20de8b4451e4b6ce9a042ec472f101f000f670df55038870e989de0355bea1", + "oid": 221333147195, + "crossed": true, + "fee": "0.756209", + "tid": 796195628939745, + "cloid": "0x00000000000000000000000387000371", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105513.0", + "sz": "0.23686", + "side": "B", + "time": 1762185918464, + "startPosition": "-1167.1934", + "dir": "Close Short", + "closedPnl": "2073.567184", + "hash": "0x7ff455265de32732816e042ec472f101f1006d0bf8e6460423bd00791ce7011d", + "oid": 221333147196, + "crossed": true, + "fee": "5.248279", + "tid": 864927179459900, + "cloid": "0x00000000000000000000000389000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "15063.0", + "side": "B", + "time": 1762185919941, + "startPosition": "-1175579055.0", + "dir": "Close Short", + "closedPnl": "26.224683", + "hash": "0xc8d7922e2b2f33d9ca51042ec47302020ad00013c62252ab6ca03d80ea230dc4", + "oid": 221333147171, + "crossed": false, + "fee": "0.001606", + "tid": 819818207136178, + "cloid": "0x00000000000000000000000385000320", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105497.0", + "sz": "0.03739", + "side": "B", + "time": 1762185921367, + "startPosition": "-1166.95654", + "dir": "Close Short", + "closedPnl": "327.925256", + "hash": "0x46454c0f0253f01a47bf042ec47311020f3000f49d570eecea0df761c157ca04", + "oid": 221333207402, + "crossed": true, + "fee": "0.828351", + "tid": 1012794975426725, + "cloid": "0x00000000000000000000000389000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105497.0", + "sz": "0.17", + "side": "B", + "time": 1762185921367, + "startPosition": "-1166.91915", + "dir": "Close Short", + "closedPnl": "1490.968", + "hash": "0x46454c0f0253f01a47bf042ec47311020f3000f49d570eecea0df761c157ca04", + "oid": 221333207402, + "crossed": true, + "fee": "3.766242", + "tid": 824974568501627, + "cloid": "0x00000000000000000000000389000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105497.0", + "sz": "0.01189", + "side": "B", + "time": 1762185921367, + "startPosition": "-1166.74915", + "dir": "Close Short", + "closedPnl": "104.280056", + "hash": "0x46454c0f0253f01a47bf042ec47311020f3000f49d570eecea0df761c157ca04", + "oid": 221333207402, + "crossed": true, + "fee": "0.263415", + "tid": 763237663775467, + "cloid": "0x00000000000000000000000389000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105497.0", + "sz": "0.01751", + "side": "B", + "time": 1762185921367, + "startPosition": "-1166.73726", + "dir": "Close Short", + "closedPnl": "153.569704", + "hash": "0x46454c0f0253f01a47bf042ec47311020f3000f49d570eecea0df761c157ca04", + "oid": 221333207402, + "crossed": true, + "fee": "0.387923", + "tid": 863917967467678, + "cloid": "0x00000000000000000000000389000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3580.0", + "sz": "1.74", + "side": "B", + "time": 1762185921448, + "startPosition": "-1434.8912", + "dir": "Close Short", + "closedPnl": "923.2092", + "hash": "0x2ba9c512ddc33a6d2d23042ec4731202013a00f878c6593fcf7270659cc71457", + "oid": 221333208248, + "crossed": true, + "fee": "1.308132", + "tid": 881800132890053, + "cloid": "0x00000000000000000000000387000372", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3580.1", + "sz": "1.0508", + "side": "B", + "time": 1762185921448, + "startPosition": "-1433.1512", + "dir": "Close Short", + "closedPnl": "557.428384", + "hash": "0x2ba9c512ddc33a6d2d23042ec4731202013a00f878c6593fcf7270659cc71457", + "oid": 221333208248, + "crossed": true, + "fee": "0.790013", + "tid": 366404973387515, + "cloid": "0x00000000000000000000000387000372", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "59.94", + "side": "B", + "time": 1762185921448, + "startPosition": "-222277.88", + "dir": "Close Short", + "closedPnl": "1996.139862", + "hash": "0x27ec6721dd6fd3422966042ec4731202014400077862f214cbb512749c63ad2c", + "oid": 221333208257, + "crossed": true, + "fee": "2.095927", + "tid": 849325547466534, + "cloid": "0x00000000000000000000000388000369", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "131234.0", + "side": "B", + "time": 1762185922928, + "startPosition": "-1175563992.0", + "dir": "Close Short", + "closedPnl": "228.872096", + "hash": "0x8bc2b4b2a175afe98d3c042ec47322020ddd00983c78cebb2f8b6005607989d4", + "oid": 221333237019, + "crossed": true, + "fee": "0.104917", + "tid": 251856170280260, + "cloid": "0x00000000000000000000000385000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "0.1", + "side": "B", + "time": 1762185924556, + "startPosition": "-222217.94", + "dir": "Close Short", + "closedPnl": "3.31423", + "hash": "0x892615431447485e8a9f042ec473370207690028af4a67302ceec095d34b2249", + "oid": 221333264834, + "crossed": true, + "fee": "0.0035", + "tid": 989139417260672, + "cloid": "0x00000000000000000000000388000370", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "59.86", + "side": "B", + "time": 1762185924556, + "startPosition": "-222217.84", + "dir": "Close Short", + "closedPnl": "1983.898078", + "hash": "0x892615431447485e8a9f042ec473370207690028af4a67302ceec095d34b2249", + "oid": 221333264834, + "crossed": true, + "fee": "2.095141", + "tid": 648319443596381, + "cloid": "0x00000000000000000000000388000370", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105529.0", + "sz": "0.06176", + "side": "B", + "time": 1762185924556, + "startPosition": "-1166.71975", + "dir": "Close Short", + "closedPnl": "539.683584", + "hash": "0xe394e8a6464f97d4e50e042ec47337020789008be142b6a6875d93f9054371bf", + "oid": 221333264852, + "crossed": true, + "fee": "1.368668", + "tid": 1116800879240659, + "cloid": "0x00000000000000000000000389000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105529.0", + "sz": "0.14214", + "side": "B", + "time": 1762185924556, + "startPosition": "-1166.65799", + "dir": "Close Short", + "closedPnl": "1242.076176", + "hash": "0xe394e8a6464f97d4e50e042ec47337020789008be142b6a6875d93f9054371bf", + "oid": 221333264852, + "crossed": true, + "fee": "3.149977", + "tid": 856217954361712, + "cloid": "0x00000000000000000000000389000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105529.0", + "sz": "0.03284", + "side": "B", + "time": 1762185924556, + "startPosition": "-1166.51585", + "dir": "Close Short", + "closedPnl": "286.969056", + "hash": "0xe394e8a6464f97d4e50e042ec47337020789008be142b6a6875d93f9054371bf", + "oid": 221333264852, + "crossed": true, + "fee": "0.72777", + "tid": 962222804641195, + "cloid": "0x00000000000000000000000389000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3580.7", + "sz": "2.7908", + "side": "B", + "time": 1762185925419, + "startPosition": "-1432.1004", + "dir": "Close Short", + "closedPnl": "1478.789104", + "hash": "0xa7efb71b5d995b84a969042ec47340020fd90000f89c7a564bb8626e1c9d356f", + "oid": 221333284337, + "crossed": true, + "fee": "2.098533", + "tid": 459779982187224, + "cloid": "0x00000000000000000000000387000373", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131165.0", + "side": "B", + "time": 1762185925462, + "startPosition": "-1175432758.0", + "dir": "Close Short", + "closedPnl": "228.358265", + "hash": "0x1b70001b77de84131ce9042ec47341020358000112d1a2e5bf38ab6e36d25dfd", + "oid": 221333284383, + "crossed": false, + "fee": "0.013992", + "tid": 1045427812836183, + "cloid": "0x00000000000000000000000385000322", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "59.95", + "side": "B", + "time": 1762185927773, + "startPosition": "-222157.98", + "dir": "Close Short", + "closedPnl": "1993.475385", + "hash": "0x2634f98343fbf56827ae042ec4735c021ba30068deff143ac9fda4d602ffcf52", + "oid": 221333324005, + "crossed": true, + "fee": "2.096907", + "tid": 94188077435672, + "cloid": "0x00000000000000000000000388000371", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "131267.0", + "side": "B", + "time": 1762185928058, + "startPosition": "-1175301593.0", + "dir": "Close Short", + "closedPnl": "228.929648", + "hash": "0xe982ec155b3cd769eafc042ec4735e0205ad00faf63ff63b8d4b97681a30b154", + "oid": 221333333390, + "crossed": true, + "fee": "0.104944", + "tid": 504325053170708, + "cloid": "0x00000000000000000000000385000323", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105517.0", + "sz": "0.05326", + "side": "B", + "time": 1762185928058, + "startPosition": "-1166.48301", + "dir": "Close Short", + "closedPnl": "466.046304", + "hash": "0x9c5662b074ce19e59dd0042ec4735e0205ae00960fc138b7401f0e0333c1f3d0", + "oid": 221333333391, + "crossed": true, + "fee": "1.180165", + "tid": 48228184830096, + "cloid": "0x00000000000000000000000389000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105517.0", + "sz": "0.1835", + "side": "B", + "time": 1762185928058, + "startPosition": "-1166.42975", + "dir": "Close Short", + "closedPnl": "1605.6984", + "hash": "0x9c5662b074ce19e59dd0042ec4735e0205ae00960fc138b7401f0e0333c1f3d0", + "oid": 221333333391, + "crossed": true, + "fee": "4.066097", + "tid": 652622460498696, + "cloid": "0x00000000000000000000000389000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3579.8", + "sz": "1.5", + "side": "B", + "time": 1762185929390, + "startPosition": "-1429.3096", + "dir": "Close Short", + "closedPnl": "796.17", + "hash": "0x1cd3b94ac2367e311e4d042ec4736d02031200305d399d03c09c649d813a581b", + "oid": 221333358681, + "crossed": true, + "fee": "1.127637", + "tid": 654964061619832, + "cloid": "0x00000000000000000000000387000374", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3579.8", + "sz": "1.2907", + "side": "B", + "time": 1762185929390, + "startPosition": "-1427.8096", + "dir": "Close Short", + "closedPnl": "685.077746", + "hash": "0x1cd3b94ac2367e311e4d042ec4736d02031200305d399d03c09c649d813a581b", + "oid": 221333358681, + "crossed": true, + "fee": "0.970294", + "tid": 638585403732726, + "cloid": "0x00000000000000000000000387000374", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003806", + "sz": "131280.0", + "side": "B", + "time": 1762185930164, + "startPosition": "-1175170326.0", + "dir": "Close Short", + "closedPnl": "229.0836", + "hash": "0x5e91839e9c4d8ca3600b042ec473730209bd00843740ab75025a2ef15b41668e", + "oid": 221333374526, + "crossed": true, + "fee": "0.104926", + "tid": 512946006226681, + "cloid": "0x00000000000000000000000385000324", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105515.0", + "sz": "0.23679", + "side": "B", + "time": 1762185930164, + "startPosition": "-1166.24625", + "dir": "Close Short", + "closedPnl": "2072.480796", + "hash": "0x68166fabe773b76a6990042ec473730209e800918276d63c0bdf1afea6779155", + "oid": 221333374558, + "crossed": true, + "fee": "5.246828", + "tid": 473120589392720, + "cloid": "0x00000000000000000000000389000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.43", + "sz": "7.4", + "side": "B", + "time": 1762185931049, + "startPosition": "-222098.03", + "dir": "Close Short", + "closedPnl": "247.02902", + "hash": "0x236c0b82536079ba24e5042ec4737e0188002367ee63988cc734b6d5126453a4", + "oid": 221333385544, + "crossed": true, + "fee": "0.258632", + "tid": 797030252371410, + "cloid": "0x00000000000000000000000388000372", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.43", + "sz": "52.61", + "side": "B", + "time": 1762185931049, + "startPosition": "-222090.63", + "dir": "Close Short", + "closedPnl": "1756.242803", + "hash": "0x236c0b82536079ba24e5042ec4737e0188002367ee63988cc734b6d5126453a4", + "oid": 221333385544, + "crossed": true, + "fee": "1.838735", + "tid": 1045788793238407, + "cloid": "0x00000000000000000000000388000372", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3579.8", + "sz": "2.7906", + "side": "B", + "time": 1762185931627, + "startPosition": "-1426.5189", + "dir": "Close Short", + "closedPnl": "1481.194668", + "hash": "0x93660324e516c0be94df042ec47384020ebd000a8019df90372eae77a41a9aa9", + "oid": 221333396509, + "crossed": true, + "fee": "2.097855", + "tid": 561168164319796, + "cloid": "0x00000000000000000000000387000375", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105472.0", + "sz": "0.12961", + "side": "B", + "time": 1762185932534, + "startPosition": "-1166.00946", + "dir": "Close Short", + "closedPnl": "1139.971794", + "hash": "0x731bddd728f13f227495042ec4738f020c3400bcc3f45df416e48929e7f5190d", + "oid": 221333413619, + "crossed": true, + "fee": "2.870747", + "tid": 760629758739580, + "cloid": "0x00000000000000000000000389000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105475.0", + "sz": "0.0474", + "side": "B", + "time": 1762185932534, + "startPosition": "-1165.87985", + "dir": "Close Short", + "closedPnl": "416.75976", + "hash": "0x731bddd728f13f227495042ec4738f020c3400bcc3f45df416e48929e7f5190d", + "oid": 221333413619, + "crossed": true, + "fee": "1.049898", + "tid": 798464216267905, + "cloid": "0x00000000000000000000000389000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105476.0", + "sz": "0.0474", + "side": "B", + "time": 1762185932534, + "startPosition": "-1165.83245", + "dir": "Close Short", + "closedPnl": "416.71236", + "hash": "0x731bddd728f13f227495042ec4738f020c3400bcc3f45df416e48929e7f5190d", + "oid": 221333413619, + "crossed": true, + "fee": "1.049908", + "tid": 863979946529384, + "cloid": "0x00000000000000000000000389000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105477.0", + "sz": "0.01244", + "side": "B", + "time": 1762185932534, + "startPosition": "-1165.78505", + "dir": "Close Short", + "closedPnl": "109.352576", + "hash": "0x731bddd728f13f227495042ec4738f020c3400bcc3f45df416e48929e7f5190d", + "oid": 221333413619, + "crossed": true, + "fee": "0.275548", + "tid": 840309661732940, + "cloid": "0x00000000000000000000000389000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "99468.0", + "side": "B", + "time": 1762185932534, + "startPosition": "-1175039046.0", + "dir": "Close Short", + "closedPnl": "173.472192", + "hash": "0x27f9849d8cf1de0f2973042ec4738f020c74008327f4fce1cbc22ff04bf5b7f9", + "oid": 221333413636, + "crossed": true, + "fee": "0.079521", + "tid": 1041082114972008, + "cloid": "0x00000000000000000000000385000325", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "31828.0", + "side": "B", + "time": 1762185932534, + "startPosition": "-1174939578.0", + "dir": "Close Short", + "closedPnl": "55.476204", + "hash": "0x27f9849d8cf1de0f2973042ec4738f020c74008327f4fce1cbc22ff04bf5b7f9", + "oid": 221333413636, + "crossed": true, + "fee": "0.025452", + "tid": 969001571408085, + "cloid": "0x00000000000000000000000385000325", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.29", + "sz": "60.06", + "side": "B", + "time": 1762185933258, + "startPosition": "-222038.02", + "dir": "Close Short", + "closedPnl": "2013.349338", + "hash": "0xe800f1a483daba26e97a042ec473970209ea008a1eddd8f88bc99cf742de9411", + "oid": 221333431738, + "crossed": true, + "fee": "2.097349", + "tid": 398711462058449, + "cloid": "0x00000000000000000000000388000373", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3579.0", + "sz": "2.7922", + "side": "B", + "time": 1762185934465, + "startPosition": "-1423.7283", + "dir": "Close Short", + "closedPnl": "1484.277676", + "hash": "0xe321c3941a05fb03e49b042ec473a70205f50079b50919d586ea6ee6d909d4ee", + "oid": 221333450156, + "crossed": true, + "fee": "2.098589", + "tid": 498166837386235, + "cloid": "0x00000000000000000000000387000376", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105464.0", + "sz": "0.23686", + "side": "B", + "time": 1762185935367, + "startPosition": "-1165.77261", + "dir": "Close Short", + "closedPnl": "2085.173324", + "hash": "0x8748713e5852fa3488c2042ec473af0203fa0023f35619062b111c911756d41f", + "oid": 221333470766, + "crossed": true, + "fee": "5.245842", + "tid": 1058552845936911, + "cloid": "0x00000000000000000000000389000044", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "60.04", + "side": "B", + "time": 1762185935583, + "startPosition": "-221977.96", + "dir": "Close Short", + "closedPnl": "2010.277292", + "hash": "0x0165b24cd75cebf702df042ec473b202041b003272500ac9a52e5d9f9650c5e1", + "oid": 221333472643, + "crossed": true, + "fee": "2.097155", + "tid": 703330822321994, + "cloid": "0x00000000000000000000000388000374", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3579.2", + "sz": "0.0055", + "side": "B", + "time": 1762185936830, + "startPosition": "-1420.9361", + "dir": "Close Short", + "closedPnl": "2.92259", + "hash": "0xa8eac6fe6dc45786aa64042ec473be0211de00e408c776584cb372512cc83171", + "oid": 221333503320, + "crossed": true, + "fee": "0.004133", + "tid": 265433312809924, + "cloid": "0x00000000000000000000000387000377", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3579.5", + "sz": "0.003", + "side": "B", + "time": 1762185936830, + "startPosition": "-1420.9306", + "dir": "Close Short", + "closedPnl": "1.59324", + "hash": "0xa8eac6fe6dc45786aa64042ec473be0211de00e408c776584cb372512cc83171", + "oid": 221333503320, + "crossed": true, + "fee": "0.002255", + "tid": 455706595708496, + "cloid": "0x00000000000000000000000387000377", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3580.2", + "sz": "2.7836", + "side": "B", + "time": 1762185936830, + "startPosition": "-1420.9276", + "dir": "Close Short", + "closedPnl": "1476.365768", + "hash": "0xa8eac6fe6dc45786aa64042ec473be0211de00e408c776584cb372512cc83171", + "oid": 221333503320, + "crossed": true, + "fee": "2.092827", + "tid": 252948511777195, + "cloid": "0x00000000000000000000000387000377", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105564.0", + "sz": "0.2367", + "side": "B", + "time": 1762185937617, + "startPosition": "-1165.53575", + "dir": "Close Short", + "closedPnl": "2060.09478", + "hash": "0xee08af9928aa9e52ef82042ec473c802020a007ec3adbd2491d15aebe7ae783d", + "oid": 221333527176, + "crossed": true, + "fee": "5.247269", + "tid": 1124363771001341, + "cloid": "0x00000000000000000000000389000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "59.98", + "side": "B", + "time": 1762185938314, + "startPosition": "-221917.92", + "dir": "Close Short", + "closedPnl": "1997.471954", + "hash": "0x7db136b0d6cdf9ca7f2a042ec473d1020d4f009671c1189c2179e20395c1d3b5", + "oid": 221333539847, + "crossed": true, + "fee": "2.097326", + "tid": 879619489067564, + "cloid": "0x00000000000000000000000388000375", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.1", + "sz": "2.2705", + "side": "B", + "time": 1762185939586, + "startPosition": "-1418.144", + "dir": "Close Short", + "closedPnl": "1202.18434", + "hash": "0x7a45f1baf874325d7bbf042ec473e002049700a09377512f1e0e9d0db7780c48", + "oid": 221333559626, + "crossed": true, + "fee": "1.707486", + "tid": 860626584661517, + "cloid": "0x00000000000000000000000387000378", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.1", + "sz": "0.5199", + "side": "B", + "time": 1762185939586, + "startPosition": "-1415.8735", + "dir": "Close Short", + "closedPnl": "275.276652", + "hash": "0x7a45f1baf874325d7bbf042ec473e002049700a09377512f1e0e9d0db7780c48", + "oid": 221333559626, + "crossed": true, + "fee": "0.39098", + "tid": 611687215344942, + "cloid": "0x00000000000000000000000387000378", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105565.0", + "sz": "0.13291", + "side": "B", + "time": 1762185940260, + "startPosition": "-1165.29905", + "dir": "Close Short", + "closedPnl": "1156.635984", + "hash": "0xc2f8813da86008a4c472042ec473e80206c600234363277666c12c906763e28f", + "oid": 221333570566, + "crossed": true, + "fee": "2.946435", + "tid": 833362023204450, + "cloid": "0x00000000000000000000000389000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105565.0", + "sz": "0.10374", + "side": "B", + "time": 1762185940260, + "startPosition": "-1165.16614", + "dir": "Close Short", + "closedPnl": "902.786976", + "hash": "0xc2f8813da86008a4c472042ec473e80206c600234363277666c12c906763e28f", + "oid": 221333570566, + "crossed": true, + "fee": "2.299775", + "tid": 332908694573101, + "cloid": "0x00000000000000000000000389000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.48", + "sz": "49.86", + "side": "B", + "time": 1762185940442, + "startPosition": "-221857.94", + "dir": "Close Short", + "closedPnl": "1661.948478", + "hash": "0xf61f87238a5b90e8f799042ec473ea0203b30009255eafbb99e83276495f6ad3", + "oid": 221333574051, + "crossed": true, + "fee": "1.743145", + "tid": 484244884261859, + "cloid": "0x00000000000000000000000388000376", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.48", + "sz": "10.14", + "side": "B", + "time": 1762185940442, + "startPosition": "-221808.08", + "dir": "Close Short", + "closedPnl": "337.989522", + "hash": "0xf61f87238a5b90e8f799042ec473ea0203b30009255eafbb99e83276495f6ad3", + "oid": 221333574051, + "crossed": true, + "fee": "0.354502", + "tid": 889993392496746, + "cloid": "0x00000000000000000000000388000376", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "18.01", + "side": "B", + "time": 1762185942067, + "startPosition": "-221797.94", + "dir": "Close Short", + "closedPnl": "599.054023", + "hash": "0xd8fdee59f7b7af04da77042ec473ff0205d0003f92bacdd67cc699acb6bb88ef", + "oid": 221333605378, + "crossed": true, + "fee": "0.629908", + "tid": 194156387541600, + "cloid": "0x00000000000000000000000388000377", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "41.96", + "side": "B", + "time": 1762185942067, + "startPosition": "-221779.93", + "dir": "Close Short", + "closedPnl": "1395.686108", + "hash": "0xd8fdee59f7b7af04da77042ec473ff0205d0003f92bacdd67cc699acb6bb88ef", + "oid": 221333605378, + "crossed": true, + "fee": "1.467571", + "tid": 644242901101733, + "cloid": "0x00000000000000000000000388000377", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.3", + "sz": "2.7903", + "side": "B", + "time": 1762185942552, + "startPosition": "-1415.3536", + "dir": "Close Short", + "closedPnl": "1476.849984", + "hash": "0xfd67daf16a5c95c3fee1042ec47406012700f2d7055fb496a130864429506fae", + "oid": 221333612132, + "crossed": true, + "fee": "2.098509", + "tid": 41294023003282, + "cloid": "0x00000000000000000000000387000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "131425.0", + "side": "B", + "time": 1762185942906, + "startPosition": "-1174907750.0", + "dir": "Close Short", + "closedPnl": "229.2052", + "hash": "0x1fcdd4a21d9afd2c2147042ec4740902102c0087b89e1bfec3967ff4dc9ed716", + "oid": 221333621254, + "crossed": true, + "fee": "0.10507", + "tid": 1101963252298842, + "cloid": "0x00000000000000000000000385000328", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105584.0", + "sz": "0.23665", + "side": "B", + "time": 1762185942906, + "startPosition": "-1165.0624", + "dir": "Close Short", + "closedPnl": "2054.92661", + "hash": "0x5a4788520228b6d95bc1042ec4740902105d00379d2bd5abfe1033a4c12c90c3", + "oid": 221333621290, + "crossed": true, + "fee": "5.247155", + "tid": 714366811104425, + "cloid": "0x00000000000000000000000389000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "25.04", + "side": "B", + "time": 1762185943914, + "startPosition": "-221737.97", + "dir": "Close Short", + "closedPnl": "834.139992", + "hash": "0xc830f0baeeeb522bc9aa042ec47413020b5700a089ee70fd6bf99c0dadef2c16", + "oid": 221333641794, + "crossed": true, + "fee": "0.875523", + "tid": 805215516206366, + "cloid": "0x00000000000000000000000388000378", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "34.94", + "side": "B", + "time": 1762185943914, + "startPosition": "-221712.93", + "dir": "Close Short", + "closedPnl": "1163.931762", + "hash": "0xc830f0baeeeb522bc9aa042ec47413020b5700a089ee70fd6bf99c0dadef2c16", + "oid": 221333641794, + "crossed": true, + "fee": "1.221677", + "tid": 1097521154288579, + "cloid": "0x00000000000000000000000388000378", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3578.8", + "sz": "1.0823", + "side": "B", + "time": 1762185944776, + "startPosition": "-1412.5633", + "dir": "Close Short", + "closedPnl": "575.545494", + "hash": "0xae055bef1213e5e2af7f042ec4741e02098b00d4ad1704b451ce0741d117bfcd", + "oid": 221333661664, + "crossed": true, + "fee": "0.8134", + "tid": 1015241074662270, + "cloid": "0x00000000000000000000000387000380", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3578.8", + "sz": "1.0823", + "side": "B", + "time": 1762185944776, + "startPosition": "-1411.481", + "dir": "Close Short", + "closedPnl": "575.545494", + "hash": "0xae055bef1213e5e2af7f042ec4741e02098b00d4ad1704b451ce0741d117bfcd", + "oid": 221333661664, + "crossed": true, + "fee": "0.8134", + "tid": 323006509539603, + "cloid": "0x00000000000000000000000387000380", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3578.8", + "sz": "0.6261", + "side": "B", + "time": 1762185944776, + "startPosition": "-1410.3987", + "dir": "Close Short", + "closedPnl": "332.947458", + "hash": "0xae055bef1213e5e2af7f042ec4741e02098b00d4ad1704b451ce0741d117bfcd", + "oid": 221333661664, + "crossed": true, + "fee": "0.470544", + "tid": 1032462707912147, + "cloid": "0x00000000000000000000000387000380", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "116118.0", + "side": "B", + "time": 1762185944776, + "startPosition": "-1174776325.0", + "dir": "Close Short", + "closedPnl": "202.509792", + "hash": "0x9b52863a1032e20b9ccc042ec4741e0209bd001fab3600dd3f1b318ccf36bbf6", + "oid": 221333661692, + "crossed": true, + "fee": "0.092832", + "tid": 932404501499557, + "cloid": "0x00000000000000000000000385000329", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "15185.0", + "side": "B", + "time": 1762185944776, + "startPosition": "-1174660207.0", + "dir": "Close Short", + "closedPnl": "26.467455", + "hash": "0x9b52863a1032e20b9ccc042ec4741e0209bd001fab3600dd3f1b318ccf36bbf6", + "oid": 221333661692, + "crossed": true, + "fee": "0.012143", + "tid": 965375729372762, + "cloid": "0x00000000000000000000000385000329", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105550.0", + "sz": "0.16255", + "side": "B", + "time": 1762185944776, + "startPosition": "-1164.82575", + "dir": "Close Short", + "closedPnl": "1417.01337", + "hash": "0x4a689ee42960bd5c4be2042ec4741e0209c800c9c463dc2eee314a36e8649746", + "oid": 221333661695, + "crossed": true, + "fee": "3.603002", + "tid": 554306745146824, + "cloid": "0x00000000000000000000000389000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105550.0", + "sz": "0.07416", + "side": "B", + "time": 1762185944776, + "startPosition": "-1164.6632", + "dir": "Close Short", + "closedPnl": "646.482384", + "hash": "0x4a689ee42960bd5c4be2042ec4741e0209c800c9c463dc2eee314a36e8649746", + "oid": 221333661695, + "crossed": true, + "fee": "1.643793", + "tid": 213718468101067, + "cloid": "0x00000000000000000000000389000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "15.83", + "side": "B", + "time": 1762185947557, + "startPosition": "-221677.99", + "dir": "Close Short", + "closedPnl": "526.542209", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.553662", + "tid": 311574426012047, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "0.1", + "side": "B", + "time": 1762185947557, + "startPosition": "-221662.16", + "dir": "Close Short", + "closedPnl": "3.32423", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.003497", + "tid": 695120561430474, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "3.0", + "side": "B", + "time": 1762185947557, + "startPosition": "-221662.06", + "dir": "Close Short", + "closedPnl": "99.7269", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.104939", + "tid": 20633187857015, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "0.09", + "side": "B", + "time": 1762185947557, + "startPosition": "-221659.06", + "dir": "Close Short", + "closedPnl": "2.990907", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.003148", + "tid": 183352765616403, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "10.01", + "side": "B", + "time": 1762185947557, + "startPosition": "-221658.97", + "dir": "Close Short", + "closedPnl": "332.655323", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.350167", + "tid": 931273138047445, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "8.75", + "side": "B", + "time": 1762185947557, + "startPosition": "-221648.96", + "dir": "Close Short", + "closedPnl": "290.782625", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.30609", + "tid": 829940964587727, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "1.76", + "side": "B", + "time": 1762185947557, + "startPosition": "-221640.21", + "dir": "Close Short", + "closedPnl": "58.488848", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.061567", + "tid": 1074870877015805, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "12.0", + "side": "B", + "time": 1762185947557, + "startPosition": "-221638.45", + "dir": "Close Short", + "closedPnl": "398.7876", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.419781", + "tid": 339222623092918, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "0.1", + "side": "B", + "time": 1762185947557, + "startPosition": "-221626.45", + "dir": "Close Short", + "closedPnl": "3.32123", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.003498", + "tid": 881312043804208, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "0.18", + "side": "B", + "time": 1762185947557, + "startPosition": "-221626.35", + "dir": "Close Short", + "closedPnl": "5.978214", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.006297", + "tid": 642923528272885, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "8.14", + "side": "B", + "time": 1762185947557, + "startPosition": "-221626.17", + "dir": "Close Short", + "closedPnl": "270.266722", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.284803", + "tid": 165260243117085, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105562.0", + "sz": "0.04536", + "side": "B", + "time": 1762185947557, + "startPosition": "-1164.58904", + "dir": "Close Short", + "closedPnl": "394.876944", + "hash": "0xd07940854a81280bd1f2042ec4743e02030a006ae58446dd7441ebd8098501f6", + "oid": 221333711858, + "crossed": true, + "fee": "1.005541", + "tid": 756510356998359, + "cloid": "0x00000000000000000000000389000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105562.0", + "sz": "0.19133", + "side": "B", + "time": 1762185947557, + "startPosition": "-1164.54368", + "dir": "Close Short", + "closedPnl": "1665.604182", + "hash": "0xd07940854a81280bd1f2042ec4743e02030a006ae58446dd7441ebd8098501f6", + "oid": 221333711858, + "crossed": true, + "fee": "4.241407", + "tid": 569142015352791, + "cloid": "0x00000000000000000000000389000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3579.9", + "sz": "2.7908", + "side": "B", + "time": 1762185948039, + "startPosition": "-1409.7726", + "dir": "Close Short", + "closedPnl": "1481.021744", + "hash": "0x6e987277066915d97012042ec47445020b15005ca16c34ab12611dc9c56cefc4", + "oid": 221333721809, + "crossed": true, + "fee": "2.098064", + "tid": 654621985834161, + "cloid": "0x00000000000000000000000387000381", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105562.0", + "sz": "0.00946", + "side": "B", + "time": 1762185949034, + "startPosition": "-1164.35235", + "dir": "Close Short", + "closedPnl": "82.353084", + "hash": "0x88f00ef12cf5ead78a69042ec4745202056500d6c7f909a92cb8ba43ebf9c4c2", + "oid": 221333738398, + "crossed": true, + "fee": "0.209709", + "tid": 34221646731818, + "cloid": "0x00000000000000000000000389000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105562.0", + "sz": "0.22725", + "side": "B", + "time": 1762185949034, + "startPosition": "-1164.34289", + "dir": "Close Short", + "closedPnl": "1978.30215", + "hash": "0x88f00ef12cf5ead78a69042ec4745202056500d6c7f909a92cb8ba43ebf9c4c2", + "oid": 221333738398, + "crossed": true, + "fee": "5.037682", + "tid": 112597018742924, + "cloid": "0x00000000000000000000000389000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.65", + "sz": "5.63", + "side": "B", + "time": 1762185949261, + "startPosition": "-221618.03", + "dir": "Close Short", + "closedPnl": "186.703749", + "hash": "0x6758339f8d151ab568d1042ec474550203680085281839870b20def24c18f4a0", + "oid": 221333741342, + "crossed": true, + "fee": "0.19703", + "tid": 279352446591265, + "cloid": "0x00000000000000000000000388000380", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "54.31", + "side": "B", + "time": 1762185949261, + "startPosition": "-221612.4", + "dir": "Close Short", + "closedPnl": "1800.501413", + "hash": "0x6758339f8d151ab568d1042ec474550203680085281839870b20def24c18f4a0", + "oid": 221333741342, + "crossed": true, + "fee": "1.900773", + "tid": 751617000122701, + "cloid": "0x00000000000000000000000388000380", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.0", + "sz": "0.0704", + "side": "B", + "time": 1762185950546, + "startPosition": "-1406.9818", + "dir": "Close Short", + "closedPnl": "37.282432", + "hash": "0xc56736a7a53f180ec6e0042ec474650209ea008d403236e0692fe1fa6432f1f9", + "oid": 221333766968, + "crossed": true, + "fee": "0.052941", + "tid": 200132043863048, + "cloid": "0x00000000000000000000000387000382", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.3", + "sz": "2.7202", + "side": "B", + "time": 1762185950546, + "startPosition": "-1406.9114", + "dir": "Close Short", + "closedPnl": "1439.747456", + "hash": "0xc56736a7a53f180ec6e0042ec474650209ea008d403236e0692fe1fa6432f1f9", + "oid": 221333766968, + "crossed": true, + "fee": "2.045788", + "tid": 996437334795418, + "cloid": "0x00000000000000000000000387000382", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105575.0", + "sz": "0.04156", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.11564", + "dir": "Close Short", + "closedPnl": "361.256144", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.921416", + "tid": 106696854502015, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105576.0", + "sz": "0.00011", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.07408", + "dir": "Close Short", + "closedPnl": "0.956054", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.002438", + "tid": 553026430788820, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105576.0", + "sz": "0.00045", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.07397", + "dir": "Close Short", + "closedPnl": "3.91113", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.009976", + "tid": 821918293608545, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105577.0", + "sz": "0.00018", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.07352", + "dir": "Close Short", + "closedPnl": "1.564272", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.00399", + "tid": 810141002455118, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105577.0", + "sz": "0.00028", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.07334", + "dir": "Close Short", + "closedPnl": "2.433312", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.006207", + "tid": 452609869169162, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105577.0", + "sz": "0.00094", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.07306", + "dir": "Close Short", + "closedPnl": "8.168976", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.02084", + "tid": 898794502883785, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105578.0", + "sz": "0.00189", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.07212", + "dir": "Close Short", + "closedPnl": "16.422966", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.041903", + "tid": 491480884810801, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105579.0", + "sz": "0.00284", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.07023", + "dir": "Close Short", + "closedPnl": "24.675056", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.062967", + "tid": 1049053119716453, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105580.0", + "sz": "0.002", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.06739", + "dir": "Close Short", + "closedPnl": "17.3748", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.044343", + "tid": 553592098627910, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105582.0", + "sz": "0.00045", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.06539", + "dir": "Close Short", + "closedPnl": "3.90843", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.009977", + "tid": 454822630924349, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105582.0", + "sz": "0.00473", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.06494", + "dir": "Close Short", + "closedPnl": "41.081942", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.104874", + "tid": 953712479254533, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105583.0", + "sz": "0.00947", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.06021", + "dir": "Close Short", + "closedPnl": "82.241268", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.209972", + "tid": 965778623870621, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105583.0", + "sz": "0.00947", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.05074", + "dir": "Close Short", + "closedPnl": "82.241268", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.209972", + "tid": 69929737057123, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105584.0", + "sz": "0.16229", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.04127", + "dir": "Close Short", + "closedPnl": "1409.228986", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "3.598397", + "tid": 1065713585108144, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.7", + "sz": "30.53", + "side": "B", + "time": 1762185951188, + "startPosition": "-221558.09", + "dir": "Close Short", + "closedPnl": "1010.918519", + "hash": "0x8480f4dada55e73f85fa042ec4746c020aa900c0755906112849a02d9959c12a", + "oid": 221333779211, + "crossed": true, + "fee": "1.068763", + "tid": 581180143463134, + "cloid": "0x00000000000000000000000388000381", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.72", + "sz": "0.1", + "side": "B", + "time": 1762185951188, + "startPosition": "-221527.56", + "dir": "Close Short", + "closedPnl": "3.30923", + "hash": "0x8480f4dada55e73f85fa042ec4746c020aa900c0755906112849a02d9959c12a", + "oid": 221333779211, + "crossed": true, + "fee": "0.003501", + "tid": 1002271818177984, + "cloid": "0x00000000000000000000000388000381", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "6.0", + "side": "B", + "time": 1762185951188, + "startPosition": "-221527.46", + "dir": "Close Short", + "closedPnl": "198.4938", + "hash": "0x8480f4dada55e73f85fa042ec4746c020aa900c0755906112849a02d9959c12a", + "oid": 221333779211, + "crossed": true, + "fee": "0.210079", + "tid": 94954094774120, + "cloid": "0x00000000000000000000000388000381", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "17.99", + "side": "B", + "time": 1762185951188, + "startPosition": "-221521.46", + "dir": "Close Short", + "closedPnl": "595.150577", + "hash": "0x8480f4dada55e73f85fa042ec4746c020aa900c0755906112849a02d9959c12a", + "oid": 221333779211, + "crossed": true, + "fee": "0.629889", + "tid": 563657812799108, + "cloid": "0x00000000000000000000000388000381", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "5.3", + "side": "B", + "time": 1762185951188, + "startPosition": "-221503.47", + "dir": "Close Short", + "closedPnl": "175.28319", + "hash": "0x8480f4dada55e73f85fa042ec4746c020aa900c0755906112849a02d9959c12a", + "oid": 221333779211, + "crossed": true, + "fee": "0.185581", + "tid": 698316912217993, + "cloid": "0x00000000000000000000000388000381", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.3", + "sz": "2.7893", + "side": "B", + "time": 1762185953003, + "startPosition": "-1404.1912", + "dir": "Close Short", + "closedPnl": "1476.320704", + "hash": "0x5ca652bbd937be7e5e20042ec47483020a1400a1743add50006efe0e983b9869", + "oid": 221333825073, + "crossed": true, + "fee": "2.097757", + "tid": 1112857362440330, + "cloid": "0x00000000000000000000000387000383", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105600.0", + "sz": "0.23658", + "side": "B", + "time": 1762185953003, + "startPosition": "-1163.87898", + "dir": "Close Short", + "closedPnl": "2050.533492", + "hash": "0x516e38e8d81d88fd52e7042ec47483020a3200ce7310a7cff536e43b971162e7", + "oid": 221333825089, + "crossed": true, + "fee": "5.246398", + "tid": 636656525191925, + "cloid": "0x00000000000000000000000389000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.78", + "sz": "59.9", + "side": "B", + "time": 1762185953202, + "startPosition": "-221498.17", + "dir": "Close Short", + "closedPnl": "1978.63477", + "hash": "0x82732f1f361c03f683ec042ec47486020dc30004d11f22c8263bda71f51fdde1", + "oid": 221333834254, + "crossed": true, + "fee": "2.097925", + "tid": 839830485593120, + "cloid": "0x00000000000000000000000388000382", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "131165.0", + "side": "B", + "time": 1762185954329, + "startPosition": "-1174645022.0", + "dir": "Close Short", + "closedPnl": "227.17778", + "hash": "0xf22015ab6cd5083cf399042ec4749302090e009107d8270f95e8c0fe2bd8e227", + "oid": 221333859296, + "crossed": true, + "fee": "0.105193", + "tid": 728753512960170, + "cloid": "0x00000000000000000000000385000332", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.3", + "sz": "2.7883", + "side": "B", + "time": 1762185955621, + "startPosition": "-1401.4019", + "dir": "Close Short", + "closedPnl": "1470.214824", + "hash": "0x19ca2ab7a3925b401b43042ec474a302070a009d3e957a12bd92d60a6296352a", + "oid": 221333880005, + "crossed": true, + "fee": "2.098176", + "tid": 406677025608137, + "cloid": "0x00000000000000000000000387000384", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "59.9", + "side": "B", + "time": 1762185955621, + "startPosition": "-221438.27", + "dir": "Close Short", + "closedPnl": "1981.62977", + "hash": "0x160cccc6a33ef4151786042ec474a302071400ac3e3212e7b9d578196232cdff", + "oid": 221333880014, + "crossed": true, + "fee": "2.097296", + "tid": 665615501049493, + "cloid": "0x00000000000000000000000388000383", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "130884.0", + "side": "B", + "time": 1762185956127, + "startPosition": "-1174513857.0", + "dir": "Close Short", + "closedPnl": "226.691088", + "hash": "0x8c94bdfc1ffa1b998e0e042ec474a80203e700e1bafd3a6b305d694edefdf584", + "oid": 221333890897, + "crossed": true, + "fee": "0.104967", + "tid": 836094583365487, + "cloid": "0x00000000000000000000000385000333", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105631.0", + "sz": "0.0144", + "side": "B", + "time": 1762185956127, + "startPosition": "-1163.6424", + "dir": "Close Short", + "closedPnl": "124.36416", + "hash": "0x34301ac43861289435a9042ec474a802040600a9d3644766d7f8c616f765027e", + "oid": 221333890925, + "crossed": true, + "fee": "0.319428", + "tid": 638487237010180, + "cloid": "0x00000000000000000000000389000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105631.0", + "sz": "0.04571", + "side": "B", + "time": 1762185956127, + "startPosition": "-1163.628", + "dir": "Close Short", + "closedPnl": "394.769844", + "hash": "0x34301ac43861289435a9042ec474a802040600a9d3644766d7f8c616f765027e", + "oid": 221333890925, + "crossed": true, + "fee": "1.013962", + "tid": 991288215031551, + "cloid": "0x00000000000000000000000389000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105631.0", + "sz": "0.0144", + "side": "B", + "time": 1762185956127, + "startPosition": "-1163.58229", + "dir": "Close Short", + "closedPnl": "124.36416", + "hash": "0x34301ac43861289435a9042ec474a802040600a9d3644766d7f8c616f765027e", + "oid": 221333890925, + "crossed": true, + "fee": "0.319428", + "tid": 1003621390519292, + "cloid": "0x00000000000000000000000389000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105632.0", + "sz": "0.16203", + "side": "B", + "time": 1762185956127, + "startPosition": "-1163.56789", + "dir": "Close Short", + "closedPnl": "1399.193862", + "hash": "0x34301ac43861289435a9042ec474a802040600a9d3644766d7f8c616f765027e", + "oid": 221333890925, + "crossed": true, + "fee": "3.594266", + "tid": 786179154544025, + "cloid": "0x00000000000000000000000389000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.6", + "sz": "2.7894", + "side": "B", + "time": 1762185957811, + "startPosition": "-1398.6136", + "dir": "Close Short", + "closedPnl": "1475.536812", + "hash": "0xeaf3fefe03c8c4f3ec6d042ec474bc01c80016e39ecbe3c58ebcaa50c2cc9ede", + "oid": 221333927852, + "crossed": true, + "fee": "2.098008", + "tid": 709256897639271, + "cloid": "0x00000000000000000000000387000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "59.94", + "side": "B", + "time": 1762185957811, + "startPosition": "-221378.37", + "dir": "Close Short", + "closedPnl": "1989.546462", + "hash": "0xb2847b7969aa67b7b3fe042ec474bc01d600935f04ad8689564d26cc28ae41a2", + "oid": 221333927863, + "crossed": true, + "fee": "2.097312", + "tid": 137128495709761, + "cloid": "0x00000000000000000000000388000384", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "131002.0", + "side": "B", + "time": 1762185958208, + "startPosition": "-1174382973.0", + "dir": "Close Short", + "closedPnl": "227.157468", + "hash": "0xe407b7727da4246ae581042ec474c102133d005818a7433c87d062c53ca7fe55", + "oid": 221333936830, + "crossed": true, + "fee": "0.105007", + "tid": 914198646280419, + "cloid": "0x00000000000000000000000385000334", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105617.0", + "sz": "0.00011", + "side": "B", + "time": 1762185958952, + "startPosition": "-1163.40586", + "dir": "Close Short", + "closedPnl": "0.951544", + "hash": "0x99dc556acfcba4749b56042ec474c9020c8700506acec3463da500bd8ecf7e5f", + "oid": 221333950484, + "crossed": true, + "fee": "0.002439", + "tid": 645242807303322, + "cloid": "0x00000000000000000000000389000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105618.0", + "sz": "0.00011", + "side": "B", + "time": 1762185958952, + "startPosition": "-1163.40575", + "dir": "Close Short", + "closedPnl": "0.951434", + "hash": "0x99dc556acfcba4749b56042ec474c9020c8700506acec3463da500bd8ecf7e5f", + "oid": 221333950484, + "crossed": true, + "fee": "0.002439", + "tid": 439572452614170, + "cloid": "0x00000000000000000000000389000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105619.0", + "sz": "0.00011", + "side": "B", + "time": 1762185958952, + "startPosition": "-1163.40564", + "dir": "Close Short", + "closedPnl": "0.951324", + "hash": "0x99dc556acfcba4749b56042ec474c9020c8700506acec3463da500bd8ecf7e5f", + "oid": 221333950484, + "crossed": true, + "fee": "0.002439", + "tid": 964817161875692, + "cloid": "0x00000000000000000000000389000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105620.0", + "sz": "0.00011", + "side": "B", + "time": 1762185958952, + "startPosition": "-1163.40553", + "dir": "Close Short", + "closedPnl": "0.951214", + "hash": "0x99dc556acfcba4749b56042ec474c9020c8700506acec3463da500bd8ecf7e5f", + "oid": 221333950484, + "crossed": true, + "fee": "0.002439", + "tid": 814306981755665, + "cloid": "0x00000000000000000000000389000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105621.0", + "sz": "0.00011", + "side": "B", + "time": 1762185958952, + "startPosition": "-1163.40542", + "dir": "Close Short", + "closedPnl": "0.951104", + "hash": "0x99dc556acfcba4749b56042ec474c9020c8700506acec3463da500bd8ecf7e5f", + "oid": 221333950484, + "crossed": true, + "fee": "0.002439", + "tid": 706342345303094, + "cloid": "0x00000000000000000000000389000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105629.0", + "sz": "0.03548", + "side": "B", + "time": 1762185958952, + "startPosition": "-1163.40531", + "dir": "Close Short", + "closedPnl": "306.490432", + "hash": "0x99dc556acfcba4749b56042ec474c9020c8700506acec3463da500bd8ecf7e5f", + "oid": 221333950484, + "crossed": true, + "fee": "0.78702", + "tid": 567142227715930, + "cloid": "0x00000000000000000000000389000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105629.0", + "sz": "0.20054", + "side": "B", + "time": 1762185958952, + "startPosition": "-1163.36983", + "dir": "Close Short", + "closedPnl": "1732.344736", + "hash": "0x99dc556acfcba4749b56042ec474c9020c8700506acec3463da500bd8ecf7e5f", + "oid": 221333950484, + "crossed": true, + "fee": "4.448396", + "tid": 435054068930324, + "cloid": "0x00000000000000000000000389000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.3", + "sz": "1.0039", + "side": "B", + "time": 1762185959712, + "startPosition": "-1395.8242", + "dir": "Close Short", + "closedPnl": "529.336392", + "hash": "0x8782a0b057a1ca5f88fc042ec474d402083e0095f2a4e9312b4b4c0316a5a44a", + "oid": 221333967229, + "crossed": true, + "fee": "0.755427", + "tid": 388811313526599, + "cloid": "0x00000000000000000000000387000386", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.3", + "sz": "1.7848", + "side": "B", + "time": 1762185959712, + "startPosition": "-1394.8203", + "dir": "Close Short", + "closedPnl": "941.089344", + "hash": "0x8782a0b057a1ca5f88fc042ec474d402083e0095f2a4e9312b4b4c0316a5a44a", + "oid": 221333967229, + "crossed": true, + "fee": "1.343049", + "tid": 355665271854335, + "cloid": "0x00000000000000000000000387000386", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.69", + "sz": "1.38", + "side": "B", + "time": 1762185959712, + "startPosition": "-221318.43", + "dir": "Close Short", + "closedPnl": "45.708774", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.048306", + "tid": 918708351970531, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.69", + "sz": "1.84", + "side": "B", + "time": 1762185959712, + "startPosition": "-221317.05", + "dir": "Close Short", + "closedPnl": "60.945032", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.064409", + "tid": 981870384214534, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.69", + "sz": "2.76", + "side": "B", + "time": 1762185959712, + "startPosition": "-221315.21", + "dir": "Close Short", + "closedPnl": "91.417548", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.096613", + "tid": 860086688221838, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.69", + "sz": "3.68", + "side": "B", + "time": 1762185959712, + "startPosition": "-221312.45", + "dir": "Close Short", + "closedPnl": "121.890064", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.128818", + "tid": 826844535288582, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.69", + "sz": "4.59", + "side": "B", + "time": 1762185959712, + "startPosition": "-221308.77", + "dir": "Close Short", + "closedPnl": "152.031357", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.160672", + "tid": 528791471200849, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.69", + "sz": "5.51", + "side": "B", + "time": 1762185959712, + "startPosition": "-221304.18", + "dir": "Close Short", + "closedPnl": "182.503873", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.192876", + "tid": 796631699425626, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.7", + "sz": "1.0", + "side": "B", + "time": 1762185959712, + "startPosition": "-221298.67", + "dir": "Close Short", + "closedPnl": "33.1123", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.035007", + "tid": 1047606612282545, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "5.97", + "side": "B", + "time": 1762185959712, + "startPosition": "-221297.67", + "dir": "Close Short", + "closedPnl": "197.501331", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.209029", + "tid": 801158554853027, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "1.0", + "side": "B", + "time": 1762185959712, + "startPosition": "-221291.7", + "dir": "Close Short", + "closedPnl": "33.0823", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.035013", + "tid": 650460543441315, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "6.46", + "side": "B", + "time": 1762185959712, + "startPosition": "-221290.7", + "dir": "Close Short", + "closedPnl": "213.711658", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.226185", + "tid": 1027272014108626, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "0.17", + "side": "B", + "time": 1762185959712, + "startPosition": "-221284.24", + "dir": "Close Short", + "closedPnl": "5.622291", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.005952", + "tid": 839375921445681, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "6.0", + "side": "B", + "time": 1762185959712, + "startPosition": "-221284.07", + "dir": "Close Short", + "closedPnl": "198.3738", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.210104", + "tid": 1002264991907932, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "14.44", + "side": "B", + "time": 1762185959712, + "startPosition": "-221278.07", + "dir": "Close Short", + "closedPnl": "477.419612", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.505652", + "tid": 267496094213994, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "5.12", + "side": "B", + "time": 1762185959712, + "startPosition": "-221263.63", + "dir": "Close Short", + "closedPnl": "169.227776", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.1793", + "tid": 141189533331164, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "130893.0", + "side": "B", + "time": 1762185960082, + "startPosition": "-1174251971.0", + "dir": "Close Short", + "closedPnl": "226.837569", + "hash": "0x771237d262fbabf9788b042ec474d90208e200b7fdfecacb1adae32521ff85e4", + "oid": 221333973084, + "crossed": true, + "fee": "0.104947", + "tid": 702273584286104, + "cloid": "0x00000000000000000000000385000335", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105647.0", + "sz": "0.19398", + "side": "B", + "time": 1762185960528, + "startPosition": "-1163.16929", + "dir": "Close Short", + "closedPnl": "1672.185192", + "hash": "0xa4d92428f21d92b9a652042ec474de0203cb000e8d10b18b48a1cf7bb1116ca4", + "oid": 221333981450, + "crossed": true, + "fee": "4.303615", + "tid": 940772140754636, + "cloid": "0x00000000000000000000000389000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105648.0", + "sz": "0.04251", + "side": "B", + "time": 1762185960528, + "startPosition": "-1162.97531", + "dir": "Close Short", + "closedPnl": "366.410694", + "hash": "0xa4d92428f21d92b9a652042ec474de0203cb000e8d10b18b48a1cf7bb1116ca4", + "oid": 221333981450, + "crossed": true, + "fee": "0.94313", + "tid": 70465599019949, + "cloid": "0x00000000000000000000000389000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.78", + "sz": "51.82", + "side": "B", + "time": 1762185961941, + "startPosition": "-221258.51", + "dir": "Close Short", + "closedPnl": "1711.733786", + "hash": "0xa8e7f22407515edfaa61042ec474ed0209b40009a2547db14cb09d76c65538ca", + "oid": 221334003658, + "crossed": true, + "fee": "1.814933", + "tid": 927804015850551, + "cloid": "0x00000000000000000000000388000386", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "8.07", + "side": "B", + "time": 1762185961941, + "startPosition": "-221206.69", + "dir": "Close Short", + "closedPnl": "266.409261", + "hash": "0xa8e7f22407515edfaa61042ec474ed0209b40009a2547db14cb09d76c65538ca", + "oid": 221334003658, + "crossed": true, + "fee": "0.282675", + "tid": 567980308707614, + "cloid": "0x00000000000000000000000388000386", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.1", + "sz": "2.788", + "side": "B", + "time": 1762185962162, + "startPosition": "-1393.0355", + "dir": "Close Short", + "closedPnl": "1467.82624", + "hash": "0xb6d0f55a755d25edb84a042ec474f1020c800040105044bf5a99a0ad3450ffd8", + "oid": 221334009653, + "crossed": true, + "fee": "2.098418", + "tid": 524914197393993, + "cloid": "0x00000000000000000000000387000387", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105675.0", + "sz": "0.00015", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.9328", + "dir": "Close Short", + "closedPnl": "1.28886", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.003328", + "tid": 254672954496397, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105675.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.93265", + "dir": "Close Short", + "closedPnl": "0.945164", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 4917803392833, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105676.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.93254", + "dir": "Close Short", + "closedPnl": "0.945054", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 681066540113404, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105676.0", + "sz": "0.00758", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.93243", + "dir": "Close Short", + "closedPnl": "65.122812", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.168215", + "tid": 451238082031528, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105677.0", + "sz": "0.02333", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.92485", + "dir": "Close Short", + "closedPnl": "200.414032", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.517743", + "tid": 350668287314046, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105677.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.90152", + "dir": "Close Short", + "closedPnl": "0.944944", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 183631459667435, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105678.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.90141", + "dir": "Close Short", + "closedPnl": "0.944834", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 34685077667574, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105679.0", + "sz": "0.00159", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.9013", + "dir": "Close Short", + "closedPnl": "13.655556", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.035286", + "tid": 301905903189377, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105679.0", + "sz": "0.00015", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.89971", + "dir": "Close Short", + "closedPnl": "1.28826", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.003328", + "tid": 836044740907708, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105679.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.89956", + "dir": "Close Short", + "closedPnl": "0.944724", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 410400497700444, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105680.0", + "sz": "0.00028", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.89945", + "dir": "Close Short", + "closedPnl": "2.404472", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.006213", + "tid": 435717618102358, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105680.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.89917", + "dir": "Close Short", + "closedPnl": "0.944614", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 393365180297684, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105681.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.89906", + "dir": "Close Short", + "closedPnl": "0.944504", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 455453640896626, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105682.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.89895", + "dir": "Close Short", + "closedPnl": "0.944394", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 1040998006327408, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105683.0", + "sz": "0.00015", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.89884", + "dir": "Close Short", + "closedPnl": "1.28766", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.003329", + "tid": 543426235678311, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105683.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.89869", + "dir": "Close Short", + "closedPnl": "0.944284", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 1001053831621849, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105683.0", + "sz": "0.14193", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.89858", + "dir": "Close Short", + "closedPnl": "1218.383892", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "3.149913", + "tid": 742391220210203, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105684.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.75665", + "dir": "Close Short", + "closedPnl": "0.944174", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 166827420766990, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105685.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.75654", + "dir": "Close Short", + "closedPnl": "0.944064", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 460471505393278, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105686.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.75643", + "dir": "Close Short", + "closedPnl": "0.943954", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 11719201387498, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105687.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.75632", + "dir": "Close Short", + "closedPnl": "0.943844", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 1117369231214256, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105687.0", + "sz": "0.05991", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.75621", + "dir": "Close Short", + "closedPnl": "514.051764", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "1.329658", + "tid": 1096737202746684, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.89", + "sz": "10.35", + "side": "B", + "time": 1762185964359, + "startPosition": "-221198.62", + "dir": "Close Short", + "closedPnl": "340.745805", + "hash": "0xef65788df18361daf0df042ec4750d01af0090738c8680ac932e23e0b0873bc5", + "oid": 221334048554, + "crossed": true, + "fee": "0.362735", + "tid": 711134708203462, + "cloid": "0x00000000000000000000000388000387", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.92", + "sz": "10.56", + "side": "B", + "time": 1762185964359, + "startPosition": "-221188.27", + "dir": "Close Short", + "closedPnl": "347.342688", + "hash": "0xef65788df18361daf0df042ec4750d01af0090738c8680ac932e23e0b0873bc5", + "oid": 221334048554, + "crossed": true, + "fee": "0.370161", + "tid": 192185402263304, + "cloid": "0x00000000000000000000000388000387", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.94", + "sz": "38.93", + "side": "B", + "time": 1762185964359, + "startPosition": "-221177.71", + "dir": "Close Short", + "closedPnl": "1279.718639", + "hash": "0xef65788df18361daf0df042ec4750d01af0090738c8680ac932e23e0b0873bc5", + "oid": 221334048554, + "crossed": true, + "fee": "1.364784", + "tid": 158938289963235, + "cloid": "0x00000000000000000000000388000387", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "2.5", + "side": "B", + "time": 1762185965589, + "startPosition": "-1390.2475", + "dir": "Close Short", + "closedPnl": "1310.45", + "hash": "0x84f62e7d129e3d62866f042ec4751c020d5d0062ad915c3428bed9cfd192174d", + "oid": 221334080576, + "crossed": true, + "fee": "1.882859", + "tid": 756101743527579, + "cloid": "0x00000000000000000000000387000388", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "0.2863", + "side": "B", + "time": 1762185965589, + "startPosition": "-1387.7475", + "dir": "Close Short", + "closedPnl": "150.072734", + "hash": "0x84f62e7d129e3d62866f042ec4751c020d5d0062ad915c3428bed9cfd192174d", + "oid": 221334080576, + "crossed": true, + "fee": "0.215625", + "tid": 985819510275696, + "cloid": "0x00000000000000000000000387000388", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105690.0", + "sz": "0.2364", + "side": "B", + "time": 1762185965589, + "startPosition": "-1162.6963", + "dir": "Close Short", + "closedPnl": "2027.69736", + "hash": "0x65010ec9c523a799667a042ec4751c020d6e00af6026c66b08c9ba1c84278184", + "oid": 221334080591, + "crossed": true, + "fee": "5.246874", + "tid": 232302128933894, + "cloid": "0x00000000000000000000000389000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26945", + "sz": "3758.7", + "side": "B", + "time": 1762185966892, + "startPosition": "-3959353.2000000002", + "dir": "Close Short", + "closedPnl": "1998.951834", + "hash": "0x1c0ba50b90f437761d85042ec4752d020a1e00f12bf75648bfd4505e4ff81160", + "oid": 221334031865, + "crossed": false, + "fee": "0.028357", + "tid": 706053228039960, + "cloid": "0x00000000000000000000000384000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "59.9", + "side": "B", + "time": 1762185967409, + "startPosition": "-221138.78", + "dir": "Close Short", + "closedPnl": "1985.22377", + "hash": "0x2d9a4878954126fc2f14042ec475320210d2005e304445ced162f3cb544500e6", + "oid": 221334119334, + "crossed": true, + "fee": "2.096541", + "tid": 946448439546046, + "cloid": "0x00000000000000000000000388000388", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "130787.0", + "side": "B", + "time": 1762185967409, + "startPosition": "-1174121078.0", + "dir": "Close Short", + "closedPnl": "226.523084", + "hash": "0x5561267377fddcd256da042ec47532021135005912f0fba4f929d1c636f1b6bc", + "oid": 221334119396, + "crossed": true, + "fee": "0.104889", + "tid": 28166061023889, + "cloid": "0x00000000000000000000000385000337", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105656.0", + "sz": "0.23644", + "side": "B", + "time": 1762185967989, + "startPosition": "-1162.4599", + "dir": "Close Short", + "closedPnl": "2036.079416", + "hash": "0xebef0ee113f3c0f5ed68042ec4753a0202cd00c6aef6dfc78fb7ba33d2f79ae0", + "oid": 221334136526, + "crossed": true, + "fee": "5.246073", + "tid": 608300530737091, + "cloid": "0x00000000000000000000000389000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.1", + "sz": "2.7873", + "side": "B", + "time": 1762185968982, + "startPosition": "-1387.4612", + "dir": "Close Short", + "closedPnl": "1470.245004", + "hash": "0x1bcdf9c61c4de97c1d47042ec4754202367200abb741084ebf96a518db41c366", + "oid": 221334151382, + "crossed": true, + "fee": "2.097306", + "tid": 435511939633436, + "cloid": "0x00000000000000000000000387000389", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003816", + "sz": "60578.0", + "side": "B", + "time": 1762185970422, + "startPosition": "-1173990291.0", + "dir": "Close Short", + "closedPnl": "105.10283", + "hash": "0x2b5d6ca58b351cc22cd7042ec4754e0212fd008b26383b94cf2617f84a38f6ac", + "oid": 221334178831, + "crossed": true, + "fee": "0.048544", + "tid": 1068295995597664, + "cloid": "0x00000000000000000000000385000338", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "70360.0", + "side": "B", + "time": 1762185970422, + "startPosition": "-1173929713.0", + "dir": "Close Short", + "closedPnl": "122.00424", + "hash": "0x2b5d6ca58b351cc22cd7042ec4754e0212fd008b26383b94cf2617f84a38f6ac", + "oid": 221334178831, + "crossed": true, + "fee": "0.056398", + "tid": 458885130177934, + "cloid": "0x00000000000000000000000385000338", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "59.94", + "side": "B", + "time": 1762185970422, + "startPosition": "-221078.88", + "dir": "Close Short", + "closedPnl": "1990.745262", + "hash": "0x407174eb6c00cec141eb042ec4754e02139200d10703ed93e43a203e2b04a8ab", + "oid": 221334178913, + "crossed": true, + "fee": "2.09706", + "tid": 291877709365203, + "cloid": "0x00000000000000000000000388000389", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105633.0", + "sz": "0.09871", + "side": "B", + "time": 1762185971647, + "startPosition": "-1162.22346", + "dir": "Close Short", + "closedPnl": "852.301624", + "hash": "0xfa7b13f57b2bc420fbf4042ec4755c020e8e00db162ee2f39e43bf483a2f9e0b", + "oid": 221334199278, + "crossed": true, + "fee": "2.189677", + "tid": 651314434008405, + "cloid": "0x00000000000000000000000389000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105633.0", + "sz": "0.13778", + "side": "B", + "time": 1762185971647, + "startPosition": "-1162.12475", + "dir": "Close Short", + "closedPnl": "1189.647632", + "hash": "0xfa7b13f57b2bc420fbf4042ec4755c020e8e00db162ee2f39e43bf483a2f9e0b", + "oid": 221334199278, + "crossed": true, + "fee": "3.056364", + "tid": 1627000553212, + "cloid": "0x00000000000000000000000389000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.0", + "sz": "2.7902", + "side": "B", + "time": 1762185972393, + "startPosition": "-1384.6739", + "dir": "Close Short", + "closedPnl": "1477.634116", + "hash": "0xaf0b227e467157b3b084042ec475630207a80063e174768552d3cdd10575319e", + "oid": 221334220705, + "crossed": true, + "fee": "2.098258", + "tid": 320758862830804, + "cloid": "0x00000000000000000000000387000390", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "48.02", + "side": "B", + "time": 1762185973220, + "startPosition": "-221018.94", + "dir": "Close Short", + "closedPnl": "1598.216046", + "hash": "0x0065c6bf51a172b101df042ec4756d02022100a4eca49183a42e721210a54c9b", + "oid": 221334233354, + "crossed": true, + "fee": "1.679321", + "tid": 235394446861401, + "cloid": "0x00000000000000000000000388000390", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "11.94", + "side": "B", + "time": 1762185973220, + "startPosition": "-220970.92", + "dir": "Close Short", + "closedPnl": "397.271262", + "hash": "0x0065c6bf51a172b101df042ec4756d02022100a4eca49183a42e721210a54c9b", + "oid": 221334233354, + "crossed": true, + "fee": "0.417582", + "tid": 676291759875177, + "cloid": "0x00000000000000000000000388000390", + "feeToken": "USDC", + "twapId": null + } + ], + "user_fees": { + "dailyUserVlm": [ + { + "date": "2025-10-21", + "userCross": "56348714.4799999967", + "userAdd": "107018.3", + "exchange": "15421314316.1100006104" + }, + { + "date": "2025-10-22", + "userCross": "27765103.0100000016", + "userAdd": "612723.92", + "exchange": "12413722514.0200004578" + }, + { + "date": "2025-10-23", + "userCross": "12021044.2400000002", + "userAdd": "1941632.96", + "exchange": "9453148934.0400009155" + }, + { + "date": "2025-10-24", + "userCross": "0.0", + "userAdd": "0.0", + "exchange": "7176352634.4499998093" + }, + { + "date": "2025-10-25", + "userCross": "2028350.6699999999", + "userAdd": "7584.22", + "exchange": "3635812557.3200001717" + }, + { + "date": "2025-10-26", + "userCross": "46609.44", + "userAdd": "16484.51", + "exchange": "6757753944.5500001907" + }, + { + "date": "2025-10-27", + "userCross": "132384492.7900000066", + "userAdd": "3312484.8700000001", + "exchange": "9049570342.1100006104" + }, + { + "date": "2025-10-28", + "userCross": "53369323.2599999979", + "userAdd": "9927925.3699999992", + "exchange": "10448223421.4400005341" + }, + { + "date": "2025-10-29", + "userCross": "32607139.0", + "userAdd": "2561208.2400000002", + "exchange": "11712391721.8999996185" + }, + { + "date": "2025-10-30", + "userCross": "28956838.5700000003", + "userAdd": "604800.99", + "exchange": "13152201047.5699996948" + }, + { + "date": "2025-10-31", + "userCross": "6706631.6200000001", + "userAdd": "203096.08", + "exchange": "7775626855.8199996948" + }, + { + "date": "2025-11-01", + "userCross": "26455772.370000001", + "userAdd": "2017668.1699999999", + "exchange": "3305234543.4899997711" + }, + { + "date": "2025-11-02", + "userCross": "1745503.9099999999", + "userAdd": "59839.76", + "exchange": "4515769173.3500003815" + }, + { + "date": "2025-11-03", + "userCross": "82246996.9200000018", + "userAdd": "1529808.8799999999", + "exchange": "13169277429.4599990845" + }, + { + "date": "2025-11-04", + "userCross": "41496099.7299999967", + "userAdd": "4384817.3200000003", + "exchange": "17227336871.9000015259" + } + ], + "feeSchedule": { + "cross": "0.00045", + "add": "0.00015", + "spotCross": "0.0007", + "spotAdd": "0.0004", + "tiers": { + "vip": [ + { + "ntlCutoff": "5000000.0", + "cross": "0.0004", + "add": "0.00012", + "spotCross": "0.0006", + "spotAdd": "0.0003" + }, + { + "ntlCutoff": "25000000.0", + "cross": "0.00035", + "add": "0.00008", + "spotCross": "0.0005", + "spotAdd": "0.0002" + }, + { + "ntlCutoff": "100000000.0", + "cross": "0.0003", + "add": "0.00004", + "spotCross": "0.0004", + "spotAdd": "0.0001" + }, + { + "ntlCutoff": "500000000.0", + "cross": "0.00028", + "add": "0.0", + "spotCross": "0.00035", + "spotAdd": "0.0" + }, + { + "ntlCutoff": "2000000000.0", + "cross": "0.00026", + "add": "0.0", + "spotCross": "0.0003", + "spotAdd": "0.0" + }, + { + "ntlCutoff": "7000000000.0", + "cross": "0.00024", + "add": "0.0", + "spotCross": "0.00025", + "spotAdd": "0.0" + } + ], + "mm": [ + { + "makerFractionCutoff": "0.005", + "add": "-0.00001" + }, + { + "makerFractionCutoff": "0.015", + "add": "-0.00002" + }, + { + "makerFractionCutoff": "0.03", + "add": "-0.00003" + } + ] + }, + "referralDiscount": "0.04", + "stakingDiscountTiers": [ + { + "bpsOfMaxSupply": "0.0", + "discount": "0.0" + }, + { + "bpsOfMaxSupply": "0.0001", + "discount": "0.05" + }, + { + "bpsOfMaxSupply": "0.001", + "discount": "0.1" + }, + { + "bpsOfMaxSupply": "0.01", + "discount": "0.15" + }, + { + "bpsOfMaxSupply": "0.1", + "discount": "0.2" + }, + { + "bpsOfMaxSupply": "1.0", + "discount": "0.3" + }, + { + "bpsOfMaxSupply": "5.0", + "discount": "0.4" + } + ] + }, + "userCrossRate": "0.00021", + "userAddRate": "0.000028", + "userSpotCrossRate": "0.00028", + "userSpotAddRate": "0.00007", + "activeReferralDiscount": "0.0", + "trial": null, + "feeTrialEscrow": "0.0", + "nextTrialAvailableTimestamp": null, + "stakingLink": null, + "activeStakingDiscount": { + "bpsOfMaxSupply": "1.1279080724", + "discount": "0.3" + } + }, + "rate_limit": { + "cumVlm": "3119827923.7600002289", + "nRequestsUsed": 1842227, + "nRequestsCap": 3119837923 + }, + "funding_payments": [ + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1392.82359", + "szi": "-986.20071", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "812.983446", + "szi": "-17064.3363", + "fundingRate": "0.0000119638", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "312.817986", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.048414", + "szi": "-109217.0", + "fundingRate": "-0.0000022995", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-6.532817", + "szi": "-18747.2", + "fundingRate": "-0.0000418079", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.745926", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.768505", + "szi": "-39691.0", + "fundingRate": "0.0000074522", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "438.043126", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.050402", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "110.379539", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "4.813547", + "szi": "4.0192", + "fundingRate": "-0.0000460099", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1395.769864", + "szi": "-986.20071", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "852.171624", + "szi": "-17064.3363", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "314.431032", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.025866", + "szi": "-109217.0", + "fundingRate": "-0.0000012202", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-8.849481", + "szi": "-18747.2", + "fundingRate": "-0.0000559458", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.813239", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.750436", + "szi": "-39691.0", + "fundingRate": "0.0000072399", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "444.797583", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.145213", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "111.892903", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "-1.307897", + "szi": "4.0192", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1391.751096", + "szi": "-986.20071", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "823.209363", + "szi": "-17064.3363", + "fundingRate": "0.0000121222", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "313.237378", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.056504", + "szi": "-109217.0", + "fundingRate": "-0.0000026717", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-4.90704", + "szi": "-18747.2", + "fundingRate": "-0.0000312199", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.792527", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.070538", + "szi": "-39691.0", + "fundingRate": "0.0000006826", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "440.396113", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.927765", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "111.076167", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "-1.30845", + "szi": "4.0192", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1386.423201", + "szi": "-986.40072", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "847.764936", + "szi": "-17068.8063", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "312.640551", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.040686", + "szi": "-109217.0", + "fundingRate": "-0.0000019264", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.607076", + "szi": "-18747.2", + "fundingRate": "-0.0000165958", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.757223", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.32499", + "szi": "-39691.0", + "fundingRate": "-0.0000031378", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "438.716727", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.838106", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "109.899105", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "-1.308048", + "szi": "4.0192", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1387.126012", + "szi": "-986.40072", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "849.706513", + "szi": "-17068.8063", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "313.221248", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.025186", + "szi": "-109217.0", + "fundingRate": "-0.0000011898", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.126658", + "szi": "-18747.2", + "fundingRate": "-0.0000071417", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.796764", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.163681", + "szi": "-39691.0", + "fundingRate": "0.0000111941", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "443.865616", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.841198", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "112.13312", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "6.330597", + "szi": "4.0192", + "fundingRate": "-0.0000604061", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1389.185124", + "szi": "-986.40072", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "854.080395", + "szi": "-17068.8063", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "314.060031", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.134171", + "szi": "-109217.0", + "fundingRate": "-0.000006337", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-4.196795", + "szi": "-18747.2", + "fundingRate": "-0.0000266821", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.795822", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.742536", + "szi": "-39691.0", + "fundingRate": "0.0000071538", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "445.30509", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.893757", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "112.805727", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "-2.616163", + "szi": "8.0192", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1387.409602", + "szi": "-986.40072", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "852.970922", + "szi": "-17068.8063", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "312.801856", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.134367", + "szi": "-109217.0", + "fundingRate": "-0.0000063742", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.919426", + "szi": "-18747.2", + "fundingRate": "-0.0000249335", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.76193", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.774291", + "szi": "-39691.0", + "fundingRate": "0.0000074778", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "441.134305", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.738142", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "114.00681", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "12.960178", + "szi": "-8.0", + "fundingRate": "0.0000620579", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1390.960645", + "szi": "-986.40072", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "856.363348", + "szi": "-17068.8063", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "313.850335", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.134399", + "szi": "-109217.0", + "fundingRate": "-0.0000063487", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-4.233066", + "szi": "-18747.2", + "fundingRate": "-0.0000268168", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.752986", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.849837", + "szi": "-39691.0", + "fundingRate": "0.0000081757", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "444.197802", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.749994", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "116.985496", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6106", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1398.393176", + "szi": "-989.6713", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "859.340557", + "szi": "-17070.3063", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "314.802032", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.140172", + "szi": "-109217.0", + "fundingRate": "-0.0000066149", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-6.239153", + "szi": "-18747.2", + "fundingRate": "-0.0000395114", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.751104", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.995184", + "szi": "-39691.0", + "fundingRate": "0.0000095736", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "1262.368334", + "szi": "-738191.99", + "fundingRate": "0.0000356193", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.859748", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "118.93125", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6121", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1413.018683", + "szi": "-997.90336", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "471.282595", + "szi": "-17070.6063", + "fundingRate": "0.0000068603", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "315.43112", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.124867", + "szi": "-109217.0", + "fundingRate": "-0.0000058881", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-8.003532", + "szi": "-18747.2", + "fundingRate": "-0.0000504155", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.769932", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.206855", + "szi": "-39691.0", + "fundingRate": "0.0000115596", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "440.645253", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.032367", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "116.769301", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6141", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1419.770301", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "280.383082", + "szi": "-17070.6063", + "fundingRate": "0.000004081", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "315.576294", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.070938", + "szi": "-109217.0", + "fundingRate": "-0.0000033422", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-4.825044", + "szi": "-18747.2", + "fundingRate": "-0.0000305307", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.785466", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.724226", + "szi": "-39691.0", + "fundingRate": "0.0000069263", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "555.902288", + "szi": "-738191.99", + "fundingRate": "0.0000157963", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.01021", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "117.898319", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6153", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1413.744153", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "436.948903", + "szi": "-17070.6063", + "fundingRate": "0.0000063862", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "313.769683", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.001699", + "szi": "-109217.0", + "fundingRate": "-0.0000000805", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.671933", + "szi": "-18747.2", + "fundingRate": "-0.0000169753", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.691793", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.30375", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "437.646348", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.999904", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "117.201691", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6129", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1412.481413", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-1450.191117", + "szi": "-17070.6063", + "fundingRate": "-0.0000212514", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "313.3019", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.058408", + "szi": "-109217.0", + "fundingRate": "0.0000027664", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.446574", + "szi": "-18747.2", + "fundingRate": "-0.0000217632", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.72945", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.313524", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "438.070809", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.024122", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "116.673214", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6099", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1411.193668", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-2013.654347", + "szi": "-16570.7029", + "fundingRate": "-0.0000304612", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "316.560252", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.132138", + "szi": "-109217.0", + "fundingRate": "0.0000062371", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.700936", + "szi": "-18747.2", + "fundingRate": "-0.0000231705", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.819829", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.087803", + "szi": "-39691.0", + "fundingRate": "0.0000103763", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "443.03515", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.066891", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "118.450817", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6111", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1414.419282", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-779.849234", + "szi": "-16570.7029", + "fundingRate": "-0.0000117323", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "320.576737", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.164162", + "szi": "-109217.0", + "fundingRate": "0.0000076916", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.535506", + "szi": "-18747.2", + "fundingRate": "-0.0000219672", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.930919", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.304621", + "szi": "-39691.0", + "fundingRate": "0.0000124045", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "454.301805", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.133362", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "120.51668", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6135", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1414.631822", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-416.083451", + "szi": "-16570.7029", + "fundingRate": "-0.0000062524", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "322.399479", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.220831", + "szi": "-109217.0", + "fundingRate": "0.0000103103", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.675234", + "szi": "-18747.2", + "fundingRate": "-0.0000167009", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.980345", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.940564", + "szi": "-39691.0", + "fundingRate": "0.0000089205", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "449.03296", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.317316", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "120.852983", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6121", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1411.343696", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-223.187469", + "szi": "-16570.7029", + "fundingRate": "-0.0000033712", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "422.7971", + "szi": "-168470.23", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.264905", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.379609", + "szi": "-18747.2", + "fundingRate": "-0.0000085719", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.920093", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.304239", + "szi": "-39691.0", + "fundingRate": "0.0000029095", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "447.916444", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.680073", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "120.780918", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6178", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1406.205218", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "393.185715", + "szi": "-16570.7029", + "fundingRate": "0.0000059489", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "511.328927", + "szi": "-204470.23", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.064864", + "szi": "-109217.0", + "fundingRate": "0.0000030731", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.144698", + "szi": "-18747.2", + "fundingRate": "0.0000071095", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.85984", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.092576", + "szi": "-39691.0", + "fundingRate": "-0.0000008832", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "443.487292", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.615663", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "120.252442", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.612", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1394.127919", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "23.355797", + "szi": "-16570.7029", + "fundingRate": "0.0000003567", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "544.650663", + "szi": "-221470.23", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.015914", + "szi": "-109217.0", + "fundingRate": "0.0000007624", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.930513", + "szi": "-18747.2", + "fundingRate": "0.0000058601", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.74216", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.239459", + "szi": "-39691.0", + "fundingRate": "-0.0000118881", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "432.183727", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.272487", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "116.985496", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "0.695158", + "szi": "-8.0", + "fundingRate": "0.0000033294", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1389.164474", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "492.214462", + "szi": "-16570.7029", + "fundingRate": "0.0000074963", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "577.511339", + "szi": "-236491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.149045", + "szi": "-109217.0", + "fundingRate": "-0.0000071014", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.370598", + "szi": "-18747.2", + "fundingRate": "0.0000086469", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.777935", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.830047", + "szi": "-39691.0", + "fundingRate": "-0.0000079607", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "437.304934", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.196226", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "118.138536", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "-6.894766", + "szi": "-8.0", + "fundingRate": "-0.0000330007", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1397.841126", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "633.008381", + "szi": "-16570.7029", + "fundingRate": "0.0000095213", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "612.692371", + "szi": "-246991.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.072885", + "szi": "-109217.0", + "fundingRate": "-0.0000034072", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.659754", + "szi": "-18747.2", + "fundingRate": "-0.0000225267", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.085316", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.108849", + "szi": "-39691.0", + "fundingRate": "-0.0000010318", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "442.896739", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.856299", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "120.925048", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6111", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1385.401257", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "52.487126", + "szi": "-16570.7029", + "fundingRate": "0.0000008084", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "612.175286", + "szi": "-252991.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.075569", + "szi": "-109217.0", + "fundingRate": "0.0000035875", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.093385", + "szi": "-18747.2", + "fundingRate": "0.0000068054", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.910678", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.023776", + "szi": "-39691.0", + "fundingRate": "0.0000002297", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "440.839029", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "-22.948366", + "szi": "-4122236.7999999998", + "fundingRate": "-0.0000146557", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "119.820052", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "4.26427", + "szi": "-8.0", + "fundingRate": "0.0000204619", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1383.025805", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "808.650301", + "szi": "-16570.7029", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "610.755191", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.109515", + "szi": "-109217.0", + "fundingRate": "0.0000051698", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.280188", + "szi": "-18747.2", + "fundingRate": "0.0000017238", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.994467", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.078413", + "szi": "-39691.0", + "fundingRate": "0.0000105014", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "442.177002", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.490093", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "124.672428", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "3.599159", + "szi": "-8.0", + "fundingRate": "0.0000172242", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1393.19024", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "818.489156", + "szi": "-16570.7029", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "619.659067", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.167255", + "szi": "-109217.0", + "fundingRate": "0.0000078125", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.837267", + "szi": "-18747.2", + "fundingRate": "0.0000051155", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.170517", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.284896", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "743.934276", + "szi": "-746155.9300000001", + "fundingRate": "0.0000202659", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "21.085756", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "130.701865", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "14.185495", + "szi": "-8.0", + "fundingRate": "0.0000679773", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "2008.683885", + "szi": "-1029.57981", + "fundingRate": "0.0000174792", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "819.504111", + "szi": "-16570.7029", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "621.180014", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.105109", + "szi": "-109217.0", + "fundingRate": "0.0000049087", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.389819", + "szi": "-18747.2", + "fundingRate": "0.0000023914", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.10744", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.291892", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "1563.728283", + "szi": "-748350.64", + "fundingRate": "0.0000426172", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "21.240855", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "128.155569", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6086", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1428.902339", + "szi": "-1029.57981", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "816.314251", + "szi": "-16570.7029", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "619.088712", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.01223", + "szi": "-109217.0", + "fundingRate": "-0.0000005748", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.214625", + "szi": "-18747.2", + "fundingRate": "-0.0000136512", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "10.699238", + "szi": "-376577.6", + "fundingRate": "0.0000111236", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.286931", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "462.045711", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.91726", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "127.170681", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "8.000541", + "szi": "-8.0", + "fundingRate": "0.0000383726", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1415.981112", + "szi": "-1029.57981", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "808.422454", + "szi": "-16570.7029", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "614.367439", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.188001", + "szi": "-109217.0", + "fundingRate": "0.0000089482", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.966949", + "szi": "-18747.2", + "fundingRate": "-0.0000248973", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "7.637192", + "szi": "-376577.6", + "fundingRate": "0.0000080741", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.265249", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "455.598253", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.644161", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "125.537208", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6096", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1423.21191", + "szi": "-1029.8298", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "812.95605", + "szi": "-16579.9429", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "616.838978", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.176885", + "szi": "-109217.0", + "fundingRate": "0.000008389", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.929985", + "szi": "-18747.2", + "fundingRate": "-0.0000243473", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-0.417307", + "szi": "-376577.6", + "fundingRate": "-0.0000004406", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.175055", + "szi": "-39691.0", + "fundingRate": "0.0000115519", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "455.09573", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.348391", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "126.642204", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "6.257253", + "szi": "-8.0", + "fundingRate": "0.0000299081", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1439.279431", + "szi": "-1042.48397", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "813.826497", + "szi": "-16579.9429", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "619.500635", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.120756", + "szi": "-109217.0", + "fundingRate": "0.0000057255", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-5.111166", + "szi": "-18747.2", + "fundingRate": "-0.0000319059", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "1.092172", + "szi": "-376577.6", + "fundingRate": "0.0000011599", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.279042", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "453.711423", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.119607", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "126.089706", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.616", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "3271.094832", + "szi": "-1060.51148", + "fundingRate": "0.0000277928", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "817.743508", + "szi": "-16579.9429", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "627.802469", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.265451", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-6.03528", + "szi": "-18747.2", + "fundingRate": "-0.0000373967", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-3.594628", + "szi": "-376577.6", + "fundingRate": "-0.0000037579", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.282416", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "460.623478", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.575114", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "128.443829", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "15.192936", + "szi": "-8.0", + "fundingRate": "0.0000724356", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "2663.818437", + "szi": "-1116.95495", + "fundingRate": "0.0000215309", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "815.584898", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "624.665517", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.264509", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-5.018405", + "szi": "-18747.2", + "fundingRate": "-0.0000313562", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "2.663639", + "szi": "-376577.6", + "fundingRate": "0.0000028111", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.279687", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "459.912361", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.191231", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "127.122637", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6238", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1537.412023", + "szi": "-1132.76135", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "802.381828", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "607.713297", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.027426", + "szi": "-109217.0", + "fundingRate": "0.0000013392", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.181059", + "szi": "-18747.2", + "fundingRate": "-0.0000141336", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-7.043403", + "szi": "-376577.6", + "fundingRate": "-0.0000076894", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.244263", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "445.329728", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "-28.544179", + "szi": "-4122236.7999999998", + "fundingRate": "-0.0000190049", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "121.885915", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "12.811105", + "szi": "-8.0", + "fundingRate": "0.0000614288", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1561.284968", + "szi": "-1132.76135", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "811.833319", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "618.518357", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.033951", + "szi": "-109217.0", + "fundingRate": "0.0000016266", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.335046", + "szi": "-18747.2", + "fundingRate": "-0.0000148518", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-5.894713", + "szi": "-376577.6", + "fundingRate": "-0.0000062822", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.269318", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "1108.73973", + "szi": "-758524.49", + "fundingRate": "0.0000302913", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.229204", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "122.054067", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "-2.054292", + "szi": "8.0", + "fundingRate": "0.0000098216", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1618.506072", + "szi": "-1168.89183", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "811.128603", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "615.349718", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.049701", + "szi": "-109217.0", + "fundingRate": "-0.000002379", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.806416", + "szi": "-18747.2", + "fundingRate": "-0.0000179054", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "5.278791", + "szi": "-376577.6", + "fundingRate": "0.0000056378", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.159296", + "szi": "-39691.0", + "fundingRate": "0.0000113716", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "546.860305", + "szi": "-758524.49", + "fundingRate": "0.000014908", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.042157", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "119.07538", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "36.094363", + "szi": "-12.0", + "fundingRate": "0.0001153012", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1627.199705", + "szi": "-1168.89183", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "816.683426", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "620.577972", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.011024", + "szi": "-109217.0", + "fundingRate": "0.0000005239", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.886639", + "szi": "-18747.2", + "fundingRate": "-0.0000119591", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "5.790088", + "szi": "-376577.6", + "fundingRate": "0.0000061221", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.055297", + "szi": "-39691.0", + "fundingRate": "0.0000102914", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "470.617038", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.19571", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "123.183085", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "1.960125", + "szi": "-6.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1636.399807", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "812.828213", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "619.120398", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.022655", + "szi": "-109217.0", + "fundingRate": "0.0000010854", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.278543", + "szi": "-18747.2", + "fundingRate": "-0.0000082049", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.730862", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.279488", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "467.58294", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.873661", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "120.492659", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "1.960125", + "szi": "-6.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1628.388817", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "808.392645", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "609.677854", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.026539", + "szi": "-109217.0", + "fundingRate": "-0.0000012833", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.477666", + "szi": "-18747.2", + "fundingRate": "-0.0000224716", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.551517", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.268028", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "459.589988", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.664457", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "118.594947", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "1.955325", + "szi": "-6.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1627.413309", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "806.879577", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "608.980753", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.191199", + "szi": "-109217.0", + "fundingRate": "-0.0000092759", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.455488", + "szi": "-18747.2", + "fundingRate": "-0.0000224234", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.472436", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.265448", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "458.461683", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.546458", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "118.450817", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "-1.605344", + "szi": "-6.0", + "fundingRate": "-0.0000102524", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1621.722846", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "804.537431", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "607.903416", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.169686", + "szi": "-109217.0", + "fundingRate": "-0.000008266", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.575382", + "szi": "-18747.2", + "fundingRate": "-0.0000102692", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "6.615479", + "szi": "-376577.6", + "fundingRate": "0.0000072228", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.262669", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "450.70577", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.499052", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "116.889409", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "-1.957047", + "szi": "-4.0", + "fundingRate": "-0.0000187284", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1602.020542", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "791.41727", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "595.228859", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.264557", + "szi": "-109217.0", + "fundingRate": "-0.0000131519", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.34333", + "szi": "-18747.2", + "fundingRate": "-0.0000220972", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-29.311271", + "szi": "-376577.6", + "fundingRate": "-0.0000326726", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.240889", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "440.389988", + "szi": "-760112.17", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.226985", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "113.742571", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "1.9464", + "szi": "-6.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1590.77264", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "780.763616", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "471.007379", + "szi": "-253491.13", + "fundingRate": "0.0000100021", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.391999", + "szi": "-109217.0", + "fundingRate": "-0.0000196765", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-4.635262", + "szi": "-18747.2", + "fundingRate": "-0.000031377", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-29.505316", + "szi": "-376577.6", + "fundingRate": "-0.0000334591", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.571455", + "szi": "-39691.0", + "fundingRate": "0.0000058375", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "439.05029", + "szi": "-760112.17", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "17.864743", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "46.270439", + "szi": "-1921732999.0", + "fundingRate": "0.000005224", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.5988", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1600.55728", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "787.914415", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "593.54948", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.223638", + "szi": "-109217.0", + "fundingRate": "-0.0000112268", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-6.001559", + "szi": "-18747.2", + "fundingRate": "-0.0000404742", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-21.44324", + "szi": "-376577.6", + "fundingRate": "-0.000024522", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.54058", + "szi": "-39691.0", + "fundingRate": "0.0000055063", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "3067.627973", + "szi": "-790492.75", + "fundingRate": "0.0000829182", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "17.961616", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "111.220297", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "8.952166", + "szi": "-12.0", + "fundingRate": "0.0000288237", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1592.028976", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "782.214502", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "586.388356", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.152635", + "szi": "-109217.0", + "fundingRate": "-0.0000077353", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-4.110758", + "szi": "-18747.2", + "fundingRate": "-0.0000281498", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-24.223099", + "szi": "-376577.6", + "fundingRate": "-0.0000281261", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.492633", + "szi": "-39691.0", + "fundingRate": "-0.000005058", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "1224.097599", + "szi": "-795009.1", + "fundingRate": "0.0000339184", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "17.564335", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "103.365213", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "3.87825", + "szi": "-12.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1598.354997", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "783.665389", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "587.180516", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.386821", + "szi": "-109217.0", + "fundingRate": "-0.0000194763", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-4.254674", + "szi": "-18747.2", + "fundingRate": "-0.0000291185", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-5.883543", + "szi": "-376577.6", + "fundingRate": "-0.0000067988", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.555022", + "szi": "-39691.0", + "fundingRate": "0.0000056777", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "475.569818", + "szi": "-827995.9399999999", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "17.434485", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "107.184658", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "3.24225", + "szi": "-10.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1588.673819", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "781.592694", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "582.395871", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.479529", + "szi": "-109217.0", + "fundingRate": "-0.0000243126", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-4.880267", + "szi": "-18747.2", + "fundingRate": "-0.0000340065", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-9.188949", + "szi": "-376577.6", + "fundingRate": "-0.0000107509", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.041965", + "szi": "-39691.0", + "fundingRate": "-0.0000004311", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "461.759696", + "szi": "-836805.4300000001", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "17.149535", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "103.74956", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "3.241624", + "szi": "-10.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761850800088, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1579.096105", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761850800088, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "771.353579", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761850800088, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "574.601018", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761850800088, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.415534", + "szi": "-109217.0", + "fundingRate": "-0.0000212837", + "nSamples": null + } + }, + { + "time": 1761850800088, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.291961", + "szi": "-18747.2", + "fundingRate": "-0.0000233818", + "nSamples": null + } + } + ], + "ledger_updates": [ + { + "time": 1761775985479, + "hash": "0x5d37e504267e131583c63ff503d035391e4bb749de71662bafa0ffc2c1bb3d04", + "delta": { + "type": "deposit", + "usdc": "2000000.0" + } + }, + { + "time": 1761776181314, + "hash": "0xe8864446c0136398ea00042e753f19020144002c5b16826a8c4eef997f173d83", + "delta": { + "type": "send", + "user": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "destination": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "sourceDex": "", + "destinationDex": "spot", + "token": "USDC", + "amount": "2000000.0", + "usdcValue": "2000000.0", + "fee": "0.0", + "nativeTokenFee": "0.0", + "nonce": 1761775986336, + "feeToken": "" + } + }, + { + "time": 1761836526667, + "hash": "0x770c60c95bf3f15a7886042e80d793020bd000aef6f7102c1ad50c1c1af7cb45", + "delta": { + "type": "send", + "user": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "destination": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "sourceDex": "", + "destinationDex": "spot", + "token": "USDC", + "amount": "2000000.0", + "usdcValue": "2000000.0", + "fee": "0.0", + "nativeTokenFee": "0.0", + "nonce": 1761836504026, + "feeToken": "" + } + }, + { + "time": 1761967975584, + "hash": "0x10d1c3e3b699ae76124b042e9a55e202033f00c9519ccd48b49a6f36759d8860", + "delta": { + "type": "send", + "user": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "destination": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "sourceDex": "", + "destinationDex": "spot", + "token": "USDC", + "amount": "1000000.0", + "usdcValue": "1000000.0", + "fee": "0.0", + "nativeTokenFee": "0.0", + "nonce": 1761967842954, + "feeToken": "" + } + }, + { + "time": 1761986442068, + "hash": "0x7994a5ad670851fc7b0e042e9de8160202da0093020b70ce1d5d5100260c2be7", + "delta": { + "type": "send", + "user": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "destination": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "sourceDex": "", + "destinationDex": "spot", + "token": "USDC", + "amount": "2000000.0", + "usdcValue": "2000000.0", + "fee": "0.0", + "nativeTokenFee": "0.0", + "nonce": 1761986416542, + "feeToken": "" + } + }, + { + "time": 1762192602685, + "hash": "0x0d71c95d7102dbfbbf4f87ef7308c82d5dcf986b9bfd9758b54b3e96bc9b2bd8", + "delta": { + "type": "withdraw", + "usdc": "9999999.0", + "nonce": 1762192333293000, + "fee": "1.0" + } + }, + { + "time": 1762194097305, + "hash": "0x3ff5209a3eb08cb2a2abffa16da2b1d40673d01cc5552180686a110c905f204e", + "delta": { + "type": "withdraw", + "usdc": "4999999.0", + "nonce": 1762193695602000, + "fee": "1.0" + } + }, + { + "time": 1762194497574, + "hash": "0xbde03299658bc8136d218fc944eb9eb82e643b0052110e20753529b19daa676f", + "delta": { + "type": "withdraw", + "usdc": "4999999.0", + "nonce": 1762193855103000, + "fee": "1.0" + } + }, + { + "time": 1762205307634, + "hash": "0x7e603e06f503cf53c375eed0d5b94ff49991af912bc4f5cb94608778cf12dd51", + "delta": { + "type": "withdraw", + "usdc": "9999999.0", + "nonce": 1762204728527000, + "fee": "1.0" + } + }, + { + "time": 1762251304638, + "hash": "0x295e8ed3f04cf25b4606b336cc6b95386485ea93d80a6f26a7517d9912131211", + "delta": { + "type": "withdraw", + "usdc": "9999999.0", + "nonce": 1762250957451000, + "fee": "1.0" + } + }, + { + "time": 1762281722968, + "hash": "0x61ea42832a141ae56363042ed6f11b02135a0068c51739b705b2edd5e917f4d0", + "delta": { + "type": "send", + "user": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "destination": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "sourceDex": "spot", + "destinationDex": "", + "token": "USDC", + "amount": "2000000.0", + "usdcValue": "2000000.0", + "fee": "0.0", + "nativeTokenFee": "0.0", + "nonce": 1762281681251, + "feeToken": "" + } + }, + { + "time": 1762281759262, + "hash": "0x6f2d024dd9e95b0b70a6042ed6f2e50203ed003374ec79dd12f5ada098ed34f6", + "delta": { + "type": "send", + "user": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "destination": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "sourceDex": "", + "destinationDex": "spot", + "token": "USDC", + "amount": "5000000.0", + "usdcValue": "5000000.0", + "fee": "0.0", + "nativeTokenFee": "0.0", + "nonce": 1762281727554, + "feeToken": "" + } + }, + { + "time": 1762281793265, + "hash": "0xcf5cf6b39d7ecb94d0d6042ed6f48e020f8100993871ea667325a2065c72a57f", + "delta": { + "type": "send", + "user": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "destination": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "sourceDex": "spot", + "destinationDex": "", + "token": "USDC", + "amount": "5000000.0", + "usdcValue": "5000000.0", + "fee": "0.0", + "nativeTokenFee": "0.0", + "nonce": 1762281762715, + "feeToken": "" + } + }, + { + "time": 1762282195700, + "hash": "0x9ba0ab4a18e5667b804b88f38314127caf20fa26ed24130267a6cefea772bba6", + "delta": { + "type": "withdraw", + "usdc": "4999999.0", + "nonce": 1762281795988000, + "fee": "1.0" + } + } + ], + "referral_state": { + "referredBy": null, + "cumVlm": "3098399653.1999998093", + "unclaimedRewards": "1211.48930369", + "claimedRewards": "23302.099542", + "builderRewards": "0.0", + "referrerState": { + "stage": "ready", + "data": { + "code": "EGAF", + "nReferrals": 3, + "referralStates": [ + { + "cumVlm": "3212894615.4400000572", + "cumRewardedFeesSinceReferred": "616588.82185336", + "cumFeesRewardedToReferrer": "23302.099542", + "timeJoined": 1740074524733, + "user": "0x5b5d51203a0f9079f8aeb098a6523a13f298c060", + "tokenToState": [ + [ + 0, + { + "cumVlm": "3212894615.4400000572", + "cumRewardedFeesSinceReferred": "616588.82185336", + "cumFeesRewardedToReferrer": "23302.099542" + } + ] + ] + }, + { + "cumVlm": "31767287.4200000018", + "cumRewardedFeesSinceReferred": "12114.95159313", + "cumFeesRewardedToReferrer": "1211.48930369", + "timeJoined": 1750501639492, + "user": "0xc327d213545d49a1644cf3f154375034ac6e24e8", + "tokenToState": [ + [ + 0, + { + "cumVlm": "31767287.4200000018", + "cumRewardedFeesSinceReferred": "12114.95159313", + "cumFeesRewardedToReferrer": "1211.48930369" + } + ] + ] + }, + { + "cumVlm": "0.0", + "cumRewardedFeesSinceReferred": "0.0", + "cumFeesRewardedToReferrer": "0.0", + "timeJoined": 1751022900093, + "user": "0x7096a82cd4c980f61a490a391d680a2e0259f7f0", + "tokenToState": [] + } + ] + } + }, + "rewardHistory": [], + "tokenToState": [ + [ + 0, + { + "cumVlm": "3098399653.1999998093", + "unclaimedRewards": "1211.48930369", + "claimedRewards": "23302.099542", + "builderRewards": "0.0" + } + ] + ] + }, + "sub_accounts": null, + "funding_history": { + "BTC": [ + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002434116", + "time": 1761688800030 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000250779", + "time": 1761692400042 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002611137", + "time": 1761696000102 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002632197", + "time": 1761699600042 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002304357", + "time": 1761703200077 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002080238", + "time": 1761706800042 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002375445", + "time": 1761710400036 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002216944", + "time": 1761714000043 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001066263", + "time": 1761717600006 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001335725", + "time": 1761721200020 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000331165", + "time": 1761724800053 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000065064", + "time": 1761728400061 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000277824", + "time": 1761732000044 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000002989", + "time": 1761735600044 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000246191", + "time": 1761739200098 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000597828", + "time": 1761742800000 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001200814", + "time": 1761746400006 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000264079", + "time": 1761750000035 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000251946", + "time": 1761753600064 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000610535", + "time": 1761757200196 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000546444", + "time": 1761760800117 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001824431", + "time": 1761764400037 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004640343", + "time": 1761768000043 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005892295", + "time": 1761771600014 + }, + { + "coin": "BTC", + "fundingRate": "0.0000174792", + "premium": "0.0006398335", + "time": 1761775200025 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005035507", + "time": 1761778800061 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005493361", + "time": 1761782400035 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005967992", + "time": 1761786000015 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005995991", + "time": 1761789600037 + }, + { + "coin": "BTC", + "fundingRate": "0.0000277928", + "premium": "0.0007223428", + "time": 1761793200041 + }, + { + "coin": "BTC", + "fundingRate": "0.0000215309", + "premium": "0.0006722473", + "time": 1761796800122 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004471343", + "time": 1761800400021 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004425787", + "time": 1761804000021 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004540965", + "time": 1761807600062 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005601024", + "time": 1761811200024 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004570803", + "time": 1761814800007 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005234061", + "time": 1761818400042 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005474431", + "time": 1761822000045 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000569542", + "time": 1761825600003 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002424519", + "time": 1761829200048 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002524248", + "time": 1761832800048 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003516147", + "time": 1761836400044 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003901308", + "time": 1761840000037 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005057492", + "time": 1761843600008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001539126", + "time": 1761847200032 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000455606", + "time": 1761850800088 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000813914", + "time": 1761854400034 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000258931", + "time": 1761858000071 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000881992", + "time": 1761861600092 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001655573", + "time": 1761865200006 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002638343", + "time": 1761868800006 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004843393", + "time": 1761872400082 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003475225", + "time": 1761876000068 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001160719", + "time": 1761879600072 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000785835", + "time": 1761883200038 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002043369", + "time": 1761886800105 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000949424", + "time": 1761890400081 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000099804", + "time": 1761894000066 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000027245", + "time": 1761897600065 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001375141", + "time": 1761901200071 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002771164", + "time": 1761904800002 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000198207", + "time": 1761908400027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000152855", + "time": 1761912000145 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001383272", + "time": 1761915600016 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001100713", + "time": 1761919200066 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000040622", + "time": 1761922800074 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000763022", + "time": 1761926400068 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001041098", + "time": 1761930000021 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000890412", + "time": 1761933600067 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000216479", + "time": 1761937200009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000217412", + "time": 1761940800030 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000842949", + "time": 1761944400040 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000250051", + "time": 1761948000089 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000466022", + "time": 1761951600037 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000893694", + "time": 1761955200078 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001001274", + "time": 1761958800002 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000155277", + "time": 1761962400000 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001200593", + "time": 1761966000108 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000055103", + "time": 1761969600053 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000535618", + "time": 1761973200085 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000147685", + "time": 1761976800046 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000185873", + "time": 1761980400032 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000666064", + "time": 1761984000039 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000330985", + "time": 1761987600075 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000357544", + "time": 1761991200010 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000327505", + "time": 1761994800062 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000811454", + "time": 1761998400072 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001065681", + "time": 1762002000047 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000562574", + "time": 1762005600013 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000690394", + "time": 1762009200106 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.00011", + "time": 1762012800044 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000930771", + "time": 1762016400100 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001233996", + "time": 1762020000005 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001653233", + "time": 1762023600116 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001822303", + "time": 1762027200002 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002200166", + "time": 1762030800008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001335308", + "time": 1762034400031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001149816", + "time": 1762038000014 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001556391", + "time": 1762041600094 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000752885", + "time": 1762045200000 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000946069", + "time": 1762048800052 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001377675", + "time": 1762052400004 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001190743", + "time": 1762056000012 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001186009", + "time": 1762059600099 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000453902", + "time": 1762063200007 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000462721", + "time": 1762066800053 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000584566", + "time": 1762070400040 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000471002", + "time": 1762074000053 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000724178", + "time": 1762077600020 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000556611", + "time": 1762081200019 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000729254", + "time": 1762084800027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000340581", + "time": 1762088400003 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000139998", + "time": 1762092000057 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001786041", + "time": 1762095600055 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001976366", + "time": 1762099200038 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003287782", + "time": 1762102800043 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002786877", + "time": 1762106400014 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002222143", + "time": 1762110000050 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002597292", + "time": 1762113600024 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002945203", + "time": 1762117200063 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002734694", + "time": 1762120800055 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003189501", + "time": 1762124400127 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002474719", + "time": 1762128000108 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001992642", + "time": 1762131600005 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002477683", + "time": 1762135200074 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002331201", + "time": 1762138800048 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000300631", + "time": 1762142400069 + }, + { + "coin": "BTC", + "fundingRate": "0.0000106615", + "premium": "-0.0004147082", + "time": 1762146000062 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003809571", + "time": 1762149600081 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003843444", + "time": 1762153200041 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003383729", + "time": 1762156800009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002288049", + "time": 1762160400014 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002163684", + "time": 1762164000019 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001932965", + "time": 1762167600065 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001221747", + "time": 1762171200073 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001108337", + "time": 1762174800022 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001315587", + "time": 1762178400040 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000834529", + "time": 1762182000059 + }, + { + "coin": "BTC", + "fundingRate": "0.0000041415", + "premium": "-0.0004668677", + "time": 1762185600024 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003400144", + "time": 1762189200019 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000269983", + "time": 1762192800009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003351985", + "time": 1762196400094 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003579941", + "time": 1762200000046 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003737556", + "time": 1762203600000 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003889873", + "time": 1762207200013 + }, + { + "coin": "BTC", + "fundingRate": "0.0000087211", + "premium": "-0.0004302314", + "time": 1762210800040 + }, + { + "coin": "BTC", + "fundingRate": "0.0000073833", + "premium": "-0.0004409336", + "time": 1762214400009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000078968", + "premium": "-0.0004368254", + "time": 1762218000022 + }, + { + "coin": "BTC", + "fundingRate": "0.0000095488", + "premium": "-0.00042361", + "time": 1762221600049 + }, + { + "coin": "BTC", + "fundingRate": "0.0000074094", + "premium": "-0.0004407248", + "time": 1762225200014 + }, + { + "coin": "BTC", + "fundingRate": "0.0000079401", + "premium": "-0.0004364795", + "time": 1762228800074 + }, + { + "coin": "BTC", + "fundingRate": "0.0000079537", + "premium": "-0.0004363702", + "time": 1762232400042 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000034842", + "premium": "-0.0005278737", + "time": 1762236000054 + }, + { + "coin": "BTC", + "fundingRate": "0.0000091974", + "premium": "-0.0004264212", + "time": 1762239600052 + }, + { + "coin": "BTC", + "fundingRate": "0.000009474", + "premium": "-0.0004242082", + "time": 1762243200064 + }, + { + "coin": "BTC", + "fundingRate": "0.0000068248", + "premium": "-0.0004454014", + "time": 1762246800001 + }, + { + "coin": "BTC", + "fundingRate": "0.0000046854", + "premium": "-0.0004625168", + "time": 1762250400042 + }, + { + "coin": "BTC", + "fundingRate": "0.0000083362", + "premium": "-0.0004333105", + "time": 1762254000018 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003652237", + "time": 1762257600053 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002813028", + "time": 1762261200065 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001651728", + "time": 1762264800077 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001507512", + "time": 1762268400003 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001862799", + "time": 1762272000000 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002465033", + "time": 1762275600006 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003101993", + "time": 1762279200062 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003409233", + "time": 1762282800079 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002377945", + "time": 1762286400059 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003687714", + "time": 1762290000034 + } + ], + "ETH": [ + { + "coin": "ETH", + "fundingRate": "0.0000119638", + "premium": "-0.0004042896", + "time": 1761688800030 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003561879", + "time": 1761692400042 + }, + { + "coin": "ETH", + "fundingRate": "0.0000121222", + "premium": "-0.0004030224", + "time": 1761696000102 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003508958", + "time": 1761699600042 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003352315", + "time": 1761703200077 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002848923", + "time": 1761706800042 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002671564", + "time": 1761710400036 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002366364", + "time": 1761714000043 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002852907", + "time": 1761717600006 + }, + { + "coin": "ETH", + "fundingRate": "0.0000068603", + "premium": "-0.0004451177", + "time": 1761721200020 + }, + { + "coin": "ETH", + "fundingRate": "0.000004081", + "premium": "-0.0004673518", + "time": 1761724800053 + }, + { + "coin": "ETH", + "fundingRate": "0.0000063862", + "premium": "-0.0004489103", + "time": 1761728400061 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000212514", + "premium": "-0.0006700113", + "time": 1761732000044 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000304612", + "premium": "-0.0007436898", + "time": 1761735600044 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000117323", + "premium": "-0.0005938587", + "time": 1761739200098 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000062524", + "premium": "-0.0005500191", + "time": 1761742800000 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000033712", + "premium": "-0.0005269693", + "time": 1761746400006 + }, + { + "coin": "ETH", + "fundingRate": "0.0000059489", + "premium": "-0.0004524088", + "time": 1761750000035 + }, + { + "coin": "ETH", + "fundingRate": "0.0000003567", + "premium": "-0.0004971466", + "time": 1761753600064 + }, + { + "coin": "ETH", + "fundingRate": "0.0000074963", + "premium": "-0.00044003", + "time": 1761757200196 + }, + { + "coin": "ETH", + "fundingRate": "0.0000095213", + "premium": "-0.0004238295", + "time": 1761760800117 + }, + { + "coin": "ETH", + "fundingRate": "0.0000008084", + "premium": "-0.0004935328", + "time": 1761764400037 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003835924", + "time": 1761768000043 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003323883", + "time": 1761771600014 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002959407", + "time": 1761775200025 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003744364", + "time": 1761778800061 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003158029", + "time": 1761782400035 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.00029026", + "time": 1761786000015 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003183008", + "time": 1761789600037 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002722145", + "time": 1761793200041 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000300865", + "time": 1761796800122 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003001039", + "time": 1761800400021 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002481036", + "time": 1761804000021 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003142932", + "time": 1761807600062 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002664788", + "time": 1761811200024 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002942617", + "time": 1761814800007 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002706262", + "time": 1761818400042 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001969893", + "time": 1761822000045 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001874225", + "time": 1761825600003 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003282206", + "time": 1761829200048 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002636076", + "time": 1761832800048 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002243202", + "time": 1761836400044 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003412461", + "time": 1761840000037 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002951328", + "time": 1761843600008 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003665372", + "time": 1761847200032 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003422412", + "time": 1761850800088 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003918995", + "time": 1761854400034 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003858863", + "time": 1761858000071 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003348846", + "time": 1761861600092 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003105773", + "time": 1761865200006 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002588288", + "time": 1761868800006 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002433118", + "time": 1761872400082 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002300726", + "time": 1761876000068 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002014652", + "time": 1761879600072 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002276182", + "time": 1761883200038 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001824396", + "time": 1761886800105 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002443079", + "time": 1761890400081 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002911553", + "time": 1761894000066 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003548575", + "time": 1761897600065 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003689069", + "time": 1761901200071 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003128188", + "time": 1761904800002 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003753516", + "time": 1761908400027 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003776815", + "time": 1761912000145 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003291344", + "time": 1761915600016 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003828677", + "time": 1761919200066 + }, + { + "coin": "ETH", + "fundingRate": "0.0000040784", + "premium": "-0.0004673729", + "time": 1761922800074 + }, + { + "coin": "ETH", + "fundingRate": "0.0000000483", + "premium": "-0.0004996139", + "time": 1761926400068 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000010665", + "premium": "-0.0005085317", + "time": 1761930000021 + }, + { + "coin": "ETH", + "fundingRate": "0.0000076828", + "premium": "-0.0004385376", + "time": 1761933600067 + }, + { + "coin": "ETH", + "fundingRate": "0.0000082971", + "premium": "-0.0004336236", + "time": 1761937200009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003957004", + "time": 1761940800030 + }, + { + "coin": "ETH", + "fundingRate": "0.0000084196", + "premium": "-0.0004326435", + "time": 1761944400040 + }, + { + "coin": "ETH", + "fundingRate": "0.0000053065", + "premium": "-0.0004575477", + "time": 1761948000089 + }, + { + "coin": "ETH", + "fundingRate": "0.0000052802", + "premium": "-0.0004577588", + "time": 1761951600037 + }, + { + "coin": "ETH", + "fundingRate": "0.0000004041", + "premium": "-0.0004967672", + "time": 1761955200078 + }, + { + "coin": "ETH", + "fundingRate": "0.0000017368", + "premium": "-0.000486106", + "time": 1761958800002 + }, + { + "coin": "ETH", + "fundingRate": "0.0000056422", + "premium": "-0.0004548625", + "time": 1761962400000 + }, + { + "coin": "ETH", + "fundingRate": "0.0000025859", + "premium": "-0.000479313", + "time": 1761966000108 + }, + { + "coin": "ETH", + "fundingRate": "0.0000050148", + "premium": "-0.0004598819", + "time": 1761969600053 + }, + { + "coin": "ETH", + "fundingRate": "0.0000051641", + "premium": "-0.0004586875", + "time": 1761973200085 + }, + { + "coin": "ETH", + "fundingRate": "0.0000044067", + "premium": "-0.0004647463", + "time": 1761976800046 + }, + { + "coin": "ETH", + "fundingRate": "0.0000033868", + "premium": "-0.0004729054", + "time": 1761980400032 + }, + { + "coin": "ETH", + "fundingRate": "0.000007312", + "premium": "-0.0004415037", + "time": 1761984000039 + }, + { + "coin": "ETH", + "fundingRate": "0.0000042726", + "premium": "-0.0004658195", + "time": 1761987600075 + }, + { + "coin": "ETH", + "fundingRate": "0.00000044", + "premium": "-0.0004964803", + "time": 1761991200010 + }, + { + "coin": "ETH", + "fundingRate": "0.0000025115", + "premium": "-0.0004799084", + "time": 1761994800062 + }, + { + "coin": "ETH", + "fundingRate": "0.0000068407", + "premium": "-0.000445274", + "time": 1761998400072 + }, + { + "coin": "ETH", + "fundingRate": "0.0000060439", + "premium": "-0.0004516491", + "time": 1762002000047 + }, + { + "coin": "ETH", + "fundingRate": "0.0000051198", + "premium": "-0.0004590417", + "time": 1762005600013 + }, + { + "coin": "ETH", + "fundingRate": "0.000000611", + "premium": "-0.0004951118", + "time": 1762009200106 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000007016", + "premium": "-0.0005056132", + "time": 1762012800044 + }, + { + "coin": "ETH", + "fundingRate": "0.0000051047", + "premium": "-0.0004591627", + "time": 1762016400100 + }, + { + "coin": "ETH", + "fundingRate": "0.000005983", + "premium": "-0.0004521362", + "time": 1762020000005 + }, + { + "coin": "ETH", + "fundingRate": "0.0000017198", + "premium": "-0.0004862413", + "time": 1762023600116 + }, + { + "coin": "ETH", + "fundingRate": "0.0000044172", + "premium": "-0.0004646624", + "time": 1762027200002 + }, + { + "coin": "ETH", + "fundingRate": "0.0000098339", + "premium": "-0.0004213286", + "time": 1762030800008 + }, + { + "coin": "ETH", + "fundingRate": "0.0000054282", + "premium": "-0.0004565746", + "time": 1762034400031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000072258", + "premium": "-0.0004421933", + "time": 1762038000014 + }, + { + "coin": "ETH", + "fundingRate": "0.0000067438", + "premium": "-0.0004460493", + "time": 1762041600094 + }, + { + "coin": "ETH", + "fundingRate": "0.0000056387", + "premium": "-0.0004548903", + "time": 1762045200000 + }, + { + "coin": "ETH", + "fundingRate": "0.0000040959", + "premium": "-0.0004672329", + "time": 1762048800052 + }, + { + "coin": "ETH", + "fundingRate": "0.0000065055", + "premium": "-0.0004479563", + "time": 1762052400004 + }, + { + "coin": "ETH", + "fundingRate": "0.0000054661", + "premium": "-0.0004562715", + "time": 1762056000012 + }, + { + "coin": "ETH", + "fundingRate": "0.0000062838", + "premium": "-0.0004497299", + "time": 1762059600099 + }, + { + "coin": "ETH", + "fundingRate": "0.000008698", + "premium": "-0.000430416", + "time": 1762063200007 + }, + { + "coin": "ETH", + "fundingRate": "0.000007097", + "premium": "-0.0004432236", + "time": 1762066800053 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003761929", + "time": 1762070400040 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003851585", + "time": 1762074000053 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003899211", + "time": 1762077600020 + }, + { + "coin": "ETH", + "fundingRate": "0.0000096147", + "premium": "-0.0004230828", + "time": 1762081200019 + }, + { + "coin": "ETH", + "fundingRate": "0.0000042184", + "premium": "-0.0004662531", + "time": 1762084800027 + }, + { + "coin": "ETH", + "fundingRate": "0.0000039738", + "premium": "-0.0004682097", + "time": 1762088400003 + }, + { + "coin": "ETH", + "fundingRate": "0.0000013301", + "premium": "-0.0004893594", + "time": 1762092000057 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000003666", + "premium": "-0.0005029324", + "time": 1762095600055 + }, + { + "coin": "ETH", + "fundingRate": "0.0000013415", + "premium": "-0.000489268", + "time": 1762099200038 + }, + { + "coin": "ETH", + "fundingRate": "0.0000052373", + "premium": "-0.0004581014", + "time": 1762102800043 + }, + { + "coin": "ETH", + "fundingRate": "0.0000072676", + "premium": "-0.0004418595", + "time": 1762106400014 + }, + { + "coin": "ETH", + "fundingRate": "0.0000075613", + "premium": "-0.0004395099", + "time": 1762110000050 + }, + { + "coin": "ETH", + "fundingRate": "0.0000053397", + "premium": "-0.0004572825", + "time": 1762113600024 + }, + { + "coin": "ETH", + "fundingRate": "0.0000069957", + "premium": "-0.000444034", + "time": 1762117200063 + }, + { + "coin": "ETH", + "fundingRate": "0.0000071318", + "premium": "-0.0004429455", + "time": 1762120800055 + }, + { + "coin": "ETH", + "fundingRate": "0.0000023434", + "premium": "-0.0004812529", + "time": 1762124400127 + }, + { + "coin": "ETH", + "fundingRate": "0.0000065972", + "premium": "-0.0004472227", + "time": 1762128000108 + }, + { + "coin": "ETH", + "fundingRate": "-0.000002042", + "premium": "-0.0005163363", + "time": 1762131600005 + }, + { + "coin": "ETH", + "fundingRate": "0.0000012713", + "premium": "-0.0004898298", + "time": 1762135200074 + }, + { + "coin": "ETH", + "fundingRate": "0.0000035508", + "premium": "-0.0004715937", + "time": 1762138800048 + }, + { + "coin": "ETH", + "fundingRate": "-0.000005392", + "premium": "-0.0005431359", + "time": 1762142400069 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000048928", + "premium": "-0.0005391427", + "time": 1762146000062 + }, + { + "coin": "ETH", + "fundingRate": "0.0000045061", + "premium": "-0.0004639513", + "time": 1762149600081 + }, + { + "coin": "ETH", + "fundingRate": "-0.000003776", + "premium": "-0.0005302081", + "time": 1762153200041 + }, + { + "coin": "ETH", + "fundingRate": "0.0000024255", + "premium": "-0.000480596", + "time": 1762156800009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000026379", + "premium": "-0.0004788968", + "time": 1762160400014 + }, + { + "coin": "ETH", + "fundingRate": "0.0000048081", + "premium": "-0.0004615355", + "time": 1762164000019 + }, + { + "coin": "ETH", + "fundingRate": "0.0000053387", + "premium": "-0.0004572907", + "time": 1762167600065 + }, + { + "coin": "ETH", + "fundingRate": "0.000003695", + "premium": "-0.0004704403", + "time": 1762171200073 + }, + { + "coin": "ETH", + "fundingRate": "0.0000048538", + "premium": "-0.0004611698", + "time": 1762174800022 + }, + { + "coin": "ETH", + "fundingRate": "0.00000932", + "premium": "-0.0004254402", + "time": 1762178400040 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000106274", + "premium": "-0.0005850195", + "time": 1762182000059 + }, + { + "coin": "ETH", + "fundingRate": "-0.000035011", + "premium": "-0.0007800879", + "time": 1762185600024 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000045368", + "premium": "-0.0005362948", + "time": 1762189200019 + }, + { + "coin": "ETH", + "fundingRate": "0.0000121217", + "premium": "-0.0004030262", + "time": 1762192800009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000012818", + "premium": "-0.0004897454", + "time": 1762196400094 + }, + { + "coin": "ETH", + "fundingRate": "0.0000000015", + "premium": "-0.0004999876", + "time": 1762200000046 + }, + { + "coin": "ETH", + "fundingRate": "0.0000007554", + "premium": "-0.0004939571", + "time": 1762203600000 + }, + { + "coin": "ETH", + "fundingRate": "-0.00000069", + "premium": "-0.0005055201", + "time": 1762207200013 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000032333", + "premium": "-0.0005258666", + "time": 1762210800040 + }, + { + "coin": "ETH", + "fundingRate": "0.0000035416", + "premium": "-0.0004716669", + "time": 1762214400009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000064303", + "premium": "-0.000448558", + "time": 1762218000022 + }, + { + "coin": "ETH", + "fundingRate": "0.0000076148", + "premium": "-0.0004390812", + "time": 1762221600049 + }, + { + "coin": "ETH", + "fundingRate": "0.0000003021", + "premium": "-0.0004975834", + "time": 1762225200014 + }, + { + "coin": "ETH", + "fundingRate": "0.0000044072", + "premium": "-0.0004647424", + "time": 1762228800074 + }, + { + "coin": "ETH", + "fundingRate": "0.0000009207", + "premium": "-0.0004926341", + "time": 1762232400042 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000101849", + "premium": "-0.0005814796", + "time": 1762236000054 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000028941", + "premium": "-0.0005231528", + "time": 1762239600052 + }, + { + "coin": "ETH", + "fundingRate": "-0.000000791", + "premium": "-0.0005063279", + "time": 1762243200064 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000000748", + "premium": "-0.0005005986", + "time": 1762246800001 + }, + { + "coin": "ETH", + "fundingRate": "0.0000101916", + "premium": "-0.0004184674", + "time": 1762250400042 + }, + { + "coin": "ETH", + "fundingRate": "0.0000105058", + "premium": "-0.0004159533", + "time": 1762254000018 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003751413", + "time": 1762257600053 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003447684", + "time": 1762261200065 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003871956", + "time": 1762264800077 + }, + { + "coin": "ETH", + "fundingRate": "0.000007969", + "premium": "-0.0004362484", + "time": 1762268400003 + }, + { + "coin": "ETH", + "fundingRate": "0.0000087773", + "premium": "-0.0004297812", + "time": 1762272000000 + }, + { + "coin": "ETH", + "fundingRate": "0.0000026686", + "premium": "-0.0004786515", + "time": 1762275600006 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000511808", + "premium": "-0.0009094466", + "time": 1762279200062 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000286118", + "premium": "-0.0007288946", + "time": 1762282800079 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003978222", + "time": 1762286400059 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000061965", + "premium": "-0.0005495721", + "time": 1762290000034 + } + ], + "SOL": [ + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000728967", + "time": 1761688800030 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001527551", + "time": 1761692400042 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001652292", + "time": 1761696000102 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0002019673", + "time": 1761699600042 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000885077", + "time": 1761703200077 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001309894", + "time": 1761706800042 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000951156", + "time": 1761710400036 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0002212048", + "time": 1761714000043 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0002158177", + "time": 1761717600006 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001395103", + "time": 1761721200020 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001246762", + "time": 1761724800053 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000939192", + "time": 1761728400061 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001637566", + "time": 1761732000044 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0003285", + "time": 1761735600044 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0003752385", + "time": 1761739200098 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0005210632", + "time": 1761742800000 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0005291393", + "time": 1761746400006 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0002080071", + "time": 1761750000035 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000508311", + "time": 1761753600064 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001968097", + "time": 1761757200196 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002596715", + "time": 1761760800117 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003624087", + "time": 1761764400037 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001463329", + "time": 1761768000043 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001168", + "time": 1761771600014 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0003246259", + "time": 1761775200025 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0003727324", + "time": 1761778800061 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0003206399", + "time": 1761782400035 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.000246437", + "time": 1761786000015 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0002356491", + "time": 1761789600037 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0002904877", + "time": 1761793200041 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001666777", + "time": 1761796800122 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000523137", + "time": 1761800400021 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001869632", + "time": 1761804000021 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0002039315", + "time": 1761807600062 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001615607", + "time": 1761811200024 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001222558", + "time": 1761814800007 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000413903", + "time": 1761818400042 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000630782", + "time": 1761822000045 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001036178", + "time": 1761825600003 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001819543", + "time": 1761829200048 + }, + { + "coin": "SOL", + "fundingRate": "0.0000100021", + "premium": "-0.0004199835", + "time": 1761832800048 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002244447", + "time": 1761836400044 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.00028031", + "time": 1761840000037 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000473589", + "time": 1761843600008 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000335506", + "time": 1761847200032 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002491898", + "time": 1761850800088 + }, + { + "coin": "SOL", + "fundingRate": "0.0000092346", + "premium": "-0.0004261234", + "time": 1761854400034 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003252596", + "time": 1761858000071 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001609249", + "time": 1761861600092 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000324231", + "time": 1761865200006 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002221333", + "time": 1761868800006 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000742283", + "time": 1761872400082 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000529673", + "time": 1761876000068 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001470714", + "time": 1761879600072 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.000187606", + "time": 1761883200038 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.00023622", + "time": 1761886800105 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002415735", + "time": 1761890400081 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002615857", + "time": 1761894000066 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003074238", + "time": 1761897600065 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003582872", + "time": 1761901200071 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002795541", + "time": 1761904800002 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003094571", + "time": 1761908400027 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003521734", + "time": 1761912000145 + }, + { + "coin": "SOL", + "fundingRate": "0.0000087988", + "premium": "-0.0004296094", + "time": 1761915600016 + }, + { + "coin": "SOL", + "fundingRate": "0.0000073865", + "premium": "-0.0004409077", + "time": 1761919200066 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003863839", + "time": 1761922800074 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003502252", + "time": 1761926400068 + }, + { + "coin": "SOL", + "fundingRate": "0.0000078733", + "premium": "-0.0004370135", + "time": 1761930000021 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002825962", + "time": 1761933600067 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003250329", + "time": 1761937200009 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001830247", + "time": 1761940800030 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002688589", + "time": 1761944400040 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002255757", + "time": 1761948000089 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002325347", + "time": 1761951600037 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002354745", + "time": 1761955200078 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.00035401", + "time": 1761958800002 + }, + { + "coin": "SOL", + "fundingRate": "0.0000083621", + "premium": "-0.0004331032", + "time": 1761962400000 + }, + { + "coin": "SOL", + "fundingRate": "0.000004994", + "premium": "-0.0004600482", + "time": 1761966000108 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003838598", + "time": 1761969600053 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003017005", + "time": 1761973200085 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003223774", + "time": 1761976800046 + }, + { + "coin": "SOL", + "fundingRate": "0.0000068675", + "premium": "-0.0004450601", + "time": 1761980400032 + }, + { + "coin": "SOL", + "fundingRate": "0.0000084033", + "premium": "-0.0004327736", + "time": 1761984000039 + }, + { + "coin": "SOL", + "fundingRate": "0.0000087957", + "premium": "-0.0004296347", + "time": 1761987600075 + }, + { + "coin": "SOL", + "fundingRate": "0.0000032929", + "premium": "-0.0004736565", + "time": 1761991200010 + }, + { + "coin": "SOL", + "fundingRate": "0.0000014701", + "premium": "-0.0004882393", + "time": 1761994800062 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000012168", + "premium": "-0.0005097347", + "time": 1761998400072 + }, + { + "coin": "SOL", + "fundingRate": "0.0000035932", + "premium": "-0.0004712542", + "time": 1762002000047 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000044575", + "premium": "-0.0005356602", + "time": 1762005600013 + }, + { + "coin": "SOL", + "fundingRate": "-0.000002878", + "premium": "-0.000523024", + "time": 1762009200106 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000080646", + "premium": "-0.0005645168", + "time": 1762012800044 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000058042", + "premium": "-0.0005464336", + "time": 1762016400100 + }, + { + "coin": "SOL", + "fundingRate": "0.0000044613", + "premium": "-0.0004643093", + "time": 1762020000005 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003340266", + "time": 1762023600116 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003215432", + "time": 1762027200002 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003361671", + "time": 1762030800008 + }, + { + "coin": "SOL", + "fundingRate": "0.0000124185", + "premium": "-0.0004006521", + "time": 1762034400031 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.000317137", + "time": 1762038000014 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003824407", + "time": 1762041600094 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002803754", + "time": 1762045200000 + }, + { + "coin": "SOL", + "fundingRate": "0.0000118214", + "premium": "-0.0004054289", + "time": 1762048800052 + }, + { + "coin": "SOL", + "fundingRate": "0.000011807", + "premium": "-0.000405544", + "time": 1762052400004 + }, + { + "coin": "SOL", + "fundingRate": "0.0000074126", + "premium": "-0.0004406993", + "time": 1762056000012 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003957515", + "time": 1762059600099 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003342", + "time": 1762063200007 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001907342", + "time": 1762066800053 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002398031", + "time": 1762070400040 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003444065", + "time": 1762074000053 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003481377", + "time": 1762077600020 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003527091", + "time": 1762081200019 + }, + { + "coin": "SOL", + "fundingRate": "0.0000005586", + "premium": "-0.0004955309", + "time": 1762084800027 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000026202", + "premium": "-0.0005209617", + "time": 1762088400003 + }, + { + "coin": "SOL", + "fundingRate": "0.0000019234", + "premium": "-0.0004846131", + "time": 1762092000057 + }, + { + "coin": "SOL", + "fundingRate": "0.0000038244", + "premium": "-0.0004694048", + "time": 1762095600055 + }, + { + "coin": "SOL", + "fundingRate": "0.000002764", + "premium": "-0.0004778883", + "time": 1762099200038 + }, + { + "coin": "SOL", + "fundingRate": "0.0000000433", + "premium": "-0.0004996533", + "time": 1762102800043 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000102656", + "premium": "-0.0005821248", + "time": 1762106400014 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000051908", + "premium": "-0.0005415262", + "time": 1762110000050 + }, + { + "coin": "SOL", + "fundingRate": "-0.000004041", + "premium": "-0.0005323279", + "time": 1762113600024 + }, + { + "coin": "SOL", + "fundingRate": "0.000007221", + "premium": "-0.0004422316", + "time": 1762117200063 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003904409", + "time": 1762120800055 + }, + { + "coin": "SOL", + "fundingRate": "0.0000119665", + "premium": "-0.0004042681", + "time": 1762124400127 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001623774", + "time": 1762128000108 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000793626", + "time": 1762131600005 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000411281", + "time": 1762135200074 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.000161625", + "time": 1762138800048 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003972185", + "time": 1762142400069 + }, + { + "coin": "SOL", + "fundingRate": "-0.000001264", + "premium": "-0.0005101116", + "time": 1762146000062 + }, + { + "coin": "SOL", + "fundingRate": "0.0000032259", + "premium": "-0.0004741924", + "time": 1762149600081 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000029999", + "premium": "-0.0005239994", + "time": 1762153200041 + }, + { + "coin": "SOL", + "fundingRate": "0.000003157", + "premium": "-0.0004747444", + "time": 1762156800009 + }, + { + "coin": "SOL", + "fundingRate": "0.0000107686", + "premium": "-0.0004138513", + "time": 1762160400014 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003585163", + "time": 1762164000019 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003723011", + "time": 1762167600065 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.00035831", + "time": 1762171200073 + }, + { + "coin": "SOL", + "fundingRate": "0.0000102776", + "premium": "-0.0004177795", + "time": 1762174800022 + }, + { + "coin": "SOL", + "fundingRate": "0.0000112762", + "premium": "-0.0004097907", + "time": 1762178400040 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000015682", + "premium": "-0.0005125452", + "time": 1762182000059 + }, + { + "coin": "SOL", + "fundingRate": "-0.0001532012", + "premium": "-0.0017256098", + "time": 1762185600024 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000656061", + "premium": "-0.0010248491", + "time": 1762189200019 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000139199", + "premium": "-0.0006113592", + "time": 1762192800009 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000142161", + "premium": "-0.0006137291", + "time": 1762196400094 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000063414", + "premium": "-0.0005507308", + "time": 1762200000046 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000012643", + "premium": "-0.0005101146", + "time": 1762203600000 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000036975", + "premium": "-0.0005295797", + "time": 1762207200013 + }, + { + "coin": "SOL", + "fundingRate": "0.0000009352", + "premium": "-0.0004925185", + "time": 1762210800040 + }, + { + "coin": "SOL", + "fundingRate": "0.0000026791", + "premium": "-0.0004785673", + "time": 1762214400009 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000008572", + "premium": "-0.0005068576", + "time": 1762218000022 + }, + { + "coin": "SOL", + "fundingRate": "0.0000001842", + "premium": "-0.0004985261", + "time": 1762221600049 + }, + { + "coin": "SOL", + "fundingRate": "0.0000001937", + "premium": "-0.00049845", + "time": 1762225200014 + }, + { + "coin": "SOL", + "fundingRate": "-0.000002509", + "premium": "-0.0005200723", + "time": 1762228800074 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000170668", + "premium": "-0.0006365343", + "time": 1762232400042 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000401403", + "premium": "-0.0008211223", + "time": 1762236000054 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000328655", + "premium": "-0.0007629239", + "time": 1762239600052 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000158359", + "premium": "-0.000626687", + "time": 1762243200064 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000126636", + "premium": "-0.0006013091", + "time": 1762246800001 + }, + { + "coin": "SOL", + "fundingRate": "0.0000036757", + "premium": "-0.0004705941", + "time": 1762250400042 + }, + { + "coin": "SOL", + "fundingRate": "0.0000038239", + "premium": "-0.0004694087", + "time": 1762254000018 + }, + { + "coin": "SOL", + "fundingRate": "0.0000084216", + "premium": "-0.0004326272", + "time": 1762257600053 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000064814", + "premium": "-0.0005518516", + "time": 1762261200065 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000100136", + "premium": "-0.000580109", + "time": 1762264800077 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000040977", + "premium": "-0.0005327813", + "time": 1762268400003 + }, + { + "coin": "SOL", + "fundingRate": "0.0000104598", + "premium": "-0.0004163215", + "time": 1762272000000 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003398039", + "time": 1762275600006 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000093099", + "premium": "-0.0005744793", + "time": 1762279200062 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000086621", + "premium": "-0.000569297", + "time": 1762282800079 + }, + { + "coin": "SOL", + "fundingRate": "0.0000008014", + "premium": "-0.0004935887", + "time": 1762286400059 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000106569", + "premium": "-0.0005852555", + "time": 1762290000034 + } + ] + } + } +} \ No newline at end of file diff --git a/hyperliquid_wallet_data_0xb83de012_20251104_223525.json b/hyperliquid_wallet_data_0xb83de012_20251104_223525.json new file mode 100644 index 0000000..d4d86bd --- /dev/null +++ b/hyperliquid_wallet_data_0xb83de012_20251104_223525.json @@ -0,0 +1,46740 @@ +{ + "wallet_address": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "timestamp": "2025-11-04T22:35:11.489969", + "data": { + "user_state": { + "marginSummary": { + "accountValue": "39155499.1201929972", + "totalNtlPos": "114592267.6100759953", + "totalRawUsd": "153747766.7302690148", + "totalMarginUsed": "15073375.1447129995" + }, + "crossMarginSummary": { + "accountValue": "39155499.1201929972", + "totalNtlPos": "114592267.6100759953", + "totalRawUsd": "153747766.7302690148", + "totalMarginUsed": "15073375.1447129995" + }, + "crossMaintenanceMarginUsed": "3308749.3216260001", + "withdrawable": "24077732.6793200001", + "assetPositions": [ + { + "type": "oneWay", + "position": { + "coin": "BTC", + "szi": "-792.64732", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "114265.6", + "positionValue": "78541044.9968400002", + "unrealizedPnl": "12031292.5023120008", + "returnOnEquity": "1.328362813", + "liquidationPx": "143752.7629926983", + "marginUsed": "7854104.4996840004", + "maxLeverage": 40, + "cumFunding": { + "allTime": "-7200330.7281130003", + "sinceOpen": "-7200330.7340540001", + "sinceChange": "-10168.228437" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "ETH", + "szi": "-17.2661", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "3976.0", + "positionValue": "53426.49323", + "unrealizedPnl": "15223.524411", + "returnOnEquity": "2.2175557901", + "liquidationPx": "2038520.5023002117", + "marginUsed": "5342.649323", + "maxLeverage": 25, + "cumFunding": { + "allTime": "-6683390.0333519997", + "sinceOpen": "-6683390.0333519997", + "sinceChange": "4.259958" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "SOL", + "szi": "-28.29", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "199.8123", + "positionValue": "4162.0248", + "unrealizedPnl": "1490.665441", + "returnOnEquity": "2.6370902658", + "liquidationPx": "1236359.1676447594", + "marginUsed": "416.20248", + "maxLeverage": 20, + "cumFunding": { + "allTime": "-848547.376258", + "sinceOpen": "-56576.523272", + "sinceChange": "0.018536" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "DOGE", + "szi": "-109217.0", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "0.279959", + "positionValue": "16751.70346", + "unrealizedPnl": "13824.669199", + "returnOnEquity": "4.5213568507", + "liquidationPx": "306.8481603946", + "marginUsed": "1675.170346", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-1854.898752", + "sinceOpen": "-1854.898752", + "sinceChange": "66.364437" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "INJ", + "szi": "-18747.2", + "leverage": { + "type": "cross", + "value": 3 + }, + "entryPx": "13.01496", + "positionValue": "113870.4928", + "unrealizedPnl": "130123.7251", + "returnOnEquity": "1.5999197795", + "liquidationPx": "1751.3555389608", + "marginUsed": "37956.830933", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-271.90916", + "sinceOpen": "-271.90916", + "sinceChange": "259.857048" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "SUI", + "szi": "-376577.6", + "leverage": { + "type": "cross", + "value": 3 + }, + "entryPx": "3.85881", + "positionValue": "700660.28256", + "unrealizedPnl": "752483.975201", + "returnOnEquity": "1.5534947157", + "liquidationPx": "90.7272693844", + "marginUsed": "233553.42752", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-46723.502843", + "sinceOpen": "-46723.498006", + "sinceChange": "-2163.922936" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "XRP", + "szi": "-39691.0", + "leverage": { + "type": "cross", + "value": 20 + }, + "entryPx": "2.468585", + "positionValue": "82493.7744", + "unrealizedPnl": "15486.8479", + "returnOnEquity": "3.1612062746", + "liquidationPx": "883.1960041891", + "marginUsed": "4124.68872", + "maxLeverage": 20, + "cumFunding": { + "allTime": "-2651.066285", + "sinceOpen": "-121.703116", + "sinceChange": "-121.703116" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "HYPE", + "szi": "-851765.08", + "leverage": { + "type": "cross", + "value": 5 + }, + "entryPx": "43.6791", + "positionValue": "30563886.3656399995", + "unrealizedPnl": "6640481.3267029999", + "returnOnEquity": "0.8924330312", + "liquidationPx": "74.1423218806", + "marginUsed": "6112777.2731280001", + "maxLeverage": 5, + "cumFunding": { + "allTime": "-1993327.1320529999", + "sinceOpen": "-1993327.1320529999", + "sinceChange": "-2006.130349" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "FARTCOIN", + "szi": "-3325131.0", + "leverage": { + "type": "cross", + "value": 10 + }, + "entryPx": "0.80127", + "positionValue": "797698.9269", + "unrealizedPnl": "1866659.2034440001", + "returnOnEquity": "7.0060371471", + "liquidationPx": "10.3028978877", + "marginUsed": "79769.89269", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-75972.427901", + "sinceOpen": "-54302.553277", + "sinceChange": "-71.447352" + } + } + }, + { + "type": "oneWay", + "position": { + "coin": "PUMP", + "szi": "-1075266787.0", + "leverage": { + "type": "cross", + "value": 5 + }, + "entryPx": "0.005551", + "positionValue": "3718272.5494459998", + "unrealizedPnl": "2250798.281891", + "returnOnEquity": "1.8853841289", + "liquidationPx": "0.0344531291", + "marginUsed": "743654.509889", + "maxLeverage": 10, + "cumFunding": { + "allTime": "-208836.577921", + "sinceOpen": "-208836.577921", + "sinceChange": "-362.088341" + } + } + } + ], + "time": 1762292112260 + }, + "spot_state": { + "balances": [ + { + "coin": "USDC", + "token": 0, + "total": "532973.75855157", + "hold": "0.0", + "entryNtl": "0.0" + }, + { + "coin": "HYPE", + "token": 150, + "total": "146592.92595263", + "hold": "0.0", + "entryNtl": "6455277.87362085" + }, + { + "coin": "UBTC", + "token": 197, + "total": "0.0", + "hold": "0.0", + "entryNtl": "0.0" + }, + { + "coin": "LATINA", + "token": 223, + "total": "35470.3668", + "hold": "0.0", + "entryNtl": "0.0" + }, + { + "coin": "USDT0", + "token": 268, + "total": "3462.70093445", + "hold": "0.0", + "entryNtl": "3463.36604445" + }, + { + "coin": "UFART", + "token": 269, + "total": "3350048.1960629998", + "hold": "0.0", + "entryNtl": "2685712.9054581099" + }, + { + "coin": "UPUMP", + "token": 299, + "total": "358268528.5250939727", + "hold": "0.0", + "entryNtl": "2442751.2693156502" + }, + { + "coin": "LICKO", + "token": 307, + "total": "11189.06185739", + "hold": "0.0", + "entryNtl": "0.06713437" + } + ] + }, + "open_orders": [ + { + "coin": "WLFI", + "side": "B", + "limitPx": "0.10447", + "sz": "2624.0", + "oid": 194029229960, + "timestamp": 1760131688558, + "origSz": "12760.0", + "cloid": "0x00000000000000000000001261000016" + } + ], + "recent_fills": [ + { + "coin": "ETH", + "px": "3392.7", + "sz": "2.2092", + "side": "B", + "time": 1762277435122, + "startPosition": "-19.4753", + "dir": "Close Short", + "closedPnl": "1288.62636", + "hash": "0xb6ec92969496de63b866042ed61e85020bb0007c2f99fd355ab53de9539ab84e", + "oid": 222712144577, + "crossed": true, + "fee": "1.573982", + "tid": 868237201651953, + "cloid": "0x00000000000000000000000473000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3391.2", + "sz": "0.1783", + "side": "B", + "time": 1762277422578, + "startPosition": "-19.6536", + "dir": "Close Short", + "closedPnl": "104.26984", + "hash": "0x6734489ce30edbd968ae042ed61de802040000827e01faab0afcf3efa202b5c4", + "oid": 222711931161, + "crossed": true, + "fee": "0.126976", + "tid": 1083888854364193, + "cloid": "0x00000000000000000000000473000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3391.2", + "sz": "2.032", + "side": "B", + "time": 1762277422578, + "startPosition": "-21.6856", + "dir": "Close Short", + "closedPnl": "1188.3136", + "hash": "0x6734489ce30edbd968ae042ed61de802040000827e01faab0afcf3efa202b5c4", + "oid": 222711931161, + "crossed": true, + "fee": "1.447092", + "tid": 627164308501203, + "cloid": "0x00000000000000000000000473000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3387.6", + "sz": "2.2131", + "side": "B", + "time": 1762277408144, + "startPosition": "-23.8987", + "dir": "Close Short", + "closedPnl": "1302.18804", + "hash": "0xe794799882f69410e90e042ed61d220209b5007e1df9b2e28b5d24eb41fa6dfb", + "oid": 222711684240, + "crossed": true, + "fee": "1.57439", + "tid": 886821277769768, + "cloid": "0x00000000000000000000000473000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3381.5", + "sz": "2.2169", + "side": "B", + "time": 1762277398450, + "startPosition": "-26.1156", + "dir": "Close Short", + "closedPnl": "1317.94705", + "hash": "0x12958c55b152a789140f042ed61caa0203e3003b4c55c65bb65e37a870568173", + "oid": 222711504328, + "crossed": true, + "fee": "1.574253", + "tid": 28013403948832, + "cloid": "0x00000000000000000000000473000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@166", + "px": "1.01", + "sz": "103038.77", + "side": "A", + "time": 1762277186384, + "startPosition": "106501.47093445", + "dir": "Sell", + "closedPnl": "1010.59617951", + "hash": "0xcc93a216ff5aff5bce0d042ed6120f02080a00fc9a5e1e2d705c4d69be5ed946", + "oid": 174787748753, + "crossed": false, + "fee": "1.4569682", + "tid": 1029961093387360, + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.194", + "sz": "16.94", + "side": "A", + "time": 1762272367321, + "startPosition": "146609.86595263", + "dir": "Sell", + "closedPnl": "-82.0132862", + "hash": "0x47d0b75eaba18d01494a042ed5245f020687004446a4abd3eb9962b16aa566eb", + "oid": 222620728810, + "crossed": true, + "fee": "0.18590498", + "tid": 1105522265080472, + "cloid": "0x10000000000000000000000483000128", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.198", + "sz": "10.0", + "side": "A", + "time": 1762272367321, + "startPosition": "146619.86595263", + "dir": "Sell", + "closedPnl": "-48.3739824", + "hash": "0x47d0b75eaba18d01494a042ed5245f020687004446a4abd3eb9962b16aa566eb", + "oid": 222620728810, + "crossed": true, + "fee": "0.10975439", + "tid": 520516467025011, + "cloid": "0x10000000000000000000000483000128", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.193", + "sz": "15.4", + "side": "A", + "time": 1762272367014, + "startPosition": "146635.26595263", + "dir": "Sell", + "closedPnl": "-74.5729329", + "hash": "0xab0643703b3277bdac7f042ed5245c0202370055d635968f4eceeec2fa3651a8", + "oid": 222620724945, + "crossed": true, + "fee": "0.16900021", + "tid": 434586769862486, + "cloid": "0x10000000000000000000000483000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.197", + "sz": "10.0", + "side": "A", + "time": 1762272367014, + "startPosition": "146645.26595263", + "dir": "Sell", + "closedPnl": "-48.3839824", + "hash": "0xab0643703b3277bdac7f042ed5245c0202370055d635968f4eceeec2fa3651a8", + "oid": 222620724945, + "crossed": true, + "fee": "0.10975159", + "tid": 94400721768507, + "cloid": "0x10000000000000000000000483000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.207", + "sz": "0.04", + "side": "A", + "time": 1762272367014, + "startPosition": "146645.30595263", + "dir": "Sell", + "closedPnl": "-0.19313592", + "hash": "0xab0643703b3277bdac7f042ed5245c0202370055d635968f4eceeec2fa3651a8", + "oid": 222620724945, + "crossed": true, + "fee": "0.00043911", + "tid": 603011422469746, + "cloid": "0x10000000000000000000000483000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.199", + "sz": "50.98", + "side": "A", + "time": 1762272366107, + "startPosition": "146696.28595263", + "dir": "Sell", + "closedPnl": "-246.55958232", + "hash": "0xfdb8d5e77d539ba7ff32042ed524500205e500cd1856ba7aa181813a3c577592", + "oid": 222620705510, + "crossed": true, + "fee": "0.5595422", + "tid": 24827322046898, + "cloid": "0x10000000000000000000000483000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.199", + "sz": "50.98", + "side": "A", + "time": 1762272366107, + "startPosition": "146747.26595263", + "dir": "Sell", + "closedPnl": "-246.55958232", + "hash": "0x4ae55f4c63c2592c4c5f042ed524500205e40031fec577feeeae0a9f22c63316", + "oid": 222620705509, + "crossed": true, + "fee": "0.5595422", + "tid": 58898119559395, + "cloid": "0x10000000000000000000000483000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.199", + "sz": "48.66", + "side": "A", + "time": 1762272366107, + "startPosition": "146795.92595263", + "dir": "Sell", + "closedPnl": "-235.3391384", + "hash": "0x9811e8b14a3116b0998b042ed524500205e30096e53435823bda94040934f09b", + "oid": 222620705508, + "crossed": true, + "fee": "0.53407853", + "tid": 577766831539127, + "cloid": "0x10000000000000000000000483000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.204", + "sz": "2.32", + "side": "A", + "time": 1762272366107, + "startPosition": "146798.24595263", + "dir": "Sell", + "closedPnl": "-11.20884391", + "hash": "0x9811e8b14a3116b0998b042ed524500205e30096e53435823bda94040934f09b", + "oid": 222620705508, + "crossed": true, + "fee": "0.02546691", + "tid": 627301145298600, + "cloid": "0x10000000000000000000000483000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.204", + "sz": "8.66", + "side": "A", + "time": 1762272366107, + "startPosition": "146806.90595263", + "dir": "Sell", + "closedPnl": "-41.83990876", + "hash": "0xe53e721630afd434e6b8042ed524500205e200fbcba2f30689071d68efa3ae1f", + "oid": 222620705507, + "crossed": true, + "fee": "0.09506185", + "tid": 94942040485363, + "cloid": "0x10000000000000000000000483000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.206", + "sz": "40.91", + "side": "A", + "time": 1762272365901, + "startPosition": "146847.81595263", + "dir": "Sell", + "closedPnl": "-197.57068203", + "hash": "0xf59760cd5a2a9835f711042ed5244c02034e00b2f52db70899600c20192e7220", + "oid": 222620699556, + "crossed": true, + "fee": "0.44909688", + "tid": 825758822122696, + "cloid": "0x10000000000000000000000483000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.229", + "sz": "26.94", + "side": "B", + "time": 1762272365801, + "startPosition": "-851792.02", + "dir": "Close Short", + "closedPnl": "119.885694", + "hash": "0x778d6822d61434097907042ed5244b02082a0008711752db1b56137595180df4", + "oid": 222620683143, + "crossed": false, + "fee": "0.029591", + "tid": 263231313585607, + "cloid": "0x00000000000000000000000472000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.229", + "sz": "25.44", + "side": "B", + "time": 1762272365423, + "startPosition": "-851817.46", + "dir": "Close Short", + "closedPnl": "113.210544", + "hash": "0x1466733753ac25f115e0042ed52446020944001ceeaf44c3b82f1e8a12afffdb", + "oid": 222620683143, + "crossed": false, + "fee": "0.027943", + "tid": 944104266242740, + "cloid": "0x00000000000000000000000472000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.229", + "sz": "50.98", + "side": "B", + "time": 1762272364820, + "startPosition": "-851868.4399999999", + "dir": "Close Short", + "closedPnl": "226.866098", + "hash": "0x5a26d7e0467cf1c35ba0042ed5243e02062100c5e1701095fdef83330570cbad", + "oid": 222620683143, + "crossed": true, + "fee": "0.419977", + "tid": 119362351851202, + "cloid": "0x00000000000000000000000472000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.228", + "sz": "50.98", + "side": "B", + "time": 1762272364820, + "startPosition": "-851919.42", + "dir": "Close Short", + "closedPnl": "226.917078", + "hash": "0x5a26d7e0467cf1c35ba0042ed5243e02062100c5e1701095fdef83330570cbad", + "oid": 222620683143, + "crossed": true, + "fee": "0.419967", + "tid": 377772620793872, + "cloid": "0x00000000000000000000000472000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.227", + "sz": "8.66", + "side": "B", + "time": 1762272364820, + "startPosition": "-851928.08", + "dir": "Close Short", + "closedPnl": "38.555186", + "hash": "0x5a26d7e0467cf1c35ba0042ed5243e02062100c5e1701095fdef83330570cbad", + "oid": 222620683143, + "crossed": true, + "fee": "0.071338", + "tid": 357858243797070, + "cloid": "0x00000000000000000000000472000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.227", + "sz": "40.91", + "side": "B", + "time": 1762272364820, + "startPosition": "-851968.99", + "dir": "Close Short", + "closedPnl": "182.135411", + "hash": "0x5a26d7e0467cf1c35ba0042ed5243e02062100c5e1701095fdef83330570cbad", + "oid": 222620683143, + "crossed": true, + "fee": "0.337003", + "tid": 321290771416486, + "cloid": "0x00000000000000000000000472000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.227", + "sz": "50.98", + "side": "B", + "time": 1762272364820, + "startPosition": "-852019.97", + "dir": "Close Short", + "closedPnl": "226.968058", + "hash": "0x5a26d7e0467cf1c35ba0042ed5243e02062100c5e1701095fdef83330570cbad", + "oid": 222620683143, + "crossed": true, + "fee": "0.419956", + "tid": 603846731270009, + "cloid": "0x00000000000000000000000472000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.233", + "sz": "124.84", + "side": "A", + "time": 1762272363410, + "startPosition": "146972.65595263", + "dir": "Sell", + "closedPnl": "-599.53139639", + "hash": "0xc72ca7ddf537c86ec8a6042ed5242902111600c3903ae7406af55330b43ba259", + "oid": 222620653795, + "crossed": true, + "fee": "1.37139736", + "tid": 315120166432348, + "cloid": "0x10000000000000000000000483000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.233", + "sz": "10.0", + "side": "A", + "time": 1762272363410, + "startPosition": "146982.65595263", + "dir": "Sell", + "closedPnl": "-48.0239824", + "hash": "0xc72ca7ddf537c86ec8a6042ed5242902111600c3903ae7406af55330b43ba259", + "oid": 222620653795, + "crossed": true, + "fee": "0.10985239", + "tid": 902240681079600, + "cloid": "0x10000000000000000000000483000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.237", + "sz": "10.0", + "side": "A", + "time": 1762272363410, + "startPosition": "146992.65595263", + "dir": "Sell", + "closedPnl": "-47.9839824", + "hash": "0xc72ca7ddf537c86ec8a6042ed5242902111600c3903ae7406af55330b43ba259", + "oid": 222620653795, + "crossed": true, + "fee": "0.10986359", + "tid": 176581158240333, + "cloid": "0x10000000000000000000000483000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.243", + "sz": "104.31", + "side": "A", + "time": 1762272363410, + "startPosition": "147096.96595263", + "dir": "Sell", + "closedPnl": "-499.8950605", + "hash": "0xc72ca7ddf537c86ec8a6042ed5242902111600c3903ae7406af55330b43ba259", + "oid": 222620653795, + "crossed": true, + "fee": "1.14616245", + "tid": 73755302049177, + "cloid": "0x10000000000000000000000483000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.232", + "sz": "5.71", + "side": "A", + "time": 1762272362574, + "startPosition": "147102.67595263", + "dir": "Sell", + "closedPnl": "-27.42740395", + "hash": "0xf9bb048a841c2f9efb34042ed5241f0213e600701f1f4e719d83afdd43100989", + "oid": 222620636282, + "crossed": true, + "fee": "0.06272412", + "tid": 109960334288458, + "cloid": "0x10000000000000000000000483000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.234", + "sz": "249.15", + "side": "B", + "time": 1762272362434, + "startPosition": "-852269.12", + "dir": "Close Short", + "closedPnl": "1107.496665", + "hash": "0x96a45ffc95b67fc0981e042ed5241d02159a00e230b99e923a6d0b4f54ba59ab", + "oid": 222620511953, + "crossed": false, + "fee": "0.273704", + "tid": 446907302469644, + "cloid": "0x00000000000000000000000472000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.234", + "sz": "5.71", + "side": "B", + "time": 1762272361683, + "startPosition": "-852274.83", + "dir": "Close Short", + "closedPnl": "25.381521", + "hash": "0x42b9fa3a838758464433042ed52415020da700201e8a7718e682a58d428b3230", + "oid": 222620511953, + "crossed": false, + "fee": "0.006272", + "tid": 730909679334008, + "cloid": "0x00000000000000000000000472000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.242", + "sz": "62.43", + "side": "A", + "time": 1762272354901, + "startPosition": "147165.10595263", + "dir": "Sell", + "closedPnl": "-299.25185217", + "hash": "0xc6c5143626cb5739c83e042ed523c60205c6001bc1ce760b6a8dbf88e5cf3124", + "oid": 222620445545, + "crossed": false, + "fee": "0.17149146", + "tid": 316784156455888, + "cloid": "0x10000000000000000000000483000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.242", + "sz": "10.0", + "side": "A", + "time": 1762272354901, + "startPosition": "147175.10595263", + "dir": "Sell", + "closedPnl": "-47.9339824", + "hash": "0xc6c5143626cb5739c83e042ed523c60205c6001bc1ce760b6a8dbf88e5cf3124", + "oid": 222620445544, + "crossed": false, + "fee": "0.02746939", + "tid": 105182836901553, + "cloid": "0x10000000000000000000000483000118", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.242", + "sz": "10.0", + "side": "A", + "time": 1762272354901, + "startPosition": "147185.10595263", + "dir": "Sell", + "closedPnl": "-47.9339824", + "hash": "0xc6c5143626cb5739c83e042ed523c60205c6001bc1ce760b6a8dbf88e5cf3124", + "oid": 222620445543, + "crossed": false, + "fee": "0.02746939", + "tid": 1092375407528350, + "cloid": "0x10000000000000000000000483000117", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.242", + "sz": "84.88", + "side": "A", + "time": 1762272354901, + "startPosition": "147269.98595263", + "dir": "Sell", + "closedPnl": "-406.86364268", + "hash": "0xc6c5143626cb5739c83e042ed523c60205c6001bc1ce760b6a8dbf88e5cf3124", + "oid": 222620441927, + "crossed": false, + "fee": "0.23316026", + "tid": 327946254503514, + "cloid": "0x10000000000000000000000483000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.242", + "sz": "2.17", + "side": "A", + "time": 1762272353023, + "startPosition": "147272.15595263", + "dir": "Sell", + "closedPnl": "-10.40167418", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 222620441927, + "crossed": false, + "fee": "0.00596085", + "tid": 736551815566837, + "cloid": "0x10000000000000000000000483000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.242", + "sz": "6.9", + "side": "A", + "time": 1762272352003, + "startPosition": "147279.05595263", + "dir": "Sell", + "closedPnl": "-33.07444786", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 222620441927, + "crossed": false, + "fee": "0.01895388", + "tid": 195602896366022, + "cloid": "0x10000000000000000000000483000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.242", + "sz": "1.77", + "side": "A", + "time": 1762272352003, + "startPosition": "147280.82595263", + "dir": "Sell", + "closedPnl": "-8.48431488", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 222620441927, + "crossed": false, + "fee": "0.00486208", + "tid": 66235398773981, + "cloid": "0x10000000000000000000000483000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.242", + "sz": "2.98", + "side": "A", + "time": 1762272352003, + "startPosition": "147283.80595263", + "dir": "Sell", + "closedPnl": "-14.28432675", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 222620441927, + "crossed": false, + "fee": "0.00818588", + "tid": 540639016521212, + "cloid": "0x10000000000000000000000483000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.277", + "sz": "62.43", + "side": "B", + "time": 1762272350452, + "startPosition": "-852337.26", + "dir": "Close Short", + "closedPnl": "274.823103", + "hash": "0xaf65147eea0518cab0de042ed5238a02064600648508379c532dbfd1a908f2b5", + "oid": 222620296203, + "crossed": false, + "fee": "0.068657", + "tid": 548628451770123, + "cloid": "0x00000000000000000000000472000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.277", + "sz": "10.0", + "side": "B", + "time": 1762272350452, + "startPosition": "-852347.26", + "dir": "Close Short", + "closedPnl": "44.021", + "hash": "0x65f5e90b03f9c271676f042ed5238a02063d00f09efce14309be945dc2fd9c5c", + "oid": 222620296203, + "crossed": false, + "fee": "0.010997", + "tid": 1051037697338846, + "cloid": "0x00000000000000000000000472000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.277", + "sz": "10.0", + "side": "B", + "time": 1762272350452, + "startPosition": "-852357.26", + "dir": "Close Short", + "closedPnl": "44.021", + "hash": "0xe7d4980384237606e94e042ed5238a02063800e91f2694d88b9d435643274ff1", + "oid": 222620296203, + "crossed": false, + "fee": "0.010997", + "tid": 400040637474228, + "cloid": "0x00000000000000000000000472000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.277", + "sz": "98.7", + "side": "B", + "time": 1762272350298, + "startPosition": "-852455.96", + "dir": "Close Short", + "closedPnl": "434.48727", + "hash": "0xca70048c1a5c99a4cbe9042ed5238802021d0071b55fb8766e38afded950738f", + "oid": 222620296203, + "crossed": false, + "fee": "0.108545", + "tid": 517063207316968, + "cloid": "0x00000000000000000000000472000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.254", + "sz": "43.59", + "side": "A", + "time": 1762272338685, + "startPosition": "147327.39595263", + "dir": "Sell", + "closedPnl": "-208.42114932", + "hash": "0x12801f568292e69513f9042ed522ed020188003c1d960567b648caa94196c07f", + "oid": 222620233870, + "crossed": true, + "fee": "0.47910292", + "tid": 968339447618674, + "cloid": "0x10000000000000000000000483000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.256", + "sz": "10.0", + "side": "A", + "time": 1762272338685, + "startPosition": "147337.39595263", + "dir": "Sell", + "closedPnl": "-47.7939824", + "hash": "0x12801f568292e69513f9042ed522ed020188003c1d960567b648caa94196c07f", + "oid": 222620233870, + "crossed": true, + "fee": "0.10991679", + "tid": 71196541352330, + "cloid": "0x10000000000000000000000483000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.258", + "sz": "10.0", + "side": "A", + "time": 1762272338685, + "startPosition": "147347.39595263", + "dir": "Sell", + "closedPnl": "-47.7739824", + "hash": "0x12801f568292e69513f9042ed522ed020188003c1d960567b648caa94196c07f", + "oid": 222620233870, + "crossed": true, + "fee": "0.10992239", + "tid": 570049728078663, + "cloid": "0x10000000000000000000000483000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.26", + "sz": "10.0", + "side": "A", + "time": 1762272338685, + "startPosition": "147357.39595263", + "dir": "Sell", + "closedPnl": "-47.7539824", + "hash": "0x12801f568292e69513f9042ed522ed020188003c1d960567b648caa94196c07f", + "oid": 222620233870, + "crossed": true, + "fee": "0.10992799", + "tid": 987696624017641, + "cloid": "0x10000000000000000000000483000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "HYPE", + "px": "39.255", + "sz": "73.59", + "side": "B", + "time": 1762272338035, + "startPosition": "-852529.55", + "dir": "Close Short", + "closedPnl": "325.569519", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 222620184280, + "crossed": false, + "fee": "0.080885", + "tid": 1029502667977314, + "cloid": "0x00000000000000000000000472000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.267", + "sz": "55.43", + "side": "A", + "time": 1762272334235, + "startPosition": "147412.82595263", + "dir": "Sell", + "closedPnl": "-264.31231449", + "hash": "0x9cc4b669de33586c9e3e042ed522b30203f4004f7936773e408d61bc9d373257", + "oid": 222620147169, + "crossed": true, + "fee": "0.60943954", + "tid": 891073422108822, + "cloid": "0x10000000000000000000000483000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@107", + "px": "39.268", + "sz": "10.0", + "side": "A", + "time": 1762272334235, + "startPosition": "147422.82595263", + "dir": "Sell", + "closedPnl": "-47.6739824", + "hash": "0x9cc4b669de33586c9e3e042ed522b30203f4004f7936773e408d61bc9d373257", + "oid": 222620147169, + "crossed": true, + "fee": "0.10995039", + "tid": 758750936067472, + "cloid": "0x10000000000000000000000483000114", + "feeToken": "USDC", + "twapId": null + } + ], + "fills_last_7_days": [ + { + "coin": "ETH", + "px": "3592.3", + "sz": "2.78", + "side": "B", + "time": 1762185248891, + "startPosition": "-2262.0454", + "dir": "Close Short", + "closedPnl": "1440.8184", + "hash": "0xc8c5f0fa058f05b4ca3f042ec452da02102e00dfa08224866c8e9c4cc482df9f", + "oid": 221320377627, + "crossed": true, + "fee": "2.097184", + "tid": 635168025001820, + "cloid": "0x00000000000000000000000387000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "60.03", + "side": "B", + "time": 1762185248891, + "startPosition": "-241011.16", + "dir": "Close Short", + "closedPnl": "2011.143069", + "hash": "0xff8246b8e9b9583600fc042ec452da021069009e84bc7709a34af20ba8bd3221", + "oid": 221320377660, + "crossed": true, + "fee": "2.096553", + "tid": 783180297272718, + "cloid": "0x00000000000000000000000388000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.8", + "sz": "2.7809", + "side": "B", + "time": 1762185251094, + "startPosition": "-2259.2654", + "dir": "Close Short", + "closedPnl": "1439.894402", + "hash": "0xf68064bf7cc3e7dbf7fa042ec452f202094a00a517c706ae9a4910123bc7c1c6", + "oid": 221320413092, + "crossed": true, + "fee": "2.098155", + "tid": 1071568217581582, + "cloid": "0x00000000000000000000000387000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.26", + "sz": "60.04", + "side": "B", + "time": 1762185251094, + "startPosition": "-240951.13", + "dir": "Close Short", + "closedPnl": "2014.480092", + "hash": "0xa953db5a96552a57aacd042ec452f202094b0040315849294d1c86ad55590442", + "oid": 221320413093, + "crossed": true, + "fee": "2.096272", + "tid": 66588131548723, + "cloid": "0x00000000000000000000000388000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26934", + "sz": "695.0", + "side": "B", + "time": 1762185252387, + "startPosition": "-4022832.7999999998", + "dir": "Close Short", + "closedPnl": "369.69135", + "hash": "0xaebef67f9c7d21a7b038042ec45301020b720065377040795287a1d25b70fb92", + "oid": 221320437615, + "crossed": true, + "fee": "0.03931", + "tid": 271337317602256, + "cloid": "0x00000000000000000000000384000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26937", + "sz": "695.0", + "side": "B", + "time": 1762185252387, + "startPosition": "-4022137.7999999998", + "dir": "Close Short", + "closedPnl": "369.6705", + "hash": "0xaebef67f9c7d21a7b038042ec45301020b720065377040795287a1d25b70fb92", + "oid": 221320437615, + "crossed": true, + "fee": "0.039314", + "tid": 461667499342570, + "cloid": "0x00000000000000000000000384000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26937", + "sz": "695.0", + "side": "B", + "time": 1762185252387, + "startPosition": "-4021442.7999999998", + "dir": "Close Short", + "closedPnl": "369.6705", + "hash": "0xaebef67f9c7d21a7b038042ec45301020b720065377040795287a1d25b70fb92", + "oid": 221320437615, + "crossed": true, + "fee": "0.039314", + "tid": 232084898476263, + "cloid": "0x00000000000000000000000384000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.2694", + "sz": "1631.1", + "side": "B", + "time": 1762185252387, + "startPosition": "-4020747.7999999998", + "dir": "Close Short", + "closedPnl": "867.533157", + "hash": "0xaebef67f9c7d21a7b038042ec45301020b720065377040795287a1d25b70fb92", + "oid": 221320437615, + "crossed": true, + "fee": "0.092277", + "tid": 87368124684467, + "cloid": "0x00000000000000000000000384000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.26", + "sz": "60.05", + "side": "B", + "time": 1762185253308, + "startPosition": "-240891.09", + "dir": "Close Short", + "closedPnl": "2014.815615", + "hash": "0xcf93933e0cd33e28d10d042ec4530a02027b0023a7d65cfa735c3e90cbd71813", + "oid": 221320449227, + "crossed": true, + "fee": "2.096621", + "tid": 79386650060519, + "cloid": "0x00000000000000000000000388000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.2", + "sz": "2.4641", + "side": "B", + "time": 1762185254866, + "startPosition": "-2256.4845", + "dir": "Close Short", + "closedPnl": "1274.876058", + "hash": "0x7daedb923f38cd367f28042ec4531c0212b70077da3bec08217786e4fe3ca721", + "oid": 221320473780, + "crossed": true, + "fee": "1.85934", + "tid": 182804507865299, + "cloid": "0x00000000000000000000000387000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.2", + "sz": "0.3164", + "side": "B", + "time": 1762185254866, + "startPosition": "-2254.0204", + "dir": "Close Short", + "closedPnl": "163.699032", + "hash": "0x7daedb923f38cd367f28042ec4531c0212b70077da3bec08217786e4fe3ca721", + "oid": 221320473780, + "crossed": true, + "fee": "0.238746", + "tid": 1027572092276909, + "cloid": "0x00000000000000000000000387000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "60.05", + "side": "B", + "time": 1762185255239, + "startPosition": "-240831.04", + "dir": "Close Short", + "closedPnl": "2017.818115", + "hash": "0xcc7075f417050780cdea042ec4532102036300d9b208265270392146d608e16b", + "oid": 221320483393, + "crossed": true, + "fee": "2.095991", + "tid": 423085207238381, + "cloid": "0x00000000000000000000000388000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26904", + "sz": "371.7", + "side": "A", + "time": 1762185256049, + "startPosition": "4040429.2960629999", + "dir": "Sell", + "closedPnl": "-197.98742156", + "hash": "0xe43de540b4727258e5b7042ec4532c0214db00264f75912a8806909373764c43", + "oid": 221320455987, + "crossed": false, + "fee": "0.00700015", + "tid": 1092445450872416, + "cloid": "0x10000000000000000000000475000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26904", + "sz": "323.3", + "side": "A", + "time": 1762185256707, + "startPosition": "4040057.5960630002", + "dir": "Sell", + "closedPnl": "-172.2069771", + "hash": "0xee4b2a29bead5ff9efc4042ec45335020e89000f59a07ecb9213d57c7da139e4", + "oid": 221320455987, + "crossed": false, + "fee": "0.00608864", + "tid": 535789029882064, + "cloid": "0x10000000000000000000000475000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.04", + "sz": "60.13", + "side": "B", + "time": 1762185257622, + "startPosition": "-240770.99", + "dir": "Close Short", + "closedPnl": "2030.728399", + "hash": "0x2af95c7bb0765d372c73042ec453420203ad00614b797c09cec207ce6f7a3721", + "oid": 221320539360, + "crossed": true, + "fee": "2.096636", + "tid": 136915242120681, + "cloid": "0x00000000000000000000000388000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.1", + "sz": "1.3812", + "side": "B", + "time": 1762185258479, + "startPosition": "-2253.704", + "dir": "Close Short", + "closedPnl": "718.886976", + "hash": "0x4ff24490db7b3a5f516c042ec4534e0204a10076767e5931f3baefe39a7f1449", + "oid": 221320552757, + "crossed": true, + "fee": "1.041315", + "tid": 399277611881597, + "cloid": "0x00000000000000000000000387000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.1", + "sz": "0.4267", + "side": "B", + "time": 1762185258479, + "startPosition": "-2252.3228", + "dir": "Close Short", + "closedPnl": "222.088816", + "hash": "0x4ff24490db7b3a5f516c042ec4534e0204a10076767e5931f3baefe39a7f1449", + "oid": 221320552757, + "crossed": true, + "fee": "0.321698", + "tid": 550387579173262, + "cloid": "0x00000000000000000000000387000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.1", + "sz": "0.9743", + "side": "B", + "time": 1762185258479, + "startPosition": "-2251.8961", + "dir": "Close Short", + "closedPnl": "507.103664", + "hash": "0x4ff24490db7b3a5f516c042ec4534e0204a10076767e5931f3baefe39a7f1449", + "oid": 221320552757, + "crossed": true, + "fee": "0.734545", + "tid": 816020398437588, + "cloid": "0x00000000000000000000000387000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.03", + "sz": "21.06", + "side": "B", + "time": 1762185259590, + "startPosition": "-240710.86", + "dir": "Close Short", + "closedPnl": "711.455238", + "hash": "0x92ce6b3d94948c189448042ec4535e020fb300232f97aaea3697169053986603", + "oid": 221320573632, + "crossed": true, + "fee": "0.734284", + "tid": 1114546905232975, + "cloid": "0x00000000000000000000000388000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.03", + "sz": "21.19", + "side": "B", + "time": 1762185259590, + "startPosition": "-240689.8", + "dir": "Close Short", + "closedPnl": "715.846937", + "hash": "0x92ce6b3d94948c189448042ec4535e020fb300232f97aaea3697169053986603", + "oid": 221320573632, + "crossed": true, + "fee": "0.738816", + "tid": 355522624726303, + "cloid": "0x00000000000000000000000388000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.03", + "sz": "17.88", + "side": "B", + "time": 1762185259590, + "startPosition": "-240668.61", + "dir": "Close Short", + "closedPnl": "604.027524", + "hash": "0x92ce6b3d94948c189448042ec4535e020fb300232f97aaea3697169053986603", + "oid": 221320573632, + "crossed": true, + "fee": "0.623409", + "tid": 221945633493309, + "cloid": "0x00000000000000000000000388000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.1", + "sz": "0.1114", + "side": "B", + "time": 1762185260053, + "startPosition": "-2250.9218", + "dir": "Close Short", + "closedPnl": "57.981472", + "hash": "0xfba5d97c04f659dcfd1f042ec4536402040b00619ff978af9f6e84cec3fa33c7", + "oid": 221320580873, + "crossed": true, + "fee": "0.083986", + "tid": 366074430201818, + "cloid": "0x00000000000000000000000387000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.1", + "sz": "0.0544", + "side": "B", + "time": 1762185260053, + "startPosition": "-2250.8104", + "dir": "Close Short", + "closedPnl": "28.314112", + "hash": "0xfba5d97c04f659dcfd1f042ec4536402040b00619ff978af9f6e84cec3fa33c7", + "oid": 221320580873, + "crossed": true, + "fee": "0.041013", + "tid": 596881312079104, + "cloid": "0x00000000000000000000000387000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.1", + "sz": "2.6174", + "side": "B", + "time": 1762185260053, + "startPosition": "-2250.756", + "dir": "Close Short", + "closedPnl": "1362.304352", + "hash": "0xfba5d97c04f659dcfd1f042ec4536402040b00619ff978af9f6e84cec3fa33c7", + "oid": 221320580873, + "crossed": true, + "fee": "1.973312", + "tid": 7521506550629, + "cloid": "0x00000000000000000000000387000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.01", + "sz": "0.24", + "side": "B", + "time": 1762185261505, + "startPosition": "-240650.73", + "dir": "Close Short", + "closedPnl": "8.112552", + "hash": "0x7eeb93a08a7baa1a8065042ec453760206490086257ec8ec22b43ef3497f8405", + "oid": 221320600436, + "crossed": true, + "fee": "0.008366", + "tid": 981753883283588, + "cloid": "0x00000000000000000000000388000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.01", + "sz": "59.9", + "side": "B", + "time": 1762185261505, + "startPosition": "-240650.49", + "dir": "Close Short", + "closedPnl": "2024.75777", + "hash": "0x7eeb93a08a7baa1a8065042ec453760206490086257ec8ec22b43ef3497f8405", + "oid": 221320600436, + "crossed": true, + "fee": "2.088239", + "tid": 111014497049761, + "cloid": "0x00000000000000000000000388000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.3", + "sz": "2.7829", + "side": "B", + "time": 1762185262352, + "startPosition": "-2248.1386", + "dir": "Close Short", + "closedPnl": "1447.887212", + "hash": "0x133f8cda6906d01914b9042ec4538002056800c00409eeebb708382d280aaa03", + "oid": 221320614869, + "crossed": true, + "fee": "2.098203", + "tid": 185225984505230, + "cloid": "0x00000000000000000000000387000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.97", + "sz": "6.84", + "side": "B", + "time": 1762185263678, + "startPosition": "-240590.59", + "dir": "Close Short", + "closedPnl": "231.481332", + "hash": "0xbe3bb2d26dbb05cbbfb5042ec4538f020a6000b808be249d62045e252cbedfb6", + "oid": 221320639727, + "crossed": true, + "fee": "0.238399", + "tid": 571472166361268, + "cloid": "0x00000000000000000000000388000063", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.97", + "sz": "53.3", + "side": "B", + "time": 1762185263678, + "startPosition": "-240583.75", + "dir": "Close Short", + "closedPnl": "1803.79459", + "hash": "0xbe3bb2d26dbb05cbbfb5042ec4538f020a6000b808be249d62045e252cbedfb6", + "oid": 221320639727, + "crossed": true, + "fee": "1.857702", + "tid": 945393627752650, + "cloid": "0x00000000000000000000000388000063", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.5", + "sz": "0.1029", + "side": "B", + "time": 1762185263860, + "startPosition": "-2245.3557", + "dir": "Close Short", + "closedPnl": "53.619132", + "hash": "0x03e69a1fbb20dd1d0560042ec4539302033b00055623fbefa7af45727a24b707", + "oid": 221320643235, + "crossed": true, + "fee": "0.077565", + "tid": 735440986365764, + "cloid": "0x00000000000000000000000387000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.5", + "sz": "0.1029", + "side": "B", + "time": 1762185263860, + "startPosition": "-2245.2528", + "dir": "Close Short", + "closedPnl": "53.619132", + "hash": "0x03e69a1fbb20dd1d0560042ec4539302033b00055623fbefa7af45727a24b707", + "oid": 221320643235, + "crossed": true, + "fee": "0.077565", + "tid": 734463025044226, + "cloid": "0x00000000000000000000000387000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.5", + "sz": "0.4022", + "side": "B", + "time": 1762185263860, + "startPosition": "-2245.1499", + "dir": "Close Short", + "closedPnl": "209.578376", + "hash": "0x03e69a1fbb20dd1d0560042ec4539302033b00055623fbefa7af45727a24b707", + "oid": 221320643235, + "crossed": true, + "fee": "0.303176", + "tid": 1094358782954464, + "cloid": "0x00000000000000000000000387000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.5", + "sz": "0.2178", + "side": "B", + "time": 1762185263860, + "startPosition": "-2244.7477", + "dir": "Close Short", + "closedPnl": "113.491224", + "hash": "0x03e69a1fbb20dd1d0560042ec4539302033b00055623fbefa7af45727a24b707", + "oid": 221320643235, + "crossed": true, + "fee": "0.164176", + "tid": 851336805095076, + "cloid": "0x00000000000000000000000387000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.6", + "sz": "1.9575", + "side": "B", + "time": 1762185263860, + "startPosition": "-2244.5299", + "dir": "Close Short", + "closedPnl": "1019.81835", + "hash": "0x03e69a1fbb20dd1d0560042ec4539302033b00055623fbefa7af45727a24b707", + "oid": 221320643235, + "crossed": true, + "fee": "1.475594", + "tid": 1016250859634763, + "cloid": "0x00000000000000000000000387000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.82", + "sz": "60.19", + "side": "B", + "time": 1762185265805, + "startPosition": "-240530.45", + "dir": "Close Short", + "closedPnl": "2045.996537", + "hash": "0xc65a3b4d4442bd28c7d3042ec453ad02019b0032df45dbfa6a22e6a003469713", + "oid": 221320679067, + "crossed": true, + "fee": "2.095948", + "tid": 221788810175684, + "cloid": "0x00000000000000000000000388000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.6", + "sz": "2.7837", + "side": "B", + "time": 1762185266391, + "startPosition": "-2242.5724", + "dir": "Close Short", + "closedPnl": "1450.252026", + "hash": "0x2c60ec1ffa879f712dda042ec453b4020a3c0005958abe43d0299772b98b795b", + "oid": 221320693991, + "crossed": true, + "fee": "2.098397", + "tid": 813787032110668, + "cloid": "0x00000000000000000000000387000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.82", + "sz": "60.2", + "side": "B", + "time": 1762185267334, + "startPosition": "-240470.26", + "dir": "Close Short", + "closedPnl": "2046.33646", + "hash": "0xe929a656155aac8ceaa3042ec453be020dbf003bb05dcb5e8cf251a8d45e8677", + "oid": 221320712677, + "crossed": true, + "fee": "2.096296", + "tid": 563885354734772, + "cloid": "0x00000000000000000000000388000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.6", + "sz": "2.7835", + "side": "B", + "time": 1762185268232, + "startPosition": "-2239.7887", + "dir": "Close Short", + "closedPnl": "1450.14783", + "hash": "0xf1839baf9a261d4cf2fd042ec453c7020aa7009535293c1f954c47025929f737", + "oid": 221320727924, + "crossed": true, + "fee": "2.098246", + "tid": 926834617599631, + "cloid": "0x00000000000000000000000387000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.88", + "sz": "3.27", + "side": "B", + "time": 1762185269294, + "startPosition": "-240410.06", + "dir": "Close Short", + "closedPnl": "110.958621", + "hash": "0x4c03f180a96c83f74d7d042ec453d5021af50066446fa2c9efcc9cd368605de1", + "oid": 221320754385, + "crossed": true, + "fee": "0.113909", + "tid": 274369693232495, + "cloid": "0x00000000000000000000000388000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.89", + "sz": "5.97", + "side": "B", + "time": 1762185269294, + "startPosition": "-240406.79", + "dir": "Close Short", + "closedPnl": "202.516131", + "hash": "0x4c03f180a96c83f74d7d042ec453d5021af50066446fa2c9efcc9cd368605de1", + "oid": 221320754385, + "crossed": true, + "fee": "0.207976", + "tid": 981678161914964, + "cloid": "0x00000000000000000000000388000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.92", + "sz": "51.0", + "side": "B", + "time": 1762185269294, + "startPosition": "-240400.82", + "dir": "Close Short", + "closedPnl": "1728.5073", + "hash": "0x4c03f180a96c83f74d7d042ec453d5021af50066446fa2c9efcc9cd368605de1", + "oid": 221320754385, + "crossed": true, + "fee": "1.777003", + "tid": 879327684085171, + "cloid": "0x00000000000000000000000388000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.1", + "sz": "2.7829", + "side": "B", + "time": 1762185271414, + "startPosition": "-2237.0052", + "dir": "Close Short", + "closedPnl": "1448.443792", + "hash": "0x288e530f7724168e2a08042ec453f002086a00f512273560cc56fe623627f078", + "oid": 221320790995, + "crossed": true, + "fee": "2.098086", + "tid": 767327970168829, + "cloid": "0x00000000000000000000000387000084", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.89", + "sz": "2.47", + "side": "B", + "time": 1762185271786, + "startPosition": "-240349.82", + "dir": "Close Short", + "closedPnl": "83.788081", + "hash": "0x25ced285fd29a85d2748042ec453f40208b6006b982cc72fc9977dd8bc2d8247", + "oid": 221320796625, + "crossed": true, + "fee": "0.086047", + "tid": 278377810907312, + "cloid": "0x00000000000000000000000388000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.89", + "sz": "57.71", + "side": "B", + "time": 1762185271786, + "startPosition": "-240347.35", + "dir": "Close Short", + "closedPnl": "1957.655933", + "hash": "0x25ced285fd29a85d2748042ec453f40208b6006b982cc72fc9977dd8bc2d8247", + "oid": 221320796625, + "crossed": true, + "fee": "2.010437", + "tid": 509984468095497, + "cloid": "0x00000000000000000000000388000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "2.7831", + "side": "B", + "time": 1762185273466, + "startPosition": "-2234.2223", + "dir": "Close Short", + "closedPnl": "1448.826198", + "hash": "0xcb63d6ef4756b287ccdd042ec4540a02076300d4e259d1596f2c8242065a8c72", + "oid": 221320825017, + "crossed": true, + "fee": "2.098179", + "tid": 1013247897706510, + "cloid": "0x00000000000000000000000387000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.86", + "sz": "60.18", + "side": "B", + "time": 1762185273466, + "startPosition": "-240289.64", + "dir": "Close Short", + "closedPnl": "2043.249414", + "hash": "0x87bc3997ac1e1fca8935042ec4540a02078f007d47113e9c2b84e4ea6b11f9b5", + "oid": 221320825047, + "crossed": true, + "fee": "2.096105", + "tid": 669885404130846, + "cloid": "0x00000000000000000000000388000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "2.7832", + "side": "B", + "time": 1762185275465, + "startPosition": "-2231.4392", + "dir": "Close Short", + "closedPnl": "1448.878256", + "hash": "0x111230aba2af8d05128b042ec454240207de00913da2abd7b4dadbfe61a366ef", + "oid": 221320862013, + "crossed": true, + "fee": "2.098254", + "tid": 1053153027347581, + "cloid": "0x00000000000000000000000387000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.8", + "sz": "60.2", + "side": "B", + "time": 1762185275664, + "startPosition": "-240229.46", + "dir": "Close Short", + "closedPnl": "2047.54046", + "hash": "0x33396cd86932aa0534b3042ec454260207a500be0435c8d7d702182b283683ef", + "oid": 221320865770, + "crossed": true, + "fee": "2.096043", + "tid": 431535110933047, + "cloid": "0x00000000000000000000000388000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.82", + "sz": "21.88", + "side": "B", + "time": 1762185278179, + "startPosition": "-240169.26", + "dir": "Close Short", + "closedPnl": "743.751524", + "hash": "0x2875c5f33930524c29ef042ec4544602040500d8d433711ecc3e7145f8342c36", + "oid": 221320901150, + "crossed": true, + "fee": "0.761909", + "tid": 283904127206130, + "cloid": "0x00000000000000000000000388000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.82", + "sz": "0.1", + "side": "B", + "time": 1762185278179, + "startPosition": "-240147.38", + "dir": "Close Short", + "closedPnl": "3.39923", + "hash": "0x2875c5f33930524c29ef042ec4544602040500d8d433711ecc3e7145f8342c36", + "oid": 221320901150, + "crossed": true, + "fee": "0.003482", + "tid": 889056301679033, + "cloid": "0x00000000000000000000000388000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.82", + "sz": "21.25", + "side": "B", + "time": 1762185278179, + "startPosition": "-240147.28", + "dir": "Close Short", + "closedPnl": "722.336375", + "hash": "0x2875c5f33930524c29ef042ec4544602040500d8d433711ecc3e7145f8342c36", + "oid": 221320901150, + "crossed": true, + "fee": "0.739971", + "tid": 309283846077551, + "cloid": "0x00000000000000000000000388000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.82", + "sz": "16.97", + "side": "B", + "time": 1762185278179, + "startPosition": "-240126.03", + "dir": "Close Short", + "closedPnl": "576.849331", + "hash": "0x2875c5f33930524c29ef042ec4544602040500d8d433711ecc3e7145f8342c36", + "oid": 221320901150, + "crossed": true, + "fee": "0.590932", + "tid": 717935844485847, + "cloid": "0x00000000000000000000000388000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "1.7014", + "side": "B", + "time": 1762185278179, + "startPosition": "-2228.656", + "dir": "Close Short", + "closedPnl": "885.714812", + "hash": "0x8e1cb3296c52d7438f96042ec45446020407000f0755f61531e55e7c2b56b12e", + "oid": 221320901152, + "crossed": true, + "fee": "1.282685", + "tid": 668567109242121, + "cloid": "0x00000000000000000000000387000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "1.0816", + "side": "B", + "time": 1762185278179, + "startPosition": "-2226.9546", + "dir": "Close Short", + "closedPnl": "563.059328", + "hash": "0x8e1cb3296c52d7438f96042ec45446020407000f0755f61531e55e7c2b56b12e", + "oid": 221320901152, + "crossed": true, + "fee": "0.815418", + "tid": 257165023278578, + "cloid": "0x00000000000000000000000387000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.8", + "sz": "60.2", + "side": "B", + "time": 1762185280166, + "startPosition": "-240109.06", + "dir": "Close Short", + "closedPnl": "2047.54046", + "hash": "0x4aa00f319f541c034c19042ec4545e02143f00173a573ad5ee68ba845e57f5ed", + "oid": 221320930007, + "crossed": true, + "fee": "2.096043", + "tid": 308037463802675, + "cloid": "0x00000000000000000000000388000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "2.7832", + "side": "B", + "time": 1762185280370, + "startPosition": "-2225.873", + "dir": "Close Short", + "closedPnl": "1448.878256", + "hash": "0xf0993782a312b740f212042ec4546102068c00683e15d6139461e2d56216912b", + "oid": 221320933633, + "crossed": true, + "fee": "2.098254", + "tid": 830455961067508, + "cloid": "0x00000000000000000000000387000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.69", + "sz": "60.24", + "side": "B", + "time": 1762185281909, + "startPosition": "-240048.86", + "dir": "Close Short", + "closedPnl": "2055.527352", + "hash": "0x9ceaa2a530fd8e199e64042ec4547402037b008acbf0aceb40b34df7eff16804", + "oid": 221320963132, + "crossed": true, + "fee": "2.096044", + "tid": 508020907067371, + "cloid": "0x00000000000000000000000388000072", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "0.009", + "side": "B", + "time": 1762185282250, + "startPosition": "-2223.0898", + "dir": "Close Short", + "closedPnl": "4.68522", + "hash": "0xe58cc0007d6b93ffe706042ec4547902080100e6186eb2d189556b533c6f6dea", + "oid": 221320969088, + "crossed": true, + "fee": "0.006785", + "tid": 611516977420057, + "cloid": "0x00000000000000000000000387000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "2.7742", + "side": "B", + "time": 1762185282250, + "startPosition": "-2223.0808", + "dir": "Close Short", + "closedPnl": "1444.193036", + "hash": "0xe58cc0007d6b93ffe706042ec4547902080100e6186eb2d189556b533c6f6dea", + "oid": 221320969088, + "crossed": true, + "fee": "2.091469", + "tid": 940007367891636, + "cloid": "0x00000000000000000000000387000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.6", + "sz": "2.7839", + "side": "B", + "time": 1762185283677, + "startPosition": "-2220.3066", + "dir": "Close Short", + "closedPnl": "1450.356222", + "hash": "0x3a7ed2af801651463bf8042ec4548c01c500ea951b197018de477e023f1a2b30", + "oid": 221320994131, + "crossed": true, + "fee": "2.098548", + "tid": 103321503385680, + "cloid": "0x00000000000000000000000387000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.7", + "sz": "2.23", + "side": "B", + "time": 1762185283823, + "startPosition": "-239988.62", + "dir": "Close Short", + "closedPnl": "76.070429", + "hash": "0x8880e7d04fe2868989fa042ec4548e020a4000b5eae5a55b2c4993230ee66074", + "oid": 221320997101, + "crossed": true, + "fee": "0.077597", + "tid": 52648432542829, + "cloid": "0x00000000000000000000000388000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.7", + "sz": "12.0", + "side": "B", + "time": 1762185283823, + "startPosition": "-239986.39", + "dir": "Close Short", + "closedPnl": "409.3476", + "hash": "0x8880e7d04fe2868989fa042ec4548e020a4000b5eae5a55b2c4993230ee66074", + "oid": 221320997101, + "crossed": true, + "fee": "0.417563", + "tid": 571030745311753, + "cloid": "0x00000000000000000000000388000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.71", + "sz": "0.1", + "side": "B", + "time": 1762185283823, + "startPosition": "-239974.39", + "dir": "Close Short", + "closedPnl": "3.41023", + "hash": "0x8880e7d04fe2868989fa042ec4548e020a4000b5eae5a55b2c4993230ee66074", + "oid": 221320997101, + "crossed": true, + "fee": "0.003479", + "tid": 610069731662557, + "cloid": "0x00000000000000000000000388000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.71", + "sz": "45.94", + "side": "B", + "time": 1762185283823, + "startPosition": "-239974.29", + "dir": "Close Short", + "closedPnl": "1566.659662", + "hash": "0x8880e7d04fe2868989fa042ec4548e020a4000b5eae5a55b2c4993230ee66074", + "oid": 221320997101, + "crossed": true, + "fee": "1.59867", + "tid": 562779910659486, + "cloid": "0x00000000000000000000000388000073", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.8", + "sz": "2.5083", + "side": "B", + "time": 1762185285803, + "startPosition": "-2217.5227", + "dir": "Close Short", + "closedPnl": "1306.272474", + "hash": "0x8fc93b9e2fe38b649142042ec454aa0206b40083cae6aa363391e6f0eee7654f", + "oid": 221321027744, + "crossed": true, + "fee": "1.890902", + "tid": 1016179064105181, + "cloid": "0x00000000000000000000000387000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.8", + "sz": "0.2747", + "side": "B", + "time": 1762185285803, + "startPosition": "-2215.0144", + "dir": "Close Short", + "closedPnl": "143.058266", + "hash": "0x8fc93b9e2fe38b649142042ec454aa0206b40083cae6aa363391e6f0eee7654f", + "oid": 221321027744, + "crossed": true, + "fee": "0.207084", + "tid": 126109184729292, + "cloid": "0x00000000000000000000000387000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.7", + "sz": "60.25", + "side": "B", + "time": 1762185286006, + "startPosition": "-239928.35", + "dir": "Close Short", + "closedPnl": "2055.266075", + "hash": "0xf47b93cb0901eb97f5f5042ec454ad0202c700b0a4050a6a98443f1dc805c582", + "oid": 221321030398, + "crossed": true, + "fee": "2.096519", + "tid": 945290888174859, + "cloid": "0x00000000000000000000000388000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.69", + "sz": "60.25", + "side": "B", + "time": 1762185288117, + "startPosition": "-239868.1", + "dir": "Close Short", + "closedPnl": "2055.868575", + "hash": "0xccf7f4119c6f148dce71042ec454c40202ba00f73762335f70c09f645b62ee78", + "oid": 221321063651, + "crossed": true, + "fee": "2.096392", + "tid": 731872918487264, + "cloid": "0x00000000000000000000000388000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.8", + "sz": "2.7834", + "side": "B", + "time": 1762185288373, + "startPosition": "-2214.7397", + "dir": "Close Short", + "closedPnl": "1449.539052", + "hash": "0xd30f1736a5bd4967d488042ec454c8020803001c40b0683976d7c28964b12352", + "oid": 221321069686, + "crossed": true, + "fee": "2.098288", + "tid": 558305534020035, + "cloid": "0x00000000000000000000000387000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.8", + "sz": "2.7833", + "side": "B", + "time": 1762185290544, + "startPosition": "-2211.9563", + "dir": "Close Short", + "closedPnl": "1452.270274", + "hash": "0x88d6f90a4110e08a8a50042ec454e302056200efdc13ff5c2c9fa45d0014ba75", + "oid": 221321106328, + "crossed": true, + "fee": "2.097628", + "tid": 473974011937489, + "cloid": "0x00000000000000000000000387000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.59", + "sz": "10.26", + "side": "B", + "time": 1762185290544, + "startPosition": "-239807.85", + "dir": "Close Short", + "closedPnl": "351.120798", + "hash": "0xa1515cdb8dc4a7fda2cb042ec454e302056500c128c7c6cf451a082e4cc881e8", + "oid": 221321106331, + "crossed": true, + "fee": "0.35678", + "tid": 369945758178765, + "cloid": "0x00000000000000000000000388000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.59", + "sz": "10.17", + "side": "B", + "time": 1762185290544, + "startPosition": "-239797.59", + "dir": "Close Short", + "closedPnl": "348.040791", + "hash": "0xa1515cdb8dc4a7fda2cb042ec454e302056500c128c7c6cf451a082e4cc881e8", + "oid": 221321106331, + "crossed": true, + "fee": "0.35365", + "tid": 470989576675484, + "cloid": "0x00000000000000000000000388000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.59", + "sz": "39.85", + "side": "B", + "time": 1762185290544, + "startPosition": "-239787.42", + "dir": "Close Short", + "closedPnl": "1363.758655", + "hash": "0xa1515cdb8dc4a7fda2cb042ec454e302056500c128c7c6cf451a082e4cc881e8", + "oid": 221321106331, + "crossed": true, + "fee": "1.385739", + "tid": 362645962027811, + "cloid": "0x00000000000000000000000388000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.49", + "sz": "12.08", + "side": "B", + "time": 1762185292238, + "startPosition": "-239747.57", + "dir": "Close Short", + "closedPnl": "414.613384", + "hash": "0x2d4f388863b9b6dd2ec8042ec454fa020669006dfebcd5afd117e3db22bd90c7", + "oid": 221321133659, + "crossed": true, + "fee": "0.419815", + "tid": 263015962763250, + "cloid": "0x00000000000000000000000388000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.49", + "sz": "12.08", + "side": "B", + "time": 1762185292238, + "startPosition": "-239735.49", + "dir": "Close Short", + "closedPnl": "414.613384", + "hash": "0x2d4f388863b9b6dd2ec8042ec454fa020669006dfebcd5afd117e3db22bd90c7", + "oid": 221321133659, + "crossed": true, + "fee": "0.419815", + "tid": 1095686528871497, + "cloid": "0x00000000000000000000000388000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.49", + "sz": "36.15", + "side": "B", + "time": 1762185292238, + "startPosition": "-239723.41", + "dir": "Close Short", + "closedPnl": "1240.751145", + "hash": "0x2d4f388863b9b6dd2ec8042ec454fa020669006dfebcd5afd117e3db22bd90c7", + "oid": 221321133659, + "crossed": true, + "fee": "1.256317", + "tid": 1048255880202323, + "cloid": "0x00000000000000000000000388000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.8", + "sz": "2.7834", + "side": "B", + "time": 1762185292238, + "startPosition": "-2209.173", + "dir": "Close Short", + "closedPnl": "1449.539052", + "hash": "0x45c99c59b06d7e504743042ec454fa02066c003f4b609d22e99247ac6f61583a", + "oid": 221321133661, + "crossed": true, + "fee": "2.098288", + "tid": 398369277114959, + "cloid": "0x00000000000000000000000387000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.57", + "sz": "12.0", + "side": "B", + "time": 1762185293994, + "startPosition": "-239687.26", + "dir": "Close Short", + "closedPnl": "410.9076", + "hash": "0xbb468ea581b96d7ebcc0042ec4550e020fe5008b1cbc8c505f0f39f840bd4769", + "oid": 221321169254, + "crossed": true, + "fee": "0.417236", + "tid": 162062988653666, + "cloid": "0x00000000000000000000000388000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.59", + "sz": "0.1", + "side": "B", + "time": 1762185293994, + "startPosition": "-239675.26", + "dir": "Close Short", + "closedPnl": "3.42223", + "hash": "0xbb468ea581b96d7ebcc0042ec4550e020fe5008b1cbc8c505f0f39f840bd4769", + "oid": 221321169254, + "crossed": true, + "fee": "0.003477", + "tid": 161648913697426, + "cloid": "0x00000000000000000000000388000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.59", + "sz": "12.0", + "side": "B", + "time": 1762185293994, + "startPosition": "-239675.16", + "dir": "Close Short", + "closedPnl": "410.6676", + "hash": "0xbb468ea581b96d7ebcc0042ec4550e020fe5008b1cbc8c505f0f39f840bd4769", + "oid": 221321169254, + "crossed": true, + "fee": "0.417286", + "tid": 484383826512241, + "cloid": "0x00000000000000000000000388000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.6", + "sz": "0.18", + "side": "B", + "time": 1762185293994, + "startPosition": "-239663.16", + "dir": "Close Short", + "closedPnl": "6.158214", + "hash": "0xbb468ea581b96d7ebcc0042ec4550e020fe5008b1cbc8c505f0f39f840bd4769", + "oid": 221321169254, + "crossed": true, + "fee": "0.006259", + "tid": 963938796098080, + "cloid": "0x00000000000000000000000388000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.6", + "sz": "1.05", + "side": "B", + "time": 1762185293994, + "startPosition": "-239662.98", + "dir": "Close Short", + "closedPnl": "35.922915", + "hash": "0xbb468ea581b96d7ebcc0042ec4550e020fe5008b1cbc8c505f0f39f840bd4769", + "oid": 221321169254, + "crossed": true, + "fee": "0.036514", + "tid": 291613661620915, + "cloid": "0x00000000000000000000000388000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.61", + "sz": "0.1", + "side": "B", + "time": 1762185293994, + "startPosition": "-239661.93", + "dir": "Close Short", + "closedPnl": "3.42023", + "hash": "0xbb468ea581b96d7ebcc0042ec4550e020fe5008b1cbc8c505f0f39f840bd4769", + "oid": 221321169254, + "crossed": true, + "fee": "0.003477", + "tid": 2716113612438, + "cloid": "0x00000000000000000000000388000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.61", + "sz": "12.0", + "side": "B", + "time": 1762185293994, + "startPosition": "-239661.83", + "dir": "Close Short", + "closedPnl": "410.4276", + "hash": "0xbb468ea581b96d7ebcc0042ec4550e020fe5008b1cbc8c505f0f39f840bd4769", + "oid": 221321169254, + "crossed": true, + "fee": "0.417337", + "tid": 416107686894107, + "cloid": "0x00000000000000000000000388000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.64", + "sz": "22.89", + "side": "B", + "time": 1762185293994, + "startPosition": "-239649.83", + "dir": "Close Short", + "closedPnl": "782.203947", + "hash": "0xbb468ea581b96d7ebcc0042ec4550e020fe5008b1cbc8c505f0f39f840bd4769", + "oid": 221321169254, + "crossed": true, + "fee": "0.796214", + "tid": 112566546617740, + "cloid": "0x00000000000000000000000388000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.2", + "sz": "2.7839", + "side": "B", + "time": 1762185295702, + "startPosition": "-2206.3896", + "dir": "Close Short", + "closedPnl": "1448.685882", + "hash": "0x58738db677bff2e159ed042ec4552302091c009c12b311b3fc3c390936b3cccb", + "oid": 221321196221, + "crossed": true, + "fee": "2.098899", + "tid": 95841015639959, + "cloid": "0x00000000000000000000000387000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.58", + "sz": "60.28", + "side": "B", + "time": 1762185296208, + "startPosition": "-239626.94", + "dir": "Close Short", + "closedPnl": "2063.523044", + "hash": "0xbc7073bb51d7cf2dbdea042ec4552a0208ab00a0ecdaedff60391f0e10dba918", + "oid": 221321205821, + "crossed": true, + "fee": "2.096044", + "tid": 485327300276686, + "cloid": "0x00000000000000000000000388000079", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.2", + "sz": "2.7838", + "side": "B", + "time": 1762185297251, + "startPosition": "-2203.6057", + "dir": "Close Short", + "closedPnl": "1451.417644", + "hash": "0x6009df1f5ebe598b6183042ec455380203e30004f9b1785d03d28a721db23376", + "oid": 221321226154, + "crossed": true, + "fee": "2.098239", + "tid": 869948023636568, + "cloid": "0x00000000000000000000000387000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.49", + "sz": "60.33", + "side": "B", + "time": 1762185297901, + "startPosition": "-239566.66", + "dir": "Close Short", + "closedPnl": "2070.664359", + "hash": "0x30731dde3d24776531ec042ec455430203eb00c3d8279637d43bc930fc28514f", + "oid": 221321241913, + "crossed": true, + "fee": "2.096642", + "tid": 29639655882348, + "cloid": "0x00000000000000000000000388000080", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.1", + "sz": "0.3532", + "side": "B", + "time": 1762185299186, + "startPosition": "-2200.8219", + "dir": "Close Short", + "closedPnl": "184.539936", + "hash": "0x68dd529af68ecc336a57042ec4555202036600809181eb050ca5fdedb582a61e", + "oid": 221321267079, + "crossed": true, + "fee": "0.266136", + "tid": 90501566000758, + "cloid": "0x00000000000000000000000387000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.1", + "sz": "2.4314", + "side": "B", + "time": 1762185299186, + "startPosition": "-2200.4687", + "dir": "Close Short", + "closedPnl": "1270.357872", + "hash": "0x68dd529af68ecc336a57042ec4555202036600809181eb050ca5fdedb582a61e", + "oid": 221321267079, + "crossed": true, + "fee": "1.832062", + "tid": 986777215278686, + "cloid": "0x00000000000000000000000387000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.49", + "sz": "0.96", + "side": "B", + "time": 1762185299597, + "startPosition": "-239506.33", + "dir": "Close Short", + "closedPnl": "32.949408", + "hash": "0x7de98826930847447f63042ec4555602115a000c2e0b661621b23379520c212f", + "oid": 221321276435, + "crossed": true, + "fee": "0.033362", + "tid": 926646443514363, + "cloid": "0x00000000000000000000000388000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.49", + "sz": "6.75", + "side": "B", + "time": 1762185299597, + "startPosition": "-239505.37", + "dir": "Close Short", + "closedPnl": "231.675525", + "hash": "0x7de98826930847447f63042ec4555602115a000c2e0b661621b23379520c212f", + "oid": 221321276435, + "crossed": true, + "fee": "0.234582", + "tid": 681097633812212, + "cloid": "0x00000000000000000000000388000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.5", + "sz": "13.78", + "side": "B", + "time": 1762185299597, + "startPosition": "-239498.62", + "dir": "Close Short", + "closedPnl": "472.823494", + "hash": "0x7de98826930847447f63042ec4555602115a000c2e0b661621b23379520c212f", + "oid": 221321276435, + "crossed": true, + "fee": "0.478923", + "tid": 535288982514526, + "cloid": "0x00000000000000000000000388000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.51", + "sz": "0.1", + "side": "B", + "time": 1762185299597, + "startPosition": "-239484.84", + "dir": "Close Short", + "closedPnl": "3.43023", + "hash": "0x7de98826930847447f63042ec4555602115a000c2e0b661621b23379520c212f", + "oid": 221321276435, + "crossed": true, + "fee": "0.003475", + "tid": 1009111444835541, + "cloid": "0x00000000000000000000000388000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.51", + "sz": "22.73", + "side": "B", + "time": 1762185299597, + "startPosition": "-239484.74", + "dir": "Close Short", + "closedPnl": "779.691279", + "hash": "0x7de98826930847447f63042ec4555602115a000c2e0b661621b23379520c212f", + "oid": 221321276435, + "crossed": true, + "fee": "0.790028", + "tid": 372560835955072, + "cloid": "0x00000000000000000000000388000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.54", + "sz": "0.18", + "side": "B", + "time": 1762185299597, + "startPosition": "-239462.01", + "dir": "Close Short", + "closedPnl": "6.169014", + "hash": "0x7de98826930847447f63042ec4555602115a000c2e0b661621b23379520c212f", + "oid": 221321276435, + "crossed": true, + "fee": "0.006257", + "tid": 909996429734332, + "cloid": "0x00000000000000000000000388000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.55", + "sz": "15.82", + "side": "B", + "time": 1762185299597, + "startPosition": "-239461.83", + "dir": "Close Short", + "closedPnl": "542.029586", + "hash": "0x7de98826930847447f63042ec4555602115a000c2e0b661621b23379520c212f", + "oid": 221321276435, + "crossed": true, + "fee": "0.54999", + "tid": 463476326927026, + "cloid": "0x00000000000000000000000388000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.1", + "sz": "0.0055", + "side": "B", + "time": 1762185301015, + "startPosition": "-2198.0373", + "dir": "Close Short", + "closedPnl": "2.87364", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.004144", + "tid": 957078445481108, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.2", + "sz": "0.1355", + "side": "B", + "time": 1762185301015, + "startPosition": "-2198.0318", + "dir": "Close Short", + "closedPnl": "70.78249", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.102102", + "tid": 302009472220603, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.2", + "sz": "0.1355", + "side": "B", + "time": 1762185301015, + "startPosition": "-2197.8963", + "dir": "Close Short", + "closedPnl": "70.78249", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.102102", + "tid": 1097253470206592, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.2", + "sz": "0.1355", + "side": "B", + "time": 1762185301015, + "startPosition": "-2197.7608", + "dir": "Close Short", + "closedPnl": "70.78249", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.102102", + "tid": 652609469090904, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.2", + "sz": "0.1355", + "side": "B", + "time": 1762185301015, + "startPosition": "-2197.6253", + "dir": "Close Short", + "closedPnl": "70.78249", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.102102", + "tid": 46656447776236, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.2", + "sz": "0.1355", + "side": "B", + "time": 1762185301015, + "startPosition": "-2197.4898", + "dir": "Close Short", + "closedPnl": "70.78249", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.102102", + "tid": 684577280365280, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.2", + "sz": "0.1355", + "side": "B", + "time": 1762185301015, + "startPosition": "-2197.3543", + "dir": "Close Short", + "closedPnl": "70.78249", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.102102", + "tid": 171333276923678, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.2", + "sz": "0.0083", + "side": "B", + "time": 1762185301015, + "startPosition": "-2197.2188", + "dir": "Close Short", + "closedPnl": "4.335754", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.006254", + "tid": 530178516505010, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.8", + "sz": "0.1393", + "side": "B", + "time": 1762185301015, + "startPosition": "-2197.2105", + "dir": "Close Short", + "closedPnl": "72.683954", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.104983", + "tid": 426231393714017, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.9", + "sz": "0.0083", + "side": "B", + "time": 1762185301015, + "startPosition": "-2197.0712", + "dir": "Close Short", + "closedPnl": "4.329944", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "0.006255", + "tid": 714885894091585, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.3", + "sz": "1.8098", + "side": "B", + "time": 1762185301015, + "startPosition": "-2197.0629", + "dir": "Close Short", + "closedPnl": "943.412544", + "hash": "0xdb2c47d0ee29a114dca6042ec4556b020ab300b6892cbfe67ef4f323ad2d7aff", + "oid": 221321301955, + "crossed": true, + "fee": "1.364142", + "tid": 149106729717779, + "cloid": "0x00000000000000000000000387000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.56", + "sz": "0.96", + "side": "B", + "time": 1762185301732, + "startPosition": "-239446.01", + "dir": "Close Short", + "closedPnl": "32.882208", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.033376", + "tid": 944398068610710, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.57", + "sz": "0.1", + "side": "B", + "time": 1762185301732, + "startPosition": "-239445.05", + "dir": "Close Short", + "closedPnl": "3.42423", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.003476", + "tid": 147946560907192, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.58", + "sz": "3.02", + "side": "B", + "time": 1762185301732, + "startPosition": "-239444.95", + "dir": "Close Short", + "closedPnl": "103.381546", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.10501", + "tid": 1043206077801184, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.6", + "sz": "0.1", + "side": "B", + "time": 1762185301732, + "startPosition": "-239441.93", + "dir": "Close Short", + "closedPnl": "3.42123", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.003477", + "tid": 946812436777369, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.6", + "sz": "0.18", + "side": "B", + "time": 1762185301732, + "startPosition": "-239441.83", + "dir": "Close Short", + "closedPnl": "6.158214", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.006259", + "tid": 135731814389709, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.62", + "sz": "6.63", + "side": "B", + "time": 1762185301732, + "startPosition": "-239441.65", + "dir": "Close Short", + "closedPnl": "226.694949", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.230592", + "tid": 501609505101342, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.64", + "sz": "0.18", + "side": "B", + "time": 1762185301732, + "startPosition": "-239435.02", + "dir": "Close Short", + "closedPnl": "6.151014", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.006261", + "tid": 961072868561693, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.64", + "sz": "12.0", + "side": "B", + "time": 1762185301732, + "startPosition": "-239434.84", + "dir": "Close Short", + "closedPnl": "410.0676", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.417412", + "tid": 79679477226747, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.65", + "sz": "0.29", + "side": "B", + "time": 1762185301732, + "startPosition": "-239422.84", + "dir": "Close Short", + "closedPnl": "9.907067", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.010088", + "tid": 1036596202774728, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.66", + "sz": "32.75", + "side": "B", + "time": 1762185301732, + "startPosition": "-239422.55", + "dir": "Close Short", + "closedPnl": "1118.487825", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "1.139326", + "tid": 930335083651247, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.66", + "sz": "4.1", + "side": "B", + "time": 1762185301732, + "startPosition": "-239389.8", + "dir": "Close Short", + "closedPnl": "140.02443", + "hash": "0x28c928c38aa3fe722a42042ec45575020e0900a925a71d44cc91d41649a7d85c", + "oid": 221321315934, + "crossed": true, + "fee": "0.142633", + "tid": 397356204217803, + "cloid": "0x00000000000000000000000388000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.68", + "sz": "1.77", + "side": "B", + "time": 1762185303598, + "startPosition": "-239385.7", + "dir": "Close Short", + "closedPnl": "60.414171", + "hash": "0x5924358edab813ec5a9d042ec4558e020975007475bb32befcece0e199bbedd6", + "oid": 221321344433, + "crossed": true, + "fee": "0.061583", + "tid": 796021566317921, + "cloid": "0x00000000000000000000000388000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.68", + "sz": "11.2", + "side": "B", + "time": 1762185303598, + "startPosition": "-239383.93", + "dir": "Close Short", + "closedPnl": "382.28176", + "hash": "0x5924358edab813ec5a9d042ec4558e020975007475bb32befcece0e199bbedd6", + "oid": 221321344433, + "crossed": true, + "fee": "0.389679", + "tid": 4420877604716, + "cloid": "0x00000000000000000000000388000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.68", + "sz": "8.28", + "side": "B", + "time": 1762185303598, + "startPosition": "-239372.73", + "dir": "Close Short", + "closedPnl": "282.615444", + "hash": "0x5924358edab813ec5a9d042ec4558e020975007475bb32befcece0e199bbedd6", + "oid": 221321344433, + "crossed": true, + "fee": "0.288084", + "tid": 414895481736008, + "cloid": "0x00000000000000000000000388000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.68", + "sz": "0.1", + "side": "B", + "time": 1762185303598, + "startPosition": "-239364.45", + "dir": "Close Short", + "closedPnl": "3.41323", + "hash": "0x5924358edab813ec5a9d042ec4558e020975007475bb32befcece0e199bbedd6", + "oid": 221321344433, + "crossed": true, + "fee": "0.003479", + "tid": 283462411324129, + "cloid": "0x00000000000000000000000388000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.68", + "sz": "12.07", + "side": "B", + "time": 1762185303598, + "startPosition": "-239364.35", + "dir": "Close Short", + "closedPnl": "411.976861", + "hash": "0x5924358edab813ec5a9d042ec4558e020975007475bb32befcece0e199bbedd6", + "oid": 221321344433, + "crossed": true, + "fee": "0.419949", + "tid": 729151789034977, + "cloid": "0x00000000000000000000000388000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.69", + "sz": "26.83", + "side": "B", + "time": 1762185303598, + "startPosition": "-239352.28", + "dir": "Close Short", + "closedPnl": "915.501309", + "hash": "0x5924358edab813ec5a9d042ec4558e020975007475bb32befcece0e199bbedd6", + "oid": 221321344433, + "crossed": true, + "fee": "0.933547", + "tid": 140696225184430, + "cloid": "0x00000000000000000000000388000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.555", + "side": "B", + "time": 1762185303598, + "startPosition": "-2195.2531", + "dir": "Close Short", + "closedPnl": "289.6434", + "hash": "0x0bf7ac29f44956680d71042ec4558e020976000f8f4c753aafc0577cb34d3052", + "oid": 221321344434, + "crossed": true, + "fee": "0.418262", + "tid": 457316173114811, + "cloid": "0x00000000000000000000000387000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.6625", + "side": "B", + "time": 1762185303598, + "startPosition": "-2194.6981", + "dir": "Close Short", + "closedPnl": "345.7455", + "hash": "0x0bf7ac29f44956680d71042ec4558e020976000f8f4c753aafc0577cb34d3052", + "oid": 221321344434, + "crossed": true, + "fee": "0.499277", + "tid": 341448069008574, + "cloid": "0x00000000000000000000000387000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.0965", + "side": "B", + "time": 1762185303598, + "startPosition": "-2194.0356", + "dir": "Close Short", + "closedPnl": "50.36142", + "hash": "0x0bf7ac29f44956680d71042ec4558e020976000f8f4c753aafc0577cb34d3052", + "oid": 221321344434, + "crossed": true, + "fee": "0.072725", + "tid": 507674702235962, + "cloid": "0x00000000000000000000000387000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.0921", + "side": "B", + "time": 1762185303598, + "startPosition": "-2193.9391", + "dir": "Close Short", + "closedPnl": "48.065148", + "hash": "0x0bf7ac29f44956680d71042ec4558e020976000f8f4c753aafc0577cb34d3052", + "oid": 221321344434, + "crossed": true, + "fee": "0.069409", + "tid": 581755806683196, + "cloid": "0x00000000000000000000000387000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.0921", + "side": "B", + "time": 1762185303598, + "startPosition": "-2193.847", + "dir": "Close Short", + "closedPnl": "48.065148", + "hash": "0x0bf7ac29f44956680d71042ec4558e020976000f8f4c753aafc0577cb34d3052", + "oid": 221321344434, + "crossed": true, + "fee": "0.069409", + "tid": 784287611571104, + "cloid": "0x00000000000000000000000387000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "1.286", + "side": "B", + "time": 1762185303598, + "startPosition": "-2193.7549", + "dir": "Close Short", + "closedPnl": "671.13768", + "hash": "0x0bf7ac29f44956680d71042ec4558e020976000f8f4c753aafc0577cb34d3052", + "oid": 221321344434, + "crossed": true, + "fee": "0.969164", + "tid": 1115555119258527, + "cloid": "0x00000000000000000000000387000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26906", + "sz": "695.0", + "side": "A", + "time": 1762185306082, + "startPosition": "4039734.2960629999", + "dir": "Sell", + "closedPnl": "-370.18049867", + "hash": "0xefa51e4421132adaf11e042ec455a90205040029bc1649ac936dc996e01704c5", + "oid": 221320455988, + "crossed": false, + "fee": "0.01308976", + "tid": 227052230213269, + "cloid": "0x10000000000000000000000475000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26906", + "sz": "695.0", + "side": "A", + "time": 1762185306082, + "startPosition": "4039039.2960629999", + "dir": "Sell", + "closedPnl": "-370.18049867", + "hash": "0xefa51e4421132adaf11e042ec455a90205040029bc1649ac936dc996e01704c5", + "oid": 221320455989, + "crossed": false, + "fee": "0.01308976", + "tid": 686718126356841, + "cloid": "0x10000000000000000000000475000044", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26908", + "sz": "1503.3", + "side": "A", + "time": 1762185306082, + "startPosition": "4038344.2960629999", + "dir": "Sell", + "closedPnl": "-800.67834213", + "hash": "0xefa51e4421132adaf11e042ec455a90205040029bc1649ac936dc996e01704c5", + "oid": 221320454338, + "crossed": false, + "fee": "0.02831555", + "tid": 138089228767002, + "cloid": "0x10000000000000000000000475000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26908", + "sz": "127.8", + "side": "A", + "time": 1762185306184, + "startPosition": "4036840.9960630001", + "dir": "Sell", + "closedPnl": "-68.06804505", + "hash": "0x96d1558eccaa50f6984b042ec455aa021160007467ad6fc83a9a00e18bae2ae1", + "oid": 221320454338, + "crossed": false, + "fee": "0.00240718", + "tid": 388581414164037, + "cloid": "0x10000000000000000000000475000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.1", + "sz": "0.1587", + "side": "B", + "time": 1762185306975, + "startPosition": "-2192.4689", + "dir": "Close Short", + "closedPnl": "82.124076", + "hash": "0x908c4e62a6b5ae259206042ec455b3021abc004841b8ccf73454f9b565b98810", + "oid": 221321426074, + "crossed": true, + "fee": "0.119747", + "tid": 189821528382560, + "cloid": "0x00000000000000000000000387000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.1", + "sz": "0.118", + "side": "B", + "time": 1762185306975, + "startPosition": "-2192.3102", + "dir": "Close Short", + "closedPnl": "61.06264", + "hash": "0x908c4e62a6b5ae259206042ec455b3021abc004841b8ccf73454f9b565b98810", + "oid": 221321426074, + "crossed": true, + "fee": "0.089037", + "tid": 546150805694028, + "cloid": "0x00000000000000000000000387000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.1", + "sz": "2.5062", + "side": "B", + "time": 1762185306975, + "startPosition": "-2192.1922", + "dir": "Close Short", + "closedPnl": "1296.908376", + "hash": "0x908c4e62a6b5ae259206042ec455b3021abc004841b8ccf73454f9b565b98810", + "oid": 221321426074, + "crossed": true, + "fee": "1.891055", + "tid": 996205399751343, + "cloid": "0x00000000000000000000000387000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.5", + "sz": "0.8334", + "side": "B", + "time": 1762185309636, + "startPosition": "-2189.686", + "dir": "Close Short", + "closedPnl": "431.767872", + "hash": "0x4e1f6da5ad6ba3ed4f99042ec455d2020884008b486ec2bff1e818f86c6f7dd7", + "oid": 221321462265, + "crossed": true, + "fee": "0.628737", + "tid": 960210594630038, + "cloid": "0x00000000000000000000000387000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.5", + "sz": "0.585", + "side": "B", + "time": 1762185309636, + "startPosition": "-2188.8526", + "dir": "Close Short", + "closedPnl": "303.0768", + "hash": "0x4e1f6da5ad6ba3ed4f99042ec455d2020884008b486ec2bff1e818f86c6f7dd7", + "oid": 221321462265, + "crossed": true, + "fee": "0.441338", + "tid": 923515266902988, + "cloid": "0x00000000000000000000000387000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.5", + "sz": "0.1123", + "side": "B", + "time": 1762185309636, + "startPosition": "-2188.2676", + "dir": "Close Short", + "closedPnl": "58.180384", + "hash": "0x4e1f6da5ad6ba3ed4f99042ec455d2020884008b486ec2bff1e818f86c6f7dd7", + "oid": 221321462265, + "crossed": true, + "fee": "0.084721", + "tid": 528318009716620, + "cloid": "0x00000000000000000000000387000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.5", + "sz": "0.9114", + "side": "B", + "time": 1762185309636, + "startPosition": "-2188.1553", + "dir": "Close Short", + "closedPnl": "472.178112", + "hash": "0x4e1f6da5ad6ba3ed4f99042ec455d2020884008b486ec2bff1e818f86c6f7dd7", + "oid": 221321462265, + "crossed": true, + "fee": "0.687582", + "tid": 1023251712981112, + "cloid": "0x00000000000000000000000387000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.5", + "sz": "0.3388", + "side": "B", + "time": 1762185309636, + "startPosition": "-2187.2439", + "dir": "Close Short", + "closedPnl": "175.525504", + "hash": "0x4e1f6da5ad6ba3ed4f99042ec455d2020884008b486ec2bff1e818f86c6f7dd7", + "oid": 221321462265, + "crossed": true, + "fee": "0.255599", + "tid": 244733365747277, + "cloid": "0x00000000000000000000000387000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.16", + "sz": "59.91", + "side": "B", + "time": 1762185310573, + "startPosition": "-239325.45", + "dir": "Close Short", + "closedPnl": "2016.109293", + "hash": "0xcbc3aafac0626797cd3d042ec455db02094700e05b6586696f8c564d7f664182", + "oid": 221321483374, + "crossed": true, + "fee": "2.090475", + "tid": 794706857528126, + "cloid": "0x00000000000000000000000388000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.16", + "sz": "0.32", + "side": "B", + "time": 1762185310573, + "startPosition": "-239265.54", + "dir": "Close Short", + "closedPnl": "10.768736", + "hash": "0xcbc3aafac0626797cd3d042ec455db02094700e05b6586696f8c564d7f664182", + "oid": 221321483374, + "crossed": true, + "fee": "0.011165", + "tid": 44039944611388, + "cloid": "0x00000000000000000000000388000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.6", + "sz": "2.4948", + "side": "B", + "time": 1762185311877, + "startPosition": "-2186.9051", + "dir": "Close Short", + "closedPnl": "1292.256504", + "hash": "0x95583e1eb35ab17496d1042ec455ea021ac300044e5dd0463920e971725e8b5f", + "oid": 221321506637, + "crossed": true, + "fee": "1.882191", + "tid": 84249450794149, + "cloid": "0x00000000000000000000000387000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.6", + "sz": "0.2853", + "side": "B", + "time": 1762185311877, + "startPosition": "-2184.4103", + "dir": "Close Short", + "closedPnl": "147.779694", + "hash": "0x95583e1eb35ab17496d1042ec455ea021ac300044e5dd0463920e971725e8b5f", + "oid": 221321506637, + "crossed": true, + "fee": "0.215243", + "tid": 418272033367622, + "cloid": "0x00000000000000000000000387000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.05", + "sz": "6.56", + "side": "B", + "time": 1762185313048, + "startPosition": "-239265.22", + "dir": "Close Short", + "closedPnl": "221.480688", + "hash": "0x34868a5a35be15873600042ec455f8020f13003fd0b13459d84f35acf4b1ef71", + "oid": 221321527808, + "crossed": true, + "fee": "0.22875", + "tid": 766072871553890, + "cloid": "0x00000000000000000000000388000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.06", + "sz": "53.57", + "side": "B", + "time": 1762185313048, + "startPosition": "-239258.66", + "dir": "Close Short", + "closedPnl": "1808.110711", + "hash": "0x34868a5a35be15873600042ec455f8020f13003fd0b13459d84f35acf4b1ef71", + "oid": 221321527808, + "crossed": true, + "fee": "1.868125", + "tid": 556312535674792, + "cloid": "0x00000000000000000000000388000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.9", + "sz": "2.78", + "side": "B", + "time": 1762185314105, + "startPosition": "-2184.125", + "dir": "Close Short", + "closedPnl": "1436.3704", + "hash": "0xe6e67934adbb87c6e860042ec45608020643001a48bea6988aaf24876cbf61b1", + "oid": 221321547166, + "crossed": true, + "fee": "2.098118", + "tid": 1074735787970771, + "cloid": "0x00000000000000000000000387000103", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.18", + "sz": "0.1", + "side": "B", + "time": 1762185315401, + "startPosition": "-239205.09", + "dir": "Close Short", + "closedPnl": "3.36323", + "hash": "0x3c35cb8dcffa73de3daf042ec4561702157c00736afd92b0dffe76e08efe4dc8", + "oid": 221321575572, + "crossed": true, + "fee": "0.003489", + "tid": 1068812712315146, + "cloid": "0x00000000000000000000000388000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.18", + "sz": "60.0", + "side": "B", + "time": 1762185315401, + "startPosition": "-239204.99", + "dir": "Close Short", + "closedPnl": "2017.938", + "hash": "0x3c35cb8dcffa73de3daf042ec4561702157c00736afd92b0dffe76e08efe4dc8", + "oid": 221321575572, + "crossed": true, + "fee": "2.093867", + "tid": 506367972935880, + "cloid": "0x00000000000000000000000388000087", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.9", + "sz": "2.7788", + "side": "B", + "time": 1762185316004, + "startPosition": "-2181.345", + "dir": "Close Short", + "closedPnl": "1430.192784", + "hash": "0x55fed1e7ac79a8e85778042ec4561f015c00e9cd477cc7baf9c77d3a6b7d82d2", + "oid": 221321584766, + "crossed": true, + "fee": "2.09838", + "tid": 494963762201158, + "cloid": "0x00000000000000000000000387000104", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.18", + "sz": "0.1", + "side": "B", + "time": 1762185317661, + "startPosition": "-239144.99", + "dir": "Close Short", + "closedPnl": "3.36323", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.003489", + "tid": 118453040548136, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.18", + "sz": "6.69", + "side": "B", + "time": 1762185317661, + "startPosition": "-239144.89", + "dir": "Close Short", + "closedPnl": "225.000087", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.233466", + "tid": 904455902570466, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.19", + "sz": "12.0", + "side": "B", + "time": 1762185317661, + "startPosition": "-239138.2", + "dir": "Close Short", + "closedPnl": "403.4676", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.418798", + "tid": 965535231487050, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.2", + "sz": "0.1", + "side": "B", + "time": 1762185317661, + "startPosition": "-239126.2", + "dir": "Close Short", + "closedPnl": "3.36123", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.00349", + "tid": 726730755117463, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.2", + "sz": "0.1", + "side": "B", + "time": 1762185317661, + "startPosition": "-239126.1", + "dir": "Close Short", + "closedPnl": "3.36123", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.00349", + "tid": 241234482111853, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "12.0", + "side": "B", + "time": 1762185317661, + "startPosition": "-239126.0", + "dir": "Close Short", + "closedPnl": "403.2276", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.418849", + "tid": 338983309905022, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.18", + "side": "B", + "time": 1762185317661, + "startPosition": "-239114.0", + "dir": "Close Short", + "closedPnl": "6.044814", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.006283", + "tid": 95949950110882, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "12.0", + "side": "B", + "time": 1762185317661, + "startPosition": "-239113.82", + "dir": "Close Short", + "closedPnl": "402.9876", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.418899", + "tid": 359336826959159, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "0.29", + "side": "B", + "time": 1762185317661, + "startPosition": "-239101.82", + "dir": "Close Short", + "closedPnl": "9.733067", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.010124", + "tid": 907151045607280, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "12.0", + "side": "B", + "time": 1762185317661, + "startPosition": "-239101.53", + "dir": "Close Short", + "closedPnl": "402.7476", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.418949", + "tid": 228248159950036, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.26", + "sz": "4.63", + "side": "B", + "time": 1762185317661, + "startPosition": "-239089.53", + "dir": "Close Short", + "closedPnl": "155.347149", + "hash": "0x09ab46adbd4b664f0b25042ec456370211790093584e8521ad73f2007c4f4039", + "oid": 221321613473, + "crossed": true, + "fee": "0.161654", + "tid": 459123750668469, + "cloid": "0x00000000000000000000000388000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "0.768", + "side": "B", + "time": 1762185317661, + "startPosition": "-2178.5662", + "dir": "Close Short", + "closedPnl": "395.65824", + "hash": "0xed7384eb703437b0eeed042ec4563702118000d10b375682913c303e2f38119b", + "oid": 221321613479, + "crossed": true, + "fee": "0.579866", + "tid": 398884129885179, + "cloid": "0x00000000000000000000000387000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.9", + "sz": "2.0107", + "side": "B", + "time": 1762185317661, + "startPosition": "-2177.7982", + "dir": "Close Short", + "closedPnl": "1034.867076", + "hash": "0xed7384eb703437b0eeed042ec4563702118000d10b375682913c303e2f38119b", + "oid": 221321613479, + "crossed": true, + "fee": "1.518357", + "tid": 424223520477003, + "cloid": "0x00000000000000000000000387000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "0.6", + "side": "B", + "time": 1762185319640, + "startPosition": "-239084.9", + "dir": "Close Short", + "closedPnl": "20.07738", + "hash": "0xeb0f65bb44a83d73ec89042ec4565102055d00a0dfab5c458ed8110e03ac175e", + "oid": 221321649740, + "crossed": true, + "fee": "0.02096", + "tid": 574816699036574, + "cloid": "0x00000000000000000000000388000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "6.67", + "side": "B", + "time": 1762185319640, + "startPosition": "-239084.3", + "dir": "Close Short", + "closedPnl": "223.193541", + "hash": "0xeb0f65bb44a83d73ec89042ec4565102055d00a0dfab5c458ed8110e03ac175e", + "oid": 221321649740, + "crossed": true, + "fee": "0.233006", + "tid": 314883989786159, + "cloid": "0x00000000000000000000000388000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "0.18", + "side": "B", + "time": 1762185319640, + "startPosition": "-239077.63", + "dir": "Close Short", + "closedPnl": "6.023214", + "hash": "0xeb0f65bb44a83d73ec89042ec4565102055d00a0dfab5c458ed8110e03ac175e", + "oid": 221321649740, + "crossed": true, + "fee": "0.006288", + "tid": 350206215575374, + "cloid": "0x00000000000000000000000388000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "6.63", + "side": "B", + "time": 1762185319640, + "startPosition": "-239077.45", + "dir": "Close Short", + "closedPnl": "221.855049", + "hash": "0xeb0f65bb44a83d73ec89042ec4565102055d00a0dfab5c458ed8110e03ac175e", + "oid": 221321649740, + "crossed": true, + "fee": "0.231609", + "tid": 976757816756038, + "cloid": "0x00000000000000000000000388000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "0.29", + "side": "B", + "time": 1762185319640, + "startPosition": "-239070.82", + "dir": "Close Short", + "closedPnl": "9.704067", + "hash": "0xeb0f65bb44a83d73ec89042ec4565102055d00a0dfab5c458ed8110e03ac175e", + "oid": 221321649740, + "crossed": true, + "fee": "0.01013", + "tid": 988402186066742, + "cloid": "0x00000000000000000000000388000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "0.18", + "side": "B", + "time": 1762185319640, + "startPosition": "-239070.53", + "dir": "Close Short", + "closedPnl": "6.017814", + "hash": "0xeb0f65bb44a83d73ec89042ec4565102055d00a0dfab5c458ed8110e03ac175e", + "oid": 221321649740, + "crossed": true, + "fee": "0.006289", + "tid": 725404982936060, + "cloid": "0x00000000000000000000000388000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.39", + "sz": "45.49", + "side": "B", + "time": 1762185319640, + "startPosition": "-239070.35", + "dir": "Close Short", + "closedPnl": "1520.380427", + "hash": "0xeb0f65bb44a83d73ec89042ec4565102055d00a0dfab5c458ed8110e03ac175e", + "oid": 221321649740, + "crossed": true, + "fee": "1.589507", + "tid": 678066165609992, + "cloid": "0x00000000000000000000000388000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.2", + "sz": "0.0042", + "side": "B", + "time": 1762185320023, + "startPosition": "-2175.7875", + "dir": "Close Short", + "closedPnl": "2.156196", + "hash": "0xbe7e9377feaad8adbff8042ec45655020ae9005d99adf77f62473ecabdaeb298", + "oid": 221321657501, + "crossed": true, + "fee": "0.003172", + "tid": 1041108825471612, + "cloid": "0x00000000000000000000000387000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.4", + "sz": "0.0069", + "side": "B", + "time": 1762185320023, + "startPosition": "-2175.7833", + "dir": "Close Short", + "closedPnl": "3.540942", + "hash": "0xbe7e9377feaad8adbff8042ec45655020ae9005d99adf77f62473ecabdaeb298", + "oid": 221321657501, + "crossed": true, + "fee": "0.005212", + "tid": 954964964056605, + "cloid": "0x00000000000000000000000387000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.4", + "sz": "0.1181", + "side": "B", + "time": 1762185320023, + "startPosition": "-2175.7764", + "dir": "Close Short", + "closedPnl": "60.606558", + "hash": "0xbe7e9377feaad8adbff8042ec45655020ae9005d99adf77f62473ecabdaeb298", + "oid": 221321657501, + "crossed": true, + "fee": "0.089219", + "tid": 21364842270696, + "cloid": "0x00000000000000000000000387000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.4", + "sz": "2.6482", + "side": "B", + "time": 1762185320023, + "startPosition": "-2175.6583", + "dir": "Close Short", + "closedPnl": "1359.003276", + "hash": "0xbe7e9377feaad8adbff8042ec45655020ae9005d99adf77f62473ecabdaeb298", + "oid": 221321657501, + "crossed": true, + "fee": "2.000593", + "tid": 817713951801644, + "cloid": "0x00000000000000000000000387000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "131739.0", + "side": "B", + "time": 1762185320730, + "startPosition": "-1198605069.0", + "dir": "Close Short", + "closedPnl": "231.333684", + "hash": "0xba439aad53ba2026bbbd042ec4565e0217750092eebd3ef85e0c460012bdfa11", + "oid": 221321668709, + "crossed": true, + "fee": "0.104989", + "tid": 999848415660166, + "cloid": "0x00000000000000000000000385000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "60.02", + "side": "B", + "time": 1762185321716, + "startPosition": "-239024.86", + "dir": "Close Short", + "closedPnl": "2005.406246", + "hash": "0xe6a08f3890ef1e29e81a042ec4566b0204bf001e2be23cfb8a693a8b4fe2f814", + "oid": 221321683723, + "crossed": true, + "fee": "2.097338", + "tid": 406204765851637, + "cloid": "0x00000000000000000000000388000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.4", + "sz": "2.778", + "side": "B", + "time": 1762185322144, + "startPosition": "-2173.0101", + "dir": "Close Short", + "closedPnl": "1425.61404", + "hash": "0xf741a59ba2e572eff8bb042ec4566f020bcb00813de891c29b0a50ee61e94cda", + "oid": 221321693575, + "crossed": true, + "fee": "2.098651", + "tid": 837583114674371, + "cloid": "0x00000000000000000000000387000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.48", + "sz": "59.99", + "side": "B", + "time": 1762185323790, + "startPosition": "-238964.84", + "dir": "Close Short", + "closedPnl": "1999.604677", + "hash": "0x83ae1f9ea7fca0128527042ec45685020c56008442ffbee42776caf166f079fd", + "oid": 221321720471, + "crossed": true, + "fee": "2.097298", + "tid": 399519952388395, + "cloid": "0x00000000000000000000000388000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.9", + "sz": "2.7772", + "side": "B", + "time": 1762185324775, + "startPosition": "-2170.2321", + "dir": "Close Short", + "closedPnl": "1423.814896", + "hash": "0x1e48b77263fa78511fc2042ec456910208da0057fefd9723c21162c522fe523b", + "oid": 221321732467, + "crossed": true, + "fee": "2.098338", + "tid": 594810980243175, + "cloid": "0x00000000000000000000000387000108", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.43", + "sz": "60.0", + "side": "B", + "time": 1762185325747, + "startPosition": "-238904.85", + "dir": "Close Short", + "closedPnl": "2002.938", + "hash": "0xa927d168ec8aed74aaa1042ec4569e020e4a004e878e0c464cf07cbbab8ec75f", + "oid": 221321754697, + "crossed": true, + "fee": "2.097017", + "tid": 824376209395858, + "cloid": "0x00000000000000000000000388000092", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.6", + "sz": "2.7772", + "side": "B", + "time": 1762185326711, + "startPosition": "-2167.4549", + "dir": "Close Short", + "closedPnl": "1424.648056", + "hash": "0x01b6a14dc77455720330042ec456ab0205d0003362777444a57f4ca086782f5c", + "oid": 221321771708, + "crossed": true, + "fee": "2.098163", + "tid": 467133172471765, + "cloid": "0x00000000000000000000000387000109", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "59.97", + "side": "B", + "time": 1762185327727, + "startPosition": "-238844.85", + "dir": "Close Short", + "closedPnl": "1997.738631", + "hash": "0xc8828d53e378cf0ec9fc042ec456b702185400397e7bede06c4b38a6a27ca8f9", + "oid": 221321790382, + "crossed": true, + "fee": "2.096851", + "tid": 363966059431291, + "cloid": "0x00000000000000000000000388000093", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "55300.0", + "side": "B", + "time": 1762185327880, + "startPosition": "-1198473330.0", + "dir": "Close Short", + "closedPnl": "96.9962", + "hash": "0x3a77d8701559fbf73bf1042ec456ba0205d30055b05d1ac9de4083c2d45dd5e1", + "oid": 221321792117, + "crossed": true, + "fee": "0.044094", + "tid": 741183490626723, + "cloid": "0x00000000000000000000000385000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "76550.0", + "side": "B", + "time": 1762185327880, + "startPosition": "-1198418030.0", + "dir": "Close Short", + "closedPnl": "134.19215", + "hash": "0x3a77d8701559fbf73bf1042ec456ba0205d30055b05d1ac9de4083c2d45dd5e1", + "oid": 221321792117, + "crossed": true, + "fee": "0.061054", + "tid": 200978222506831, + "cloid": "0x00000000000000000000000385000074", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.6", + "sz": "2.7767", + "side": "B", + "time": 1762185329208, + "startPosition": "-2164.6777", + "dir": "Close Short", + "closedPnl": "1427.168266", + "hash": "0xa1cc61107ec59eeca346042ec456c9020af700f619c8bdbe45950c633dc978d7", + "oid": 221321823675, + "crossed": true, + "fee": "2.097202", + "tid": 637840001644232, + "cloid": "0x00000000000000000000000387000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "12.01", + "side": "B", + "time": 1762185330027, + "startPosition": "-238784.88", + "dir": "Close Short", + "closedPnl": "401.281723", + "hash": "0x8e0565dd748c00b08f7f042ec456d102188b00c30f8f1f8231ce1130338fda9b", + "oid": 221321843435, + "crossed": true, + "fee": "0.419677", + "tid": 911949229818741, + "cloid": "0x00000000000000000000000388000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "46.71", + "side": "B", + "time": 1762185330027, + "startPosition": "-238772.87", + "dir": "Close Short", + "closedPnl": "1560.688533", + "hash": "0x8e0565dd748c00b08f7f042ec456d102188b00c30f8f1f8231ce1130338fda9b", + "oid": 221321843435, + "crossed": true, + "fee": "1.632234", + "tid": 552217038014351, + "cloid": "0x00000000000000000000000388000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "1.29", + "side": "B", + "time": 1762185330027, + "startPosition": "-238726.16", + "dir": "Close Short", + "closedPnl": "43.101867", + "hash": "0x8e0565dd748c00b08f7f042ec456d102188b00c30f8f1f8231ce1130338fda9b", + "oid": 221321843435, + "crossed": true, + "fee": "0.045077", + "tid": 52569522060980, + "cloid": "0x00000000000000000000000388000094", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003793", + "sz": "131718.0", + "side": "B", + "time": 1762185330059, + "startPosition": "-1198341480.0", + "dir": "Close Short", + "closedPnl": "231.560244", + "hash": "0x80554843d674fd6581cf042ec456d202073d002971781c37241df3969578d750", + "oid": 221321845996, + "crossed": true, + "fee": "0.104917", + "tid": 508083515033958, + "cloid": "0x00000000000000000000000385000075", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.27005", + "sz": "3721.1", + "side": "B", + "time": 1762185331247, + "startPosition": "-4019116.7000000002", + "dir": "Close Short", + "closedPnl": "1976.722742", + "hash": "0x9f18477a266bdcfca092042ec456df020293005fc16efbce42e0f2cce56fb6e7", + "oid": 221321783677, + "crossed": false, + "fee": "0.028136", + "tid": 479121521149906, + "cloid": "0x00000000000000000000000384000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.7", + "sz": "0.7205", + "side": "B", + "time": 1762185331665, + "startPosition": "-2161.901", + "dir": "Close Short", + "closedPnl": "371.69154", + "hash": "0x0805ddfd47968fa0097f042ec456e402164500e2e299ae72abce8950069a698a", + "oid": 221321890849, + "crossed": true, + "fee": "0.543896", + "tid": 852501926151767, + "cloid": "0x00000000000000000000000387000111", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.7", + "sz": "2.0584", + "side": "B", + "time": 1762185331665, + "startPosition": "-2161.1805", + "dir": "Close Short", + "closedPnl": "1061.887392", + "hash": "0x0805ddfd47968fa0097f042ec456e402164500e2e299ae72abce8950069a698a", + "oid": 221321890849, + "crossed": true, + "fee": "1.553859", + "tid": 748588659507301, + "cloid": "0x00000000000000000000000387000111", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "42.48", + "side": "B", + "time": 1762185332258, + "startPosition": "-238724.87", + "dir": "Close Short", + "closedPnl": "1426.576104", + "hash": "0xc4e699816b52bfbcc660042ec456ed020ff400670655de8e68af44d42a5699a7", + "oid": 221321910197, + "crossed": true, + "fee": "1.482904", + "tid": 311683194395202, + "cloid": "0x00000000000000000000000388000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "17.59", + "side": "B", + "time": 1762185332258, + "startPosition": "-238682.39", + "dir": "Close Short", + "closedPnl": "590.712657", + "hash": "0xc4e699816b52bfbcc660042ec456ed020ff400670655de8e68af44d42a5699a7", + "oid": 221321910197, + "crossed": true, + "fee": "0.614036", + "tid": 982958097752095, + "cloid": "0x00000000000000000000000388000095", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131891.0", + "side": "B", + "time": 1762185333172, + "startPosition": "-1198209762.0", + "dir": "Close Short", + "closedPnl": "232.260051", + "hash": "0x3f74db0ead918c1b40ee042ec456fa0204b700f44894aaede33d86616c956605", + "oid": 221321910216, + "crossed": false, + "fee": "0.013996", + "tid": 742294582544918, + "cloid": "0x00000000000000000000000385000076", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.5", + "sz": "2.7414", + "side": "B", + "time": 1762185333838, + "startPosition": "-2159.1221", + "dir": "Close Short", + "closedPnl": "1417.523112", + "hash": "0xed1fed9ef956ed76ee99042ec45702020eab0084945a0c4890e898f1b85ac761", + "oid": 221321949309, + "crossed": true, + "fee": "2.068756", + "tid": 760593485247097, + "cloid": "0x00000000000000000000000387000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.5", + "sz": "0.039", + "side": "B", + "time": 1762185333838, + "startPosition": "-2156.3807", + "dir": "Close Short", + "closedPnl": "20.16612", + "hash": "0xed1fed9ef956ed76ee99042ec45702020eab0084945a0c4890e898f1b85ac761", + "oid": 221321949309, + "crossed": true, + "fee": "0.02943", + "tid": 348060755639120, + "cloid": "0x00000000000000000000000387000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.13", + "sz": "28.04", + "side": "B", + "time": 1762185334976, + "startPosition": "-238664.8", + "dir": "Close Short", + "closedPnl": "944.451692", + "hash": "0xca451a4b8a22404ccbbe042ec4570f02133f003125255f1e6e0dc59e49261a37", + "oid": 221321972174, + "crossed": true, + "fee": "0.978239", + "tid": 255421356661664, + "cloid": "0x00000000000000000000000388000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.13", + "sz": "3.01", + "side": "B", + "time": 1762185334976, + "startPosition": "-238636.76", + "dir": "Close Short", + "closedPnl": "101.383723", + "hash": "0xca451a4b8a22404ccbbe042ec4570f02133f003125255f1e6e0dc59e49261a37", + "oid": 221321972174, + "crossed": true, + "fee": "0.10501", + "tid": 346519361122253, + "cloid": "0x00000000000000000000000388000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.13", + "sz": "29.05", + "side": "B", + "time": 1762185334976, + "startPosition": "-238633.75", + "dir": "Close Short", + "closedPnl": "978.470815", + "hash": "0xca451a4b8a22404ccbbe042ec4570f02133f003125255f1e6e0dc59e49261a37", + "oid": 221321972174, + "crossed": true, + "fee": "1.013476", + "tid": 476227284747882, + "cloid": "0x00000000000000000000000388000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131992.0", + "side": "B", + "time": 1762185334976, + "startPosition": "-1198077871.0", + "dir": "Close Short", + "closedPnl": "232.569904", + "hash": "0xe4c9ae4821456430e643042ec4570f021381002dbc4883028892599ae0493e1b", + "oid": 221321972210, + "crossed": true, + "fee": "0.105024", + "tid": 991763890562400, + "cloid": "0x00000000000000000000000385000077", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.9", + "sz": "0.1282", + "side": "B", + "time": 1762185335910, + "startPosition": "-2156.3417", + "dir": "Close Short", + "closedPnl": "66.366576", + "hash": "0x36bb428af8931eac3834042ec4571a020447007093963d7eda83edddb796f896", + "oid": 221321987650, + "crossed": true, + "fee": "0.096728", + "tid": 262131093332266, + "cloid": "0x00000000000000000000000387000113", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.9", + "sz": "0.8386", + "side": "B", + "time": 1762185335910, + "startPosition": "-2156.2135", + "dir": "Close Short", + "closedPnl": "434.126448", + "hash": "0x36bb428af8931eac3834042ec4571a020447007093963d7eda83edddb796f896", + "oid": 221321987650, + "crossed": true, + "fee": "0.632731", + "tid": 44565703373005, + "cloid": "0x00000000000000000000000387000113", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.9", + "sz": "1.8145", + "side": "B", + "time": 1762185335910, + "startPosition": "-2155.3749", + "dir": "Close Short", + "closedPnl": "939.33036", + "hash": "0x36bb428af8931eac3834042ec4571a020447007093963d7eda83edddb796f896", + "oid": 221321987650, + "crossed": true, + "fee": "1.369056", + "tid": 503469850657291, + "cloid": "0x00000000000000000000000387000113", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132031.0", + "side": "B", + "time": 1762185337127, + "startPosition": "-1197945879.0", + "dir": "Close Short", + "closedPnl": "232.770653", + "hash": "0xcb2ece3183c76fe6cca8042ec4572a021c2200171eca8eb86ef7798442cb49d1", + "oid": 221322013933, + "crossed": true, + "fee": "0.105028", + "tid": 671240146815142, + "cloid": "0x00000000000000000000000385000078", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.11", + "sz": "60.09", + "side": "B", + "time": 1762185337127, + "startPosition": "-238604.7", + "dir": "Close Short", + "closedPnl": "2025.171207", + "hash": "0x7e0244cc9d58b2627f7c042ec4572a021c2300b2385bd13421caf01f5c5c8c4d", + "oid": 221322013934, + "crossed": true, + "fee": "2.096125", + "tid": 85863780832041, + "cloid": "0x00000000000000000000000388000097", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.9", + "sz": "0.2784", + "side": "B", + "time": 1762185338038, + "startPosition": "-2153.5604", + "dir": "Close Short", + "closedPnl": "144.400512", + "hash": "0xfe6ff3fa63e7f336ffe9042ec45736020a3800dffeeb1209a2389f4d22ebcd21", + "oid": 221322038836, + "crossed": true, + "fee": "0.209996", + "tid": 849670158135664, + "cloid": "0x00000000000000000000000387000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.9", + "sz": "0.1007", + "side": "B", + "time": 1762185338038, + "startPosition": "-2153.282", + "dir": "Close Short", + "closedPnl": "52.231076", + "hash": "0xfe6ff3fa63e7f336ffe9042ec45736020a3800dffeeb1209a2389f4d22ebcd21", + "oid": 221322038836, + "crossed": true, + "fee": "0.075957", + "tid": 257814166923871, + "cloid": "0x00000000000000000000000387000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.9", + "sz": "0.4676", + "side": "B", + "time": 1762185338038, + "startPosition": "-2153.1813", + "dir": "Close Short", + "closedPnl": "242.534768", + "hash": "0xfe6ff3fa63e7f336ffe9042ec45736020a3800dffeeb1209a2389f4d22ebcd21", + "oid": 221322038836, + "crossed": true, + "fee": "0.35271", + "tid": 468949074782597, + "cloid": "0x00000000000000000000000387000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.9", + "sz": "1.9343", + "side": "B", + "time": 1762185338038, + "startPosition": "-2152.7137", + "dir": "Close Short", + "closedPnl": "1003.282724", + "hash": "0xfe6ff3fa63e7f336ffe9042ec45736020a3800dffeeb1209a2389f4d22ebcd21", + "oid": 221322038836, + "crossed": true, + "fee": "1.45904", + "tid": 244543557239728, + "cloid": "0x00000000000000000000000387000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.0", + "sz": "60.16", + "side": "B", + "time": 1762185339666, + "startPosition": "-238544.61", + "dir": "Close Short", + "closedPnl": "2034.147968", + "hash": "0x5786b75d8f83c7995900042ec4574c02041400432a86e66bfb4f62b04e87a183", + "oid": 221322076209, + "crossed": true, + "fee": "2.097177", + "tid": 917034231419788, + "cloid": "0x00000000000000000000000388000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.9", + "sz": "0.1268", + "side": "B", + "time": 1762185340068, + "startPosition": "-2150.7794", + "dir": "Close Short", + "closedPnl": "65.895424", + "hash": "0x57fe7c481b9f47eb5978042ec457520202df002db69266bdfbc7279ada9321d5", + "oid": 221322086172, + "crossed": true, + "fee": "0.095618", + "tid": 527155938082341, + "cloid": "0x00000000000000000000000387000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.9", + "sz": "2.6555", + "side": "B", + "time": 1762185340068, + "startPosition": "-2150.6526", + "dir": "Close Short", + "closedPnl": "1380.01024", + "hash": "0x57fe7c481b9f47eb5978042ec457520202df002db69266bdfbc7279ada9321d5", + "oid": 221322086172, + "crossed": true, + "fee": "2.002483", + "tid": 121064461805030, + "cloid": "0x00000000000000000000000387000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.89", + "sz": "37.71", + "side": "B", + "time": 1762185341726, + "startPosition": "-238484.45", + "dir": "Close Short", + "closedPnl": "1279.209933", + "hash": "0xe238d9d1a78dedd6e3b2042ec4576602039200b742810ca8860185246681c7c1", + "oid": 221322122106, + "crossed": true, + "fee": "1.313699", + "tid": 87535576009505, + "cloid": "0x00000000000000000000000388000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.89", + "sz": "9.09", + "side": "B", + "time": 1762185341726, + "startPosition": "-238446.74", + "dir": "Close Short", + "closedPnl": "308.353707", + "hash": "0xe238d9d1a78dedd6e3b2042ec4576602039200b742810ca8860185246681c7c1", + "oid": 221322122106, + "crossed": true, + "fee": "0.316667", + "tid": 549982346310941, + "cloid": "0x00000000000000000000000388000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.89", + "sz": "13.39", + "side": "B", + "time": 1762185341726, + "startPosition": "-238437.65", + "dir": "Close Short", + "closedPnl": "454.219597", + "hash": "0xe238d9d1a78dedd6e3b2042ec4576602039200b742810ca8860185246681c7c1", + "oid": 221322122106, + "crossed": true, + "fee": "0.466466", + "tid": 419345613319779, + "cloid": "0x00000000000000000000000388000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.5", + "sz": "2.2304", + "side": "B", + "time": 1762185342538, + "startPosition": "-2147.9971", + "dir": "Close Short", + "closedPnl": "1159.986432", + "hash": "0x63d9b9c2e5512bb06553042ec457700208c500a880544a8207a26515a455059b", + "oid": 221322137923, + "crossed": true, + "fee": "1.681732", + "tid": 407231881847619, + "cloid": "0x00000000000000000000000387000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.5", + "sz": "0.5525", + "side": "B", + "time": 1762185342538, + "startPosition": "-2145.7667", + "dir": "Close Short", + "closedPnl": "287.3442", + "hash": "0x63d9b9c2e5512bb06553042ec457700208c500a880544a8207a26515a455059b", + "oid": 221322137923, + "crossed": true, + "fee": "0.416587", + "tid": 389690791138817, + "cloid": "0x00000000000000000000000387000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.97", + "sz": "0.18", + "side": "B", + "time": 1762185343613, + "startPosition": "-238424.26", + "dir": "Close Short", + "closedPnl": "6.091614", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.006273", + "tid": 596256458177221, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.97", + "sz": "12.0", + "side": "B", + "time": 1762185343613, + "startPosition": "-238424.08", + "dir": "Close Short", + "closedPnl": "406.1076", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.418244", + "tid": 665766225448251, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.0", + "sz": "0.1", + "side": "B", + "time": 1762185343613, + "startPosition": "-238412.08", + "dir": "Close Short", + "closedPnl": "3.38123", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.003485", + "tid": 443048583057923, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.01", + "sz": "12.0", + "side": "B", + "time": 1762185343613, + "startPosition": "-238411.98", + "dir": "Close Short", + "closedPnl": "405.6276", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.418345", + "tid": 31734835237126, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.02", + "sz": "0.36", + "side": "B", + "time": 1762185343613, + "startPosition": "-238399.98", + "dir": "Close Short", + "closedPnl": "12.165228", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.012551", + "tid": 677973961156505, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.04", + "sz": "12.0", + "side": "B", + "time": 1762185343613, + "startPosition": "-238399.62", + "dir": "Close Short", + "closedPnl": "405.2676", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.41842", + "tid": 933733155268351, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.05", + "sz": "22.73", + "side": "B", + "time": 1762185343613, + "startPosition": "-238387.62", + "dir": "Close Short", + "closedPnl": "767.417079", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.792606", + "tid": 644875581642503, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.07", + "sz": "0.1", + "side": "B", + "time": 1762185343613, + "startPosition": "-238364.89", + "dir": "Close Short", + "closedPnl": "3.37423", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.003487", + "tid": 447208253228579, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.07", + "sz": "0.07", + "side": "B", + "time": 1762185343613, + "startPosition": "-238364.79", + "dir": "Close Short", + "closedPnl": "2.361961", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.002441", + "tid": 28050608409039, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.09", + "sz": "0.62", + "side": "B", + "time": 1762185343613, + "startPosition": "-238364.72", + "dir": "Close Short", + "closedPnl": "20.907826", + "hash": "0xd01fdf6641efc40dd199042ec4577d020d75004bdce2e2df73e88ab900e39df8", + "oid": 221322165539, + "crossed": true, + "fee": "0.021624", + "tid": 145412689727316, + "cloid": "0x00000000000000000000000388000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.9", + "sz": "2.7807", + "side": "B", + "time": 1762185344797, + "startPosition": "-2145.2142", + "dir": "Close Short", + "closedPnl": "1439.512776", + "hash": "0x37e3af4de7a6c009395d042ec4578b02036b003382a9dedbdbac5aa0a6aa99f3", + "oid": 221322185849, + "crossed": true, + "fee": "2.098063", + "tid": 689288435326707, + "cloid": "0x00000000000000000000000387000117", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003785", + "sz": "132135.0", + "side": "B", + "time": 1762185344903, + "startPosition": "-1197813848.0", + "dir": "Close Short", + "closedPnl": "233.35041", + "hash": "0x6812b46aedf56cce698c042ec4578c020653005088f88ba00bdb5fbdacf946b9", + "oid": 221322187364, + "crossed": true, + "fee": "0.105027", + "tid": 1068649279064543, + "cloid": "0x00000000000000000000000385000081", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.08", + "sz": "22.34", + "side": "B", + "time": 1762185346356, + "startPosition": "-238364.1", + "dir": "Close Short", + "closedPnl": "753.579582", + "hash": "0x73ec16e461525cd67565042ec4579f020b5a00c9fc557ba817b4c237205636c1", + "oid": 221322208702, + "crossed": true, + "fee": "0.779147", + "tid": 701342428738818, + "cloid": "0x00000000000000000000000388000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.08", + "sz": "3.01", + "side": "B", + "time": 1762185346356, + "startPosition": "-238341.76", + "dir": "Close Short", + "closedPnl": "101.534223", + "hash": "0x73ec16e461525cd67565042ec4579f020b5a00c9fc557ba817b4c237205636c1", + "oid": 221322208702, + "crossed": true, + "fee": "0.104979", + "tid": 898024051447645, + "cloid": "0x00000000000000000000000388000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.09", + "sz": "34.78", + "side": "B", + "time": 1762185346356, + "startPosition": "-238338.75", + "dir": "Close Short", + "closedPnl": "1172.861594", + "hash": "0x73ec16e461525cd67565042ec4579f020b5a00c9fc557ba817b4c237205636c1", + "oid": 221322208702, + "crossed": true, + "fee": "1.213088", + "tid": 348229849624242, + "cloid": "0x00000000000000000000000388000101", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "97675.0", + "side": "B", + "time": 1762185346772, + "startPosition": "-1197681713.0", + "dir": "Close Short", + "closedPnl": "172.10335", + "hash": "0x185998606f83c1ab19d3042ec457a402065c00460a86e07dbc2243b32e879b95", + "oid": 221322218147, + "crossed": true, + "fee": "0.077719", + "tid": 963080058551356, + "cloid": "0x00000000000000000000000385000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "34351.0", + "side": "B", + "time": 1762185346772, + "startPosition": "-1197584038.0", + "dir": "Close Short", + "closedPnl": "60.492111", + "hash": "0x185998606f83c1ab19d3042ec457a402065c00460a86e07dbc2243b32e879b95", + "oid": 221322218147, + "crossed": true, + "fee": "0.027339", + "tid": 348819397269963, + "cloid": "0x00000000000000000000000385000082", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.9", + "sz": "2.781", + "side": "B", + "time": 1762185347266, + "startPosition": "-2142.4335", + "dir": "Close Short", + "closedPnl": "1439.66808", + "hash": "0x62ee8d8a0aa13bc46468042ec457aa020640006fa5a45a9606b738dcc9a515af", + "oid": 221322224025, + "crossed": true, + "fee": "2.098289", + "tid": 1057399248820445, + "cloid": "0x00000000000000000000000387000118", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131961.0", + "side": "B", + "time": 1762185348726, + "startPosition": "-1197549687.0", + "dir": "Close Short", + "closedPnl": "232.383321", + "hash": "0xc5d791a47b4761f9c751042ec457b9020d4f008a164a80cb69a03cf73a4b3be4", + "oid": 221322258026, + "crossed": true, + "fee": "0.105027", + "tid": 1082277849032393, + "cloid": "0x00000000000000000000000385000083", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "0.31", + "side": "B", + "time": 1762185348726, + "startPosition": "-238303.97", + "dir": "Close Short", + "closedPnl": "10.416713", + "hash": "0x1c890716acec4a451e02042ec457b9020d7900fc47ef6917c051b2696be0242f", + "oid": 221322258047, + "crossed": true, + "fee": "0.01082", + "tid": 267802935822068, + "cloid": "0x00000000000000000000000388000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "0.11", + "side": "B", + "time": 1762185348726, + "startPosition": "-238303.66", + "dir": "Close Short", + "closedPnl": "3.695153", + "hash": "0x1c890716acec4a451e02042ec457b9020d7900fc47ef6917c051b2696be0242f", + "oid": 221322258047, + "crossed": true, + "fee": "0.003839", + "tid": 690783221038441, + "cloid": "0x00000000000000000000000388000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "0.18", + "side": "B", + "time": 1762185348726, + "startPosition": "-238303.55", + "dir": "Close Short", + "closedPnl": "6.046614", + "hash": "0x1c890716acec4a451e02042ec457b9020d7900fc47ef6917c051b2696be0242f", + "oid": 221322258047, + "crossed": true, + "fee": "0.006283", + "tid": 662163460970209, + "cloid": "0x00000000000000000000000388000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "59.47", + "side": "B", + "time": 1762185348726, + "startPosition": "-238303.37", + "dir": "Close Short", + "closedPnl": "1997.734081", + "hash": "0x1c890716acec4a451e02042ec457b9020d7900fc47ef6917c051b2696be0242f", + "oid": 221322258047, + "crossed": true, + "fee": "2.075871", + "tid": 1108232079482369, + "cloid": "0x00000000000000000000000388000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26975", + "sz": "3333.3", + "side": "A", + "time": 1762185350384, + "startPosition": "4036713.1960629998", + "dir": "Sell", + "closedPnl": "-1773.12830533", + "hash": "0x2cf5da6447c7e1d32e6f042ec457ce02102e0049e2cb00a5d0be85b706cbbbbd", + "oid": 221321910397, + "crossed": false, + "fee": "0.06294103", + "tid": 305917406927982, + "cloid": "0x10000000000000000000000475000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.0", + "sz": "2.7801", + "side": "B", + "time": 1762185350774, + "startPosition": "-2139.6525", + "dir": "Close Short", + "closedPnl": "1430.583858", + "hash": "0xcfc7ca0b3aac0879d141042ec457d2020a7800f0d5af274b7390755df9afe264", + "oid": 221322303145, + "crossed": true, + "fee": "2.09942", + "tid": 194398795317329, + "cloid": "0x00000000000000000000000387000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "59.98", + "side": "B", + "time": 1762185351471, + "startPosition": "-238243.9", + "dir": "Close Short", + "closedPnl": "1994.472954", + "hash": "0x17757426fc815bc318ef042ec457da02081e000c97847a95bb3e1f79bb8535ad", + "oid": 221322313590, + "crossed": true, + "fee": "2.097956", + "tid": 504332136641441, + "cloid": "0x00000000000000000000000388000103", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26975", + "sz": "387.8", + "side": "A", + "time": 1762185352103, + "startPosition": "4033379.896063", + "dir": "Sell", + "closedPnl": "-206.28780992", + "hash": "0x8c72021b2296312c8deb042ec457e10207c40000bd994ffe303aad6de19a0b17", + "oid": 221321910397, + "crossed": false, + "fee": "0.00732263", + "tid": 1031239255083424, + "cloid": "0x10000000000000000000000475000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.5", + "sz": "0.2027", + "side": "B", + "time": 1762185352626, + "startPosition": "-2136.8724", + "dir": "Close Short", + "closedPnl": "104.406716", + "hash": "0x3987112e4e4e121b3b00042ec457e80206d40013e94130eddd4fbc810d41ec05", + "oid": 221322335797, + "crossed": true, + "fee": "0.153049", + "tid": 6962165113714, + "cloid": "0x00000000000000000000000387000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.6", + "sz": "0.2027", + "side": "B", + "time": 1762185352626, + "startPosition": "-2136.6697", + "dir": "Close Short", + "closedPnl": "104.386446", + "hash": "0x3987112e4e4e121b3b00042ec457e80206d40013e94130eddd4fbc810d41ec05", + "oid": 221322335797, + "crossed": true, + "fee": "0.153053", + "tid": 792379671024614, + "cloid": "0x00000000000000000000000387000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.9", + "sz": "0.2027", + "side": "B", + "time": 1762185352626, + "startPosition": "-2136.467", + "dir": "Close Short", + "closedPnl": "104.325636", + "hash": "0x3987112e4e4e121b3b00042ec457e80206d40013e94130eddd4fbc810d41ec05", + "oid": 221322335797, + "crossed": true, + "fee": "0.153066", + "tid": 1030306714532152, + "cloid": "0x00000000000000000000000387000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.9", + "sz": "0.6396", + "side": "B", + "time": 1762185352626, + "startPosition": "-2136.2643", + "dir": "Close Short", + "closedPnl": "329.189328", + "hash": "0x3987112e4e4e121b3b00042ec457e80206d40013e94130eddd4fbc810d41ec05", + "oid": 221322335797, + "crossed": true, + "fee": "0.482986", + "tid": 759043551282763, + "cloid": "0x00000000000000000000000387000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.9", + "sz": "0.7638", + "side": "B", + "time": 1762185352626, + "startPosition": "-2135.6247", + "dir": "Close Short", + "closedPnl": "393.112584", + "hash": "0x3987112e4e4e121b3b00042ec457e80206d40013e94130eddd4fbc810d41ec05", + "oid": 221322335797, + "crossed": true, + "fee": "0.576775", + "tid": 506086478728135, + "cloid": "0x00000000000000000000000387000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.0", + "sz": "0.5606", + "side": "B", + "time": 1762185352626, + "startPosition": "-2134.8609", + "dir": "Close Short", + "closedPnl": "288.473548", + "hash": "0x3987112e4e4e121b3b00042ec457e80206d40013e94130eddd4fbc810d41ec05", + "oid": 221322335797, + "crossed": true, + "fee": "0.423342", + "tid": 546713594025580, + "cloid": "0x00000000000000000000000387000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.0", + "sz": "0.2078", + "side": "B", + "time": 1762185352626, + "startPosition": "-2134.3003", + "dir": "Close Short", + "closedPnl": "106.929724", + "hash": "0x3987112e4e4e121b3b00042ec457e80206d40013e94130eddd4fbc810d41ec05", + "oid": 221322335797, + "crossed": true, + "fee": "0.156922", + "tid": 302248247825255, + "cloid": "0x00000000000000000000000387000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "57.39", + "side": "B", + "time": 1762185353114, + "startPosition": "-238183.92", + "dir": "Close Short", + "closedPnl": "1908.349497", + "hash": "0x9794393510031bb7990d042ec457ed020c77001aab063a893b5ce487cf06f5a2", + "oid": 221322348522, + "crossed": true, + "fee": "2.007364", + "tid": 1075436510565938, + "cloid": "0x00000000000000000000000388000104", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "2.55", + "side": "B", + "time": 1762185353114, + "startPosition": "-238126.53", + "dir": "Close Short", + "closedPnl": "84.767865", + "hash": "0x9794393510031bb7990d042ec457ed020c77001aab063a893b5ce487cf06f5a2", + "oid": 221322348522, + "crossed": true, + "fee": "0.089198", + "tid": 497775826578127, + "cloid": "0x00000000000000000000000388000104", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131778.0", + "side": "B", + "time": 1762185353871, + "startPosition": "-1197417726.0", + "dir": "Close Short", + "closedPnl": "232.061058", + "hash": "0x79f21a4a02bcade77b6b042ec457f50207b2002f9dbfccb91dbac59cc1b087d2", + "oid": 221322360823, + "crossed": true, + "fee": "0.104882", + "tid": 968389594681897, + "cloid": "0x00000000000000000000000385000085", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "0.1539", + "side": "B", + "time": 1762185354227, + "startPosition": "-2134.0925", + "dir": "Close Short", + "closedPnl": "79.286202", + "hash": "0xc45f23256f20fd3ac5d8042ec457f90207fd000b0a241c0c6827ce782e24d725", + "oid": 221322368589, + "crossed": true, + "fee": "0.116199", + "tid": 400890223078198, + "cloid": "0x00000000000000000000000387000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "1.262", + "side": "B", + "time": 1762185354227, + "startPosition": "-2133.9386", + "dir": "Close Short", + "closedPnl": "650.15716", + "hash": "0xc45f23256f20fd3ac5d8042ec457f90207fd000b0a241c0c6827ce782e24d725", + "oid": 221322368589, + "crossed": true, + "fee": "0.952852", + "tid": 911379289811869, + "cloid": "0x00000000000000000000000387000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "0.7897", + "side": "B", + "time": 1762185354227, + "startPosition": "-2132.6766", + "dir": "Close Short", + "closedPnl": "406.837646", + "hash": "0xc45f23256f20fd3ac5d8042ec457f90207fd000b0a241c0c6827ce782e24d725", + "oid": 221322368589, + "crossed": true, + "fee": "0.59625", + "tid": 232088528468445, + "cloid": "0x00000000000000000000000387000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "0.2095", + "side": "B", + "time": 1762185354227, + "startPosition": "-2131.8869", + "dir": "Close Short", + "closedPnl": "107.93021", + "hash": "0xc45f23256f20fd3ac5d8042ec457f90207fd000b0a241c0c6827ce782e24d725", + "oid": 221322368589, + "crossed": true, + "fee": "0.158179", + "tid": 549834455095792, + "cloid": "0x00000000000000000000000387000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "0.3636", + "side": "B", + "time": 1762185354227, + "startPosition": "-2131.6774", + "dir": "Close Short", + "closedPnl": "187.319448", + "hash": "0xc45f23256f20fd3ac5d8042ec457f90207fd000b0a241c0c6827ce782e24d725", + "oid": 221322368589, + "crossed": true, + "fee": "0.27453", + "tid": 318341480063484, + "cloid": "0x00000000000000000000000387000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "50.0", + "side": "B", + "time": 1762185355752, + "startPosition": "-238123.98", + "dir": "Close Short", + "closedPnl": "1663.115", + "hash": "0x803c6ee68ce947a181b6042ec4580d0206d500cc27ec667324051a394bed218c", + "oid": 221322398464, + "crossed": true, + "fee": "1.748774", + "tid": 602114137134938, + "cloid": "0x00000000000000000000000388000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "0.87", + "side": "B", + "time": 1762185355752, + "startPosition": "-238073.98", + "dir": "Close Short", + "closedPnl": "28.929501", + "hash": "0x803c6ee68ce947a181b6042ec4580d0206d500cc27ec667324051a394bed218c", + "oid": 221322398464, + "crossed": true, + "fee": "0.03043", + "tid": 898832826327526, + "cloid": "0x00000000000000000000000388000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "0.18", + "side": "B", + "time": 1762185355752, + "startPosition": "-238073.11", + "dir": "Close Short", + "closedPnl": "5.985414", + "hash": "0x803c6ee68ce947a181b6042ec4580d0206d500cc27ec667324051a394bed218c", + "oid": 221322398464, + "crossed": true, + "fee": "0.006295", + "tid": 483030685172342, + "cloid": "0x00000000000000000000000388000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "0.1", + "side": "B", + "time": 1762185355752, + "startPosition": "-238072.93", + "dir": "Close Short", + "closedPnl": "3.32323", + "hash": "0x803c6ee68ce947a181b6042ec4580d0206d500cc27ec667324051a394bed218c", + "oid": 221322398464, + "crossed": true, + "fee": "0.003498", + "tid": 510857764512240, + "cloid": "0x00000000000000000000000388000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "0.18", + "side": "B", + "time": 1762185355752, + "startPosition": "-238072.83", + "dir": "Close Short", + "closedPnl": "5.978214", + "hash": "0x803c6ee68ce947a181b6042ec4580d0206d500cc27ec667324051a394bed218c", + "oid": 221322398464, + "crossed": true, + "fee": "0.006297", + "tid": 708162799950333, + "cloid": "0x00000000000000000000000388000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "0.29", + "side": "B", + "time": 1762185355752, + "startPosition": "-238072.65", + "dir": "Close Short", + "closedPnl": "9.631567", + "hash": "0x803c6ee68ce947a181b6042ec4580d0206d500cc27ec667324051a394bed218c", + "oid": 221322398464, + "crossed": true, + "fee": "0.010145", + "tid": 594027517644372, + "cloid": "0x00000000000000000000000388000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "3.0", + "side": "B", + "time": 1762185355752, + "startPosition": "-238072.36", + "dir": "Close Short", + "closedPnl": "99.6369", + "hash": "0x803c6ee68ce947a181b6042ec4580d0206d500cc27ec667324051a394bed218c", + "oid": 221322398464, + "crossed": true, + "fee": "0.104957", + "tid": 610220082245286, + "cloid": "0x00000000000000000000000388000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "5.36", + "side": "B", + "time": 1762185355752, + "startPosition": "-238069.36", + "dir": "Close Short", + "closedPnl": "177.964328", + "hash": "0x803c6ee68ce947a181b6042ec4580d0206d500cc27ec667324051a394bed218c", + "oid": 221322398464, + "crossed": true, + "fee": "0.187536", + "tid": 1019158965221548, + "cloid": "0x00000000000000000000000388000105", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.1", + "sz": "2.7793", + "side": "B", + "time": 1762185356028, + "startPosition": "-2131.3138", + "dir": "Close Short", + "closedPnl": "1429.894264", + "hash": "0xc6acb35bff15aa9ec826042ec458100205a100419a18c9706a755eaebe198489", + "oid": 221322402864, + "crossed": true, + "fee": "2.098874", + "tid": 347252336512775, + "cloid": "0x00000000000000000000000387000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131956.0", + "side": "B", + "time": 1762185356028, + "startPosition": "-1197285948.0", + "dir": "Close Short", + "closedPnl": "232.374516", + "hash": "0x2c53a09232382f962dcd042ec458100205a30077cd3b4e68d01c4be4f13c0980", + "oid": 221322402866, + "crossed": true, + "fee": "0.105023", + "tid": 281199303074533, + "cloid": "0x00000000000000000000000385000086", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26962", + "sz": "3709.3", + "side": "B", + "time": 1762185357108, + "startPosition": "-4015395.6000000001", + "dir": "Close Short", + "closedPnl": "1972.049345", + "hash": "0x0e6acf9f2478ce490fe4042ec4581b01f000e784bf7bed1bb2337af1e37ca833", + "oid": 221322368576, + "crossed": false, + "fee": "0.028002", + "tid": 635888911235701, + "cloid": "0x00000000000000000000000384000099", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "13.35", + "side": "B", + "time": 1762185357443, + "startPosition": "-238064.0", + "dir": "Close Short", + "closedPnl": "444.185205", + "hash": "0xbf83ab17b2162591c0fd042ec4581f0205c600fd4d194463634c566a7119ff7c", + "oid": 221322426489, + "crossed": true, + "fee": "0.466894", + "tid": 642506462202235, + "cloid": "0x00000000000000000000000388000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "13.35", + "side": "B", + "time": 1762185357443, + "startPosition": "-238050.65", + "dir": "Close Short", + "closedPnl": "444.051705", + "hash": "0xbf83ab17b2162591c0fd042ec4581f0205c600fd4d194463634c566a7119ff7c", + "oid": 221322426489, + "crossed": true, + "fee": "0.466922", + "tid": 206040865637559, + "cloid": "0x00000000000000000000000388000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "13.32", + "side": "B", + "time": 1762185357443, + "startPosition": "-238037.3", + "dir": "Close Short", + "closedPnl": "443.053836", + "hash": "0xbf83ab17b2162591c0fd042ec4581f0205c600fd4d194463634c566a7119ff7c", + "oid": 221322426489, + "crossed": true, + "fee": "0.465873", + "tid": 286927296438102, + "cloid": "0x00000000000000000000000388000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "13.35", + "side": "B", + "time": 1762185357443, + "startPosition": "-238023.98", + "dir": "Close Short", + "closedPnl": "444.051705", + "hash": "0xbf83ab17b2162591c0fd042ec4581f0205c600fd4d194463634c566a7119ff7c", + "oid": 221322426489, + "crossed": true, + "fee": "0.466922", + "tid": 210205896713129, + "cloid": "0x00000000000000000000000388000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "6.58", + "side": "B", + "time": 1762185357443, + "startPosition": "-238010.63", + "dir": "Close Short", + "closedPnl": "218.865934", + "hash": "0xbf83ab17b2162591c0fd042ec4581f0205c600fd4d194463634c566a7119ff7c", + "oid": 221322426489, + "crossed": true, + "fee": "0.230138", + "tid": 960324291174711, + "cloid": "0x00000000000000000000000388000106", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "2.779", + "side": "B", + "time": 1762185357990, + "startPosition": "-2128.5345", + "dir": "Close Short", + "closedPnl": "1431.68522", + "hash": "0x696174b6d7b817fd6adb042ec45824020657009c72bb36cf0d2a200996bbf1e8", + "oid": 221322437393, + "crossed": true, + "fee": "2.098239", + "tid": 758896630521642, + "cloid": "0x00000000000000000000000387000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26962", + "sz": "2331.6", + "side": "A", + "time": 1762185357990, + "startPosition": "4032992.0960630002", + "dir": "Sell", + "closedPnl": "-1240.58329781", + "hash": "0xed4a53daa2512803eec4042ec4582402069100c03d5446d59112ff2d615501ee", + "oid": 221322437428, + "crossed": true, + "fee": "0.17602087", + "tid": 595376011360484, + "cloid": "0x10000000000000000000000475000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26944", + "sz": "1377.7", + "side": "A", + "time": 1762185357990, + "startPosition": "4030660.4960630001", + "dir": "Sell", + "closedPnl": "-733.28607546", + "hash": "0xed4a53daa2512803eec4042ec4582402069100c03d5446d59112ff2d615501ee", + "oid": 221322437428, + "crossed": true, + "fee": "0.10393809", + "tid": 348757866463115, + "cloid": "0x10000000000000000000000475000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "6.69", + "side": "B", + "time": 1762185359175, + "startPosition": "-238004.05", + "dir": "Close Short", + "closedPnl": "222.524787", + "hash": "0xcf5a158abe91e63dd0d3042ec4583302066a00705995050f7322c0dd7d95c028", + "oid": 221322459329, + "crossed": true, + "fee": "0.233986", + "tid": 32908631209722, + "cloid": "0x00000000000000000000000388000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "22.73", + "side": "B", + "time": 1762185359175, + "startPosition": "-237997.36", + "dir": "Close Short", + "closedPnl": "755.824779", + "hash": "0xcf5a158abe91e63dd0d3042ec4583302066a00705995050f7322c0dd7d95c028", + "oid": 221322459329, + "crossed": true, + "fee": "0.79504", + "tid": 232935990382754, + "cloid": "0x00000000000000000000000388000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "3.0", + "side": "B", + "time": 1762185359175, + "startPosition": "-237974.63", + "dir": "Close Short", + "closedPnl": "99.7569", + "hash": "0xcf5a158abe91e63dd0d3042ec4583302066a00705995050f7322c0dd7d95c028", + "oid": 221322459329, + "crossed": true, + "fee": "0.104932", + "tid": 785414968175444, + "cloid": "0x00000000000000000000000388000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "27.52", + "side": "B", + "time": 1762185359175, + "startPosition": "-237971.63", + "dir": "Close Short", + "closedPnl": "915.103296", + "hash": "0xcf5a158abe91e63dd0d3042ec4583302066a00705995050f7322c0dd7d95c028", + "oid": 221322459329, + "crossed": true, + "fee": "0.962583", + "tid": 448600889064287, + "cloid": "0x00000000000000000000000388000107", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "0.2781", + "side": "B", + "time": 1762185359709, + "startPosition": "-2125.7555", + "dir": "Close Short", + "closedPnl": "143.271558", + "hash": "0x3ea68f89650f52704020042ec458390207cb006f00027142e26f3adc24032c5a", + "oid": 221322470078, + "crossed": true, + "fee": "0.209974", + "tid": 1034306003404327, + "cloid": "0x00000000000000000000000387000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "2.501", + "side": "B", + "time": 1762185359709, + "startPosition": "-2125.4774", + "dir": "Close Short", + "closedPnl": "1288.46518", + "hash": "0x3ea68f89650f52704020042ec458390207cb006f00027142e26f3adc24032c5a", + "oid": 221322470078, + "crossed": true, + "fee": "1.88834", + "tid": 482030123737746, + "cloid": "0x00000000000000000000000387000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26953", + "sz": "3708.8", + "side": "B", + "time": 1762185360123, + "startPosition": "-4011686.2999999998", + "dir": "Close Short", + "closedPnl": "1972.117312", + "hash": "0x1e242d8fe62e47d41f9d042ec4583f02050f0075812166a6c1ecd8e2a52221be", + "oid": 221322482900, + "crossed": true, + "fee": "0.209922", + "tid": 214713788961830, + "cloid": "0x00000000000000000000000384000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003793", + "sz": "131822.0", + "side": "B", + "time": 1762185361203, + "startPosition": "-1197153992.0", + "dir": "Close Short", + "closedPnl": "231.743076", + "hash": "0x273c12b4b9b063c728b5042ec4584b020c74009a54b38299cb04be0778b43db1", + "oid": 221322503842, + "crossed": true, + "fee": "0.105", + "tid": 753051147771669, + "cloid": "0x00000000000000000000000385000088", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "11.43", + "side": "B", + "time": 1762185361395, + "startPosition": "-237944.11", + "dir": "Close Short", + "closedPnl": "380.302389", + "hash": "0x317fb9483041e6ab32f9042ec4584e020576002dcb45057dd548649aef45c095", + "oid": 221322506658, + "crossed": true, + "fee": "0.399745", + "tid": 442056348693243, + "cloid": "0x00000000000000000000000388000108", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "11.78", + "side": "B", + "time": 1762185361395, + "startPosition": "-237932.68", + "dir": "Close Short", + "closedPnl": "391.947694", + "hash": "0x317fb9483041e6ab32f9042ec4584e020576002dcb45057dd548649aef45c095", + "oid": 221322506658, + "crossed": true, + "fee": "0.411986", + "tid": 181264949106079, + "cloid": "0x00000000000000000000000388000108", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "36.75", + "side": "B", + "time": 1762185361395, + "startPosition": "-237920.9", + "dir": "Close Short", + "closedPnl": "1222.757025", + "hash": "0x317fb9483041e6ab32f9042ec4584e020576002dcb45057dd548649aef45c095", + "oid": 221322506658, + "crossed": true, + "fee": "1.285272", + "tid": 623047918948984, + "cloid": "0x00000000000000000000000388000108", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26944", + "sz": "2833.0", + "side": "A", + "time": 1762185361395, + "startPosition": "4029282.7960629999", + "dir": "Sell", + "closedPnl": "-1507.87504666", + "hash": "0x2a04fd662f8b18552b7e042ec4584e02058a004bca8e3727cdcda8b8ee8ef23f", + "oid": 221322506675, + "crossed": true, + "fee": "0.21373058", + "tid": 636373529594191, + "cloid": "0x10000000000000000000000475000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26923", + "sz": "875.8", + "side": "A", + "time": 1762185361395, + "startPosition": "4026449.7960629999", + "dir": "Sell", + "closedPnl": "-466.3318057", + "hash": "0xdcd87401491c5ad0de52042ec4584e02058b00e6e41f79a280a11f54081034bb", + "oid": 221322506675, + "crossed": false, + "fee": "0.01650541", + "tid": 748139617020889, + "cloid": "0x10000000000000000000000475000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.8", + "sz": "0.2781", + "side": "B", + "time": 1762185361723, + "startPosition": "-2122.9764", + "dir": "Close Short", + "closedPnl": "143.438418", + "hash": "0x0fe7133bb3cc699f1160042ec4585102151f00214ecf8871b3afbe8e72c04389", + "oid": 221322518171, + "crossed": true, + "fee": "0.209939", + "tid": 629683137008495, + "cloid": "0x00000000000000000000000387000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.8", + "sz": "2.5011", + "side": "B", + "time": 1762185361723, + "startPosition": "-2122.6983", + "dir": "Close Short", + "closedPnl": "1290.017358", + "hash": "0x0fe7133bb3cc699f1160042ec4585102151f00214ecf8871b3afbe8e72c04389", + "oid": 221322518171, + "crossed": true, + "fee": "1.8881", + "tid": 246858849996810, + "cloid": "0x00000000000000000000000387000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131817.0", + "side": "B", + "time": 1762185363485, + "startPosition": "-1197022170.0", + "dir": "Close Short", + "closedPnl": "232.129737", + "hash": "0x5f8079b839ad65da60fa042ec45863020753009dd4a084ac0349250af8a13fc5", + "oid": 221322552386, + "crossed": true, + "fee": "0.104913", + "tid": 899940713171636, + "cloid": "0x00000000000000000000000385000089", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "9.47", + "side": "B", + "time": 1762185363485, + "startPosition": "-237884.15", + "dir": "Close Short", + "closedPnl": "315.562181", + "hash": "0x4348b7f5ec96373c44c2042ec4586302075a00db8799560ee7116348ab9a1126", + "oid": 221322552392, + "crossed": true, + "fee": "0.331098", + "tid": 401067797687243, + "cloid": "0x00000000000000000000000388000109", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "50.51", + "side": "B", + "time": 1762185363485, + "startPosition": "-237874.68", + "dir": "Close Short", + "closedPnl": "1683.109373", + "hash": "0x4348b7f5ec96373c44c2042ec4586302075a00db8799560ee7116348ab9a1126", + "oid": 221322552392, + "crossed": true, + "fee": "1.765976", + "tid": 724000396407262, + "cloid": "0x00000000000000000000000388000109", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.2", + "sz": "0.1933", + "side": "B", + "time": 1762185363485, + "startPosition": "-2120.1972", + "dir": "Close Short", + "closedPnl": "99.816254", + "hash": "0x7dc26ba5d123f0e97f3c042ec4586302078b008b6c270fbb218b16f89027cad4", + "oid": 221322552432, + "crossed": true, + "fee": "0.145899", + "tid": 555041309422970, + "cloid": "0x00000000000000000000000387000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.2", + "sz": "2.5868", + "side": "B", + "time": 1762185363485, + "startPosition": "-2120.0039", + "dir": "Close Short", + "closedPnl": "1335.771784", + "hash": "0x7dc26ba5d123f0e97f3c042ec4586302078b008b6c270fbb218b16f89027cad4", + "oid": 221322552432, + "crossed": true, + "fee": "1.95247", + "tid": 460897522187867, + "cloid": "0x00000000000000000000000387000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "0.9974", + "side": "B", + "time": 1762185365401, + "startPosition": "-2117.4171", + "dir": "Close Short", + "closedPnl": "513.840532", + "hash": "0xef92b5bba4712d9bf10c042ec4587a0208d500a13f744c6d935b610e63750786", + "oid": 221322589097, + "crossed": true, + "fee": "0.75307", + "tid": 245699476491573, + "cloid": "0x00000000000000000000000387000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.4", + "sz": "0.0144", + "side": "B", + "time": 1762185365401, + "startPosition": "-2116.4197", + "dir": "Close Short", + "closedPnl": "7.418592", + "hash": "0xef92b5bba4712d9bf10c042ec4587a0208d500a13f744c6d935b610e63750786", + "oid": 221322589097, + "crossed": true, + "fee": "0.010872", + "tid": 870390625747836, + "cloid": "0x00000000000000000000000387000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.5", + "sz": "0.1391", + "side": "B", + "time": 1762185365401, + "startPosition": "-2116.4053", + "dir": "Close Short", + "closedPnl": "71.647628", + "hash": "0xef92b5bba4712d9bf10c042ec4587a0208d500a13f744c6d935b610e63750786", + "oid": 221322589097, + "crossed": true, + "fee": "0.105028", + "tid": 1003794263449000, + "cloid": "0x00000000000000000000000387000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.5", + "sz": "0.0083", + "side": "B", + "time": 1762185365401, + "startPosition": "-2116.2662", + "dir": "Close Short", + "closedPnl": "4.275164", + "hash": "0xef92b5bba4712d9bf10c042ec4587a0208d500a13f744c6d935b610e63750786", + "oid": 221322589097, + "crossed": true, + "fee": "0.006266", + "tid": 998297061227196, + "cloid": "0x00000000000000000000000387000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.6", + "sz": "0.0042", + "side": "B", + "time": 1762185365401, + "startPosition": "-2116.2579", + "dir": "Close Short", + "closedPnl": "2.162916", + "hash": "0xef92b5bba4712d9bf10c042ec4587a0208d500a13f744c6d935b610e63750786", + "oid": 221322589097, + "crossed": true, + "fee": "0.003171", + "tid": 969305267640840, + "cloid": "0x00000000000000000000000387000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.7", + "sz": "1.6151", + "side": "B", + "time": 1762185365401, + "startPosition": "-2116.2537", + "dir": "Close Short", + "closedPnl": "831.582688", + "hash": "0xef92b5bba4712d9bf10c042ec4587a0208d500a13f744c6d935b610e63750786", + "oid": 221322589097, + "crossed": true, + "fee": "1.219557", + "tid": 598904697629847, + "cloid": "0x00000000000000000000000387000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "6.48", + "side": "B", + "time": 1762185365401, + "startPosition": "-237824.17", + "dir": "Close Short", + "closedPnl": "215.410104", + "hash": "0x3901e12f8a8c83f53a7b042ec4587a0208de0015258fa2c7dcca8c8249805ddf", + "oid": 221322589106, + "crossed": true, + "fee": "0.226668", + "tid": 527990717214322, + "cloid": "0x00000000000000000000000388000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "0.18", + "side": "B", + "time": 1762185365401, + "startPosition": "-237817.69", + "dir": "Close Short", + "closedPnl": "5.981814", + "hash": "0x3901e12f8a8c83f53a7b042ec4587a0208de0015258fa2c7dcca8c8249805ddf", + "oid": 221322589106, + "crossed": true, + "fee": "0.006296", + "tid": 400561343009007, + "cloid": "0x00000000000000000000000388000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "29.4", + "side": "B", + "time": 1762185365401, + "startPosition": "-237817.51", + "dir": "Close Short", + "closedPnl": "974.38362", + "hash": "0x3901e12f8a8c83f53a7b042ec4587a0208de0015258fa2c7dcca8c8249805ddf", + "oid": 221322589106, + "crossed": true, + "fee": "1.02902", + "tid": 1055580574382610, + "cloid": "0x00000000000000000000000388000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "5.97", + "side": "B", + "time": 1762185365401, + "startPosition": "-237788.11", + "dir": "Close Short", + "closedPnl": "197.859531", + "hash": "0x3901e12f8a8c83f53a7b042ec4587a0208de0015258fa2c7dcca8c8249805ddf", + "oid": 221322589106, + "crossed": true, + "fee": "0.208954", + "tid": 921448437718538, + "cloid": "0x00000000000000000000000388000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "14.95", + "side": "B", + "time": 1762185365401, + "startPosition": "-237782.14", + "dir": "Close Short", + "closedPnl": "495.477385", + "hash": "0x3901e12f8a8c83f53a7b042ec4587a0208de0015258fa2c7dcca8c8249805ddf", + "oid": 221322589106, + "crossed": true, + "fee": "0.52326", + "tid": 999875702444634, + "cloid": "0x00000000000000000000000388000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.68", + "sz": "2.95", + "side": "B", + "time": 1762185365401, + "startPosition": "-237767.19", + "dir": "Close Short", + "closedPnl": "97.740285", + "hash": "0x3901e12f8a8c83f53a7b042ec4587a0208de0015258fa2c7dcca8c8249805ddf", + "oid": 221322589106, + "crossed": true, + "fee": "0.103258", + "tid": 139707193064094, + "cloid": "0x00000000000000000000000388000110", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003793", + "sz": "131748.0", + "side": "B", + "time": 1762185365401, + "startPosition": "-1196890353.0", + "dir": "Close Short", + "closedPnl": "231.612984", + "hash": "0x044fbb9bf0c18de405c9042ec4587a0208e200818bc4acb6a81866eeafc567ce", + "oid": 221322589109, + "crossed": true, + "fee": "0.104941", + "tid": 102374774239029, + "cloid": "0x00000000000000000000000385000090", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "59.96", + "side": "B", + "time": 1762185367954, + "startPosition": "-237764.24", + "dir": "Close Short", + "closedPnl": "1992.608708", + "hash": "0x2fa14be01434fd1c311b042ec45896020ba500c5af381beed369f732d338d706", + "oid": 221322640273, + "crossed": true, + "fee": "2.097508", + "tid": 217035369952078, + "cloid": "0x00000000000000000000000388000111", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.5", + "sz": "1.8", + "side": "B", + "time": 1762185368961, + "startPosition": "-2114.6386", + "dir": "Close Short", + "closedPnl": "927.144", + "hash": "0x158d969870eb41ad1707042ec458a00202f6007e0bee607fb95641eb2fef1b97", + "oid": 221322658617, + "crossed": true, + "fee": "1.359098", + "tid": 365220050997604, + "cloid": "0x00000000000000000000000387000128", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.5", + "sz": "0.979", + "side": "B", + "time": 1762185368961, + "startPosition": "-2112.8386", + "dir": "Close Short", + "closedPnl": "504.26332", + "hash": "0x158d969870eb41ad1707042ec458a00202f6007e0bee607fb95641eb2fef1b97", + "oid": 221322658617, + "crossed": true, + "fee": "0.739198", + "tid": 413512167421767, + "cloid": "0x00000000000000000000000387000128", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003793", + "sz": "131713.0", + "side": "B", + "time": 1762185368961, + "startPosition": "-1196758605.0", + "dir": "Close Short", + "closedPnl": "231.551454", + "hash": "0xc8610d338a7c8428c9da042ec458a00202f70019257fa2fa6c29b88649705e13", + "oid": 221322658618, + "crossed": true, + "fee": "0.104913", + "tid": 1011824376194292, + "cloid": "0x00000000000000000000000385000091", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "30.99", + "side": "B", + "time": 1762185369625, + "startPosition": "-237704.28", + "dir": "Close Short", + "closedPnl": "1032.658077", + "hash": "0x69b784994c6a60796b31042ec458a9020981007ee76d7f4b0d802fec0b6e3a64", + "oid": 221322679446, + "crossed": true, + "fee": "1.0835", + "tid": 66492383698303, + "cloid": "0x00000000000000000000000388000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "28.99", + "side": "B", + "time": 1762185369625, + "startPosition": "-237673.29", + "dir": "Close Short", + "closedPnl": "966.013477", + "hash": "0x69b784994c6a60796b31042ec458a9020981007ee76d7f4b0d802fec0b6e3a64", + "oid": 221322679446, + "crossed": true, + "fee": "1.013574", + "tid": 482211220822969, + "cloid": "0x00000000000000000000000388000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.1", + "sz": "2.7793", + "side": "B", + "time": 1762185370985, + "startPosition": "-2111.8596", + "dir": "Close Short", + "closedPnl": "1432.673564", + "hash": "0x932c1fc834dba67494a5042ec458b8020c1500adcfdec54636f4cb1af3df805f", + "oid": 221322701080, + "crossed": true, + "fee": "2.09829", + "tid": 921094859940237, + "cloid": "0x00000000000000000000000387000129", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.48", + "sz": "60.0", + "side": "B", + "time": 1762185371920, + "startPosition": "-237644.3", + "dir": "Close Short", + "closedPnl": "1999.938", + "hash": "0x63bd8e68e0d1d3626537042ec458c50205d4004e7bd4f234078639bb9fd5ad4d", + "oid": 221322715146, + "crossed": true, + "fee": "2.097648", + "tid": 1110356376019359, + "cloid": "0x00000000000000000000000388000113", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.1", + "sz": "2.7795", + "side": "B", + "time": 1762185373325, + "startPosition": "-2109.0803", + "dir": "Close Short", + "closedPnl": "1432.77666", + "hash": "0xa61401f60df002e8a78d042ec458d702069c00dba8f321ba49dcad48ccf3dcd3", + "oid": 221322743870, + "crossed": true, + "fee": "2.098441", + "tid": 523945080003900, + "cloid": "0x00000000000000000000000387000130", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "9.91", + "side": "B", + "time": 1762185373812, + "startPosition": "-237584.3", + "dir": "Close Short", + "closedPnl": "327.548293", + "hash": "0x9ef9b2a19d84cca6a073042ec458de019a00ca873887eb7842c25df45c88a691", + "oid": 221322753219, + "crossed": true, + "fee": "0.347044", + "tid": 227998277042135, + "cloid": "0x00000000000000000000000388000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.77", + "sz": "6.59", + "side": "B", + "time": 1762185373812, + "startPosition": "-237574.39", + "dir": "Close Short", + "closedPnl": "217.748757", + "hash": "0x9ef9b2a19d84cca6a073042ec458de019a00ca873887eb7842c25df45c88a691", + "oid": 221322753219, + "crossed": true, + "fee": "0.230793", + "tid": 939105110755198, + "cloid": "0x00000000000000000000000388000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.78", + "sz": "43.42", + "side": "B", + "time": 1762185373812, + "startPosition": "-237567.8", + "dir": "Close Short", + "closedPnl": "1434.262466", + "hash": "0x9ef9b2a19d84cca6a073042ec458de019a00ca873887eb7842c25df45c88a691", + "oid": 221322753219, + "crossed": true, + "fee": "1.520733", + "tid": 728519739501483, + "cloid": "0x00000000000000000000000388000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.79", + "sz": "59.89", + "side": "B", + "time": 1762185375993, + "startPosition": "-237524.38", + "dir": "Close Short", + "closedPnl": "1977.705547", + "hash": "0xbae6a5a4529ab853bc60042ec458fb020fc20089ed9dd7255eaf50f7119e923e", + "oid": 221322799829, + "crossed": true, + "fee": "2.097701", + "tid": 409003546729454, + "cloid": "0x00000000000000000000000388000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.3", + "sz": "2.6602", + "side": "B", + "time": 1762185376239, + "startPosition": "-2106.3008", + "dir": "Close Short", + "closedPnl": "1368.087656", + "hash": "0x1abf621c418f46201c39042ec458ff0202750001dc8264f2be880d6f0083200a", + "oid": 221322802663, + "crossed": true, + "fee": "2.009044", + "tid": 989041288230228, + "cloid": "0x00000000000000000000000387000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.3", + "sz": "0.1184", + "side": "B", + "time": 1762185376239, + "startPosition": "-2103.6406", + "dir": "Close Short", + "closedPnl": "60.890752", + "hash": "0x1abf621c418f46201c39042ec458ff0202750001dc8264f2be880d6f0083200a", + "oid": 221322802663, + "crossed": true, + "fee": "0.089418", + "tid": 952514366820067, + "cloid": "0x00000000000000000000000387000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.79", + "sz": "11.99", + "side": "B", + "time": 1762185378152, + "startPosition": "-237464.49", + "dir": "Close Short", + "closedPnl": "395.937377", + "hash": "0x87dcee7cddd049f98956042ec45919021180006278d368cb2ba599cf9cd423e4", + "oid": 221322839534, + "crossed": true, + "fee": "0.41996", + "tid": 341910586303445, + "cloid": "0x00000000000000000000000388000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "0.1", + "side": "B", + "time": 1762185378152, + "startPosition": "-237452.5", + "dir": "Close Short", + "closedPnl": "3.30123", + "hash": "0x87dcee7cddd049f98956042ec45919021180006278d368cb2ba599cf9cd423e4", + "oid": 221322839534, + "crossed": true, + "fee": "0.003502", + "tid": 788663087328721, + "cloid": "0x00000000000000000000000388000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "3.0", + "side": "B", + "time": 1762185378152, + "startPosition": "-237452.4", + "dir": "Close Short", + "closedPnl": "99.0369", + "hash": "0x87dcee7cddd049f98956042ec45919021180006278d368cb2ba599cf9cd423e4", + "oid": 221322839534, + "crossed": true, + "fee": "0.105083", + "tid": 222867293881633, + "cloid": "0x00000000000000000000000388000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.81", + "sz": "0.1", + "side": "B", + "time": 1762185378152, + "startPosition": "-237449.4", + "dir": "Close Short", + "closedPnl": "3.30023", + "hash": "0x87dcee7cddd049f98956042ec45919021180006278d368cb2ba599cf9cd423e4", + "oid": 221322839534, + "crossed": true, + "fee": "0.003503", + "tid": 513311950735499, + "cloid": "0x00000000000000000000000388000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.82", + "sz": "44.68", + "side": "B", + "time": 1762185378152, + "startPosition": "-237449.3", + "dir": "Close Short", + "closedPnl": "1474.095964", + "hash": "0x87dcee7cddd049f98956042ec45919021180006278d368cb2ba599cf9cd423e4", + "oid": 221322839534, + "crossed": true, + "fee": "1.565238", + "tid": 536200178615185, + "cloid": "0x00000000000000000000000388000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.3", + "sz": "2.7568", + "side": "B", + "time": 1762185378152, + "startPosition": "-2103.5222", + "dir": "Close Short", + "closedPnl": "1415.010304", + "hash": "0x532ac8e9441553e854a4042ec4591902118400cedf1872baf6f3743c03192dd2", + "oid": 221322839536, + "crossed": true, + "fee": "2.082577", + "tid": 154733430008810, + "cloid": "0x00000000000000000000000387000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.4", + "sz": "0.0083", + "side": "B", + "time": 1762185378152, + "startPosition": "-2100.7654", + "dir": "Close Short", + "closedPnl": "4.259394", + "hash": "0x532ac8e9441553e854a4042ec4591902118400cedf1872baf6f3743c03192dd2", + "oid": 221322839536, + "crossed": true, + "fee": "0.00627", + "tid": 857499278666085, + "cloid": "0x00000000000000000000000387000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.5", + "sz": "0.0042", + "side": "B", + "time": 1762185378152, + "startPosition": "-2100.7571", + "dir": "Close Short", + "closedPnl": "2.154936", + "hash": "0x532ac8e9441553e854a4042ec4591902118400cedf1872baf6f3743c03192dd2", + "oid": 221322839536, + "crossed": true, + "fee": "0.003172", + "tid": 977116296772865, + "cloid": "0x00000000000000000000000387000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.6", + "sz": "0.0083", + "side": "B", + "time": 1762185378152, + "startPosition": "-2100.7529", + "dir": "Close Short", + "closedPnl": "4.257734", + "hash": "0x532ac8e9441553e854a4042ec4591902118400cedf1872baf6f3743c03192dd2", + "oid": 221322839536, + "crossed": true, + "fee": "0.00627", + "tid": 526096190955849, + "cloid": "0x00000000000000000000000387000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.6", + "sz": "0.0005", + "side": "B", + "time": 1762185378152, + "startPosition": "-2100.7446", + "dir": "Close Short", + "closedPnl": "0.25649", + "hash": "0x532ac8e9441553e854a4042ec4591902118400cedf1872baf6f3743c03192dd2", + "oid": 221322839536, + "crossed": true, + "fee": "0.000377", + "tid": 734763566488081, + "cloid": "0x00000000000000000000000387000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3598.6", + "sz": "2.7767", + "side": "B", + "time": 1762185380467, + "startPosition": "-2100.7441", + "dir": "Close Short", + "closedPnl": "1421.614866", + "hash": "0x9be1d9297d6fbe939d5b042ec459370203cb000f1862dd653faa847c3c63987e", + "oid": 221322877159, + "crossed": true, + "fee": "2.098368", + "tid": 85411560337530, + "cloid": "0x00000000000000000000000387000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.9", + "sz": "59.84", + "side": "B", + "time": 1762185380467, + "startPosition": "-237404.62", + "dir": "Close Short", + "closedPnl": "1969.472032", + "hash": "0xf650ac8caf680e09f7ca042ec459370203eb00724a6b2cdc9a1957df6e6be7f4", + "oid": 221322877184, + "crossed": true, + "fee": "2.097332", + "tid": 155034770818146, + "cloid": "0x00000000000000000000000388000117", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "59.86", + "side": "B", + "time": 1762185382261, + "startPosition": "-237344.78", + "dir": "Close Short", + "closedPnl": "1976.116278", + "hash": "0xf566f74f3946cceaf6e0042ec4594c0203100034d449ebbd992fa2a1f84aa6d5", + "oid": 221322922148, + "crossed": true, + "fee": "2.096776", + "tid": 684070199586588, + "cloid": "0x00000000000000000000000388000118", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.2", + "sz": "1.2644", + "side": "B", + "time": 1762185382581, + "startPosition": "-2097.9674", + "dir": "Close Short", + "closedPnl": "649.117672", + "hash": "0x1cb7c99716d184051e31042ec45951020878007cb1d4a2d7c08074e9d5d55def", + "oid": 221322928847, + "crossed": true, + "fee": "0.955142", + "tid": 917283283270853, + "cloid": "0x00000000000000000000000387000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.2", + "sz": "1.5128", + "side": "B", + "time": 1762185382581, + "startPosition": "-2096.703", + "dir": "Close Short", + "closedPnl": "776.641264", + "hash": "0x1cb7c99716d184051e31042ec45951020878007cb1d4a2d7c08074e9d5d55def", + "oid": 221322928847, + "crossed": true, + "fee": "1.142787", + "tid": 146600688279758, + "cloid": "0x00000000000000000000000387000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131822.0", + "side": "B", + "time": 1762185382581, + "startPosition": "-1196626892.0", + "dir": "Close Short", + "closedPnl": "230.952144", + "hash": "0x9ad91a9e96a7d06f9c52042ec4595102087d008431aaef413ea1c5f155abaa5a", + "oid": 221322928851, + "crossed": true, + "fee": "0.105166", + "tid": 1024378121730957, + "cloid": "0x00000000000000000000000385000096", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "45.91", + "side": "B", + "time": 1762185384683, + "startPosition": "-237284.92", + "dir": "Close Short", + "closedPnl": "1522.022093", + "hash": "0x99d0e33aedadaae79b4a042ec4596b02016b002088a0c9b93d998e8daca184d2", + "oid": 221322988651, + "crossed": true, + "fee": "1.606785", + "tid": 1091075549493709, + "cloid": "0x00000000000000000000000388000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "14.0", + "side": "B", + "time": 1762185384683, + "startPosition": "-237239.01", + "dir": "Close Short", + "closedPnl": "464.1322", + "hash": "0x99d0e33aedadaae79b4a042ec4596b02016b002088a0c9b93d998e8daca184d2", + "oid": 221322988651, + "crossed": true, + "fee": "0.48998", + "tid": 872206447398896, + "cloid": "0x00000000000000000000000388000119", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.9", + "sz": "0.7505", + "side": "B", + "time": 1762185384683, + "startPosition": "-2095.1902", + "dir": "Close Short", + "closedPnl": "387.01784", + "hash": "0xdbc552ccd2f232eadd3f042ec4596b02018800b26df551bc7f8dfe1f91f60cd5", + "oid": 221322988669, + "crossed": true, + "fee": "0.566574", + "tid": 1092955711319466, + "cloid": "0x00000000000000000000000387000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.9", + "sz": "0.7504", + "side": "B", + "time": 1762185384683, + "startPosition": "-2094.4397", + "dir": "Close Short", + "closedPnl": "386.966272", + "hash": "0xdbc552ccd2f232eadd3f042ec4596b02018800b26df551bc7f8dfe1f91f60cd5", + "oid": 221322988669, + "crossed": true, + "fee": "0.566498", + "tid": 892971176749053, + "cloid": "0x00000000000000000000000387000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.9", + "sz": "0.4755", + "side": "B", + "time": 1762185384683, + "startPosition": "-2093.6893", + "dir": "Close Short", + "closedPnl": "245.20584", + "hash": "0xdbc552ccd2f232eadd3f042ec4596b02018800b26df551bc7f8dfe1f91f60cd5", + "oid": 221322988669, + "crossed": true, + "fee": "0.358968", + "tid": 242374330607445, + "cloid": "0x00000000000000000000000387000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.9", + "sz": "0.2124", + "side": "B", + "time": 1762185384683, + "startPosition": "-2093.2138", + "dir": "Close Short", + "closedPnl": "109.530432", + "hash": "0xdbc552ccd2f232eadd3f042ec4596b02018800b26df551bc7f8dfe1f91f60cd5", + "oid": 221322988669, + "crossed": true, + "fee": "0.160346", + "tid": 514204941283961, + "cloid": "0x00000000000000000000000387000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.9", + "sz": "0.59", + "side": "B", + "time": 1762185384683, + "startPosition": "-2093.0014", + "dir": "Close Short", + "closedPnl": "304.2512", + "hash": "0xdbc552ccd2f232eadd3f042ec4596b02018800b26df551bc7f8dfe1f91f60cd5", + "oid": 221322988669, + "crossed": true, + "fee": "0.445408", + "tid": 76721009317778, + "cloid": "0x00000000000000000000000387000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3598.2", + "sz": "2.777", + "side": "B", + "time": 1762185387127, + "startPosition": "-2092.4114", + "dir": "Close Short", + "closedPnl": "1422.87926", + "hash": "0x67e38ba1322519f0695d042ec459880209a20086cd2838c20bac36f3f128f3db", + "oid": 221323037291, + "crossed": true, + "fee": "2.098362", + "tid": 42823312257368, + "cloid": "0x00000000000000000000000387000136", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "58.63", + "side": "B", + "time": 1762185387127, + "startPosition": "-237225.01", + "dir": "Close Short", + "closedPnl": "1939.615249", + "hash": "0x0bc18a784a38bfc00d3b042ec459880209cb005de53bde92af8a35cb093c99aa", + "oid": 221323037323, + "crossed": true, + "fee": "2.052829", + "tid": 291674275718673, + "cloid": "0x00000000000000000000000388000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "1.28", + "side": "B", + "time": 1762185387127, + "startPosition": "-237166.38", + "dir": "Close Short", + "closedPnl": "42.345344", + "hash": "0x0bc18a784a38bfc00d3b042ec459880209cb005de53bde92af8a35cb093c99aa", + "oid": 221323037323, + "crossed": true, + "fee": "0.044817", + "tid": 138998708448309, + "cloid": "0x00000000000000000000000388000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003794", + "sz": "131774.0", + "side": "B", + "time": 1762185388345, + "startPosition": "-1196495070.0", + "dir": "Close Short", + "closedPnl": "231.526918", + "hash": "0xea035a46332cd446eb7d042ec45994020ef6002bce2ff3188dcc0598f220ae31", + "oid": 221323058318, + "crossed": true, + "fee": "0.104989", + "tid": 463270144971532, + "cloid": "0x00000000000000000000000385000098", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "59.88", + "side": "B", + "time": 1762185388872, + "startPosition": "-237165.1", + "dir": "Close Short", + "closedPnl": "1980.369324", + "hash": "0x832147c87508a935849b042ec4599a02082600ae100bc80726e9f31b340c8320", + "oid": 221323064174, + "crossed": true, + "fee": "2.096722", + "tid": 76505533329023, + "cloid": "0x00000000000000000000000388000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3598.4", + "sz": "2.777", + "side": "B", + "time": 1762185389105, + "startPosition": "-2089.6344", + "dir": "Close Short", + "closedPnl": "1422.32386", + "hash": "0xb47da5c1d5d4cc5ab5f7042ec4599d02036c00a770d7eb2c5846511494d8a645", + "oid": 221323066952, + "crossed": true, + "fee": "2.098478", + "tid": 878314350188823, + "cloid": "0x00000000000000000000000387000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "21.03", + "side": "B", + "time": 1762185390445, + "startPosition": "-237105.22", + "dir": "Close Short", + "closedPnl": "695.510469", + "hash": "0x2e8525e1109ce54e2ffe042ec459ac02056d00c6ab900420d24dd133cf90bf38", + "oid": 221323086232, + "crossed": true, + "fee": "0.736373", + "tid": 960427529984834, + "cloid": "0x00000000000000000000000388000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "38.86", + "side": "B", + "time": 1762185390445, + "startPosition": "-237084.19", + "dir": "Close Short", + "closedPnl": "1285.189578", + "hash": "0x2e8525e1109ce54e2ffe042ec459ac02056d00c6ab900420d24dd133cf90bf38", + "oid": 221323086232, + "crossed": true, + "fee": "1.360698", + "tid": 836858688965900, + "cloid": "0x00000000000000000000000388000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.7", + "sz": "1.4087", + "side": "B", + "time": 1762185390445, + "startPosition": "-2086.8574", + "dir": "Close Short", + "closedPnl": "722.494056", + "hash": "0x270a69ff0fd616f82884042ec459ac02058100e4aad935cacad31551ced9f0e2", + "oid": 221323086249, + "crossed": true, + "fee": "1.064296", + "tid": 520727734874565, + "cloid": "0x00000000000000000000000387000138", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.7", + "sz": "1.3686", + "side": "B", + "time": 1762185390445, + "startPosition": "-2085.4487", + "dir": "Close Short", + "closedPnl": "701.927568", + "hash": "0x270a69ff0fd616f82884042ec459ac02058100e4aad935cacad31551ced9f0e2", + "oid": 221323086249, + "crossed": true, + "fee": "1.034", + "tid": 370369404174935, + "cloid": "0x00000000000000000000000387000138", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.6", + "sz": "2.7775", + "side": "B", + "time": 1762185392182, + "startPosition": "-2084.0801", + "dir": "Close Short", + "closedPnl": "1424.80195", + "hash": "0x14337fc85b7141fc15ad042ec459c00204e700adf67460ceb7fc2b1b1a751be6", + "oid": 221323120516, + "crossed": true, + "fee": "2.09839", + "tid": 111023915038283, + "cloid": "0x00000000000000000000000387000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "19.1", + "side": "B", + "time": 1762185392408, + "startPosition": "-237045.33", + "dir": "Close Short", + "closedPnl": "631.29893", + "hash": "0x49fb1eb4163bfd934b74042ec459c30204240099b13f1c65edc3ca06d53fd77d", + "oid": 221323126017, + "crossed": true, + "fee": "0.668874", + "tid": 1042256259130539, + "cloid": "0x00000000000000000000000388000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "40.78", + "side": "B", + "time": 1762185392408, + "startPosition": "-237026.23", + "dir": "Close Short", + "closedPnl": "1347.872794", + "hash": "0x49fb1eb4163bfd934b74042ec459c30204240099b13f1c65edc3ca06d53fd77d", + "oid": 221323126017, + "crossed": true, + "fee": "1.428099", + "tid": 197093997227658, + "cloid": "0x00000000000000000000000388000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "131784.0", + "side": "B", + "time": 1762185392810, + "startPosition": "-1196363296.0", + "dir": "Close Short", + "closedPnl": "232.466976", + "hash": "0x48bf940f1ce801044a39042ec459c902062900f4b7eb1fd6ec883f61dbebdaee", + "oid": 221323135230, + "crossed": true, + "fee": "0.104803", + "tid": 480926385301921, + "cloid": "0x00000000000000000000000385000100", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "59.88", + "side": "B", + "time": 1762185394899, + "startPosition": "-236985.45", + "dir": "Close Short", + "closedPnl": "1976.776524", + "hash": "0x45ec4f61847c1fe84766042ec459e402064300471f7f3ebae9b4fab4437ff9d2", + "oid": 221323171224, + "crossed": true, + "fee": "2.097476", + "tid": 203082501383021, + "cloid": "0x00000000000000000000000388000124", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3598.3", + "sz": "0.0373", + "side": "B", + "time": 1762185395772, + "startPosition": "-2081.3026", + "dir": "Close Short", + "closedPnl": "19.108044", + "hash": "0x6727d985af1d95e568a1042ec459f0020741006b4a10b4b70af084d86e116fd0", + "oid": 221323186232, + "crossed": true, + "fee": "0.028185", + "tid": 186783090395151, + "cloid": "0x00000000000000000000000387000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3598.3", + "sz": "2.7401", + "side": "B", + "time": 1762185395772, + "startPosition": "-2081.2653", + "dir": "Close Short", + "closedPnl": "1403.698428", + "hash": "0x6727d985af1d95e568a1042ec459f0020741006b4a10b4b70af084d86e116fd0", + "oid": 221323186232, + "crossed": true, + "fee": "2.070537", + "tid": 999015196311894, + "cloid": "0x00000000000000000000000387000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "46.49", + "side": "B", + "time": 1762185396825, + "startPosition": "-236925.57", + "dir": "Close Short", + "closedPnl": "1537.996127", + "hash": "0x5db53aa11dca2f3c5f2e042ec459fe02059e0086b8cd4e0e017de5f3dcce0927", + "oid": 221323209082, + "crossed": true, + "fee": "1.627768", + "tid": 323180096821209, + "cloid": "0x00000000000000000000000388000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "13.37", + "side": "B", + "time": 1762185396825, + "startPosition": "-236879.08", + "dir": "Close Short", + "closedPnl": "442.310351", + "hash": "0x5db53aa11dca2f3c5f2e042ec459fe02059e0086b8cd4e0e017de5f3dcce0927", + "oid": 221323209082, + "crossed": true, + "fee": "0.468127", + "tid": 454603622454203, + "cloid": "0x00000000000000000000000388000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "29798.0", + "side": "B", + "time": 1762185397361, + "startPosition": "-1196231512.0", + "dir": "Close Short", + "closedPnl": "52.533874", + "hash": "0x4620f67ced6d2210479a042ec45a030209cf0062886040e2e9e9a1cfac60fbfa", + "oid": 221323219860, + "crossed": true, + "fee": "0.023703", + "tid": 770870446446049, + "cloid": "0x00000000000000000000000385000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "29798.0", + "side": "B", + "time": 1762185397361, + "startPosition": "-1196201714.0", + "dir": "Close Short", + "closedPnl": "52.504076", + "hash": "0x4620f67ced6d2210479a042ec45a030209cf0062886040e2e9e9a1cfac60fbfa", + "oid": 221323219860, + "crossed": true, + "fee": "0.023709", + "tid": 336943885252826, + "cloid": "0x00000000000000000000000385000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "72365.0", + "side": "B", + "time": 1762185397361, + "startPosition": "-1196171916.0", + "dir": "Close Short", + "closedPnl": "127.434765", + "hash": "0x4620f67ced6d2210479a042ec45a030209cf0062886040e2e9e9a1cfac60fbfa", + "oid": 221323219860, + "crossed": true, + "fee": "0.057595", + "tid": 506715848512470, + "cloid": "0x00000000000000000000000385000102", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.9", + "sz": "2.7782", + "side": "B", + "time": 1762185397361, + "startPosition": "-2078.5252", + "dir": "Close Short", + "closedPnl": "1427.105776", + "hash": "0xc44247846d336e7ac5bc042ec45a030209d4006a08368d4c680af2d72c374865", + "oid": 221323219863, + "crossed": true, + "fee": "2.09851", + "tid": 685592072266738, + "cloid": "0x00000000000000000000000387000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "22.73", + "side": "B", + "time": 1762185398490, + "startPosition": "-236865.71", + "dir": "Close Short", + "closedPnl": "751.278779", + "hash": "0x7505fb98bcba67c9767f042ec45a12020f01007e57bd869b18cea6eb7bbe41b4", + "oid": 221323242871, + "crossed": true, + "fee": "0.795995", + "tid": 858428974332421, + "cloid": "0x00000000000000000000000388000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.77", + "sz": "0.07", + "side": "B", + "time": 1762185398490, + "startPosition": "-236842.98", + "dir": "Close Short", + "closedPnl": "2.312961", + "hash": "0x7505fb98bcba67c9767f042ec45a12020f01007e57bd869b18cea6eb7bbe41b4", + "oid": 221323242871, + "crossed": true, + "fee": "0.002451", + "tid": 501841912901102, + "cloid": "0x00000000000000000000000388000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.77", + "sz": "12.0", + "side": "B", + "time": 1762185398490, + "startPosition": "-236842.91", + "dir": "Close Short", + "closedPnl": "396.5076", + "hash": "0x7505fb98bcba67c9767f042ec45a12020f01007e57bd869b18cea6eb7bbe41b4", + "oid": 221323242871, + "crossed": true, + "fee": "0.42026", + "tid": 912035191363274, + "cloid": "0x00000000000000000000000388000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.78", + "sz": "3.0", + "side": "B", + "time": 1762185398490, + "startPosition": "-236830.91", + "dir": "Close Short", + "closedPnl": "99.0969", + "hash": "0x7505fb98bcba67c9767f042ec45a12020f01007e57bd869b18cea6eb7bbe41b4", + "oid": 221323242871, + "crossed": true, + "fee": "0.105071", + "tid": 994520624627547, + "cloid": "0x00000000000000000000000388000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.79", + "sz": "0.17", + "side": "B", + "time": 1762185398490, + "startPosition": "-236827.91", + "dir": "Close Short", + "closedPnl": "5.613791", + "hash": "0x7505fb98bcba67c9767f042ec45a12020f01007e57bd869b18cea6eb7bbe41b4", + "oid": 221323242871, + "crossed": true, + "fee": "0.005954", + "tid": 539176317228679, + "cloid": "0x00000000000000000000000388000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.79", + "sz": "12.0", + "side": "B", + "time": 1762185398490, + "startPosition": "-236827.74", + "dir": "Close Short", + "closedPnl": "396.2676", + "hash": "0x7505fb98bcba67c9767f042ec45a12020f01007e57bd869b18cea6eb7bbe41b4", + "oid": 221323242871, + "crossed": true, + "fee": "0.42031", + "tid": 634852715254439, + "cloid": "0x00000000000000000000000388000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.79", + "sz": "9.93", + "side": "B", + "time": 1762185398490, + "startPosition": "-236815.74", + "dir": "Close Short", + "closedPnl": "327.911439", + "hash": "0x7505fb98bcba67c9767f042ec45a12020f01007e57bd869b18cea6eb7bbe41b4", + "oid": 221323242871, + "crossed": true, + "fee": "0.347807", + "tid": 267290863896957, + "cloid": "0x00000000000000000000000388000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.8", + "sz": "1.3895", + "side": "B", + "time": 1762185398908, + "startPosition": "-2075.747", + "dir": "Close Short", + "closedPnl": "712.50781", + "hash": "0xd121168c0c64aa1cd29a042ec45a160207a00071a767c8ee74e9c1decb688407", + "oid": 221323250409, + "crossed": true, + "fee": "1.04982", + "tid": 1067050280365334, + "cloid": "0x00000000000000000000000387000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.8", + "sz": "1.3886", + "side": "B", + "time": 1762185398908, + "startPosition": "-2074.3575", + "dir": "Close Short", + "closedPnl": "712.046308", + "hash": "0xd121168c0c64aa1cd29a042ec45a160207a00071a767c8ee74e9c1decb688407", + "oid": 221323250409, + "crossed": true, + "fee": "1.04914", + "tid": 189772917854916, + "cloid": "0x00000000000000000000000387000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "59.86", + "side": "B", + "time": 1762185400563, + "startPosition": "-236805.81", + "dir": "Close Short", + "closedPnl": "1976.116278", + "hash": "0x64a0b61a4ace1156661a042ec45a29020cd700ffe5c130280869616d09c1eb41", + "oid": 221323274591, + "crossed": true, + "fee": "2.096776", + "tid": 448247857855063, + "cloid": "0x00000000000000000000000388000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.8", + "sz": "1.8", + "side": "B", + "time": 1762185400563, + "startPosition": "-2072.9689", + "dir": "Close Short", + "closedPnl": "923.004", + "hash": "0x2fee9086b1031b453168042ec45a29020cdb006c4c063a17d3b73bd97006f52f", + "oid": 221323274595, + "crossed": true, + "fee": "1.359968", + "tid": 236605542437405, + "cloid": "0x00000000000000000000000387000143", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.8", + "sz": "0.9777", + "side": "B", + "time": 1762185400563, + "startPosition": "-2071.1689", + "dir": "Close Short", + "closedPnl": "501.345006", + "hash": "0x2fee9086b1031b453168042ec45a29020cdb006c4c063a17d3b73bd97006f52f", + "oid": 221323274595, + "crossed": true, + "fee": "0.738689", + "tid": 296850572697595, + "cloid": "0x00000000000000000000000387000143", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131991.0", + "side": "B", + "time": 1762185401837, + "startPosition": "-1196099551.0", + "dir": "Close Short", + "closedPnl": "232.568142", + "hash": "0xfab1690baa88fa92fc2b042ec45a3a02021e00f1458c19659e7a145e698cd47d", + "oid": 221323296216, + "crossed": true, + "fee": "0.105023", + "tid": 1029240587240526, + "cloid": "0x00000000000000000000000385000104", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.8", + "sz": "1.1945", + "side": "B", + "time": 1762185402242, + "startPosition": "-2070.1912", + "dir": "Close Short", + "closedPnl": "612.51571", + "hash": "0x8c14ced98377258b8d8e042ec45a3f0202ac00bf1e7a445d2fdd7a2c427aff76", + "oid": 221323301006, + "crossed": true, + "fee": "0.90249", + "tid": 465917740464359, + "cloid": "0x00000000000000000000000387000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.8", + "sz": "1.5828", + "side": "B", + "time": 1762185402242, + "startPosition": "-2068.9967", + "dir": "Close Short", + "closedPnl": "811.628184", + "hash": "0x8c14ced98377258b8d8e042ec45a3f0202ac00bf1e7a445d2fdd7a2c427aff76", + "oid": 221323301006, + "crossed": true, + "fee": "1.195865", + "tid": 666752612628140, + "cloid": "0x00000000000000000000000387000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "59.88", + "side": "B", + "time": 1762185403308, + "startPosition": "-236745.95", + "dir": "Close Short", + "closedPnl": "1979.770524", + "hash": "0xdbb4d7f802b35555dd2e042ec45a4d0201fa00dd9db674277f7d834ac1b72f40", + "oid": 221323310387, + "crossed": true, + "fee": "2.096847", + "tid": 239973477887770, + "cloid": "0x00000000000000000000000388000128", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.8", + "sz": "2.0177", + "side": "B", + "time": 1762185404107, + "startPosition": "-2067.4139", + "dir": "Close Short", + "closedPnl": "1034.636206", + "hash": "0xa0e5fce3e00f3daea25f042ec45a5802022000c97b025c8044aea8369f031799", + "oid": 221323317379, + "crossed": true, + "fee": "1.524449", + "tid": 181836627809851, + "cloid": "0x00000000000000000000000387000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.8", + "sz": "0.7597", + "side": "B", + "time": 1762185404107, + "startPosition": "-2065.3962", + "dir": "Close Short", + "closedPnl": "389.558966", + "hash": "0xa0e5fce3e00f3daea25f042ec45a5802022000c97b025c8044aea8369f031799", + "oid": 221323317379, + "crossed": true, + "fee": "0.573982", + "tid": 969673311718271, + "cloid": "0x00000000000000000000000387000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "34.52", + "side": "B", + "time": 1762185404930, + "startPosition": "-236686.07", + "dir": "Close Short", + "closedPnl": "1142.000996", + "hash": "0xf759e6e26e24948bf8d3042ec45a620201a000c80927b35e9b2292352d286e76", + "oid": 221323323775, + "crossed": true, + "fee": "1.208659", + "tid": 107611209565133, + "cloid": "0x00000000000000000000000388000129", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "25.37", + "side": "B", + "time": 1762185404930, + "startPosition": "-236651.55", + "dir": "Close Short", + "closedPnl": "839.297951", + "hash": "0xf759e6e26e24948bf8d3042ec45a620201a000c80927b35e9b2292352d286e76", + "oid": 221323323775, + "crossed": true, + "fee": "0.888287", + "tid": 945650228280919, + "cloid": "0x00000000000000000000000388000129", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.7", + "sz": "0.6097", + "side": "B", + "time": 1762185405723, + "startPosition": "-2064.6365", + "dir": "Close Short", + "closedPnl": "312.702936", + "hash": "0x4cb06304c78c7cce4e2a042ec45a6d02122f00ea628f9ba0f0790e57868056b8", + "oid": 221323332934, + "crossed": true, + "fee": "0.460638", + "tid": 55891693094187, + "cloid": "0x00000000000000000000000387000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.7", + "sz": "1.7468", + "side": "B", + "time": 1762185405723, + "startPosition": "-2064.0268", + "dir": "Close Short", + "closedPnl": "895.898784", + "hash": "0x4cb06304c78c7cce4e2a042ec45a6d02122f00ea628f9ba0f0790e57868056b8", + "oid": 221323332934, + "crossed": true, + "fee": "1.319737", + "tid": 631405333932475, + "cloid": "0x00000000000000000000000387000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.7", + "sz": "0.421", + "side": "B", + "time": 1762185405723, + "startPosition": "-2062.28", + "dir": "Close Short", + "closedPnl": "215.92248", + "hash": "0x4cb06304c78c7cce4e2a042ec45a6d02122f00ea628f9ba0f0790e57868056b8", + "oid": 221323332934, + "crossed": true, + "fee": "0.318072", + "tid": 48656467862843, + "cloid": "0x00000000000000000000000387000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "58.79", + "side": "B", + "time": 1762185406729, + "startPosition": "-236626.18", + "dir": "Close Short", + "closedPnl": "1944.908417", + "hash": "0x98647f421e50e71899de042ec45a7d0204d40027b95405ea3c2d2a94dd54c103", + "oid": 221323348237, + "crossed": true, + "fee": "2.058431", + "tid": 308727164629556, + "cloid": "0x00000000000000000000000388000130", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "1.11", + "side": "B", + "time": 1762185406729, + "startPosition": "-236567.39", + "dir": "Close Short", + "closedPnl": "36.721353", + "hash": "0x98647f421e50e71899de042ec45a7d0204d40027b95405ea3c2d2a94dd54c103", + "oid": 221323348237, + "crossed": true, + "fee": "0.038864", + "tid": 1041405056575120, + "cloid": "0x00000000000000000000000388000130", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.2", + "sz": "1.1282", + "side": "B", + "time": 1762185407163, + "startPosition": "-2061.859", + "dir": "Close Short", + "closedPnl": "579.195316", + "hash": "0x134015795a63da8314b9042ec45a8302069f005ef566f955b708c0cc1967b46d", + "oid": 221323355199, + "crossed": true, + "fee": "0.852255", + "tid": 765372199260506, + "cloid": "0x00000000000000000000000387000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.2", + "sz": "1.6501", + "side": "B", + "time": 1762185407163, + "startPosition": "-2060.7308", + "dir": "Close Short", + "closedPnl": "847.128338", + "hash": "0x134015795a63da8314b9042ec45a8302069f005ef566f955b708c0cc1967b46d", + "oid": 221323355199, + "crossed": true, + "fee": "1.246505", + "tid": 831019898766276, + "cloid": "0x00000000000000000000000387000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "59.92", + "side": "B", + "time": 1762185408319, + "startPosition": "-236566.28", + "dir": "Close Short", + "closedPnl": "1985.886616", + "hash": "0x7bb1a6988a4a959e7d2b042ec45a91020387007e254db4701f7a51eb494e6f89", + "oid": 221323377774, + "crossed": true, + "fee": "2.097241", + "tid": 190320767710901, + "cloid": "0x00000000000000000000000388000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.5", + "sz": "2.7777", + "side": "B", + "time": 1762185408887, + "startPosition": "-2059.0807", + "dir": "Close Short", + "closedPnl": "1425.182316", + "hash": "0x8a4163071ab891c88bbb042ec45a990208fe00ecb5bbb09a2e0a0e59d9bc6bb3", + "oid": 221323390899, + "crossed": true, + "fee": "2.098482", + "tid": 793670046967638, + "cloid": "0x00000000000000000000000387000148", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "25.38", + "side": "B", + "time": 1762185410106, + "startPosition": "-236506.36", + "dir": "Close Short", + "closedPnl": "842.420574", + "hash": "0x848c221389c8924a8605042ec45aa702075100f924cbb11c2854cd6648cc6c35", + "oid": 221323413647, + "crossed": true, + "fee": "0.888051", + "tid": 809072014343548, + "cloid": "0x00000000000000000000000388000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "34.53", + "side": "B", + "time": 1762185410106, + "startPosition": "-236480.98", + "dir": "Close Short", + "closedPnl": "1146.130119", + "hash": "0x848c221389c8924a8605042ec45aa702075100f924cbb11c2854cd6648cc6c35", + "oid": 221323413647, + "crossed": true, + "fee": "1.208211", + "tid": 154507124111169, + "cloid": "0x00000000000000000000000388000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "0.02", + "side": "B", + "time": 1762185410106, + "startPosition": "-236446.45", + "dir": "Close Short", + "closedPnl": "0.663846", + "hash": "0x848c221389c8924a8605042ec45aa702075100f924cbb11c2854cd6648cc6c35", + "oid": 221323413647, + "crossed": true, + "fee": "0.000699", + "tid": 639942503705065, + "cloid": "0x00000000000000000000000388000132", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.1", + "sz": "0.3847", + "side": "B", + "time": 1762185410544, + "startPosition": "-2056.303", + "dir": "Close Short", + "closedPnl": "197.535756", + "hash": "0x57bc0b2519521a805935042ec45aaa020863000ab4553952fb84b677d855f46a", + "oid": 221323419220, + "crossed": true, + "fee": "0.290598", + "tid": 152163515817229, + "cloid": "0x00000000000000000000000387000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.1", + "sz": "1.6975", + "side": "B", + "time": 1762185410544, + "startPosition": "-2055.9183", + "dir": "Close Short", + "closedPnl": "871.6323", + "hash": "0x57bc0b2519521a805935042ec45aaa020863000ab4553952fb84b677d855f46a", + "oid": 221323419220, + "crossed": true, + "fee": "1.282276", + "tid": 26053224305924, + "cloid": "0x00000000000000000000000387000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.1", + "sz": "0.6955", + "side": "B", + "time": 1762185410544, + "startPosition": "-2054.2208", + "dir": "Close Short", + "closedPnl": "357.12534", + "hash": "0x57bc0b2519521a805935042ec45aaa020863000ab4553952fb84b677d855f46a", + "oid": 221323419220, + "crossed": true, + "fee": "0.525374", + "tid": 961508911301715, + "cloid": "0x00000000000000000000000387000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131922.0", + "side": "B", + "time": 1762185410544, + "startPosition": "-1195967560.0", + "dir": "Close Short", + "closedPnl": "232.314642", + "hash": "0xd5dd5c2c992866ead757042ec45aaa0208680012342b85bc79a6077f582c40d5", + "oid": 221323419222, + "crossed": true, + "fee": "0.104996", + "tid": 1103979098659766, + "cloid": "0x00000000000000000000000385000108", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.0", + "sz": "2.7781", + "side": "B", + "time": 1762185411963, + "startPosition": "-2053.5253", + "dir": "Close Short", + "closedPnl": "1426.776598", + "hash": "0x538ae1dfd883fecb5504042ec45aba02057e00c573871d9df7538d329787d8b5", + "oid": 221323434831, + "crossed": true, + "fee": "2.098493", + "tid": 1110861981504605, + "cloid": "0x00000000000000000000000387000150", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "16.0", + "side": "B", + "time": 1762185411963, + "startPosition": "-1195835638.0", + "dir": "Close Short", + "closedPnl": "0.028176", + "hash": "0x3753201d8b7cd02d38cc042ec45aba0205850003267feeffdb1bcb704a70aa17", + "oid": 221323434836, + "crossed": true, + "fee": "0.000012", + "tid": 367546004540374, + "cloid": "0x00000000000000000000000385000109", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131906.0", + "side": "B", + "time": 1762185411963, + "startPosition": "-1195835622.0", + "dir": "Close Short", + "closedPnl": "232.286466", + "hash": "0x3753201d8b7cd02d38cc042ec45aba0205850003267feeffdb1bcb704a70aa17", + "oid": 221323434836, + "crossed": true, + "fee": "0.104983", + "tid": 444191535106185, + "cloid": "0x00000000000000000000000385000109", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "3.0", + "side": "B", + "time": 1762185412608, + "startPosition": "-236446.43", + "dir": "Close Short", + "closedPnl": "99.5769", + "hash": "0x374488f77e53f38938be042ec45ac20208bb00dd1957125bdb0d344a3d57cd73", + "oid": 221323446199, + "crossed": true, + "fee": "0.10497", + "tid": 683573287344593, + "cloid": "0x00000000000000000000000388000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.64", + "sz": "12.0", + "side": "B", + "time": 1762185412608, + "startPosition": "-236443.43", + "dir": "Close Short", + "closedPnl": "398.0676", + "hash": "0x374488f77e53f38938be042ec45ac20208bb00dd1957125bdb0d344a3d57cd73", + "oid": 221323446199, + "crossed": true, + "fee": "0.419932", + "tid": 2505603016567, + "cloid": "0x00000000000000000000000388000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.65", + "sz": "0.29", + "side": "B", + "time": 1762185412608, + "startPosition": "-236431.43", + "dir": "Close Short", + "closedPnl": "9.617067", + "hash": "0x374488f77e53f38938be042ec45ac20208bb00dd1957125bdb0d344a3d57cd73", + "oid": 221323446199, + "crossed": true, + "fee": "0.010148", + "tid": 700733140543360, + "cloid": "0x00000000000000000000000388000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "12.0", + "side": "B", + "time": 1762185412608, + "startPosition": "-236431.14", + "dir": "Close Short", + "closedPnl": "397.8276", + "hash": "0x374488f77e53f38938be042ec45ac20208bb00dd1957125bdb0d344a3d57cd73", + "oid": 221323446199, + "crossed": true, + "fee": "0.419983", + "tid": 46791102529115, + "cloid": "0x00000000000000000000000388000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "0.17", + "side": "B", + "time": 1762185412608, + "startPosition": "-236419.14", + "dir": "Close Short", + "closedPnl": "5.634191", + "hash": "0x374488f77e53f38938be042ec45ac20208bb00dd1957125bdb0d344a3d57cd73", + "oid": 221323446199, + "crossed": true, + "fee": "0.00595", + "tid": 427215493539486, + "cloid": "0x00000000000000000000000388000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "0.29", + "side": "B", + "time": 1762185412608, + "startPosition": "-236418.97", + "dir": "Close Short", + "closedPnl": "9.611267", + "hash": "0x374488f77e53f38938be042ec45ac20208bb00dd1957125bdb0d344a3d57cd73", + "oid": 221323446199, + "crossed": true, + "fee": "0.01015", + "tid": 719590574227259, + "cloid": "0x00000000000000000000000388000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.69", + "sz": "32.18", + "side": "B", + "time": 1762185412608, + "startPosition": "-236418.68", + "dir": "Close Short", + "closedPnl": "1065.875614", + "hash": "0x374488f77e53f38938be042ec45ac20208bb00dd1957125bdb0d344a3d57cd73", + "oid": 221323446199, + "crossed": true, + "fee": "1.126457", + "tid": 171895909729654, + "cloid": "0x00000000000000000000000388000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.3", + "sz": "0.0358", + "side": "B", + "time": 1762185413430, + "startPosition": "-2050.7472", + "dir": "Close Short", + "closedPnl": "18.375424", + "hash": "0x7fb0883bfd42487a812a042ec45acd02080b00219845674c2379338ebc462265", + "oid": 221323464623, + "crossed": true, + "fee": "0.027044", + "tid": 863872320283221, + "cloid": "0x00000000000000000000000387000151", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.5", + "sz": "1.0883", + "side": "B", + "time": 1762185413430, + "startPosition": "-2050.7114", + "dir": "Close Short", + "closedPnl": "558.384964", + "hash": "0x7fb0883bfd42487a812a042ec45acd02080b00219845674c2379338ebc462265", + "oid": 221323464623, + "crossed": true, + "fee": "0.822183", + "tid": 419455961511743, + "cloid": "0x00000000000000000000000387000151", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.5", + "sz": "0.0042", + "side": "B", + "time": 1762185413430, + "startPosition": "-2049.6231", + "dir": "Close Short", + "closedPnl": "2.154936", + "hash": "0x7fb0883bfd42487a812a042ec45acd02080b00219845674c2379338ebc462265", + "oid": 221323464623, + "crossed": true, + "fee": "0.003172", + "tid": 863720561944734, + "cloid": "0x00000000000000000000000387000151", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.6", + "sz": "1.6493", + "side": "B", + "time": 1762185413430, + "startPosition": "-2049.6189", + "dir": "Close Short", + "closedPnl": "846.057914", + "hash": "0x7fb0883bfd42487a812a042ec45acd02080b00219845674c2379338ebc462265", + "oid": 221323464623, + "crossed": true, + "fee": "1.246039", + "tid": 936843847991402, + "cloid": "0x00000000000000000000000387000151", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.71", + "sz": "22.73", + "side": "B", + "time": 1762185414654, + "startPosition": "-236386.5", + "dir": "Close Short", + "closedPnl": "752.415279", + "hash": "0xd31e833cafdb21f7d498042ec45ade02020700224ade40c976e72e8f6edefbe2", + "oid": 221323486903, + "crossed": true, + "fee": "0.795756", + "tid": 220664966986448, + "cloid": "0x00000000000000000000000388000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.71", + "sz": "0.95", + "side": "B", + "time": 1762185414654, + "startPosition": "-236363.77", + "dir": "Close Short", + "closedPnl": "31.447185", + "hash": "0xd31e833cafdb21f7d498042ec45ade02020700224ade40c976e72e8f6edefbe2", + "oid": 221323486903, + "crossed": true, + "fee": "0.033258", + "tid": 414773333391140, + "cloid": "0x00000000000000000000000388000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.71", + "sz": "36.22", + "side": "B", + "time": 1762185414654, + "startPosition": "-236362.82", + "dir": "Close Short", + "closedPnl": "1198.965306", + "hash": "0xd31e833cafdb21f7d498042ec45ade02020700224ade40c976e72e8f6edefbe2", + "oid": 221323486903, + "crossed": true, + "fee": "1.268029", + "tid": 1022395168727049, + "cloid": "0x00000000000000000000000388000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.6", + "sz": "0.0277", + "side": "B", + "time": 1762185414977, + "startPosition": "-2047.9696", + "dir": "Close Short", + "closedPnl": "14.209546", + "hash": "0x8215d62cf7493491838f042ec45ae30201bd0012924c536325de817fb64d0e7c", + "oid": 221323488622, + "crossed": true, + "fee": "0.020927", + "tid": 866272700309782, + "cloid": "0x00000000000000000000000387000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.6", + "sz": "2.7499", + "side": "B", + "time": 1762185414977, + "startPosition": "-2047.9419", + "dir": "Close Short", + "closedPnl": "1410.643702", + "hash": "0x8215d62cf7493491838f042ec45ae30201bd0012924c536325de817fb64d0e7c", + "oid": 221323488622, + "crossed": true, + "fee": "2.077538", + "tid": 770358068203643, + "cloid": "0x00000000000000000000000387000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.6", + "sz": "2.7775", + "side": "B", + "time": 1762185416949, + "startPosition": "-2045.192", + "dir": "Close Short", + "closedPnl": "1424.80195", + "hash": "0x7c32f4c5e899ab6a7dac042ec45afe0208d300ab839cca3c1ffba018a79d8555", + "oid": 221323518324, + "crossed": true, + "fee": "2.09839", + "tid": 286414838817110, + "cloid": "0x00000000000000000000000387000153", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "59.88", + "side": "B", + "time": 1762185417492, + "startPosition": "-236326.6", + "dir": "Close Short", + "closedPnl": "1976.776524", + "hash": "0x1d4a05b6b0a302901ec3042ec45b06020dd4009c4ba62162c112b1096fa6dc7a", + "oid": 221323530518, + "crossed": true, + "fee": "2.097476", + "tid": 997975002619296, + "cloid": "0x00000000000000000000000388000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.9", + "sz": "0.1065", + "side": "B", + "time": 1762185418493, + "startPosition": "-2042.4145", + "dir": "Close Short", + "closedPnl": "54.70692", + "hash": "0x9bd4c8164e42d6f69d4e042ec45b140209f800fbe945f5c83f9d73690d46b0e1", + "oid": 221323550092, + "crossed": true, + "fee": "0.080444", + "tid": 672257773077450, + "cloid": "0x00000000000000000000000387000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.9", + "sz": "1.5803", + "side": "B", + "time": 1762185418493, + "startPosition": "-2042.308", + "dir": "Close Short", + "closedPnl": "811.768504", + "hash": "0x9bd4c8164e42d6f69d4e042ec45b140209f800fbe945f5c83f9d73690d46b0e1", + "oid": 221323550092, + "crossed": true, + "fee": "1.193678", + "tid": 485377745111378, + "cloid": "0x00000000000000000000000387000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.9", + "sz": "1.0866", + "side": "B", + "time": 1762185418493, + "startPosition": "-2040.7277", + "dir": "Close Short", + "closedPnl": "558.164688", + "hash": "0x9bd4c8164e42d6f69d4e042ec45b140209f800fbe945f5c83f9d73690d46b0e1", + "oid": 221323550092, + "crossed": true, + "fee": "0.820762", + "tid": 597383849350471, + "cloid": "0x00000000000000000000000387000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.9", + "sz": "0.0042", + "side": "B", + "time": 1762185418493, + "startPosition": "-2039.6411", + "dir": "Close Short", + "closedPnl": "2.157456", + "hash": "0x9bd4c8164e42d6f69d4e042ec45b140209f800fbe945f5c83f9d73690d46b0e1", + "oid": 221323550092, + "crossed": true, + "fee": "0.003172", + "tid": 916659813757119, + "cloid": "0x00000000000000000000000387000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26926", + "sz": "372.8", + "side": "B", + "time": 1762185418869, + "startPosition": "-4007977.5", + "dir": "Close Short", + "closedPnl": "198.333328", + "hash": "0x67f1ad6673f5973c696b042ec45b1a02036d004c0ef8b60e0bba58b932f97127", + "oid": 221323530521, + "crossed": false, + "fee": "0.00281", + "tid": 202051039685577, + "cloid": "0x00000000000000000000000384000111", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "121160.0", + "side": "B", + "time": 1762185419005, + "startPosition": "-1195703716.0", + "dir": "Close Short", + "closedPnl": "213.36276", + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "oid": 221323554007, + "crossed": false, + "fee": "0.012857", + "tid": 664273302630236, + "cloid": "0x00000000000000000000000385000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.77", + "sz": "59.89", + "side": "B", + "time": 1762185419146, + "startPosition": "-236266.72", + "dir": "Close Short", + "closedPnl": "1978.903347", + "hash": "0x69468d338ed9e1ed6ac0042ec45b1e020437001929dd00bf0d0f38864dddbbd8", + "oid": 221323563391, + "crossed": true, + "fee": "2.097449", + "tid": 362562574342973, + "cloid": "0x00000000000000000000000388000136", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26898", + "sz": "372.8", + "side": "A", + "time": 1762185419510, + "startPosition": "4025573.9960630001", + "dir": "Sell", + "closedPnl": "-198.59570875", + "hash": "0xee44e5af7a72b779efbe042ec45b210203b200951575d64b920d910239769164", + "oid": 221323571920, + "crossed": true, + "fee": "0.0280772", + "tid": 155580048999319, + "cloid": "0x10000000000000000000000475000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.9", + "sz": "2.7782", + "side": "B", + "time": 1762185420027, + "startPosition": "-2039.6369", + "dir": "Close Short", + "closedPnl": "1427.105776", + "hash": "0xfffbdac81bcb283a0175042ec45b2802012c00adb6ce470da3c4861adacf0225", + "oid": 221323578430, + "crossed": true, + "fee": "2.09851", + "tid": 697751022053597, + "cloid": "0x00000000000000000000000387000155", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.77", + "sz": "59.88", + "side": "B", + "time": 1762185421079, + "startPosition": "-236206.83", + "dir": "Close Short", + "closedPnl": "1978.572924", + "hash": "0x54cc60374a4109fc5646042ec45b35020d53001ce54428cef8950b8a0944e3e6", + "oid": 221323598497, + "crossed": true, + "fee": "2.097099", + "tid": 353445881322109, + "cloid": "0x00000000000000000000000388000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "10697.0", + "side": "B", + "time": 1762185421552, + "startPosition": "-1195582556.0", + "dir": "Close Short", + "closedPnl": "18.837417", + "hash": "0x2f581da7396625aa30d1042ec45b3d0210ed008cd469447cd320c8f9f869ff94", + "oid": 221323598505, + "crossed": false, + "fee": "0.001135", + "tid": 315732685112936, + "cloid": "0x00000000000000000000000385000113", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.8", + "sz": "2.7786", + "side": "B", + "time": 1762185421975, + "startPosition": "-2036.8587", + "dir": "Close Short", + "closedPnl": "1427.589108", + "hash": "0x7b6074c42240cedd7cda042ec45b420217d200a9bd43edaf1f292016e144a8c8", + "oid": 221323614063, + "crossed": true, + "fee": "2.098754", + "tid": 634697638562420, + "cloid": "0x00000000000000000000000387000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "59.93", + "side": "B", + "time": 1762185423114, + "startPosition": "-236146.95", + "dir": "Close Short", + "closedPnl": "1989.214539", + "hash": "0xdbc1468431533b35dd3b042ec45b4f0209ea0069cc565a077f89f1d6f0571520", + "oid": 221323638433, + "crossed": true, + "fee": "2.096962", + "tid": 829558217970005, + "cloid": "0x00000000000000000000000388000138", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26896", + "sz": "372.8", + "side": "B", + "time": 1762185424079, + "startPosition": "-4007604.7000000002", + "dir": "Close Short", + "closedPnl": "198.445168", + "hash": "0xec93d5273d4e7345ee0d042ec45b5c020700000cd8419217905c8079fc424d30", + "oid": 221323591135, + "crossed": false, + "fee": "0.002807", + "tid": 437422659493277, + "cloid": "0x00000000000000000000000384000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26896", + "sz": "1346.2", + "side": "B", + "time": 1762185424247, + "startPosition": "-4007231.8999999999", + "dir": "Close Short", + "closedPnl": "716.595722", + "hash": "0x5ffbb77be048225e6175042ec45b5e020d2600617b4b413003c462ce9f4bfc49", + "oid": 221323591135, + "crossed": false, + "fee": "0.010138", + "tid": 609366032044830, + "cloid": "0x00000000000000000000000384000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26896", + "sz": "1624.3", + "side": "B", + "time": 1762185424247, + "startPosition": "-4005885.7000000002", + "dir": "Close Short", + "closedPnl": "864.631133", + "hash": "0xda5faa925fbb079ddbd9042ec45b5e020d350077fabe266f7e2855e51ebee188", + "oid": 221323591135, + "crossed": false, + "fee": "0.012232", + "tid": 369731638040083, + "cloid": "0x00000000000000000000000384000112", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003781", + "sz": "132064.0", + "side": "B", + "time": 1762185424585, + "startPosition": "-1195571859.0", + "dir": "Close Short", + "closedPnl": "233.75328", + "hash": "0x18ce71b7c9a9e8da1a48042ec45b63021953009d64ad07acbc971d0a88adc2c4", + "oid": 221323677268, + "crossed": true, + "fee": "0.10486", + "tid": 1004254266583322, + "cloid": "0x00000000000000000000000385000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "59.98", + "side": "B", + "time": 1762185425697, + "startPosition": "-236087.02", + "dir": "Close Short", + "closedPnl": "1998.671554", + "hash": "0x9914566130fb710f9a8e042ec45b6d0204de0046cbfe8fe13cdd01b3efff4afa", + "oid": 221323693576, + "crossed": true, + "fee": "2.097074", + "tid": 405305585332716, + "cloid": "0x00000000000000000000000388000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.7", + "sz": "2.7791", + "side": "B", + "time": 1762185425697, + "startPosition": "-2034.0801", + "dir": "Close Short", + "closedPnl": "1433.682108", + "hash": "0x8fe66cb97a4097ff9160042ec45b6d02053b009f1543b6d133af180c394471ea", + "oid": 221323693620, + "crossed": true, + "fee": "2.097906", + "tid": 216169305945200, + "cloid": "0x00000000000000000000000387000157", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "83847.0", + "side": "B", + "time": 1762185427477, + "startPosition": "-1195439795.0", + "dir": "Close Short", + "closedPnl": "148.493037", + "hash": "0x6b998b4cd5f5e6dc6d13042ec45b86020f71003270f905ae0f62369f94f9c0c7", + "oid": 221323720189, + "crossed": false, + "fee": "0.008874", + "tid": 975511721104988, + "cloid": "0x00000000000000000000000385000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "48453.0", + "side": "B", + "time": 1762185427529, + "startPosition": "-1195355948.0", + "dir": "Close Short", + "closedPnl": "85.810263", + "hash": "0x2e504a49823245122fca042ec45b87020910002f1d3563e4d218f59c41361efc", + "oid": 221323720189, + "crossed": false, + "fee": "0.005128", + "tid": 965805244563675, + "cloid": "0x00000000000000000000000385000115", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.48", + "sz": "60.0", + "side": "B", + "time": 1762185427712, + "startPosition": "-236027.04", + "dir": "Close Short", + "closedPnl": "1999.938", + "hash": "0x4334f8e45e54ebd244ae042ec45b89020e9800c9f9580aa4e6fda4371d58c5bc", + "oid": 221323743624, + "crossed": true, + "fee": "2.097648", + "tid": 135487441071469, + "cloid": "0x00000000000000000000000388000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.0", + "sz": "0.1104", + "side": "B", + "time": 1762185427712, + "startPosition": "-2031.301", + "dir": "Close Short", + "closedPnl": "57.030432", + "hash": "0x57f1fec4aaa54c1a596b042ec45b89020ea500aa45a86aecfbbaaa1769a92604", + "oid": 221323743632, + "crossed": true, + "fee": "0.083323", + "tid": 362913338225401, + "cloid": "0x00000000000000000000000387000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.0", + "sz": "0.2677", + "side": "B", + "time": 1762185427712, + "startPosition": "-2031.1906", + "dir": "Close Short", + "closedPnl": "138.288466", + "hash": "0x57f1fec4aaa54c1a596b042ec45b89020ea500aa45a86aecfbbaaa1769a92604", + "oid": 221323743632, + "crossed": true, + "fee": "0.202043", + "tid": 987781930554859, + "cloid": "0x00000000000000000000000387000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.0", + "sz": "1.2642", + "side": "B", + "time": 1762185427712, + "startPosition": "-2030.9229", + "dir": "Close Short", + "closedPnl": "653.060436", + "hash": "0x57f1fec4aaa54c1a596b042ec45b89020ea500aa45a86aecfbbaaa1769a92604", + "oid": 221323743632, + "crossed": true, + "fee": "0.954142", + "tid": 622409241234010, + "cloid": "0x00000000000000000000000387000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.0", + "sz": "1.138", + "side": "B", + "time": 1762185427712, + "startPosition": "-2029.6587", + "dir": "Close Short", + "closedPnl": "587.86804", + "hash": "0x57f1fec4aaa54c1a596b042ec45b89020ea500aa45a86aecfbbaaa1769a92604", + "oid": 221323743632, + "crossed": true, + "fee": "0.858894", + "tid": 892654968716610, + "cloid": "0x00000000000000000000000387000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.6", + "sz": "2.7805", + "side": "B", + "time": 1762185429564, + "startPosition": "-2028.5207", + "dir": "Close Short", + "closedPnl": "1437.46289", + "hash": "0x65679c044688b51366e1042ec45b9d0205af00e9e18bd3e509304757058c8efe", + "oid": 221323781417, + "crossed": true, + "fee": "2.098321", + "tid": 369358850662180, + "cloid": "0x00000000000000000000000387000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "132345.0", + "side": "B", + "time": 1762185429776, + "startPosition": "-1195307495.0", + "dir": "Close Short", + "closedPnl": "234.382995", + "hash": "0x89818e358c5fd41f8afb042ec45ba00203c5001b2752f2f12d4a39884b53ae0a", + "oid": 221323784485, + "crossed": true, + "fee": "0.105055", + "tid": 294289660274506, + "cloid": "0x00000000000000000000000385000116", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "11.7", + "side": "B", + "time": 1762185429776, + "startPosition": "-235967.04", + "dir": "Close Short", + "closedPnl": "390.33891", + "hash": "0x3c5504d0a5e1169b3dce042ec45ba00203c600b640e4356de01db02364e4f085", + "oid": 221323784486, + "crossed": true, + "fee": "0.408967", + "tid": 497158647257213, + "cloid": "0x00000000000000000000000388000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.47", + "sz": "12.0", + "side": "B", + "time": 1762185429776, + "startPosition": "-235955.34", + "dir": "Close Short", + "closedPnl": "400.1076", + "hash": "0x3c5504d0a5e1169b3dce042ec45ba00203c600b640e4356de01db02364e4f085", + "oid": 221323784486, + "crossed": true, + "fee": "0.419504", + "tid": 446439911694652, + "cloid": "0x00000000000000000000000388000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "1.0", + "side": "B", + "time": 1762185429776, + "startPosition": "-235943.34", + "dir": "Close Short", + "closedPnl": "33.3223", + "hash": "0x3c5504d0a5e1169b3dce042ec45ba00203c600b640e4356de01db02364e4f085", + "oid": 221323784486, + "crossed": true, + "fee": "0.034962", + "tid": 514165906760641, + "cloid": "0x00000000000000000000000388000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "35.3", + "side": "B", + "time": 1762185429776, + "startPosition": "-235942.34", + "dir": "Close Short", + "closedPnl": "1175.92419", + "hash": "0x3c5504d0a5e1169b3dce042ec45ba00203c600b640e4356de01db02364e4f085", + "oid": 221323784486, + "crossed": true, + "fee": "1.234264", + "tid": 751947442845125, + "cloid": "0x00000000000000000000000388000141", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.2", + "sz": "2.0861", + "side": "B", + "time": 1762185431244, + "startPosition": "-2025.7402", + "dir": "Close Short", + "closedPnl": "1075.134218", + "hash": "0x915e4e12d4e049f892d8042ec45bb202045c00f86fe368ca3526f96593e423e3", + "oid": 221323815822, + "crossed": true, + "fee": "1.574988", + "tid": 702136405432125, + "cloid": "0x00000000000000000000000387000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.2", + "sz": "0.6934", + "side": "B", + "time": 1762185431244, + "startPosition": "-2023.6541", + "dir": "Close Short", + "closedPnl": "357.364492", + "hash": "0x915e4e12d4e049f892d8042ec45bb202045c00f86fe368ca3526f96593e423e3", + "oid": 221323815822, + "crossed": true, + "fee": "0.523511", + "tid": 250355781116944, + "cloid": "0x00000000000000000000000387000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26866", + "sz": "372.8", + "side": "A", + "time": 1762185431244, + "startPosition": "4025201.1960629998", + "dir": "Sell", + "closedPnl": "-198.71500475", + "hash": "0x8268d64ed362ad4c83e2042ec45bb202048400346e65cc1e263181a192668737", + "oid": 221323693697, + "crossed": false, + "fee": "0.00701095", + "tid": 608878717686670, + "cloid": "0x10000000000000000000000475000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26866", + "sz": "1624.3", + "side": "A", + "time": 1762185431244, + "startPosition": "4024828.396063", + "dir": "Sell", + "closedPnl": "-865.80681926", + "hash": "0x8268d64ed362ad4c83e2042ec45bb202048400346e65cc1e263181a192668737", + "oid": 221323704276, + "crossed": false, + "fee": "0.03054691", + "tid": 964909362358931, + "cloid": "0x10000000000000000000000475000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26866", + "sz": "1336.2", + "side": "A", + "time": 1762185431244, + "startPosition": "4023204.0960630002", + "dir": "Sell", + "closedPnl": "-712.2397783", + "hash": "0x8268d64ed362ad4c83e2042ec45bb202048400346e65cc1e263181a192668737", + "oid": 221323704278, + "crossed": false, + "fee": "0.02512884", + "tid": 37228261587240, + "cloid": "0x10000000000000000000000475000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26866", + "sz": "10.0", + "side": "A", + "time": 1762185431664, + "startPosition": "4021867.896063", + "dir": "Sell", + "closedPnl": "-5.33033811", + "hash": "0xf484ff6ab87173c2f5fe042ec45bb7020924005053749295984daabd77754dad", + "oid": 221323704278, + "crossed": false, + "fee": "0.00018806", + "tid": 707329277104181, + "cloid": "0x10000000000000000000000475000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "26.53", + "side": "B", + "time": 1762185432298, + "startPosition": "-235907.04", + "dir": "Close Short", + "closedPnl": "883.775319", + "hash": "0xf56417186d1aa405f6dd042ec45bc002091100fe081dc2d8992cc26b2c1e7df0", + "oid": 221323835962, + "crossed": true, + "fee": "0.927621", + "tid": 687851189766763, + "cloid": "0x00000000000000000000000388000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "12.01", + "side": "B", + "time": 1762185432298, + "startPosition": "-235880.51", + "dir": "Close Short", + "closedPnl": "400.080723", + "hash": "0xf56417186d1aa405f6dd042ec45bc002091100fe081dc2d8992cc26b2c1e7df0", + "oid": 221323835962, + "crossed": true, + "fee": "0.419929", + "tid": 433392962234322, + "cloid": "0x00000000000000000000000388000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "14.81", + "side": "B", + "time": 1762185432298, + "startPosition": "-235868.5", + "dir": "Close Short", + "closedPnl": "493.355163", + "hash": "0xf56417186d1aa405f6dd042ec45bc002091100fe081dc2d8992cc26b2c1e7df0", + "oid": 221323835962, + "crossed": true, + "fee": "0.517831", + "tid": 41701653864526, + "cloid": "0x00000000000000000000000388000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "6.63", + "side": "B", + "time": 1762185432298, + "startPosition": "-235853.69", + "dir": "Close Short", + "closedPnl": "220.860549", + "hash": "0xf56417186d1aa405f6dd042ec45bc002091100fe081dc2d8992cc26b2c1e7df0", + "oid": 221323835962, + "crossed": true, + "fee": "0.231817", + "tid": 333789699510441, + "cloid": "0x00000000000000000000000388000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "132236.0", + "side": "B", + "time": 1762185432298, + "startPosition": "-1195175150.0", + "dir": "Close Short", + "closedPnl": "234.189956", + "hash": "0x71d23a5a36fce5b6734b042ec45bc002095f003fd1f00488159ae5acf5f0bfa1", + "oid": 221323835966, + "crossed": false, + "fee": "0.013995", + "tid": 713579639268021, + "cloid": "0x00000000000000000000000385000117", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "59.99", + "side": "B", + "time": 1762185433797, + "startPosition": "-235847.06", + "dir": "Close Short", + "closedPnl": "1998.404877", + "hash": "0x25863e46ed39f5bd26ff042ec45bd40212ff002c883d148fc94ee999ac3dcfa7", + "oid": 221323863635, + "crossed": true, + "fee": "2.09755", + "tid": 521675889020631, + "cloid": "0x00000000000000000000000388000143", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.8", + "sz": "0.4913", + "side": "B", + "time": 1762185434600, + "startPosition": "-2022.9607", + "dir": "Close Short", + "closedPnl": "253.894014", + "hash": "0x2f7c09092c3988f930f5042ec45bde020abd00eec73ca7cbd344b45beb3d62e3", + "oid": 221323885029, + "crossed": true, + "fee": "0.370783", + "tid": 1119469719231957, + "cloid": "0x00000000000000000000000387000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.8", + "sz": "0.709", + "side": "B", + "time": 1762185434600, + "startPosition": "-2022.4694", + "dir": "Close Short", + "closedPnl": "366.39702", + "hash": "0x2f7c09092c3988f930f5042ec45bde020abd00eec73ca7cbd344b45beb3d62e3", + "oid": 221323885029, + "crossed": true, + "fee": "0.53508", + "tid": 7961199713863, + "cloid": "0x00000000000000000000000387000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.8", + "sz": "0.7645", + "side": "B", + "time": 1762185434600, + "startPosition": "-2021.7604", + "dir": "Close Short", + "closedPnl": "395.07831", + "hash": "0x2f7c09092c3988f930f5042ec45bde020abd00eec73ca7cbd344b45beb3d62e3", + "oid": 221323885029, + "crossed": true, + "fee": "0.576966", + "tid": 916618810003875, + "cloid": "0x00000000000000000000000387000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.8", + "sz": "0.8155", + "side": "B", + "time": 1762185434600, + "startPosition": "-2020.9959", + "dir": "Close Short", + "closedPnl": "421.43409", + "hash": "0x2f7c09092c3988f930f5042ec45bde020abd00eec73ca7cbd344b45beb3d62e3", + "oid": 221323885029, + "crossed": true, + "fee": "0.615456", + "tid": 573015892515286, + "cloid": "0x00000000000000000000000387000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "45497.0", + "side": "B", + "time": 1762185434600, + "startPosition": "-1195042914.0", + "dir": "Close Short", + "closedPnl": "80.575187", + "hash": "0xf34f279391b7c491f4c8042ec45bde020ad500792cbae3649717d2e650bb9e7c", + "oid": 221323866553, + "crossed": false, + "fee": "0.004815", + "tid": 271411450056145, + "cloid": "0x00000000000000000000000385000118", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "86739.0", + "side": "B", + "time": 1762185434600, + "startPosition": "-1194997417.0", + "dir": "Close Short", + "closedPnl": "153.614769", + "hash": "0x3cbe530777c31aeb3e38042ec45bde020ade00ed12c639bde086fe5a36c6f4d5", + "oid": 221323866553, + "crossed": false, + "fee": "0.00918", + "tid": 211447003086277, + "cloid": "0x00000000000000000000000385000118", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "21.23", + "side": "B", + "time": 1762185435719, + "startPosition": "-235787.07", + "dir": "Close Short", + "closedPnl": "709.130829", + "hash": "0xd5e5671e169851e8d75f042ec45beb0203520003b19b70ba79ae1270d59c2bd3", + "oid": 221323905160, + "crossed": true, + "fee": "0.741905", + "tid": 950859714013039, + "cloid": "0x00000000000000000000000388000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "12.15", + "side": "B", + "time": 1762185435719, + "startPosition": "-235765.84", + "dir": "Close Short", + "closedPnl": "405.837945", + "hash": "0xd5e5671e169851e8d75f042ec45beb0203520003b19b70ba79ae1270d59c2bd3", + "oid": 221323905160, + "crossed": true, + "fee": "0.424595", + "tid": 577391867939236, + "cloid": "0x00000000000000000000000388000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "21.23", + "side": "B", + "time": 1762185435719, + "startPosition": "-235753.69", + "dir": "Close Short", + "closedPnl": "709.130829", + "hash": "0xd5e5671e169851e8d75f042ec45beb0203520003b19b70ba79ae1270d59c2bd3", + "oid": 221323905160, + "crossed": true, + "fee": "0.741905", + "tid": 343552852400940, + "cloid": "0x00000000000000000000000388000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "5.41", + "side": "B", + "time": 1762185435719, + "startPosition": "-235732.46", + "dir": "Close Short", + "closedPnl": "180.706443", + "hash": "0xd5e5671e169851e8d75f042ec45beb0203520003b19b70ba79ae1270d59c2bd3", + "oid": 221323905160, + "crossed": true, + "fee": "0.189058", + "tid": 2466031749773, + "cloid": "0x00000000000000000000000388000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.4", + "sz": "0.6554", + "side": "B", + "time": 1762185436868, + "startPosition": "-2020.1804", + "dir": "Close Short", + "closedPnl": "338.959772", + "hash": "0x30d50436622a1199324e042ec45bf8020472001bfd2d306bd49daf89212deb83", + "oid": 221323924206, + "crossed": true, + "fee": "0.494574", + "tid": 396471169421545, + "cloid": "0x00000000000000000000000387000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.5", + "sz": "0.2226", + "side": "B", + "time": 1762185436868, + "startPosition": "-2019.525", + "dir": "Close Short", + "closedPnl": "115.102008", + "hash": "0x30d50436622a1199324e042ec45bf8020472001bfd2d306bd49daf89212deb83", + "oid": 221323924206, + "crossed": true, + "fee": "0.167981", + "tid": 248386143111017, + "cloid": "0x00000000000000000000000387000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.7", + "sz": "1.9027", + "side": "B", + "time": 1762185436868, + "startPosition": "-2019.3024", + "dir": "Close Short", + "closedPnl": "983.467576", + "hash": "0x30d50436622a1199324e042ec45bf8020472001bfd2d306bd49daf89212deb83", + "oid": 221323924206, + "crossed": true, + "fee": "1.435923", + "tid": 150392829242207, + "cloid": "0x00000000000000000000000387000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "3.0", + "side": "B", + "time": 1762185437458, + "startPosition": "-235727.05", + "dir": "Close Short", + "closedPnl": "100.2069", + "hash": "0x2f2adb3b39b3f6c730a4042ec45bff0206f00020d4b71599d2f3868df8b7d0b1", + "oid": 221323937261, + "crossed": true, + "fee": "0.104838", + "tid": 466177331884658, + "cloid": "0x00000000000000000000000388000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.42", + "sz": "18.02", + "side": "B", + "time": 1762185437458, + "startPosition": "-235724.05", + "dir": "Close Short", + "closedPnl": "601.729246", + "hash": "0x2f2adb3b39b3f6c730a4042ec45bff0206f00020d4b71599d2f3868df8b7d0b1", + "oid": 221323937261, + "crossed": true, + "fee": "0.629766", + "tid": 488193044454576, + "cloid": "0x00000000000000000000000388000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.43", + "sz": "12.0", + "side": "B", + "time": 1762185437458, + "startPosition": "-235706.03", + "dir": "Close Short", + "closedPnl": "400.5876", + "hash": "0x2f2adb3b39b3f6c730a4042ec45bff0206f00020d4b71599d2f3868df8b7d0b1", + "oid": 221323937261, + "crossed": true, + "fee": "0.419403", + "tid": 203911047981831, + "cloid": "0x00000000000000000000000388000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "0.18", + "side": "B", + "time": 1762185437458, + "startPosition": "-235694.03", + "dir": "Close Short", + "closedPnl": "6.007014", + "hash": "0x2f2adb3b39b3f6c730a4042ec45bff0206f00020d4b71599d2f3868df8b7d0b1", + "oid": 221323937261, + "crossed": true, + "fee": "0.006291", + "tid": 40992922934855, + "cloid": "0x00000000000000000000000388000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "0.95", + "side": "B", + "time": 1762185437458, + "startPosition": "-235693.85", + "dir": "Close Short", + "closedPnl": "31.694185", + "hash": "0x2f2adb3b39b3f6c730a4042ec45bff0206f00020d4b71599d2f3868df8b7d0b1", + "oid": 221323937261, + "crossed": true, + "fee": "0.033206", + "tid": 165560153444562, + "cloid": "0x00000000000000000000000388000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "18.02", + "side": "B", + "time": 1762185437458, + "startPosition": "-235692.9", + "dir": "Close Short", + "closedPnl": "601.188646", + "hash": "0x2f2adb3b39b3f6c730a4042ec45bff0206f00020d4b71599d2f3868df8b7d0b1", + "oid": 221323937261, + "crossed": true, + "fee": "0.62988", + "tid": 555918852129390, + "cloid": "0x00000000000000000000000388000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "7.84", + "side": "B", + "time": 1762185437458, + "startPosition": "-235674.88", + "dir": "Close Short", + "closedPnl": "261.560432", + "hash": "0x2f2adb3b39b3f6c730a4042ec45bff0206f00020d4b71599d2f3868df8b7d0b1", + "oid": 221323937261, + "crossed": true, + "fee": "0.274043", + "tid": 936997450507859, + "cloid": "0x00000000000000000000000388000145", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.0", + "sz": "2.7803", + "side": "B", + "time": 1762185438468, + "startPosition": "-2017.3997", + "dir": "Close Short", + "closedPnl": "1436.247374", + "hash": "0x60785e7aee8058fa61f2042ec45c0a020b4e0060898377cc044109cdad8432e5", + "oid": 221323958920, + "crossed": true, + "fee": "2.098403", + "tid": 289970794772860, + "cloid": "0x00000000000000000000000387000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.36", + "sz": "60.04", + "side": "B", + "time": 1762185439426, + "startPosition": "-235667.04", + "dir": "Close Short", + "closedPnl": "2008.476092", + "hash": "0xebddd48210452b13ed57042ec45c15020c530067ab4849e58fa67fd4cf4904fe", + "oid": 221323984957, + "crossed": true, + "fee": "2.097533", + "tid": 924576045824228, + "cloid": "0x00000000000000000000000388000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003776", + "sz": "132236.0", + "side": "B", + "time": 1762185439426, + "startPosition": "-1194910678.0", + "dir": "Close Short", + "closedPnl": "234.7189", + "hash": "0xfcdd7c715c322430fe57042ec45c15020c6a0056f7354303a0a627c41b35fe1b", + "oid": 221323984970, + "crossed": true, + "fee": "0.104857", + "tid": 872806275503601, + "cloid": "0x00000000000000000000000385000120", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26832", + "sz": "3730.4", + "side": "B", + "time": 1762185439919, + "startPosition": "-4004261.3999999999", + "dir": "Close Short", + "closedPnl": "1988.11668", + "hash": "0x7e2ec759db89f0cc7fa8042ec45c1b020c89003f768d0f9e21f772ac9a8dcab7", + "oid": 221323946824, + "crossed": false, + "fee": "0.028026", + "tid": 320378658098464, + "cloid": "0x00000000000000000000000384000114", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.1", + "sz": "0.6558", + "side": "B", + "time": 1762185440416, + "startPosition": "-2014.6194", + "dir": "Close Short", + "closedPnl": "339.363384", + "hash": "0x5d3e2c679bd91e625eb7042ec45c22020173004d36dc3d340106d7ba5adcf84d", + "oid": 221324006594, + "crossed": true, + "fee": "0.494834", + "tid": 487886298358055, + "cloid": "0x00000000000000000000000387000164", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.1", + "sz": "2.1252", + "side": "B", + "time": 1762185440416, + "startPosition": "-2013.9636", + "dir": "Close Short", + "closedPnl": "1099.748496", + "hash": "0x5d3e2c679bd91e625eb7042ec45c22020173004d36dc3d340106d7ba5adcf84d", + "oid": 221324006594, + "crossed": true, + "fee": "1.603571", + "tid": 358413433955269, + "cloid": "0x00000000000000000000000387000164", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.14", + "sz": "60.08", + "side": "B", + "time": 1762185441513, + "startPosition": "-235607.0", + "dir": "Close Short", + "closedPnl": "2023.031784", + "hash": "0x58cd374ff2d4270d5a46042ec45c310205d800358dd745dffc95e2a2b1d800f7", + "oid": 221324038482, + "crossed": true, + "fee": "2.096155", + "tid": 577193864089211, + "cloid": "0x00000000000000000000000388000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132556.0", + "side": "B", + "time": 1762185441585, + "startPosition": "-1194778442.0", + "dir": "Close Short", + "closedPnl": "236.082236", + "hash": "0x7bba36024c70262e7d33042ec45c320202bd00e7e77345001f82e1550b740019", + "oid": 221324039852, + "crossed": true, + "fee": "0.104944", + "tid": 818687254100726, + "cloid": "0x00000000000000000000000385000121", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26802", + "sz": "373.1", + "side": "A", + "time": 1762185442670, + "startPosition": "4021857.896063", + "dir": "Sell", + "closedPnl": "-199.11369889", + "hash": "0x7fe09fedfc5abee0815a042ec45c400207a500d3975dddb223a94b40bb5e98cb", + "oid": 221324057081, + "crossed": false, + "fee": "0.00699987", + "tid": 20341847817521, + "cloid": "0x10000000000000000000000475000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "0.4673", + "side": "B", + "time": 1762185442742, + "startPosition": "-2011.8384", + "dir": "Close Short", + "closedPnl": "243.267034", + "hash": "0x71819104893cf91672fb042ec45c410209de00ea243017e8154a3c574830d301", + "oid": 221324069522, + "crossed": true, + "fee": "0.352297", + "tid": 343058094532259, + "cloid": "0x00000000000000000000000387000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "0.1546", + "side": "B", + "time": 1762185442742, + "startPosition": "-2011.3711", + "dir": "Close Short", + "closedPnl": "80.481668", + "hash": "0x71819104893cf91672fb042ec45c410209de00ea243017e8154a3c574830d301", + "oid": 221324069522, + "crossed": true, + "fee": "0.116552", + "tid": 520440666414641, + "cloid": "0x00000000000000000000000387000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "0.5578", + "side": "B", + "time": 1762185442742, + "startPosition": "-2011.2165", + "dir": "Close Short", + "closedPnl": "290.379524", + "hash": "0x71819104893cf91672fb042ec45c410209de00ea243017e8154a3c574830d301", + "oid": 221324069522, + "crossed": true, + "fee": "0.420525", + "tid": 135069413241404, + "cloid": "0x00000000000000000000000387000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "0.4673", + "side": "B", + "time": 1762185442742, + "startPosition": "-2010.6587", + "dir": "Close Short", + "closedPnl": "243.267034", + "hash": "0x71819104893cf91672fb042ec45c410209de00ea243017e8154a3c574830d301", + "oid": 221324069522, + "crossed": true, + "fee": "0.352297", + "tid": 504831203706423, + "cloid": "0x00000000000000000000000387000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "1.1364", + "side": "B", + "time": 1762185442742, + "startPosition": "-2010.1914", + "dir": "Close Short", + "closedPnl": "591.587112", + "hash": "0x71819104893cf91672fb042ec45c410209de00ea243017e8154a3c574830d301", + "oid": 221324069522, + "crossed": true, + "fee": "0.856731", + "tid": 418744045122818, + "cloid": "0x00000000000000000000000387000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003764", + "sz": "132781.0", + "side": "B", + "time": 1762185443541, + "startPosition": "-1194645886.0", + "dir": "Close Short", + "closedPnl": "237.279647", + "hash": "0x976f51b6ad1cdf5098e9042ec45c4a0208df009c481ffe223b37fd096c10b93b", + "oid": 221324093312, + "crossed": true, + "fee": "0.104955", + "tid": 696148944234088, + "cloid": "0x00000000000000000000000385000122", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.0", + "sz": "60.13", + "side": "B", + "time": 1762185444253, + "startPosition": "-235546.92", + "dir": "Close Short", + "closedPnl": "2033.133599", + "hash": "0x28349db982c46ea029ae042ec45c520211ca009f1dc78d72cbfd490c41c8488a", + "oid": 221324107851, + "crossed": true, + "fee": "2.096131", + "tid": 1005528776008769, + "cloid": "0x00000000000000000000000388000148", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.9", + "sz": "1.136", + "side": "B", + "time": 1762185444253, + "startPosition": "-2009.055", + "dir": "Close Short", + "closedPnl": "592.62848", + "hash": "0xa8b72151e1856932aa30042ec45c5202129600377c8888044c7fcca4a089431d", + "oid": 221324107961, + "crossed": true, + "fee": "0.856167", + "tid": 46104199481566, + "cloid": "0x00000000000000000000000387000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.9", + "sz": "1.6477", + "side": "B", + "time": 1762185444253, + "startPosition": "-2007.919", + "dir": "Close Short", + "closedPnl": "859.572136", + "hash": "0xa8b72151e1856932aa30042ec45c5202129600377c8888044c7fcca4a089431d", + "oid": 221324107961, + "crossed": true, + "fee": "1.24182", + "tid": 34067455035893, + "cloid": "0x00000000000000000000000387000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003756", + "sz": "133036.0", + "side": "B", + "time": 1762185446070, + "startPosition": "-1194513105.0", + "dir": "Close Short", + "closedPnl": "238.79962", + "hash": "0xedaed6d5f4ac06ceef28042ec45c650206f900bb8faf25a091778228b3afe0b9", + "oid": 221324144686, + "crossed": true, + "fee": "0.104933", + "tid": 1028527703856438, + "cloid": "0x00000000000000000000000385000123", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.94", + "sz": "12.73", + "side": "B", + "time": 1762185446289, + "startPosition": "-235486.79", + "dir": "Close Short", + "closedPnl": "431.194379", + "hash": "0x2f0591fa450c499e307f042ec45c680206a000dfe00f6870d2ce3d4d04002388", + "oid": 221324146933, + "crossed": true, + "fee": "0.443607", + "tid": 806226671109044, + "cloid": "0x00000000000000000000000388000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.94", + "sz": "47.46", + "side": "B", + "time": 1762185446289, + "startPosition": "-235474.06", + "dir": "Close Short", + "closedPnl": "1607.579358", + "hash": "0x2f0591fa450c499e307f042ec45c680206a000dfe00f6870d2ce3d4d04002388", + "oid": 221324146933, + "crossed": true, + "fee": "1.653857", + "tid": 779853468898354, + "cloid": "0x00000000000000000000000388000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.8", + "sz": "0.4628", + "side": "B", + "time": 1762185447265, + "startPosition": "-2006.2713", + "dir": "Close Short", + "closedPnl": "241.942584", + "hash": "0x96f83465b1be883c9871042ec45c74020367004b4cb1a70e3ac0dfb870b26227", + "oid": 221324167999, + "crossed": true, + "fee": "0.348691", + "tid": 940087701016355, + "cloid": "0x00000000000000000000000387000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.8", + "sz": "0.5182", + "side": "B", + "time": 1762185447265, + "startPosition": "-2005.8085", + "dir": "Close Short", + "closedPnl": "270.904596", + "hash": "0x96f83465b1be883c9871042ec45c74020367004b4cb1a70e3ac0dfb870b26227", + "oid": 221324167999, + "crossed": true, + "fee": "0.390431", + "tid": 975224276568562, + "cloid": "0x00000000000000000000000387000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.8", + "sz": "0.6381", + "side": "B", + "time": 1762185447265, + "startPosition": "-2005.2903", + "dir": "Close Short", + "closedPnl": "333.585918", + "hash": "0x96f83465b1be883c9871042ec45c74020367004b4cb1a70e3ac0dfb870b26227", + "oid": 221324167999, + "crossed": true, + "fee": "0.480768", + "tid": 706031027373739, + "cloid": "0x00000000000000000000000387000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.8", + "sz": "0.4569", + "side": "B", + "time": 1762185447265, + "startPosition": "-2004.6522", + "dir": "Close Short", + "closedPnl": "238.858182", + "hash": "0x96f83465b1be883c9871042ec45c74020367004b4cb1a70e3ac0dfb870b26227", + "oid": 221324167999, + "crossed": true, + "fee": "0.344245", + "tid": 300740445743428, + "cloid": "0x00000000000000000000000387000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.9", + "sz": "0.4483", + "side": "B", + "time": 1762185447265, + "startPosition": "-2004.1953", + "dir": "Close Short", + "closedPnl": "234.317444", + "hash": "0x96f83465b1be883c9871042ec45c74020367004b4cb1a70e3ac0dfb870b26227", + "oid": 221324167999, + "crossed": true, + "fee": "0.337775", + "tid": 326264695767228, + "cloid": "0x00000000000000000000000387000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.9", + "sz": "0.2599", + "side": "B", + "time": 1762185447265, + "startPosition": "-2003.747", + "dir": "Close Short", + "closedPnl": "135.844532", + "hash": "0x96f83465b1be883c9871042ec45c74020367004b4cb1a70e3ac0dfb870b26227", + "oid": 221324167999, + "crossed": true, + "fee": "0.195823", + "tid": 23461634843617, + "cloid": "0x00000000000000000000000387000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.92", + "sz": "60.19", + "side": "B", + "time": 1762185448336, + "startPosition": "-235426.6", + "dir": "Close Short", + "closedPnl": "2039.977537", + "hash": "0xe1ad43233732f62de326042ec45c800210430008d23614ff8575ee75f636d018", + "oid": 221324186697, + "crossed": true, + "fee": "2.097212", + "tid": 831725894000620, + "cloid": "0x00000000000000000000000388000150", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.5", + "sz": "2.7849", + "side": "B", + "time": 1762185449231, + "startPosition": "-2003.4871", + "dir": "Close Short", + "closedPnl": "1453.940592", + "hash": "0xa28b06a0f41df6eea404042ec45c8a02058f00868f1115c04653b1f3b311d0d9", + "oid": 221324199823, + "crossed": true, + "fee": "2.098658", + "tid": 959015144899753, + "cloid": "0x00000000000000000000000387000168", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.3", + "sz": "1.0594", + "side": "B", + "time": 1762185451209, + "startPosition": "-2000.7022", + "dir": "Close Short", + "closedPnl": "553.303432", + "hash": "0xab36af982ca0b0f7acb0042ec45ca2020288007dc7a3cfc94eff5aeaeba48ae2", + "oid": 221324233418, + "crossed": true, + "fee": "0.798303", + "tid": 1107375841539570, + "cloid": "0x00000000000000000000000387000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.4", + "sz": "1.0594", + "side": "B", + "time": 1762185451209, + "startPosition": "-1999.6428", + "dir": "Close Short", + "closedPnl": "553.197492", + "hash": "0xab36af982ca0b0f7acb0042ec45ca2020288007dc7a3cfc94eff5aeaeba48ae2", + "oid": 221324233418, + "crossed": true, + "fee": "0.798325", + "tid": 343876595400304, + "cloid": "0x00000000000000000000000387000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.5", + "sz": "0.2229", + "side": "B", + "time": 1762185451209, + "startPosition": "-1998.5834", + "dir": "Close Short", + "closedPnl": "116.371632", + "hash": "0xab36af982ca0b0f7acb0042ec45ca2020288007dc7a3cfc94eff5aeaeba48ae2", + "oid": 221324233418, + "crossed": true, + "fee": "0.167974", + "tid": 651133909576232, + "cloid": "0x00000000000000000000000387000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.5", + "sz": "0.4433", + "side": "B", + "time": 1762185451209, + "startPosition": "-1998.3605", + "dir": "Close Short", + "closedPnl": "231.438064", + "hash": "0xab36af982ca0b0f7acb0042ec45ca2020288007dc7a3cfc94eff5aeaeba48ae2", + "oid": 221324233418, + "crossed": true, + "fee": "0.334064", + "tid": 430403938957737, + "cloid": "0x00000000000000000000000387000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.01", + "sz": "0.09", + "side": "B", + "time": 1762185451209, + "startPosition": "-235366.41", + "dir": "Close Short", + "closedPnl": "3.042207", + "hash": "0xbc365787789daa14bdb0042ec45ca202029f006d1390c8e65fff02da379183ff", + "oid": 221324233431, + "crossed": true, + "fee": "0.003137", + "tid": 1058852481382724, + "cloid": "0x00000000000000000000000388000151", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.01", + "sz": "60.06", + "side": "B", + "time": 1762185451209, + "startPosition": "-235366.32", + "dir": "Close Short", + "closedPnl": "2030.166138", + "hash": "0xbc365787789daa14bdb0042ec45ca202029f006d1390c8e65fff02da379183ff", + "oid": 221324233431, + "crossed": true, + "fee": "2.093817", + "tid": 454365297350483, + "cloid": "0x00000000000000000000000388000151", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003765", + "sz": "133014.0", + "side": "B", + "time": 1762185451692, + "startPosition": "-1194380069.0", + "dir": "Close Short", + "closedPnl": "237.563004", + "hash": "0x436601c200ba59ee44df042ec45ca702139800a79bbd78c0e72ead14bfbe33d8", + "oid": 221324241397, + "crossed": true, + "fee": "0.105167", + "tid": 403154450770592, + "cloid": "0x00000000000000000000000385000125", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.5", + "sz": "0.0755", + "side": "B", + "time": 1762185453124, + "startPosition": "-1997.9172", + "dir": "Close Short", + "closedPnl": "39.34154", + "hash": "0xbe43d8580174978abfbd042ec45cb8020d6f003d9c77b65c620c83aac0787175", + "oid": 221324284502, + "crossed": true, + "fee": "0.056911", + "tid": 146316494644845, + "cloid": "0x00000000000000000000000387000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.5", + "sz": "0.0055", + "side": "B", + "time": 1762185453124, + "startPosition": "-1997.8417", + "dir": "Close Short", + "closedPnl": "2.86594", + "hash": "0xbe43d8580174978abfbd042ec45cb8020d6f003d9c77b65c620c83aac0787175", + "oid": 221324284502, + "crossed": true, + "fee": "0.004145", + "tid": 838745435721532, + "cloid": "0x00000000000000000000000387000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.8", + "sz": "0.0755", + "side": "B", + "time": 1762185453124, + "startPosition": "-1997.8362", + "dir": "Close Short", + "closedPnl": "39.31889", + "hash": "0xbe43d8580174978abfbd042ec45cb8020d6f003d9c77b65c620c83aac0787175", + "oid": 221324284502, + "crossed": true, + "fee": "0.056916", + "tid": 167273977181634, + "cloid": "0x00000000000000000000000387000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "0.0083", + "side": "B", + "time": 1762185453124, + "startPosition": "-1997.7607", + "dir": "Close Short", + "closedPnl": "4.320814", + "hash": "0xbe43d8580174978abfbd042ec45cb8020d6f003d9c77b65c620c83aac0787175", + "oid": 221324284502, + "crossed": true, + "fee": "0.006257", + "tid": 993662019827859, + "cloid": "0x00000000000000000000000387000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "2.6188", + "side": "B", + "time": 1762185453124, + "startPosition": "-1997.7524", + "dir": "Close Short", + "closedPnl": "1363.294904", + "hash": "0xbe43d8580174978abfbd042ec45cb8020d6f003d9c77b65c620c83aac0787175", + "oid": 221324284502, + "crossed": true, + "fee": "1.974313", + "tid": 335625890846968, + "cloid": "0x00000000000000000000000387000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.11", + "sz": "5.94", + "side": "B", + "time": 1762185453520, + "startPosition": "-235306.26", + "dir": "Close Short", + "closedPnl": "200.191662", + "hash": "0x872912d6b2cf12d888a2042ec45cbc02113800bc4dc231aa2af1be2971c2ecc3", + "oid": 221324293197, + "crossed": true, + "fee": "0.207205", + "tid": 517224596520961, + "cloid": "0x00000000000000000000000388000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.12", + "sz": "0.18", + "side": "B", + "time": 1762185453520, + "startPosition": "-235300.32", + "dir": "Close Short", + "closedPnl": "6.064614", + "hash": "0x872912d6b2cf12d888a2042ec45cbc02113800bc4dc231aa2af1be2971c2ecc3", + "oid": 221324293197, + "crossed": true, + "fee": "0.006279", + "tid": 736152746847886, + "cloid": "0x00000000000000000000000388000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.15", + "sz": "5.97", + "side": "B", + "time": 1762185453520, + "startPosition": "-235300.14", + "dir": "Close Short", + "closedPnl": "200.963931", + "hash": "0x872912d6b2cf12d888a2042ec45cbc02113800bc4dc231aa2af1be2971c2ecc3", + "oid": 221324293197, + "crossed": true, + "fee": "0.208302", + "tid": 602087346050933, + "cloid": "0x00000000000000000000000388000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.16", + "sz": "48.05", + "side": "B", + "time": 1762185453520, + "startPosition": "-235294.17", + "dir": "Close Short", + "closedPnl": "1616.993015", + "hash": "0x872912d6b2cf12d888a2042ec45cbc02113800bc4dc231aa2af1be2971c2ecc3", + "oid": 221324293197, + "crossed": true, + "fee": "1.676637", + "tid": 258128800330818, + "cloid": "0x00000000000000000000000388000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003768", + "sz": "132688.0", + "side": "B", + "time": 1762185453736, + "startPosition": "-1194247055.0", + "dir": "Close Short", + "closedPnl": "236.582704", + "hash": "0xdbf8cb93066b9214dd72042ec45cbe0204f80078a16eb0e67fc176e5c56f6bff", + "oid": 221324296029, + "crossed": true, + "fee": "0.104993", + "tid": 834671830001230, + "cloid": "0x00000000000000000000000385000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.0", + "sz": "2.7821", + "side": "B", + "time": 1762185455235, + "startPosition": "-1995.1336", + "dir": "Close Short", + "closedPnl": "1442.741418", + "hash": "0x808ff294ca3fa3458209042ec45cd0020363007a6532c21724589de789337d30", + "oid": 221324341684, + "crossed": true, + "fee": "2.098593", + "tid": 934805787069403, + "cloid": "0x00000000000000000000000387000171", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132591.0", + "side": "B", + "time": 1762185455936, + "startPosition": "-1194114367.0", + "dir": "Close Short", + "closedPnl": "236.144571", + "hash": "0xc7e5cf901af4f7edc95f042ec45cd80212270075b5f816bf6bae7ae2d9f8d1d8", + "oid": 221324352652, + "crossed": true, + "fee": "0.104972", + "tid": 828408596016112, + "cloid": "0x00000000000000000000000385000127", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.2", + "sz": "60.08", + "side": "B", + "time": 1762185456502, + "startPosition": "-235246.12", + "dir": "Close Short", + "closedPnl": "2019.426984", + "hash": "0x18828405d76e67b819fc042ec45cdf02022300eb7261868abc4b2f58966241a2", + "oid": 221324366538, + "crossed": true, + "fee": "2.096912", + "tid": 485036562303312, + "cloid": "0x00000000000000000000000388000153", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.0", + "sz": "0.152", + "side": "B", + "time": 1762185457489, + "startPosition": "-1992.3515", + "dir": "Close Short", + "closedPnl": "78.82416", + "hash": "0x29abf344a8697f582b25042ec45cec0202b2002a436c9e2acd749e97676d5942", + "oid": 221324384781, + "crossed": true, + "fee": "0.114656", + "tid": 973826558220093, + "cloid": "0x00000000000000000000000387000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.0", + "sz": "2.6298", + "side": "B", + "time": 1762185457489, + "startPosition": "-1992.1995", + "dir": "Close Short", + "closedPnl": "1363.761684", + "hash": "0x29abf344a8697f582b25042ec45cec0202b2002a436c9e2acd749e97676d5942", + "oid": 221324384781, + "crossed": true, + "fee": "1.98371", + "tid": 899160769750650, + "cloid": "0x00000000000000000000000387000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00377", + "sz": "132591.0", + "side": "B", + "time": 1762185457793, + "startPosition": "-1193981776.0", + "dir": "Close Short", + "closedPnl": "236.144571", + "hash": "0xce30898a1373e81ccfaa042ec45cf0020877006fae7706ee71f934dcd277c207", + "oid": 221324391842, + "crossed": true, + "fee": "0.104972", + "tid": 708461607347319, + "cloid": "0x00000000000000000000000385000128", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.17", + "sz": "4.13", + "side": "B", + "time": 1762185458703, + "startPosition": "-235186.04", + "dir": "Close Short", + "closedPnl": "138.942699", + "hash": "0x647716fea1d79e0065f0042ec45cfb0208d600e43cdabcd2083fc25160db77eb", + "oid": 221324406476, + "crossed": true, + "fee": "0.144119", + "tid": 78270328325770, + "cloid": "0x00000000000000000000000388000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.17", + "sz": "55.98", + "side": "B", + "time": 1762185458703, + "startPosition": "-235181.91", + "dir": "Close Short", + "closedPnl": "1883.295954", + "hash": "0x647716fea1d79e0065f0042ec45cfb0208d600e43cdabcd2083fc25160db77eb", + "oid": 221324406476, + "crossed": true, + "fee": "1.953461", + "tid": 449783110925460, + "cloid": "0x00000000000000000000000388000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.0", + "sz": "1.1848", + "side": "B", + "time": 1762185459389, + "startPosition": "-1989.5697", + "dir": "Close Short", + "closedPnl": "615.598384", + "hash": "0x1b67d0f10e5a171f1ce1042ec45d02020e7b00d6a95d35f1bf307c43cd5df109", + "oid": 221324419352, + "crossed": true, + "fee": "0.893469", + "tid": 675574113982944, + "cloid": "0x00000000000000000000000387000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.0", + "sz": "1.5976", + "side": "B", + "time": 1762185459389, + "startPosition": "-1988.3849", + "dir": "Close Short", + "closedPnl": "830.081008", + "hash": "0x1b67d0f10e5a171f1ce1042ec45d02020e7b00d6a95d35f1bf307c43cd5df109", + "oid": 221324419352, + "crossed": true, + "fee": "1.204766", + "tid": 773368113127858, + "cloid": "0x00000000000000000000000387000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "60.11", + "side": "B", + "time": 1762185460708, + "startPosition": "-235125.93", + "dir": "Close Short", + "closedPnl": "2019.834253", + "hash": "0x43d7a882d8204c434551042ec45d11020995006873236b15e7a053d59724262d", + "oid": 221324441830, + "crossed": true, + "fee": "2.098085", + "tid": 928574587768689, + "cloid": "0x00000000000000000000000388000155", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "0.6488", + "side": "B", + "time": 1762185461335, + "startPosition": "-1986.7873", + "dir": "Close Short", + "closedPnl": "337.752304", + "hash": "0x0a6c4461dd795bf10be6042ec45d1802074f0047787c7ac3ae34efb49c7d35db", + "oid": 221324453235, + "crossed": true, + "fee": "0.48913", + "tid": 583824921548403, + "cloid": "0x00000000000000000000000387000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "0.2596", + "side": "B", + "time": 1762185461335, + "startPosition": "-1986.1385", + "dir": "Close Short", + "closedPnl": "135.142568", + "hash": "0x0a6c4461dd795bf10be6042ec45d1802074f0047787c7ac3ae34efb49c7d35db", + "oid": 221324453235, + "crossed": true, + "fee": "0.195712", + "tid": 222973084734129, + "cloid": "0x00000000000000000000000387000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "0.0256", + "side": "B", + "time": 1762185461335, + "startPosition": "-1985.8789", + "dir": "Close Short", + "closedPnl": "13.326848", + "hash": "0x0a6c4461dd795bf10be6042ec45d1802074f0047787c7ac3ae34efb49c7d35db", + "oid": 221324453235, + "crossed": true, + "fee": "0.019299", + "tid": 983151915998077, + "cloid": "0x00000000000000000000000387000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.1", + "sz": "0.2228", + "side": "B", + "time": 1762185461335, + "startPosition": "-1985.8533", + "dir": "Close Short", + "closedPnl": "115.962944", + "hash": "0x0a6c4461dd795bf10be6042ec45d1802074f0047787c7ac3ae34efb49c7d35db", + "oid": 221324453235, + "crossed": true, + "fee": "0.167973", + "tid": 757432112137940, + "cloid": "0x00000000000000000000000387000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.2", + "sz": "0.064", + "side": "B", + "time": 1762185461335, + "startPosition": "-1985.6305", + "dir": "Close Short", + "closedPnl": "33.30432", + "hash": "0x0a6c4461dd795bf10be6042ec45d1802074f0047787c7ac3ae34efb49c7d35db", + "oid": 221324453235, + "crossed": true, + "fee": "0.048252", + "tid": 768999269417262, + "cloid": "0x00000000000000000000000387000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.2", + "sz": "1.5625", + "side": "B", + "time": 1762185461335, + "startPosition": "-1985.5665", + "dir": "Close Short", + "closedPnl": "813.09375", + "hash": "0x0a6c4461dd795bf10be6042ec45d1802074f0047787c7ac3ae34efb49c7d35db", + "oid": 221324453235, + "crossed": true, + "fee": "1.178034", + "tid": 186852338624007, + "cloid": "0x00000000000000000000000387000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "36.08", + "side": "B", + "time": 1762185462748, + "startPosition": "-235065.82", + "dir": "Close Short", + "closedPnl": "1208.762984", + "hash": "0xaeac68fe0cc21b6ab026042ec45d2a02053200e3a7c53a3c52751450cbc5f555", + "oid": 221324485018, + "crossed": true, + "fee": "1.260097", + "tid": 47160893429226, + "cloid": "0x00000000000000000000000388000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "12.02", + "side": "B", + "time": 1762185462748, + "startPosition": "-235029.74", + "dir": "Close Short", + "closedPnl": "402.697646", + "hash": "0xaeac68fe0cc21b6ab026042ec45d2a02053200e3a7c53a3c52751450cbc5f555", + "oid": 221324485018, + "crossed": true, + "fee": "0.419799", + "tid": 1042988481445177, + "cloid": "0x00000000000000000000000388000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "11.95", + "side": "B", + "time": 1762185462748, + "startPosition": "-235017.72", + "dir": "Close Short", + "closedPnl": "400.352485", + "hash": "0xaeac68fe0cc21b6ab026042ec45d2a02053200e3a7c53a3c52751450cbc5f555", + "oid": 221324485018, + "crossed": true, + "fee": "0.417354", + "tid": 272329990555767, + "cloid": "0x00000000000000000000000388000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003774", + "sz": "132488.0", + "side": "B", + "time": 1762185464243, + "startPosition": "-1193849185.0", + "dir": "Close Short", + "closedPnl": "235.431176", + "hash": "0x536b7c4dff4f576154e5042ec45d3e02033600339a427633f73427a0be43314b", + "oid": 221324510122, + "crossed": true, + "fee": "0.105002", + "tid": 502128111446187, + "cloid": "0x00000000000000000000000385000131", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.29", + "sz": "60.07", + "side": "B", + "time": 1762185464455, + "startPosition": "-235005.77", + "dir": "Close Short", + "closedPnl": "2013.684561", + "hash": "0x2b756671e75508732cef042ec45d400204d5005782582745cf3e11c4a658e25d", + "oid": 221324513772, + "crossed": true, + "fee": "2.097698", + "tid": 1103708140837826, + "cloid": "0x00000000000000000000000388000157", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.1", + "sz": "2.7829", + "side": "B", + "time": 1762185464701, + "startPosition": "-1984.004", + "dir": "Close Short", + "closedPnl": "1445.660892", + "hash": "0x0917c89ab46b56300a91042ec45d440205ba00804f6e7502ace073ed736f301a", + "oid": 221324517663, + "crossed": true, + "fee": "2.098671", + "tid": 903719305247189, + "cloid": "0x00000000000000000000000387000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "0.96", + "side": "B", + "time": 1762185466432, + "startPosition": "-234945.7", + "dir": "Close Short", + "closedPnl": "32.162208", + "hash": "0x46a48b731d1fbb14481e042ec45d5a02068f0058b812d9e6ea6d36c5dc1394fe", + "oid": 221324541471, + "crossed": true, + "fee": "0.033528", + "tid": 232109259802072, + "cloid": "0x00000000000000000000000388000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "22.73", + "side": "B", + "time": 1762185466432, + "startPosition": "-234944.74", + "dir": "Close Short", + "closedPnl": "761.507279", + "hash": "0x46a48b731d1fbb14481e042ec45d5a02068f0058b812d9e6ea6d36c5dc1394fe", + "oid": 221324541471, + "crossed": true, + "fee": "0.793847", + "tid": 755408970816826, + "cloid": "0x00000000000000000000000388000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "36.08", + "side": "B", + "time": 1762185466432, + "startPosition": "-234922.01", + "dir": "Close Short", + "closedPnl": "1208.762984", + "hash": "0x46a48b731d1fbb14481e042ec45d5a02068f0058b812d9e6ea6d36c5dc1394fe", + "oid": 221324541471, + "crossed": true, + "fee": "1.260097", + "tid": 1090800705045738, + "cloid": "0x00000000000000000000000388000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "0.29", + "side": "B", + "time": 1762185466432, + "startPosition": "-234885.93", + "dir": "Close Short", + "closedPnl": "9.709867", + "hash": "0x46a48b731d1fbb14481e042ec45d5a02068f0058b812d9e6ea6d36c5dc1394fe", + "oid": 221324541471, + "crossed": true, + "fee": "0.010129", + "tid": 800601948224490, + "cloid": "0x00000000000000000000000388000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.1", + "sz": "2.7828", + "side": "B", + "time": 1762185466561, + "startPosition": "-1981.2211", + "dir": "Close Short", + "closedPnl": "1445.608944", + "hash": "0x66c132172ae1252e683a042ec45d5c020eea00fcc5e444000a89dd69e9e4ff19", + "oid": 221324546867, + "crossed": true, + "fee": "2.098595", + "tid": 628908233763730, + "cloid": "0x00000000000000000000000387000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.9", + "sz": "0.0042", + "side": "B", + "time": 1762185468306, + "startPosition": "-1978.4383", + "dir": "Close Short", + "closedPnl": "2.178456", + "hash": "0xfc83e76d83aeac9bfdfd042ec45d740205de00531ea1cb6ea04c92c042a28686", + "oid": 221324589269, + "crossed": true, + "fee": "0.003168", + "tid": 1031999285981350, + "cloid": "0x00000000000000000000000387000177", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.9", + "sz": "0.6396", + "side": "B", + "time": 1762185468306, + "startPosition": "-1978.4341", + "dir": "Close Short", + "closedPnl": "331.747728", + "hash": "0xfc83e76d83aeac9bfdfd042ec45d740205de00531ea1cb6ea04c92c042a28686", + "oid": 221324589269, + "crossed": true, + "fee": "0.482449", + "tid": 546935593503910, + "cloid": "0x00000000000000000000000387000177", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.0", + "sz": "2.1385", + "side": "B", + "time": 1762185468306, + "startPosition": "-1977.7945", + "dir": "Close Short", + "closedPnl": "1108.98333", + "hash": "0xfc83e76d83aeac9bfdfd042ec45d740205de00531ea1cb6ea04c92c042a28686", + "oid": 221324589269, + "crossed": true, + "fee": "1.613113", + "tid": 1086430516769405, + "cloid": "0x00000000000000000000000387000177", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003779", + "sz": "132464.0", + "side": "B", + "time": 1762185468306, + "startPosition": "-1193716697.0", + "dir": "Close Short", + "closedPnl": "234.726208", + "hash": "0xf5092b8b82e7de45f682042ec45d740205f200711deafd1898d1d6de41ebb830", + "oid": 221324589289, + "crossed": true, + "fee": "0.105122", + "tid": 556539814187630, + "cloid": "0x00000000000000000000000385000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "35.86", + "side": "B", + "time": 1762185468531, + "startPosition": "-234885.64", + "dir": "Close Short", + "closedPnl": "1197.806478", + "hash": "0xa108e3105d0b6bd5a282042ec45d780202d000f5f80e8aa744d18e631c0f45c0", + "oid": 221324592451, + "crossed": true, + "fee": "1.253167", + "tid": 183381529695778, + "cloid": "0x00000000000000000000000388000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.42", + "sz": "18.02", + "side": "B", + "time": 1762185468531, + "startPosition": "-234849.78", + "dir": "Close Short", + "closedPnl": "601.729246", + "hash": "0xa108e3105d0b6bd5a282042ec45d780202d000f5f80e8aa744d18e631c0f45c0", + "oid": 221324592451, + "crossed": true, + "fee": "0.629766", + "tid": 331601221393578, + "cloid": "0x00000000000000000000000388000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.42", + "sz": "0.18", + "side": "B", + "time": 1762185468531, + "startPosition": "-234831.76", + "dir": "Close Short", + "closedPnl": "6.010614", + "hash": "0xa108e3105d0b6bd5a282042ec45d780202d000f5f80e8aa744d18e631c0f45c0", + "oid": 221324592451, + "crossed": true, + "fee": "0.00629", + "tid": 119317224774765, + "cloid": "0x00000000000000000000000388000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.42", + "sz": "5.97", + "side": "B", + "time": 1762185468531, + "startPosition": "-234831.58", + "dir": "Close Short", + "closedPnl": "199.352031", + "hash": "0xa108e3105d0b6bd5a282042ec45d780202d000f5f80e8aa744d18e631c0f45c0", + "oid": 221324592451, + "crossed": true, + "fee": "0.20864", + "tid": 902365788095450, + "cloid": "0x00000000000000000000000388000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.4", + "sz": "2.7817", + "side": "B", + "time": 1762185470424, + "startPosition": "-1975.656", + "dir": "Close Short", + "closedPnl": "1441.421306", + "hash": "0xa5fe3615fce848b7a777042ec45d8c02041a00fb97eb678949c6e168bbec22a2", + "oid": 221324627190, + "crossed": true, + "fee": "2.098525", + "tid": 516666239919676, + "cloid": "0x00000000000000000000000387000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "2.3", + "side": "B", + "time": 1762185470778, + "startPosition": "-234825.61", + "dir": "Close Short", + "closedPnl": "76.75629", + "hash": "0x54b600c77b0663ff562f042ec45d9002053800ad160982d1f87eac1a3a0a3de9", + "oid": 221324631067, + "crossed": true, + "fee": "0.08039", + "tid": 407019540439706, + "cloid": "0x00000000000000000000000388000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "6.52", + "side": "B", + "time": 1762185470778, + "startPosition": "-234823.31", + "dir": "Close Short", + "closedPnl": "217.587396", + "hash": "0x54b600c77b0663ff562f042ec45d9002053800ad160982d1f87eac1a3a0a3de9", + "oid": 221324631067, + "crossed": true, + "fee": "0.227889", + "tid": 440889411028118, + "cloid": "0x00000000000000000000000388000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "6.55", + "side": "B", + "time": 1762185470778, + "startPosition": "-234816.79", + "dir": "Close Short", + "closedPnl": "218.588565", + "hash": "0x54b600c77b0663ff562f042ec45d9002053800ad160982d1f87eac1a3a0a3de9", + "oid": 221324631067, + "crossed": true, + "fee": "0.228938", + "tid": 1082486783824311, + "cloid": "0x00000000000000000000000388000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "12.01", + "side": "B", + "time": 1762185470778, + "startPosition": "-234810.24", + "dir": "Close Short", + "closedPnl": "400.801323", + "hash": "0x54b600c77b0663ff562f042ec45d9002053800ad160982d1f87eac1a3a0a3de9", + "oid": 221324631067, + "crossed": true, + "fee": "0.419778", + "tid": 622963813198764, + "cloid": "0x00000000000000000000000388000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "32.62", + "side": "B", + "time": 1762185470778, + "startPosition": "-234798.23", + "dir": "Close Short", + "closedPnl": "1088.604426", + "hash": "0x54b600c77b0663ff562f042ec45d9002053800ad160982d1f87eac1a3a0a3de9", + "oid": 221324631067, + "crossed": true, + "fee": "1.140147", + "tid": 318625997846130, + "cloid": "0x00000000000000000000000388000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "38837.0", + "side": "B", + "time": 1762185471181, + "startPosition": "-1193584233.0", + "dir": "Close Short", + "closedPnl": "68.896838", + "hash": "0x05b783e30ce3d30a0731042ec45d9502052d00c8a7e6f1dca9802f35cbe7acf4", + "oid": 221324637088, + "crossed": true, + "fee": "0.030804", + "tid": 373902162773293, + "cloid": "0x00000000000000000000000385000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003778", + "sz": "38837.0", + "side": "B", + "time": 1762185471181, + "startPosition": "-1193545396.0", + "dir": "Close Short", + "closedPnl": "68.858001", + "hash": "0x05b783e30ce3d30a0731042ec45d9502052d00c8a7e6f1dca9802f35cbe7acf4", + "oid": 221324637088, + "crossed": true, + "fee": "0.030812", + "tid": 163856915857677, + "cloid": "0x00000000000000000000000385000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003778", + "sz": "54593.0", + "side": "B", + "time": 1762185471181, + "startPosition": "-1193506559.0", + "dir": "Close Short", + "closedPnl": "96.793389", + "hash": "0x05b783e30ce3d30a0731042ec45d9502052d00c8a7e6f1dca9802f35cbe7acf4", + "oid": 221324637088, + "crossed": true, + "fee": "0.043312", + "tid": 789569829673826, + "cloid": "0x00000000000000000000000385000134", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.6", + "sz": "2.7824", + "side": "B", + "time": 1762185472748, + "startPosition": "-1972.8743", + "dir": "Close Short", + "closedPnl": "1444.009952", + "hash": "0xa7103ba79388f98ca889042ec45da90203c3008d2e8c185e4ad8e6fa528cd377", + "oid": 221324671172, + "crossed": true, + "fee": "2.098586", + "tid": 831149829007662, + "cloid": "0x00000000000000000000000387000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "1.08", + "side": "B", + "time": 1762185472949, + "startPosition": "-234765.61", + "dir": "Close Short", + "closedPnl": "36.139284", + "hash": "0x34a5f326d8015f20361f042ec45dab0203c1000c73047df2d86e9e799705390a", + "oid": 221324675098, + "crossed": true, + "fee": "0.037728", + "tid": 232694553682226, + "cloid": "0x00000000000000000000000388000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "6.71", + "side": "B", + "time": 1762185472949, + "startPosition": "-234764.53", + "dir": "Close Short", + "closedPnl": "224.532033", + "hash": "0x34a5f326d8015f20361f042ec45dab0203c1000c73047df2d86e9e799705390a", + "oid": 221324675098, + "crossed": true, + "fee": "0.234403", + "tid": 324807348047758, + "cloid": "0x00000000000000000000000388000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "52.24", + "side": "B", + "time": 1762185472949, + "startPosition": "-234757.82", + "dir": "Close Short", + "closedPnl": "1748.070552", + "hash": "0x34a5f326d8015f20361f042ec45dab0203c1000c73047df2d86e9e799705390a", + "oid": 221324675098, + "crossed": true, + "fee": "1.824926", + "tid": 213209751409198, + "cloid": "0x00000000000000000000000388000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "24602.0", + "side": "B", + "time": 1762185473086, + "startPosition": "-1193451966.0", + "dir": "Close Short", + "closedPnl": "43.570142", + "hash": "0xacd09ffaa732c0fdae4a042ec45dad0202a200e04235dfcf50994b4d66369ae8", + "oid": 221324678731, + "crossed": true, + "fee": "0.019529", + "tid": 57649763116802, + "cloid": "0x00000000000000000000000385000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "107665.0", + "side": "B", + "time": 1762185473086, + "startPosition": "-1193427364.0", + "dir": "Close Short", + "closedPnl": "190.674715", + "hash": "0xacd09ffaa732c0fdae4a042ec45dad0202a200e04235dfcf50994b4d66369ae8", + "oid": 221324678731, + "crossed": true, + "fee": "0.085464", + "tid": 313049552829536, + "cloid": "0x00000000000000000000000385000135", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.3", + "sz": "2.7819", + "side": "B", + "time": 1762185474768, + "startPosition": "-1970.0919", + "dir": "Close Short", + "closedPnl": "1441.803132", + "hash": "0xbca6c6da14d79d5bbe20042ec45dc102092800bfafdabc2d606f722cd3db7746", + "oid": 221324714183, + "crossed": true, + "fee": "2.098618", + "tid": 327532116529515, + "cloid": "0x00000000000000000000000387000180", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "12.0", + "side": "B", + "time": 1762185474768, + "startPosition": "-234705.58", + "dir": "Close Short", + "closedPnl": "401.1876", + "hash": "0x6f7a3d752e68dfd770f3042ec45dc1020929005ac96bfea91342e8c7ed6cb9c2", + "oid": 221324714184, + "crossed": true, + "fee": "0.419277", + "tid": 985000835602551, + "cloid": "0x00000000000000000000000388000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "0.18", + "side": "B", + "time": 1762185474768, + "startPosition": "-234693.58", + "dir": "Close Short", + "closedPnl": "6.014214", + "hash": "0x6f7a3d752e68dfd770f3042ec45dc1020929005ac96bfea91342e8c7ed6cb9c2", + "oid": 221324714184, + "crossed": true, + "fee": "0.006289", + "tid": 824505182226690, + "cloid": "0x00000000000000000000000388000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "12.0", + "side": "B", + "time": 1762185474768, + "startPosition": "-234693.4", + "dir": "Close Short", + "closedPnl": "400.9476", + "hash": "0x6f7a3d752e68dfd770f3042ec45dc1020929005ac96bfea91342e8c7ed6cb9c2", + "oid": 221324714184, + "crossed": true, + "fee": "0.419327", + "tid": 26987416048033, + "cloid": "0x00000000000000000000000388000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.42", + "sz": "12.0", + "side": "B", + "time": 1762185474768, + "startPosition": "-234681.4", + "dir": "Close Short", + "closedPnl": "400.7076", + "hash": "0x6f7a3d752e68dfd770f3042ec45dc1020929005ac96bfea91342e8c7ed6cb9c2", + "oid": 221324714184, + "crossed": true, + "fee": "0.419378", + "tid": 711532937340670, + "cloid": "0x00000000000000000000000388000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.43", + "sz": "18.02", + "side": "B", + "time": 1762185474768, + "startPosition": "-234669.4", + "dir": "Close Short", + "closedPnl": "601.549046", + "hash": "0x6f7a3d752e68dfd770f3042ec45dc1020929005ac96bfea91342e8c7ed6cb9c2", + "oid": 221324714184, + "crossed": true, + "fee": "0.629804", + "tid": 232743792008236, + "cloid": "0x00000000000000000000000388000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "5.82", + "side": "B", + "time": 1762185474768, + "startPosition": "-234651.38", + "dir": "Close Short", + "closedPnl": "194.168586", + "hash": "0x6f7a3d752e68dfd770f3042ec45dc1020929005ac96bfea91342e8c7ed6cb9c2", + "oid": 221324714184, + "crossed": true, + "fee": "0.203435", + "tid": 1044674095405355, + "cloid": "0x00000000000000000000000388000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.4", + "sz": "0.0042", + "side": "B", + "time": 1762185477232, + "startPosition": "-1967.31", + "dir": "Close Short", + "closedPnl": "2.176356", + "hash": "0xb5e72fede5a1a04ab760042ec45dde02056c00d380a4bf1c59afdb40a4a57a35", + "oid": 221324752808, + "crossed": true, + "fee": "0.003168", + "tid": 644598396018623, + "cloid": "0x00000000000000000000000387000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.6", + "sz": "0.0042", + "side": "B", + "time": 1762185477232, + "startPosition": "-1967.3058", + "dir": "Close Short", + "closedPnl": "2.175516", + "hash": "0xb5e72fede5a1a04ab760042ec45dde02056c00d380a4bf1c59afdb40a4a57a35", + "oid": 221324752808, + "crossed": true, + "fee": "0.003168", + "tid": 641172347300810, + "cloid": "0x00000000000000000000000387000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.6", + "sz": "0.1392", + "side": "B", + "time": 1762185477232, + "startPosition": "-1967.3016", + "dir": "Close Short", + "closedPnl": "72.102816", + "hash": "0xb5e72fede5a1a04ab760042ec45dde02056c00d380a4bf1c59afdb40a4a57a35", + "oid": 221324752808, + "crossed": true, + "fee": "0.105018", + "tid": 995420859190810, + "cloid": "0x00000000000000000000000387000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.6", + "sz": "2.6339", + "side": "B", + "time": 1762185477232, + "startPosition": "-1967.1624", + "dir": "Close Short", + "closedPnl": "1364.307522", + "hash": "0xb5e72fede5a1a04ab760042ec45dde02056c00d380a4bf1c59afdb40a4a57a35", + "oid": 221324752808, + "crossed": true, + "fee": "1.987135", + "tid": 836444778117378, + "cloid": "0x00000000000000000000000387000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132196.0", + "side": "B", + "time": 1762185477628, + "startPosition": "-1193319699.0", + "dir": "Close Short", + "closedPnl": "233.32594", + "hash": "0x4cbb433c4452af4f4e34042ec45de30202b60021df55ce21f083ee8f03568939", + "oid": 221324761077, + "crossed": true, + "fee": "0.105103", + "tid": 829373132042999, + "cloid": "0x00000000000000000000000385000137", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "60.0", + "side": "B", + "time": 1762185477828, + "startPosition": "-234645.56", + "dir": "Close Short", + "closedPnl": "2001.738", + "hash": "0x9e3b4fd91aadc6929fb5042ec45de4020a9e00beb5a0e5644203fb2bd9a1a07d", + "oid": 221324763525, + "crossed": true, + "fee": "2.09727", + "tid": 53062914705726, + "cloid": "0x00000000000000000000000388000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.6", + "sz": "2.7815", + "side": "B", + "time": 1762185478828, + "startPosition": "-1964.5285", + "dir": "Close Short", + "closedPnl": "1440.76137", + "hash": "0xa37ee40d606ee991a4f8042ec45df102045900f2fb62086347478f601f62c37c", + "oid": 221324779600, + "crossed": true, + "fee": "2.098491", + "tid": 1045999130895360, + "cloid": "0x00000000000000000000000387000182", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003785", + "sz": "132057.0", + "side": "B", + "time": 1762185479185, + "startPosition": "-1193187503.0", + "dir": "Close Short", + "closedPnl": "233.212662", + "hash": "0x717da7dd3385850d72f7042ec45df502074700c2ce88a3df1546532ff2895ef8", + "oid": 221324785535, + "crossed": true, + "fee": "0.104965", + "tid": 993390455434783, + "cloid": "0x00000000000000000000000385000138", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "59.98", + "side": "B", + "time": 1762185480258, + "startPosition": "-234585.56", + "dir": "Close Short", + "closedPnl": "1997.471954", + "hash": "0xf6d52153a8e5845bf84e042ec45e03020247003943e8a32e9a9dcca667e95e46", + "oid": 221324801759, + "crossed": true, + "fee": "2.097326", + "tid": 226987923876046, + "cloid": "0x00000000000000000000000388000164", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003785", + "sz": "132091.0", + "side": "B", + "time": 1762185480786, + "startPosition": "-1193055446.0", + "dir": "Close Short", + "closedPnl": "233.272706", + "hash": "0xe91ced6c27a565d4ea96042ec45e0802043a0051c2a884a68ce598bee6a93fbf", + "oid": 221324806817, + "crossed": true, + "fee": "0.104992", + "tid": 999945749621218, + "cloid": "0x00000000000000000000000385000139", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.6", + "sz": "0.6791", + "side": "B", + "time": 1762185480946, + "startPosition": "-1961.747", + "dir": "Close Short", + "closedPnl": "351.760218", + "hash": "0x545c52a73fc8877755d6042ec45e0a020382008cdacba649f824fdf9fecc6161", + "oid": 221324807887, + "crossed": true, + "fee": "0.512344", + "tid": 1026285030688950, + "cloid": "0x00000000000000000000000387000183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.6", + "sz": "1.3999", + "side": "B", + "time": 1762185480946, + "startPosition": "-1961.0679", + "dir": "Close Short", + "closedPnl": "725.120202", + "hash": "0x545c52a73fc8877755d6042ec45e0a020382008cdacba649f824fdf9fecc6161", + "oid": 221324807887, + "crossed": true, + "fee": "1.056148", + "tid": 1030135289583295, + "cloid": "0x00000000000000000000000387000183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.6", + "sz": "0.7025", + "side": "B", + "time": 1762185480946, + "startPosition": "-1959.668", + "dir": "Close Short", + "closedPnl": "363.88095", + "hash": "0x545c52a73fc8877755d6042ec45e0a020382008cdacba649f824fdf9fecc6161", + "oid": 221324807887, + "crossed": true, + "fee": "0.529998", + "tid": 901958431259659, + "cloid": "0x00000000000000000000000387000183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "1.52", + "side": "B", + "time": 1762185482271, + "startPosition": "-234525.58", + "dir": "Close Short", + "closedPnl": "50.619496", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.053149", + "tid": 46793811378858, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "1.63", + "side": "B", + "time": 1762185482271, + "startPosition": "-234524.06", + "dir": "Close Short", + "closedPnl": "54.282749", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.056996", + "tid": 502722087487644, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "1.63", + "side": "B", + "time": 1762185482271, + "startPosition": "-234522.43", + "dir": "Close Short", + "closedPnl": "54.282749", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.056996", + "tid": 216431060766617, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "1.63", + "side": "B", + "time": 1762185482271, + "startPosition": "-234520.8", + "dir": "Close Short", + "closedPnl": "54.282749", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.056996", + "tid": 964644286905049, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "1.63", + "side": "B", + "time": 1762185482271, + "startPosition": "-234519.17", + "dir": "Close Short", + "closedPnl": "54.282749", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.056996", + "tid": 663795583048229, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "1.63", + "side": "B", + "time": 1762185482271, + "startPosition": "-234517.54", + "dir": "Close Short", + "closedPnl": "54.282749", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.056996", + "tid": 438909452393593, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "0.29", + "side": "B", + "time": 1762185482271, + "startPosition": "-234515.91", + "dir": "Close Short", + "closedPnl": "9.657667", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.01014", + "tid": 296635975131711, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "0.18", + "side": "B", + "time": 1762185482271, + "startPosition": "-234515.62", + "dir": "Close Short", + "closedPnl": "5.987214", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.006295", + "tid": 594784241181751, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "3.0", + "side": "B", + "time": 1762185482271, + "startPosition": "-234515.44", + "dir": "Close Short", + "closedPnl": "99.7869", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.104926", + "tid": 664973721881920, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "0.18", + "side": "B", + "time": 1762185482271, + "startPosition": "-234512.44", + "dir": "Close Short", + "closedPnl": "5.980014", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "0.006297", + "tid": 738403564466254, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "46.66", + "side": "B", + "time": 1762185482271, + "startPosition": "-234512.26", + "dir": "Close Short", + "closedPnl": "1549.685918", + "hash": "0x5052b052bf51401351cc042ec45e1c02090900385a545ee5f41b5ba57e5519fd", + "oid": 221324828879, + "crossed": true, + "fee": "1.632446", + "tid": 914091014835327, + "cloid": "0x00000000000000000000000388000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "131997.0", + "side": "B", + "time": 1762185482670, + "startPosition": "-1192923355.0", + "dir": "Close Short", + "closedPnl": "232.842708", + "hash": "0x2b251fcaaeef4f3e2c9e042ec45e21020c9100b049e26e10ceedcb1d6de32928", + "oid": 221324841722, + "crossed": true, + "fee": "0.104973", + "tid": 344679875227353, + "cloid": "0x00000000000000000000000385000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.0", + "sz": "2.7806", + "side": "B", + "time": 1762185483340, + "startPosition": "-1958.9655", + "dir": "Close Short", + "closedPnl": "1436.402348", + "hash": "0x4f208fd5c1dd89e1509a042ec45e2902047000bb5cd0a8b3f2e93b2880d163cb", + "oid": 221324854844, + "crossed": true, + "fee": "2.09863", + "tid": 136886169574318, + "cloid": "0x00000000000000000000000387000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26802", + "sz": "3333.3", + "side": "A", + "time": 1762185483795, + "startPosition": "4021484.7960629999", + "dir": "Sell", + "closedPnl": "-1778.89491433", + "hash": "0x1458bcc106d6fc3e15d2042ec45e300208dd00a6a1da1b10b8216813c5dad628", + "oid": 221324057081, + "crossed": false, + "fee": "0.06253737", + "tid": 506094853494394, + "cloid": "0x10000000000000000000000475000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26802", + "sz": "24.0", + "side": "A", + "time": 1762185483795, + "startPosition": "4018151.4960630001", + "dir": "Sell", + "closedPnl": "-12.80817146", + "hash": "0x79ffa9f739f981357b79042ec45e300208df00dcd4fca0071dc85549f8fd5b20", + "oid": 221324057081, + "crossed": false, + "fee": "0.00045027", + "tid": 322854978751320, + "cloid": "0x10000000000000000000000475000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.72", + "sz": "39.16", + "side": "B", + "time": 1762185484070, + "startPosition": "-234465.6", + "dir": "Close Short", + "closedPnl": "1295.894468", + "hash": "0xf0b66db07dafeb5cf230042ec45e33020c83009618a30a2f947f19033ca3c547", + "oid": 221324871760, + "crossed": true, + "fee": "1.371038", + "tid": 746207327348939, + "cloid": "0x00000000000000000000000388000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "6.01", + "side": "B", + "time": 1762185484070, + "startPosition": "-234426.44", + "dir": "Close Short", + "closedPnl": "198.764523", + "hash": "0xf0b66db07dafeb5cf230042ec45e33020c83009618a30a2f947f19033ca3c547", + "oid": 221324871760, + "crossed": true, + "fee": "0.210442", + "tid": 14824870881842, + "cloid": "0x00000000000000000000000388000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "5.97", + "side": "B", + "time": 1762185484070, + "startPosition": "-234420.43", + "dir": "Close Short", + "closedPnl": "197.441631", + "hash": "0xf0b66db07dafeb5cf230042ec45e33020c83009618a30a2f947f19033ca3c547", + "oid": 221324871760, + "crossed": true, + "fee": "0.209041", + "tid": 53748146543810, + "cloid": "0x00000000000000000000000388000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "8.78", + "side": "B", + "time": 1762185484070, + "startPosition": "-234414.46", + "dir": "Close Short", + "closedPnl": "290.374794", + "hash": "0xf0b66db07dafeb5cf230042ec45e33020c83009618a30a2f947f19033ca3c547", + "oid": 221324871760, + "crossed": true, + "fee": "0.307435", + "tid": 927416690517411, + "cloid": "0x00000000000000000000000388000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "17.92", + "side": "B", + "time": 1762185486148, + "startPosition": "-234405.68", + "dir": "Close Short", + "closedPnl": "592.297216", + "hash": "0x55f2b626cd411dd9576c042ec45e4a0208da000c68443cabf9bb61798c44f7c3", + "oid": 221324908997, + "crossed": true, + "fee": "0.627551", + "tid": 57175795171896, + "cloid": "0x00000000000000000000000388000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "6.75", + "side": "B", + "time": 1762185486148, + "startPosition": "-234387.76", + "dir": "Close Short", + "closedPnl": "223.103025", + "hash": "0x55f2b626cd411dd9576c042ec45e4a0208da000c68443cabf9bb61798c44f7c3", + "oid": 221324908997, + "crossed": true, + "fee": "0.236382", + "tid": 711523840399797, + "cloid": "0x00000000000000000000000388000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "11.99", + "side": "B", + "time": 1762185486148, + "startPosition": "-234381.01", + "dir": "Close Short", + "closedPnl": "396.297077", + "hash": "0x55f2b626cd411dd9576c042ec45e4a0208da000c68443cabf9bb61798c44f7c3", + "oid": 221324908997, + "crossed": true, + "fee": "0.419885", + "tid": 1080630059661791, + "cloid": "0x00000000000000000000000388000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.78", + "sz": "23.24", + "side": "B", + "time": 1762185486148, + "startPosition": "-234369.02", + "dir": "Close Short", + "closedPnl": "767.670652", + "hash": "0x55f2b626cd411dd9576c042ec45e4a0208da000c68443cabf9bb61798c44f7c3", + "oid": 221324908997, + "crossed": true, + "fee": "0.813953", + "tid": 46021892136728, + "cloid": "0x00000000000000000000000388000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.6", + "sz": "0.0042", + "side": "B", + "time": 1762185486192, + "startPosition": "-1956.1849", + "dir": "Close Short", + "closedPnl": "2.162916", + "hash": "0xe44e302ba4d2658de5c7042ec45e4b0205f600113fd5845f8816db7e63d63f78", + "oid": 221324910961, + "crossed": true, + "fee": "0.003171", + "tid": 682918182432787, + "cloid": "0x00000000000000000000000387000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.7", + "sz": "0.0567", + "side": "B", + "time": 1762185486192, + "startPosition": "-1956.1807", + "dir": "Close Short", + "closedPnl": "29.193696", + "hash": "0xe44e302ba4d2658de5c7042ec45e4b0205f600113fd5845f8816db7e63d63f78", + "oid": 221324910961, + "crossed": true, + "fee": "0.042813", + "tid": 211859822323034, + "cloid": "0x00000000000000000000000387000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.9", + "sz": "0.0042", + "side": "B", + "time": 1762185486192, + "startPosition": "-1956.124", + "dir": "Close Short", + "closedPnl": "2.161656", + "hash": "0xe44e302ba4d2658de5c7042ec45e4b0205f600113fd5845f8816db7e63d63f78", + "oid": 221324910961, + "crossed": true, + "fee": "0.003171", + "tid": 532180921531667, + "cloid": "0x00000000000000000000000387000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.9", + "sz": "0.0055", + "side": "B", + "time": 1762185486192, + "startPosition": "-1956.1198", + "dir": "Close Short", + "closedPnl": "2.83074", + "hash": "0xe44e302ba4d2658de5c7042ec45e4b0205f600113fd5845f8816db7e63d63f78", + "oid": 221324910961, + "crossed": true, + "fee": "0.004153", + "tid": 988488382256429, + "cloid": "0x00000000000000000000000387000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.9", + "sz": "2.7091", + "side": "B", + "time": 1762185486192, + "startPosition": "-1956.1143", + "dir": "Close Short", + "closedPnl": "1394.319588", + "hash": "0xe44e302ba4d2658de5c7042ec45e4b0205f600113fd5845f8816db7e63d63f78", + "oid": 221324910961, + "crossed": true, + "fee": "2.045747", + "tid": 897936626730932, + "cloid": "0x00000000000000000000000387000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3597.0", + "sz": "2.7785", + "side": "B", + "time": 1762185488475, + "startPosition": "-1953.4052", + "dir": "Close Short", + "closedPnl": "1426.98203", + "hash": "0x8d6a52a55277b3c78ee4042ec45e67020254008aed7ad2993132fdf8117b8db2", + "oid": 221324952814, + "crossed": true, + "fee": "2.098795", + "tid": 381767058883632, + "cloid": "0x00000000000000000000000387000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "65374.0", + "side": "B", + "time": 1762185488475, + "startPosition": "-1192791358.0", + "dir": "Close Short", + "closedPnl": "114.665996", + "hash": "0x4247f96bb67852b443c1042ec45e670202940051517b7186e610a4be757c2c9e", + "oid": 221324952871, + "crossed": true, + "fee": "0.052127", + "tid": 934279743954125, + "cloid": "0x00000000000000000000000385000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "66439.0", + "side": "B", + "time": 1762185488475, + "startPosition": "-1192725984.0", + "dir": "Close Short", + "closedPnl": "116.467567", + "hash": "0x4247f96bb67852b443c1042ec45e670202940051517b7186e610a4be757c2c9e", + "oid": 221324952871, + "crossed": true, + "fee": "0.05299", + "tid": 15363060768758, + "cloid": "0x00000000000000000000000385000142", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.79", + "sz": "25.14", + "side": "B", + "time": 1762185488669, + "startPosition": "-234345.78", + "dir": "Close Short", + "closedPnl": "830.180622", + "hash": "0xb366235645b2ae09b4df042ec45e680209e3003be0b5ccdb572ecea904b687f4", + "oid": 221324955765, + "crossed": true, + "fee": "0.880551", + "tid": 877547331190643, + "cloid": "0x00000000000000000000000388000168", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.79", + "sz": "34.75", + "side": "B", + "time": 1762185488669, + "startPosition": "-234320.64", + "dir": "Close Short", + "closedPnl": "1147.524925", + "hash": "0xb366235645b2ae09b4df042ec45e680209e3003be0b5ccdb572ecea904b687f4", + "oid": 221324955765, + "crossed": true, + "fee": "1.21715", + "tid": 170440579104483, + "cloid": "0x00000000000000000000000388000168", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "56117.0", + "side": "B", + "time": 1762185490230, + "startPosition": "-1192659545.0", + "dir": "Close Short", + "closedPnl": "98.373101", + "hash": "0x961d039bf2b7f7d49796042ec45e7b02039400818dbb16a639e5aeeeb1bbd1bf", + "oid": 221324989535, + "crossed": true, + "fee": "0.044757", + "tid": 268874629898564, + "cloid": "0x00000000000000000000000385000143", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "75488.0", + "side": "B", + "time": 1762185490230, + "startPosition": "-1192603428.0", + "dir": "Close Short", + "closedPnl": "132.254976", + "hash": "0x961d039bf2b7f7d49796042ec45e7b02039400818dbb16a639e5aeeeb1bbd1bf", + "oid": 221324989535, + "crossed": true, + "fee": "0.060223", + "tid": 889950763235879, + "cloid": "0x00000000000000000000000385000143", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "59.89", + "side": "B", + "time": 1762185490230, + "startPosition": "-234285.89", + "dir": "Close Short", + "closedPnl": "1979.502247", + "hash": "0x616ade0858fd01c362e4042ec45e7b02039800edf3f020950533895b17f0dbae", + "oid": 221324989539, + "crossed": true, + "fee": "2.097323", + "tid": 722098981018725, + "cloid": "0x00000000000000000000000388000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.5", + "sz": "1.158", + "side": "B", + "time": 1762185490518, + "startPosition": "-1950.6267", + "dir": "Close Short", + "closedPnl": "595.30464", + "hash": "0x36fc1b7496ecaa483875042ec45e7e020280005a31efc91adac4c6c755e08432", + "oid": 221324992298, + "crossed": true, + "fee": "0.874596", + "tid": 1099806603427025, + "cloid": "0x00000000000000000000000387000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.5", + "sz": "1.6205", + "side": "B", + "time": 1762185490518, + "startPosition": "-1949.4687", + "dir": "Close Short", + "closedPnl": "833.06664", + "hash": "0x36fc1b7496ecaa483875042ec45e7e020280005a31efc91adac4c6c755e08432", + "oid": 221324992298, + "crossed": true, + "fee": "1.223906", + "tid": 234043545865440, + "cloid": "0x00000000000000000000000387000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "105390.0", + "side": "B", + "time": 1762185492324, + "startPosition": "-1192527940.0", + "dir": "Close Short", + "closedPnl": "184.74867", + "hash": "0x14e8a214724eeeae1662042ec45e95020af300fa0d420d80b8b14d673142c898", + "oid": 221325032300, + "crossed": true, + "fee": "0.084056", + "tid": 532042978438137, + "cloid": "0x00000000000000000000000385000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "26258.0", + "side": "B", + "time": 1762185492324, + "startPosition": "-1192422550.0", + "dir": "Close Short", + "closedPnl": "45.977758", + "hash": "0x14e8a214724eeeae1662042ec45e95020af300fa0d420d80b8b14d673142c898", + "oid": 221325032300, + "crossed": true, + "fee": "0.020953", + "tid": 354532166814218, + "cloid": "0x00000000000000000000000385000144", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "59.9", + "side": "B", + "time": 1762185492831, + "startPosition": "-234226.0", + "dir": "Close Short", + "closedPnl": "1977.43677", + "hash": "0xd0cb3c9d70cb4182d244042ec45e9a020a4200830bce60547493e7f02fcf1b6d", + "oid": 221325042411, + "crossed": true, + "fee": "2.098177", + "tid": 762757705305013, + "cloid": "0x00000000000000000000000388000170", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.4", + "sz": "2.25", + "side": "B", + "time": 1762185492831, + "startPosition": "-1947.8482", + "dir": "Close Short", + "closedPnl": "1156.905", + "hash": "0x5c2ed7a33c2b1fdf5da8042ec45e9a020a680088d72e3eb1fff782f5fb2ef9c9", + "oid": 221325042445, + "crossed": true, + "fee": "1.699298", + "tid": 880671387979432, + "cloid": "0x00000000000000000000000387000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3596.4", + "sz": "0.5291", + "side": "B", + "time": 1762185492831, + "startPosition": "-1945.5982", + "dir": "Close Short", + "closedPnl": "272.052638", + "hash": "0x5c2ed7a33c2b1fdf5da8042ec45e9a020a680088d72e3eb1fff782f5fb2ef9c9", + "oid": 221325042445, + "crossed": true, + "fee": "0.399599", + "tid": 34502619123814, + "cloid": "0x00000000000000000000000387000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "16.09", + "side": "B", + "time": 1762185494770, + "startPosition": "-234166.1", + "dir": "Close Short", + "closedPnl": "531.972407", + "hash": "0xb9c10a8c865c78c6bb3a042ec45eb3020bc60072215f97985d89b5df455052b1", + "oid": 221325084169, + "crossed": true, + "fee": "0.563431", + "tid": 861575226527491, + "cloid": "0x00000000000000000000000388000171", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "43.8", + "side": "B", + "time": 1762185494770, + "startPosition": "-234150.01", + "dir": "Close Short", + "closedPnl": "1448.12874", + "hash": "0xb9c10a8c865c78c6bb3a042ec45eb3020bc60072215f97985d89b5df455052b1", + "oid": 221325084169, + "crossed": true, + "fee": "1.533766", + "tid": 347759717818315, + "cloid": "0x00000000000000000000000388000171", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.3", + "sz": "1.2038", + "side": "B", + "time": 1762185494940, + "startPosition": "-1945.0691", + "dir": "Close Short", + "closedPnl": "620.294064", + "hash": "0xef88cb421082a684f102042ec45eb60208120027ab85c55693517694cf86806f", + "oid": 221325088790, + "crossed": true, + "fee": "0.908884", + "tid": 842705138986413, + "cloid": "0x00000000000000000000000387000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3595.3", + "sz": "1.575", + "side": "B", + "time": 1762185494940, + "startPosition": "-1943.8653", + "dir": "Close Short", + "closedPnl": "811.566", + "hash": "0xef88cb421082a684f102042ec45eb60208120027ab85c55693517694cf86806f", + "oid": 221325088790, + "crossed": true, + "fee": "1.189145", + "tid": 665152561757505, + "cloid": "0x00000000000000000000000387000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131509.0", + "side": "B", + "time": 1762185496245, + "startPosition": "-1192396292.0", + "dir": "Close Short", + "closedPnl": "230.403768", + "hash": "0xd26e9fd553eea519d3e8042ec45ec70205a300baeee1c3eb76374b2812e27f04", + "oid": 221325122673, + "crossed": true, + "fee": "0.104916", + "tid": 834169748152379, + "cloid": "0x00000000000000000000000385000146", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "8.81", + "side": "B", + "time": 1762185496707, + "startPosition": "-234106.21", + "dir": "Close Short", + "closedPnl": "292.071763", + "hash": "0x2928d67e742a98ff2aa2042ec45ece020de400640f2db7d1ccf181d1332e72e9", + "oid": 221325131205, + "crossed": true, + "fee": "0.308337", + "tid": 665727795344804, + "cloid": "0x00000000000000000000000388000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "8.81", + "side": "B", + "time": 1762185496707, + "startPosition": "-234097.4", + "dir": "Close Short", + "closedPnl": "292.071763", + "hash": "0x2928d67e742a98ff2aa2042ec45ece020de400640f2db7d1ccf181d1332e72e9", + "oid": 221325131205, + "crossed": true, + "fee": "0.308337", + "tid": 275753455209431, + "cloid": "0x00000000000000000000000388000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "11.38", + "side": "B", + "time": 1762185496707, + "startPosition": "-234088.59", + "dir": "Close Short", + "closedPnl": "377.273174", + "hash": "0x2928d67e742a98ff2aa2042ec45ece020de400640f2db7d1ccf181d1332e72e9", + "oid": 221325131205, + "crossed": true, + "fee": "0.398284", + "tid": 1047377346764663, + "cloid": "0x00000000000000000000000388000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "8.81", + "side": "B", + "time": 1762185496707, + "startPosition": "-234077.21", + "dir": "Close Short", + "closedPnl": "292.071763", + "hash": "0x2928d67e742a98ff2aa2042ec45ece020de400640f2db7d1ccf181d1332e72e9", + "oid": 221325131205, + "crossed": true, + "fee": "0.308337", + "tid": 668664548132803, + "cloid": "0x00000000000000000000000388000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "8.81", + "side": "B", + "time": 1762185496707, + "startPosition": "-234068.4", + "dir": "Close Short", + "closedPnl": "292.071763", + "hash": "0x2928d67e742a98ff2aa2042ec45ece020de400640f2db7d1ccf181d1332e72e9", + "oid": 221325131205, + "crossed": true, + "fee": "0.308337", + "tid": 785053502347405, + "cloid": "0x00000000000000000000000388000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "11.38", + "side": "B", + "time": 1762185496707, + "startPosition": "-234059.59", + "dir": "Close Short", + "closedPnl": "377.273174", + "hash": "0x2928d67e742a98ff2aa2042ec45ece020de400640f2db7d1ccf181d1332e72e9", + "oid": 221325131205, + "crossed": true, + "fee": "0.398284", + "tid": 487927665765465, + "cloid": "0x00000000000000000000000388000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "1.92", + "side": "B", + "time": 1762185496707, + "startPosition": "-234048.21", + "dir": "Close Short", + "closedPnl": "63.652416", + "hash": "0x2928d67e742a98ff2aa2042ec45ece020de400640f2db7d1ccf181d1332e72e9", + "oid": 221325131205, + "crossed": true, + "fee": "0.067197", + "tid": 869798680241448, + "cloid": "0x00000000000000000000000388000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.5", + "sz": "2.7799", + "side": "B", + "time": 1762185497340, + "startPosition": "-1942.2903", + "dir": "Close Short", + "closedPnl": "1437.430692", + "hash": "0xdad15665c7512173dc4b042ec45ed7020aa2004b625440457e9a01b88654fb5e", + "oid": 221325145579, + "crossed": true, + "fee": "2.097809", + "tid": 293081174409258, + "cloid": "0x00000000000000000000000387000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131719.0", + "side": "B", + "time": 1762185498173, + "startPosition": "-1192264783.0", + "dir": "Close Short", + "closedPnl": "231.166845", + "hash": "0x47dda3ec254af2674957042ec45ee302039d00d1c04e1139eba64f3ee44ecc51", + "oid": 221325169867, + "crossed": true, + "fee": "0.105001", + "tid": 560459095459788, + "cloid": "0x00000000000000000000000385000147", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "6.11", + "side": "B", + "time": 1762185498336, + "startPosition": "-234046.29", + "dir": "Close Short", + "closedPnl": "203.110453", + "hash": "0x5499b3a3a71b998a5613042ec45ee50205380089421eb85cf8625ef6661f7374", + "oid": 221325173994, + "crossed": true, + "fee": "0.213725", + "tid": 713811678518509, + "cloid": "0x00000000000000000000000388000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "13.95", + "side": "B", + "time": 1762185498336, + "startPosition": "-234040.18", + "dir": "Close Short", + "closedPnl": "463.730085", + "hash": "0x5499b3a3a71b998a5613042ec45ee50205380089421eb85cf8625ef6661f7374", + "oid": 221325173994, + "crossed": true, + "fee": "0.487966", + "tid": 1027640383812804, + "cloid": "0x00000000000000000000000388000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "6.11", + "side": "B", + "time": 1762185498336, + "startPosition": "-234026.23", + "dir": "Close Short", + "closedPnl": "203.110453", + "hash": "0x5499b3a3a71b998a5613042ec45ee50205380089421eb85cf8625ef6661f7374", + "oid": 221325173994, + "crossed": true, + "fee": "0.213725", + "tid": 172756089986930, + "cloid": "0x00000000000000000000000388000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "6.11", + "side": "B", + "time": 1762185498336, + "startPosition": "-234020.12", + "dir": "Close Short", + "closedPnl": "203.049353", + "hash": "0x5499b3a3a71b998a5613042ec45ee50205380089421eb85cf8625ef6661f7374", + "oid": 221325173994, + "crossed": true, + "fee": "0.213738", + "tid": 227337292471494, + "cloid": "0x00000000000000000000000388000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "6.11", + "side": "B", + "time": 1762185498336, + "startPosition": "-234014.01", + "dir": "Close Short", + "closedPnl": "203.049353", + "hash": "0x5499b3a3a71b998a5613042ec45ee50205380089421eb85cf8625ef6661f7374", + "oid": 221325173994, + "crossed": true, + "fee": "0.213738", + "tid": 371073888647975, + "cloid": "0x00000000000000000000000388000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "6.11", + "side": "B", + "time": 1762185498336, + "startPosition": "-234007.9", + "dir": "Close Short", + "closedPnl": "203.049353", + "hash": "0x5499b3a3a71b998a5613042ec45ee50205380089421eb85cf8625ef6661f7374", + "oid": 221325173994, + "crossed": true, + "fee": "0.213738", + "tid": 994818026142761, + "cloid": "0x00000000000000000000000388000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "6.11", + "side": "B", + "time": 1762185498336, + "startPosition": "-234001.79", + "dir": "Close Short", + "closedPnl": "203.049353", + "hash": "0x5499b3a3a71b998a5613042ec45ee50205380089421eb85cf8625ef6661f7374", + "oid": 221325173994, + "crossed": true, + "fee": "0.213738", + "tid": 33269077179646, + "cloid": "0x00000000000000000000000388000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "6.11", + "side": "B", + "time": 1762185498336, + "startPosition": "-233995.68", + "dir": "Close Short", + "closedPnl": "203.049353", + "hash": "0x5499b3a3a71b998a5613042ec45ee50205380089421eb85cf8625ef6661f7374", + "oid": 221325173994, + "crossed": true, + "fee": "0.213738", + "tid": 262766671161356, + "cloid": "0x00000000000000000000000388000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "3.23", + "side": "B", + "time": 1762185498336, + "startPosition": "-233989.57", + "dir": "Close Short", + "closedPnl": "107.340329", + "hash": "0x5499b3a3a71b998a5613042ec45ee50205380089421eb85cf8625ef6661f7374", + "oid": 221325173994, + "crossed": true, + "fee": "0.112991", + "tid": 1015590553992749, + "cloid": "0x00000000000000000000000388000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.5", + "sz": "2.7816", + "side": "B", + "time": 1762185499373, + "startPosition": "-1939.5104", + "dir": "Close Short", + "closedPnl": "1441.091328", + "hash": "0xde1d07977c85ac1fdf96042ec45ef20202a6007d1788caf181e5b2ea3b89860a", + "oid": 221325197066, + "crossed": true, + "fee": "2.098508", + "tid": 747488582571074, + "cloid": "0x00000000000000000000000387000191", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "59.97", + "side": "B", + "time": 1762185499957, + "startPosition": "-233986.34", + "dir": "Close Short", + "closedPnl": "1995.339831", + "hash": "0xe9f44b7bfaa6c41ceb6e042ec45efa020cb0006195a9e2ee8dbcf6ceb9aa9e07", + "oid": 221325211865, + "crossed": true, + "fee": "2.097354", + "tid": 12164134176337, + "cloid": "0x00000000000000000000000388000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131707.0", + "side": "B", + "time": 1762185499957, + "startPosition": "-1192133064.0", + "dir": "Close Short", + "closedPnl": "230.618957", + "hash": "0x1ae9131e940e53031c62042ec45efa020cb600042f0171d5beb1be7153022ced", + "oid": 221325211868, + "crossed": true, + "fee": "0.105102", + "tid": 495698122806125, + "cloid": "0x00000000000000000000000385000148", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.5", + "sz": "2.7809", + "side": "B", + "time": 1762185500841, + "startPosition": "-1936.7288", + "dir": "Close Short", + "closedPnl": "1440.728672", + "hash": "0xf96ad088b494b550fae4042ec45f070207a6006e4f97d4239d337bdb73988f3b", + "oid": 221325228695, + "crossed": true, + "fee": "2.09798", + "tid": 313952436128419, + "cloid": "0x00000000000000000000000387000192", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "3.0", + "side": "B", + "time": 1762185501858, + "startPosition": "-233926.37", + "dir": "Close Short", + "closedPnl": "99.6369", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.104957", + "tid": 346270463752498, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "0.29", + "side": "B", + "time": 1762185501858, + "startPosition": "-233923.37", + "dir": "Close Short", + "closedPnl": "9.631567", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.010145", + "tid": 744733445250953, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "0.18", + "side": "B", + "time": 1762185501858, + "startPosition": "-233923.08", + "dir": "Close Short", + "closedPnl": "5.974614", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.006298", + "tid": 829061092376456, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "0.18", + "side": "B", + "time": 1762185501858, + "startPosition": "-233922.9", + "dir": "Close Short", + "closedPnl": "5.972814", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.006298", + "tid": 818343861248704, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "3.0", + "side": "B", + "time": 1762185501858, + "startPosition": "-233922.72", + "dir": "Close Short", + "closedPnl": "99.5469", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.104976", + "tid": 1034553924070474, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.64", + "sz": "5.97", + "side": "B", + "time": 1762185501858, + "startPosition": "-233919.72", + "dir": "Close Short", + "closedPnl": "198.038631", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.208916", + "tid": 408917980303813, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.64", + "sz": "5.97", + "side": "B", + "time": 1762185501858, + "startPosition": "-233913.75", + "dir": "Close Short", + "closedPnl": "198.038631", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.208916", + "tid": 1004509157881726, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.64", + "sz": "5.97", + "side": "B", + "time": 1762185501858, + "startPosition": "-233907.78", + "dir": "Close Short", + "closedPnl": "198.038631", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.208916", + "tid": 1015729443274568, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.64", + "sz": "6.53", + "side": "B", + "time": 1762185501858, + "startPosition": "-233901.81", + "dir": "Close Short", + "closedPnl": "216.615119", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.228513", + "tid": 239838324911233, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "17.99", + "side": "B", + "time": 1762185501858, + "startPosition": "-233895.28", + "dir": "Close Short", + "closedPnl": "596.229977", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.629662", + "tid": 463147781991517, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "6.48", + "side": "B", + "time": 1762185501858, + "startPosition": "-233877.29", + "dir": "Close Short", + "closedPnl": "214.762104", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.226804", + "tid": 1022964178166850, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.68", + "sz": "4.38", + "side": "B", + "time": 1762185501858, + "startPosition": "-233870.81", + "dir": "Close Short", + "closedPnl": "145.119474", + "hash": "0xe0ab521d1ef609cfe225042ec45f15020e760002b9f928a18473fd6fddf9e3ba", + "oid": 221325249701, + "crossed": true, + "fee": "0.153312", + "tid": 981484631536535, + "cloid": "0x00000000000000000000000388000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131544.0", + "side": "B", + "time": 1762185502002, + "startPosition": "-1192001357.0", + "dir": "Close Short", + "closedPnl": "230.333544", + "hash": "0xcabab61bed1f560dcc34042ec45f17011e00ce01881274df6e83616eac132ff8", + "oid": 221325249699, + "crossed": false, + "fee": "0.013996", + "tid": 713366552472927, + "cloid": "0x00000000000000000000000385000149", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.7", + "sz": "2.7806", + "side": "B", + "time": 1762185502730, + "startPosition": "-1933.9479", + "dir": "Close Short", + "closedPnl": "1434.455928", + "hash": "0xaab6781b54ce1b04ac30042ec45f1f020f290000efc139d64e7f236e13c1f4ef", + "oid": 221325272979, + "crossed": true, + "fee": "2.099038", + "tid": 1059017501512019, + "cloid": "0x00000000000000000000000387000193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.68", + "sz": "59.91", + "side": "B", + "time": 1762185503321, + "startPosition": "-233866.43", + "dir": "Close Short", + "closedPnl": "1984.956093", + "hash": "0xe2c0e93b8b061281e43a042ec45f270206050021260931538689948e4a09ec6c", + "oid": 221325283397, + "crossed": true, + "fee": "2.097017", + "tid": 236064829825860, + "cloid": "0x00000000000000000000000388000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.1", + "sz": "0.5587", + "side": "B", + "time": 1762185504496, + "startPosition": "-1931.1673", + "dir": "Close Short", + "closedPnl": "288.557376", + "hash": "0xd5d074a4c2af3bffd74a042ec45f36020304008a5da25ad179991ff781a315ea", + "oid": 221325298325, + "crossed": true, + "fee": "0.421684", + "tid": 811839634833062, + "cloid": "0x00000000000000000000000387000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.1", + "sz": "0.5587", + "side": "B", + "time": 1762185504496, + "startPosition": "-1930.6086", + "dir": "Close Short", + "closedPnl": "288.557376", + "hash": "0xd5d074a4c2af3bffd74a042ec45f36020304008a5da25ad179991ff781a315ea", + "oid": 221325298325, + "crossed": true, + "fee": "0.421684", + "tid": 617233029887494, + "cloid": "0x00000000000000000000000387000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.1", + "sz": "0.5587", + "side": "B", + "time": 1762185504496, + "startPosition": "-1930.0499", + "dir": "Close Short", + "closedPnl": "288.557376", + "hash": "0xd5d074a4c2af3bffd74a042ec45f36020304008a5da25ad179991ff781a315ea", + "oid": 221325298325, + "crossed": true, + "fee": "0.421684", + "tid": 122031950967317, + "cloid": "0x00000000000000000000000387000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.1", + "sz": "0.5587", + "side": "B", + "time": 1762185504496, + "startPosition": "-1929.4912", + "dir": "Close Short", + "closedPnl": "288.557376", + "hash": "0xd5d074a4c2af3bffd74a042ec45f36020304008a5da25ad179991ff781a315ea", + "oid": 221325298325, + "crossed": true, + "fee": "0.421684", + "tid": 306610561011808, + "cloid": "0x00000000000000000000000387000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.1", + "sz": "0.5453", + "side": "B", + "time": 1762185504496, + "startPosition": "-1928.9325", + "dir": "Close Short", + "closedPnl": "281.636544", + "hash": "0xd5d074a4c2af3bffd74a042ec45f36020304008a5da25ad179991ff781a315ea", + "oid": 221325298325, + "crossed": true, + "fee": "0.411571", + "tid": 902320359115217, + "cloid": "0x00000000000000000000000387000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.68", + "sz": "3.0", + "side": "B", + "time": 1762185504991, + "startPosition": "-233806.52", + "dir": "Close Short", + "closedPnl": "99.3969", + "hash": "0xaaabb8c1c3da9801ac25042ec45f3d02112c00a75eddb6d34e74641482de71ec", + "oid": 221325307167, + "crossed": true, + "fee": "0.105008", + "tid": 570320354255002, + "cloid": "0x00000000000000000000000388000177", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.68", + "sz": "56.92", + "side": "B", + "time": 1762185504991, + "startPosition": "-233803.52", + "dir": "Close Short", + "closedPnl": "1885.890516", + "hash": "0xaaabb8c1c3da9801ac25042ec45f3d02112c00a75eddb6d34e74641482de71ec", + "oid": 221325307167, + "crossed": true, + "fee": "1.992359", + "tid": 1058013972124017, + "cloid": "0x00000000000000000000000388000177", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.8", + "sz": "2.25", + "side": "B", + "time": 1762185506033, + "startPosition": "-1928.3872", + "dir": "Close Short", + "closedPnl": "1162.755", + "hash": "0x7383489f141c55bc74fd042ec45f490203940084af1f748e174bf3f1d3102fa7", + "oid": 221325325197, + "crossed": true, + "fee": "1.69807", + "tid": 739449733043545, + "cloid": "0x00000000000000000000000387000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.1", + "sz": "0.5307", + "side": "B", + "time": 1762185506033, + "startPosition": "-1926.1372", + "dir": "Close Short", + "closedPnl": "274.095936", + "hash": "0x7383489f141c55bc74fd042ec45f490203940084af1f748e174bf3f1d3102fa7", + "oid": 221325325197, + "crossed": true, + "fee": "0.400551", + "tid": 872054408036268, + "cloid": "0x00000000000000000000000387000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "0.17", + "side": "B", + "time": 1762185506796, + "startPosition": "-233746.6", + "dir": "Close Short", + "closedPnl": "5.622291", + "hash": "0xf8a241d627d9e7bcfa1b042ec45f5202044300bbc2dd068f9c6aed28e6ddc1a7", + "oid": 221325339133, + "crossed": true, + "fee": "0.005952", + "tid": 732612429792299, + "cloid": "0x00000000000000000000000388000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "0.17", + "side": "B", + "time": 1762185506796, + "startPosition": "-233746.43", + "dir": "Close Short", + "closedPnl": "5.622291", + "hash": "0xf8a241d627d9e7bcfa1b042ec45f5202044300bbc2dd068f9c6aed28e6ddc1a7", + "oid": 221325339133, + "crossed": true, + "fee": "0.005952", + "tid": 804549892487302, + "cloid": "0x00000000000000000000000388000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "6.91", + "side": "B", + "time": 1762185506796, + "startPosition": "-233746.26", + "dir": "Close Short", + "closedPnl": "228.529593", + "hash": "0xf8a241d627d9e7bcfa1b042ec45f5202044300bbc2dd068f9c6aed28e6ddc1a7", + "oid": 221325339133, + "crossed": true, + "fee": "0.241956", + "tid": 883004765166763, + "cloid": "0x00000000000000000000000388000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "7.25", + "side": "B", + "time": 1762185506796, + "startPosition": "-233739.35", + "dir": "Close Short", + "closedPnl": "239.774175", + "hash": "0xf8a241d627d9e7bcfa1b042ec45f5202044300bbc2dd068f9c6aed28e6ddc1a7", + "oid": 221325339133, + "crossed": true, + "fee": "0.253861", + "tid": 198402746608167, + "cloid": "0x00000000000000000000000388000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "45.39", + "side": "B", + "time": 1762185506796, + "startPosition": "-233732.1", + "dir": "Close Short", + "closedPnl": "1501.151697", + "hash": "0xf8a241d627d9e7bcfa1b042ec45f5202044300bbc2dd068f9c6aed28e6ddc1a7", + "oid": 221325339133, + "crossed": true, + "fee": "1.589349", + "tid": 534978856247743, + "cloid": "0x00000000000000000000000388000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.0", + "sz": "1.0982", + "side": "B", + "time": 1762185508045, + "startPosition": "-1925.6065", + "dir": "Close Short", + "closedPnl": "567.308156", + "hash": "0xd5d80273eb9e7d1ad751042ec45f6202038f005986919bec79a0adc6aa925705", + "oid": 221325357554, + "crossed": true, + "fee": "0.828855", + "tid": 448820089375269, + "cloid": "0x00000000000000000000000387000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.0", + "sz": "1.6821", + "side": "B", + "time": 1762185508045, + "startPosition": "-1924.5083", + "dir": "Close Short", + "closedPnl": "868.939218", + "hash": "0xd5d80273eb9e7d1ad751042ec45f6202038f005986919bec79a0adc6aa925705", + "oid": 221325357554, + "crossed": true, + "fee": "1.269548", + "tid": 784492178840906, + "cloid": "0x00000000000000000000000387000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "0.07", + "side": "B", + "time": 1762185508375, + "startPosition": "-233686.71", + "dir": "Close Short", + "closedPnl": "2.314361", + "hash": "0x413eee9fc418730e42b8042ec45f66020b4300855f1b91e0e50799f2831c4cf8", + "oid": 221325366881, + "crossed": true, + "fee": "0.002451", + "tid": 766539509380921, + "cloid": "0x00000000000000000000000388000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "0.07", + "side": "B", + "time": 1762185508375, + "startPosition": "-233686.64", + "dir": "Close Short", + "closedPnl": "2.314361", + "hash": "0x413eee9fc418730e42b8042ec45f66020b4300855f1b91e0e50799f2831c4cf8", + "oid": 221325366881, + "crossed": true, + "fee": "0.002451", + "tid": 928252312275706, + "cloid": "0x00000000000000000000000388000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "0.07", + "side": "B", + "time": 1762185508375, + "startPosition": "-233686.57", + "dir": "Close Short", + "closedPnl": "2.314361", + "hash": "0x413eee9fc418730e42b8042ec45f66020b4300855f1b91e0e50799f2831c4cf8", + "oid": 221325366881, + "crossed": true, + "fee": "0.002451", + "tid": 180660870319885, + "cloid": "0x00000000000000000000000388000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "0.07", + "side": "B", + "time": 1762185508375, + "startPosition": "-233686.5", + "dir": "Close Short", + "closedPnl": "2.314361", + "hash": "0x413eee9fc418730e42b8042ec45f66020b4300855f1b91e0e50799f2831c4cf8", + "oid": 221325366881, + "crossed": true, + "fee": "0.002451", + "tid": 724187229660186, + "cloid": "0x00000000000000000000000388000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "0.07", + "side": "B", + "time": 1762185508375, + "startPosition": "-233686.43", + "dir": "Close Short", + "closedPnl": "2.314361", + "hash": "0x413eee9fc418730e42b8042ec45f66020b4300855f1b91e0e50799f2831c4cf8", + "oid": 221325366881, + "crossed": true, + "fee": "0.002451", + "tid": 129087252454250, + "cloid": "0x00000000000000000000000388000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "0.07", + "side": "B", + "time": 1762185508375, + "startPosition": "-233686.36", + "dir": "Close Short", + "closedPnl": "2.314361", + "hash": "0x413eee9fc418730e42b8042ec45f66020b4300855f1b91e0e50799f2831c4cf8", + "oid": 221325366881, + "crossed": true, + "fee": "0.002451", + "tid": 479359183022862, + "cloid": "0x00000000000000000000000388000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "3.0", + "side": "B", + "time": 1762185508375, + "startPosition": "-233686.29", + "dir": "Close Short", + "closedPnl": "99.1869", + "hash": "0x413eee9fc418730e42b8042ec45f66020b4300855f1b91e0e50799f2831c4cf8", + "oid": 221325366881, + "crossed": true, + "fee": "0.105052", + "tid": 47622562632665, + "cloid": "0x00000000000000000000000388000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.79", + "sz": "0.29", + "side": "B", + "time": 1762185508375, + "startPosition": "-233683.29", + "dir": "Close Short", + "closedPnl": "9.576467", + "hash": "0x413eee9fc418730e42b8042ec45f66020b4300855f1b91e0e50799f2831c4cf8", + "oid": 221325366881, + "crossed": true, + "fee": "0.010157", + "tid": 1011844846076701, + "cloid": "0x00000000000000000000000388000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "56.18", + "side": "B", + "time": 1762185508375, + "startPosition": "-233683.0", + "dir": "Close Short", + "closedPnl": "1854.631014", + "hash": "0x413eee9fc418730e42b8042ec45f66020b4300855f1b91e0e50799f2831c4cf8", + "oid": 221325366881, + "crossed": true, + "fee": "1.967873", + "tid": 396251664077871, + "cloid": "0x00000000000000000000000388000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "24420.0", + "side": "B", + "time": 1762185508700, + "startPosition": "-1191869813.0", + "dir": "Close Short", + "closedPnl": "42.56406", + "hash": "0xe450012811fa3a91e5c9042ec45f6b020cf8000dacfd59638818ac7ad0fe147c", + "oid": 221325372698, + "crossed": true, + "fee": "0.019528", + "tid": 76639235963771, + "cloid": "0x00000000000000000000000385000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "107095.0", + "side": "B", + "time": 1762185508700, + "startPosition": "-1191845393.0", + "dir": "Close Short", + "closedPnl": "186.55949", + "hash": "0xe450012811fa3a91e5c9042ec45f6b020cf8000dacfd59638818ac7ad0fe147c", + "oid": 221325372698, + "crossed": true, + "fee": "0.085664", + "tid": 709395750568503, + "cloid": "0x00000000000000000000000385000152", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.1", + "sz": "2.7803", + "side": "B", + "time": 1762185509696, + "startPosition": "-1922.8262", + "dir": "Close Short", + "closedPnl": "1435.969344", + "hash": "0xf0e664f029c90120f260042ec45f7602070600d5c4cc1ff394af1042e8ccdb0b", + "oid": 221325391285, + "crossed": true, + "fee": "2.098462", + "tid": 213515754429457, + "cloid": "0x00000000000000000000000387000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "59.87", + "side": "B", + "time": 1762185510166, + "startPosition": "-233626.82", + "dir": "Close Short", + "closedPnl": "1976.446401", + "hash": "0xc891df51a7538002ca0b042ec45f7c020ca9003742569ed46c5a8aa4665759ed", + "oid": 221325400765, + "crossed": true, + "fee": "2.097126", + "tid": 718812292116253, + "cloid": "0x00000000000000000000000388000180", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "131336.0", + "side": "B", + "time": 1762185510426, + "startPosition": "-1191738298.0", + "dir": "Close Short", + "closedPnl": "229.049984", + "hash": "0xe68d41010ddc89bbe806042ec45f7f020a0200e6a8dfa88d8a55ec53ccd063a6", + "oid": 221325406281, + "crossed": true, + "fee": "0.104999", + "tid": 677025534445480, + "cloid": "0x00000000000000000000000385000153", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3594.1", + "sz": "2.7807", + "side": "B", + "time": 1762185511464, + "startPosition": "-1920.0459", + "dir": "Close Short", + "closedPnl": "1436.175936", + "hash": "0xc5bce16c87fe1d50c736042ec45f8c0208f3005222f13c2269858cbf46f1f73b", + "oid": 221325428683, + "crossed": true, + "fee": "2.098763", + "tid": 594871114737080, + "cloid": "0x00000000000000000000000387000198", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.77", + "sz": "59.89", + "side": "B", + "time": 1762185512072, + "startPosition": "-233566.95", + "dir": "Close Short", + "closedPnl": "1978.903347", + "hash": "0x7e78434b759ffb8e7ff1042ec45f9202103f003110931a602240ee9e3493d579", + "oid": 221325442106, + "crossed": true, + "fee": "2.097449", + "tid": 305630323175579, + "cloid": "0x00000000000000000000000388000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "0.95", + "side": "B", + "time": 1762185514041, + "startPosition": "-233507.06", + "dir": "Close Short", + "closedPnl": "31.409185", + "hash": "0x7e8c49abb66c41428006042ec45fab0212970091516f60142254f4fe75601b2d", + "oid": 221325479930, + "crossed": true, + "fee": "0.033266", + "tid": 985625843908808, + "cloid": "0x00000000000000000000000388000182", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "58.95", + "side": "B", + "time": 1762185514041, + "startPosition": "-233506.11", + "dir": "Close Short", + "closedPnl": "1949.022585", + "hash": "0x7e8c49abb66c41428006042ec45fab0212970091516f60142254f4fe75601b2d", + "oid": 221325479930, + "crossed": true, + "fee": "2.064281", + "tid": 1063525652264178, + "cloid": "0x00000000000000000000000388000182", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3593.2", + "sz": "2.7808", + "side": "B", + "time": 1762185514913, + "startPosition": "-1917.2652", + "dir": "Close Short", + "closedPnl": "1438.730304", + "hash": "0x1f45d75ec00a854920bf042ec45fb702070500445b0da41bc30e82b17f0e5f33", + "oid": 221325500614, + "crossed": true, + "fee": "2.098313", + "tid": 569983431711358, + "cloid": "0x00000000000000000000000387000199", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.71", + "sz": "59.92", + "side": "B", + "time": 1762185516462, + "startPosition": "-233447.16", + "dir": "Close Short", + "closedPnl": "1983.489816", + "hash": "0x4e4bc0c956536bc44fc5042ec45fcc02078900aef1568a96f2146c1c155745ae", + "oid": 221325532387, + "crossed": true, + "fee": "2.097745", + "tid": 762132551763488, + "cloid": "0x00000000000000000000000388000183", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.2", + "sz": "0.7418", + "side": "B", + "time": 1762185516736, + "startPosition": "-1914.4844", + "dir": "Close Short", + "closedPnl": "384.534284", + "hash": "0x2164517dea2d0bbc22de042ec45fd00203ba006385202a8ec52cfcd0a920e5a6", + "oid": 221325535705, + "crossed": true, + "fee": "0.559585", + "tid": 964612237121852, + "cloid": "0x00000000000000000000000387000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.2", + "sz": "1.1689", + "side": "B", + "time": 1762185516736, + "startPosition": "-1913.7426", + "dir": "Close Short", + "closedPnl": "605.934382", + "hash": "0x2164517dea2d0bbc22de042ec45fd00203ba006385202a8ec52cfcd0a920e5a6", + "oid": 221325535705, + "crossed": true, + "fee": "0.881773", + "tid": 682244665413761, + "cloid": "0x00000000000000000000000387000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.2", + "sz": "0.8717", + "side": "B", + "time": 1762185516736, + "startPosition": "-1912.5737", + "dir": "Close Short", + "closedPnl": "451.871846", + "hash": "0x2164517dea2d0bbc22de042ec45fd00203ba006385202a8ec52cfcd0a920e5a6", + "oid": 221325535705, + "crossed": true, + "fee": "0.657577", + "tid": 264382995738351, + "cloid": "0x00000000000000000000000387000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.68", + "sz": "18.53", + "side": "B", + "time": 1762185518533, + "startPosition": "-233387.24", + "dir": "Close Short", + "closedPnl": "613.941519", + "hash": "0x9e3d9f4f58c256fe9fb7042ec45fe90203f70034f3c575d042064aa217c630e9", + "oid": 221325564233, + "crossed": true, + "fee": "0.648601", + "tid": 1096247552032505, + "cloid": "0x00000000000000000000000388000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.68", + "sz": "9.17", + "side": "B", + "time": 1762185518533, + "startPosition": "-233368.71", + "dir": "Close Short", + "closedPnl": "303.823191", + "hash": "0x9e3d9f4f58c256fe9fb7042ec45fe90203f70034f3c575d042064aa217c630e9", + "oid": 221325564233, + "crossed": true, + "fee": "0.320975", + "tid": 515951697258328, + "cloid": "0x00000000000000000000000388000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.68", + "sz": "32.22", + "side": "B", + "time": 1762185518533, + "startPosition": "-233359.54", + "dir": "Close Short", + "closedPnl": "1067.522706", + "hash": "0x9e3d9f4f58c256fe9fb7042ec45fe90203f70034f3c575d042064aa217c630e9", + "oid": 221325564233, + "crossed": true, + "fee": "1.12779", + "tid": 1062850276766155, + "cloid": "0x00000000000000000000000388000184", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.7", + "sz": "1.0301", + "side": "B", + "time": 1762185519815, + "startPosition": "-1911.702", + "dir": "Close Short", + "closedPnl": "534.498288", + "hash": "0x12bcf7c7429c31811436042ec45ff902074c00acdd9f5053b685a31a01900b6b", + "oid": 221325591363, + "crossed": true, + "fee": "0.77696", + "tid": 1117805306822370, + "cloid": "0x00000000000000000000000387000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.7", + "sz": "1.7523", + "side": "B", + "time": 1762185519815, + "startPosition": "-1910.6719", + "dir": "Close Short", + "closedPnl": "909.233424", + "hash": "0x12bcf7c7429c31811436042ec45ff902074c00acdd9f5053b685a31a01900b6b", + "oid": 221325591363, + "crossed": true, + "fee": "1.321684", + "tid": 200648707921594, + "cloid": "0x00000000000000000000000387000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "14.82", + "side": "B", + "time": 1762185520191, + "startPosition": "-233327.32", + "dir": "Close Short", + "closedPnl": "493.540086", + "hash": "0xe344da762356a5eae4be042ec45fff020a9a005bbe59c4bc870d85c8e25a7fd5", + "oid": 221325598958, + "crossed": true, + "fee": "0.518212", + "tid": 720238394079379, + "cloid": "0x00000000000000000000000388000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "14.82", + "side": "B", + "time": 1762185520191, + "startPosition": "-233312.5", + "dir": "Close Short", + "closedPnl": "493.540086", + "hash": "0xe344da762356a5eae4be042ec45fff020a9a005bbe59c4bc870d85c8e25a7fd5", + "oid": 221325598958, + "crossed": true, + "fee": "0.518212", + "tid": 877004156599729, + "cloid": "0x00000000000000000000000388000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "14.82", + "side": "B", + "time": 1762185520191, + "startPosition": "-233297.68", + "dir": "Close Short", + "closedPnl": "493.540086", + "hash": "0xe344da762356a5eae4be042ec45fff020a9a005bbe59c4bc870d85c8e25a7fd5", + "oid": 221325598958, + "crossed": true, + "fee": "0.518212", + "tid": 1103611188729600, + "cloid": "0x00000000000000000000000388000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "14.82", + "side": "B", + "time": 1762185520191, + "startPosition": "-233282.86", + "dir": "Close Short", + "closedPnl": "493.540086", + "hash": "0xe344da762356a5eae4be042ec45fff020a9a005bbe59c4bc870d85c8e25a7fd5", + "oid": 221325598958, + "crossed": true, + "fee": "0.518212", + "tid": 13170033014575, + "cloid": "0x00000000000000000000000388000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "0.68", + "side": "B", + "time": 1762185520191, + "startPosition": "-233268.04", + "dir": "Close Short", + "closedPnl": "22.645564", + "hash": "0xe344da762356a5eae4be042ec45fff020a9a005bbe59c4bc870d85c8e25a7fd5", + "oid": 221325598958, + "crossed": true, + "fee": "0.023777", + "tid": 1058326044397902, + "cloid": "0x00000000000000000000000388000185", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131429.0", + "side": "B", + "time": 1762185520981, + "startPosition": "-1191606962.0", + "dir": "Close Short", + "closedPnl": "230.263608", + "hash": "0x2b5a1ae8aca08d732cd3042ec4600a02038000ce47a3ac45cf22c63b6ba4675d", + "oid": 221325615536, + "crossed": true, + "fee": "0.104852", + "tid": 755500715859691, + "cloid": "0x00000000000000000000000385000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.0", + "sz": "2.783", + "side": "B", + "time": 1762185521530, + "startPosition": "-1908.9196", + "dir": "Close Short", + "closedPnl": "1445.99114", + "hash": "0x3439e52b8ce2928d35b3042ec460110207c1001127e5b15fd802907e4be66c77", + "oid": 221325626021, + "crossed": true, + "fee": "2.098688", + "tid": 310627613132236, + "cloid": "0x00000000000000000000000387000202", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "59.97", + "side": "B", + "time": 1762185521722, + "startPosition": "-233267.36", + "dir": "Close Short", + "closedPnl": "1994.740131", + "hash": "0xf834f0042119f8ebf9ae042ec4601302077200e9bc1d17be9bfd9b56e01dd2d6", + "oid": 221325628729, + "crossed": true, + "fee": "2.09748", + "tid": 696009853456807, + "cloid": "0x00000000000000000000000388000186", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131746.0", + "side": "B", + "time": 1762185523579, + "startPosition": "-1191475533.0", + "dir": "Close Short", + "closedPnl": "230.950738", + "hash": "0x04b592dcf4a6e6ac062f042ec4602a02036000c28faa057ea87e3e2fb3aac096", + "oid": 221325669730, + "crossed": true, + "fee": "0.105077", + "tid": 150080106831259, + "cloid": "0x00000000000000000000000385000157", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "0.29", + "side": "B", + "time": 1762185523645, + "startPosition": "-233207.39", + "dir": "Close Short", + "closedPnl": "9.651867", + "hash": "0x2231c244f9148f9a23ab042ec4602b02067a002a9417ae6cc5fa6d97b8186984", + "oid": 221325672494, + "crossed": true, + "fee": "0.010141", + "tid": 539299659239547, + "cloid": "0x00000000000000000000000388000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "6.25", + "side": "B", + "time": 1762185523645, + "startPosition": "-233207.1", + "dir": "Close Short", + "closedPnl": "208.014375", + "hash": "0x2231c244f9148f9a23ab042ec4602b02067a002a9417ae6cc5fa6d97b8186984", + "oid": 221325672494, + "crossed": true, + "fee": "0.21857", + "tid": 708334794861996, + "cloid": "0x00000000000000000000000388000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "12.01", + "side": "B", + "time": 1762185523645, + "startPosition": "-233200.85", + "dir": "Close Short", + "closedPnl": "399.600323", + "hash": "0x2231c244f9148f9a23ab042ec4602b02067a002a9417ae6cc5fa6d97b8186984", + "oid": 221325672494, + "crossed": true, + "fee": "0.42003", + "tid": 155816199195518, + "cloid": "0x00000000000000000000000388000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "41.45", + "side": "B", + "time": 1762185523645, + "startPosition": "-233188.84", + "dir": "Close Short", + "closedPnl": "1378.722335", + "hash": "0x2231c244f9148f9a23ab042ec4602b02067a002a9417ae6cc5fa6d97b8186984", + "oid": 221325672494, + "crossed": true, + "fee": "1.449734", + "tid": 684118121424862, + "cloid": "0x00000000000000000000000388000187", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.7", + "sz": "2.7835", + "side": "B", + "time": 1762185523645, + "startPosition": "-1906.1366", + "dir": "Close Short", + "closedPnl": "1447.08598", + "hash": "0xd50538e012a5d215d67e042ec4602b02067b00c5ada8f0e778cde432d1a9ac00", + "oid": 221325672495, + "crossed": true, + "fee": "2.098889", + "tid": 503612392224997, + "cloid": "0x00000000000000000000000387000203", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "59.97", + "side": "B", + "time": 1762185525186, + "startPosition": "-233147.39", + "dir": "Close Short", + "closedPnl": "1994.740131", + "hash": "0x6e1d9406d4e6ba486f97042ec4604002051600ec6fe9d91a11e63f5993ea9433", + "oid": 221325700611, + "crossed": true, + "fee": "2.09748", + "tid": 597259289527530, + "cloid": "0x00000000000000000000000388000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131640.0", + "side": "B", + "time": 1762185525186, + "startPosition": "-1191343787.0", + "dir": "Close Short", + "closedPnl": "230.76492", + "hash": "0x9f125ba96e4e492ea08c042ec4604002051c008f0941680042db06fc2d422319", + "oid": 221325700616, + "crossed": true, + "fee": "0.104993", + "tid": 104720009149545, + "cloid": "0x00000000000000000000000385000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.9", + "sz": "0.0735", + "side": "B", + "time": 1762185526605, + "startPosition": "-1903.3531", + "dir": "Close Short", + "closedPnl": "38.19648", + "hash": "0xf05e0366fe033112f1d7042ec46052020b9e004c99064fe59426aeb9bd070afd", + "oid": 221325721243, + "crossed": true, + "fee": "0.055425", + "tid": 682637564335246, + "cloid": "0x00000000000000000000000387000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.9", + "sz": "0.1705", + "side": "B", + "time": 1762185526605, + "startPosition": "-1903.2796", + "dir": "Close Short", + "closedPnl": "88.60544", + "hash": "0xf05e0366fe033112f1d7042ec46052020b9e004c99064fe59426aeb9bd070afd", + "oid": 221325721243, + "crossed": true, + "fee": "0.128572", + "tid": 289222547779925, + "cloid": "0x00000000000000000000000387000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.2", + "sz": "0.0055", + "side": "B", + "time": 1762185526605, + "startPosition": "-1903.1091", + "dir": "Close Short", + "closedPnl": "2.85659", + "hash": "0xf05e0366fe033112f1d7042ec46052020b9e004c99064fe59426aeb9bd070afd", + "oid": 221325721243, + "crossed": true, + "fee": "0.004147", + "tid": 92853707592220, + "cloid": "0x00000000000000000000000387000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.6", + "sz": "2.5334", + "side": "B", + "time": 1762185526605, + "startPosition": "-1903.1036", + "dir": "Close Short", + "closedPnl": "1314.783932", + "hash": "0xf05e0366fe033112f1d7042ec46052020b9e004c99064fe59426aeb9bd070afd", + "oid": 221325721243, + "crossed": true, + "fee": "1.910781", + "tid": 984149509580995, + "cloid": "0x00000000000000000000000387000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "1.21", + "side": "B", + "time": 1762185527231, + "startPosition": "-233087.42", + "dir": "Close Short", + "closedPnl": "40.235283", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.042322", + "tid": 416588487504291, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "1.21", + "side": "B", + "time": 1762185527231, + "startPosition": "-233086.21", + "dir": "Close Short", + "closedPnl": "40.235283", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.042322", + "tid": 1076977714617713, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "1.21", + "side": "B", + "time": 1762185527231, + "startPosition": "-233085.0", + "dir": "Close Short", + "closedPnl": "40.235283", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.042322", + "tid": 868839766427761, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "1.21", + "side": "B", + "time": 1762185527231, + "startPosition": "-233083.79", + "dir": "Close Short", + "closedPnl": "40.235283", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.042322", + "tid": 920127021420276, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "1.21", + "side": "B", + "time": 1762185527231, + "startPosition": "-233082.58", + "dir": "Close Short", + "closedPnl": "40.235283", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.042322", + "tid": 329988303296069, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "1.21", + "side": "B", + "time": 1762185527231, + "startPosition": "-233081.37", + "dir": "Close Short", + "closedPnl": "40.235283", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.042322", + "tid": 266983900257119, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "0.1", + "side": "B", + "time": 1762185527231, + "startPosition": "-233080.16", + "dir": "Close Short", + "closedPnl": "3.32423", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.003497", + "tid": 990983164925268, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "0.1", + "side": "B", + "time": 1762185527231, + "startPosition": "-233080.06", + "dir": "Close Short", + "closedPnl": "3.32423", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.003497", + "tid": 916701980247063, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "3.0", + "side": "B", + "time": 1762185527231, + "startPosition": "-233079.96", + "dir": "Close Short", + "closedPnl": "99.7269", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.104939", + "tid": 772962853555110, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "0.18", + "side": "B", + "time": 1762185527231, + "startPosition": "-233076.96", + "dir": "Close Short", + "closedPnl": "5.983614", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.006296", + "tid": 1079966384320117, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "18.0", + "side": "B", + "time": 1762185527231, + "startPosition": "-233076.78", + "dir": "Close Short", + "closedPnl": "598.1814", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "0.629672", + "tid": 217639129173931, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "31.34", + "side": "B", + "time": 1762185527231, + "startPosition": "-233058.78", + "dir": "Close Short", + "closedPnl": "1041.186882", + "hash": "0x8075f38fb7ed57b781ef042ec4605a0204c4007552e07689243e9ee276e131a2", + "oid": 221325735457, + "crossed": true, + "fee": "1.096395", + "tid": 608531463823846, + "cloid": "0x00000000000000000000000388000189", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.7", + "sz": "2.7822", + "side": "B", + "time": 1762185528733, + "startPosition": "-1900.5702", + "dir": "Close Short", + "closedPnl": "1443.627936", + "hash": "0x525bdca0107578e153d5042ec4606b0208200085ab7897b3f62487f2cf7952cb", + "oid": 221325765960, + "crossed": true, + "fee": "2.098493", + "tid": 990712561686308, + "cloid": "0x00000000000000000000000387000205", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "59.97", + "side": "B", + "time": 1762185528959, + "startPosition": "-233027.44", + "dir": "Close Short", + "closedPnl": "1994.740131", + "hash": "0x1d0c029ee1c63d9c1e85042ec4606e0207ae00847cc95c6ec0d4adf1a0ca1786", + "oid": 221325769307, + "crossed": true, + "fee": "2.09748", + "tid": 706053855876625, + "cloid": "0x00000000000000000000000388000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "131648.0", + "side": "B", + "time": 1762185528959, + "startPosition": "-1191212147.0", + "dir": "Close Short", + "closedPnl": "229.594112", + "hash": "0xc864bd57fa90b1c1c9de042ec4606e0207c3003d9593d0936c2d68aab9948bac", + "oid": 221325769319, + "crossed": true, + "fee": "0.105248", + "tid": 1065613584807392, + "cloid": "0x00000000000000000000000385000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.6", + "sz": "0.741", + "side": "B", + "time": 1762185530276, + "startPosition": "-1897.788", + "dir": "Close Short", + "closedPnl": "384.56418", + "hash": "0x680a4756cb41cd8a6984042ec460820206a2003c6644ec5c0bd2f2a98a45a775", + "oid": 221325785604, + "crossed": true, + "fee": "0.558888", + "tid": 765824590548736, + "cloid": "0x00000000000000000000000387000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.6", + "sz": "0.3705", + "side": "B", + "time": 1762185530276, + "startPosition": "-1897.047", + "dir": "Close Short", + "closedPnl": "192.28209", + "hash": "0x680a4756cb41cd8a6984042ec460820206a2003c6644ec5c0bd2f2a98a45a775", + "oid": 221325785604, + "crossed": true, + "fee": "0.279444", + "tid": 27197174885767, + "cloid": "0x00000000000000000000000387000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.6", + "sz": "0.3705", + "side": "B", + "time": 1762185530276, + "startPosition": "-1896.6765", + "dir": "Close Short", + "closedPnl": "192.28209", + "hash": "0x680a4756cb41cd8a6984042ec460820206a2003c6644ec5c0bd2f2a98a45a775", + "oid": 221325785604, + "crossed": true, + "fee": "0.279444", + "tid": 401611092629668, + "cloid": "0x00000000000000000000000387000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.6", + "sz": "0.3705", + "side": "B", + "time": 1762185530276, + "startPosition": "-1896.306", + "dir": "Close Short", + "closedPnl": "192.28209", + "hash": "0x680a4756cb41cd8a6984042ec460820206a2003c6644ec5c0bd2f2a98a45a775", + "oid": 221325785604, + "crossed": true, + "fee": "0.279444", + "tid": 475512131677960, + "cloid": "0x00000000000000000000000387000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.6", + "sz": "0.3705", + "side": "B", + "time": 1762185530276, + "startPosition": "-1895.9355", + "dir": "Close Short", + "closedPnl": "192.28209", + "hash": "0x680a4756cb41cd8a6984042ec460820206a2003c6644ec5c0bd2f2a98a45a775", + "oid": 221325785604, + "crossed": true, + "fee": "0.279444", + "tid": 103444514042636, + "cloid": "0x00000000000000000000000387000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.6", + "sz": "0.3705", + "side": "B", + "time": 1762185530276, + "startPosition": "-1895.565", + "dir": "Close Short", + "closedPnl": "192.28209", + "hash": "0x680a4756cb41cd8a6984042ec460820206a2003c6644ec5c0bd2f2a98a45a775", + "oid": 221325785604, + "crossed": true, + "fee": "0.279444", + "tid": 461915161881360, + "cloid": "0x00000000000000000000000387000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.6", + "sz": "0.189", + "side": "B", + "time": 1762185530276, + "startPosition": "-1895.1945", + "dir": "Close Short", + "closedPnl": "98.08722", + "hash": "0x680a4756cb41cd8a6984042ec460820206a2003c6644ec5c0bd2f2a98a45a775", + "oid": 221325785604, + "crossed": true, + "fee": "0.14255", + "tid": 801199376964409, + "cloid": "0x00000000000000000000000387000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "1.09", + "side": "B", + "time": 1762185530618, + "startPosition": "-232967.47", + "dir": "Close Short", + "closedPnl": "36.212307", + "hash": "0x46f117254fbe9597486a042ec46087020aa8000aeab1b469eab9c2780eb26f81", + "oid": 221325791689, + "crossed": true, + "fee": "0.038132", + "tid": 644456561448401, + "cloid": "0x00000000000000000000000388000191", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "58.87", + "side": "B", + "time": 1762185530618, + "startPosition": "-232966.38", + "dir": "Close Short", + "closedPnl": "1955.796801", + "hash": "0x46f117254fbe9597486a042ec46087020aa8000aeab1b469eab9c2780eb26f81", + "oid": 221325791689, + "crossed": true, + "fee": "2.059502", + "tid": 850208299984479, + "cloid": "0x00000000000000000000000388000191", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131294.0", + "side": "B", + "time": 1762185530618, + "startPosition": "-1191080499.0", + "dir": "Close Short", + "closedPnl": "228.845442", + "hash": "0xc512682ccf84e201c68c042ec46087020aad00126a8800d368db137f8e88bbec", + "oid": 221325791692, + "crossed": true, + "fee": "0.104993", + "tid": 25284940658796, + "cloid": "0x00000000000000000000000385000161", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.7", + "sz": "0.0314", + "side": "B", + "time": 1762185532213, + "startPosition": "-1895.0055", + "dir": "Close Short", + "closedPnl": "16.292832", + "hash": "0x35bd4dea5c1251693737042ec4609802034900cff715703bd985f93d1b162b53", + "oid": 221325819219, + "crossed": true, + "fee": "0.023683", + "tid": 344297110234440, + "cloid": "0x00000000000000000000000387000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.7", + "sz": "0.0314", + "side": "B", + "time": 1762185532213, + "startPosition": "-1894.9741", + "dir": "Close Short", + "closedPnl": "16.292832", + "hash": "0x35bd4dea5c1251693737042ec4609802034900cff715703bd985f93d1b162b53", + "oid": 221325819219, + "crossed": true, + "fee": "0.023683", + "tid": 796361421010981, + "cloid": "0x00000000000000000000000387000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.7", + "sz": "0.0314", + "side": "B", + "time": 1762185532213, + "startPosition": "-1894.9427", + "dir": "Close Short", + "closedPnl": "16.292832", + "hash": "0x35bd4dea5c1251693737042ec4609802034900cff715703bd985f93d1b162b53", + "oid": 221325819219, + "crossed": true, + "fee": "0.023683", + "tid": 939249537881041, + "cloid": "0x00000000000000000000000387000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.7", + "sz": "0.0314", + "side": "B", + "time": 1762185532213, + "startPosition": "-1894.9113", + "dir": "Close Short", + "closedPnl": "16.292832", + "hash": "0x35bd4dea5c1251693737042ec4609802034900cff715703bd985f93d1b162b53", + "oid": 221325819219, + "crossed": true, + "fee": "0.023683", + "tid": 29306450565740, + "cloid": "0x00000000000000000000000387000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.7", + "sz": "0.0314", + "side": "B", + "time": 1762185532213, + "startPosition": "-1894.8799", + "dir": "Close Short", + "closedPnl": "16.292832", + "hash": "0x35bd4dea5c1251693737042ec4609802034900cff715703bd985f93d1b162b53", + "oid": 221325819219, + "crossed": true, + "fee": "0.023683", + "tid": 262610475127483, + "cloid": "0x00000000000000000000000387000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.7", + "sz": "0.0314", + "side": "B", + "time": 1762185532213, + "startPosition": "-1894.8485", + "dir": "Close Short", + "closedPnl": "16.292832", + "hash": "0x35bd4dea5c1251693737042ec4609802034900cff715703bd985f93d1b162b53", + "oid": 221325819219, + "crossed": true, + "fee": "0.023683", + "tid": 841064458332942, + "cloid": "0x00000000000000000000000387000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.1", + "sz": "2.5936", + "side": "B", + "time": 1762185532213, + "startPosition": "-1894.8171", + "dir": "Close Short", + "closedPnl": "1344.729728", + "hash": "0x35bd4dea5c1251693737042ec4609802034900cff715703bd985f93d1b162b53", + "oid": 221325819219, + "crossed": true, + "fee": "1.956458", + "tid": 722330015592027, + "cloid": "0x00000000000000000000000387000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "0.1", + "side": "B", + "time": 1762185532701, + "startPosition": "-232907.51", + "dir": "Close Short", + "closedPnl": "3.32123", + "hash": "0x311b8983c651b18d3295042ec4609e0202ef00696154d05fd4e434d685558b77", + "oid": 221325828449, + "crossed": true, + "fee": "0.003498", + "tid": 223637242325090, + "cloid": "0x00000000000000000000000388000192", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "59.84", + "side": "B", + "time": 1762185532701, + "startPosition": "-232907.41", + "dir": "Close Short", + "closedPnl": "1986.825632", + "hash": "0x311b8983c651b18d3295042ec4609e0202ef00696154d05fd4e434d685558b77", + "oid": 221325828449, + "crossed": true, + "fee": "2.093687", + "tid": 23018372777413, + "cloid": "0x00000000000000000000000388000192", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131259.0", + "side": "B", + "time": 1762185532701, + "startPosition": "-1190949205.0", + "dir": "Close Short", + "closedPnl": "228.653178", + "hash": "0xe3ef001edfe2f408e568042ec4609e0202f000047ae612da87b7ab719ee6cdf3", + "oid": 221325828450, + "crossed": true, + "fee": "0.104992", + "tid": 808052951706839, + "cloid": "0x00000000000000000000000385000162", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.2", + "sz": "2.7818", + "side": "B", + "time": 1762185533680, + "startPosition": "-1892.2235", + "dir": "Close Short", + "closedPnl": "1442.029484", + "hash": "0x39ed21fe07cd30783b66042ec460ad02019300e3a2c04f4addb5cd50c6c10a62", + "oid": 221325846818, + "crossed": true, + "fee": "2.098484", + "tid": 941317181808525, + "cloid": "0x00000000000000000000000387000208", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "59.94", + "side": "B", + "time": 1762185534303, + "startPosition": "-232847.57", + "dir": "Close Short", + "closedPnl": "1989.546462", + "hash": "0x8e1731c8b2b7c16b8f90042ec460b602052d00ae4dbae03d31dfdd1b71bb9b56", + "oid": 221325857116, + "crossed": true, + "fee": "2.097312", + "tid": 136427403924736, + "cloid": "0x00000000000000000000000388000193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131234.0", + "side": "B", + "time": 1762185534303, + "startPosition": "-1190817946.0", + "dir": "Close Short", + "closedPnl": "228.740862", + "hash": "0xf3be1efee5da4662f537042ec460b602052f00e480dd65359786ca51a4de204d", + "oid": 221325857117, + "crossed": true, + "fee": "0.104945", + "tid": 457340366204139, + "cloid": "0x00000000000000000000000385000163", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.0", + "sz": "0.1522", + "side": "B", + "time": 1762185535314, + "startPosition": "-1889.4417", + "dir": "Close Short", + "closedPnl": "78.927876", + "hash": "0x1c4c78b6e2895ff01dc6042ec460c0020680009c7d8c7ec2c0152409a18d39da", + "oid": 221325873325, + "crossed": true, + "fee": "0.114807", + "tid": 165897554480088, + "cloid": "0x00000000000000000000000387000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.0", + "sz": "0.5548", + "side": "B", + "time": 1762185535314, + "startPosition": "-1889.2895", + "dir": "Close Short", + "closedPnl": "287.708184", + "hash": "0x1c4c78b6e2895ff01dc6042ec460c0020680009c7d8c7ec2c0152409a18d39da", + "oid": 221325873325, + "crossed": true, + "fee": "0.418496", + "tid": 140093531041401, + "cloid": "0x00000000000000000000000387000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.0", + "sz": "0.4805", + "side": "B", + "time": 1762185535314, + "startPosition": "-1888.7347", + "dir": "Close Short", + "closedPnl": "249.17769", + "hash": "0x1c4c78b6e2895ff01dc6042ec460c0020680009c7d8c7ec2c0152409a18d39da", + "oid": 221325873325, + "crossed": true, + "fee": "0.36245", + "tid": 1012680050276259, + "cloid": "0x00000000000000000000000387000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.0", + "sz": "0.2783", + "side": "B", + "time": 1762185535314, + "startPosition": "-1888.2542", + "dir": "Close Short", + "closedPnl": "144.320814", + "hash": "0x1c4c78b6e2895ff01dc6042ec460c0020680009c7d8c7ec2c0152409a18d39da", + "oid": 221325873325, + "crossed": true, + "fee": "0.209927", + "tid": 872875505864258, + "cloid": "0x00000000000000000000000387000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.0", + "sz": "0.2783", + "side": "B", + "time": 1762185535314, + "startPosition": "-1887.9759", + "dir": "Close Short", + "closedPnl": "144.320814", + "hash": "0x1c4c78b6e2895ff01dc6042ec460c0020680009c7d8c7ec2c0152409a18d39da", + "oid": 221325873325, + "crossed": true, + "fee": "0.209927", + "tid": 1044729794647877, + "cloid": "0x00000000000000000000000387000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.2", + "sz": "1.0377", + "side": "B", + "time": 1762185535314, + "startPosition": "-1887.6976", + "dir": "Close Short", + "closedPnl": "537.922926", + "hash": "0x1c4c78b6e2895ff01dc6042ec460c0020680009c7d8c7ec2c0152409a18d39da", + "oid": 221325873325, + "crossed": true, + "fee": "0.782801", + "tid": 788579868875876, + "cloid": "0x00000000000000000000000387000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "9.16", + "side": "B", + "time": 1762185536168, + "startPosition": "-232787.63", + "dir": "Close Short", + "closedPnl": "304.041468", + "hash": "0xc932937c77da8c14caac042ec460c90201b0006212ddaae66cfb3ecf36de65ff", + "oid": 221325882353, + "crossed": true, + "fee": "0.32051", + "tid": 240908923450011, + "cloid": "0x00000000000000000000000388000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "15.72", + "side": "B", + "time": 1762185536168, + "startPosition": "-232778.47", + "dir": "Close Short", + "closedPnl": "521.782956", + "hash": "0xc932937c77da8c14caac042ec460c90201b0006212ddaae66cfb3ecf36de65ff", + "oid": 221325882353, + "crossed": true, + "fee": "0.550045", + "tid": 192612953882697, + "cloid": "0x00000000000000000000000388000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "35.05", + "side": "B", + "time": 1762185536168, + "startPosition": "-232762.75", + "dir": "Close Short", + "closedPnl": "1163.390115", + "hash": "0xc932937c77da8c14caac042ec460c90201b0006212ddaae66cfb3ecf36de65ff", + "oid": 221325882353, + "crossed": true, + "fee": "1.226406", + "tid": 1124069802490459, + "cloid": "0x00000000000000000000000388000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131303.0", + "side": "B", + "time": 1762185536168, + "startPosition": "-1190686712.0", + "dir": "Close Short", + "closedPnl": "228.729826", + "hash": "0x2ed980b2aafd110c3053042ec460c90201b2009845f02fded2a22c0569f0eaf6", + "oid": 221325882355, + "crossed": true, + "fee": "0.105027", + "tid": 621083300887966, + "cloid": "0x00000000000000000000000385000164", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.9", + "sz": "0.0042", + "side": "B", + "time": 1762185537701, + "startPosition": "-1886.6599", + "dir": "Close Short", + "closedPnl": "2.174256", + "hash": "0xf88f3bb903c7dff8fa08042ec460de02089e009e9ecafecb9c57e70bc2cbb9e3", + "oid": 221325915656, + "crossed": true, + "fee": "0.003168", + "tid": 32838431901097, + "cloid": "0x00000000000000000000000387000210", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.9", + "sz": "2.7775", + "side": "B", + "time": 1762185537701, + "startPosition": "-1886.6557", + "dir": "Close Short", + "closedPnl": "1437.8562", + "hash": "0xf88f3bb903c7dff8fa08042ec460de02089e009e9ecafecb9c57e70bc2cbb9e3", + "oid": 221325915656, + "crossed": true, + "fee": "2.095648", + "tid": 187610188138036, + "cloid": "0x00000000000000000000000387000210", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131302.0", + "side": "B", + "time": 1762185537989, + "startPosition": "-1190555409.0", + "dir": "Close Short", + "closedPnl": "228.728084", + "hash": "0xc42ceec1c76f3f73c5a6042ec460e20207d400a762625e4567f59a148663195e", + "oid": 221325922811, + "crossed": true, + "fee": "0.105027", + "tid": 1013880867683328, + "cloid": "0x00000000000000000000000385000165", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.71", + "sz": "17.49", + "side": "B", + "time": 1762185538463, + "startPosition": "-232727.7", + "dir": "Close Short", + "closedPnl": "578.959227", + "hash": "0xcd0cdace771cb6b4ce86042ec460e902092400b4121fd58670d586213610909f", + "oid": 221325930946, + "crossed": true, + "fee": "0.612309", + "tid": 327812449854726, + "cloid": "0x00000000000000000000000388000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.71", + "sz": "42.43", + "side": "B", + "time": 1762185538463, + "startPosition": "-232710.21", + "dir": "Close Short", + "closedPnl": "1404.530589", + "hash": "0xcd0cdace771cb6b4ce86042ec460e902092400b4121fd58670d586213610909f", + "oid": 221325930946, + "crossed": true, + "fee": "1.485436", + "tid": 257253087393468, + "cloid": "0x00000000000000000000000388000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.9", + "sz": "2.7814", + "side": "B", + "time": 1762185539245, + "startPosition": "-1883.8782", + "dir": "Close Short", + "closedPnl": "1439.875152", + "hash": "0x101fea4cda5a664d1199042ec460f30207c60032755d851fb3e8959f995e4037", + "oid": 221325940546, + "crossed": true, + "fee": "2.098591", + "tid": 785370510564309, + "cloid": "0x00000000000000000000000387000211", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131175.0", + "side": "B", + "time": 1762185539870, + "startPosition": "-1190424107.0", + "dir": "Close Short", + "closedPnl": "228.50685", + "hash": "0x561a44d916d03cb55794042ec460fb0208a600beb1d35b87f9e2f02bd5d4169f", + "oid": 221325948823, + "crossed": true, + "fee": "0.104925", + "tid": 68723559431600, + "cloid": "0x00000000000000000000000385000166", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "0.29", + "side": "B", + "time": 1762185540275, + "startPosition": "-232667.78", + "dir": "Close Short", + "closedPnl": "9.611267", + "hash": "0x21f78020a3c793822371042ec4610002067400063ecab254c5c02b7362cb6d6c", + "oid": 221325954055, + "crossed": true, + "fee": "0.01015", + "tid": 142889584848159, + "cloid": "0x00000000000000000000000388000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "6.5", + "side": "B", + "time": 1762185540275, + "startPosition": "-232667.49", + "dir": "Close Short", + "closedPnl": "215.42495", + "hash": "0x21f78020a3c793822371042ec4610002067400063ecab254c5c02b7362cb6d6c", + "oid": 221325954055, + "crossed": true, + "fee": "0.227504", + "tid": 763931653490668, + "cloid": "0x00000000000000000000000388000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "53.13", + "side": "B", + "time": 1762185540275, + "startPosition": "-232660.99", + "dir": "Close Short", + "closedPnl": "1760.850399", + "hash": "0x21f78020a3c793822371042ec4610002067400063ecab254c5c02b7362cb6d6c", + "oid": 221325954055, + "crossed": true, + "fee": "1.859587", + "tid": 403225704531462, + "cloid": "0x00000000000000000000000388000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.9", + "sz": "2.7813", + "side": "B", + "time": 1762185540817, + "startPosition": "-1881.0968", + "dir": "Close Short", + "closedPnl": "1439.823384", + "hash": "0x613ce150729f7db562b6042ec4610702048600360d929c8705058ca3319357a0", + "oid": 221325960551, + "crossed": true, + "fee": "2.098515", + "tid": 868962160417448, + "cloid": "0x00000000000000000000000387000212", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131229.0", + "side": "B", + "time": 1762185541425, + "startPosition": "-1190292932.0", + "dir": "Close Short", + "closedPnl": "228.600918", + "hash": "0x3c375ee0604229cd3db1042ec4610e0204b600c5fb45489fe0000a331f4603b7", + "oid": 221325969874, + "crossed": true, + "fee": "0.104968", + "tid": 984201887497307, + "cloid": "0x00000000000000000000000385000167", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "59.92", + "side": "B", + "time": 1762185543520, + "startPosition": "-232607.86", + "dir": "Close Short", + "closedPnl": "1980.493816", + "hash": "0x8312688808ef3fe7848c042ec4612a020c44006da3e25eb926db13dac7e319d2", + "oid": 221326012041, + "crossed": true, + "fee": "2.098374", + "tid": 1026565312369930, + "cloid": "0x00000000000000000000000388000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3592.3", + "sz": "2.7814", + "side": "B", + "time": 1762185543796, + "startPosition": "-1878.3155", + "dir": "Close Short", + "closedPnl": "1441.543992", + "hash": "0x617a060f2b40a72962f3042ec4612d02160b00f4c643c5fb0542b161ea448114", + "oid": 221326018513, + "crossed": true, + "fee": "2.09824", + "tid": 809623400273698, + "cloid": "0x00000000000000000000000387000213", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "59.95", + "side": "B", + "time": 1762185545434, + "startPosition": "-232547.94", + "dir": "Close Short", + "closedPnl": "1989.278885", + "hash": "0xda6e4d3509b044c8dbe8042ec461440210d7001aa4b3639a7e36f887c8b41eb3", + "oid": 221326056804, + "crossed": true, + "fee": "2.097788", + "tid": 146051991032345, + "cloid": "0x00000000000000000000000388000198", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3591.2", + "sz": "2.783", + "side": "B", + "time": 1762185545434, + "startPosition": "-1875.5341", + "dir": "Close Short", + "closedPnl": "1445.43454", + "hash": "0x62148a49d4bcbbfa638e042ec46144021107002f6fbfdacc05dd359c93b095e5", + "oid": 221326056833, + "crossed": true, + "fee": "2.098805", + "tid": 252250366331857, + "cloid": "0x00000000000000000000000387000214", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131129.0", + "side": "B", + "time": 1762185547235, + "startPosition": "-1190161703.0", + "dir": "Close Short", + "closedPnl": "228.295589", + "hash": "0xa551a4ab5bef6e63a6cb042ec4615b020a3f0090f6e28d35491a4ffe1ae3484e", + "oid": 221326072820, + "crossed": false, + "fee": "0.013988", + "tid": 441371514044245, + "cloid": "0x00000000000000000000000385000169", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.8", + "sz": "2.7833", + "side": "B", + "time": 1762185547374, + "startPosition": "-1872.7511", + "dir": "Close Short", + "closedPnl": "1446.703674", + "hash": "0xb883474a51897c90b9fd042ec4615d020d1f002fec8c9b625c4bf29d108d567b", + "oid": 221326086482, + "crossed": true, + "fee": "2.098797", + "tid": 763966137699357, + "cloid": "0x00000000000000000000000387000215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "59.97", + "side": "B", + "time": 1762185547578, + "startPosition": "-232487.99", + "dir": "Close Short", + "closedPnl": "1994.740131", + "hash": "0xf7e7b1c790f813c8f961042ec4615f0205a400ad2bfb329b9bb05d1a4ffbedb3", + "oid": 221326088975, + "crossed": true, + "fee": "2.09748", + "tid": 1084258632020013, + "cloid": "0x00000000000000000000000388000199", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003805", + "sz": "131384.0", + "side": "B", + "time": 1762185549677, + "startPosition": "-1190030574.0", + "dir": "Close Short", + "closedPnl": "229.396464", + "hash": "0x74f8d6e7540691967672042ec4617d020ee700ccef09b06818c1823a130a6b81", + "oid": 221326130810, + "crossed": true, + "fee": "0.104982", + "tid": 6744405080410, + "cloid": "0x00000000000000000000000385000171", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.3", + "sz": "0.6843", + "side": "B", + "time": 1762185549933, + "startPosition": "-1869.9678", + "dir": "Close Short", + "closedPnl": "356.027604", + "hash": "0xb50ae0d24e2975c7b684042ec4617f02114f00b7e92c949958d38c250d2d4fb2", + "oid": 221326137747, + "crossed": true, + "fee": "0.515936", + "tid": 1006062555504601, + "cloid": "0x00000000000000000000000387000216", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.3", + "sz": "0.9318", + "side": "B", + "time": 1762185549933, + "startPosition": "-1869.2835", + "dir": "Close Short", + "closedPnl": "484.796904", + "hash": "0xb50ae0d24e2975c7b684042ec4617f02114f00b7e92c949958d38c250d2d4fb2", + "oid": 221326137747, + "crossed": true, + "fee": "0.702542", + "tid": 911169973810247, + "cloid": "0x00000000000000000000000387000216", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.3", + "sz": "0.8634", + "side": "B", + "time": 1762185549933, + "startPosition": "-1868.3517", + "dir": "Close Short", + "closedPnl": "449.209752", + "hash": "0xb50ae0d24e2975c7b684042ec4617f02114f00b7e92c949958d38c250d2d4fb2", + "oid": 221326137747, + "crossed": true, + "fee": "0.650971", + "tid": 999616029485728, + "cloid": "0x00000000000000000000000387000216", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.3", + "sz": "0.2928", + "side": "B", + "time": 1762185549933, + "startPosition": "-1867.4883", + "dir": "Close Short", + "closedPnl": "152.337984", + "hash": "0xb50ae0d24e2975c7b684042ec4617f02114f00b7e92c949958d38c250d2d4fb2", + "oid": 221326137747, + "crossed": true, + "fee": "0.22076", + "tid": 295452443310784, + "cloid": "0x00000000000000000000000387000216", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.3", + "sz": "0.0104", + "side": "B", + "time": 1762185549933, + "startPosition": "-1867.1955", + "dir": "Close Short", + "closedPnl": "5.410912", + "hash": "0xb50ae0d24e2975c7b684042ec4617f02114f00b7e92c949958d38c250d2d4fb2", + "oid": 221326137747, + "crossed": true, + "fee": "0.007841", + "tid": 1084634495011947, + "cloid": "0x00000000000000000000000387000216", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "13.86", + "side": "B", + "time": 1762185549933, + "startPosition": "-232428.02", + "dir": "Close Short", + "closedPnl": "461.015478", + "hash": "0x67de576d67bab8436958042ec4617f021150005302bdd7150ba702c026be922e", + "oid": 221326137748, + "crossed": true, + "fee": "0.48476", + "tid": 1089278416407088, + "cloid": "0x00000000000000000000000388000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "46.09", + "side": "B", + "time": 1762185549933, + "startPosition": "-232414.16", + "dir": "Close Short", + "closedPnl": "1533.059407", + "hash": "0x67de576d67bab8436958042ec4617f021150005302bdd7150ba702c026be922e", + "oid": 221326137748, + "crossed": true, + "fee": "1.61202", + "tid": 725563058374931, + "cloid": "0x00000000000000000000000388000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003805", + "sz": "131406.0", + "side": "B", + "time": 1762185551635, + "startPosition": "-1189899190.0", + "dir": "Close Short", + "closedPnl": "229.434876", + "hash": "0x4e7aa3bc133806264ff4042ec4619402079f00a1ae3b24f8f2434f0ed23be010", + "oid": 221326171713, + "crossed": true, + "fee": "0.104999", + "tid": 554427615897332, + "cloid": "0x00000000000000000000000385000172", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.6", + "sz": "2.7844", + "side": "B", + "time": 1762185551778, + "startPosition": "-1867.1851", + "dir": "Close Short", + "closedPnl": "1450.616712", + "hash": "0x97badae262eca7b59934042ec461960203c800c7fdefc6873b83863521e081a0", + "oid": 221326174706, + "crossed": true, + "fee": "2.098925", + "tid": 1055138685064386, + "cloid": "0x00000000000000000000000387000217", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "59.99", + "side": "B", + "time": 1762185552253, + "startPosition": "-232368.07", + "dir": "Close Short", + "closedPnl": "1998.404877", + "hash": "0x5df80efe65680f375f71042ec4619d0209cd00e4006b2e0901c0ba51246be922", + "oid": 221326184684, + "crossed": true, + "fee": "2.09755", + "tid": 651923018628242, + "cloid": "0x00000000000000000000000388000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.23", + "side": "B", + "time": 1762185553531, + "startPosition": "-1864.4007", + "dir": "Close Short", + "closedPnl": "120.0324", + "hash": "0xb7f3170d56f5aa23b96c042ec461ad0206fe00f2f1f8c8f55bbbc26015f9840e", + "oid": 221326207091, + "crossed": true, + "fee": "0.173334", + "tid": 371748488083888, + "cloid": "0x00000000000000000000000387000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.23", + "side": "B", + "time": 1762185553531, + "startPosition": "-1864.1707", + "dir": "Close Short", + "closedPnl": "120.0324", + "hash": "0xb7f3170d56f5aa23b96c042ec461ad0206fe00f2f1f8c8f55bbbc26015f9840e", + "oid": 221326207091, + "crossed": true, + "fee": "0.173334", + "tid": 216671211873072, + "cloid": "0x00000000000000000000000387000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.1924", + "side": "B", + "time": 1762185553531, + "startPosition": "-1863.9407", + "dir": "Close Short", + "closedPnl": "100.409712", + "hash": "0xb7f3170d56f5aa23b96c042ec461ad0206fe00f2f1f8c8f55bbbc26015f9840e", + "oid": 221326207091, + "crossed": true, + "fee": "0.144997", + "tid": 828606816115973, + "cloid": "0x00000000000000000000000387000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.6326", + "side": "B", + "time": 1762185553531, + "startPosition": "-1863.7483", + "dir": "Close Short", + "closedPnl": "330.141288", + "hash": "0xb7f3170d56f5aa23b96c042ec461ad0206fe00f2f1f8c8f55bbbc26015f9840e", + "oid": 221326207091, + "crossed": true, + "fee": "0.476744", + "tid": 455276850128423, + "cloid": "0x00000000000000000000000387000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.6326", + "side": "B", + "time": 1762185553531, + "startPosition": "-1863.1157", + "dir": "Close Short", + "closedPnl": "330.141288", + "hash": "0xb7f3170d56f5aa23b96c042ec461ad0206fe00f2f1f8c8f55bbbc26015f9840e", + "oid": 221326207091, + "crossed": true, + "fee": "0.476744", + "tid": 479710147612029, + "cloid": "0x00000000000000000000000387000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.1924", + "side": "B", + "time": 1762185553531, + "startPosition": "-1862.4831", + "dir": "Close Short", + "closedPnl": "100.409712", + "hash": "0xb7f3170d56f5aa23b96c042ec461ad0206fe00f2f1f8c8f55bbbc26015f9840e", + "oid": 221326207091, + "crossed": true, + "fee": "0.144997", + "tid": 722558918903393, + "cloid": "0x00000000000000000000000387000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.1924", + "side": "B", + "time": 1762185553531, + "startPosition": "-1862.2907", + "dir": "Close Short", + "closedPnl": "100.409712", + "hash": "0xb7f3170d56f5aa23b96c042ec461ad0206fe00f2f1f8c8f55bbbc26015f9840e", + "oid": 221326207091, + "crossed": true, + "fee": "0.144997", + "tid": 522267952310164, + "cloid": "0x00000000000000000000000387000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.4826", + "side": "B", + "time": 1762185553531, + "startPosition": "-1862.0983", + "dir": "Close Short", + "closedPnl": "251.859288", + "hash": "0xb7f3170d56f5aa23b96c042ec461ad0206fe00f2f1f8c8f55bbbc26015f9840e", + "oid": 221326207091, + "crossed": true, + "fee": "0.3637", + "tid": 1057899822197772, + "cloid": "0x00000000000000000000000387000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.48", + "sz": "10.8", + "side": "B", + "time": 1762185553891, + "startPosition": "-232308.08", + "dir": "Close Short", + "closedPnl": "359.98884", + "hash": "0x922f3f74879f549393a8042ec461b1020584005a2292736535f7eac746932e7e", + "oid": 221326220294, + "crossed": true, + "fee": "0.377576", + "tid": 1053267091250325, + "cloid": "0x00000000000000000000000388000202", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.48", + "sz": "22.09", + "side": "B", + "time": 1762185553891, + "startPosition": "-232297.28", + "dir": "Close Short", + "closedPnl": "736.310507", + "hash": "0x922f3f74879f549393a8042ec461b1020584005a2292736535f7eac746932e7e", + "oid": 221326220294, + "crossed": true, + "fee": "0.772284", + "tid": 36411705231719, + "cloid": "0x00000000000000000000000388000202", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.48", + "sz": "27.12", + "side": "B", + "time": 1762185553891, + "startPosition": "-232275.19", + "dir": "Close Short", + "closedPnl": "903.971976", + "hash": "0x922f3f74879f549393a8042ec461b1020584005a2292736535f7eac746932e7e", + "oid": 221326220294, + "crossed": true, + "fee": "0.948136", + "tid": 111057747518353, + "cloid": "0x00000000000000000000000388000202", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131471.0", + "side": "B", + "time": 1762185554482, + "startPosition": "-1189767784.0", + "dir": "Close Short", + "closedPnl": "230.205721", + "hash": "0x0887d6feffa170d90a01042ec461b802074a00e49aa48fabac508251bea54ac3", + "oid": 221326207093, + "crossed": false, + "fee": "0.013988", + "tid": 1080747552952945, + "cloid": "0x00000000000000000000000385000173", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.4", + "sz": "2.785", + "side": "B", + "time": 1762185555611, + "startPosition": "-1861.6157", + "dir": "Close Short", + "closedPnl": "1454.2713", + "hash": "0x8ae7717668d006cf8c61042ec461c5020554005c03d325a12eb01cc927d3e0ba", + "oid": 221326251902, + "crossed": true, + "fee": "2.098675", + "tid": 313612004837530, + "cloid": "0x00000000000000000000000387000219", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.47", + "sz": "12.0", + "side": "B", + "time": 1762185555912, + "startPosition": "-232248.07", + "dir": "Close Short", + "closedPnl": "400.1076", + "hash": "0xfa235783dc543079fb9d042ec461c8020bfd006977574f4c9dec02d69b580a64", + "oid": 221326259024, + "crossed": true, + "fee": "0.419504", + "tid": 638418579706256, + "cloid": "0x00000000000000000000000388000203", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.47", + "sz": "48.0", + "side": "B", + "time": 1762185555912, + "startPosition": "-232236.07", + "dir": "Close Short", + "closedPnl": "1600.4304", + "hash": "0xfa235783dc543079fb9d042ec461c8020bfd006977574f4c9dec02d69b580a64", + "oid": 221326259024, + "crossed": true, + "fee": "1.678017", + "tid": 174101765074675, + "cloid": "0x00000000000000000000000388000203", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.4", + "sz": "0.3302", + "side": "B", + "time": 1762185557190, + "startPosition": "-1858.8307", + "dir": "Close Short", + "closedPnl": "172.423836", + "hash": "0x4cea994c6c7ad4db4e64042ec461d502034e0032077df3adf0b3449f2b7eaec5", + "oid": 221326275267, + "crossed": true, + "fee": "0.248826", + "tid": 93902765681209, + "cloid": "0x00000000000000000000000387000220", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.4", + "sz": "0.1393", + "side": "B", + "time": 1762185557190, + "startPosition": "-1858.5005", + "dir": "Close Short", + "closedPnl": "72.739674", + "hash": "0x4cea994c6c7ad4db4e64042ec461d502034e0032077df3adf0b3449f2b7eaec5", + "oid": 221326275267, + "crossed": true, + "fee": "0.104971", + "tid": 808094273045994, + "cloid": "0x00000000000000000000000387000220", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.4", + "sz": "0.2773", + "side": "B", + "time": 1762185557190, + "startPosition": "-1858.3612", + "dir": "Close Short", + "closedPnl": "144.800514", + "hash": "0x4cea994c6c7ad4db4e64042ec461d502034e0032077df3adf0b3449f2b7eaec5", + "oid": 221326275267, + "crossed": true, + "fee": "0.208963", + "tid": 381343756840618, + "cloid": "0x00000000000000000000000387000220", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.4", + "sz": "2.0381", + "side": "B", + "time": 1762185557190, + "startPosition": "-1858.0839", + "dir": "Close Short", + "closedPnl": "1064.255058", + "hash": "0x4cea994c6c7ad4db4e64042ec461d502034e0032077df3adf0b3449f2b7eaec5", + "oid": 221326275267, + "crossed": true, + "fee": "1.535838", + "tid": 663671414368935, + "cloid": "0x00000000000000000000000387000220", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "18.24", + "side": "B", + "time": 1762185557760, + "startPosition": "-232188.07", + "dir": "Close Short", + "closedPnl": "608.528352", + "hash": "0x97fe17cc5c7a74fc9977042ec461dd020c2600b1f77d93ce3bc6c31f1b7e4ee7", + "oid": 221326293608, + "crossed": true, + "fee": "0.63757", + "tid": 290619061490447, + "cloid": "0x00000000000000000000000388000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "41.78", + "side": "B", + "time": 1762185557760, + "startPosition": "-232169.83", + "dir": "Close Short", + "closedPnl": "1393.876894", + "hash": "0x97fe17cc5c7a74fc9977042ec461dd020c2600b1f77d93ce3bc6c31f1b7e4ee7", + "oid": 221326293608, + "crossed": true, + "fee": "1.460399", + "tid": 237816512220822, + "cloid": "0x00000000000000000000000388000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131509.0", + "side": "B", + "time": 1762185559564, + "startPosition": "-1189636313.0", + "dir": "Close Short", + "closedPnl": "230.272259", + "hash": "0x7da58b7e0f1cb9cd7f1f042ec461f50204680063aa1fd89f216e36d0ce1093b8", + "oid": 221326323075, + "crossed": true, + "fee": "0.104944", + "tid": 256706741751771, + "cloid": "0x00000000000000000000000385000175", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "60.03", + "side": "B", + "time": 1762185559881, + "startPosition": "-232128.05", + "dir": "Close Short", + "closedPnl": "2005.140069", + "hash": "0xb8c5f866161ca896ba3f042ec461f9020744004bb11fc7685c8ea3b8d5108281", + "oid": 221326331080, + "crossed": true, + "fee": "2.097814", + "tid": 147572378838334, + "cloid": "0x00000000000000000000000388000205", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.6", + "sz": "0.673", + "side": "B", + "time": 1762185560089, + "startPosition": "-1856.0458", + "dir": "Close Short", + "closedPnl": "351.96554", + "hash": "0xf15d8a02ae5fa2bff2d7042ec461fb0203de00e84952c192952635556d537caa", + "oid": 221326333709, + "crossed": true, + "fee": "0.507035", + "tid": 1062823547814146, + "cloid": "0x00000000000000000000000387000221", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.6", + "sz": "2.1123", + "side": "B", + "time": 1762185560089, + "startPosition": "-1855.3728", + "dir": "Close Short", + "closedPnl": "1104.690654", + "hash": "0xf15d8a02ae5fa2bff2d7042ec461fb0203de00e84952c192952635556d537caa", + "oid": 221326333709, + "crossed": true, + "fee": "1.591398", + "tid": 800198347596556, + "cloid": "0x00000000000000000000000387000221", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131578.0", + "side": "B", + "time": 1762185560974, + "startPosition": "-1189504804.0", + "dir": "Close Short", + "closedPnl": "230.393078", + "hash": "0x23efbe7bb96963912569042ec4620702057b0061546c8263c7b869ce786d3d7b", + "oid": 221326349422, + "crossed": true, + "fee": "0.104999", + "tid": 466159501236479, + "cloid": "0x00000000000000000000000385000176", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.36", + "sz": "20.0", + "side": "B", + "time": 1762185561488, + "startPosition": "-232068.02", + "dir": "Close Short", + "closedPnl": "669.046", + "hash": "0xf3b22238a5f1da27f52b042ec4620e0205c9001e40f4f8fa977acd8b64f5b412", + "oid": 221326356321, + "crossed": true, + "fee": "0.698711", + "tid": 358081531762991, + "cloid": "0x00000000000000000000000388000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.36", + "sz": "12.02", + "side": "B", + "time": 1762185561488, + "startPosition": "-232048.02", + "dir": "Close Short", + "closedPnl": "402.096646", + "hash": "0xf3b22238a5f1da27f52b042ec4620e0205c9001e40f4f8fa977acd8b64f5b412", + "oid": 221326356321, + "crossed": true, + "fee": "0.419925", + "tid": 384298694836109, + "cloid": "0x00000000000000000000000388000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.37", + "sz": "0.95", + "side": "B", + "time": 1762185561488, + "startPosition": "-232036.0", + "dir": "Close Short", + "closedPnl": "31.770185", + "hash": "0xf3b22238a5f1da27f52b042ec4620e0205c9001e40f4f8fa977acd8b64f5b412", + "oid": 221326356321, + "crossed": true, + "fee": "0.03319", + "tid": 53189300418306, + "cloid": "0x00000000000000000000000388000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "12.0", + "side": "B", + "time": 1762185561488, + "startPosition": "-232035.05", + "dir": "Close Short", + "closedPnl": "401.1876", + "hash": "0xf3b22238a5f1da27f52b042ec4620e0205c9001e40f4f8fa977acd8b64f5b412", + "oid": 221326356321, + "crossed": true, + "fee": "0.419277", + "tid": 504690860313306, + "cloid": "0x00000000000000000000000388000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.39", + "sz": "15.05", + "side": "B", + "time": 1762185561488, + "startPosition": "-232023.05", + "dir": "Close Short", + "closedPnl": "503.005615", + "hash": "0xf3b22238a5f1da27f52b042ec4620e0205c9001e40f4f8fa977acd8b64f5b412", + "oid": 221326356321, + "crossed": true, + "fee": "0.525875", + "tid": 36695677258820, + "cloid": "0x00000000000000000000000388000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "0.95", + "side": "B", + "time": 1762185563947, + "startPosition": "-232008.0", + "dir": "Close Short", + "closedPnl": "31.741685", + "hash": "0x6c1feb841bc1a8aa6d99042ec462270207f10069b6c4c77c0fe896d6dac58295", + "oid": 221326396552, + "crossed": true, + "fee": "0.033196", + "tid": 11614454852517, + "cloid": "0x00000000000000000000000388000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "0.1", + "side": "B", + "time": 1762185563947, + "startPosition": "-232007.05", + "dir": "Close Short", + "closedPnl": "3.34023", + "hash": "0x6c1feb841bc1a8aa6d99042ec462270207f10069b6c4c77c0fe896d6dac58295", + "oid": 221326396552, + "crossed": true, + "fee": "0.003494", + "tid": 774478915664987, + "cloid": "0x00000000000000000000000388000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.43", + "sz": "0.1", + "side": "B", + "time": 1762185563947, + "startPosition": "-232006.95", + "dir": "Close Short", + "closedPnl": "3.33823", + "hash": "0x6c1feb841bc1a8aa6d99042ec462270207f10069b6c4c77c0fe896d6dac58295", + "oid": 221326396552, + "crossed": true, + "fee": "0.003495", + "tid": 186071972022687, + "cloid": "0x00000000000000000000000388000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.43", + "sz": "12.01", + "side": "B", + "time": 1762185563947, + "startPosition": "-232006.85", + "dir": "Close Short", + "closedPnl": "400.921423", + "hash": "0x6c1feb841bc1a8aa6d99042ec462270207f10069b6c4c77c0fe896d6dac58295", + "oid": 221326396552, + "crossed": true, + "fee": "0.419753", + "tid": 71567189464299, + "cloid": "0x00000000000000000000000388000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "0.18", + "side": "B", + "time": 1762185563947, + "startPosition": "-231994.84", + "dir": "Close Short", + "closedPnl": "6.007014", + "hash": "0x6c1feb841bc1a8aa6d99042ec462270207f10069b6c4c77c0fe896d6dac58295", + "oid": 221326396552, + "crossed": true, + "fee": "0.006291", + "tid": 687395357733873, + "cloid": "0x00000000000000000000000388000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "18.02", + "side": "B", + "time": 1762185563947, + "startPosition": "-231994.66", + "dir": "Close Short", + "closedPnl": "601.368846", + "hash": "0x6c1feb841bc1a8aa6d99042ec462270207f10069b6c4c77c0fe896d6dac58295", + "oid": 221326396552, + "crossed": true, + "fee": "0.629842", + "tid": 915541784964016, + "cloid": "0x00000000000000000000000388000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "28.66", + "side": "B", + "time": 1762185563947, + "startPosition": "-231976.64", + "dir": "Close Short", + "closedPnl": "956.450118", + "hash": "0x6c1feb841bc1a8aa6d99042ec462270207f10069b6c4c77c0fe896d6dac58295", + "oid": 221326396552, + "crossed": true, + "fee": "1.001735", + "tid": 859168131602934, + "cloid": "0x00000000000000000000000388000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "0.9173", + "side": "B", + "time": 1762185564106, + "startPosition": "-1853.2605", + "dir": "Close Short", + "closedPnl": "480.830314", + "hash": "0x0c6878b8622b12150de2042ec462290207bd009dfd2e30e7b031240b212eebff", + "oid": 221326400119, + "crossed": true, + "fee": "0.690858", + "tid": 832791111431871, + "cloid": "0x00000000000000000000000387000222", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "1.8682", + "side": "B", + "time": 1762185564106, + "startPosition": "-1852.3432", + "dir": "Close Short", + "closedPnl": "979.273076", + "hash": "0x0c6878b8622b12150de2042ec462290207bd009dfd2e30e7b031240b212eebff", + "oid": 221326400119, + "crossed": true, + "fee": "1.407023", + "tid": 302299131459310, + "cloid": "0x00000000000000000000000387000222", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26661", + "sz": "524.6", + "side": "B", + "time": 1762185564299, + "startPosition": "-4000531.0", + "dir": "Close Short", + "closedPnl": "280.482636", + "hash": "0xac99ad8facc49341ae13042ec4622c0202a8007547c7b213506258e26bc86d2c", + "oid": 221326402086, + "crossed": true, + "fee": "0.029371", + "tid": 1104263944585798, + "cloid": "0x00000000000000000000000384000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26665", + "sz": "524.6", + "side": "B", + "time": 1762185564299, + "startPosition": "-4000006.3999999999", + "dir": "Close Short", + "closedPnl": "280.461652", + "hash": "0xac99ad8facc49341ae13042ec4622c0202a8007547c7b213506258e26bc86d2c", + "oid": 221326402086, + "crossed": true, + "fee": "0.029375", + "tid": 862546980122787, + "cloid": "0x00000000000000000000000384000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26669", + "sz": "2686.3", + "side": "B", + "time": 1762185564408, + "startPosition": "-3999481.7999999998", + "dir": "Close Short", + "closedPnl": "1436.042254", + "hash": "0x45675d1822fbbc2f46e1042ec4622e02057900fdbdfedb01e930086ae1ff9619", + "oid": 221326402086, + "crossed": false, + "fee": "0.020059", + "tid": 395868534956360, + "cloid": "0x00000000000000000000000384000126", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.46", + "sz": "60.0", + "side": "B", + "time": 1762185565556, + "startPosition": "-231947.98", + "dir": "Close Short", + "closedPnl": "2001.138", + "hash": "0xc449001385ab7025c5c2042ec4623c02051600f920ae8ef76811ab6644af4a10", + "oid": 221326424707, + "crossed": true, + "fee": "2.097396", + "tid": 1081935587758252, + "cloid": "0x00000000000000000000000388000208", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003803", + "sz": "131571.0", + "side": "B", + "time": 1762185565556, + "startPosition": "-1189373226.0", + "dir": "Close Short", + "closedPnl": "229.986108", + "hash": "0x29efed49b8cdf51d2b69042ec4623c020518002f53c113efcdb8989c77c1cf07", + "oid": 221326424708, + "crossed": true, + "fee": "0.105076", + "tid": 466498551764216, + "cloid": "0x00000000000000000000000385000178", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26632", + "sz": "524.6", + "side": "A", + "time": 1762185566351, + "startPosition": "4018127.4960630001", + "dir": "Sell", + "closedPnl": "-280.85710127", + "hash": "0xa11eb9812766c3e4a298042ec462450201a50066c269e2b644e764d3e66a9dcf", + "oid": 221326419284, + "crossed": false, + "fee": "0.0097798", + "tid": 776107471409269, + "cloid": "0x10000000000000000000000475000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26634", + "sz": "524.6", + "side": "A", + "time": 1762185566767, + "startPosition": "4017602.896063", + "dir": "Sell", + "closedPnl": "-280.84660927", + "hash": "0x8c82545c033b20108dfc042ec4624b0202cc00419e3e3ee2304affaec23ef9fb", + "oid": 221326419285, + "crossed": false, + "fee": "0.00978053", + "tid": 174577068628330, + "cloid": "0x10000000000000000000000475000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003803", + "sz": "131402.0", + "side": "B", + "time": 1762185566947, + "startPosition": "-1189241655.0", + "dir": "Close Short", + "closedPnl": "229.690696", + "hash": "0x1e2c6c31dc923e861fa6042ec4624d020348001777955d58c1f517849b961870", + "oid": 221326435564, + "crossed": true, + "fee": "0.104941", + "tid": 513239769871230, + "cloid": "0x00000000000000000000000385000179", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26638", + "sz": "2686.3", + "side": "A", + "time": 1762185567089, + "startPosition": "4017078.2960629999", + "dir": "Sell", + "closedPnl": "-1438.01349058", + "hash": "0x760ad522fa6246bc7784042ec4624f0204a300089565658e19d38075b96620a7", + "oid": 221326421874, + "crossed": false, + "fee": "0.05009036", + "tid": 510766668125991, + "cloid": "0x10000000000000000000000475000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.46", + "sz": "60.0", + "side": "B", + "time": 1762185567641, + "startPosition": "-231887.98", + "dir": "Close Short", + "closedPnl": "2001.138", + "hash": "0xa912f3853b229422aa8c042ec4625602042c006ad625b2f44cdb9ed7fa266e0d", + "oid": 221326444670, + "crossed": true, + "fee": "2.097396", + "tid": 169319495951665, + "cloid": "0x00000000000000000000000388000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.7", + "sz": "2.2259", + "side": "B", + "time": 1762185568227, + "startPosition": "-1850.475", + "dir": "Close Short", + "closedPnl": "1166.104492", + "hash": "0x987352c6113edca499ed042ec4625d0206d200abac31fb763c3bfe18d032b68f", + "oid": 221326454399, + "crossed": true, + "fee": "1.676563", + "tid": 89087656245900, + "cloid": "0x00000000000000000000000387000223", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.7", + "sz": "0.5598", + "side": "B", + "time": 1762185568227, + "startPosition": "-1848.2491", + "dir": "Close Short", + "closedPnl": "293.268024", + "hash": "0x987352c6113edca499ed042ec4625d0206d200abac31fb763c3bfe18d032b68f", + "oid": 221326454399, + "crossed": true, + "fee": "0.421645", + "tid": 409188557564334, + "cloid": "0x00000000000000000000000387000223", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003805", + "sz": "131383.0", + "side": "B", + "time": 1762185568908, + "startPosition": "-1189110253.0", + "dir": "Close Short", + "closedPnl": "229.394718", + "hash": "0x0be47d78e09d5ff30d5e042ec4626602094b005e7b907ec5afad28cb9f9139dd", + "oid": 221326468037, + "crossed": true, + "fee": "0.104981", + "tid": 82160293728119, + "cloid": "0x00000000000000000000000385000180", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "59.98", + "side": "B", + "time": 1762185569290, + "startPosition": "-231827.98", + "dir": "Close Short", + "closedPnl": "1997.471954", + "hash": "0x0ad84c7eebf26ea30c52042ec4626a02065d006486f58d75aea0f7d1aaf6488d", + "oid": 221326476076, + "crossed": true, + "fee": "2.097326", + "tid": 142972585846486, + "cloid": "0x00000000000000000000000388000210", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.0", + "sz": "2.786", + "side": "B", + "time": 1762185570630, + "startPosition": "-1847.6893", + "dir": "Close Short", + "closedPnl": "1458.69388", + "hash": "0xb923976f303a43b2ba9d042ec4627a0202f10054cb3d62845cec42c1ef3e1d9d", + "oid": 221326496336, + "crossed": true, + "fee": "2.09861", + "tid": 632842771077003, + "cloid": "0x00000000000000000000000387000224", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003805", + "sz": "131406.0", + "side": "B", + "time": 1762185570630, + "startPosition": "-1188978870.0", + "dir": "Close Short", + "closedPnl": "229.434876", + "hash": "0x6bf70e0a49cb862e6d70042ec4627a0202f200efe4cea5000fbfb95d08cf6019", + "oid": 221326496337, + "crossed": true, + "fee": "0.104999", + "tid": 1097037759709112, + "cloid": "0x00000000000000000000000385000181", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.46", + "sz": "60.0", + "side": "B", + "time": 1762185570756, + "startPosition": "-231768.0", + "dir": "Close Short", + "closedPnl": "2001.138", + "hash": "0x1207295adaf7b3351380042ec4627c0202f3004075fad207b5cfd4ad99fb8d1f", + "oid": 221326498770, + "crossed": true, + "fee": "2.097396", + "tid": 1055902915621942, + "cloid": "0x00000000000000000000000388000211", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "0.5631", + "side": "B", + "time": 1762185572045, + "startPosition": "-1844.9033", + "dir": "Close Short", + "closedPnl": "295.165758", + "hash": "0x7be4f2a42172a13f7d5e042ec4628d0205860089bc75c0111fad9df6e0767b2a", + "oid": 221326520936, + "crossed": true, + "fee": "0.424095", + "tid": 178916374718225, + "cloid": "0x00000000000000000000000387000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "0.794", + "side": "B", + "time": 1762185572045, + "startPosition": "-1844.3402", + "dir": "Close Short", + "closedPnl": "416.19892", + "hash": "0x7be4f2a42172a13f7d5e042ec4628d0205860089bc75c0111fad9df6e0767b2a", + "oid": 221326520936, + "crossed": true, + "fee": "0.597996", + "tid": 949181256010876, + "cloid": "0x00000000000000000000000387000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "0.794", + "side": "B", + "time": 1762185572045, + "startPosition": "-1843.5462", + "dir": "Close Short", + "closedPnl": "416.19892", + "hash": "0x7be4f2a42172a13f7d5e042ec4628d0205860089bc75c0111fad9df6e0767b2a", + "oid": 221326520936, + "crossed": true, + "fee": "0.597996", + "tid": 1068944588289344, + "cloid": "0x00000000000000000000000387000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "0.2028", + "side": "B", + "time": 1762185572045, + "startPosition": "-1842.7522", + "dir": "Close Short", + "closedPnl": "106.303704", + "hash": "0x7be4f2a42172a13f7d5e042ec4628d0205860089bc75c0111fad9df6e0767b2a", + "oid": 221326520936, + "crossed": true, + "fee": "0.152737", + "tid": 357359019483640, + "cloid": "0x00000000000000000000000387000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "0.4325", + "side": "B", + "time": 1762185572045, + "startPosition": "-1842.5494", + "dir": "Close Short", + "closedPnl": "226.70785", + "hash": "0x7be4f2a42172a13f7d5e042ec4628d0205860089bc75c0111fad9df6e0767b2a", + "oid": 221326520936, + "crossed": true, + "fee": "0.325734", + "tid": 468042748359943, + "cloid": "0x00000000000000000000000387000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "8.21", + "side": "B", + "time": 1762185572208, + "startPosition": "-231708.0", + "dir": "Close Short", + "closedPnl": "274.232883", + "hash": "0x9120e73830f77e04929a042ec4628f0205b4001dcbfa9cd634e9928aeffb57ef", + "oid": 221326523430, + "crossed": true, + "fee": "0.286907", + "tid": 171297441007413, + "cloid": "0x00000000000000000000000388000212", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "51.82", + "side": "B", + "time": 1762185572208, + "startPosition": "-231699.79", + "dir": "Close Short", + "closedPnl": "1730.907186", + "hash": "0x9120e73830f77e04929a042ec4628f0205b4001dcbfa9cd634e9928aeffb57ef", + "oid": 221326523430, + "crossed": true, + "fee": "1.810906", + "tid": 849101185470921, + "cloid": "0x00000000000000000000000388000212", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131475.0", + "side": "B", + "time": 1762185572857, + "startPosition": "-1188847464.0", + "dir": "Close Short", + "closedPnl": "230.212725", + "hash": "0x6d4858470ad54a076ec2042ec46298020715002ca5d868d911110399c9d923f2", + "oid": 221326520935, + "crossed": false, + "fee": "0.013988", + "tid": 967716007575878, + "cloid": "0x00000000000000000000000385000182", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.3", + "sz": "0.2028", + "side": "B", + "time": 1762185574371, + "startPosition": "-1842.1169", + "dir": "Close Short", + "closedPnl": "106.323984", + "hash": "0xa332b682e2f09a1da4ac042ec462ac02028300687df3b8ef46fb61d5a1f47408", + "oid": 221326550335, + "crossed": true, + "fee": "0.152733", + "tid": 316483019988941, + "cloid": "0x00000000000000000000000387000226", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.3", + "sz": "2.5837", + "side": "B", + "time": 1762185574371, + "startPosition": "-1841.9141", + "dir": "Close Short", + "closedPnl": "1354.582236", + "hash": "0xa332b682e2f09a1da4ac042ec462ac02028300687df3b8ef46fb61d5a1f47408", + "oid": 221326550335, + "crossed": true, + "fee": "1.945843", + "tid": 1021800925032322, + "cloid": "0x00000000000000000000000387000226", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "5.26", + "side": "B", + "time": 1762185574529, + "startPosition": "-231647.97", + "dir": "Close Short", + "closedPnl": "175.748698", + "hash": "0xc607d5b1031ee864c781042ec462ae02064b00969e12073669d08103c212c24f", + "oid": 221326553307, + "crossed": true, + "fee": "0.183805", + "tid": 517337127117292, + "cloid": "0x00000000000000000000000388000213", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "7.61", + "side": "B", + "time": 1762185574529, + "startPosition": "-231642.71", + "dir": "Close Short", + "closedPnl": "254.267603", + "hash": "0xc607d5b1031ee864c781042ec462ae02064b00969e12073669d08103c212c24f", + "oid": 221326553307, + "crossed": true, + "fee": "0.265923", + "tid": 1075131505774193, + "cloid": "0x00000000000000000000000388000213", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "47.16", + "side": "B", + "time": 1762185574529, + "startPosition": "-231635.1", + "dir": "Close Short", + "closedPnl": "1575.724068", + "hash": "0xc607d5b1031ee864c781042ec462ae02064b00969e12073669d08103c212c24f", + "oid": 221326553307, + "crossed": true, + "fee": "1.647959", + "tid": 378314553283698, + "cloid": "0x00000000000000000000000388000213", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.3", + "sz": "2.7862", + "side": "B", + "time": 1762185575969, + "startPosition": "-1839.3304", + "dir": "Close Short", + "closedPnl": "1460.748936", + "hash": "0x256c3fad73daf90b26e5042ec462c20201d300930ede17ddc934eb0032ded2f5", + "oid": 221326570913, + "crossed": true, + "fee": "2.098351", + "tid": 798623351182003, + "cloid": "0x00000000000000000000000387000227", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "55.08", + "side": "B", + "time": 1762185576370, + "startPosition": "-231587.94", + "dir": "Close Short", + "closedPnl": "1840.349484", + "hash": "0xfdae667d1eac331cff28042ec462c90203a50062b9af51efa17711cfdda00d07", + "oid": 221326574686, + "crossed": true, + "fee": "1.924715", + "tid": 1046967034150470, + "cloid": "0x00000000000000000000000388000214", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "3.0", + "side": "B", + "time": 1762185576370, + "startPosition": "-231532.86", + "dir": "Close Short", + "closedPnl": "100.2369", + "hash": "0xfdae667d1eac331cff28042ec462c90203a50062b9af51efa17711cfdda00d07", + "oid": 221326574686, + "crossed": true, + "fee": "0.104831", + "tid": 656406095679595, + "cloid": "0x00000000000000000000000388000214", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "1.94", + "side": "B", + "time": 1762185576370, + "startPosition": "-231529.86", + "dir": "Close Short", + "closedPnl": "64.819862", + "hash": "0xfdae667d1eac331cff28042ec462c90203a50062b9af51efa17711cfdda00d07", + "oid": 221326574686, + "crossed": true, + "fee": "0.067791", + "tid": 202471570955377, + "cloid": "0x00000000000000000000000388000214", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.43", + "sz": "0.1", + "side": "B", + "time": 1762185578587, + "startPosition": "-231527.92", + "dir": "Close Short", + "closedPnl": "3.33823", + "hash": "0xcb1a7775102cdf30cc94042ec462e2020640005aab2ffe026ee322c7cf20b91b", + "oid": 221326608118, + "crossed": true, + "fee": "0.003495", + "tid": 317760385965784, + "cloid": "0x00000000000000000000000388000215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.46", + "sz": "0.18", + "side": "B", + "time": 1762185578587, + "startPosition": "-231527.82", + "dir": "Close Short", + "closedPnl": "6.003414", + "hash": "0xcb1a7775102cdf30cc94042ec462e2020640005aab2ffe026ee322c7cf20b91b", + "oid": 221326608118, + "crossed": true, + "fee": "0.006292", + "tid": 129221240722830, + "cloid": "0x00000000000000000000000388000215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "0.18", + "side": "B", + "time": 1762185578587, + "startPosition": "-231527.64", + "dir": "Close Short", + "closedPnl": "5.996214", + "hash": "0xcb1a7775102cdf30cc94042ec462e2020640005aab2ffe026ee322c7cf20b91b", + "oid": 221326608118, + "crossed": true, + "fee": "0.006293", + "tid": 450267731246945, + "cloid": "0x00000000000000000000000388000215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "32.96", + "side": "B", + "time": 1762185578587, + "startPosition": "-231527.46", + "dir": "Close Short", + "closedPnl": "1097.973408", + "hash": "0xcb1a7775102cdf30cc94042ec462e2020640005aab2ffe026ee322c7cf20b91b", + "oid": 221326608118, + "crossed": true, + "fee": "1.152446", + "tid": 483467940945947, + "cloid": "0x00000000000000000000000388000215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "18.01", + "side": "B", + "time": 1762185578587, + "startPosition": "-231494.5", + "dir": "Close Short", + "closedPnl": "599.774423", + "hash": "0xcb1a7775102cdf30cc94042ec462e2020640005aab2ffe026ee322c7cf20b91b", + "oid": 221326608118, + "crossed": true, + "fee": "0.629757", + "tid": 630760760123288, + "cloid": "0x00000000000000000000000388000215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.52", + "sz": "8.59", + "side": "B", + "time": 1762185578587, + "startPosition": "-231476.49", + "dir": "Close Short", + "closedPnl": "285.980857", + "hash": "0xcb1a7775102cdf30cc94042ec462e2020640005aab2ffe026ee322c7cf20b91b", + "oid": 221326608118, + "crossed": true, + "fee": "0.300385", + "tid": 383098347896895, + "cloid": "0x00000000000000000000000388000215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.3", + "sz": "2.7863", + "side": "B", + "time": 1762185578587, + "startPosition": "-1836.5442", + "dir": "Close Short", + "closedPnl": "1460.801364", + "hash": "0x7dedee1029be21ac7f67042ec462e202064100f5c4b1407e21b69962e8b1fb97", + "oid": 221326608119, + "crossed": true, + "fee": "2.098426", + "tid": 937550148536166, + "cloid": "0x00000000000000000000000387000228", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.9", + "sz": "2.0914", + "side": "B", + "time": 1762185579928, + "startPosition": "-1833.7579", + "dir": "Close Short", + "closedPnl": "1095.224352", + "hash": "0x0faa3144ed8c92191123042ec462f2020836002a888fb0ebb372dc97ac806c03", + "oid": 221326631000, + "crossed": true, + "fee": "1.575344", + "tid": 13456732354001, + "cloid": "0x00000000000000000000000387000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.0", + "sz": "0.2", + "side": "B", + "time": 1762185579928, + "startPosition": "-1831.6665", + "dir": "Close Short", + "closedPnl": "104.716", + "hash": "0x0faa3144ed8c92191123042ec462f2020836002a888fb0ebb372dc97ac806c03", + "oid": 221326631000, + "crossed": true, + "fee": "0.150654", + "tid": 172602198403406, + "cloid": "0x00000000000000000000000387000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.0", + "sz": "0.4948", + "side": "B", + "time": 1762185579928, + "startPosition": "-1831.4665", + "dir": "Close Short", + "closedPnl": "259.067384", + "hash": "0x0faa3144ed8c92191123042ec462f2020836002a888fb0ebb372dc97ac806c03", + "oid": 221326631000, + "crossed": true, + "fee": "0.372717", + "tid": 838609482551559, + "cloid": "0x00000000000000000000000387000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "59.99", + "side": "B", + "time": 1762185580081, + "startPosition": "-231467.9", + "dir": "Close Short", + "closedPnl": "1998.404877", + "hash": "0xa5bfcda0bfb92d4ea739042ec462f40206c700865abc4c20498878f37ebd0739", + "oid": 221326633791, + "crossed": true, + "fee": "2.09755", + "tid": 41032503397924, + "cloid": "0x00000000000000000000000388000216", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.1", + "sz": "2.7868", + "side": "B", + "time": 1762185581724, + "startPosition": "-1830.9717", + "dir": "Close Short", + "closedPnl": "1461.620864", + "hash": "0x04f52185caa31704066e042ec4630a020160006b65a635d6a8bdccd889a6f0ee", + "oid": 221326659766, + "crossed": true, + "fee": "2.098686", + "tid": 214495736448259, + "cloid": "0x00000000000000000000000387000230", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "59.98", + "side": "B", + "time": 1762185581724, + "startPosition": "-231407.91", + "dir": "Close Short", + "closedPnl": "1998.071754", + "hash": "0x2e6f2d466343d7942fe8042ec4630a02017a002bfe46f666d237d8992247b17e", + "oid": 221326659786, + "crossed": true, + "fee": "2.0972", + "tid": 617772938861951, + "cloid": "0x00000000000000000000000388000217", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.52", + "sz": "0.96", + "side": "B", + "time": 1762185584644, + "startPosition": "-231347.93", + "dir": "Close Short", + "closedPnl": "31.960608", + "hash": "0x1caf53d5876cd78d1e29042ec4632c0206e200bb226ff65fc077ff284660b177", + "oid": 221326698494, + "crossed": true, + "fee": "0.03357", + "tid": 278533681806078, + "cloid": "0x00000000000000000000000388000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "0.1", + "side": "B", + "time": 1762185584644, + "startPosition": "-231346.97", + "dir": "Close Short", + "closedPnl": "3.32823", + "hash": "0x1caf53d5876cd78d1e29042ec4632c0206e200bb226ff65fc077ff284660b177", + "oid": 221326698494, + "crossed": true, + "fee": "0.003497", + "tid": 35994023386891, + "cloid": "0x00000000000000000000000388000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "58.92", + "side": "B", + "time": 1762185584644, + "startPosition": "-231346.87", + "dir": "Close Short", + "closedPnl": "1960.993116", + "hash": "0x1caf53d5876cd78d1e29042ec4632c0206e200bb226ff65fc077ff284660b177", + "oid": 221326698494, + "crossed": true, + "fee": "2.060508", + "tid": 985854272736229, + "cloid": "0x00000000000000000000000388000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.1", + "sz": "2.7868", + "side": "B", + "time": 1762185584836, + "startPosition": "-1828.1849", + "dir": "Close Short", + "closedPnl": "1461.620864", + "hash": "0xb9e8cb7795406188bb62042ec4632e0201e6005d3043805a5db176ca54443b73", + "oid": 221326699388, + "crossed": true, + "fee": "2.098686", + "tid": 505727867583876, + "cloid": "0x00000000000000000000000387000231", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.0", + "sz": "2.7866", + "side": "B", + "time": 1762185586658, + "startPosition": "-1825.3981", + "dir": "Close Short", + "closedPnl": "1464.581228", + "hash": "0x5543937564bc2f2c56bd042ec4634801f300ab5affbf4dfef90c3ec823b00916", + "oid": 221326724820, + "crossed": true, + "fee": "2.097891", + "tid": 796318021031624, + "cloid": "0x00000000000000000000000387000232", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003802", + "sz": "131571.0", + "side": "B", + "time": 1762185586883, + "startPosition": "-1188715989.0", + "dir": "Close Short", + "closedPnl": "230.117679", + "hash": "0x8a5cea02579963078bd6042ec4634b02050200e7f29c81d92e259555169d3cf2", + "oid": 221326727431, + "crossed": true, + "fee": "0.105048", + "tid": 516963531232524, + "cloid": "0x00000000000000000000000385000188", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "59.99", + "side": "B", + "time": 1762185587058, + "startPosition": "-231287.95", + "dir": "Close Short", + "closedPnl": "1996.005277", + "hash": "0xc2f47b9eefdc5d30c46e042ec4634d02019c00848adf7c0266bd26f1aed0371b", + "oid": 221326728313, + "crossed": true, + "fee": "2.098054", + "tid": 452528204971927, + "cloid": "0x00000000000000000000000388000219", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.4", + "sz": "0.2568", + "side": "B", + "time": 1762185588958, + "startPosition": "-1822.6115", + "dir": "Close Short", + "closedPnl": "134.866224", + "hash": "0xb9b26875ac6dbac0bb2c042ec46364020a9a005b4760d9925d7b13c86b6194ab", + "oid": 221326762669, + "crossed": true, + "fee": "0.193353", + "tid": 764685939367545, + "cloid": "0x00000000000000000000000387000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.4", + "sz": "1.25", + "side": "B", + "time": 1762185588958, + "startPosition": "-1822.3547", + "dir": "Close Short", + "closedPnl": "656.475", + "hash": "0xb9b26875ac6dbac0bb2c042ec46364020a9a005b4760d9925d7b13c86b6194ab", + "oid": 221326762669, + "crossed": true, + "fee": "0.941167", + "tid": 492435596336683, + "cloid": "0x00000000000000000000000387000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.4", + "sz": "1.2801", + "side": "B", + "time": 1762185588958, + "startPosition": "-1821.1047", + "dir": "Close Short", + "closedPnl": "672.282918", + "hash": "0xb9b26875ac6dbac0bb2c042ec46364020a9a005b4760d9925d7b13c86b6194ab", + "oid": 221326762669, + "crossed": true, + "fee": "0.96383", + "tid": 410837118893460, + "cloid": "0x00000000000000000000000387000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "59.98", + "side": "B", + "time": 1762185588958, + "startPosition": "-231227.96", + "dir": "Close Short", + "closedPnl": "1994.472954", + "hash": "0x6c85df10c5fefd3c6dff042ec46364020a9b00f660f21c0e104e8a6384f2d727", + "oid": 221326762670, + "crossed": true, + "fee": "2.097956", + "tid": 1035053791033110, + "cloid": "0x00000000000000000000000388000220", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.3", + "sz": "2.7865", + "side": "B", + "time": 1762185591041, + "startPosition": "-1819.8246", + "dir": "Close Short", + "closedPnl": "1460.90622", + "hash": "0xb43e68f86bb7342ab5b8042ec4637e020b5500de06ba52fc5807144b2abb0e15", + "oid": 221326808303, + "crossed": true, + "fee": "2.098577", + "tid": 988509535483285, + "cloid": "0x00000000000000000000000387000234", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "59.95", + "side": "B", + "time": 1762185591445, + "startPosition": "-231167.98", + "dir": "Close Short", + "closedPnl": "1991.676885", + "hash": "0xa0fe9490d7469fcea278042ec463840202d800767249bea044c73fe3964a79b9", + "oid": 221326814712, + "crossed": true, + "fee": "2.097284", + "tid": 44644143532265, + "cloid": "0x00000000000000000000000388000221", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131471.0", + "side": "B", + "time": 1762185591702, + "startPosition": "-1188584418.0", + "dir": "Close Short", + "closedPnl": "229.153953", + "hash": "0xbb9378eb027c21ecbd0d042ec463870203b400d09d7f40be5f5c243dc17ffbd7", + "oid": 221326817795, + "crossed": true, + "fee": "0.105134", + "tid": 1123410356590460, + "cloid": "0x00000000000000000000000385000190", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.7", + "sz": "1.25", + "side": "B", + "time": 1762185592715, + "startPosition": "-1817.0381", + "dir": "Close Short", + "closedPnl": "656.1", + "hash": "0x59eb4ce5ef61ef2f5b65042ec4639302031f00cb8a650e01fdb3f838ae65c919", + "oid": 221326835218, + "crossed": true, + "fee": "0.941246", + "tid": 455495782348320, + "cloid": "0x00000000000000000000000387000235", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.7", + "sz": "1.5369", + "side": "B", + "time": 1762185592715, + "startPosition": "-1815.7881", + "dir": "Close Short", + "closedPnl": "806.688072", + "hash": "0x59eb4ce5ef61ef2f5b65042ec4639302031f00cb8a650e01fdb3f838ae65c919", + "oid": 221326835218, + "crossed": true, + "fee": "1.157281", + "tid": 398310805812876, + "cloid": "0x00000000000000000000000387000235", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.47", + "sz": "0.95", + "side": "B", + "time": 1762185594005, + "startPosition": "-231108.03", + "dir": "Close Short", + "closedPnl": "31.675185", + "hash": "0x73e414403d213b88755d042ec463a4020a460025d8245a5a17acbf92fc251573", + "oid": 221326862335, + "crossed": true, + "fee": "0.03321", + "tid": 930216042155088, + "cloid": "0x00000000000000000000000388000222", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "12.1", + "side": "B", + "time": 1762185594005, + "startPosition": "-231107.08", + "dir": "Close Short", + "closedPnl": "403.19983", + "hash": "0x73e414403d213b88755d042ec463a4020a460025d8245a5a17acbf92fc251573", + "oid": 221326862335, + "crossed": true, + "fee": "0.423051", + "tid": 377551294918705, + "cloid": "0x00000000000000000000000388000222", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "46.95", + "side": "B", + "time": 1762185594005, + "startPosition": "-231094.98", + "dir": "Close Short", + "closedPnl": "1564.481985", + "hash": "0x73e414403d213b88755d042ec463a4020a460025d8245a5a17acbf92fc251573", + "oid": 221326862335, + "crossed": true, + "fee": "1.641508", + "tid": 560315827238720, + "cloid": "0x00000000000000000000000388000222", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131337.0", + "side": "B", + "time": 1762185594005, + "startPosition": "-1188452947.0", + "dir": "Close Short", + "closedPnl": "228.920391", + "hash": "0x8c5e781189d502fb8dd8042ec463a4020a4900f724d821cd3027236448d8dce6", + "oid": 221326862337, + "crossed": true, + "fee": "0.105027", + "tid": 962118436749363, + "cloid": "0x00000000000000000000000385000191", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.9", + "sz": "2.7868", + "side": "B", + "time": 1762185594449, + "startPosition": "-1814.2512", + "dir": "Close Short", + "closedPnl": "1462.178224", + "hash": "0x697ac1bd5c9dd8106af4042ec463aa0209b700a2f790f6e20d436d101b91b1fb", + "oid": 221326868889, + "crossed": true, + "fee": "2.098569", + "tid": 221917213808962, + "cloid": "0x00000000000000000000000387000236", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "0.95", + "side": "B", + "time": 1762185595480, + "startPosition": "-231048.03", + "dir": "Close Short", + "closedPnl": "31.618185", + "hash": "0xeb43f35a376c9724ecbd042ec463b60205b0003fd26fb5f68f0c9eacf660710f", + "oid": 221326885647, + "crossed": true, + "fee": "0.033222", + "tid": 22619629091554, + "cloid": "0x00000000000000000000000388000223", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "59.01", + "side": "B", + "time": 1762185595480, + "startPosition": "-231047.08", + "dir": "Close Short", + "closedPnl": "1962.218223", + "hash": "0xeb43f35a376c9724ecbd042ec463b60205b0003fd26fb5f68f0c9eacf660710f", + "oid": 221326885647, + "crossed": true, + "fee": "2.064028", + "tid": 264899541798757, + "cloid": "0x00000000000000000000000388000223", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131260.0", + "side": "B", + "time": 1762185595480, + "startPosition": "-1188321610.0", + "dir": "Close Short", + "closedPnl": "228.78618", + "hash": "0x69654461b732e38f6adf042ec463b60205b50047523602610d2defb47636bd7a", + "oid": 221326885650, + "crossed": true, + "fee": "0.104965", + "tid": 946787898975965, + "cloid": "0x00000000000000000000000385000192", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "159.0", + "side": "B", + "time": 1762185596940, + "startPosition": "-1188190350.0", + "dir": "Close Short", + "closedPnl": "0.277137", + "hash": "0x2d6b2f062f4d2d932ee4042ec463ca02087a00ebca404c65d133da58ee41077d", + "oid": 221326910134, + "crossed": true, + "fee": "0.000127", + "tid": 53948200039702, + "cloid": "0x00000000000000000000000385000193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131075.0", + "side": "B", + "time": 1762185596940, + "startPosition": "-1188190191.0", + "dir": "Close Short", + "closedPnl": "228.463725", + "hash": "0x2d6b2f062f4d2d932ee4042ec463ca02087a00ebca404c65d133da58ee41077d", + "oid": 221326910134, + "crossed": true, + "fee": "0.104818", + "tid": 450645321050110, + "cloid": "0x00000000000000000000000385000193", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.52", + "sz": "38.7", + "side": "B", + "time": 1762185597603, + "startPosition": "-230988.07", + "dir": "Close Short", + "closedPnl": "1288.41201", + "hash": "0x3c3ad910f75d77843db4042ec463d30203b600f692509656e0038463b651516e", + "oid": 221326914149, + "crossed": true, + "fee": "1.353308", + "tid": 109075006492100, + "cloid": "0x00000000000000000000000388000224", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.52", + "sz": "21.27", + "side": "B", + "time": 1762185597603, + "startPosition": "-230949.37", + "dir": "Close Short", + "closedPnl": "708.127221", + "hash": "0x3c3ad910f75d77843db4042ec463d30203b600f692509656e0038463b651516e", + "oid": 221326914149, + "crossed": true, + "fee": "0.743794", + "tid": 24146839813140, + "cloid": "0x00000000000000000000000388000224", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.2", + "sz": "2.7739", + "side": "B", + "time": 1762185598253, + "startPosition": "-1811.4644", + "dir": "Close Short", + "closedPnl": "1454.577682", + "hash": "0x91d88e628eec1bdf9352042ec463db02086f004829ef3ab135a139b54deff5ca", + "oid": 221326921151, + "crossed": true, + "fee": "2.089029", + "tid": 422243248284135, + "cloid": "0x00000000000000000000000387000237", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.2", + "sz": "0.0126", + "side": "B", + "time": 1762185598253, + "startPosition": "-1808.6905", + "dir": "Close Short", + "closedPnl": "6.607188", + "hash": "0x91d88e628eec1bdf9352042ec463db02086f004829ef3ab135a139b54deff5ca", + "oid": 221326921151, + "crossed": true, + "fee": "0.009489", + "tid": 657839245177991, + "cloid": "0x00000000000000000000000387000237", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131296.0", + "side": "B", + "time": 1762185598688, + "startPosition": "-1188059116.0", + "dir": "Close Short", + "closedPnl": "228.848928", + "hash": "0xa0585fd0f99a1044a1d2042ec463e002047900b6949d2f1644210b23b89dea2f", + "oid": 221326924571, + "crossed": true, + "fee": "0.104994", + "tid": 757994619502470, + "cloid": "0x00000000000000000000000385000194", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "10.12", + "side": "B", + "time": 1762185600100, + "startPosition": "-230928.1", + "dir": "Close Short", + "closedPnl": "336.614476", + "hash": "0x802edb3e65994b1c81a8042ec463f10203240024009c69ee23f78691249d2507", + "oid": 221326938867, + "crossed": true, + "fee": "0.353952", + "tid": 856747878169919, + "cloid": "0x00000000000000000000000388000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "0.07", + "side": "B", + "time": 1762185600100, + "startPosition": "-230917.98", + "dir": "Close Short", + "closedPnl": "2.328361", + "hash": "0x802edb3e65994b1c81a8042ec463f10203240024009c69ee23f78691249d2507", + "oid": 221326938867, + "crossed": true, + "fee": "0.002448", + "tid": 716174668467307, + "cloid": "0x00000000000000000000000388000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "6.67", + "side": "B", + "time": 1762185600100, + "startPosition": "-230917.91", + "dir": "Close Short", + "closedPnl": "221.859541", + "hash": "0x802edb3e65994b1c81a8042ec463f10203240024009c69ee23f78691249d2507", + "oid": 221326938867, + "crossed": true, + "fee": "0.233286", + "tid": 991385569317225, + "cloid": "0x00000000000000000000000388000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "43.11", + "side": "B", + "time": 1762185600100, + "startPosition": "-230911.24", + "dir": "Close Short", + "closedPnl": "1433.506653", + "hash": "0x802edb3e65994b1c81a8042ec463f10203240024009c69ee23f78691249d2507", + "oid": 221326938867, + "crossed": true, + "fee": "1.507884", + "tid": 541134287668381, + "cloid": "0x00000000000000000000000388000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131294.0", + "side": "B", + "time": 1762185600337, + "startPosition": "-1187927820.0", + "dir": "Close Short", + "closedPnl": "228.845442", + "hash": "0x41022645ab287448427b042ec463f4021696002b462b931ae4cad1986a2c4e32", + "oid": 221326943803, + "crossed": true, + "fee": "0.104993", + "tid": 84277630104551, + "cloid": "0x00000000000000000000000385000195", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.9", + "sz": "2.7861", + "side": "B", + "time": 1762185601953, + "startPosition": "-1808.6779", + "dir": "Close Short", + "closedPnl": "1459.024848", + "hash": "0x009495e8186ae2dc020e042ec4640102018900cdb36e01aea45d413ad76ebcc6", + "oid": 221326954330, + "crossed": true, + "fee": "2.098627", + "tid": 232961236592717, + "cloid": "0x00000000000000000000000387000238", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003813", + "sz": "130987.0", + "side": "B", + "time": 1762185606033, + "startPosition": "-1187796526.0", + "dir": "Close Short", + "closedPnl": "227.655406", + "hash": "0x3a8fbeea2b9a64fc3c09042ec4642f01ce00d6cfc69d83cede586a3cea9e3ee6", + "oid": 221327005913, + "crossed": true, + "fee": "0.104885", + "tid": 357334974599594, + "cloid": "0x00000000000000000000000385000196", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "59.94", + "side": "B", + "time": 1762185606033, + "startPosition": "-230868.13", + "dir": "Close Short", + "closedPnl": "1990.745262", + "hash": "0xb8b10ff1ab60b166ba2a042ec4642f01d30027d74663d0385c79bb446a648b51", + "oid": 221327005916, + "crossed": true, + "fee": "2.09706", + "tid": 176189084567644, + "cloid": "0x00000000000000000000000388000226", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.2", + "sz": "2.7858", + "side": "B", + "time": 1762185606033, + "startPosition": "-1805.8918", + "dir": "Close Short", + "closedPnl": "1458.032004", + "hash": "0xd335a3ee4283d54ad4af042ec4642f02011500d3dd86f41c76fe4f410187af35", + "oid": 221327005945, + "crossed": true, + "fee": "2.098576", + "tid": 592833425353652, + "cloid": "0x00000000000000000000000387000239", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003813", + "sz": "131062.0", + "side": "B", + "time": 1762185608593, + "startPosition": "-1187665539.0", + "dir": "Close Short", + "closedPnl": "227.785756", + "hash": "0x81aa50d09d8772688324042ec4644c0206f400b6388a913a2572fc235c8b4c53", + "oid": 221327049486, + "crossed": true, + "fee": "0.104945", + "tid": 729803362218585, + "cloid": "0x00000000000000000000000385000197", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.8", + "sz": "2.7854", + "side": "B", + "time": 1762185609063, + "startPosition": "-1803.106", + "dir": "Close Short", + "closedPnl": "1458.936812", + "hash": "0x3bd97a004738d6353d53042ec46451020c6e00e5e23bf507dfa22553063cb01f", + "oid": 221327060521, + "crossed": true, + "fee": "2.098041", + "tid": 1087098401713200, + "cloid": "0x00000000000000000000000387000240", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "59.93", + "side": "B", + "time": 1762185609392, + "startPosition": "-230808.19", + "dir": "Close Short", + "closedPnl": "1990.413139", + "hash": "0xd88c73c7ec7c9113da06042ec46455020ece00ad877fafe57c551f1aab706afe", + "oid": 221327070478, + "crossed": true, + "fee": "2.09671", + "tid": 289312473707718, + "cloid": "0x00000000000000000000000388000227", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.3", + "sz": "1.767", + "side": "B", + "time": 1762185612114, + "startPosition": "-1800.3206", + "dir": "Close Short", + "closedPnl": "928.16976", + "hash": "0x2f4b6ec234fdfdab30c5042ec4647202014500a7cff11c7dd3141a14f3f1d795", + "oid": 221327124936, + "crossed": true, + "fee": "1.330397", + "tid": 321097889420131, + "cloid": "0x00000000000000000000000387000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.3", + "sz": "1.02", + "side": "B", + "time": 1762185612114, + "startPosition": "-1798.5536", + "dir": "Close Short", + "closedPnl": "535.7856", + "hash": "0x2f4b6ec234fdfdab30c5042ec4647202014500a7cff11c7dd3141a14f3f1d795", + "oid": 221327124936, + "crossed": true, + "fee": "0.767971", + "tid": 14638317846338, + "cloid": "0x00000000000000000000000387000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "12.01", + "side": "B", + "time": 1762185612395, + "startPosition": "-230748.26", + "dir": "Close Short", + "closedPnl": "399.960623", + "hash": "0xc73b7c40de9e939dc8b5042ec46476020ddb00267991b26f6b0427939d926d88", + "oid": 221327129785, + "crossed": true, + "fee": "0.419954", + "tid": 267823022120036, + "cloid": "0x00000000000000000000000388000228", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "47.99", + "side": "B", + "time": 1762185612395, + "startPosition": "-230736.25", + "dir": "Close Short", + "closedPnl": "1596.737677", + "hash": "0xc73b7c40de9e939dc8b5042ec46476020ddb00267991b26f6b0427939d926d88", + "oid": 221327129785, + "crossed": true, + "fee": "1.678373", + "tid": 661735053759226, + "cloid": "0x00000000000000000000000388000228", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003806", + "sz": "131268.0", + "side": "B", + "time": 1762185613376, + "startPosition": "-1187534477.0", + "dir": "Close Short", + "closedPnl": "229.06266", + "hash": "0x5ada68b02c758c2a5c54042ec464840207a30095c778aafcfea31402eb796614", + "oid": 221327144243, + "crossed": true, + "fee": "0.104917", + "tid": 501355860476798, + "cloid": "0x00000000000000000000000385000198", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.0", + "sz": "0.2175", + "side": "B", + "time": 1762185614794, + "startPosition": "-1797.5336", + "dir": "Close Short", + "closedPnl": "114.09615", + "hash": "0x30658c99ad0c7f5731df042ec464960217ba007f480f9e29d42e37ec6c005941", + "oid": 221327180365, + "crossed": true, + "fee": "0.16379", + "tid": 307569309105944, + "cloid": "0x00000000000000000000000387000242", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.2", + "sz": "0.0042", + "side": "B", + "time": 1762185614794, + "startPosition": "-1797.3161", + "dir": "Close Short", + "closedPnl": "2.202396", + "hash": "0x30658c99ad0c7f5731df042ec464960217ba007f480f9e29d42e37ec6c005941", + "oid": 221327180365, + "crossed": true, + "fee": "0.003163", + "tid": 1064255055317950, + "cloid": "0x00000000000000000000000387000242", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.2", + "sz": "0.0055", + "side": "B", + "time": 1762185614794, + "startPosition": "-1797.3119", + "dir": "Close Short", + "closedPnl": "2.88409", + "hash": "0x30658c99ad0c7f5731df042ec464960217ba007f480f9e29d42e37ec6c005941", + "oid": 221327180365, + "crossed": true, + "fee": "0.004142", + "tid": 541309452334632, + "cloid": "0x00000000000000000000000387000242", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "0.0083", + "side": "B", + "time": 1762185614794, + "startPosition": "-1797.3064", + "dir": "Close Short", + "closedPnl": "4.350694", + "hash": "0x30658c99ad0c7f5731df042ec464960217ba007f480f9e29d42e37ec6c005941", + "oid": 221327180365, + "crossed": true, + "fee": "0.006251", + "tid": 253039618399397, + "cloid": "0x00000000000000000000000387000242", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "0.0042", + "side": "B", + "time": 1762185614794, + "startPosition": "-1797.2981", + "dir": "Close Short", + "closedPnl": "2.201556", + "hash": "0x30658c99ad0c7f5731df042ec464960217ba007f480f9e29d42e37ec6c005941", + "oid": 221327180365, + "crossed": true, + "fee": "0.003163", + "tid": 130878932072370, + "cloid": "0x00000000000000000000000387000242", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "2.5466", + "side": "B", + "time": 1762185614794, + "startPosition": "-1797.2939", + "dir": "Close Short", + "closedPnl": "1334.876788", + "hash": "0x30658c99ad0c7f5731df042ec464960217ba007f480f9e29d42e37ec6c005941", + "oid": 221327180365, + "crossed": true, + "fee": "1.917956", + "tid": 184762338878729, + "cloid": "0x00000000000000000000000387000242", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "0.18", + "side": "B", + "time": 1762185614794, + "startPosition": "-230688.26", + "dir": "Close Short", + "closedPnl": "5.980014", + "hash": "0xe3390334c69dc1d2e4b2042ec464960217bb001a6190e0a48701ae8785919bbd", + "oid": 221327180366, + "crossed": true, + "fee": "0.006297", + "tid": 6216187462154, + "cloid": "0x00000000000000000000000388000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "0.29", + "side": "B", + "time": 1762185614794, + "startPosition": "-230688.08", + "dir": "Close Short", + "closedPnl": "9.634467", + "hash": "0xe3390334c69dc1d2e4b2042ec464960217bb001a6190e0a48701ae8785919bbd", + "oid": 221327180366, + "crossed": true, + "fee": "0.010145", + "tid": 687836874156747, + "cloid": "0x00000000000000000000000388000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "0.29", + "side": "B", + "time": 1762185614794, + "startPosition": "-230687.79", + "dir": "Close Short", + "closedPnl": "9.634467", + "hash": "0xe3390334c69dc1d2e4b2042ec464960217bb001a6190e0a48701ae8785919bbd", + "oid": 221327180366, + "crossed": true, + "fee": "0.010145", + "tid": 744560518485074, + "cloid": "0x00000000000000000000000388000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "59.21", + "side": "B", + "time": 1762185614794, + "startPosition": "-230687.5", + "dir": "Close Short", + "closedPnl": "1966.500283", + "hash": "0xe3390334c69dc1d2e4b2042ec464960217bb001a6190e0a48701ae8785919bbd", + "oid": 221327180366, + "crossed": true, + "fee": "2.071521", + "tid": 71780260927331, + "cloid": "0x00000000000000000000000388000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003803", + "sz": "131363.0", + "side": "B", + "time": 1762185615673, + "startPosition": "-1187403209.0", + "dir": "Close Short", + "closedPnl": "229.622524", + "hash": "0x566424d0a2bc8c6757dd042ec464a2020b9100b63dbfab39fa2cd02361b06651", + "oid": 221327198259, + "crossed": true, + "fee": "0.10491", + "tid": 440101170589999, + "cloid": "0x00000000000000000000000385000199", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.4", + "sz": "2.7873", + "side": "B", + "time": 1762185617377, + "startPosition": "-1794.7473", + "dir": "Close Short", + "closedPnl": "1463.834214", + "hash": "0xa18a340ceb75d4f4a303042ec464b8020d0f00f28678f3c64552df5faa79aedf", + "oid": 221327234563, + "crossed": true, + "fee": "2.098652", + "tid": 801597147521179, + "cloid": "0x00000000000000000000000387000243", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "59.99", + "side": "B", + "time": 1762185617377, + "startPosition": "-230628.29", + "dir": "Close Short", + "closedPnl": "1996.005277", + "hash": "0x1bee27236ae8ba341d67042ec464b8020d1e000905ebd906bfb6d27629ec941e", + "oid": 221327234571, + "crossed": true, + "fee": "2.098054", + "tid": 362446614711200, + "cloid": "0x00000000000000000000000388000230", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003799", + "sz": "131588.0", + "side": "B", + "time": 1762185617789, + "startPosition": "-1187271846.0", + "dir": "Close Short", + "closedPnl": "230.542176", + "hash": "0x3f2b63cf9039655640a5042ec464bd0162007bb52b3c8428e2f40f224f3d3f40", + "oid": 221327242093, + "crossed": true, + "fee": "0.104979", + "tid": 945588105363488, + "cloid": "0x00000000000000000000000385000200", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "131752.0", + "side": "B", + "time": 1762185619822, + "startPosition": "-1187140258.0", + "dir": "Close Short", + "closedPnl": "231.356512", + "hash": "0x9bf76ed5d90f85a79d71042ec464d7020d7500bb7402a4793fc01a2898035f92", + "oid": 221327289358, + "crossed": true, + "fee": "0.104999", + "tid": 417322963631378, + "cloid": "0x00000000000000000000000385000201", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.1", + "sz": "2.092", + "side": "B", + "time": 1762185619822, + "startPosition": "-1791.96", + "dir": "Close Short", + "closedPnl": "1099.30416", + "hash": "0x4d17b7ab3cacbd694e91042ec464d7020dbf0090d7afdc3bf0e062fdfba09753", + "oid": 221327289405, + "crossed": true, + "fee": "1.575006", + "tid": 954135118593449, + "cloid": "0x00000000000000000000000387000244", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.1", + "sz": "0.695", + "side": "B", + "time": 1762185619822, + "startPosition": "-1789.868", + "dir": "Close Short", + "closedPnl": "365.2086", + "hash": "0x4d17b7ab3cacbd694e91042ec464d7020dbf0090d7afdc3bf0e062fdfba09753", + "oid": 221327289405, + "crossed": true, + "fee": "0.523245", + "tid": 1006841074473440, + "cloid": "0x00000000000000000000000387000244", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.37", + "sz": "60.01", + "side": "B", + "time": 1762185620092, + "startPosition": "-230568.3", + "dir": "Close Short", + "closedPnl": "2006.872423", + "hash": "0x9a3cf57d1c870c9b9bb6042ec464db020f590062b78a2b6d3e05a0cfdb8ae686", + "oid": 221327304338, + "crossed": true, + "fee": "2.096611", + "tid": 608307673908319, + "cloid": "0x00000000000000000000000388000231", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131844.0", + "side": "B", + "time": 1762185622578, + "startPosition": "-1187008506.0", + "dir": "Close Short", + "closedPnl": "232.309128", + "hash": "0x38df96e024f20b4a3a59042ec464fa02079d00c5bff52a1cdca84232e3f5e534", + "oid": 221327360729, + "crossed": true, + "fee": "0.104906", + "tid": 990970329766228, + "cloid": "0x00000000000000000000000385000202", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.9", + "sz": "0.833", + "side": "B", + "time": 1762185622838, + "startPosition": "-1789.173", + "dir": "Close Short", + "closedPnl": "439.55744", + "hash": "0x74173a5b5846702a7590042ec464fd02124b0040f3498efc17dfe5ae174a4a15", + "oid": 221327369869, + "crossed": true, + "fee": "0.626756", + "tid": 363684991663837, + "cloid": "0x00000000000000000000000387000245", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.9", + "sz": "1.9554", + "side": "B", + "time": 1762185622838, + "startPosition": "-1788.34", + "dir": "Close Short", + "closedPnl": "1031.825472", + "hash": "0x74173a5b5846702a7590042ec464fd02124b0040f3498efc17dfe5ae174a4a15", + "oid": 221327369869, + "crossed": true, + "fee": "1.47126", + "tid": 55615780179019, + "cloid": "0x00000000000000000000000387000245", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.29", + "sz": "60.05", + "side": "B", + "time": 1762185622838, + "startPosition": "-230508.29", + "dir": "Close Short", + "closedPnl": "2013.014115", + "hash": "0xa50c01fdf1adff10a685042ec464fd02125100e38ca11de248d4ad50b0a1d8fb", + "oid": 221327369873, + "crossed": true, + "fee": "2.097", + "tid": 426321800873218, + "cloid": "0x00000000000000000000000388000232", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.34", + "sz": "0.18", + "side": "B", + "time": 1762185625293, + "startPosition": "-230448.24", + "dir": "Close Short", + "closedPnl": "6.025014", + "hash": "0xbd14b90ff322ea04be8e042ec46518020a6200f58e2608d660dd6462b226c3ef", + "oid": 221327414087, + "crossed": true, + "fee": "0.006287", + "tid": 402020420929761, + "cloid": "0x00000000000000000000000388000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.34", + "sz": "31.52", + "side": "B", + "time": 1762185625293, + "startPosition": "-230448.06", + "dir": "Close Short", + "closedPnl": "1055.046896", + "hash": "0xbd14b90ff322ea04be8e042ec46518020a6200f58e2608d660dd6462b226c3ef", + "oid": 221327414087, + "crossed": true, + "fee": "1.101037", + "tid": 310281558885667, + "cloid": "0x00000000000000000000000388000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.34", + "sz": "11.67", + "side": "B", + "time": 1762185625293, + "startPosition": "-230416.54", + "dir": "Close Short", + "closedPnl": "390.621741", + "hash": "0xbd14b90ff322ea04be8e042ec46518020a6200f58e2608d660dd6462b226c3ef", + "oid": 221327414087, + "crossed": true, + "fee": "0.407649", + "tid": 745083783886524, + "cloid": "0x00000000000000000000000388000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.36", + "sz": "1.0", + "side": "B", + "time": 1762185625293, + "startPosition": "-230404.87", + "dir": "Close Short", + "closedPnl": "33.4523", + "hash": "0xbd14b90ff322ea04be8e042ec46518020a6200f58e2608d660dd6462b226c3ef", + "oid": 221327414087, + "crossed": true, + "fee": "0.034935", + "tid": 930962093495812, + "cloid": "0x00000000000000000000000388000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "0.18", + "side": "B", + "time": 1762185625293, + "startPosition": "-230403.87", + "dir": "Close Short", + "closedPnl": "6.017814", + "hash": "0xbd14b90ff322ea04be8e042ec46518020a6200f58e2608d660dd6462b226c3ef", + "oid": 221327414087, + "crossed": true, + "fee": "0.006289", + "tid": 701826727097936, + "cloid": "0x00000000000000000000000388000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "0.18", + "side": "B", + "time": 1762185625293, + "startPosition": "-230403.69", + "dir": "Close Short", + "closedPnl": "6.017814", + "hash": "0xbd14b90ff322ea04be8e042ec46518020a6200f58e2608d660dd6462b226c3ef", + "oid": 221327414087, + "crossed": true, + "fee": "0.006289", + "tid": 97038004887376, + "cloid": "0x00000000000000000000000388000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.39", + "sz": "15.29", + "side": "B", + "time": 1762185625293, + "startPosition": "-230403.51", + "dir": "Close Short", + "closedPnl": "511.026967", + "hash": "0xbd14b90ff322ea04be8e042ec46518020a6200f58e2608d660dd6462b226c3ef", + "oid": 221327414087, + "crossed": true, + "fee": "0.534261", + "tid": 728842407731311, + "cloid": "0x00000000000000000000000388000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.8", + "sz": "0.0055", + "side": "B", + "time": 1762185626416, + "startPosition": "-1786.3846", + "dir": "Close Short", + "closedPnl": "2.89179", + "hash": "0x825693b6d2d3870c83d0042ec4652602024f009c6dd6a5de261f3f0991d760f7", + "oid": 221327440113, + "crossed": true, + "fee": "0.00414", + "tid": 563394588491492, + "cloid": "0x00000000000000000000000387000246", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.8", + "sz": "2.7822", + "side": "B", + "time": 1762185626416, + "startPosition": "-1786.3791", + "dir": "Close Short", + "closedPnl": "1462.825116", + "hash": "0x825693b6d2d3870c83d0042ec4652602024f009c6dd6a5de261f3f0991d760f7", + "oid": 221327440113, + "crossed": true, + "fee": "2.094462", + "tid": 758186096830315, + "cloid": "0x00000000000000000000000387000246", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.39", + "sz": "60.01", + "side": "B", + "time": 1762185627299, + "startPosition": "-230388.22", + "dir": "Close Short", + "closedPnl": "2005.672223", + "hash": "0x03610acd8246ee0404da042ec4652f02057100b31d4a0cd6a729b620414ac7ee", + "oid": 221327457187, + "crossed": true, + "fee": "2.096863", + "tid": 31322899969562, + "cloid": "0x00000000000000000000000388000234", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131813.0", + "side": "B", + "time": 1762185627873, + "startPosition": "-1186876662.0", + "dir": "Close Short", + "closedPnl": "231.200002", + "hash": "0x2010917a5b699cf4218a042ec46535020435005ff66cbbc6c3d93ccd1a6d76de", + "oid": 221327468266, + "crossed": true, + "fee": "0.105103", + "tid": 818247770945715, + "cloid": "0x00000000000000000000000385000204", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "2.7888", + "side": "B", + "time": 1762185628947, + "startPosition": "-1783.5969", + "dir": "Close Short", + "closedPnl": "1471.315104", + "hash": "0x6526859102823aab66a0042ec465430204b100769d85597d08ef30e3c1861496", + "oid": 221327485574, + "crossed": true, + "fee": "2.098376", + "tid": 300768345778198, + "cloid": "0x00000000000000000000000387000247", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "60.03", + "side": "B", + "time": 1762185629427, + "startPosition": "-230328.21", + "dir": "Close Short", + "closedPnl": "2006.940969", + "hash": "0xaaa213334b4f06bdac1b042ec4654902027f0018e642258f4e6abe860a42e0a8", + "oid": 221327492791, + "crossed": true, + "fee": "2.097436", + "tid": 589042041515752, + "cloid": "0x00000000000000000000000388000235", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131640.0", + "side": "B", + "time": 1762185629493, + "startPosition": "-1186744849.0", + "dir": "Close Short", + "closedPnl": "230.89656", + "hash": "0x54de09013c85470b5657042ec4654a0204ee00e6d78865ddf8a6b453fb8920f5", + "oid": 221327494278, + "crossed": true, + "fee": "0.104965", + "tid": 130429024381259, + "cloid": "0x00000000000000000000000385000205", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.1", + "sz": "2.518", + "side": "B", + "time": 1762185630600, + "startPosition": "-1780.8081", + "dir": "Close Short", + "closedPnl": "1328.19464", + "hash": "0x0f260031ca09305e109f042ec465590218fb0017650c4f30b2eeab84890d0a48", + "oid": 221327513865, + "crossed": true, + "fee": "1.894671", + "tid": 984674564423220, + "cloid": "0x00000000000000000000000387000248", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.7", + "sz": "0.2706", + "side": "B", + "time": 1762185630600, + "startPosition": "-1778.2901", + "dir": "Close Short", + "closedPnl": "142.573728", + "hash": "0x0f260031ca09305e109f042ec465590218fb0017650c4f30b2eeab84890d0a48", + "oid": 221327513865, + "crossed": true, + "fee": "0.203647", + "tid": 678787889837799, + "cloid": "0x00000000000000000000000387000248", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "60.01", + "side": "B", + "time": 1762185631243, + "startPosition": "-230268.18", + "dir": "Close Short", + "closedPnl": "1997.270823", + "hash": "0xedaf90562ee1c999ef29042ec4656202068c003bc9e4e86b91783ba8ede5a384", + "oid": 221327533982, + "crossed": true, + "fee": "2.098627", + "tid": 1021150644069878, + "cloid": "0x00000000000000000000000388000236", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "114599.0", + "side": "B", + "time": 1762185632589, + "startPosition": "-1186613209.0", + "dir": "Close Short", + "closedPnl": "200.662849", + "hash": "0x606397f08a63043a61dd042ec465730216ef00d62566230c042c43434966de25", + "oid": 221327527334, + "crossed": false, + "fee": "0.012193", + "tid": 702462080585511, + "cloid": "0x00000000000000000000000385000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "17006.0", + "side": "B", + "time": 1762185633210, + "startPosition": "-1186498610.0", + "dir": "Close Short", + "closedPnl": "29.777506", + "hash": "0x26331a3b09dc6c8a27ac042ec4657b0208d60020a4df8b5cc9fbc58dc8d04674", + "oid": 221327527334, + "crossed": false, + "fee": "0.001809", + "tid": 96371952708572, + "cloid": "0x00000000000000000000000385000206", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.8", + "sz": "1.8", + "side": "B", + "time": 1762185633519, + "startPosition": "-1778.0195", + "dir": "Close Short", + "closedPnl": "946.404", + "hash": "0xe1104835dc8473c4e28a042ec46580020f60001b7787929684d8f3889b884daf", + "oid": 221327575050, + "crossed": true, + "fee": "1.355054", + "tid": 146405241851545, + "cloid": "0x00000000000000000000000387000249", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.8", + "sz": "0.9867", + "side": "B", + "time": 1762185633519, + "startPosition": "-1776.2195", + "dir": "Close Short", + "closedPnl": "518.787126", + "hash": "0xe1104835dc8473c4e28a042ec46580020f60001b7787929684d8f3889b884daf", + "oid": 221327575050, + "crossed": true, + "fee": "0.742795", + "tid": 612139511425142, + "cloid": "0x00000000000000000000000387000249", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "59.98", + "side": "B", + "time": 1762185633519, + "startPosition": "-230208.17", + "dir": "Close Short", + "closedPnl": "1996.272354", + "hash": "0x83921bacd32f6091850b042ec4658002105a00926e227f63275ac6ff92233a7c", + "oid": 221327575167, + "crossed": true, + "fee": "2.097578", + "tid": 951757886876978, + "cloid": "0x00000000000000000000000388000237", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.46", + "sz": "60.01", + "side": "B", + "time": 1762185635661, + "startPosition": "-230148.19", + "dir": "Close Short", + "closedPnl": "2001.471523", + "hash": "0xdb45cd7a45106413dcbf042ec4659a0203cf005fe01382e57f0e78cd04143dfe", + "oid": 221327634445, + "crossed": true, + "fee": "2.097745", + "tid": 790257175620388, + "cloid": "0x00000000000000000000000388000238", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.4", + "sz": "2.2013", + "side": "B", + "time": 1762185635729, + "startPosition": "-1775.2328", + "dir": "Close Short", + "closedPnl": "1160.481334", + "hash": "0xbbe716a18605a52cbd60042ec4659b0205f100872108c3fe5fafc1f445097f17", + "oid": 221327636602, + "crossed": true, + "fee": "1.656509", + "tid": 1082655265112000, + "cloid": "0x00000000000000000000000387000250", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.4", + "sz": "0.5869", + "side": "B", + "time": 1762185635729, + "startPosition": "-1773.0315", + "dir": "Close Short", + "closedPnl": "309.401942", + "hash": "0xbbe716a18605a52cbd60042ec4659b0205f100872108c3fe5fafc1f445097f17", + "oid": 221327636602, + "crossed": true, + "fee": "0.44165", + "tid": 301531891035664, + "cloid": "0x00000000000000000000000387000250", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131648.0", + "side": "B", + "time": 1762185635729, + "startPosition": "-1186481604.0", + "dir": "Close Short", + "closedPnl": "231.04224", + "hash": "0x6afd2f4b9f33807d6c76042ec4659b0205fc00313a369f4f0ec5da9e5e375a68", + "oid": 221327636609, + "crossed": true, + "fee": "0.104944", + "tid": 347320605055900, + "cloid": "0x00000000000000000000000385000207", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "31.1", + "side": "B", + "time": 1762185637202, + "startPosition": "-230088.18", + "dir": "Close Short", + "closedPnl": "1037.56753", + "hash": "0xf67c5fd850daf72df7f6042ec465b001fd0077bdebde16009a450b2b0fded118", + "oid": 221327668615, + "crossed": true, + "fee": "1.087084", + "tid": 402637301432269, + "cloid": "0x00000000000000000000000388000239", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.45", + "sz": "28.92", + "side": "B", + "time": 1762185637202, + "startPosition": "-230057.08", + "dir": "Close Short", + "closedPnl": "964.837716", + "hash": "0xf67c5fd850daf72df7f6042ec465b001fd0077bdebde16009a450b2b0fded118", + "oid": 221327668615, + "crossed": true, + "fee": "1.010884", + "tid": 639629876683191, + "cloid": "0x00000000000000000000000388000239", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.4", + "sz": "2.0324", + "side": "B", + "time": 1762185637481, + "startPosition": "-1772.4446", + "dir": "Close Short", + "closedPnl": "1071.440632", + "hash": "0xaafb96dc4a5063eaac75042ec465b402054100c1e55382bc4ec4422f09543dd5", + "oid": 221327675750, + "crossed": true, + "fee": "1.529409", + "tid": 22650620639397, + "cloid": "0x00000000000000000000000387000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.4", + "sz": "0.7562", + "side": "B", + "time": 1762185637481, + "startPosition": "-1770.4122", + "dir": "Close Short", + "closedPnl": "398.653516", + "hash": "0xaafb96dc4a5063eaac75042ec465b402054100c1e55382bc4ec4422f09543dd5", + "oid": 221327675750, + "crossed": true, + "fee": "0.569051", + "tid": 792715949131968, + "cloid": "0x00000000000000000000000387000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131718.0", + "side": "B", + "time": 1762185637481, + "startPosition": "-1186349956.0", + "dir": "Close Short", + "closedPnl": "231.16509", + "hash": "0x10a284127d72e8e2121c042ec465b402054300f8187607b4b46b2f653c76c2cc", + "oid": 221327675751, + "crossed": true, + "fee": "0.105", + "tid": 965686321506398, + "cloid": "0x00000000000000000000000385000208", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "26.06", + "side": "B", + "time": 1762185639235, + "startPosition": "-230028.16", + "dir": "Close Short", + "closedPnl": "872.548738", + "hash": "0x3ea322b8b762f5ea401c042ec465c9020a11009e526614bce26bce0b7666cfd4", + "oid": 221327711390, + "crossed": true, + "fee": "0.910257", + "tid": 293040535903617, + "cloid": "0x00000000000000000000000388000240", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "33.99", + "side": "B", + "time": 1762185639235, + "startPosition": "-230002.1", + "dir": "Close Short", + "closedPnl": "1138.063377", + "hash": "0x3ea322b8b762f5ea401c042ec465c9020a11009e526614bce26bce0b7666cfd4", + "oid": 221327711390, + "crossed": true, + "fee": "1.187246", + "tid": 854374816166969, + "cloid": "0x00000000000000000000000388000240", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003797", + "sz": "131605.0", + "side": "B", + "time": 1762185639235, + "startPosition": "-1186218238.0", + "dir": "Close Short", + "closedPnl": "230.83517", + "hash": "0xb90715cf36d5db29ba80042ec465c9020a2000b4d1d8f9fb5ccfc121f5d9b514", + "oid": 221327711404, + "crossed": true, + "fee": "0.104937", + "tid": 896220935610822, + "cloid": "0x00000000000000000000000385000209", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.8", + "sz": "2.7881", + "side": "B", + "time": 1762185640032, + "startPosition": "-1769.656", + "dir": "Close Short", + "closedPnl": "1468.715318", + "hash": "0x451ad435207834ff4694042ec465d4020653001abb7b53d1e8e37f87df7c0ee9", + "oid": 221327724475, + "crossed": true, + "fee": "2.098318", + "tid": 655159336594715, + "cloid": "0x00000000000000000000000387000252", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.37", + "sz": "12.0", + "side": "B", + "time": 1762185640915, + "startPosition": "-229968.11", + "dir": "Close Short", + "closedPnl": "401.3076", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.419252", + "tid": 397504260364240, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.37", + "sz": "0.96", + "side": "B", + "time": 1762185640915, + "startPosition": "-229956.11", + "dir": "Close Short", + "closedPnl": "32.104608", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.03354", + "tid": 551814289405886, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "0.07", + "side": "B", + "time": 1762185640915, + "startPosition": "-229955.15", + "dir": "Close Short", + "closedPnl": "2.340261", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.002445", + "tid": 920611280149001, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "0.07", + "side": "B", + "time": 1762185640915, + "startPosition": "-229955.08", + "dir": "Close Short", + "closedPnl": "2.340261", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.002445", + "tid": 84149181649785, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "0.07", + "side": "B", + "time": 1762185640915, + "startPosition": "-229955.01", + "dir": "Close Short", + "closedPnl": "2.340261", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.002445", + "tid": 1056058922634683, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "0.07", + "side": "B", + "time": 1762185640915, + "startPosition": "-229954.94", + "dir": "Close Short", + "closedPnl": "2.340261", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.002445", + "tid": 969027537378923, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "0.07", + "side": "B", + "time": 1762185640915, + "startPosition": "-229954.87", + "dir": "Close Short", + "closedPnl": "2.340261", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.002445", + "tid": 230264652871153, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "0.07", + "side": "B", + "time": 1762185640915, + "startPosition": "-229954.8", + "dir": "Close Short", + "closedPnl": "2.340261", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.002445", + "tid": 725820532805959, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "32.78", + "side": "B", + "time": 1762185640915, + "startPosition": "-229954.73", + "dir": "Close Short", + "closedPnl": "1094.927394", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "1.145533", + "tid": 392526372181888, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "3.0", + "side": "B", + "time": 1762185640915, + "startPosition": "-229921.95", + "dir": "Close Short", + "closedPnl": "100.2069", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.104838", + "tid": 761128045127761, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.42", + "sz": "0.18", + "side": "B", + "time": 1762185640915, + "startPosition": "-229918.95", + "dir": "Close Short", + "closedPnl": "6.010614", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.00629", + "tid": 154964450601103, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.43", + "sz": "10.69", + "side": "B", + "time": 1762185640915, + "startPosition": "-229918.77", + "dir": "Close Short", + "closedPnl": "356.856787", + "hash": "0x55174ff505482cb45691042ec465df0205b100daa04b4b86f8dffb47c44c069e", + "oid": 221327739157, + "crossed": true, + "fee": "0.373618", + "tid": 686472561436209, + "cloid": "0x00000000000000000000000388000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.4", + "sz": "2.788", + "side": "B", + "time": 1762185641563, + "startPosition": "-1766.8679", + "dir": "Close Short", + "closedPnl": "1466.98984", + "hash": "0x56d31d27da67d0e1584c042ec465e6021070000d756aefb3fa9bc87a996baacb", + "oid": 221327752835, + "crossed": true, + "fee": "2.098594", + "tid": 942981315851210, + "cloid": "0x00000000000000000000000387000253", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.37", + "sz": "60.04", + "side": "B", + "time": 1762185642469, + "startPosition": "-229908.08", + "dir": "Close Short", + "closedPnl": "2007.875692", + "hash": "0xfa8b91d957e50843fc05042ec465ef02061b00bef2e827169e543d2c16e8e22e", + "oid": 221327765503, + "crossed": true, + "fee": "2.097659", + "tid": 798897689964906, + "cloid": "0x00000000000000000000000388000242", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003793", + "sz": "74064.0", + "side": "B", + "time": 1762185643366, + "startPosition": "-1186086633.0", + "dir": "Close Short", + "closedPnl": "130.204512", + "hash": "0xcc68761f22ff3985cde2042ec465f90207420004bdf2585770312171e1f31370", + "oid": 221327799459, + "crossed": true, + "fee": "0.058994", + "tid": 984606161592493, + "cloid": "0x00000000000000000000000385000211", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003794", + "sz": "57572.0", + "side": "B", + "time": 1762185643366, + "startPosition": "-1186012569.0", + "dir": "Close Short", + "closedPnl": "101.154004", + "hash": "0xcc68761f22ff3985cde2042ec465f90207420004bdf2585770312171e1f31370", + "oid": 221327799459, + "crossed": true, + "fee": "0.045869", + "tid": 560963765878453, + "cloid": "0x00000000000000000000000385000211", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.5", + "sz": "1.7611", + "side": "B", + "time": 1762185643366, + "startPosition": "-1764.0799", + "dir": "Close Short", + "closedPnl": "930.001688", + "hash": "0x77c130d83bc9adab793a042ec465f902075700bdd6cccc7d1b89dc2afacd8796", + "oid": 221327799474, + "crossed": true, + "fee": "1.324919", + "tid": 484450500901633, + "cloid": "0x00000000000000000000000387000254", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.5", + "sz": "1.0283", + "side": "B", + "time": 1762185643366, + "startPosition": "-1762.3188", + "dir": "Close Short", + "closedPnl": "543.024664", + "hash": "0x77c130d83bc9adab793a042ec465f902075700bdd6cccc7d1b89dc2afacd8796", + "oid": 221327799474, + "crossed": true, + "fee": "0.773615", + "tid": 673754347793462, + "cloid": "0x00000000000000000000000387000254", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "60.07", + "side": "B", + "time": 1762185644373, + "startPosition": "-229848.04", + "dir": "Close Short", + "closedPnl": "2016.688061", + "hash": "0x00c55284af285f76023f042ec46604020a86006a4a2b7e48a48dfdd76e2c3960", + "oid": 221327821130, + "crossed": true, + "fee": "2.097067", + "tid": 51850202544330, + "cloid": "0x00000000000000000000000388000243", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131891.0", + "side": "B", + "time": 1762185645280, + "startPosition": "-1185954997.0", + "dir": "Close Short", + "closedPnl": "232.391942", + "hash": "0x12f40c87dc8c5089146d042ec466110206cb006d778f6f5bb6bcb7da9b802a73", + "oid": 221327844432, + "crossed": true, + "fee": "0.104944", + "tid": 648772322986304, + "cloid": "0x00000000000000000000000385000212", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.4", + "sz": "2.04", + "side": "B", + "time": 1762185645874, + "startPosition": "-1761.2905", + "dir": "Close Short", + "closedPnl": "1079.5272", + "hash": "0x8a9111b80bf4e71e8c0a042ec46619020bb2009da6f805f02e59bd0acaf8c109", + "oid": 221327861988, + "crossed": true, + "fee": "1.534271", + "tid": 1005239482341349, + "cloid": "0x00000000000000000000000387000255", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.4", + "sz": "0.7498", + "side": "B", + "time": 1762185645874, + "startPosition": "-1759.2505", + "dir": "Close Short", + "closedPnl": "396.779164", + "hash": "0x8a9111b80bf4e71e8c0a042ec46619020bb2009da6f805f02e59bd0acaf8c109", + "oid": 221327861988, + "crossed": true, + "fee": "0.56392", + "tid": 569421487092383, + "cloid": "0x00000000000000000000000387000255", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "60.09", + "side": "B", + "time": 1762185646114, + "startPosition": "-229787.97", + "dir": "Close Short", + "closedPnl": "2017.960407", + "hash": "0x01307d1453eb690802aa042ec4661d020a7500f9eeee87daa4f9286712ef42f2", + "oid": 221327872949, + "crossed": true, + "fee": "2.097639", + "tid": 228388392252919, + "cloid": "0x00000000000000000000000388000244", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131926.0", + "side": "B", + "time": 1762185647666, + "startPosition": "-1185823106.0", + "dir": "Close Short", + "closedPnl": "232.453612", + "hash": "0xc565e32da01a3071c6df042ec4662f02055600133b1d4f43692e8e805f1e0a5c", + "oid": 221327903603, + "crossed": true, + "fee": "0.104972", + "tid": 224034264465559, + "cloid": "0x00000000000000000000000385000213", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.6", + "sz": "2.7892", + "side": "B", + "time": 1762185648507, + "startPosition": "-1758.5007", + "dir": "Close Short", + "closedPnl": "1475.431016", + "hash": "0x9f14c94e9f4d660ea08e042ec4663902010f00343a4084e042dd74a15e413ff9", + "oid": 221327920685, + "crossed": true, + "fee": "2.097857", + "tid": 157903078661477, + "cloid": "0x00000000000000000000000387000256", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "60.06", + "side": "B", + "time": 1762185648606, + "startPosition": "-229727.88", + "dir": "Close Short", + "closedPnl": "2012.148138", + "hash": "0xa106d66211582d57a280042ec4663a020e130047ac5b4c2944cf81b4d05c0742", + "oid": 221327926968, + "crossed": true, + "fee": "2.097601", + "tid": 337980190517961, + "cloid": "0x00000000000000000000000388000245", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131926.0", + "side": "B", + "time": 1762185650128, + "startPosition": "-1185691180.0", + "dir": "Close Short", + "closedPnl": "232.453612", + "hash": "0x8d822af3d2d3993b8efb042ec4664e02068700d96dd6b80d314ad64691d77326", + "oid": 221327959624, + "crossed": true, + "fee": "0.104972", + "tid": 302248482930617, + "cloid": "0x00000000000000000000000385000214", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "60.09", + "side": "B", + "time": 1762185650720, + "startPosition": "-229667.82", + "dir": "Close Short", + "closedPnl": "2016.758607", + "hash": "0xaf1be146c9195d1ab095042ec46656020963002c641c7bec52e48c99881d3705", + "oid": 221327971828, + "crossed": true, + "fee": "2.097892", + "tid": 241533551527841, + "cloid": "0x00000000000000000000000388000246", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.9", + "sz": "2.04", + "side": "B", + "time": 1762185650720, + "startPosition": "-1755.7115", + "dir": "Close Short", + "closedPnl": "1078.5072", + "hash": "0xa3e3c773c7ff2799a55d042ec46656020981005962f2466b47ac72c686f30184", + "oid": 221327971837, + "crossed": true, + "fee": "1.534485", + "tid": 215530936444255, + "cloid": "0x00000000000000000000000387000257", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.9", + "sz": "0.7497", + "side": "B", + "time": 1762185650720, + "startPosition": "-1753.6715", + "dir": "Close Short", + "closedPnl": "396.351396", + "hash": "0xa3e3c773c7ff2799a55d042ec46656020981005962f2466b47ac72c686f30184", + "oid": 221327971837, + "crossed": true, + "fee": "0.563923", + "tid": 1085388140291295, + "cloid": "0x00000000000000000000000387000257", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131933.0", + "side": "B", + "time": 1762185652087, + "startPosition": "-1185559254.0", + "dir": "Close Short", + "closedPnl": "232.465946", + "hash": "0x2cc1f99d327514822e3b042ec4666a020b050082cd783354d08aa4eff178ee6c", + "oid": 221328003628, + "crossed": true, + "fee": "0.104977", + "tid": 437409571798938, + "cloid": "0x00000000000000000000000385000215", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.1", + "sz": "2.7896", + "side": "B", + "time": 1762185652289, + "startPosition": "-1752.9218", + "dir": "Close Short", + "closedPnl": "1474.247808", + "hash": "0x219a958533bf93b02314042ec4666d0202ea006aceb2b282c56340d7f2b36d9a", + "oid": 221328004950, + "crossed": true, + "fee": "2.098451", + "tid": 1013197607479432, + "cloid": "0x00000000000000000000000387000258", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.14", + "sz": "60.1", + "side": "B", + "time": 1762185652534, + "startPosition": "-229607.73", + "dir": "Close Short", + "closedPnl": "2023.70523", + "hash": "0x9dc22888cc94540a9f3b042ec46670015900406e679772dc418ad3db8b982df5", + "oid": 221328007166, + "crossed": true, + "fee": "2.096852", + "tid": 7151583792134, + "cloid": "0x00000000000000000000000388000247", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.7", + "sz": "0.0055", + "side": "B", + "time": 1762185654127, + "startPosition": "-1750.1322", + "dir": "Close Short", + "closedPnl": "2.90334", + "hash": "0x586acfda894ab9bf59e4042ec4668602086e00c0244dd891fc337b2d484e93a9", + "oid": 221328036244, + "crossed": true, + "fee": "0.004138", + "tid": 310700275911214, + "cloid": "0x00000000000000000000000387000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "0.0042", + "side": "B", + "time": 1762185654127, + "startPosition": "-1750.1267", + "dir": "Close Short", + "closedPnl": "2.215836", + "hash": "0x586acfda894ab9bf59e4042ec4668602086e00c0244dd891fc337b2d484e93a9", + "oid": 221328036244, + "crossed": true, + "fee": "0.00316", + "tid": 1086695283227909, + "cloid": "0x00000000000000000000000387000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.0042", + "side": "B", + "time": 1762185654127, + "startPosition": "-1750.1225", + "dir": "Close Short", + "closedPnl": "2.214996", + "hash": "0x586acfda894ab9bf59e4042ec4668602086e00c0244dd891fc337b2d484e93a9", + "oid": 221328036244, + "crossed": true, + "fee": "0.00316", + "tid": 1020025435769208, + "cloid": "0x00000000000000000000000387000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.4", + "sz": "0.0083", + "side": "B", + "time": 1762185654127, + "startPosition": "-1750.1183", + "dir": "Close Short", + "closedPnl": "4.375594", + "hash": "0x586acfda894ab9bf59e4042ec4668602086e00c0244dd891fc337b2d484e93a9", + "oid": 221328036244, + "crossed": true, + "fee": "0.006245", + "tid": 600947489828465, + "cloid": "0x00000000000000000000000387000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.5", + "sz": "0.0042", + "side": "B", + "time": 1762185654127, + "startPosition": "-1750.11", + "dir": "Close Short", + "closedPnl": "2.213736", + "hash": "0x586acfda894ab9bf59e4042ec4668602086e00c0244dd891fc337b2d484e93a9", + "oid": 221328036244, + "crossed": true, + "fee": "0.00316", + "tid": 757192145556283, + "cloid": "0x00000000000000000000000387000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.5", + "sz": "0.0083", + "side": "B", + "time": 1762185654127, + "startPosition": "-1750.1058", + "dir": "Close Short", + "closedPnl": "4.374764", + "hash": "0x586acfda894ab9bf59e4042ec4668602086e00c0244dd891fc337b2d484e93a9", + "oid": 221328036244, + "crossed": true, + "fee": "0.006246", + "tid": 253042420203249, + "cloid": "0x00000000000000000000000387000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.6", + "sz": "2.7546", + "side": "B", + "time": 1762185654127, + "startPosition": "-1750.0975", + "dir": "Close Short", + "closedPnl": "1451.619108", + "hash": "0x586acfda894ab9bf59e4042ec4668602086e00c0244dd891fc337b2d484e93a9", + "oid": 221328036244, + "crossed": true, + "fee": "2.07299", + "tid": 1037944123992817, + "cloid": "0x00000000000000000000000387000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "13.62", + "side": "B", + "time": 1762185654720, + "startPosition": "-229547.63", + "dir": "Close Short", + "closedPnl": "457.527126", + "hash": "0xf1c7be7456b8bd63f341042ec4668d020bfa0059f1bbdc36959069c715bc974e", + "oid": 221328049697, + "crossed": true, + "fee": "0.475422", + "tid": 761602076647852, + "cloid": "0x00000000000000000000000388000248", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "46.47", + "side": "B", + "time": 1762185654720, + "startPosition": "-229534.01", + "dir": "Close Short", + "closedPnl": "1561.034181", + "hash": "0xf1c7be7456b8bd63f341042ec4668d020bfa0059f1bbdc36959069c715bc974e", + "oid": 221328049697, + "crossed": true, + "fee": "1.622091", + "tid": 1021418356332141, + "cloid": "0x00000000000000000000000388000248", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.27", + "sz": "60.07", + "side": "B", + "time": 1762185656675, + "startPosition": "-229487.54", + "dir": "Close Short", + "closedPnl": "2014.885961", + "hash": "0x28987ff0ea01ac0f2a12042ec466a60205ba00d68504cae1cc612b43a90585f9", + "oid": 221328085926, + "crossed": true, + "fee": "2.097446", + "tid": 847796097952211, + "cloid": "0x00000000000000000000000388000249", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.7", + "sz": "2.7885", + "side": "B", + "time": 1762185657773, + "startPosition": "-1747.3429", + "dir": "Close Short", + "closedPnl": "1469.20488", + "hash": "0x8ee8232a6566cc069061042ec466b502065500100069ead832b0ce7d246aa5f1", + "oid": 221328105177, + "crossed": true, + "fee": "2.09856", + "tid": 544833245276160, + "cloid": "0x00000000000000000000000387000260", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.29", + "sz": "46.1", + "side": "B", + "time": 1762185658816, + "startPosition": "-229427.47", + "dir": "Close Short", + "closedPnl": "1545.37803", + "hash": "0xe3ff9e35333c8592e579042ec466bf020c88001ace3fa46487c84987f2305f7d", + "oid": 221328126825, + "crossed": true, + "fee": "1.609853", + "tid": 60374014212723, + "cloid": "0x00000000000000000000000388000250", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.29", + "sz": "13.97", + "side": "B", + "time": 1762185658816, + "startPosition": "-229381.37", + "dir": "Close Short", + "closedPnl": "468.306531", + "hash": "0xe3ff9e35333c8592e579042ec466bf020c88001ace3fa46487c84987f2305f7d", + "oid": 221328126825, + "crossed": true, + "fee": "0.487844", + "tid": 1102774945524327, + "cloid": "0x00000000000000000000000388000250", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.8", + "sz": "2.7879", + "side": "B", + "time": 1762185659907, + "startPosition": "-1744.5544", + "dir": "Close Short", + "closedPnl": "1468.609962", + "hash": "0x9d4aa482e66794fc9ec4042ec466ca020bbc0068816ab3ce41134fd5a56b6ee7", + "oid": 221328141555, + "crossed": true, + "fee": "2.098167", + "tid": 1106066843293541, + "cloid": "0x00000000000000000000000387000261", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003795", + "sz": "131839.0", + "side": "B", + "time": 1762185660557, + "startPosition": "-1185427321.0", + "dir": "Close Short", + "closedPnl": "231.509284", + "hash": "0xc65f5a4b7c4b0b7fc7d9042ec466d20208a20031174e2a516a28059e3b4ee56a", + "oid": 221328151873, + "crossed": true, + "fee": "0.105069", + "tid": 476114496484661, + "cloid": "0x00000000000000000000000385000218", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "3.59", + "side": "B", + "time": 1762185660802, + "startPosition": "-229367.4", + "dir": "Close Short", + "closedPnl": "120.201457", + "hash": "0x25f7a1fff5df82e92771042ec466d502115400e590d2a1bbc9c04d52b4d35cd3", + "oid": 221328157803, + "crossed": true, + "fee": "0.125396", + "tid": 234366629153664, + "cloid": "0x00000000000000000000000388000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "5.97", + "side": "B", + "time": 1762185660802, + "startPosition": "-229363.81", + "dir": "Close Short", + "closedPnl": "199.889331", + "hash": "0x25f7a1fff5df82e92771042ec466d502115400e590d2a1bbc9c04d52b4d35cd3", + "oid": 221328157803, + "crossed": true, + "fee": "0.208527", + "tid": 383334133920078, + "cloid": "0x00000000000000000000000388000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.34", + "sz": "6.01", + "side": "B", + "time": 1762185660802, + "startPosition": "-229357.84", + "dir": "Close Short", + "closedPnl": "201.168523", + "hash": "0x25f7a1fff5df82e92771042ec466d502115400e590d2a1bbc9c04d52b4d35cd3", + "oid": 221328157803, + "crossed": true, + "fee": "0.209937", + "tid": 945235393416961, + "cloid": "0x00000000000000000000000388000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.34", + "sz": "7.88", + "side": "B", + "time": 1762185660802, + "startPosition": "-229351.83", + "dir": "Close Short", + "closedPnl": "263.761724", + "hash": "0x25f7a1fff5df82e92771042ec466d502115400e590d2a1bbc9c04d52b4d35cd3", + "oid": 221328157803, + "crossed": true, + "fee": "0.275259", + "tid": 379495959641773, + "cloid": "0x00000000000000000000000388000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "6.01", + "side": "B", + "time": 1762185660802, + "startPosition": "-229343.95", + "dir": "Close Short", + "closedPnl": "201.108423", + "hash": "0x25f7a1fff5df82e92771042ec466d502115400e590d2a1bbc9c04d52b4d35cd3", + "oid": 221328157803, + "crossed": true, + "fee": "0.20995", + "tid": 880254176855383, + "cloid": "0x00000000000000000000000388000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.36", + "sz": "6.01", + "side": "B", + "time": 1762185660802, + "startPosition": "-229337.94", + "dir": "Close Short", + "closedPnl": "201.048323", + "hash": "0x25f7a1fff5df82e92771042ec466d502115400e590d2a1bbc9c04d52b4d35cd3", + "oid": 221328157803, + "crossed": true, + "fee": "0.209962", + "tid": 812518572261740, + "cloid": "0x00000000000000000000000388000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.36", + "sz": "0.18", + "side": "B", + "time": 1762185660802, + "startPosition": "-229331.93", + "dir": "Close Short", + "closedPnl": "6.021414", + "hash": "0x25f7a1fff5df82e92771042ec466d502115400e590d2a1bbc9c04d52b4d35cd3", + "oid": 221328157803, + "crossed": true, + "fee": "0.006288", + "tid": 16528322106481, + "cloid": "0x00000000000000000000000388000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.37", + "sz": "10.99", + "side": "B", + "time": 1762185660802, + "startPosition": "-229331.75", + "dir": "Close Short", + "closedPnl": "367.530877", + "hash": "0x25f7a1fff5df82e92771042ec466d502115400e590d2a1bbc9c04d52b4d35cd3", + "oid": 221328157803, + "crossed": true, + "fee": "0.383965", + "tid": 843008736064333, + "cloid": "0x00000000000000000000000388000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.37", + "sz": "13.42", + "side": "B", + "time": 1762185660802, + "startPosition": "-229320.76", + "dir": "Close Short", + "closedPnl": "448.795666", + "hash": "0x25f7a1fff5df82e92771042ec466d502115400e590d2a1bbc9c04d52b4d35cd3", + "oid": 221328157803, + "crossed": true, + "fee": "0.468863", + "tid": 523119439717455, + "cloid": "0x00000000000000000000000388000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.3", + "sz": "0.0007", + "side": "B", + "time": 1762185661844, + "startPosition": "-1741.7665", + "dir": "Close Short", + "closedPnl": "0.367696", + "hash": "0x3a8815bb3febeac03c01042ec466e202029c00a0daef0992de50c10dfeefc4aa", + "oid": 221328179123, + "crossed": true, + "fee": "0.000527", + "tid": 835171654123571, + "cloid": "0x00000000000000000000000387000262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.3", + "sz": "0.056", + "side": "B", + "time": 1762185661844, + "startPosition": "-1741.7658", + "dir": "Close Short", + "closedPnl": "29.41568", + "hash": "0x3a8815bb3febeac03c01042ec466e202029c00a0daef0992de50c10dfeefc4aa", + "oid": 221328179123, + "crossed": true, + "fee": "0.042163", + "tid": 200744620299163, + "cloid": "0x00000000000000000000000387000262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.3", + "sz": "0.0598", + "side": "B", + "time": 1762185661844, + "startPosition": "-1741.7098", + "dir": "Close Short", + "closedPnl": "31.411744", + "hash": "0x3a8815bb3febeac03c01042ec466e202029c00a0daef0992de50c10dfeefc4aa", + "oid": 221328179123, + "crossed": true, + "fee": "0.045024", + "tid": 625105643691697, + "cloid": "0x00000000000000000000000387000262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.3", + "sz": "0.0581", + "side": "B", + "time": 1762185661844, + "startPosition": "-1741.65", + "dir": "Close Short", + "closedPnl": "30.518768", + "hash": "0x3a8815bb3febeac03c01042ec466e202029c00a0daef0992de50c10dfeefc4aa", + "oid": 221328179123, + "crossed": true, + "fee": "0.043744", + "tid": 390015939044382, + "cloid": "0x00000000000000000000000387000262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.4", + "sz": "2.6124", + "side": "B", + "time": 1762185661844, + "startPosition": "-1741.5919", + "dir": "Close Short", + "closedPnl": "1371.980232", + "hash": "0x3a8815bb3febeac03c01042ec466e202029c00a0daef0992de50c10dfeefc4aa", + "oid": 221328179123, + "crossed": true, + "fee": "1.966964", + "tid": 308909410682423, + "cloid": "0x00000000000000000000000387000262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131544.0", + "side": "B", + "time": 1762185662334, + "startPosition": "-1185295482.0", + "dir": "Close Short", + "closedPnl": "230.596632", + "hash": "0xdd40d3fbdeefeb06deba042ec466e702213300e179e309d881097f4e9de3c4f1", + "oid": 221328191045, + "crossed": true, + "fee": "0.104916", + "tid": 96283482747739, + "cloid": "0x00000000000000000000000385000219", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "28.77", + "side": "B", + "time": 1762185663278, + "startPosition": "-229307.34", + "dir": "Close Short", + "closedPnl": "961.847271", + "hash": "0x99b378511147c57c9b2d042ec466f1020f970036ac4ae44e3d7c23a3d04b9f67", + "oid": 221328204628, + "crossed": true, + "fee": "1.005218", + "tid": 170727234351134, + "cloid": "0x00000000000000000000000388000252", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.38", + "sz": "31.26", + "side": "B", + "time": 1762185663278, + "startPosition": "-229278.57", + "dir": "Close Short", + "closedPnl": "1045.093698", + "hash": "0x99b378511147c57c9b2d042ec466f1020f970036ac4ae44e3d7c23a3d04b9f67", + "oid": 221328204628, + "crossed": true, + "fee": "1.092218", + "tid": 838962299018128, + "cloid": "0x00000000000000000000000388000252", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.1", + "sz": "2.788", + "side": "B", + "time": 1762185664601, + "startPosition": "-1738.9795", + "dir": "Close Short", + "closedPnl": "1467.82624", + "hash": "0x16baaa299c837eb61834042ec466fd02012f000f37869d88ba83557c5b8758a0", + "oid": 221328228473, + "crossed": true, + "fee": "2.098418", + "tid": 710539429298647, + "cloid": "0x00000000000000000000000387000263", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.3", + "sz": "60.06", + "side": "B", + "time": 1762185665992, + "startPosition": "-229247.31", + "dir": "Close Short", + "closedPnl": "2012.748738", + "hash": "0xdcbfc55ba9f384f9de39042ec4670a022e1d004144f6a3cb808870ae68f75ee4", + "oid": 221328255819, + "crossed": true, + "fee": "2.097475", + "tid": 624908395486381, + "cloid": "0x00000000000000000000000388000253", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "60.1", + "side": "B", + "time": 1762185668596, + "startPosition": "-229187.25", + "dir": "Close Short", + "closedPnl": "2017.09423", + "hash": "0xacef2cb1936f4344ae68042ec4672a02052c00972e62621650b7d80452631d2f", + "oid": 221328295469, + "crossed": true, + "fee": "2.098241", + "tid": 21997532456588, + "cloid": "0x00000000000000000000000388000254", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.5", + "sz": "2.7873", + "side": "B", + "time": 1762185668596, + "startPosition": "-1736.1915", + "dir": "Close Short", + "closedPnl": "1466.342784", + "hash": "0xdde3f4542cc6d22adf5d042ec4672a0205320039c7c9f0fc81ac9fa6ebcaac15", + "oid": 221328295472, + "crossed": true, + "fee": "2.098126", + "tid": 192566056370490, + "cloid": "0x00000000000000000000000387000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131822.0", + "side": "B", + "time": 1762185669997, + "startPosition": "-1185163938.0", + "dir": "Close Short", + "closedPnl": "232.270364", + "hash": "0x7240f25898dfe81173ba042ec4673b020686003e33d306e316099dab57d3c1fc", + "oid": 221328340574, + "crossed": true, + "fee": "0.104889", + "tid": 455517718392843, + "cloid": "0x00000000000000000000000385000221", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26673", + "sz": "3756.5", + "side": "B", + "time": 1762185669997, + "startPosition": "-3996795.5", + "dir": "Close Short", + "closedPnl": "2007.99951", + "hash": "0x0161eb4f64932d9902db042ec4673b0206a20034ff964c6ba52a96a223970783", + "oid": 221328144066, + "crossed": false, + "fee": "0.028055", + "tid": 447540472495514, + "cloid": "0x00000000000000000000000384000133", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.9", + "sz": "2.7889", + "side": "B", + "time": 1762185671032, + "startPosition": "-1733.4042", + "dir": "Close Short", + "closedPnl": "1471.646752", + "hash": "0xfe3caf7079891ee5ffb6042ec46747020c8d0056148c3db8a2055ac3388cf8d0", + "oid": 221328355647, + "crossed": true, + "fee": "2.098393", + "tid": 345613242136745, + "cloid": "0x00000000000000000000000387000265", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.12", + "sz": "39.44", + "side": "B", + "time": 1762185671032, + "startPosition": "-229127.15", + "dir": "Close Short", + "closedPnl": "1328.824312", + "hash": "0xa9956a299253930bab0f042ec46747020ca2000f2d56b1dd4d5e157c51576cf6", + "oid": 221328355662, + "crossed": true, + "fee": "1.375872", + "tid": 44290918366276, + "cloid": "0x00000000000000000000000388000255", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.12", + "sz": "20.67", + "side": "B", + "time": 1762185671032, + "startPosition": "-229087.71", + "dir": "Close Short", + "closedPnl": "696.419841", + "hash": "0xa9956a299253930bab0f042ec46747020ca2000f2d56b1dd4d5e157c51576cf6", + "oid": 221328355662, + "crossed": true, + "fee": "0.721077", + "tid": 1112845684158332, + "cloid": "0x00000000000000000000000388000255", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26661", + "sz": "2464.2", + "side": "A", + "time": 1762185671376, + "startPosition": "4014391.9960630001", + "dir": "Sell", + "closedPnl": "-1318.55352715", + "hash": "0x9b85f048ddb13e7f9cff042ec4674c0213ef002e78b45d513f4e9b9b9cb5186a", + "oid": 221328365362, + "crossed": true, + "fee": "0.1839545", + "tid": 331748612252024, + "cloid": "0x10000000000000000000000475000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "131926.0", + "side": "B", + "time": 1762185671812, + "startPosition": "-1185032116.0", + "dir": "Close Short", + "closedPnl": "232.717464", + "hash": "0xd46e0372e08fc8f7d5e7042ec4675202010600587b82e7c97836aec59f83a2e2", + "oid": 221328372859, + "crossed": true, + "fee": "0.104916", + "tid": 116962245068058, + "cloid": "0x00000000000000000000000385000222", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26644", + "sz": "273.7", + "side": "A", + "time": 1762185672999, + "startPosition": "4011927.7960629999", + "dir": "Sell", + "closedPnl": "-146.49896808", + "hash": "0xce216d20152fd386cf9b042ec4675f0211df0005b022f25871ea1872d423ad71", + "oid": 221328365362, + "crossed": false, + "fee": "0.00510472", + "tid": 77488070670024, + "cloid": "0x10000000000000000000000475000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26644", + "sz": "1018.6", + "side": "A", + "time": 1762185672999, + "startPosition": "4011654.0960630002", + "dir": "Sell", + "closedPnl": "-545.20953192", + "hash": "0x80f4e3bb2eb11602826e042ec4675f0211e000a0c9b434d424bd8f0dedb4efed", + "oid": 221328365362, + "crossed": false, + "fee": "0.0189977", + "tid": 362608982164020, + "cloid": "0x10000000000000000000000475000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.9", + "sz": "2.7887", + "side": "B", + "time": 1762185673614, + "startPosition": "-1730.6153", + "dir": "Close Short", + "closedPnl": "1471.541216", + "hash": "0xe9b4d7d2d3e78961eb2e042ec4676602044800b86eeaa8338d7d832592eb634c", + "oid": 221328396882, + "crossed": true, + "fee": "2.098242", + "tid": 439958790056774, + "cloid": "0x00000000000000000000000387000266", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.09", + "sz": "60.14", + "side": "B", + "time": 1762185673827, + "startPosition": "-229067.04", + "dir": "Close Short", + "closedPnl": "2028.059122", + "hash": "0xa30e0fe925e91efaa487042ec4676902091900cec0ec3dcc46d6bb3be4ecf8e5", + "oid": 221328404911, + "crossed": true, + "fee": "2.097617", + "tid": 624493406923353, + "cloid": "0x00000000000000000000000388000256", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "102618.0", + "side": "B", + "time": 1762185674215, + "startPosition": "-1184900190.0", + "dir": "Close Short", + "closedPnl": "180.710298", + "hash": "0x2ca01cccd7e7805b2e19042ec4676e01600034b272ea9f2dd068c81f96eb5a45", + "oid": 221328404900, + "crossed": false, + "fee": "0.010889", + "tid": 798769177168000, + "cloid": "0x00000000000000000000000385000223", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "29408.0", + "side": "B", + "time": 1762185674215, + "startPosition": "-1184797572.0", + "dir": "Close Short", + "closedPnl": "51.787488", + "hash": "0xbbc115c3a3aac5e2bd3a042ec4676e017c002da93eade4b45f89c11662ae9fcd", + "oid": 221328404900, + "crossed": false, + "fee": "0.00312", + "tid": 573784726053269, + "cloid": "0x00000000000000000000000385000223", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.1", + "sz": "0.5526", + "side": "B", + "time": 1762185676304, + "startPosition": "-1727.8266", + "dir": "Close Short", + "closedPnl": "291.485448", + "hash": "0x2eb6e5fb8d2342073030042ec4678b02078300e1282660d9d27f914e4c271bf1", + "oid": 221328442360, + "crossed": true, + "fee": "0.415804", + "tid": 802951432364683, + "cloid": "0x00000000000000000000000387000267", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.1", + "sz": "1.6184", + "side": "B", + "time": 1762185676304, + "startPosition": "-1727.274", + "dir": "Close Short", + "closedPnl": "853.673632", + "hash": "0x2eb6e5fb8d2342073030042ec4678b02078300e1282660d9d27f914e4c271bf1", + "oid": 221328442360, + "crossed": true, + "fee": "1.217766", + "tid": 563288524385196, + "cloid": "0x00000000000000000000000387000267", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.6173", + "side": "B", + "time": 1762185676304, + "startPosition": "-1725.6556", + "dir": "Close Short", + "closedPnl": "325.551674", + "hash": "0x2eb6e5fb8d2342073030042ec4678b02078300e1282660d9d27f914e4c271bf1", + "oid": 221328442360, + "crossed": true, + "fee": "0.4645", + "tid": 35107138434292, + "cloid": "0x00000000000000000000000387000267", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.1", + "sz": "60.12", + "side": "B", + "time": 1762185676304, + "startPosition": "-229006.9", + "dir": "Close Short", + "closedPnl": "2026.783476", + "hash": "0xc5529ad459ad55e4c6cc042ec4678b02078b00b9f4a074b6691b462718a12fcf", + "oid": 221328442365, + "crossed": true, + "fee": "2.097045", + "tid": 413999498734045, + "cloid": "0x00000000000000000000000388000257", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003793", + "sz": "131752.0", + "side": "B", + "time": 1762185677086, + "startPosition": "-1184768164.0", + "dir": "Close Short", + "closedPnl": "231.620016", + "hash": "0xb753d6aea76fb607b8cd042ec4679302069f00944262d4d95b1c820166638ff2", + "oid": 221328457097, + "crossed": true, + "fee": "0.104944", + "tid": 795121602348051, + "cloid": "0x00000000000000000000000385000224", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.11", + "sz": "60.13", + "side": "B", + "time": 1762185677997, + "startPosition": "-228946.78", + "dir": "Close Short", + "closedPnl": "2026.519299", + "hash": "0xcace49ea92be8fbccc48042ec4679d02046a00d02db1ae8e6e96f53d51b269a7", + "oid": 221328470080, + "crossed": true, + "fee": "2.09752", + "tid": 46275985437668, + "cloid": "0x00000000000000000000000388000258", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.0152", + "side": "B", + "time": 1762185678634, + "startPosition": "-1725.0383", + "dir": "Close Short", + "closedPnl": "8.016176", + "hash": "0xdaba53831400b710dc34042ec467a502061f0068af03d5e27e82fed5d30490fb", + "oid": 221328478169, + "crossed": true, + "fee": "0.011437", + "tid": 869601460472201, + "cloid": "0x00000000000000000000000387000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.0252", + "side": "B", + "time": 1762185678634, + "startPosition": "-1725.0231", + "dir": "Close Short", + "closedPnl": "13.289976", + "hash": "0xdaba53831400b710dc34042ec467a502061f0068af03d5e27e82fed5d30490fb", + "oid": 221328478169, + "crossed": true, + "fee": "0.018962", + "tid": 922828926085394, + "cloid": "0x00000000000000000000000387000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.0252", + "side": "B", + "time": 1762185678634, + "startPosition": "-1724.9979", + "dir": "Close Short", + "closedPnl": "13.289976", + "hash": "0xdaba53831400b710dc34042ec467a502061f0068af03d5e27e82fed5d30490fb", + "oid": 221328478169, + "crossed": true, + "fee": "0.018962", + "tid": 587069615010718, + "cloid": "0x00000000000000000000000387000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.0252", + "side": "B", + "time": 1762185678634, + "startPosition": "-1724.9727", + "dir": "Close Short", + "closedPnl": "13.289976", + "hash": "0xdaba53831400b710dc34042ec467a502061f0068af03d5e27e82fed5d30490fb", + "oid": 221328478169, + "crossed": true, + "fee": "0.018962", + "tid": 502249402970079, + "cloid": "0x00000000000000000000000387000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.0252", + "side": "B", + "time": 1762185678634, + "startPosition": "-1724.9475", + "dir": "Close Short", + "closedPnl": "13.289976", + "hash": "0xdaba53831400b710dc34042ec467a502061f0068af03d5e27e82fed5d30490fb", + "oid": 221328478169, + "crossed": true, + "fee": "0.018962", + "tid": 1082385539835456, + "cloid": "0x00000000000000000000000387000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.0252", + "side": "B", + "time": 1762185678634, + "startPosition": "-1724.9223", + "dir": "Close Short", + "closedPnl": "13.289976", + "hash": "0xdaba53831400b710dc34042ec467a502061f0068af03d5e27e82fed5d30490fb", + "oid": 221328478169, + "crossed": true, + "fee": "0.018962", + "tid": 55414272382202, + "cloid": "0x00000000000000000000000387000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "2.25", + "side": "B", + "time": 1762185678634, + "startPosition": "-1724.8971", + "dir": "Close Short", + "closedPnl": "1186.605", + "hash": "0xdaba53831400b710dc34042ec467a502061f0068af03d5e27e82fed5d30490fb", + "oid": 221328478169, + "crossed": true, + "fee": "1.693061", + "tid": 899941740363026, + "cloid": "0x00000000000000000000000387000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.3977", + "side": "B", + "time": 1762185678634, + "startPosition": "-1722.6471", + "dir": "Close Short", + "closedPnl": "209.739026", + "hash": "0xdaba53831400b710dc34042ec467a502061f0068af03d5e27e82fed5d30490fb", + "oid": 221328478169, + "crossed": true, + "fee": "0.299258", + "tid": 836738373571861, + "cloid": "0x00000000000000000000000387000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003792", + "sz": "131744.0", + "side": "B", + "time": 1762185679560, + "startPosition": "-1184636412.0", + "dir": "Close Short", + "closedPnl": "231.737696", + "hash": "0x075d2f5b7509fba708d6042ec467af0204fd0041100d1a79ab25daae340dd591", + "oid": 221328490295, + "crossed": true, + "fee": "0.10491", + "tid": 642404480497301, + "cloid": "0x00000000000000000000000385000225", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.18", + "side": "B", + "time": 1762185679757, + "startPosition": "-228886.65", + "dir": "Close Short", + "closedPnl": "6.044814", + "hash": "0xf3f4a3ead54b8f9af56e042ec467b3020e8d00d0704eae6d97bd4f3d944f6985", + "oid": 221328502753, + "crossed": true, + "fee": "0.006283", + "tid": 1061924188308052, + "cloid": "0x00000000000000000000000388000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "6.02", + "side": "B", + "time": 1762185679757, + "startPosition": "-228886.47", + "dir": "Close Short", + "closedPnl": "202.105246", + "hash": "0xf3f4a3ead54b8f9af56e042ec467b3020e8d00d0704eae6d97bd4f3d944f6985", + "oid": 221328502753, + "crossed": true, + "fee": "0.21016", + "tid": 1020765633592997, + "cloid": "0x00000000000000000000000388000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "6.02", + "side": "B", + "time": 1762185679757, + "startPosition": "-228880.45", + "dir": "Close Short", + "closedPnl": "202.045046", + "hash": "0xf3f4a3ead54b8f9af56e042ec467b3020e8d00d0704eae6d97bd4f3d944f6985", + "oid": 221328502753, + "crossed": true, + "fee": "0.210173", + "tid": 332994882090853, + "cloid": "0x00000000000000000000000388000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.26", + "sz": "6.01", + "side": "B", + "time": 1762185679757, + "startPosition": "-228874.43", + "dir": "Close Short", + "closedPnl": "201.649323", + "hash": "0xf3f4a3ead54b8f9af56e042ec467b3020e8d00d0704eae6d97bd4f3d944f6985", + "oid": 221328502753, + "crossed": true, + "fee": "0.209836", + "tid": 194390113635487, + "cloid": "0x00000000000000000000000388000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.27", + "sz": "6.02", + "side": "B", + "time": 1762185679757, + "startPosition": "-228868.42", + "dir": "Close Short", + "closedPnl": "201.924646", + "hash": "0xf3f4a3ead54b8f9af56e042ec467b3020e8d00d0704eae6d97bd4f3d944f6985", + "oid": 221328502753, + "crossed": true, + "fee": "0.210198", + "tid": 562283837143505, + "cloid": "0x00000000000000000000000388000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.27", + "sz": "0.18", + "side": "B", + "time": 1762185679757, + "startPosition": "-228862.4", + "dir": "Close Short", + "closedPnl": "6.037614", + "hash": "0xf3f4a3ead54b8f9af56e042ec467b3020e8d00d0704eae6d97bd4f3d944f6985", + "oid": 221328502753, + "crossed": true, + "fee": "0.006285", + "tid": 593874302358471, + "cloid": "0x00000000000000000000000388000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.27", + "sz": "35.66", + "side": "B", + "time": 1762185679757, + "startPosition": "-228862.22", + "dir": "Close Short", + "closedPnl": "1196.118418", + "hash": "0xf3f4a3ead54b8f9af56e042ec467b3020e8d00d0704eae6d97bd4f3d944f6985", + "oid": 221328502753, + "crossed": true, + "fee": "1.245129", + "tid": 807079177472399, + "cloid": "0x00000000000000000000000388000259", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.3", + "sz": "2.7868", + "side": "B", + "time": 1762185680615, + "startPosition": "-1722.2494", + "dir": "Close Short", + "closedPnl": "1463.850304", + "hash": "0x8f9bb04c24cb3d779115042ec467bb02081d0031bfce5c4933645b9ee3cf1762", + "oid": 221328524740, + "crossed": true, + "fee": "2.098217", + "tid": 915532285162338, + "cloid": "0x00000000000000000000000387000269", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131471.0", + "side": "B", + "time": 1762185680931, + "startPosition": "-1184504668.0", + "dir": "Close Short", + "closedPnl": "230.468663", + "hash": "0xc2ea3d22c71d9a0cc463042ec467bf020d7600086210b8de66b2e875861173f7", + "oid": 221328534620, + "crossed": true, + "fee": "0.104858", + "tid": 672769226281025, + "cloid": "0x00000000000000000000000385000226", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "60.07", + "side": "B", + "time": 1762185681810, + "startPosition": "-228826.56", + "dir": "Close Short", + "closedPnl": "2011.281761", + "hash": "0x7e27f974f98cab827fa1042ec467cb020af9005a948fca5421f0a4c7b880856d", + "oid": 221328545508, + "crossed": true, + "fee": "2.098203", + "tid": 564422176435903, + "cloid": "0x00000000000000000000000388000260", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.4", + "sz": "2.7867", + "side": "B", + "time": 1762185682699, + "startPosition": "-1719.4626", + "dir": "Close Short", + "closedPnl": "1463.519106", + "hash": "0x9f3b974af574f6b9a0b5042ec467d5020c5e00309078158b4304429db478d0a4", + "oid": 221328558531, + "crossed": true, + "fee": "2.098201", + "tid": 31727090182980, + "cloid": "0x00000000000000000000000387000270", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "131367.0", + "side": "B", + "time": 1762185682971, + "startPosition": "-1184373197.0", + "dir": "Close Short", + "closedPnl": "229.104048", + "hash": "0x741e6a8e9c1ba55b7598042ec467d80213090074371ec42d17e715e15b1f7f46", + "oid": 221328564824, + "crossed": true, + "fee": "0.105023", + "tid": 288147074727192, + "cloid": "0x00000000000000000000000385000227", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "12.0", + "side": "B", + "time": 1762185683659, + "startPosition": "-228766.49", + "dir": "Close Short", + "closedPnl": "401.7876", + "hash": "0x95b8c9d29f8aa3fd9732042ec467e002073000b83a8dc2cf398175255e8e7de8", + "oid": 221328569863, + "crossed": true, + "fee": "0.419151", + "tid": 812495002152661, + "cloid": "0x00000000000000000000000388000261", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "36.08", + "side": "B", + "time": 1762185683659, + "startPosition": "-228754.49", + "dir": "Close Short", + "closedPnl": "1208.041384", + "hash": "0x95b8c9d29f8aa3fd9732042ec467e002073000b83a8dc2cf398175255e8e7de8", + "oid": 221328569863, + "crossed": true, + "fee": "1.260249", + "tid": 719532494568305, + "cloid": "0x00000000000000000000000388000261", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "11.98", + "side": "B", + "time": 1762185683659, + "startPosition": "-228718.41", + "dir": "Close Short", + "closedPnl": "401.117954", + "hash": "0x95b8c9d29f8aa3fd9732042ec467e002073000b83a8dc2cf398175255e8e7de8", + "oid": 221328569863, + "crossed": true, + "fee": "0.418453", + "tid": 546561907348284, + "cloid": "0x00000000000000000000000388000261", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003806", + "sz": "131379.0", + "side": "B", + "time": 1762185684704, + "startPosition": "-1184241830.0", + "dir": "Close Short", + "closedPnl": "229.256355", + "hash": "0xa15a3333ef02ef53a2d3042ec467ee02062200198a060e254522de86ae06c93e", + "oid": 221328589162, + "crossed": true, + "fee": "0.105005", + "tid": 186220669631998, + "cloid": "0x00000000000000000000000385000228", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.9", + "sz": "2.3064", + "side": "B", + "time": 1762185685126, + "startPosition": "-1716.6759", + "dir": "Close Short", + "closedPnl": "1210.121952", + "hash": "0x25d1431a956748d9274a042ec467f3021e9f0000306a67abc999ee6d546b22c3", + "oid": 221328600574, + "crossed": true, + "fee": "1.736809", + "tid": 41187510448794, + "cloid": "0x00000000000000000000000387000271", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.0", + "sz": "0.4803", + "side": "B", + "time": 1762185685126, + "startPosition": "-1714.3695", + "dir": "Close Short", + "closedPnl": "251.955774", + "hash": "0x25d1431a956748d9274a042ec467f3021e9f0000306a67abc999ee6d546b22c3", + "oid": 221328600574, + "crossed": true, + "fee": "0.361694", + "tid": 394688893943184, + "cloid": "0x00000000000000000000000387000271", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "58.87", + "side": "B", + "time": 1762185686056, + "startPosition": "-228706.43", + "dir": "Close Short", + "closedPnl": "1966.393401", + "hash": "0xefc597e30d3d3a6bf13f042ec467fe020ead00c8a830593e938e4335cc311456", + "oid": 221328621386, + "crossed": true, + "fee": "2.057276", + "tid": 431433734059629, + "cloid": "0x00000000000000000000000388000262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "1.17", + "side": "B", + "time": 1762185686056, + "startPosition": "-228647.56", + "dir": "Close Short", + "closedPnl": "39.080691", + "hash": "0xefc597e30d3d3a6bf13f042ec467fe020ead00c8a830593e938e4335cc311456", + "oid": 221328621386, + "crossed": true, + "fee": "0.040886", + "tid": 306545119602179, + "cloid": "0x00000000000000000000000388000262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131298.0", + "side": "B", + "time": 1762185686863, + "startPosition": "-1184110451.0", + "dir": "Close Short", + "closedPnl": "228.589818", + "hash": "0xf759ec80ce6b3b31f8d3042ec46808020b860066696e5a049b2297d38d6f151c", + "oid": 221328640774, + "crossed": true, + "fee": "0.105051", + "tid": 336468948010324, + "cloid": "0x00000000000000000000000385000229", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.0", + "sz": "0.4052", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.8892", + "dir": "Close Short", + "closedPnl": "211.749416", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.30531", + "tid": 869280037374278, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.2", + "sz": "0.0623", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.484", + "dir": "Close Short", + "closedPnl": "32.544274", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.046944", + "tid": 1022079914280811, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.3", + "sz": "0.0042", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.4217", + "dir": "Close Short", + "closedPnl": "2.193576", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.003164", + "tid": 355334509131606, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.4", + "sz": "0.0049", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.4175", + "dir": "Close Short", + "closedPnl": "2.558682", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.003692", + "tid": 1024914256584570, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.4", + "sz": "0.0083", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.4126", + "dir": "Close Short", + "closedPnl": "4.334094", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.006254", + "tid": 463022470650987, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.5", + "sz": "0.0042", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.4043", + "dir": "Close Short", + "closedPnl": "2.192736", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.003165", + "tid": 1069600530666072, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.6", + "sz": "0.0623", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.4001", + "dir": "Close Short", + "closedPnl": "32.519354", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.046949", + "tid": 203943024575276, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.6", + "sz": "0.0055", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.3378", + "dir": "Close Short", + "closedPnl": "2.87089", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.004144", + "tid": 969093943453295, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.6", + "sz": "0.1393", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.3323", + "dir": "Close Short", + "closedPnl": "72.711814", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.104977", + "tid": 553511733445600, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "0.0042", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.193", + "dir": "Close Short", + "closedPnl": "2.191896", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "0.003165", + "tid": 677036665568280, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.8", + "sz": "2.0844", + "side": "B", + "time": 1762185687154, + "startPosition": "-1713.1888", + "dir": "Close Short", + "closedPnl": "1087.598232", + "hash": "0x459c1107a54530634715042ec4680b0207d500ed40484f35e964bc5a64490a4d", + "oid": 221328644774, + "crossed": true, + "fee": "1.570903", + "tid": 1111282299497855, + "cloid": "0x00000000000000000000000387000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "1.88", + "side": "B", + "time": 1762185687850, + "startPosition": "-228646.39", + "dir": "Close Short", + "closedPnl": "62.627124", + "hash": "0xd27570295284fa32d3ef042ec46815020417000eed881904763e1b7c1188d41d", + "oid": 221328659779, + "crossed": true, + "fee": "0.065734", + "tid": 300583019865636, + "cloid": "0x00000000000000000000000388000263", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "58.12", + "side": "B", + "time": 1762185687850, + "startPosition": "-228644.51", + "dir": "Close Short", + "closedPnl": "1936.110876", + "hash": "0xd27570295284fa32d3ef042ec46815020417000eed881904763e1b7c1188d41d", + "oid": 221328659779, + "crossed": true, + "fee": "2.032165", + "tid": 950921450000510, + "cloid": "0x00000000000000000000000388000263", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131126.0", + "side": "B", + "time": 1762185689520, + "startPosition": "-1183979153.0", + "dir": "Close Short", + "closedPnl": "228.290366", + "hash": "0x07f7b0e7257ded6e0971042ec4682602100900ccc0710c40abc05c39e471c758", + "oid": 221328685297, + "crossed": false, + "fee": "0.013988", + "tid": 15023620008681, + "cloid": "0x00000000000000000000000385000230", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.7", + "sz": "2.7845", + "side": "B", + "time": 1762185689588, + "startPosition": "-1711.1044", + "dir": "Close Short", + "closedPnl": "1450.39036", + "hash": "0xa753166ee7d3128da8cc042ec4682702075a005482d6315f4b1bc1c1a6d6ec78", + "oid": 221328689309, + "crossed": true, + "fee": "2.099059", + "tid": 916215022819692, + "cloid": "0x00000000000000000000000387000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "4.28", + "side": "B", + "time": 1762185690203, + "startPosition": "-228586.39", + "dir": "Close Short", + "closedPnl": "142.405444", + "hash": "0xc2a62e2800a6242cc41f042ec4682d020cd1000d9ba942fe666ed97abfa9fe17", + "oid": 221328696212, + "crossed": true, + "fee": "0.149686", + "tid": 428667624351336, + "cloid": "0x00000000000000000000000388000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "0.18", + "side": "B", + "time": 1762185690203, + "startPosition": "-228582.11", + "dir": "Close Short", + "closedPnl": "5.987214", + "hash": "0xc2a62e2800a6242cc41f042ec4682d020cd1000d9ba942fe666ed97abfa9fe17", + "oid": 221328696212, + "crossed": true, + "fee": "0.006295", + "tid": 382494557782833, + "cloid": "0x00000000000000000000000388000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "0.41", + "side": "B", + "time": 1762185690203, + "startPosition": "-228581.93", + "dir": "Close Short", + "closedPnl": "13.633443", + "hash": "0xc2a62e2800a6242cc41f042ec4682d020cd1000d9ba942fe666ed97abfa9fe17", + "oid": 221328696212, + "crossed": true, + "fee": "0.01434", + "tid": 614509018741577, + "cloid": "0x00000000000000000000000388000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "6.64", + "side": "B", + "time": 1762185690203, + "startPosition": "-228581.52", + "dir": "Close Short", + "closedPnl": "220.795272", + "hash": "0xc2a62e2800a6242cc41f042ec4682d020cd1000d9ba942fe666ed97abfa9fe17", + "oid": 221328696212, + "crossed": true, + "fee": "0.232251", + "tid": 382423761142601, + "cloid": "0x00000000000000000000000388000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "18.01", + "side": "B", + "time": 1762185690203, + "startPosition": "-228574.88", + "dir": "Close Short", + "closedPnl": "598.873923", + "hash": "0xc2a62e2800a6242cc41f042ec4682d020cd1000d9ba942fe666ed97abfa9fe17", + "oid": 221328696212, + "crossed": true, + "fee": "0.629946", + "tid": 350393045231850, + "cloid": "0x00000000000000000000000388000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "18.01", + "side": "B", + "time": 1762185690203, + "startPosition": "-228556.87", + "dir": "Close Short", + "closedPnl": "598.693823", + "hash": "0xc2a62e2800a6242cc41f042ec4682d020cd1000d9ba942fe666ed97abfa9fe17", + "oid": 221328696212, + "crossed": true, + "fee": "0.629984", + "tid": 724893927871036, + "cloid": "0x00000000000000000000000388000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "5.97", + "side": "B", + "time": 1762185690203, + "startPosition": "-228538.86", + "dir": "Close Short", + "closedPnl": "198.337131", + "hash": "0xc2a62e2800a6242cc41f042ec4682d020cd1000d9ba942fe666ed97abfa9fe17", + "oid": 221328696212, + "crossed": true, + "fee": "0.208853", + "tid": 317217664705820, + "cloid": "0x00000000000000000000000388000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "6.02", + "side": "B", + "time": 1762185690203, + "startPosition": "-228532.89", + "dir": "Close Short", + "closedPnl": "199.998246", + "hash": "0xc2a62e2800a6242cc41f042ec4682d020cd1000d9ba942fe666ed97abfa9fe17", + "oid": 221328696212, + "crossed": true, + "fee": "0.210603", + "tid": 330511053610832, + "cloid": "0x00000000000000000000000388000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "0.46", + "side": "B", + "time": 1762185690203, + "startPosition": "-228526.87", + "dir": "Close Short", + "closedPnl": "15.282258", + "hash": "0xc2a62e2800a6242cc41f042ec4682d020cd1000d9ba942fe666ed97abfa9fe17", + "oid": 221328696212, + "crossed": true, + "fee": "0.016092", + "tid": 753438674435033, + "cloid": "0x00000000000000000000000388000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003812", + "sz": "131027.0", + "side": "B", + "time": 1762185691545, + "startPosition": "-1183848027.0", + "dir": "Close Short", + "closedPnl": "227.855953", + "hash": "0xe67b8ce63b4027c6e7f5042ec4683e0205f600cbd64346988a443838fa4401b1", + "oid": 221328720577, + "crossed": true, + "fee": "0.104889", + "tid": 438114009496417, + "cloid": "0x00000000000000000000000385000231", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.5", + "sz": "2.7837", + "side": "B", + "time": 1762185691813, + "startPosition": "-1708.3199", + "dir": "Close Short", + "closedPnl": "1450.530396", + "hash": "0x1c2ae6f04e3adc0f1da4042ec468420214e900d5e93dfae1bff392430d3eb5f9", + "oid": 221328728963, + "crossed": true, + "fee": "2.098339", + "tid": 1018571880779607, + "cloid": "0x00000000000000000000000387000274", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "12.0", + "side": "B", + "time": 1762185691979, + "startPosition": "-228526.41", + "dir": "Close Short", + "closedPnl": "399.3876", + "hash": "0xfe688ca78712083fffe2042ec4684402061d008d22152712a23137fa4615e22a", + "oid": 221328732103, + "crossed": true, + "fee": "0.419655", + "tid": 130345614543045, + "cloid": "0x00000000000000000000000388000265", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "12.0", + "side": "B", + "time": 1762185691979, + "startPosition": "-228514.41", + "dir": "Close Short", + "closedPnl": "399.3876", + "hash": "0xfe688ca78712083fffe2042ec4684402061d008d22152712a23137fa4615e22a", + "oid": 221328732103, + "crossed": true, + "fee": "0.419655", + "tid": 824504557841396, + "cloid": "0x00000000000000000000000388000265", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "36.0", + "side": "B", + "time": 1762185691979, + "startPosition": "-228502.41", + "dir": "Close Short", + "closedPnl": "1198.1628", + "hash": "0xfe688ca78712083fffe2042ec4684402061d008d22152712a23137fa4615e22a", + "oid": 221328732103, + "crossed": true, + "fee": "1.258966", + "tid": 997464911225752, + "cloid": "0x00000000000000000000000388000265", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131337.0", + "side": "B", + "time": 1762185693114, + "startPosition": "-1183717000.0", + "dir": "Close Short", + "closedPnl": "228.920391", + "hash": "0x2c31106bcdb1fe6f2daa042ec468540207c7005168b51d41cff9bbbe8cb5d859", + "oid": 221328766873, + "crossed": true, + "fee": "0.105027", + "tid": 314917337642365, + "cloid": "0x00000000000000000000000385000232", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.5", + "sz": "2.7861", + "side": "B", + "time": 1762185693847, + "startPosition": "-1705.5362", + "dir": "Close Short", + "closedPnl": "1460.139288", + "hash": "0x22ae2129a85c398c2427042ec4685f02058a000f435f585ec676cc7c67501376", + "oid": 221328775298, + "crossed": true, + "fee": "2.098393", + "tid": 779960154127157, + "cloid": "0x00000000000000000000000387000275", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.46", + "sz": "12.0", + "side": "B", + "time": 1762185694294, + "startPosition": "-228466.41", + "dir": "Close Short", + "closedPnl": "400.2276", + "hash": "0xbfa03dd2a89d9547c119042ec46864020f5500b84390b4196368e92567916f32", + "oid": 221328785323, + "crossed": true, + "fee": "0.419479", + "tid": 768424072547746, + "cloid": "0x00000000000000000000000388000266", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "6.73", + "side": "B", + "time": 1762185694294, + "startPosition": "-228454.41", + "dir": "Close Short", + "closedPnl": "224.259079", + "hash": "0xbfa03dd2a89d9547c119042ec46864020f5500b84390b4196368e92567916f32", + "oid": 221328785323, + "crossed": true, + "fee": "0.2353", + "tid": 1085075271941048, + "cloid": "0x00000000000000000000000388000266", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "12.0", + "side": "B", + "time": 1762185694294, + "startPosition": "-228447.68", + "dir": "Close Short", + "closedPnl": "399.8676", + "hash": "0xbfa03dd2a89d9547c119042ec46864020f5500b84390b4196368e92567916f32", + "oid": 221328785323, + "crossed": true, + "fee": "0.419554", + "tid": 34207279790435, + "cloid": "0x00000000000000000000000388000266", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "29.28", + "side": "B", + "time": 1762185694294, + "startPosition": "-228435.68", + "dir": "Close Short", + "closedPnl": "975.676944", + "hash": "0xbfa03dd2a89d9547c119042ec46864020f5500b84390b4196368e92567916f32", + "oid": 221328785323, + "crossed": true, + "fee": "1.023713", + "tid": 719311090619564, + "cloid": "0x00000000000000000000000388000266", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "131264.0", + "side": "B", + "time": 1762185695129, + "startPosition": "-1183585663.0", + "dir": "Close Short", + "closedPnl": "228.793152", + "hash": "0x7a764204442ca0577bef042ec4686d02148900e9df2fbf291e3eed5703207a42", + "oid": 221328803537, + "crossed": true, + "fee": "0.104969", + "tid": 848985336275879, + "cloid": "0x00000000000000000000000385000233", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.0", + "sz": "2.7852", + "side": "B", + "time": 1762185695520, + "startPosition": "-1702.7501", + "dir": "Close Short", + "closedPnl": "1455.489816", + "hash": "0x4ad724e9a24e090c4c50042ec468710203a700cf3d4127deee9fd03c6141e2f6", + "oid": 221328806300, + "crossed": true, + "fee": "2.098592", + "tid": 733006764514741, + "cloid": "0x00000000000000000000000387000276", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "59.97", + "side": "B", + "time": 1762185696796, + "startPosition": "-228406.4", + "dir": "Close Short", + "closedPnl": "1989.942531", + "hash": "0xabb61aa297e044f7ad2f042ec46880020786008832e363c94f7ec5f556e41ee2", + "oid": 221328838461, + "crossed": true, + "fee": "2.098488", + "tid": 159114007721420, + "cloid": "0x00000000000000000000000388000267", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003814", + "sz": "130989.0", + "side": "B", + "time": 1762185697026, + "startPosition": "-1183454399.0", + "dir": "Close Short", + "closedPnl": "227.527893", + "hash": "0x5a6e071de579d2665be7042ec468840205b30003807cf138fe36b270a47dac50", + "oid": 221328849346, + "crossed": true, + "fee": "0.104914", + "tid": 138894833179246, + "cloid": "0x00000000000000000000000385000234", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.9", + "sz": "0.8824", + "side": "B", + "time": 1762185697306, + "startPosition": "-1699.9649", + "dir": "Close Short", + "closedPnl": "459.448032", + "hash": "0xb06a6fc5866a8d3fb1e4042ec4688801860087ab216dac1154331b18456e672a", + "oid": 221328856696, + "crossed": true, + "fee": "0.665222", + "tid": 673206051988291, + "cloid": "0x00000000000000000000000387000277", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3590.0", + "sz": "1.9012", + "side": "B", + "time": 1762185697306, + "startPosition": "-1699.0825", + "dir": "Close Short", + "closedPnl": "989.726696", + "hash": "0xb06a6fc5866a8d3fb1e4042ec4688801860087ab216dac1154331b18456e672a", + "oid": 221328856696, + "crossed": true, + "fee": "1.433314", + "tid": 942621105213437, + "cloid": "0x00000000000000000000000387000277", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "0.13", + "side": "B", + "time": 1762185699553, + "startPosition": "-228346.43", + "dir": "Close Short", + "closedPnl": "4.308499", + "hash": "0x4a67fe14b8e210a84be1042ec468a20217ec00fa53e52f7aee30a96777e5ea92", + "oid": 221328894277, + "crossed": true, + "fee": "0.00455", + "tid": 386574538131501, + "cloid": "0x00000000000000000000000388000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "0.31", + "side": "B", + "time": 1762185699553, + "startPosition": "-228346.3", + "dir": "Close Short", + "closedPnl": "10.274113", + "hash": "0x4a67fe14b8e210a84be1042ec468a20217ec00fa53e52f7aee30a96777e5ea92", + "oid": 221328894277, + "crossed": true, + "fee": "0.01085", + "tid": 708110853320432, + "cloid": "0x00000000000000000000000388000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "59.48", + "side": "B", + "time": 1762185699553, + "startPosition": "-228345.99", + "dir": "Close Short", + "closedPnl": "1971.304004", + "hash": "0x4a67fe14b8e210a84be1042ec468a20217ec00fa53e52f7aee30a96777e5ea92", + "oid": 221328894277, + "crossed": true, + "fee": "2.081841", + "tid": 702234760005651, + "cloid": "0x00000000000000000000000388000268", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003815", + "sz": "131061.0", + "side": "B", + "time": 1762185700251, + "startPosition": "-1183323410.0", + "dir": "Close Short", + "closedPnl": "227.521896", + "hash": "0x8891434a6d5f01c68a0a042ec468aa0209a30030085220982c59ee9d2c52dbb1", + "oid": 221328910671, + "crossed": true, + "fee": "0.104999", + "tid": 305209122719154, + "cloid": "0x00000000000000000000000385000235", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.2", + "sz": "1.2444", + "side": "B", + "time": 1762185700251, + "startPosition": "-1697.1813", + "dir": "Close Short", + "closedPnl": "648.805272", + "hash": "0x13f4de5038bee023156e042ec468aa0209c90035d3b1fef5b7bd89a2f7b2ba0d", + "oid": 221328910692, + "crossed": true, + "fee": "0.937944", + "tid": 454915609908972, + "cloid": "0x00000000000000000000000387000278", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.2", + "sz": "1.5393", + "side": "B", + "time": 1762185700251, + "startPosition": "-1695.9369", + "dir": "Close Short", + "closedPnl": "802.560234", + "hash": "0x13f4de5038bee023156e042ec468aa0209c90035d3b1fef5b7bd89a2f7b2ba0d", + "oid": 221328910692, + "crossed": true, + "fee": "1.160219", + "tid": 675023801362672, + "cloid": "0x00000000000000000000000387000278", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "59.97", + "side": "B", + "time": 1762185701649, + "startPosition": "-228286.51", + "dir": "Close Short", + "closedPnl": "1995.339831", + "hash": "0x04d24d3ff73f826a064c042ec468b70206f000259232a13ca89af892b6335c54", + "oid": 221328942823, + "crossed": true, + "fee": "2.097354", + "tid": 706658019402365, + "cloid": "0x00000000000000000000000388000269", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.3", + "sz": "1.6861", + "side": "B", + "time": 1762185702140, + "startPosition": "-1694.3976", + "dir": "Close Short", + "closedPnl": "880.616308", + "hash": "0xa25b165724b79955a3d4042ec468bd020cea003cbfbab8274623c1a9e3bb7340", + "oid": 221328957548, + "crossed": true, + "fee": "1.270548", + "tid": 274421355584246, + "cloid": "0x00000000000000000000000387000279", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.3", + "sz": "1.0994", + "side": "B", + "time": 1762185702140, + "startPosition": "-1692.7115", + "dir": "Close Short", + "closedPnl": "574.194632", + "hash": "0xa25b165724b79955a3d4042ec468bd020cea003cbfbab8274623c1a9e3bb7340", + "oid": 221328957548, + "crossed": true, + "fee": "0.828445", + "tid": 827332634480229, + "cloid": "0x00000000000000000000000387000279", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131227.0", + "side": "B", + "time": 1762185702414, + "startPosition": "-1183192349.0", + "dir": "Close Short", + "closedPnl": "228.466207", + "hash": "0x7c00d5e3c6f16ce37d7a042ec468c002095f00c961f48bb51fc9813685f546ce", + "oid": 221328962074, + "crossed": true, + "fee": "0.104994", + "tid": 717578799054400, + "cloid": "0x00000000000000000000000385000236", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "59.97", + "side": "B", + "time": 1762185704232, + "startPosition": "-228226.54", + "dir": "Close Short", + "closedPnl": "1995.339831", + "hash": "0x2bd95f16b84487cb2d53042ec468d90203ff00fc5347a69dcfa20a69774861b5", + "oid": 221328995726, + "crossed": true, + "fee": "2.097354", + "tid": 372969191911519, + "cloid": "0x00000000000000000000000388000270", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131280.0", + "side": "B", + "time": 1762185704703, + "startPosition": "-1183061122.0", + "dir": "Close Short", + "closedPnl": "228.55848", + "hash": "0x5795941abf39497e590f042ec468de020a6d00005a3c6850fb5e3f6d7e3d2368", + "oid": 221329007364, + "crossed": true, + "fee": "0.105037", + "tid": 812975151329432, + "cloid": "0x00000000000000000000000385000237", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.5", + "sz": "1.0137", + "side": "B", + "time": 1762185705187, + "startPosition": "-1691.6121", + "dir": "Close Short", + "closedPnl": "530.246196", + "hash": "0x40d7ea00f3b545494251042ec468e501920001e68eb8641be4a09553b2b91f33", + "oid": 221329010868, + "crossed": true, + "fee": "0.763696", + "tid": 125199235156120, + "cloid": "0x00000000000000000000000387000280", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.5", + "sz": "1.7716", + "side": "B", + "time": 1762185705187, + "startPosition": "-1690.5984", + "dir": "Close Short", + "closedPnl": "926.688528", + "hash": "0x40d7ea00f3b545494251042ec468e501920001e68eb8641be4a09553b2b91f33", + "oid": 221329010868, + "crossed": true, + "fee": "1.334679", + "tid": 443553730265230, + "cloid": "0x00000000000000000000000387000280", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "59.96", + "side": "B", + "time": 1762185706218, + "startPosition": "-228166.57", + "dir": "Close Short", + "closedPnl": "1994.407508", + "hash": "0x6c172d1c5d45f0636d90042ec468f30204cd0001f8490f350fdfd86f1c49ca4e", + "oid": 221329029755, + "crossed": true, + "fee": "2.09713", + "tid": 454911221034192, + "cloid": "0x00000000000000000000000388000271", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "13120.0", + "side": "B", + "time": 1762185706468, + "startPosition": "-1182929842.0", + "dir": "Close Short", + "closedPnl": "22.84192", + "hash": "0xaaf4b461c5c26209ac6e042ec468f7020d81004760c580db4ebd5fb484c63bf4", + "oid": 221329035253, + "crossed": true, + "fee": "0.010497", + "tid": 301400262167380, + "cloid": "0x00000000000000000000000385000238", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "118075.0", + "side": "B", + "time": 1762185706468, + "startPosition": "-1182916722.0", + "dir": "Close Short", + "closedPnl": "205.568575", + "hash": "0xaaf4b461c5c26209ac6e042ec468f7020d81004760c580db4ebd5fb484c63bf4", + "oid": 221329035253, + "crossed": true, + "fee": "0.094471", + "tid": 860866724577239, + "cloid": "0x00000000000000000000000385000238", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.5", + "sz": "2.7853", + "side": "B", + "time": 1762185707362, + "startPosition": "-1688.8268", + "dir": "Close Short", + "closedPnl": "1456.934724", + "hash": "0x7dd6e36bed356cbe7f50042ec46901020a5e005188388b90219f8ebeac3946a9", + "oid": 221329051611, + "crossed": true, + "fee": "2.098375", + "tid": 579726559114236, + "cloid": "0x00000000000000000000000387000281", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "59.98", + "side": "B", + "time": 1762185708040, + "startPosition": "-228106.61", + "dir": "Close Short", + "closedPnl": "1995.672554", + "hash": "0xf8441ee0990d2633f9bd042ec469080206c000c6340045069c0cca335801001e", + "oid": 221329061028, + "crossed": true, + "fee": "2.097704", + "tid": 968168028687544, + "cloid": "0x00000000000000000000000388000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131303.0", + "side": "B", + "time": 1762185708159, + "startPosition": "-1182798647.0", + "dir": "Close Short", + "closedPnl": "228.729826", + "hash": "0xe1656eae37120f15e2df042ec469090204840093d2152de7852e1a00f615e900", + "oid": 221329063010, + "crossed": true, + "fee": "0.105027", + "tid": 569413456869767, + "cloid": "0x00000000000000000000000385000239", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "0.1", + "side": "B", + "time": 1762185710002, + "startPosition": "-228046.63", + "dir": "Close Short", + "closedPnl": "3.32523", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.003497", + "tid": 1100252148717127, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "0.1", + "side": "B", + "time": 1762185710002, + "startPosition": "-228046.53", + "dir": "Close Short", + "closedPnl": "3.32523", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.003497", + "tid": 604082521154207, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "0.1", + "side": "B", + "time": 1762185710002, + "startPosition": "-228046.43", + "dir": "Close Short", + "closedPnl": "3.32523", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.003497", + "tid": 745001339506517, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "7.3", + "side": "B", + "time": 1762185710002, + "startPosition": "-228046.33", + "dir": "Close Short", + "closedPnl": "242.59579", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.255367", + "tid": 598453925719824, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "0.18", + "side": "B", + "time": 1762185710002, + "startPosition": "-228039.03", + "dir": "Close Short", + "closedPnl": "5.980014", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.006297", + "tid": 392023312697156, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "6.52", + "side": "B", + "time": 1762185710002, + "startPosition": "-228038.85", + "dir": "Close Short", + "closedPnl": "216.609396", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.228095", + "tid": 458828132508130, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "6.0", + "side": "B", + "time": 1762185710002, + "startPosition": "-228032.33", + "dir": "Close Short", + "closedPnl": "199.1538", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.209941", + "tid": 239639194248002, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "6.0", + "side": "B", + "time": 1762185710002, + "startPosition": "-228026.33", + "dir": "Close Short", + "closedPnl": "199.0938", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.209953", + "tid": 608874788868894, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "18.0", + "side": "B", + "time": 1762185710002, + "startPosition": "-228020.33", + "dir": "Close Short", + "closedPnl": "597.2814", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.629861", + "tid": 414560337620529, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "15.68", + "side": "B", + "time": 1762185710002, + "startPosition": "-228002.33", + "dir": "Close Short", + "closedPnl": "520.298464", + "hash": "0x1f71203a62faf07720ea042ec4692102057a001ffdfe0f49c339cb8d21feca61", + "oid": 221329098853, + "crossed": true, + "fee": "0.548679", + "tid": 904234298388323, + "cloid": "0x00000000000000000000000388000273", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.9", + "sz": "2.7845", + "side": "B", + "time": 1762185710002, + "startPosition": "-1686.0415", + "dir": "Close Short", + "closedPnl": "1452.61796", + "hash": "0x03395e7815e3c1d904b3042ec46921020581005db0e6e0aba70209cad4e79bc3", + "oid": 221329098857, + "crossed": true, + "fee": "2.098591", + "tid": 808841802433944, + "cloid": "0x00000000000000000000000387000282", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "0.1", + "side": "B", + "time": 1762185711803, + "startPosition": "-227986.65", + "dir": "Close Short", + "closedPnl": "3.32023", + "hash": "0xfe91c42261a150f2000b042ec469360210740007fca46fc5a25a6f7520a52add", + "oid": 221329138507, + "crossed": true, + "fee": "0.003498", + "tid": 930177219894982, + "cloid": "0x00000000000000000000000388000274", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "3.0", + "side": "B", + "time": 1762185711803, + "startPosition": "-227986.55", + "dir": "Close Short", + "closedPnl": "99.6069", + "hash": "0xfe91c42261a150f2000b042ec469360210740007fca46fc5a25a6f7520a52add", + "oid": 221329138507, + "crossed": true, + "fee": "0.104964", + "tid": 816952460011297, + "cloid": "0x00000000000000000000000388000274", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "12.0", + "side": "B", + "time": 1762185711803, + "startPosition": "-227983.55", + "dir": "Close Short", + "closedPnl": "398.4276", + "hash": "0xfe91c42261a150f2000b042ec469360210740007fca46fc5a25a6f7520a52add", + "oid": 221329138507, + "crossed": true, + "fee": "0.419857", + "tid": 568649323703581, + "cloid": "0x00000000000000000000000388000274", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "44.85", + "side": "B", + "time": 1762185711803, + "startPosition": "-227971.55", + "dir": "Close Short", + "closedPnl": "1489.123155", + "hash": "0xfe91c42261a150f2000b042ec469360210740007fca46fc5a25a6f7520a52add", + "oid": 221329138507, + "crossed": true, + "fee": "1.569216", + "tid": 620949995875084, + "cloid": "0x00000000000000000000000388000274", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003816", + "sz": "131199.0", + "side": "B", + "time": 1762185712187, + "startPosition": "-1182667344.0", + "dir": "Close Short", + "closedPnl": "227.630265", + "hash": "0x438e1f7d4852bc3a4507042ec4693a0214030062e355db0ce756cad007569624", + "oid": 221329147944, + "crossed": true, + "fee": "0.105137", + "tid": 540055770924719, + "cloid": "0x00000000000000000000000385000241", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.3", + "sz": "2.784", + "side": "B", + "time": 1762185713019, + "startPosition": "-1683.257", + "dir": "Close Short", + "closedPnl": "1454.02752", + "hash": "0x600f1739f9610cd56188042ec46942020614001f94642ba703d7c28cb864e6c0", + "oid": 221329163210, + "crossed": true, + "fee": "2.097863", + "tid": 496942608544337, + "cloid": "0x00000000000000000000000387000283", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "59.98", + "side": "B", + "time": 1762185713582, + "startPosition": "-227926.7", + "dir": "Close Short", + "closedPnl": "1998.071754", + "hash": "0xdf5653c0fdb4ef26e0d0042ec4694802030300a698b80df8831eff13bcb8c911", + "oid": 221329178261, + "crossed": true, + "fee": "2.0972", + "tid": 818590578217062, + "cloid": "0x00000000000000000000000388000275", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.3", + "sz": "1.25", + "side": "B", + "time": 1762185715237, + "startPosition": "-1680.473", + "dir": "Close Short", + "closedPnl": "654.1", + "hash": "0x99804ff2961dbcac9afa042ec4695c02051500d83110db7e3d48fb4555119697", + "oid": 221329207042, + "crossed": true, + "fee": "0.941666", + "tid": 958754302948479, + "cloid": "0x00000000000000000000000387000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.3", + "sz": "0.8059", + "side": "B", + "time": 1762185715237, + "startPosition": "-1679.223", + "dir": "Close Short", + "closedPnl": "421.711352", + "hash": "0x99804ff2961dbcac9afa042ec4695c02051500d83110db7e3d48fb4555119697", + "oid": 221329207042, + "crossed": true, + "fee": "0.607111", + "tid": 395571807197593, + "cloid": "0x00000000000000000000000387000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.3", + "sz": "0.6359", + "side": "B", + "time": 1762185715237, + "startPosition": "-1678.4171", + "dir": "Close Short", + "closedPnl": "332.753752", + "hash": "0x99804ff2961dbcac9afa042ec4695c02051500d83110db7e3d48fb4555119697", + "oid": 221329207042, + "crossed": true, + "fee": "0.479044", + "tid": 466850485884200, + "cloid": "0x00000000000000000000000387000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.3", + "sz": "0.0935", + "side": "B", + "time": 1762185715237, + "startPosition": "-1677.7812", + "dir": "Close Short", + "closedPnl": "48.92668", + "hash": "0x99804ff2961dbcac9afa042ec4695c02051500d83110db7e3d48fb4555119697", + "oid": 221329207042, + "crossed": true, + "fee": "0.070436", + "tid": 994239304960857, + "cloid": "0x00000000000000000000000387000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "59.99", + "side": "B", + "time": 1762185715762, + "startPosition": "-227866.72", + "dir": "Close Short", + "closedPnl": "1997.804977", + "hash": "0x42ef15de1e4b3a604468042ec46962020ef200c3b94e5932e6b7c130dd4f144a", + "oid": 221329216561, + "crossed": true, + "fee": "2.097676", + "tid": 385529314151398, + "cloid": "0x00000000000000000000000388000276", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.5", + "sz": "2.7849", + "side": "B", + "time": 1762185716981, + "startPosition": "-1677.6877", + "dir": "Close Short", + "closedPnl": "1453.940592", + "hash": "0xf4906bfc3a58c6a9f60a042ec4696f020a5a00e1d55be57c9859174ef95ca094", + "oid": 221329242638, + "crossed": true, + "fee": "2.098658", + "tid": 720400909313037, + "cloid": "0x00000000000000000000000387000285", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "59.96", + "side": "B", + "time": 1762185717659, + "startPosition": "-227806.73", + "dir": "Close Short", + "closedPnl": "1990.809908", + "hash": "0xb5b4bfb8283148c0b72e042ec46976020285009dc3346792597d6b0ae73522ab", + "oid": 221329251666, + "crossed": true, + "fee": "2.097886", + "tid": 1028963657407104, + "cloid": "0x00000000000000000000000388000277", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "2.7849", + "side": "B", + "time": 1762185718524, + "startPosition": "-1674.9028", + "dir": "Close Short", + "closedPnl": "1453.383612", + "hash": "0xf23a7e94ad93529bf3b4042ec469810203d4007a4896716e960329e76c972c86", + "oid": 221329266744, + "crossed": true, + "fee": "2.098775", + "tid": 77399623709038, + "cloid": "0x00000000000000000000000387000286", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003815", + "sz": "131117.0", + "side": "B", + "time": 1762185718671, + "startPosition": "-1182536145.0", + "dir": "Close Short", + "closedPnl": "227.619112", + "hash": "0x6486015b975b245165ff042ec469840203810041325e4323084eacae565efe3c", + "oid": 221329269470, + "crossed": true, + "fee": "0.105044", + "tid": 607331959040673, + "cloid": "0x00000000000000000000000385000243", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "10.01", + "side": "B", + "time": 1762185719734, + "startPosition": "-227746.77", + "dir": "Close Short", + "closedPnl": "332.254923", + "hash": "0x7f5c0562435ead3080d5042ec469930209b60047de51cc022324b0b50252871b", + "oid": 221329290927, + "crossed": true, + "fee": "0.350251", + "tid": 392087721860221, + "cloid": "0x00000000000000000000000388000278", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "49.93", + "side": "B", + "time": 1762185719734, + "startPosition": "-227736.76", + "dir": "Close Short", + "closedPnl": "1657.291539", + "hash": "0x7f5c0562435ead3080d5042ec469930209b60047de51cc022324b0b50252871b", + "oid": 221329290927, + "crossed": true, + "fee": "1.74706", + "tid": 968983614390628, + "cloid": "0x00000000000000000000000388000278", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003813", + "sz": "131023.0", + "side": "B", + "time": 1762185720325, + "startPosition": "-1182405028.0", + "dir": "Close Short", + "closedPnl": "227.717974", + "hash": "0xcfa15214fcfa74ced11b042ec4699a0201fd00fa97fd93a07369fd67bbfe4eb9", + "oid": 221329299586, + "crossed": true, + "fee": "0.104914", + "tid": 1035571703800322, + "cloid": "0x00000000000000000000000385000244", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3588.7", + "sz": "2.7843", + "side": "B", + "time": 1762185720541, + "startPosition": "-1672.1179", + "dir": "Close Short", + "closedPnl": "1453.070484", + "hash": "0xd888462114557613da02042ec4699d0207940006af5894e57c50f173d3594ffe", + "oid": 221329303178, + "crossed": true, + "fee": "2.098323", + "tid": 294498226659765, + "cloid": "0x00000000000000000000000387000287", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "29.63", + "side": "B", + "time": 1762185721209, + "startPosition": "-227686.83", + "dir": "Close Short", + "closedPnl": "983.191549", + "hash": "0xa406efdc67562889a580042ec469a6020c5700c20259475b47cf9b2f265a0274", + "oid": 221329316377, + "crossed": true, + "fee": "1.036821", + "tid": 202502238167533, + "cloid": "0x00000000000000000000000388000279", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "30.31", + "side": "B", + "time": 1762185721209, + "startPosition": "-227657.2", + "dir": "Close Short", + "closedPnl": "1005.755513", + "hash": "0xa406efdc67562889a580042ec469a6020c5700c20259475b47cf9b2f265a0274", + "oid": 221329316377, + "crossed": true, + "fee": "1.060616", + "tid": 769332340703439, + "cloid": "0x00000000000000000000000388000279", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "130954.0", + "side": "B", + "time": 1762185721966, + "startPosition": "-1182274005.0", + "dir": "Close Short", + "closedPnl": "226.943282", + "hash": "0x5f5c481f346c068b60d6042ec469b10208d90004cf6f255d0324f371f36fe076", + "oid": 221329333438, + "crossed": true, + "fee": "0.104996", + "tid": 1020441197798813, + "cloid": "0x00000000000000000000000385000245", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.0", + "sz": "0.0042", + "side": "B", + "time": 1762185722101, + "startPosition": "-1669.3336", + "dir": "Close Short", + "closedPnl": "2.190636", + "hash": "0xcdaae4b6547079c3cf24042ec469b30209f8009bef73989571739009137453ae", + "oid": 221329337492, + "crossed": true, + "fee": "0.003165", + "tid": 723065316743479, + "cloid": "0x00000000000000000000000387000288", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3589.1", + "sz": "2.7794", + "side": "B", + "time": 1762185722101, + "startPosition": "-1669.3294", + "dir": "Close Short", + "closedPnl": "1449.401512", + "hash": "0xcdaae4b6547079c3cf24042ec469b30209f8009bef73989571739009137453ae", + "oid": 221329337492, + "crossed": true, + "fee": "2.094864", + "tid": 76628496388447, + "cloid": "0x00000000000000000000000387000288", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.65", + "sz": "1.76", + "side": "B", + "time": 1762185723463, + "startPosition": "-227626.89", + "dir": "Close Short", + "closedPnl": "58.365648", + "hash": "0x032cc016b917168a04a6042ec469c4021ebd00fc541a355ca6f56b69781af074", + "oid": 221329358778, + "crossed": true, + "fee": "0.061593", + "tid": 764811053152473, + "cloid": "0x00000000000000000000000388000280", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.65", + "sz": "53.74", + "side": "B", + "time": 1762185723463, + "startPosition": "-227625.13", + "dir": "Close Short", + "closedPnl": "1782.142002", + "hash": "0x032cc016b917168a04a6042ec469c4021ebd00fc541a355ca6f56b69781af074", + "oid": 221329358778, + "crossed": true, + "fee": "1.880711", + "tid": 558710839293881, + "cloid": "0x00000000000000000000000388000280", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.65", + "sz": "4.41", + "side": "B", + "time": 1762185723463, + "startPosition": "-227571.39", + "dir": "Close Short", + "closedPnl": "146.245743", + "hash": "0x032cc016b917168a04a6042ec469c4021ebd00fc541a355ca6f56b69781af074", + "oid": 221329358778, + "crossed": true, + "fee": "0.154334", + "tid": 952657176260053, + "cloid": "0x00000000000000000000000388000280", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "131023.0", + "side": "B", + "time": 1762185723928, + "startPosition": "-1182143051.0", + "dir": "Close Short", + "closedPnl": "227.193882", + "hash": "0x096d4335daec5dd70ae6042ec469ca020344001b75ef7ca9ad35ee8899e037c1", + "oid": 221329370339, + "crossed": true, + "fee": "0.105024", + "tid": 17476017889392, + "cloid": "0x00000000000000000000000385000246", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.2", + "sz": "2.1482", + "side": "B", + "time": 1762185725467, + "startPosition": "-1666.55", + "dir": "Close Short", + "closedPnl": "1126.473116", + "hash": "0xd58430cd12a1daebd6fd042ec469df020af700b2ada4f9bd794cdc1fd1a5b4d6", + "oid": 221329411213, + "crossed": true, + "fee": "1.617813", + "tid": 233531345535128, + "cloid": "0x00000000000000000000000387000289", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.2", + "sz": "0.6361", + "side": "B", + "time": 1762185725467, + "startPosition": "-1664.4018", + "dir": "Close Short", + "closedPnl": "333.558118", + "hash": "0xd58430cd12a1daebd6fd042ec469df020af700b2ada4f9bd794cdc1fd1a5b4d6", + "oid": 221329411213, + "crossed": true, + "fee": "0.479048", + "tid": 702690594829799, + "cloid": "0x00000000000000000000000387000289", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "60.01", + "side": "B", + "time": 1762185725935, + "startPosition": "-227566.98", + "dir": "Close Short", + "closedPnl": "1999.671223", + "hash": "0x893e0aa8e760bbfc8ab7042ec469e402094a008e8263dace2d06b5fba66495e7", + "oid": 221329421496, + "crossed": true, + "fee": "2.098123", + "tid": 31912896882730, + "cloid": "0x00000000000000000000000388000281", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.2", + "sz": "0.2787", + "side": "B", + "time": 1762185728089, + "startPosition": "-1663.7657", + "dir": "Close Short", + "closedPnl": "145.866006", + "hash": "0x331fcdde58a37a303499042ec469ff0205b700c3f3a69902d6e8793117a7541a", + "oid": 221329462608, + "crossed": true, + "fee": "0.209948", + "tid": 225999206569520, + "cloid": "0x00000000000000000000000387000290", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.2", + "sz": "2.5067", + "side": "B", + "time": 1762185728089, + "startPosition": "-1663.487", + "dir": "Close Short", + "closedPnl": "1311.956646", + "hash": "0x331fcdde58a37a303499042ec469ff0205b700c3f3a69902d6e8793117a7541a", + "oid": 221329462608, + "crossed": true, + "fee": "1.888327", + "tid": 66573626292027, + "cloid": "0x00000000000000000000000387000290", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.44", + "sz": "59.97", + "side": "B", + "time": 1762185728359, + "startPosition": "-227506.97", + "dir": "Close Short", + "closedPnl": "2001.336831", + "hash": "0xd455c652c1e80c33d5cf042ec46a0202081c00385ceb2b05781e71a580ebe61e", + "oid": 221329466837, + "crossed": true, + "fee": "2.096095", + "tid": 445891494831694, + "cloid": "0x00000000000000000000000388000282", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.8", + "sz": "2.7858", + "side": "B", + "time": 1762185731262, + "startPosition": "-1660.9803", + "dir": "Close Short", + "closedPnl": "1459.146324", + "hash": "0x9abe592c00ffa1a79c38042ec46a2102155a00119bf2c0793e87047ebff37b92", + "oid": 221329525753, + "crossed": true, + "fee": "2.098342", + "tid": 101743967061866, + "cloid": "0x00000000000000000000000387000291", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.46", + "sz": "59.98", + "side": "B", + "time": 1762185731568, + "startPosition": "-227447.0", + "dir": "Close Short", + "closedPnl": "2000.470954", + "hash": "0x6fa218f453a66f5a711b042ec46a2402076e00d9eea98e2c136ac44712aa4945", + "oid": 221329530948, + "crossed": true, + "fee": "2.096696", + "tid": 1056568240647813, + "cloid": "0x00000000000000000000000388000283", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131130.0", + "side": "B", + "time": 1762185731695, + "startPosition": "-1182012028.0", + "dir": "Close Short", + "closedPnl": "228.29733", + "hash": "0xa4eaa7627bc13c4da664042ec46a2502097b004816c45b1f48b352b53ac51638", + "oid": 221329525735, + "crossed": false, + "fee": "0.013988", + "tid": 179910005358931, + "cloid": "0x00000000000000000000000385000248", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.8", + "sz": "2.7773", + "side": "B", + "time": 1762185733189, + "startPosition": "-1658.1945", + "dir": "Close Short", + "closedPnl": "1454.694194", + "hash": "0x8e06430acacfc64c8f7f042ec46a35020f9b00f065c2e51e31ceee5d89c3a037", + "oid": 221329558169, + "crossed": true, + "fee": "2.09194", + "tid": 844051104539547, + "cloid": "0x00000000000000000000000387000292", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.8", + "sz": "0.0078", + "side": "B", + "time": 1762185733189, + "startPosition": "-1655.4172", + "dir": "Close Short", + "closedPnl": "4.085484", + "hash": "0x8e06430acacfc64c8f7f042ec46a35020f9b00f065c2e51e31ceee5d89c3a037", + "oid": 221329558169, + "crossed": true, + "fee": "0.005875", + "tid": 853014992065253, + "cloid": "0x00000000000000000000000387000292", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003814", + "sz": "131057.0", + "side": "B", + "time": 1762185733720, + "startPosition": "-1181880898.0", + "dir": "Close Short", + "closedPnl": "227.646009", + "hash": "0x0da5091ea15cc2f10f1e042ec46a3b02014e00043c5fe1c3b16db47160509cdb", + "oid": 221329564169, + "crossed": true, + "fee": "0.104968", + "tid": 1043481177537929, + "cloid": "0x00000000000000000000000385000249", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "59.96", + "side": "B", + "time": 1762185734110, + "startPosition": "-227387.02", + "dir": "Close Short", + "closedPnl": "1994.407508", + "hash": "0x86a541ae59eb9c8d881e042ec46a3f0209ab0093f4eebb5f2a6ded0118ef7678", + "oid": 221329570500, + "crossed": true, + "fee": "2.09713", + "tid": 997748553932026, + "cloid": "0x00000000000000000000000388000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.9", + "sz": "2.2041", + "side": "B", + "time": 1762185735207, + "startPosition": "-1655.4094", + "dir": "Close Short", + "closedPnl": "1154.243088", + "hash": "0x0a387246a8a085fe0bb2042ec46a4a021600002c43a3a4d0ae011d9967a45fe8", + "oid": 221329589804, + "crossed": true, + "fee": "1.660236", + "tid": 784931326480106, + "cloid": "0x00000000000000000000000387000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.6", + "sz": "0.128", + "side": "B", + "time": 1762185735207, + "startPosition": "-1653.2053", + "dir": "Close Short", + "closedPnl": "66.94144", + "hash": "0x0a387246a8a085fe0bb2042ec46a4a021600002c43a3a4d0ae011d9967a45fe8", + "oid": 221329589804, + "crossed": true, + "fee": "0.096434", + "tid": 37451309720912, + "cloid": "0x00000000000000000000000387000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.6", + "sz": "0.128", + "side": "B", + "time": 1762185735207, + "startPosition": "-1653.0773", + "dir": "Close Short", + "closedPnl": "66.94144", + "hash": "0x0a387246a8a085fe0bb2042ec46a4a021600002c43a3a4d0ae011d9967a45fe8", + "oid": 221329589804, + "crossed": true, + "fee": "0.096434", + "tid": 940831872153394, + "cloid": "0x00000000000000000000000387000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.6", + "sz": "0.128", + "side": "B", + "time": 1762185735207, + "startPosition": "-1652.9493", + "dir": "Close Short", + "closedPnl": "66.94144", + "hash": "0x0a387246a8a085fe0bb2042ec46a4a021600002c43a3a4d0ae011d9967a45fe8", + "oid": 221329589804, + "crossed": true, + "fee": "0.096434", + "tid": 556910561574181, + "cloid": "0x00000000000000000000000387000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.6", + "sz": "0.128", + "side": "B", + "time": 1762185735207, + "startPosition": "-1652.8213", + "dir": "Close Short", + "closedPnl": "66.94144", + "hash": "0x0a387246a8a085fe0bb2042ec46a4a021600002c43a3a4d0ae011d9967a45fe8", + "oid": 221329589804, + "crossed": true, + "fee": "0.096434", + "tid": 300600460249546, + "cloid": "0x00000000000000000000000387000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.6", + "sz": "0.0693", + "side": "B", + "time": 1762185735207, + "startPosition": "-1652.6933", + "dir": "Close Short", + "closedPnl": "36.242514", + "hash": "0x0a387246a8a085fe0bb2042ec46a4a021600002c43a3a4d0ae011d9967a45fe8", + "oid": 221329589804, + "crossed": true, + "fee": "0.05221", + "tid": 357574809041254, + "cloid": "0x00000000000000000000000387000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003813", + "sz": "82011.0", + "side": "B", + "time": 1762185735335, + "startPosition": "-1181749841.0", + "dir": "Close Short", + "closedPnl": "142.535118", + "hash": "0xdbcd943df9817cefdd47042ec46a4c0204b4002394849bc17f963f90b88556da", + "oid": 221329593450, + "crossed": true, + "fee": "0.065668", + "tid": 164589140504969, + "cloid": "0x00000000000000000000000385000250", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003813", + "sz": "49038.0", + "side": "B", + "time": 1762185735335, + "startPosition": "-1181667830.0", + "dir": "Close Short", + "closedPnl": "85.228044", + "hash": "0xdbcd943df9817cefdd47042ec46a4c0204b4002394849bc17f963f90b88556da", + "oid": 221329593450, + "crossed": true, + "fee": "0.039266", + "tid": 733751265438405, + "cloid": "0x00000000000000000000000385000250", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "59.97", + "side": "B", + "time": 1762185735715, + "startPosition": "-227327.06", + "dir": "Close Short", + "closedPnl": "1994.740131", + "hash": "0x66d2e14b29d19b43684c042ec46a500205ed0030c4d4ba150a9b8c9de8d5752e", + "oid": 221329597180, + "crossed": true, + "fee": "2.09748", + "tid": 306097376552493, + "cloid": "0x00000000000000000000000388000285", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.6", + "sz": "0.2494", + "side": "B", + "time": 1762185737259, + "startPosition": "-1652.624", + "dir": "Close Short", + "closedPnl": "130.431212", + "hash": "0x24c0ffd98b6475aa263a042ec46a6002121e00bf2667947cc889ab2c4a684f94", + "oid": 221329628270, + "crossed": true, + "fee": "0.187896", + "tid": 807049969602029, + "cloid": "0x00000000000000000000000387000294", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.6", + "sz": "2.5357", + "side": "B", + "time": 1762185737259, + "startPosition": "-1652.3746", + "dir": "Close Short", + "closedPnl": "1326.120386", + "hash": "0x24c0ffd98b6475aa263a042ec46a6002121e00bf2667947cc889ab2c4a684f94", + "oid": 221329628270, + "crossed": true, + "fee": "1.910386", + "tid": 141482630349292, + "cloid": "0x00000000000000000000000387000294", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003816", + "sz": "130915.0", + "side": "B", + "time": 1762185737259, + "startPosition": "-1181618792.0", + "dir": "Close Short", + "closedPnl": "227.137525", + "hash": "0x55b5c77c24cc0490572f042ec46a600212240061bfcf2362f97e72cee3cfde7a", + "oid": 221329628276, + "crossed": true, + "fee": "0.10491", + "tid": 386994064341601, + "cloid": "0x00000000000000000000000385000251", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "38.23", + "side": "B", + "time": 1762185737331, + "startPosition": "-227267.09", + "dir": "Close Short", + "closedPnl": "1270.088529", + "hash": "0xaeb17c7fa7ee093ab02b042ec46a61020561006542e1280c527a27d266e1e325", + "oid": 221329630586, + "crossed": true, + "fee": "1.337434", + "tid": 831695230551040, + "cloid": "0x00000000000000000000000388000286", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "21.74", + "side": "B", + "time": 1762185737331, + "startPosition": "-227228.86", + "dir": "Close Short", + "closedPnl": "722.252802", + "hash": "0xaeb17c7fa7ee093ab02b042ec46a61020561006542e1280c527a27d266e1e325", + "oid": 221329630586, + "crossed": true, + "fee": "0.760549", + "tid": 480768180265618, + "cloid": "0x00000000000000000000000388000286", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.0", + "sz": "2.3059", + "side": "B", + "time": 1762185738797, + "startPosition": "-1649.8389", + "dir": "Close Short", + "closedPnl": "1207.323122", + "hash": "0x6e7a2dfab05050856ff3042ec46a73021ca600e04b536f571242d94d6f542a70", + "oid": 221329666983, + "crossed": true, + "fee": "1.736965", + "tid": 295313351372411, + "cloid": "0x00000000000000000000000387000295", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.0", + "sz": "0.4796", + "side": "B", + "time": 1762185738797, + "startPosition": "-1647.533", + "dir": "Close Short", + "closedPnl": "251.108968", + "hash": "0x6e7a2dfab05050856ff3042ec46a73021ca600e04b536f571242d94d6f542a70", + "oid": 221329666983, + "crossed": true, + "fee": "0.361268", + "tid": 970866595091360, + "cloid": "0x00000000000000000000000387000295", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "59.98", + "side": "B", + "time": 1762185739137, + "startPosition": "-227207.12", + "dir": "Close Short", + "closedPnl": "1998.671554", + "hash": "0x0ff0dec62ddbdd3a116a042ec46a7702032a00abc8defc0cb3b98a18ecdfb724", + "oid": 221329672567, + "crossed": true, + "fee": "2.097074", + "tid": 167022404725298, + "cloid": "0x00000000000000000000000388000287", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003813", + "sz": "130959.0", + "side": "B", + "time": 1762185739760, + "startPosition": "-1181487877.0", + "dir": "Close Short", + "closedPnl": "227.606742", + "hash": "0x3459ded8f460a4e835d3042ec46a7e02121800be8f63c3bad8228a2bb3647ed2", + "oid": 221329685818, + "crossed": true, + "fee": "0.104862", + "tid": 980561992992318, + "cloid": "0x00000000000000000000000385000252", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.0", + "sz": "0.7039", + "side": "B", + "time": 1762185741260, + "startPosition": "-1647.0534", + "dir": "Close Short", + "closedPnl": "369.955762", + "hash": "0x6599b777482449886713042ec46a91020515005ce327685a096262ca07282373", + "oid": 221329723984, + "crossed": true, + "fee": "0.529931", + "tid": 866354239275644, + "cloid": "0x00000000000000000000000387000296", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.0", + "sz": "1.4063", + "side": "B", + "time": 1762185741260, + "startPosition": "-1646.3495", + "dir": "Close Short", + "closedPnl": "739.123154", + "hash": "0x6599b777482449886713042ec46a91020515005ce327685a096262ca07282373", + "oid": 221329723984, + "crossed": true, + "fee": "1.058732", + "tid": 374719272613175, + "cloid": "0x00000000000000000000000387000296", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.0", + "sz": "0.6772", + "side": "B", + "time": 1762185741260, + "startPosition": "-1644.9432", + "dir": "Close Short", + "closedPnl": "355.922776", + "hash": "0x6599b777482449886713042ec46a91020515005ce327685a096262ca07282373", + "oid": 221329723984, + "crossed": true, + "fee": "0.50983", + "tid": 846276803751417, + "cloid": "0x00000000000000000000000387000296", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "60.04", + "side": "B", + "time": 1762185741323, + "startPosition": "-227147.14", + "dir": "Close Short", + "closedPnl": "2006.074492", + "hash": "0xdf8eea6dc9099e5de108042ec46a9202088e0053640cbd2f835795c0880d7848", + "oid": 221329727549, + "crossed": true, + "fee": "2.098037", + "tid": 122808806970271, + "cloid": "0x00000000000000000000000388000288", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131264.0", + "side": "B", + "time": 1762185741323, + "startPosition": "-1181356918.0", + "dir": "Close Short", + "closedPnl": "228.530624", + "hash": "0xf08e925d14f6977af208042ec46a920208a50042aff9b64d94573dafd3fa7165", + "oid": 221329727560, + "crossed": false, + "fee": "0.014003", + "tid": 455335823165947, + "cloid": "0x00000000000000000000000385000253", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "131406.0", + "side": "B", + "time": 1762185743438, + "startPosition": "-1181225654.0", + "dir": "Close Short", + "closedPnl": "229.172064", + "hash": "0xdc4cc3d66294bab0ddc6042ec46aae020f0300bbfd97d98280156f292198949b", + "oid": 221329769675, + "crossed": true, + "fee": "0.105055", + "tid": 917680882290371, + "cloid": "0x00000000000000000000000385000254", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.3", + "sz": "12.02", + "side": "B", + "time": 1762185743438, + "startPosition": "-227087.1", + "dir": "Close Short", + "closedPnl": "402.817846", + "hash": "0x78b006cb79e1922a7a29042ec46aae020f4000b114e4b0fc1c78b21e38e56c15", + "oid": 221329769705, + "crossed": true, + "fee": "0.419774", + "tid": 389659414004915, + "cloid": "0x00000000000000000000000388000289", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.3", + "sz": "48.03", + "side": "B", + "time": 1762185743438, + "startPosition": "-227075.08", + "dir": "Close Short", + "closedPnl": "1609.595769", + "hash": "0x78b006cb79e1922a7a29042ec46aae020f4000b114e4b0fc1c78b21e38e56c15", + "oid": 221329769705, + "crossed": true, + "fee": "1.677351", + "tid": 372128250579256, + "cloid": "0x00000000000000000000000388000289", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.9", + "sz": "2.7878", + "side": "B", + "time": 1762185744011, + "startPosition": "-1644.266", + "dir": "Close Short", + "closedPnl": "1468.278504", + "hash": "0xbeda20602962ca46c053042ec46ab402025a0045c465e91862a2cbb2e866a431", + "oid": 221329779034, + "crossed": true, + "fee": "2.098151", + "tid": 174969508219517, + "cloid": "0x00000000000000000000000387000297", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.29", + "sz": "60.06", + "side": "B", + "time": 1762185745389, + "startPosition": "-227027.05", + "dir": "Close Short", + "closedPnl": "2013.349338", + "hash": "0xbb9640913c046503bd0f042ec46ac50204ff0076d70783d55f5eebe3fb083eee", + "oid": 221329813351, + "crossed": true, + "fee": "2.097349", + "tid": 759248694574634, + "cloid": "0x00000000000000000000000388000290", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26769", + "sz": "3757.1", + "side": "B", + "time": 1762185746752, + "startPosition": "-3993039.0", + "dir": "Close Short", + "closedPnl": "2004.713418", + "hash": "0x65b58f3a50c6b4a5672f042ec46ad6020216001febc9d377097e3a8d0fca8e90", + "oid": 221329293195, + "crossed": false, + "fee": "0.02816", + "tid": 163278608804733, + "cloid": "0x00000000000000000000000384000138", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.2", + "sz": "1.1266", + "side": "B", + "time": 1762185746820, + "startPosition": "-1641.4782", + "dir": "Close Short", + "closedPnl": "595.272908", + "hash": "0xc88c2462381ea495ca05042ec46ad7020d8e0047d311c3676c54cfb4f7127e80", + "oid": 221329852093, + "crossed": true, + "fee": "0.847498", + "tid": 77152871292271, + "cloid": "0x00000000000000000000000387000298", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.2", + "sz": "1.6616", + "side": "B", + "time": 1762185746820, + "startPosition": "-1640.3516", + "dir": "Close Short", + "closedPnl": "877.956208", + "hash": "0xc88c2462381ea495ca05042ec46ad7020d8e0047d311c3676c54cfb4f7127e80", + "oid": 221329852093, + "crossed": true, + "fee": "1.249958", + "tid": 1108013177951847, + "cloid": "0x00000000000000000000000387000298", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.17", + "sz": "46.92", + "side": "B", + "time": 1762185747431, + "startPosition": "-226966.99", + "dir": "Close Short", + "closedPnl": "1578.496716", + "hash": "0x31e21bf6fd529862335b042ec46adf020ada00dc9855b734d5aac749bc56724c", + "oid": 221329880882, + "crossed": true, + "fee": "1.637306", + "tid": 250939794508193, + "cloid": "0x00000000000000000000000388000291", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.17", + "sz": "13.2", + "side": "B", + "time": 1762185747431, + "startPosition": "-226920.07", + "dir": "Close Short", + "closedPnl": "444.07836", + "hash": "0x31e21bf6fd529862335b042ec46adf020ada00dc9855b734d5aac749bc56724c", + "oid": 221329880882, + "crossed": true, + "fee": "0.460623", + "tid": 240034841421158, + "cloid": "0x00000000000000000000000388000291", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131459.0", + "side": "B", + "time": 1762185749025, + "startPosition": "-1181094248.0", + "dir": "Close Short", + "closedPnl": "230.447627", + "hash": "0x568663cf27fee02c5800042ec46af60161007bb4c2f1fefefa4f0f21e6f2ba16", + "oid": 221329906519, + "crossed": true, + "fee": "0.104849", + "tid": 572029735731154, + "cloid": "0x00000000000000000000000385000256", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3580.1", + "sz": "2.7906", + "side": "B", + "time": 1762185749530, + "startPosition": "-1638.69", + "dir": "Close Short", + "closedPnl": "1480.357488", + "hash": "0x598d84dd4cb716865b07042ec46afa02157900c2e7ba3558fd5630300bbaf070", + "oid": 221329922395, + "crossed": true, + "fee": "2.098031", + "tid": 1042486822252809, + "cloid": "0x00000000000000000000000387000299", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.09", + "sz": "13.34", + "side": "B", + "time": 1762185750421, + "startPosition": "-226906.87", + "dir": "Close Short", + "closedPnl": "449.855482", + "hash": "0x25f9780ef3277f6e2773042ec46b04021fc600f48e2a9e40c9c22361b22b5958", + "oid": 221329932376, + "crossed": true, + "fee": "0.465284", + "tid": 591929009568581, + "cloid": "0x00000000000000000000000388000292", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.1", + "sz": "46.81", + "side": "B", + "time": 1762185750421, + "startPosition": "-226893.53", + "dir": "Close Short", + "closedPnl": "1578.072763", + "hash": "0x25f9780ef3277f6e2773042ec46b04021fc600f48e2a9e40c9c22361b22b5958", + "oid": 221329932376, + "crossed": true, + "fee": "1.632779", + "tid": 578959659765063, + "cloid": "0x00000000000000000000000388000292", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.15", + "sz": "60.11", + "side": "B", + "time": 1762185752408, + "startPosition": "-226846.72", + "dir": "Close Short", + "closedPnl": "2023.440853", + "hash": "0x46728e5acae2eeb447ec042ec46b1c02042a004065e60d86ea3b39ad89e6c89e", + "oid": 221329976009, + "crossed": true, + "fee": "2.097328", + "tid": 378649541523845, + "cloid": "0x00000000000000000000000388000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3580.5", + "sz": "2.2912", + "side": "B", + "time": 1762185752408, + "startPosition": "-1635.8994", + "dir": "Close Short", + "closedPnl": "1214.519296", + "hash": "0x3ef7d278ca2c205e4071042ec46b1c02043e005e652f3f30e2c07dcb892ffa48", + "oid": 221329976020, + "crossed": true, + "fee": "1.722764", + "tid": 41153435269079, + "cloid": "0x00000000000000000000000387000300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3580.6", + "sz": "0.4995", + "side": "B", + "time": 1762185752408, + "startPosition": "-1633.6082", + "dir": "Close Short", + "closedPnl": "264.72501", + "hash": "0x3ef7d278ca2c205e4071042ec46b1c02043e005e652f3f30e2c07dcb892ffa48", + "oid": 221329976020, + "crossed": true, + "fee": "0.375587", + "tid": 404033297442194, + "cloid": "0x00000000000000000000000387000300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.2674", + "sz": "3757.1", + "side": "A", + "time": 1762185753905, + "startPosition": "4010635.4960630001", + "dir": "Sell", + "closedPnl": "-2007.39527744", + "hash": "0xfc30e43c9b0acd52fdaa042ec46b30020b180022360dec259ff98f8f5a0ea73d", + "oid": 221329886007, + "crossed": false, + "fee": "0.07032539", + "tid": 169134580465084, + "cloid": "0x10000000000000000000000475000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.15", + "sz": "60.11", + "side": "B", + "time": 1762185754141, + "startPosition": "-226786.61", + "dir": "Close Short", + "closedPnl": "2023.440853", + "hash": "0x83e7b54298f0870c8561042ec46b33020600002833f3a5de27b0609557f460f7", + "oid": 221330004431, + "crossed": true, + "fee": "2.097328", + "tid": 1091702229350757, + "cloid": "0x00000000000000000000000388000294", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.1", + "sz": "2.0774", + "side": "B", + "time": 1762185754877, + "startPosition": "-1633.1087", + "dir": "Close Short", + "closedPnl": "1099.941752", + "hash": "0x6510d01e5b2cc263668a042ec46b3d020d690003f62fe13508d97b711a209c4e", + "oid": 221330028261, + "crossed": true, + "fee": "1.562269", + "tid": 856504347497929, + "cloid": "0x00000000000000000000000387000301", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.1", + "sz": "0.0055", + "side": "B", + "time": 1762185754877, + "startPosition": "-1631.0313", + "dir": "Close Short", + "closedPnl": "2.91214", + "hash": "0x6510d01e5b2cc263668a042ec46b3d020d690003f62fe13508d97b711a209c4e", + "oid": 221330028261, + "crossed": true, + "fee": "0.004136", + "tid": 112690027381806, + "cloid": "0x00000000000000000000000387000301", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.1", + "sz": "0.7069", + "side": "B", + "time": 1762185754877, + "startPosition": "-1631.0258", + "dir": "Close Short", + "closedPnl": "374.289412", + "hash": "0x6510d01e5b2cc263668a042ec46b3d020d690003f62fe13508d97b711a209c4e", + "oid": 221330028261, + "crossed": true, + "fee": "0.53161", + "tid": 528161417918987, + "cloid": "0x00000000000000000000000387000301", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "60.09", + "side": "B", + "time": 1762185756166, + "startPosition": "-226726.5", + "dir": "Close Short", + "closedPnl": "2018.561307", + "hash": "0x64dc4975452b20dd6656042ec46b4e020ef4005ae02e3faf08a4f4c8042efac8", + "oid": 221330059718, + "crossed": true, + "fee": "2.097513", + "tid": 734293479347861, + "cloid": "0x00000000000000000000000388000295", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.6", + "sz": "0.1334", + "side": "B", + "time": 1762185757210, + "startPosition": "-1630.3189", + "dir": "Close Short", + "closedPnl": "70.565932", + "hash": "0x6767ca7ce6e1b62468e1042ec46b5b02046f006281e4d4f60b3075cfa5e5900f", + "oid": 221330077818, + "crossed": true, + "fee": "0.100334", + "tid": 290857360720862, + "cloid": "0x00000000000000000000000387000302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.6", + "sz": "0.619", + "side": "B", + "time": 1762185757210, + "startPosition": "-1630.1855", + "dir": "Close Short", + "closedPnl": "327.43862", + "hash": "0x6767ca7ce6e1b62468e1042ec46b5b02046f006281e4d4f60b3075cfa5e5900f", + "oid": 221330077818, + "crossed": true, + "fee": "0.465572", + "tid": 859963249912858, + "cloid": "0x00000000000000000000000387000302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.6", + "sz": "0.2792", + "side": "B", + "time": 1762185757210, + "startPosition": "-1629.5665", + "dir": "Close Short", + "closedPnl": "147.691216", + "hash": "0x6767ca7ce6e1b62468e1042ec46b5b02046f006281e4d4f60b3075cfa5e5900f", + "oid": 221330077818, + "crossed": true, + "fee": "0.209996", + "tid": 797148897548991, + "cloid": "0x00000000000000000000000387000302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.6", + "sz": "0.1334", + "side": "B", + "time": 1762185757210, + "startPosition": "-1629.2873", + "dir": "Close Short", + "closedPnl": "70.565932", + "hash": "0x6767ca7ce6e1b62468e1042ec46b5b02046f006281e4d4f60b3075cfa5e5900f", + "oid": 221330077818, + "crossed": true, + "fee": "0.100334", + "tid": 623204225443484, + "cloid": "0x00000000000000000000000387000302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.6", + "sz": "1.6247", + "side": "B", + "time": 1762185757210, + "startPosition": "-1629.1539", + "dir": "Close Short", + "closedPnl": "859.433806", + "hash": "0x6767ca7ce6e1b62468e1042ec46b5b02046f006281e4d4f60b3075cfa5e5900f", + "oid": 221330077818, + "crossed": true, + "fee": "1.221995", + "tid": 26636413354838, + "cloid": "0x00000000000000000000000387000302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "60.1", + "side": "B", + "time": 1762185757752, + "startPosition": "-226666.41", + "dir": "Close Short", + "closedPnl": "2018.89723", + "hash": "0x23c9102609bba1282542042ec46b620209c1000ba4bebffac791bb78c8bf7b12", + "oid": 221330087549, + "crossed": true, + "fee": "2.097862", + "tid": 511602233978950, + "cloid": "0x00000000000000000000000388000296", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3580.9", + "sz": "2.7902", + "side": "B", + "time": 1762185758973, + "startPosition": "-1627.5292", + "dir": "Close Short", + "closedPnl": "1477.913136", + "hash": "0x1b33adedd6ac77051cad042ec46b6e02072c00d371af95d7befc594095a050ef", + "oid": 221330110070, + "crossed": true, + "fee": "2.098199", + "tid": 1091301250575257, + "cloid": "0x00000000000000000000000387000303", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.57", + "side": "B", + "time": 1762185759937, + "startPosition": "-226606.31", + "dir": "Close Short", + "closedPnl": "19.141911", + "hash": "0x0b91c8cc63a6465a0d0b042ec46b79020d0500b1fea9652caf5a741f22aa2044", + "oid": 221330127150, + "crossed": true, + "fee": "0.019897", + "tid": 198649257788008, + "cloid": "0x00000000000000000000000388000297", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "0.1", + "side": "B", + "time": 1762185759937, + "startPosition": "-226605.74", + "dir": "Close Short", + "closedPnl": "3.35723", + "hash": "0x0b91c8cc63a6465a0d0b042ec46b79020d0500b1fea9652caf5a741f22aa2044", + "oid": 221330127150, + "crossed": true, + "fee": "0.003491", + "tid": 827406527231865, + "cloid": "0x00000000000000000000000388000297", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "0.1", + "side": "B", + "time": 1762185759937, + "startPosition": "-226605.64", + "dir": "Close Short", + "closedPnl": "3.35723", + "hash": "0x0b91c8cc63a6465a0d0b042ec46b79020d0500b1fea9652caf5a741f22aa2044", + "oid": 221330127150, + "crossed": true, + "fee": "0.003491", + "tid": 479603648136661, + "cloid": "0x00000000000000000000000388000297", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "59.3", + "side": "B", + "time": 1762185759937, + "startPosition": "-226605.54", + "dir": "Close Short", + "closedPnl": "1990.24439", + "hash": "0x0b91c8cc63a6465a0d0b042ec46b79020d0500b1fea9652caf5a741f22aa2044", + "oid": 221330127150, + "crossed": true, + "fee": "2.070311", + "tid": 683391682958646, + "cloid": "0x00000000000000000000000388000297", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003803", + "sz": "131579.0", + "side": "B", + "time": 1762185760696, + "startPosition": "-1180962789.0", + "dir": "Close Short", + "closedPnl": "230.000092", + "hash": "0x7e7d405fa709a7757ff6042ec46b840205340045420cc6472245ebb2660d8160", + "oid": 221330142417, + "crossed": true, + "fee": "0.105082", + "tid": 265675652514330, + "cloid": "0x00000000000000000000000385000260", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.1", + "sz": "2.3935", + "side": "B", + "time": 1762185760810, + "startPosition": "-1624.739", + "dir": "Close Short", + "closedPnl": "1264.91688", + "hash": "0x2021b5606ff4e595219b042ec46b86020a1100460af80467c3ea60b32ef8bf7f", + "oid": 221330147924, + "crossed": true, + "fee": "1.800488", + "tid": 970969474853536, + "cloid": "0x00000000000000000000000387000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.1", + "sz": "0.0415", + "side": "B", + "time": 1762185760810, + "startPosition": "-1622.3455", + "dir": "Close Short", + "closedPnl": "21.93192", + "hash": "0x2021b5606ff4e595219b042ec46b86020a1100460af80467c3ea60b32ef8bf7f", + "oid": 221330147924, + "crossed": true, + "fee": "0.031218", + "tid": 484337223523266, + "cloid": "0x00000000000000000000000387000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.2", + "sz": "0.0055", + "side": "B", + "time": 1762185760810, + "startPosition": "-1622.304", + "dir": "Close Short", + "closedPnl": "2.90609", + "hash": "0x2021b5606ff4e595219b042ec46b86020a1100460af80467c3ea60b32ef8bf7f", + "oid": 221330147924, + "crossed": true, + "fee": "0.004137", + "tid": 405778650306595, + "cloid": "0x00000000000000000000000387000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.5", + "sz": "0.0415", + "side": "B", + "time": 1762185760810, + "startPosition": "-1622.2985", + "dir": "Close Short", + "closedPnl": "21.91532", + "hash": "0x2021b5606ff4e595219b042ec46b86020a1100460af80467c3ea60b32ef8bf7f", + "oid": 221330147924, + "crossed": true, + "fee": "0.031221", + "tid": 148336675721741, + "cloid": "0x00000000000000000000000387000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.8", + "sz": "0.0415", + "side": "B", + "time": 1762185760810, + "startPosition": "-1622.257", + "dir": "Close Short", + "closedPnl": "21.90287", + "hash": "0x2021b5606ff4e595219b042ec46b86020a1100460af80467c3ea60b32ef8bf7f", + "oid": 221330147924, + "crossed": true, + "fee": "0.031224", + "tid": 544755543258564, + "cloid": "0x00000000000000000000000387000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.9", + "sz": "0.2666", + "side": "B", + "time": 1762185760810, + "startPosition": "-1622.2155", + "dir": "Close Short", + "closedPnl": "140.679488", + "hash": "0x2021b5606ff4e595219b042ec46b86020a1100460af80467c3ea60b32ef8bf7f", + "oid": 221330147924, + "crossed": true, + "fee": "0.200592", + "tid": 508953460759609, + "cloid": "0x00000000000000000000000387000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.3", + "sz": "60.05", + "side": "B", + "time": 1762185761890, + "startPosition": "-226546.24", + "dir": "Close Short", + "closedPnl": "2012.413615", + "hash": "0x8583ed59c87edcf386fd042ec46b94020813003f6371fbc5294c98ac8772b6de", + "oid": 221330165890, + "crossed": true, + "fee": "2.097126", + "tid": 757224860555316, + "cloid": "0x00000000000000000000000388000298", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.2", + "sz": "2.7896", + "side": "B", + "time": 1762185762675, + "startPosition": "-1621.9489", + "dir": "Close Short", + "closedPnl": "1473.968848", + "hash": "0x9edd037b5b797e34a056042ec46b9d0210d60060f67c9d0642a5aece1a7d581f", + "oid": 221330179140, + "crossed": true, + "fee": "2.09851", + "tid": 636160198478973, + "cloid": "0x00000000000000000000000387000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131441.0", + "side": "B", + "time": 1762185763084, + "startPosition": "-1180831210.0", + "dir": "Close Short", + "closedPnl": "230.153191", + "hash": "0x64451138e2e9c46c65be042ec46ba202048c001e7dece33e080dbc8ba1ed9e57", + "oid": 221330170798, + "crossed": false, + "fee": "0.013985", + "tid": 773060709567071, + "cloid": "0x00000000000000000000000385000261", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.3", + "sz": "60.07", + "side": "B", + "time": 1762185763535, + "startPosition": "-226486.19", + "dir": "Close Short", + "closedPnl": "2013.083861", + "hash": "0xc946fe6e7a8395ddcac0042ec46ba90205b300541586b4af6d0fa9c139876fc8", + "oid": 221330197222, + "crossed": true, + "fee": "2.097824", + "tid": 1112738346502204, + "cloid": "0x00000000000000000000000388000299", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26716", + "sz": "3744.8", + "side": "B", + "time": 1762185763907, + "startPosition": "-3989281.8999999999", + "dir": "Close Short", + "closedPnl": "2000.135128", + "hash": "0xe6d3c1c7b1ea8153e84d042ec46bad02038500ad4ceda0258a9c6d1a70ee5b3e", + "oid": 221330202299, + "crossed": true, + "fee": "0.210096", + "tid": 874587172934115, + "cloid": "0x00000000000000000000000384000140", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "0.0042", + "side": "B", + "time": 1762185764978, + "startPosition": "-1619.1593", + "dir": "Close Short", + "closedPnl": "2.215836", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.00316", + "tid": 192434997239001, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "0.0754", + "side": "B", + "time": 1762185764978, + "startPosition": "-1619.1551", + "dir": "Close Short", + "closedPnl": "39.779532", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.056733", + "tid": 467359434800013, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "0.0754", + "side": "B", + "time": 1762185764978, + "startPosition": "-1619.0797", + "dir": "Close Short", + "closedPnl": "39.779532", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.056733", + "tid": 543380717743594, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "0.0754", + "side": "B", + "time": 1762185764978, + "startPosition": "-1619.0043", + "dir": "Close Short", + "closedPnl": "39.779532", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.056733", + "tid": 476314497518630, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "0.0754", + "side": "B", + "time": 1762185764978, + "startPosition": "-1618.9289", + "dir": "Close Short", + "closedPnl": "39.779532", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.056733", + "tid": 980970739372166, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "0.0754", + "side": "B", + "time": 1762185764978, + "startPosition": "-1618.8535", + "dir": "Close Short", + "closedPnl": "39.779532", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.056733", + "tid": 673793363533434, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "0.0754", + "side": "B", + "time": 1762185764978, + "startPosition": "-1618.7781", + "dir": "Close Short", + "closedPnl": "39.779532", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.056733", + "tid": 1026064171044736, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.0", + "sz": "0.0083", + "side": "B", + "time": 1762185764978, + "startPosition": "-1618.7027", + "dir": "Close Short", + "closedPnl": "4.378914", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.006245", + "tid": 783675400895916, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.1", + "sz": "0.876", + "side": "B", + "time": 1762185764978, + "startPosition": "-1618.6944", + "dir": "Close Short", + "closedPnl": "462.07248", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.659147", + "tid": 259518548175593, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.0415", + "side": "B", + "time": 1762185764978, + "startPosition": "-1617.8184", + "dir": "Close Short", + "closedPnl": "21.88627", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.031227", + "tid": 274165994623049, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "0.0042", + "side": "B", + "time": 1762185764978, + "startPosition": "-1617.7769", + "dir": "Close Short", + "closedPnl": "2.214996", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.00316", + "tid": 1028308538305795, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.4", + "sz": "0.0055", + "side": "B", + "time": 1762185764978, + "startPosition": "-1617.7727", + "dir": "Close Short", + "closedPnl": "2.89949", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.004138", + "tid": 392317141183744, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.4", + "sz": "0.1928", + "side": "B", + "time": 1762185764978, + "startPosition": "-1617.7672", + "dir": "Close Short", + "closedPnl": "101.640304", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.145084", + "tid": 766968004744323, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.4", + "sz": "1.2042", + "side": "B", + "time": 1762185764978, + "startPosition": "-1617.5744", + "dir": "Close Short", + "closedPnl": "634.830156", + "hash": "0xbf1f0f2bb9a51d74c098042ec46bbb02049b001154a83c4662e7ba7e78a8f75f", + "oid": 221330221460, + "crossed": true, + "fee": "0.906177", + "tid": 301142262728096, + "cloid": "0x00000000000000000000000387000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003805", + "sz": "131405.0", + "side": "B", + "time": 1762185765212, + "startPosition": "-1180699769.0", + "dir": "Close Short", + "closedPnl": "229.43313", + "hash": "0x69d9f3ad6e1fda3f6b53042ec46bbe02072b00930912f9110da29f002d13b42a", + "oid": 221330225314, + "crossed": true, + "fee": "0.104999", + "tid": 560150276802637, + "cloid": "0x00000000000000000000000385000262", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.32", + "sz": "0.1", + "side": "B", + "time": 1762185765400, + "startPosition": "-226426.12", + "dir": "Close Short", + "closedPnl": "3.34923", + "hash": "0xed25402d73301738ee9e042ec46bc10203fe00130e33360a90edeb803233f123", + "oid": 221330231187, + "crossed": true, + "fee": "0.003492", + "tid": 492322971444616, + "cloid": "0x00000000000000000000000388000300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.32", + "sz": "12.0", + "side": "B", + "time": 1762185765400, + "startPosition": "-226426.02", + "dir": "Close Short", + "closedPnl": "401.9076", + "hash": "0xed25402d73301738ee9e042ec46bc10203fe00130e33360a90edeb803233f123", + "oid": 221330231187, + "crossed": true, + "fee": "0.419126", + "tid": 65254212924886, + "cloid": "0x00000000000000000000000388000300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "47.95", + "side": "B", + "time": 1762185765400, + "startPosition": "-226414.02", + "dir": "Close Short", + "closedPnl": "1605.476285", + "hash": "0xed25402d73301738ee9e042ec46bc10203fe00130e33360a90edeb803233f123", + "oid": 221330231187, + "crossed": true, + "fee": "1.674859", + "tid": 413775246630849, + "cloid": "0x00000000000000000000000388000300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26687", + "sz": "1973.5", + "side": "A", + "time": 1762185765576, + "startPosition": "4006878.396063", + "dir": "Sell", + "closedPnl": "-1055.47479108", + "hash": "0x5dd4cbc1d358544b5f4e042ec46bc3020bc600a76e5b731d019d7714925c2e36", + "oid": 221330221502, + "crossed": false, + "fee": "0.03686675", + "tid": 852116125363061, + "cloid": "0x10000000000000000000000475000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26687", + "sz": "1771.3", + "side": "A", + "time": 1762185765846, + "startPosition": "4004904.896063", + "dir": "Sell", + "closedPnl": "-947.33341649", + "hash": "0x255e6207a0f7df3226d8042ec46bc702049c00ed3bfafe04c9270d5a5ffbb91c", + "oid": 221330221502, + "crossed": false, + "fee": "0.03308947", + "tid": 124530241645385, + "cloid": "0x10000000000000000000000475000060", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.3", + "sz": "2.7893", + "side": "B", + "time": 1762185766505, + "startPosition": "-1616.3702", + "dir": "Close Short", + "closedPnl": "1473.531404", + "hash": "0xe2c5143eef9615cfe43e042ec46bce0202b300248a9934a1868dbf91ae99efba", + "oid": 221330250940, + "crossed": true, + "fee": "2.098342", + "tid": 864970553799859, + "cloid": "0x00000000000000000000000387000307", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.3", + "sz": "60.05", + "side": "B", + "time": 1762185767094, + "startPosition": "-226366.07", + "dir": "Close Short", + "closedPnl": "2012.413615", + "hash": "0x48355c37177b213649af042ec46bd4020943001cb27e4008ebfe0789d67efb20", + "oid": 221330269207, + "crossed": true, + "fee": "2.097126", + "tid": 776249153725184, + "cloid": "0x00000000000000000000000388000301", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.2", + "sz": "2.7898", + "side": "B", + "time": 1762185768621, + "startPosition": "-1613.5809", + "dir": "Close Short", + "closedPnl": "1474.074524", + "hash": "0xcf77dac197385dc9d0f1042ec46be7020d0000a7323b7c9b73408614563c37b4", + "oid": 221330298209, + "crossed": true, + "fee": "2.09866", + "tid": 314562325804357, + "cloid": "0x00000000000000000000000387000308", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.26", + "sz": "60.07", + "side": "B", + "time": 1762185769139, + "startPosition": "-226306.02", + "dir": "Close Short", + "closedPnl": "2015.486661", + "hash": "0xeb79a036e63b4d99ecf3042ec46bed0204d2001c813e6c6b8f424b89a53f2784", + "oid": 221330302845, + "crossed": true, + "fee": "2.09732", + "tid": 294950968367464, + "cloid": "0x00000000000000000000000388000302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003804", + "sz": "131440.0", + "side": "B", + "time": 1762185769531, + "startPosition": "-1180568364.0", + "dir": "Close Short", + "closedPnl": "229.62568", + "hash": "0x903e024eb97c91fe91b7042ec46bf202034d0034547fb0d03406ada178706be9", + "oid": 221330309978, + "crossed": true, + "fee": "0.104999", + "tid": 564982758305618, + "cloid": "0x00000000000000000000000385000264", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.2", + "sz": "2.7891", + "side": "B", + "time": 1762185770531, + "startPosition": "-1610.7911", + "dir": "Close Short", + "closedPnl": "1473.704658", + "hash": "0x75a3ad62de17954b771d042ec46bfe0204eb0048791ab41d196c58b59d1b6f36", + "oid": 221330326983, + "crossed": true, + "fee": "2.098133", + "tid": 1023843217555811, + "cloid": "0x00000000000000000000000387000309", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.27", + "sz": "60.07", + "side": "B", + "time": 1762185770925, + "startPosition": "-226245.95", + "dir": "Close Short", + "closedPnl": "2014.885961", + "hash": "0x26bc237dfd62961f2835042ec46c0202129400639865b4f1ca84ced0bc667009", + "oid": 221330337278, + "crossed": true, + "fee": "2.097446", + "tid": 14115229630220, + "cloid": "0x00000000000000000000000388000303", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131441.0", + "side": "B", + "time": 1762185771756, + "startPosition": "-1180436924.0", + "dir": "Close Short", + "closedPnl": "230.153191", + "hash": "0xc65f6d1e096c67b5c7d9042ec46c0b0219670003a46f86876a281870c86041a0", + "oid": 221330352190, + "crossed": false, + "fee": "0.013985", + "tid": 595179002705465, + "cloid": "0x00000000000000000000000385000265", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.3", + "sz": "1.6905", + "side": "B", + "time": 1762185772239, + "startPosition": "-1608.002", + "dir": "Close Short", + "closedPnl": "894.74784", + "hash": "0x1935ab6a14fe3f301aaf042ec46c100204af004faff15e02bcfe56bcd3f2191a", + "oid": 221330367334, + "crossed": true, + "fee": "1.271379", + "tid": 369434326623297, + "cloid": "0x00000000000000000000000387000310", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.3", + "sz": "1.03", + "side": "B", + "time": 1762185772239, + "startPosition": "-1606.3115", + "dir": "Close Short", + "closedPnl": "545.1584", + "hash": "0x1935ab6a14fe3f301aaf042ec46c100204af004faff15e02bcfe56bcd3f2191a", + "oid": 221330367334, + "crossed": true, + "fee": "0.774635", + "tid": 171948239397816, + "cloid": "0x00000000000000000000000387000310", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.3", + "sz": "0.0699", + "side": "B", + "time": 1762185772239, + "startPosition": "-1605.2815", + "dir": "Close Short", + "closedPnl": "36.996672", + "hash": "0x1935ab6a14fe3f301aaf042ec46c100204af004faff15e02bcfe56bcd3f2191a", + "oid": 221330367334, + "crossed": true, + "fee": "0.052569", + "tid": 438187721786940, + "cloid": "0x00000000000000000000000387000310", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.14", + "sz": "48.12", + "side": "B", + "time": 1762185772737, + "startPosition": "-226185.88", + "dir": "Close Short", + "closedPnl": "1620.311076", + "hash": "0xc19f8beeaf1539e5c319042ec46c16020a0300d44a1858b7656837416e1913d0", + "oid": 221330377828, + "crossed": true, + "fee": "1.678877", + "tid": 6037239802266, + "cloid": "0x00000000000000000000000388000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.14", + "sz": "11.99", + "side": "B", + "time": 1762185772737, + "startPosition": "-226137.76", + "dir": "Close Short", + "closedPnl": "403.730877", + "hash": "0xc19f8beeaf1539e5c319042ec46c16020a0300d44a1858b7656837416e1913d0", + "oid": 221330377828, + "crossed": true, + "fee": "0.418323", + "tid": 163059534280350, + "cloid": "0x00000000000000000000000388000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131671.0", + "side": "B", + "time": 1762185773717, + "startPosition": "-1180305483.0", + "dir": "Close Short", + "closedPnl": "230.819263", + "hash": "0xc99b5519684c5cc3cb15042ec46c2302050d00ff034f7b956d64006c274036ae", + "oid": 221330395355, + "crossed": true, + "fee": "0.105018", + "tid": 66550696222993, + "cloid": "0x00000000000000000000000385000266", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.2", + "sz": "0.5851", + "side": "B", + "time": 1762185773717, + "startPosition": "-1605.2116", + "dir": "Close Short", + "closedPnl": "309.740238", + "hash": "0x47bca620e812a92e4936042ec46c2302051200068315c800eb855173a7168318", + "oid": 221330395360, + "crossed": true, + "fee": "0.440025", + "tid": 597014741869011, + "cloid": "0x00000000000000000000000387000311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.2", + "sz": "2.2053", + "side": "B", + "time": 1762185773717, + "startPosition": "-1604.6265", + "dir": "Close Short", + "closedPnl": "1167.441714", + "hash": "0x47bca620e812a92e4936042ec46c2302051200068315c800eb855173a7168318", + "oid": 221330395360, + "crossed": true, + "fee": "1.6585", + "tid": 836715759580392, + "cloid": "0x00000000000000000000000387000311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.14", + "sz": "0.35", + "side": "B", + "time": 1762185775268, + "startPosition": "-226125.77", + "dir": "Close Short", + "closedPnl": "11.785305", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.012211", + "tid": 1012754792031588, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.14", + "sz": "3.01", + "side": "B", + "time": 1762185775268, + "startPosition": "-226125.42", + "dir": "Close Short", + "closedPnl": "101.353623", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.105017", + "tid": 200418323704593, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.16", + "sz": "12.58", + "side": "B", + "time": 1762185775268, + "startPosition": "-226122.41", + "dir": "Close Short", + "closedPnl": "423.345934", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.438961", + "tid": 1075797137952010, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.18", + "sz": "12.0", + "side": "B", + "time": 1762185775268, + "startPosition": "-226109.83", + "dir": "Close Short", + "closedPnl": "403.5876", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.418773", + "tid": 234011724374756, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.19", + "sz": "0.18", + "side": "B", + "time": 1762185775268, + "startPosition": "-226097.83", + "dir": "Close Short", + "closedPnl": "6.052014", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.006281", + "tid": 1015997286670195, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.19", + "sz": "1.74", + "side": "B", + "time": 1762185775268, + "startPosition": "-226097.65", + "dir": "Close Short", + "closedPnl": "58.502802", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.060725", + "tid": 234569822260337, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "12.0", + "side": "B", + "time": 1762185775268, + "startPosition": "-226095.91", + "dir": "Close Short", + "closedPnl": "403.2276", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.418849", + "tid": 864655757846778, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.18", + "side": "B", + "time": 1762185775268, + "startPosition": "-226083.91", + "dir": "Close Short", + "closedPnl": "6.044814", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.006283", + "tid": 765315802753838, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "16.65", + "side": "B", + "time": 1762185775268, + "startPosition": "-226083.73", + "dir": "Close Short", + "closedPnl": "558.978795", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.581258", + "tid": 328557973202519, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "1.0", + "side": "B", + "time": 1762185775268, + "startPosition": "-226067.08", + "dir": "Close Short", + "closedPnl": "33.5723", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.03491", + "tid": 127863344870034, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "0.29", + "side": "B", + "time": 1762185775268, + "startPosition": "-226066.08", + "dir": "Close Short", + "closedPnl": "9.735967", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.010124", + "tid": 525773100969759, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "0.13", + "side": "B", + "time": 1762185775268, + "startPosition": "-226065.79", + "dir": "Close Short", + "closedPnl": "4.364399", + "hash": "0x48f4796bb820acbe4a6e042ec46c3702095700515323cb90ecbd24be772486a8", + "oid": 221330417993, + "crossed": true, + "fee": "0.004538", + "tid": 944711902661655, + "cloid": "0x00000000000000000000000388000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.8", + "sz": "0.0042", + "side": "B", + "time": 1762185775583, + "startPosition": "-1602.4212", + "dir": "Close Short", + "closedPnl": "2.220876", + "hash": "0x6c9fab7cff6a3b606e19042ec46c3b020ad700629a6d5a32106856cfbe6e154b", + "oid": 221330426798, + "crossed": true, + "fee": "0.003159", + "tid": 25313305051042, + "cloid": "0x00000000000000000000000387000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.9", + "sz": "0.5697", + "side": "B", + "time": 1762185775583, + "startPosition": "-1602.417", + "dir": "Close Short", + "closedPnl": "301.188996", + "hash": "0x6c9fab7cff6a3b606e19042ec46c3b020ad700629a6d5a32106856cfbe6e154b", + "oid": 221330426798, + "crossed": true, + "fee": "0.428527", + "tid": 23498543635524, + "cloid": "0x00000000000000000000000387000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.9", + "sz": "2.2162", + "side": "B", + "time": 1762185775583, + "startPosition": "-1601.8473", + "dir": "Close Short", + "closedPnl": "1171.660616", + "hash": "0x6c9fab7cff6a3b606e19042ec46c3b020ad700629a6d5a32106856cfbe6e154b", + "oid": 221330426798, + "crossed": true, + "fee": "1.667023", + "tid": 764696734061673, + "cloid": "0x00000000000000000000000387000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131614.0", + "side": "B", + "time": 1762185775583, + "startPosition": "-1180173812.0", + "dir": "Close Short", + "closedPnl": "230.719342", + "hash": "0xeac0fc847f3087caec3a042ec46c3b020adc006a1a33a69c8e89a7d73e3461b5", + "oid": 221330426802, + "crossed": true, + "fee": "0.104972", + "tid": 808682523105569, + "cloid": "0x00000000000000000000000385000267", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "12.03", + "side": "B", + "time": 1762185776732, + "startPosition": "-226065.66", + "dir": "Close Short", + "closedPnl": "403.754469", + "hash": "0x2c312e9ac09c8ae32daa042ec46c48020a6100805b9fa9b5cff9d9ed7f9064cd", + "oid": 221330446885, + "crossed": true, + "fee": "0.419997", + "tid": 428246837918802, + "cloid": "0x00000000000000000000000388000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "48.05", + "side": "B", + "time": 1762185776732, + "startPosition": "-226053.63", + "dir": "Close Short", + "closedPnl": "1612.668515", + "hash": "0x2c312e9ac09c8ae32daa042ec46c48020a6100805b9fa9b5cff9d9ed7f9064cd", + "oid": 221330446885, + "crossed": true, + "fee": "1.677545", + "tid": 989093102886350, + "cloid": "0x00000000000000000000000388000306", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.0", + "sz": "2.7904", + "side": "B", + "time": 1762185777412, + "startPosition": "-1599.6311", + "dir": "Close Short", + "closedPnl": "1474.949632", + "hash": "0xb2c432b62f4086c0b43d042ec46c5002035c009bca43a592568cde08ee4460ab", + "oid": 221330455130, + "crossed": true, + "fee": "2.098994", + "tid": 627609324371441, + "cloid": "0x00000000000000000000000387000313", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "48.66", + "side": "B", + "time": 1762185778306, + "startPosition": "-226005.58", + "dir": "Close Short", + "closedPnl": "1633.141518", + "hash": "0xde0ac1649f65a02cdf84042ec46c5a0205fc004a3a68befe81d36cb75e697a17", + "oid": 221330470218, + "crossed": true, + "fee": "1.698842", + "tid": 659392169092241, + "cloid": "0x00000000000000000000000388000307", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "11.43", + "side": "B", + "time": 1762185778306, + "startPosition": "-225956.92", + "dir": "Close Short", + "closedPnl": "383.617089", + "hash": "0xde0ac1649f65a02cdf84042ec46c5a0205fc004a3a68befe81d36cb75e697a17", + "oid": 221330470218, + "crossed": true, + "fee": "0.399049", + "tid": 747619044169870, + "cloid": "0x00000000000000000000000388000307", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.6", + "sz": "0.0002", + "side": "B", + "time": 1762185778725, + "startPosition": "-1596.8407", + "dir": "Close Short", + "closedPnl": "0.105796", + "hash": "0x9320c6a0959d3a40949a042ec46c5f02037e00863090591236e971f35491142b", + "oid": 221330474186, + "crossed": true, + "fee": "0.00015", + "tid": 151624837258881, + "cloid": "0x00000000000000000000000387000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.6", + "sz": "2.79", + "side": "B", + "time": 1762185778725, + "startPosition": "-1596.8405", + "dir": "Close Short", + "closedPnl": "1475.8542", + "hash": "0x9320c6a0959d3a40949a042ec46c5f02037e00863090591236e971f35491142b", + "oid": 221330474186, + "crossed": true, + "fee": "2.098459", + "tid": 50335329519963, + "cloid": "0x00000000000000000000000387000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "60.09", + "side": "B", + "time": 1762185780160, + "startPosition": "-225945.49", + "dir": "Close Short", + "closedPnl": "2018.561307", + "hash": "0x819573d8cfb7dbbf830f042ec46c7002075b00be6abafa91255e1f2b8ebbb5aa", + "oid": 221330494106, + "crossed": true, + "fee": "2.097513", + "tid": 913478426681825, + "cloid": "0x00000000000000000000000388000308", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.4", + "sz": "0.7262", + "side": "B", + "time": 1762185780160, + "startPosition": "-1594.0505", + "dir": "Close Short", + "closedPnl": "384.290516", + "hash": "0x7dd815e7cf5474947f51042ec46c7002076500cd6a57936621a0c13a8e584e7f", + "oid": 221330494113, + "crossed": true, + "fee": "0.54617", + "tid": 73527218986986, + "cloid": "0x00000000000000000000000387000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.4", + "sz": "2.0641", + "side": "B", + "time": 1762185780160, + "startPosition": "-1593.3243", + "dir": "Close Short", + "closedPnl": "1092.280438", + "hash": "0x7dd815e7cf5474947f51042ec46c7002076500cd6a57936621a0c13a8e584e7f", + "oid": 221330494113, + "crossed": true, + "fee": "1.552397", + "tid": 463642018821746, + "cloid": "0x00000000000000000000000387000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.4", + "sz": "2.7905", + "side": "B", + "time": 1762185781532, + "startPosition": "-1591.2602", + "dir": "Close Short", + "closedPnl": "1476.67679", + "hash": "0x6722c7a784252584689c042ec46c7e020e74008d1f2844560aeb72fa4328ff6f", + "oid": 221330520507, + "crossed": true, + "fee": "2.098718", + "tid": 98848047212456, + "cloid": "0x00000000000000000000000387000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.11", + "sz": "60.11", + "side": "B", + "time": 1762185781770, + "startPosition": "-225885.4", + "dir": "Close Short", + "closedPnl": "2025.845253", + "hash": "0x4638cf573ddf86a947b2042ec46c81021078003cd8d2a57bea017aa9fcd36093", + "oid": 221330524141, + "crossed": true, + "fee": "2.096823", + "tid": 965114721813194, + "cloid": "0x00000000000000000000000388000309", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.8", + "sz": "2.79", + "side": "B", + "time": 1762185783608, + "startPosition": "-1588.4697", + "dir": "Close Short", + "closedPnl": "1475.2962", + "hash": "0x6c1134778bcfea896d8a042ec46c96020886005d26c3095b0fd9dfca4ac3c474", + "oid": 221330554448, + "crossed": true, + "fee": "2.098576", + "tid": 680081212893536, + "cloid": "0x00000000000000000000000387000317", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.2", + "sz": "0.1", + "side": "B", + "time": 1762185784078, + "startPosition": "-225825.29", + "dir": "Close Short", + "closedPnl": "3.36123", + "hash": "0xc6a0ec2984c3dac1c81a042ec46c9c0203f8000f1fc6f9936a69977c43c7b4ac", + "oid": 221330557753, + "crossed": true, + "fee": "0.00349", + "tid": 1077536615042384, + "cloid": "0x00000000000000000000000388000310", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.2", + "sz": "60.0", + "side": "B", + "time": 1762185784078, + "startPosition": "-225825.19", + "dir": "Close Short", + "closedPnl": "2016.738", + "hash": "0xc6a0ec2984c3dac1c81a042ec46c9c0203f8000f1fc6f9936a69977c43c7b4ac", + "oid": 221330557753, + "crossed": true, + "fee": "2.094119", + "tid": 761390785167142, + "cloid": "0x00000000000000000000000388000310", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.4", + "sz": "2.7903", + "side": "B", + "time": 1762185785481, + "startPosition": "-1585.6797", + "dir": "Close Short", + "closedPnl": "1476.570954", + "hash": "0x0ac1807bf543a6cb0c3b042ec46cad02122b00619046c59dae8a2bceb44780b5", + "oid": 221330587416, + "crossed": true, + "fee": "2.098567", + "tid": 1076009152157368, + "cloid": "0x00000000000000000000000387000318", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.15", + "sz": "45.18", + "side": "B", + "time": 1762185785825, + "startPosition": "-225765.19", + "dir": "Close Short", + "closedPnl": "1520.862714", + "hash": "0xf61552207ac36d58f78f042ec46cb00206f4000615c68c2b99ddfd7339c74743", + "oid": 221330592840, + "crossed": true, + "fee": "1.576397", + "tid": 515709215682391, + "cloid": "0x00000000000000000000000388000311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.15", + "sz": "14.95", + "side": "B", + "time": 1762185785825, + "startPosition": "-225720.01", + "dir": "Close Short", + "closedPnl": "503.251385", + "hash": "0xf61552207ac36d58f78f042ec46cb00206f4000615c68c2b99ddfd7339c74743", + "oid": 221330592840, + "crossed": true, + "fee": "0.521627", + "tid": 477879104146674, + "cloid": "0x00000000000000000000000388000311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131501.0", + "side": "B", + "time": 1762185786863, + "startPosition": "-1180042198.0", + "dir": "Close Short", + "closedPnl": "230.521253", + "hash": "0x89e2cd7ff0bec43a8b5c042ec46cbc020d6f00658bb1e30c2dab78d2afb29e25", + "oid": 221330611273, + "crossed": true, + "fee": "0.104882", + "tid": 198248767055179, + "cloid": "0x00000000000000000000000385000271", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.0", + "sz": "2.7902", + "side": "B", + "time": 1762185787595, + "startPosition": "-1582.8894", + "dir": "Close Short", + "closedPnl": "1474.843916", + "hash": "0xb96cb0d28c194b52bae6042ec46cc402146d00b8271c6a245d355c254b1d253d", + "oid": 221330626421, + "crossed": true, + "fee": "2.098844", + "tid": 780676522973768, + "cloid": "0x00000000000000000000000387000319", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.11", + "sz": "3.01", + "side": "B", + "time": 1762185787595, + "startPosition": "-225705.06", + "dir": "Close Short", + "closedPnl": "101.443923", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.104998", + "tid": 10271801799045, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.16", + "sz": "0.18", + "side": "B", + "time": 1762185787595, + "startPosition": "-225702.05", + "dir": "Close Short", + "closedPnl": "6.057414", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.00628", + "tid": 919455982097051, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.17", + "sz": "0.1", + "side": "B", + "time": 1762185787595, + "startPosition": "-225701.87", + "dir": "Close Short", + "closedPnl": "3.36423", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.003489", + "tid": 863143760145531, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.19", + "sz": "0.3", + "side": "B", + "time": 1762185787595, + "startPosition": "-225701.77", + "dir": "Close Short", + "closedPnl": "10.08669", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.010469", + "tid": 246566925680083, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.2", + "sz": "31.13", + "side": "B", + "time": 1762185787595, + "startPosition": "-225701.47", + "dir": "Close Short", + "closedPnl": "1046.350899", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "1.086499", + "tid": 93553136077242, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.2", + "sz": "0.18", + "side": "B", + "time": 1762185787595, + "startPosition": "-225670.34", + "dir": "Close Short", + "closedPnl": "6.050214", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.006282", + "tid": 798113803818840, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "3.69", + "side": "B", + "time": 1762185787595, + "startPosition": "-225670.16", + "dir": "Close Short", + "closedPnl": "123.992487", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.128796", + "tid": 928751361984424, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "3.69", + "side": "B", + "time": 1762185787595, + "startPosition": "-225666.47", + "dir": "Close Short", + "closedPnl": "123.992487", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.128796", + "tid": 699460408431221, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "3.69", + "side": "B", + "time": 1762185787595, + "startPosition": "-225662.78", + "dir": "Close Short", + "closedPnl": "123.992487", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.128796", + "tid": 37699793620681, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "3.69", + "side": "B", + "time": 1762185787595, + "startPosition": "-225659.09", + "dir": "Close Short", + "closedPnl": "123.992487", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.128796", + "tid": 264895990532283, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "3.69", + "side": "B", + "time": 1762185787595, + "startPosition": "-225655.4", + "dir": "Close Short", + "closedPnl": "123.992487", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.128796", + "tid": 711419779154035, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "3.69", + "side": "B", + "time": 1762185787595, + "startPosition": "-225651.71", + "dir": "Close Short", + "closedPnl": "123.992487", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.128796", + "tid": 801326612770445, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "3.09", + "side": "B", + "time": 1762185787595, + "startPosition": "-225648.02", + "dir": "Close Short", + "closedPnl": "103.800207", + "hash": "0x1b564017bed8691f1ccf042ec46cc402147900fd59db87f1bf1eeb6a7ddc4309", + "oid": 221330626430, + "crossed": true, + "fee": "0.10786", + "tid": 464728414935773, + "cloid": "0x00000000000000000000000388000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.0038", + "sz": "131544.0", + "side": "B", + "time": 1762185789376, + "startPosition": "-1179910697.0", + "dir": "Close Short", + "closedPnl": "230.333544", + "hash": "0x183b1751dcc7db8c19b4042ec46cd7020511003777cafa5ebc03c2a49bcbb576", + "oid": 221330650109, + "crossed": false, + "fee": "0.013996", + "tid": 379707716273883, + "cloid": "0x00000000000000000000000385000272", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.4", + "sz": "2.7896", + "side": "B", + "time": 1762185789980, + "startPosition": "-1580.0992", + "dir": "Close Short", + "closedPnl": "1473.410928", + "hash": "0x4a15fea1927624b94b8f042ec46cdc02094b00872d79438beddea9f45179fea3", + "oid": 221330661247, + "crossed": true, + "fee": "2.098627", + "tid": 1052047723546934, + "cloid": "0x00000000000000000000000387000320", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.16", + "sz": "12.03", + "side": "B", + "time": 1762185789980, + "startPosition": "-225644.93", + "dir": "Close Short", + "closedPnl": "404.837169", + "hash": "0xfb364776f6135c7afcb0042ec46cdc020995005c91167b4d9efef2c9b5173665", + "oid": 221330661299, + "crossed": true, + "fee": "0.41977", + "tid": 609067356416115, + "cloid": "0x00000000000000000000000388000313", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.16", + "sz": "48.08", + "side": "B", + "time": 1762185789980, + "startPosition": "-225632.9", + "dir": "Close Short", + "closedPnl": "1618.002584", + "hash": "0xfb364776f6135c7afcb0042ec46cdc020995005c91167b4d9efef2c9b5173665", + "oid": 221330661299, + "crossed": true, + "fee": "1.677684", + "tid": 749536136578927, + "cloid": "0x00000000000000000000000388000313", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "1.08", + "side": "B", + "time": 1762185792149, + "startPosition": "-225584.82", + "dir": "Close Short", + "closedPnl": "36.279684", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.037698", + "tid": 1102840166582640, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.41", + "side": "B", + "time": 1762185792149, + "startPosition": "-225583.74", + "dir": "Close Short", + "closedPnl": "13.768743", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.014312", + "tid": 780384197235963, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.41", + "side": "B", + "time": 1762185792149, + "startPosition": "-225583.33", + "dir": "Close Short", + "closedPnl": "13.768743", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.014312", + "tid": 624080984269249, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.41", + "side": "B", + "time": 1762185792149, + "startPosition": "-225582.92", + "dir": "Close Short", + "closedPnl": "13.768743", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.014312", + "tid": 74863012575321, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.41", + "side": "B", + "time": 1762185792149, + "startPosition": "-225582.51", + "dir": "Close Short", + "closedPnl": "13.768743", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.014312", + "tid": 87800980592305, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.41", + "side": "B", + "time": 1762185792149, + "startPosition": "-225582.1", + "dir": "Close Short", + "closedPnl": "13.768743", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.014312", + "tid": 618109292212887, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.23", + "sz": "0.41", + "side": "B", + "time": 1762185792149, + "startPosition": "-225581.69", + "dir": "Close Short", + "closedPnl": "13.768743", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.014312", + "tid": 814058936196367, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "0.1", + "side": "B", + "time": 1762185792149, + "startPosition": "-225581.28", + "dir": "Close Short", + "closedPnl": "3.35723", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.003491", + "tid": 11079909624940, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.24", + "sz": "0.1", + "side": "B", + "time": 1762185792149, + "startPosition": "-225581.18", + "dir": "Close Short", + "closedPnl": "3.35723", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.003491", + "tid": 459786286307317, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "6.7", + "side": "B", + "time": 1762185792149, + "startPosition": "-225581.08", + "dir": "Close Short", + "closedPnl": "224.86741", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.233913", + "tid": 273738020970872, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.25", + "sz": "0.18", + "side": "B", + "time": 1762185792149, + "startPosition": "-225574.38", + "dir": "Close Short", + "closedPnl": "6.041214", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "0.006284", + "tid": 716972768364664, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.26", + "sz": "49.47", + "side": "B", + "time": 1762185792149, + "startPosition": "-225574.2", + "dir": "Close Short", + "closedPnl": "1659.832281", + "hash": "0x1d71abcdccee31561eeb042ec46cf70208c300b367e15028c13a57208be20b40", + "oid": 221330703830, + "crossed": true, + "fee": "1.727225", + "tid": 248956286787613, + "cloid": "0x00000000000000000000000388000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.8", + "sz": "0.0042", + "side": "B", + "time": 1762185792868, + "startPosition": "-1577.3096", + "dir": "Close Short", + "closedPnl": "2.216676", + "hash": "0xc93adfde6b3fb77bcab4042ec46d0102093e00c40632d64d6d038b312a339166", + "oid": 221330712044, + "crossed": true, + "fee": "0.00316", + "tid": 608574949268802, + "cloid": "0x00000000000000000000000387000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.8", + "sz": "0.2791", + "side": "B", + "time": 1762185792868, + "startPosition": "-1577.3054", + "dir": "Close Short", + "closedPnl": "147.303398", + "hash": "0xc93adfde6b3fb77bcab4042ec46d0102093e00c40632d64d6d038b312a339166", + "oid": 221330712044, + "crossed": true, + "fee": "0.209991", + "tid": 269343435295838, + "cloid": "0x00000000000000000000000387000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.8", + "sz": "0.2791", + "side": "B", + "time": 1762185792868, + "startPosition": "-1577.0263", + "dir": "Close Short", + "closedPnl": "147.303398", + "hash": "0xc93adfde6b3fb77bcab4042ec46d0102093e00c40632d64d6d038b312a339166", + "oid": 221330712044, + "crossed": true, + "fee": "0.209991", + "tid": 76004142313076, + "cloid": "0x00000000000000000000000387000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.8", + "sz": "0.2791", + "side": "B", + "time": 1762185792868, + "startPosition": "-1576.7472", + "dir": "Close Short", + "closedPnl": "147.303398", + "hash": "0xc93adfde6b3fb77bcab4042ec46d0102093e00c40632d64d6d038b312a339166", + "oid": 221330712044, + "crossed": true, + "fee": "0.209991", + "tid": 358268970999263, + "cloid": "0x00000000000000000000000387000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.8", + "sz": "1.9472", + "side": "B", + "time": 1762185792868, + "startPosition": "-1576.4681", + "dir": "Close Short", + "closedPnl": "1027.693216", + "hash": "0xc93adfde6b3fb77bcab4042ec46d0102093e00c40632d64d6d038b312a339166", + "oid": 221330712044, + "crossed": true, + "fee": "1.465049", + "tid": 84606166872548, + "cloid": "0x00000000000000000000000387000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.26", + "sz": "12.02", + "side": "B", + "time": 1762185793701, + "startPosition": "-225524.73", + "dir": "Close Short", + "closedPnl": "403.298646", + "hash": "0xf6e3067b2891d584f85c042ec46d0b0203d20060c394f4579aabb1cde795af6f", + "oid": 221330723864, + "crossed": true, + "fee": "0.419673", + "tid": 764859414219131, + "cloid": "0x00000000000000000000000388000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.27", + "sz": "0.1", + "side": "B", + "time": 1762185793701, + "startPosition": "-225512.71", + "dir": "Close Short", + "closedPnl": "3.35423", + "hash": "0xf6e3067b2891d584f85c042ec46d0b0203d20060c394f4579aabb1cde795af6f", + "oid": 221330723864, + "crossed": true, + "fee": "0.003491", + "tid": 936345538711728, + "cloid": "0x00000000000000000000000388000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.27", + "sz": "0.58", + "side": "B", + "time": 1762185793701, + "startPosition": "-225512.61", + "dir": "Close Short", + "closedPnl": "19.454534", + "hash": "0xf6e3067b2891d584f85c042ec46d0b0203d20060c394f4579aabb1cde795af6f", + "oid": 221330723864, + "crossed": true, + "fee": "0.020251", + "tid": 295476973447399, + "cloid": "0x00000000000000000000000388000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.28", + "sz": "0.1", + "side": "B", + "time": 1762185793701, + "startPosition": "-225512.03", + "dir": "Close Short", + "closedPnl": "3.35323", + "hash": "0xf6e3067b2891d584f85c042ec46d0b0203d20060c394f4579aabb1cde795af6f", + "oid": 221330723864, + "crossed": true, + "fee": "0.003491", + "tid": 337548073558809, + "cloid": "0x00000000000000000000000388000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.28", + "sz": "0.1", + "side": "B", + "time": 1762185793701, + "startPosition": "-225511.93", + "dir": "Close Short", + "closedPnl": "3.35323", + "hash": "0xf6e3067b2891d584f85c042ec46d0b0203d20060c394f4579aabb1cde795af6f", + "oid": 221330723864, + "crossed": true, + "fee": "0.003491", + "tid": 1022567371824056, + "cloid": "0x00000000000000000000000388000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.28", + "sz": "28.0", + "side": "B", + "time": 1762185793701, + "startPosition": "-225511.83", + "dir": "Close Short", + "closedPnl": "938.9044", + "hash": "0xf6e3067b2891d584f85c042ec46d0b0203d20060c394f4579aabb1cde795af6f", + "oid": 221330723864, + "crossed": true, + "fee": "0.977726", + "tid": 259206197864883, + "cloid": "0x00000000000000000000000388000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.3", + "sz": "19.18", + "side": "B", + "time": 1762185793701, + "startPosition": "-225483.83", + "dir": "Close Short", + "closedPnl": "642.765914", + "hash": "0xf6e3067b2891d584f85c042ec46d0b0203d20060c394f4579aabb1cde795af6f", + "oid": 221330723864, + "crossed": true, + "fee": "0.669823", + "tid": 613731622405323, + "cloid": "0x00000000000000000000000388000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.8", + "sz": "2.7884", + "side": "B", + "time": 1762185794459, + "startPosition": "-1574.5209", + "dir": "Close Short", + "closedPnl": "1471.661752", + "hash": "0x22ef7978fb3b43392469042ec46d14019f00915e963e620bc6b824cbba3f1d23", + "oid": 221330732480, + "crossed": true, + "fee": "2.097958", + "tid": 981144340360458, + "cloid": "0x00000000000000000000000387000322", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.34", + "sz": "0.3", + "side": "B", + "time": 1762185796455, + "startPosition": "-225464.65", + "dir": "Close Short", + "closedPnl": "10.04169", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.010479", + "tid": 758693448633852, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "0.18", + "side": "B", + "time": 1762185796455, + "startPosition": "-225464.35", + "dir": "Close Short", + "closedPnl": "6.023214", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.006288", + "tid": 769934774963102, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.36", + "sz": "0.1", + "side": "B", + "time": 1762185796455, + "startPosition": "-225464.17", + "dir": "Close Short", + "closedPnl": "3.34523", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.003493", + "tid": 735540304110242, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.36", + "sz": "25.96", + "side": "B", + "time": 1762185796455, + "startPosition": "-225464.07", + "dir": "Close Short", + "closedPnl": "868.421708", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.906928", + "tid": 880662633323538, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.37", + "sz": "6.01", + "side": "B", + "time": 1762185796455, + "startPosition": "-225438.11", + "dir": "Close Short", + "closedPnl": "200.988223", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.209975", + "tid": 653211557557681, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.39", + "sz": "6.01", + "side": "B", + "time": 1762185796455, + "startPosition": "-225432.1", + "dir": "Close Short", + "closedPnl": "200.868023", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.21", + "tid": 1068158116406022, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.39", + "sz": "0.18", + "side": "B", + "time": 1762185796455, + "startPosition": "-225426.09", + "dir": "Close Short", + "closedPnl": "6.016014", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.006289", + "tid": 597886935937683, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "6.01", + "side": "B", + "time": 1762185796455, + "startPosition": "-225425.91", + "dir": "Close Short", + "closedPnl": "200.807923", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.210013", + "tid": 284206157834715, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "0.84", + "side": "B", + "time": 1762185796455, + "startPosition": "-225419.9", + "dir": "Close Short", + "closedPnl": "28.066332", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.029352", + "tid": 347001598405790, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "0.1", + "side": "B", + "time": 1762185796455, + "startPosition": "-225419.06", + "dir": "Close Short", + "closedPnl": "3.34123", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.003494", + "tid": 471707328112319, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "5.97", + "side": "B", + "time": 1762185796455, + "startPosition": "-225418.96", + "dir": "Close Short", + "closedPnl": "199.411731", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.208628", + "tid": 961592328056937, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "5.97", + "side": "B", + "time": 1762185796455, + "startPosition": "-225412.99", + "dir": "Close Short", + "closedPnl": "199.411731", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.208628", + "tid": 858329858723820, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "0.36", + "side": "B", + "time": 1762185796455, + "startPosition": "-225407.02", + "dir": "Close Short", + "closedPnl": "12.024828", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.01258", + "tid": 406092849470848, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "0.29", + "side": "B", + "time": 1762185796455, + "startPosition": "-225406.66", + "dir": "Close Short", + "closedPnl": "9.686667", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.010134", + "tid": 831088999206271, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.42", + "sz": "1.79", + "side": "B", + "time": 1762185796455, + "startPosition": "-225406.37", + "dir": "Close Short", + "closedPnl": "59.772217", + "hash": "0xb1ccabaf96aacfd3b346042ec46d2d021431009531adeea55595570255aea9be", + "oid": 221330773356, + "crossed": true, + "fee": "0.062557", + "tid": 615211282825143, + "cloid": "0x00000000000000000000000388000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.8", + "sz": "2.7889", + "side": "B", + "time": 1762185797495, + "startPosition": "-1571.7325", + "dir": "Close Short", + "closedPnl": "1466.347842", + "hash": "0xf973915f8fb97d66faed042ec46d390207ae00452abc9c399d3c3cb24ebd5751", + "oid": 221330790717, + "crossed": true, + "fee": "2.099506", + "tid": 847474953833211, + "cloid": "0x00000000000000000000000387000323", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.59", + "sz": "59.95", + "side": "B", + "time": 1762185799633, + "startPosition": "-225404.58", + "dir": "Close Short", + "closedPnl": "1991.676885", + "hash": "0x13b58eb4417febbd152f042ec46d5201ed00a699dc730a8fb77e3a070073c5a7", + "oid": 221330829603, + "crossed": true, + "fee": "2.097284", + "tid": 9302251407368, + "cloid": "0x00000000000000000000000388000317", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.4", + "sz": "2.7855", + "side": "B", + "time": 1762185800205, + "startPosition": "-1568.9436", + "dir": "Close Short", + "closedPnl": "1457.31789", + "hash": "0x20ffad64cf906a382279042ec46d59021dbc004a6a93890ac4c858b78e944422", + "oid": 221330840253, + "crossed": true, + "fee": "2.098467", + "tid": 682750892894701, + "cloid": "0x00000000000000000000000387000324", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "39.21", + "side": "B", + "time": 1762185801676, + "startPosition": "-225344.63", + "dir": "Close Short", + "closedPnl": "1304.998983", + "hash": "0xc0d46f44d58f1f18c24e042ec46d6b021a99002a70823dea649d1a979482f903", + "oid": 221330874353, + "crossed": true, + "fee": "1.371224", + "tid": 950831659206032, + "cloid": "0x00000000000000000000000388000318", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "20.78", + "side": "B", + "time": 1762185801676, + "startPosition": "-225305.42", + "dir": "Close Short", + "closedPnl": "691.606194", + "hash": "0xc0d46f44d58f1f18c24e042ec46d6b021a99002a70823dea649d1a979482f903", + "oid": 221330874353, + "crossed": true, + "fee": "0.726703", + "tid": 419125403875175, + "cloid": "0x00000000000000000000000388000318", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003813", + "sz": "131488.0", + "side": "B", + "time": 1762185802175, + "startPosition": "-1179779153.0", + "dir": "Close Short", + "closedPnl": "228.526144", + "hash": "0x5984459826069e605afe042ec46d7202087e007dc109bd32fd4cf0eae50a784a", + "oid": 221330885172, + "crossed": true, + "fee": "0.105286", + "tid": 379661836918145, + "cloid": "0x00000000000000000000000385000276", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.2", + "sz": "2.4986", + "side": "B", + "time": 1762185803013, + "startPosition": "-1566.1581", + "dir": "Close Short", + "closedPnl": "1310.215868", + "hash": "0xaca8c70ad5b17192ae22042ec46d7b02164400f070b490645071725d94b54b7d", + "oid": 221330898356, + "crossed": true, + "fee": "1.8817", + "tid": 943201916102586, + "cloid": "0x00000000000000000000000387000325", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.2", + "sz": "0.2879", + "side": "B", + "time": 1762185803013, + "startPosition": "-1563.6595", + "dir": "Close Short", + "closedPnl": "150.969002", + "hash": "0xaca8c70ad5b17192ae22042ec46d7b02164400f070b490645071725d94b54b7d", + "oid": 221330898356, + "crossed": true, + "fee": "0.216818", + "tid": 477296205148378, + "cloid": "0x00000000000000000000000387000325", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.49", + "sz": "59.98", + "side": "B", + "time": 1762185803421, + "startPosition": "-225284.64", + "dir": "Close Short", + "closedPnl": "1998.671554", + "hash": "0xca75bb93e3918f1dcbef042ec46d800203f900797e94adef6e3e66e6a2956908", + "oid": 221330902594, + "crossed": true, + "fee": "2.097074", + "tid": 127464157889555, + "cloid": "0x00000000000000000000000388000319", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "2.786", + "side": "B", + "time": 1762185804981, + "startPosition": "-1563.3716", + "dir": "Close Short", + "closedPnl": "1460.36548", + "hash": "0x8acedc388e31b47e8c48042ec46d97020180001e2934d3502e97878b4d358e69", + "oid": 221330924655, + "crossed": true, + "fee": "2.098259", + "tid": 701664072528052, + "cloid": "0x00000000000000000000000387000326", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.9", + "sz": "2.7855", + "side": "B", + "time": 1762185806696, + "startPosition": "-1560.5856", + "dir": "Close Short", + "closedPnl": "1458.71064", + "hash": "0xd2fd2e3f9a3505dad476042ec46dac0203170025353824ac76c5d9925938dfc5", + "oid": 221330956927, + "crossed": true, + "fee": "2.098175", + "tid": 861773015009971, + "cloid": "0x00000000000000000000000387000327", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "59.94", + "side": "B", + "time": 1762185807376, + "startPosition": "-225224.66", + "dir": "Close Short", + "closedPnl": "1990.145862", + "hash": "0x22649554e863563023de042ec46db5020b05003a83667502c62d40a7a767301a", + "oid": 221330974856, + "crossed": true, + "fee": "2.097186", + "tid": 879958665417716, + "cloid": "0x00000000000000000000000388000320", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003816", + "sz": "131130.0", + "side": "B", + "time": 1762185807376, + "startPosition": "-1179647665.0", + "dir": "Close Short", + "closedPnl": "227.51055", + "hash": "0xedb26fc14ea8601eef2c042ec46db5020b0900a6e9ab7ef0917b1b140dac3a09", + "oid": 221330974858, + "crossed": true, + "fee": "0.105082", + "tid": 644938286336001, + "cloid": "0x00000000000000000000000385000278", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.2", + "sz": "0.2787", + "side": "B", + "time": 1762185808541, + "startPosition": "-1557.8001", + "dir": "Close Short", + "closedPnl": "145.866006", + "hash": "0x6d421787da5eb7836ebb042ec46dc3020bb6006d7551d655110ac2da9952916e", + "oid": 221330994163, + "crossed": true, + "fee": "0.209948", + "tid": 2995195072929, + "cloid": "0x00000000000000000000000387000328", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.2", + "sz": "2.5074", + "side": "B", + "time": 1762185808541, + "startPosition": "-1557.5214", + "dir": "Close Short", + "closedPnl": "1312.323012", + "hash": "0x6d421787da5eb7836ebb042ec46dc3020bb6006d7551d655110ac2da9952916e", + "oid": 221330994163, + "crossed": true, + "fee": "1.888854", + "tid": 1014288960162846, + "cloid": "0x00000000000000000000000387000328", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003815", + "sz": "131027.0", + "side": "B", + "time": 1762185809326, + "startPosition": "-1179516535.0", + "dir": "Close Short", + "closedPnl": "227.462872", + "hash": "0x029b7d4fe4be291c0415042ec46dcd02039a00357fb147eea66428a2a3b20306", + "oid": 221331004048, + "crossed": true, + "fee": "0.104972", + "tid": 695274215362421, + "cloid": "0x00000000000000000000000385000279", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "16.82", + "side": "B", + "time": 1762185809858, + "startPosition": "-225164.72", + "dir": "Close Short", + "closedPnl": "558.462686", + "hash": "0xc1ccb5a9e50052b1c346042ec46dd3020649008f80037183659560fca4042c9c", + "oid": 221331009944, + "crossed": true, + "fee": "0.588499", + "tid": 47212191142598, + "cloid": "0x00000000000000000000000388000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "43.12", + "side": "B", + "time": 1762185809858, + "startPosition": "-225147.9", + "dir": "Close Short", + "closedPnl": "1431.683176", + "hash": "0xc1ccb5a9e50052b1c346042ec46dd3020649008f80037183659560fca4042c9c", + "oid": 221331009944, + "crossed": true, + "fee": "1.508686", + "tid": 50109340820400, + "cloid": "0x00000000000000000000000388000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003815", + "sz": "131027.0", + "side": "B", + "time": 1762185810921, + "startPosition": "-1179385508.0", + "dir": "Close Short", + "closedPnl": "227.462872", + "hash": "0x61d7520d1997d4396351042ec46ddf020e3e00f2b49af30b059ffd5fd89bae24", + "oid": 221331031967, + "crossed": true, + "fee": "0.104972", + "tid": 344718286011281, + "cloid": "0x00000000000000000000000385000280", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3587.4", + "sz": "2.7854", + "side": "B", + "time": 1762185811209, + "startPosition": "-1555.014", + "dir": "Close Short", + "closedPnl": "1457.265572", + "hash": "0xeee6cf4594574efdf060042ec46de3020fb6002b2f5a6dcf92af7a98535b28e8", + "oid": 221331037633, + "crossed": true, + "fee": "2.098392", + "tid": 831973232335976, + "cloid": "0x00000000000000000000000387000329", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "59.96", + "side": "B", + "time": 1762185811575, + "startPosition": "-225104.78", + "dir": "Close Short", + "closedPnl": "1991.409508", + "hash": "0xb156ba7070bf478fb2d0042ec46de7020c5800560bb26661551f65c32fb3217a", + "oid": 221331041801, + "crossed": true, + "fee": "2.09776", + "tid": 960291725557462, + "cloid": "0x00000000000000000000000388000322", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.5", + "sz": "1.1785", + "side": "B", + "time": 1762185813075, + "startPosition": "-1552.2286", + "dir": "Close Short", + "closedPnl": "617.62828", + "hash": "0x626aac7e8beaecdf63e4042ec46dfa0207e4006426ee0bb1063357d14aeec6ca", + "oid": 221331083916, + "crossed": true, + "fee": "0.887604", + "tid": 1037710444392309, + "cloid": "0x00000000000000000000000387000330", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.5", + "sz": "1.6077", + "side": "B", + "time": 1762185813075, + "startPosition": "-1551.0501", + "dir": "Close Short", + "closedPnl": "842.563416", + "hash": "0x626aac7e8beaecdf63e4042ec46dfa0207e4006426ee0bb1063357d14aeec6ca", + "oid": 221331083916, + "crossed": true, + "fee": "1.210863", + "tid": 747750937591799, + "cloid": "0x00000000000000000000000387000330", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "31.97", + "side": "B", + "time": 1762185813587, + "startPosition": "-225044.82", + "dir": "Close Short", + "closedPnl": "1067.871531", + "hash": "0xec7a77fdb626c75dedf4042ec46e010219c500e35129e62f90432350752aa148", + "oid": 221331094764, + "crossed": true, + "fee": "1.117226", + "tid": 706261222292290, + "cloid": "0x00000000000000000000000388000323", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.41", + "sz": "28.06", + "side": "B", + "time": 1762185813587, + "startPosition": "-225012.85", + "dir": "Close Short", + "closedPnl": "937.268538", + "hash": "0xec7a77fdb626c75dedf4042ec46e010219c500e35129e62f90432350752aa148", + "oid": 221331094764, + "crossed": true, + "fee": "0.980587", + "tid": 821960393660361, + "cloid": "0x00000000000000000000000388000323", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003809", + "sz": "131302.0", + "side": "B", + "time": 1762185814018, + "startPosition": "-1179254481.0", + "dir": "Close Short", + "closedPnl": "228.728084", + "hash": "0x9706ef5911f897fa9880042ec46e06020cb1003eacfbb6cc3acf9aabd0fc71e5", + "oid": 221331103031, + "crossed": true, + "fee": "0.105027", + "tid": 990772383721757, + "cloid": "0x00000000000000000000000385000281", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3585.6", + "sz": "2.7868", + "side": "B", + "time": 1762185814835, + "startPosition": "-1549.4424", + "dir": "Close Short", + "closedPnl": "1463.014264", + "hash": "0x93a29098cbe0e86a951c042ec46e11020b31007e66e4073c376b3beb8ae4c255", + "oid": 221331117064, + "crossed": true, + "fee": "2.098393", + "tid": 279965418447838, + "cloid": "0x00000000000000000000000387000331", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "60.05", + "side": "B", + "time": 1762185815805, + "startPosition": "-224984.79", + "dir": "Close Short", + "closedPnl": "2009.411115", + "hash": "0x35a06a27bd7a349a371a042ec46e1e0205b1000d587d536cd969157a7c7e0e84", + "oid": 221331150416, + "crossed": true, + "fee": "2.097756", + "tid": 790228851689074, + "cloid": "0x00000000000000000000000388000324", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.8", + "sz": "2.7876", + "side": "B", + "time": 1762185816988, + "startPosition": "-1546.6556", + "dir": "Close Short", + "closedPnl": "1465.664328", + "hash": "0x67c379235ba40e8c693d042ec46e2b02138b0008f6a72d5e0b8c24761aa7e877", + "oid": 221331180480, + "crossed": true, + "fee": "2.098527", + "tid": 585850309014402, + "cloid": "0x00000000000000000000000387000332", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "60.04", + "side": "B", + "time": 1762185817658, + "startPosition": "-224924.74", + "dir": "Close Short", + "closedPnl": "2009.076492", + "hash": "0x8b504ad83f702aec8cca042ec46e34020be300bdda7349be2f18f62afe7404d7", + "oid": 221331189078, + "crossed": true, + "fee": "2.097407", + "tid": 1095744989861472, + "cloid": "0x00000000000000000000000388000325", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.8", + "sz": "2.7872", + "side": "B", + "time": 1762185819388, + "startPosition": "-1543.868", + "dir": "Close Short", + "closedPnl": "1465.454016", + "hash": "0x466839713871e9a747e1042ec46e490204ca0056d3750879ea30e4c3f775c391", + "oid": 221331217195, + "crossed": true, + "fee": "2.098226", + "tid": 538983163184824, + "cloid": "0x00000000000000000000000387000333", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "131427.0", + "side": "B", + "time": 1762185819666, + "startPosition": "-1179123179.0", + "dir": "Close Short", + "closedPnl": "229.208688", + "hash": "0x30f5e332bc96779f326f042ec46e4d020548001857999671d4be8e857b9a5189", + "oid": 221331219647, + "crossed": true, + "fee": "0.105071", + "tid": 542629067341419, + "cloid": "0x00000000000000000000000385000283", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.37", + "sz": "60.04", + "side": "B", + "time": 1762185820047, + "startPosition": "-224864.7", + "dir": "Close Short", + "closedPnl": "2007.875692", + "hash": "0x567bebc44996577357f5042ec46e53020bfa00a9e4997645fa449717089a315d", + "oid": 221331231621, + "crossed": true, + "fee": "2.097659", + "tid": 337502520521729, + "cloid": "0x00000000000000000000000388000326", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26821", + "sz": "3749.9", + "side": "B", + "time": 1762185821209, + "startPosition": "-3985537.1000000001", + "dir": "Close Short", + "closedPnl": "1998.921694", + "hash": "0x59dd5de5430cbaee5b57042ec46e6202021e00cade0fd9c0fda60938020094d8", + "oid": 221331252510, + "crossed": true, + "fee": "0.211209", + "tid": 675631448090314, + "cloid": "0x00000000000000000000000384000148", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.7", + "sz": "2.7887", + "side": "B", + "time": 1762185821209, + "startPosition": "-1541.0808", + "dir": "Close Short", + "closedPnl": "1469.310256", + "hash": "0x561ffff442a953c35799042ec46e6202022800d9ddac7295f9e8ab4701ad2dad", + "oid": 221331252516, + "crossed": true, + "fee": "2.098711", + "tid": 828815196481086, + "cloid": "0x00000000000000000000000387000334", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003805", + "sz": "131397.0", + "side": "B", + "time": 1762185821887, + "startPosition": "-1178991752.0", + "dir": "Close Short", + "closedPnl": "229.419162", + "hash": "0x257381c76138c7c926ed042ec46e6a0208d100acfc3be69bc93c2d1a203ca1b3", + "oid": 221331271180, + "crossed": true, + "fee": "0.104992", + "tid": 950016268995583, + "cloid": "0x00000000000000000000000385000284", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "60.06", + "side": "B", + "time": 1762185822088, + "startPosition": "-224804.66", + "dir": "Close Short", + "closedPnl": "2010.946938", + "hash": "0x5d9c5343faee31885f16042ec46e6d0208d5002995e1505a0164fe96b9e20b73", + "oid": 221331274927, + "crossed": true, + "fee": "2.097853", + "tid": 645004991921401, + "cloid": "0x00000000000000000000000388000327", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26814", + "sz": "3439.6", + "side": "A", + "time": 1762185822088, + "startPosition": "4003133.5960630002", + "dir": "Sell", + "closedPnl": "-1835.21168844", + "hash": "0x2cfe8e06f601f4592e78042ec46e6d02095700ec9105132bd0c73959b505ce43", + "oid": 221331275029, + "crossed": true, + "fee": "0.25824241", + "tid": 65209298113409, + "cloid": "0x10000000000000000000000475000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26791", + "sz": "310.3", + "side": "A", + "time": 1762185822799, + "startPosition": "3999693.9960630001", + "dir": "Sell", + "closedPnl": "-165.63311656", + "hash": "0xce84a2ab5b8fc036cffe042ec46e7402050c0090f682df08724d4dfe1a839a21", + "oid": 221331275029, + "crossed": false, + "fee": "0.00581927", + "tid": 117018572822683, + "cloid": "0x10000000000000000000000475000061", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.5", + "sz": "2.7886", + "side": "B", + "time": 1762185822999, + "startPosition": "-1538.2921", + "dir": "Close Short", + "closedPnl": "1469.815288", + "hash": "0xaba8162065619176ad21042ec46e760205d000060064b0484f70c17324656b61", + "oid": 221331286559, + "crossed": true, + "fee": "2.098519", + "tid": 796815719761869, + "cloid": "0x00000000000000000000000387000335", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105625.0", + "sz": "0.23649", + "side": "B", + "time": 1762185822999, + "startPosition": "-1175.95405", + "dir": "Close Short", + "closedPnl": "2043.841176", + "hash": "0xbca7be0fb15e8a93be21042ec46e760205e700f54c51a965607069627052647e", + "oid": 221331286576, + "crossed": true, + "fee": "5.245643", + "tid": 331093732875944, + "cloid": "0x00000000000000000000000389000001", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "21.26", + "side": "B", + "time": 1762185824009, + "startPosition": "-224744.6", + "dir": "Close Short", + "closedPnl": "711.833698", + "hash": "0xd4cd1c468f576633d646042ec46e81020350002c2a5a85057895c7994e5b401e", + "oid": 221331301723, + "crossed": true, + "fee": "0.742596", + "tid": 183574736466695, + "cloid": "0x00000000000000000000000388000328", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "38.79", + "side": "B", + "time": 1762185824009, + "startPosition": "-224723.34", + "dir": "Close Short", + "closedPnl": "1298.778417", + "hash": "0xd4cd1c468f576633d646042ec46e81020350002c2a5a85057895c7994e5b401e", + "oid": 221331301723, + "crossed": true, + "fee": "1.354907", + "tid": 678624699113201, + "cloid": "0x00000000000000000000000388000328", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105625.0", + "sz": "0.23649", + "side": "B", + "time": 1762185824304, + "startPosition": "-1175.71756", + "dir": "Close Short", + "closedPnl": "2043.841176", + "hash": "0x9106b935225f0abf9280042ec46e86020327001abd52299134cf6487e152e4aa", + "oid": 221331305749, + "crossed": true, + "fee": "5.245643", + "tid": 980323150269611, + "cloid": "0x00000000000000000000000389000002", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.6", + "sz": "1.8", + "side": "B", + "time": 1762185824969, + "startPosition": "-1535.5035", + "dir": "Close Short", + "closedPnl": "950.364", + "hash": "0xfa44f30f7d80bfd8fbbe042ec46e8f02046500f51883deab9e0d9e623c8499c3", + "oid": 221331314637, + "crossed": true, + "fee": "1.354222", + "tid": 590841275133702, + "cloid": "0x00000000000000000000000387000336", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.6", + "sz": "0.9891", + "side": "B", + "time": 1762185824969, + "startPosition": "-1533.7035", + "dir": "Close Short", + "closedPnl": "522.225018", + "hash": "0xfa44f30f7d80bfd8fbbe042ec46e8f02046500f51883deab9e0d9e623c8499c3", + "oid": 221331314637, + "crossed": true, + "fee": "0.744145", + "tid": 106983875738655, + "cloid": "0x00000000000000000000000387000336", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "60.05", + "side": "B", + "time": 1762185826120, + "startPosition": "-224684.55", + "dir": "Close Short", + "closedPnl": "2010.612115", + "hash": "0x476c0be2b3c002c848e5042ec46e9e0206de00c84ec3219aeb34b73572c3dcb2", + "oid": 221331338682, + "crossed": true, + "fee": "2.097504", + "tid": 360915466757750, + "cloid": "0x00000000000000000000000388000329", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105629.0", + "sz": "0.2365", + "side": "B", + "time": 1762185826120, + "startPosition": "-1175.48107", + "dir": "Close Short", + "closedPnl": "2042.9816", + "hash": "0xba554317327c19b1bbce042ec46e9e02070100fccd7f38835e1dee69f17ff39c", + "oid": 221331338702, + "crossed": true, + "fee": "5.246064", + "tid": 406757201292198, + "cloid": "0x00000000000000000000000389000003", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.3", + "sz": "0.1395", + "side": "B", + "time": 1762185826494, + "startPosition": "-1532.7144", + "dir": "Close Short", + "closedPnl": "73.55556", + "hash": "0x1c205036325253151d9a042ec46ea301d600681bcd5571e7bfe8fb88f1562cff", + "oid": 221331346502, + "crossed": true, + "fee": "0.104972", + "tid": 850511171861134, + "cloid": "0x00000000000000000000000387000337", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.6", + "sz": "2.6495", + "side": "B", + "time": 1762185826494, + "startPosition": "-1532.5749", + "dir": "Close Short", + "closedPnl": "1396.23351", + "hash": "0x1c205036325253151d9a042ec46ea301d600681bcd5571e7bfe8fb88f1562cff", + "oid": 221331346502, + "crossed": true, + "fee": "1.993897", + "tid": 897503345813436, + "cloid": "0x00000000000000000000000387000337", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003805", + "sz": "131432.0", + "side": "B", + "time": 1762185826494, + "startPosition": "-1178860355.0", + "dir": "Close Short", + "closedPnl": "229.480272", + "hash": "0x81c73d6c6574d80c8340042ec46ea301d80055520077f6de258fe8bf2478b1f7", + "oid": 221331346503, + "crossed": true, + "fee": "0.10502", + "tid": 186137830442761, + "cloid": "0x00000000000000000000000385000286", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.34", + "sz": "60.04", + "side": "B", + "time": 1762185827848, + "startPosition": "-224624.5", + "dir": "Close Short", + "closedPnl": "2009.676892", + "hash": "0xaa761615badd3be6abef042ec46eb302064e00fb55d05ab84e3ec16879d115d1", + "oid": 221331374452, + "crossed": true, + "fee": "2.097281", + "tid": 787179883758756, + "cloid": "0x00000000000000000000000388000330", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003806", + "sz": "131406.0", + "side": "B", + "time": 1762185827993, + "startPosition": "-1178728923.0", + "dir": "Close Short", + "closedPnl": "229.30347", + "hash": "0x999e7c3e6d04dfb69b18042ec46eb50202df00240807fe883d6727912c08b9a1", + "oid": 221331376853, + "crossed": true, + "fee": "0.105027", + "tid": 872849036240701, + "cloid": "0x00000000000000000000000385000287", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.2", + "sz": "0.198", + "side": "B", + "time": 1762185828849, + "startPosition": "-1529.9254", + "dir": "Close Short", + "closedPnl": "104.22324", + "hash": "0x78bdaa8283a8a2ea7a37042ec46ebf02042700681eabc1bc1c8655d542ac7cd5", + "oid": 221331393648, + "crossed": true, + "fee": "0.149031", + "tid": 256874748537051, + "cloid": "0x00000000000000000000000387000338", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.2", + "sz": "2.5902", + "side": "B", + "time": 1762185828849, + "startPosition": "-1529.7274", + "dir": "Close Short", + "closedPnl": "1363.429476", + "hash": "0x78bdaa8283a8a2ea7a37042ec46ebf02042700681eabc1bc1c8655d542ac7cd5", + "oid": 221331393648, + "crossed": true, + "fee": "1.949596", + "tid": 462877674921804, + "cloid": "0x00000000000000000000000387000338", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105643.0", + "sz": "0.17693", + "side": "B", + "time": 1762185829123, + "startPosition": "-1175.24457", + "dir": "Close Short", + "closedPnl": "1525.915092", + "hash": "0xcd5d826c94de4e4bced7042ec46ec302089e00522fd16d1d71262dbf53d22836", + "oid": 221331398306, + "crossed": true, + "fee": "3.925197", + "tid": 1054865124360559, + "cloid": "0x00000000000000000000000389000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105643.0", + "sz": "0.05955", + "side": "B", + "time": 1762185829123, + "startPosition": "-1175.06764", + "dir": "Close Short", + "closedPnl": "513.58302", + "hash": "0xcd5d826c94de4e4bced7042ec46ec302089e00522fd16d1d71262dbf53d22836", + "oid": 221331398306, + "crossed": true, + "fee": "1.321118", + "tid": 1039816291129820, + "cloid": "0x00000000000000000000000389000004", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003804", + "sz": "131406.0", + "side": "B", + "time": 1762185829532, + "startPosition": "-1178597517.0", + "dir": "Close Short", + "closedPnl": "229.566282", + "hash": "0xdb17b31f3beed2b6dc91042ec46ec90204990004d6e1f1887ee05e71fae2aca1", + "oid": 221331403880, + "crossed": true, + "fee": "0.104972", + "tid": 208086449603920, + "cloid": "0x00000000000000000000000385000288", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.4", + "sz": "60.03", + "side": "B", + "time": 1762185829796, + "startPosition": "-224564.46", + "dir": "Close Short", + "closedPnl": "2005.740369", + "hash": "0x7b882ca1b0f166e77d01042ec46ecd0203fe00874bf485b91f50d7f46ff540d2", + "oid": 221331406312, + "crossed": true, + "fee": "2.097688", + "tid": 620105576724118, + "cloid": "0x00000000000000000000000388000331", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105643.0", + "sz": "0.23646", + "side": "B", + "time": 1762185830811, + "startPosition": "-1175.00809", + "dir": "Close Short", + "closedPnl": "2039.325624", + "hash": "0x5c533d1876f4c6835dcc042ec46edb02069800fe11f7e555001be86b35f8a06e", + "oid": 221331423906, + "crossed": true, + "fee": "5.245872", + "tid": 1022026211162963, + "cloid": "0x00000000000000000000000389000005", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.5", + "sz": "1.4807", + "side": "B", + "time": 1762185831011, + "startPosition": "-1527.1372", + "dir": "Close Short", + "closedPnl": "780.447356", + "hash": "0x00efb2e21b8ce0220269042ec46ede02057a00c7b68ffef4a4b85e34da80ba0c", + "oid": 221331427069, + "crossed": true, + "fee": "1.114278", + "tid": 632853584070122, + "cloid": "0x00000000000000000000000387000339", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.5", + "sz": "1.3076", + "side": "B", + "time": 1762185831011, + "startPosition": "-1525.6565", + "dir": "Close Short", + "closedPnl": "689.209808", + "hash": "0x00efb2e21b8ce0220269042ec46ede02057a00c7b68ffef4a4b85e34da80ba0c", + "oid": 221331427069, + "crossed": true, + "fee": "0.984014", + "tid": 46169931483416, + "cloid": "0x00000000000000000000000387000339", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "59.01", + "side": "B", + "time": 1762185831417, + "startPosition": "-224504.43", + "dir": "Close Short", + "closedPnl": "1974.610323", + "hash": "0xc194d456a75a016dc30e042ec46ee3020366003c425d203f655d7fa9665ddb58", + "oid": 221331434912, + "crossed": true, + "fee": "2.061425", + "tid": 876072272428819, + "cloid": "0x00000000000000000000000388000332", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "1.02", + "side": "B", + "time": 1762185831417, + "startPosition": "-224445.42", + "dir": "Close Short", + "closedPnl": "34.131546", + "hash": "0xc194d456a75a016dc30e042ec46ee3020366003c425d203f655d7fa9665ddb58", + "oid": 221331434912, + "crossed": true, + "fee": "0.035632", + "tid": 708227459580093, + "cloid": "0x00000000000000000000000388000332", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "60.04", + "side": "B", + "time": 1762185834139, + "startPosition": "-224444.4", + "dir": "Close Short", + "closedPnl": "2010.277292", + "hash": "0x9b007adeb3f746b99c7a042ec46f060206d100c44efa658b3ec9263172fb20a4", + "oid": 221331469772, + "crossed": true, + "fee": "2.097155", + "tid": 266019207960039, + "cloid": "0x00000000000000000000000388000333", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.6", + "sz": "1.3281", + "side": "B", + "time": 1762185834139, + "startPosition": "-1524.3489", + "dir": "Close Short", + "closedPnl": "699.882138", + "hash": "0xb37adeb000ab0e2cb4f4042ec46f060206d400959bae2cfe57438a02bfaee817", + "oid": 221331469773, + "crossed": true, + "fee": "0.999469", + "tid": 235010198846007, + "cloid": "0x00000000000000000000000387000340", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.6", + "sz": "1.4602", + "side": "B", + "time": 1762185834139, + "startPosition": "-1523.0208", + "dir": "Close Short", + "closedPnl": "769.496196", + "hash": "0xb37adeb000ab0e2cb4f4042ec46f060206d400959bae2cfe57438a02bfaee817", + "oid": 221331469773, + "crossed": true, + "fee": "1.098882", + "tid": 869204941465669, + "cloid": "0x00000000000000000000000387000340", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105654.0", + "sz": "0.00011", + "side": "B", + "time": 1762185834983, + "startPosition": "-1174.77163", + "dir": "Close Short", + "closedPnl": "0.947474", + "hash": "0xf61f4fd834c69f81f799042ec46f110205ef00bdcfc9be5499e7fb2af3ca796c", + "oid": 221331484111, + "crossed": true, + "fee": "0.00244", + "tid": 1053457681116420, + "cloid": "0x00000000000000000000000389000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105654.0", + "sz": "0.00011", + "side": "B", + "time": 1762185834983, + "startPosition": "-1174.77152", + "dir": "Close Short", + "closedPnl": "0.947474", + "hash": "0xf61f4fd834c69f81f799042ec46f110205ef00bdcfc9be5499e7fb2af3ca796c", + "oid": 221331484111, + "crossed": true, + "fee": "0.00244", + "tid": 693290043976221, + "cloid": "0x00000000000000000000000389000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105655.0", + "sz": "0.00011", + "side": "B", + "time": 1762185834983, + "startPosition": "-1174.77141", + "dir": "Close Short", + "closedPnl": "0.947364", + "hash": "0xf61f4fd834c69f81f799042ec46f110205ef00bdcfc9be5499e7fb2af3ca796c", + "oid": 221331484111, + "crossed": true, + "fee": "0.00244", + "tid": 678758355641116, + "cloid": "0x00000000000000000000000389000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105655.0", + "sz": "0.00011", + "side": "B", + "time": 1762185834983, + "startPosition": "-1174.7713", + "dir": "Close Short", + "closedPnl": "0.947364", + "hash": "0xf61f4fd834c69f81f799042ec46f110205ef00bdcfc9be5499e7fb2af3ca796c", + "oid": 221331484111, + "crossed": true, + "fee": "0.00244", + "tid": 398771327384427, + "cloid": "0x00000000000000000000000389000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105655.0", + "sz": "0.00015", + "side": "B", + "time": 1762185834983, + "startPosition": "-1174.77119", + "dir": "Close Short", + "closedPnl": "1.29186", + "hash": "0xf61f4fd834c69f81f799042ec46f110205ef00bdcfc9be5499e7fb2af3ca796c", + "oid": 221331484111, + "crossed": true, + "fee": "0.003328", + "tid": 1067726220791828, + "cloid": "0x00000000000000000000000389000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105656.0", + "sz": "0.00011", + "side": "B", + "time": 1762185834983, + "startPosition": "-1174.77104", + "dir": "Close Short", + "closedPnl": "0.947254", + "hash": "0xf61f4fd834c69f81f799042ec46f110205ef00bdcfc9be5499e7fb2af3ca796c", + "oid": 221331484111, + "crossed": true, + "fee": "0.00244", + "tid": 382207426829136, + "cloid": "0x00000000000000000000000389000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105656.0", + "sz": "0.00011", + "side": "B", + "time": 1762185834983, + "startPosition": "-1174.77093", + "dir": "Close Short", + "closedPnl": "0.947254", + "hash": "0xf61f4fd834c69f81f799042ec46f110205ef00bdcfc9be5499e7fb2af3ca796c", + "oid": 221331484111, + "crossed": true, + "fee": "0.00244", + "tid": 224514565947851, + "cloid": "0x00000000000000000000000389000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105656.0", + "sz": "0.00094", + "side": "B", + "time": 1762185834983, + "startPosition": "-1174.77082", + "dir": "Close Short", + "closedPnl": "8.094716", + "hash": "0xf61f4fd834c69f81f799042ec46f110205ef00bdcfc9be5499e7fb2af3ca796c", + "oid": 221331484111, + "crossed": true, + "fee": "0.020856", + "tid": 594339312098804, + "cloid": "0x00000000000000000000000389000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105656.0", + "sz": "0.23472", + "side": "B", + "time": 1762185834983, + "startPosition": "-1174.76988", + "dir": "Close Short", + "closedPnl": "2021.267808", + "hash": "0xf61f4fd834c69f81f799042ec46f110205ef00bdcfc9be5499e7fb2af3ca796c", + "oid": 221331484111, + "crossed": true, + "fee": "5.207911", + "tid": 1011558398690803, + "cloid": "0x00000000000000000000000389000006", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.1", + "sz": "2.7882", + "side": "B", + "time": 1762185836028, + "startPosition": "-1521.5606", + "dir": "Close Short", + "closedPnl": "1467.931536", + "hash": "0x3b7c17c0abc3a2dd3cf5042ec46f1c02036800a646c6c1afdf44c3136ac77cc7", + "oid": 221331499460, + "crossed": true, + "fee": "2.098569", + "tid": 351282375065667, + "cloid": "0x00000000000000000000000387000341", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "60.04", + "side": "B", + "time": 1762185836230, + "startPosition": "-224384.36", + "dir": "Close Short", + "closedPnl": "2010.277292", + "hash": "0x87cb42af6482b1b48944042ec46f1e02074a0094ff85d0862b93ee0223868b9f", + "oid": 221331505077, + "crossed": true, + "fee": "2.097155", + "tid": 820996720075856, + "cloid": "0x00000000000000000000000388000334", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105654.0", + "sz": "0.23648", + "side": "B", + "time": 1762185836230, + "startPosition": "-1174.53516", + "dir": "Close Short", + "closedPnl": "2036.896832", + "hash": "0xcd7d10324a3aa0e2cef6042ec46f1e02075d0017e53dbfb47145bb85093e7acd", + "oid": 221331505090, + "crossed": true, + "fee": "5.246862", + "tid": 450530099827458, + "cloid": "0x00000000000000000000000389000007", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.2", + "sz": "2.7889", + "side": "B", + "time": 1762185837645, + "startPosition": "-1518.7724", + "dir": "Close Short", + "closedPnl": "1470.810082", + "hash": "0x69eb7686e441404f6b65042ec46f300204cc006c7f445f210db421d9a3451a3a", + "oid": 221331538045, + "crossed": true, + "fee": "2.098569", + "tid": 1122595454304259, + "cloid": "0x00000000000000000000000387000342", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.29", + "sz": "50.6", + "side": "B", + "time": 1762185837841, + "startPosition": "-224324.32", + "dir": "Close Short", + "closedPnl": "1696.22838", + "hash": "0xf18a89d27824bb55f304042ec46f340203a600b81327da289553352537289540", + "oid": 221331544153, + "crossed": true, + "fee": "1.766997", + "tid": 5959949889229, + "cloid": "0x00000000000000000000000388000335", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.29", + "sz": "9.46", + "side": "B", + "time": 1762185837841, + "startPosition": "-224273.72", + "dir": "Close Short", + "closedPnl": "317.120958", + "hash": "0xf18a89d27824bb55f304042ec46f340203a600b81327da289553352537289540", + "oid": 221331544153, + "crossed": true, + "fee": "0.330351", + "tid": 913422175567617, + "cloid": "0x00000000000000000000000388000335", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105642.0", + "sz": "0.23649", + "side": "B", + "time": 1762185839372, + "startPosition": "-1174.29868", + "dir": "Close Short", + "closedPnl": "2039.820846", + "hash": "0xaf71c22b41757ddfb0eb042ec46f4802089f0010dc789cb1533a6d7e007957ca", + "oid": 221331568274, + "crossed": true, + "fee": "5.246488", + "tid": 814805509525192, + "cloid": "0x00000000000000000000000389000008", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "18.84", + "side": "B", + "time": 1762185840090, + "startPosition": "-224264.26", + "dir": "Close Short", + "closedPnl": "631.183332", + "hash": "0x494dc142a18370284ac7042ec46f5102095b00283c868efaed166c9560874a12", + "oid": 221331580950, + "crossed": true, + "fee": "0.657988", + "tid": 326071395580800, + "cloid": "0x00000000000000000000000388000336", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "1.08", + "side": "B", + "time": 1762185840090, + "startPosition": "-224245.42", + "dir": "Close Short", + "closedPnl": "36.182484", + "hash": "0x494dc142a18370284ac7042ec46f5102095b00283c868efaed166c9560874a12", + "oid": 221331580950, + "crossed": true, + "fee": "0.037719", + "tid": 488892302243125, + "cloid": "0x00000000000000000000000388000336", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "0.29", + "side": "B", + "time": 1762185840090, + "startPosition": "-224244.34", + "dir": "Close Short", + "closedPnl": "9.709867", + "hash": "0x494dc142a18370284ac7042ec46f5102095b00283c868efaed166c9560874a12", + "oid": 221331580950, + "crossed": true, + "fee": "0.010129", + "tid": 755531242337139, + "cloid": "0x00000000000000000000000388000336", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.35", + "sz": "39.84", + "side": "B", + "time": 1762185840090, + "startPosition": "-224244.05", + "dir": "Close Short", + "closedPnl": "1333.138032", + "hash": "0x494dc142a18370284ac7042ec46f5102095b00283c868efaed166c9560874a12", + "oid": 221331580950, + "crossed": true, + "fee": "1.39175", + "tid": 112036698908182, + "cloid": "0x00000000000000000000000388000336", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.1", + "sz": "2.7884", + "side": "B", + "time": 1762185840627, + "startPosition": "-1515.9835", + "dir": "Close Short", + "closedPnl": "1468.036832", + "hash": "0x2de4c6d0750313932f5e042ec46f570208b500b610063265d1ad72233406ed7d", + "oid": 221331593072, + "crossed": true, + "fee": "2.098719", + "tid": 55552902708571, + "cloid": "0x00000000000000000000000387000343", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105650.0", + "sz": "0.23648", + "side": "B", + "time": 1762185841763, + "startPosition": "-1174.06219", + "dir": "Close Short", + "closedPnl": "2037.842752", + "hash": "0xc248ee9e183525a4c3c2042ec46f64020b5f0083b3384476661199f0d738ff8f", + "oid": 221331608978, + "crossed": true, + "fee": "5.246663", + "tid": 54166681972852, + "cloid": "0x00000000000000000000000389000009", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "60.06", + "side": "B", + "time": 1762185842000, + "startPosition": "-224204.21", + "dir": "Close Short", + "closedPnl": "2010.946938", + "hash": "0x69f4bd8d942a03006b6e042ec46f6702092700732f2d21d20dbd68e0532ddceb", + "oid": 221331614044, + "crossed": true, + "fee": "2.097853", + "tid": 1088232320110405, + "cloid": "0x00000000000000000000000388000337", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.8", + "sz": "2.7883", + "side": "B", + "time": 1762185842276, + "startPosition": "-1513.1951", + "dir": "Close Short", + "closedPnl": "1468.820674", + "hash": "0x33487498a52b2a6a34c2042ec46f6a020f68007e402e493cd7111feb642f0454", + "oid": 221331622351, + "crossed": true, + "fee": "2.098469", + "tid": 1084389145922883, + "cloid": "0x00000000000000000000000387000344", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105640.0", + "sz": "0.23652", + "side": "B", + "time": 1762185843099, + "startPosition": "-1173.82571", + "dir": "Close Short", + "closedPnl": "2040.552648", + "hash": "0x5a63aff0f2f3f92b5bdd042ec46f750203d600d68df717fdfe2c5b43b1f7d315", + "oid": 221331642838, + "crossed": true, + "fee": "5.247054", + "tid": 464568437728579, + "cloid": "0x00000000000000000000000389000010", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.18", + "sz": "48.11", + "side": "B", + "time": 1762185843885, + "startPosition": "-224144.15", + "dir": "Close Short", + "closedPnl": "1618.049953", + "hash": "0x4d4b0b785d0d13954ec4042ec46f8202071e005df8003267f113b6cb1c00ed7f", + "oid": 221331665792, + "crossed": true, + "fee": "1.678933", + "tid": 772149601835699, + "cloid": "0x00000000000000000000000388000338", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.19", + "sz": "11.99", + "side": "B", + "time": 1762185843885, + "startPosition": "-224096.04", + "dir": "Close Short", + "closedPnl": "403.131377", + "hash": "0x4d4b0b785d0d13954ec4042ec46f8202071e005df8003267f113b6cb1c00ed7f", + "oid": 221331665792, + "crossed": true, + "fee": "0.418449", + "tid": 191929903161789, + "cloid": "0x00000000000000000000000388000338", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26795", + "sz": "3733.5", + "side": "B", + "time": 1762185843885, + "startPosition": "-3981787.2000000002", + "dir": "Close Short", + "closedPnl": "1991.15022", + "hash": "0x62081158a95d73dd6381042ec46f8202072b003e445092af05d0bcab68514dc8", + "oid": 221331572361, + "crossed": false, + "fee": "0.02801", + "tid": 615761400871336, + "cloid": "0x00000000000000000000000384000153", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003798", + "sz": "131475.0", + "side": "B", + "time": 1762185845227, + "startPosition": "-1178466111.0", + "dir": "Close Short", + "closedPnl": "230.475675", + "hash": "0x384885a0597f78ca39c2042ec46f900216b70085f472979cdc1130f3187352b4", + "oid": 221331691512, + "crossed": true, + "fee": "0.104861", + "tid": 630524535050004, + "cloid": "0x00000000000000000000000385000293", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.1", + "sz": "2.7891", + "side": "B", + "time": 1762185845227, + "startPosition": "-1510.4068", + "dir": "Close Short", + "closedPnl": "1473.983568", + "hash": "0x0d1b4c1a0aeaad800e95042ec46f900216e600ffa5edcc52b0e3f76cc9ee876a", + "oid": 221331691536, + "crossed": true, + "fee": "2.098075", + "tid": 828558461392481, + "cloid": "0x00000000000000000000000387000345", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26794", + "sz": "2687.4", + "side": "A", + "time": 1762185846326, + "startPosition": "3999383.6960629998", + "dir": "Sell", + "closedPnl": "-1434.40999178", + "hash": "0x6337ac8bc6c6ea0a64b1042ec46f9a0221a2007161ca08dc070057de85cac3f5", + "oid": 221331718351, + "crossed": true, + "fee": "0.20161734", + "tid": 406027626327906, + "cloid": "0x10000000000000000000000475000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.2677", + "sz": "1046.1", + "side": "A", + "time": 1762185846326, + "startPosition": "3996696.2960629999", + "dir": "Sell", + "closedPnl": "-558.61092572", + "hash": "0x6337ac8bc6c6ea0a64b1042ec46f9a0221a2007161ca08dc070057de85cac3f5", + "oid": 221331718351, + "crossed": true, + "fee": "0.07841147", + "tid": 880347216002094, + "cloid": "0x10000000000000000000000475000062", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105613.0", + "sz": "0.23655", + "side": "B", + "time": 1762185846735, + "startPosition": "-1173.58919", + "dir": "Close Short", + "closedPnl": "2047.19832", + "hash": "0xea692fcfa703d805ebe2042ec46f9f02096d00b54206f6d78e31db226607b1f0", + "oid": 221331722372, + "crossed": true, + "fee": "5.246378", + "tid": 462594570830766, + "cloid": "0x00000000000000000000000389000011", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.2", + "sz": "2.31", + "side": "B", + "time": 1762185846918, + "startPosition": "-224084.05", + "dir": "Close Short", + "closedPnl": "77.644413", + "hash": "0x55e7d9b5e9900cac5761042ec46fa2020d2f009b84932b7ef9b08508a893e696", + "oid": 221331727940, + "crossed": true, + "fee": "0.080623", + "tid": 827459568561075, + "cloid": "0x00000000000000000000000388000339", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "12.0", + "side": "B", + "time": 1762185846918, + "startPosition": "-224081.74", + "dir": "Close Short", + "closedPnl": "403.2276", + "hash": "0x55e7d9b5e9900cac5761042ec46fa2020d2f009b84932b7ef9b08508a893e696", + "oid": 221331727940, + "crossed": true, + "fee": "0.418849", + "tid": 833365726149245, + "cloid": "0x00000000000000000000000388000339", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "45.77", + "side": "B", + "time": 1762185846918, + "startPosition": "-224069.74", + "dir": "Close Short", + "closedPnl": "1537.977271", + "hash": "0x55e7d9b5e9900cac5761042ec46fa2020d2f009b84932b7ef9b08508a893e696", + "oid": 221331727940, + "crossed": true, + "fee": "1.59756", + "tid": 587114014029779, + "cloid": "0x00000000000000000000000388000339", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003796", + "sz": "131659.0", + "side": "B", + "time": 1762185847809, + "startPosition": "-1178334636.0", + "dir": "Close Short", + "closedPnl": "231.061545", + "hash": "0xdbadf1828e122a3ddd27042ec46faf0207b600682915490f7f769cd54d160428", + "oid": 221331738042, + "crossed": true, + "fee": "0.104953", + "tid": 940137539065497, + "cloid": "0x00000000000000000000000385000294", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.1", + "sz": "2.7895", + "side": "B", + "time": 1762185847809, + "startPosition": "-1507.6177", + "dir": "Close Short", + "closedPnl": "1474.19496", + "hash": "0x8ac40a2ca740058e8c3d042ec46faf0207c10012424324602e8cb57f6643df79", + "oid": 221331738049, + "crossed": true, + "fee": "2.098376", + "tid": 117761482619155, + "cloid": "0x00000000000000000000000387000346", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105613.0", + "sz": "0.23652", + "side": "B", + "time": 1762185848883, + "startPosition": "-1173.35264", + "dir": "Close Short", + "closedPnl": "2046.938688", + "hash": "0x7156a8bfb81628c672d0042ec46fbd020a9000a553194798151f5412771a02b1", + "oid": 221331757230, + "crossed": true, + "fee": "5.245713", + "tid": 821438211300919, + "cloid": "0x00000000000000000000000389000012", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26797", + "sz": "1267.9", + "side": "B", + "time": 1762185849328, + "startPosition": "-3978053.7000000002", + "dir": "Close Short", + "closedPnl": "676.17107", + "hash": "0x6242aed583bfa7b163bc042ec46fc202048100bb1eb2c683060b5a2842b3819c", + "oid": 221331762489, + "crossed": true, + "fee": "0.071349", + "tid": 504225133051407, + "cloid": "0x00000000000000000000000384000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26797", + "sz": "2464.2", + "side": "B", + "time": 1762185849328, + "startPosition": "-3976785.7999999998", + "dir": "Close Short", + "closedPnl": "1314.15786", + "hash": "0x6242aed583bfa7b163bc042ec46fc202048100bb1eb2c683060b5a2842b3819c", + "oid": 221331762489, + "crossed": true, + "fee": "0.138669", + "tid": 748148694031854, + "cloid": "0x00000000000000000000000384000154", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.12", + "sz": "60.12", + "side": "B", + "time": 1762185849539, + "startPosition": "-224023.97", + "dir": "Close Short", + "closedPnl": "2025.581076", + "hash": "0xab140412056b46afac8d042ec46fc502070500f7a06e65814edcaf64c46f209a", + "oid": 221331769244, + "crossed": true, + "fee": "2.097298", + "tid": 1103501197990461, + "cloid": "0x00000000000000000000000388000340", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.1", + "sz": "0.2791", + "side": "B", + "time": 1762185850895, + "startPosition": "-1504.8282", + "dir": "Close Short", + "closedPnl": "147.498768", + "hash": "0x8c1d8e7919330c658d97042ec46fd4021fbf005eb4362b372fe639cbd836e650", + "oid": 221331788480, + "crossed": true, + "fee": "0.20995", + "tid": 723507074648950, + "cloid": "0x00000000000000000000000387000347", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.1", + "sz": "0.2791", + "side": "B", + "time": 1762185850895, + "startPosition": "-1504.5491", + "dir": "Close Short", + "closedPnl": "147.498768", + "hash": "0x8c1d8e7919330c658d97042ec46fd4021fbf005eb4362b372fe639cbd836e650", + "oid": 221331788480, + "crossed": true, + "fee": "0.20995", + "tid": 725767154282805, + "cloid": "0x00000000000000000000000387000347", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.1", + "sz": "0.0122", + "side": "B", + "time": 1762185850895, + "startPosition": "-1504.27", + "dir": "Close Short", + "closedPnl": "6.447456", + "hash": "0x8c1d8e7919330c658d97042ec46fd4021fbf005eb4362b372fe639cbd836e650", + "oid": 221331788480, + "crossed": true, + "fee": "0.009177", + "tid": 616162272681773, + "cloid": "0x00000000000000000000000387000347", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3582.1", + "sz": "2.2192", + "side": "B", + "time": 1762185850895, + "startPosition": "-1504.2578", + "dir": "Close Short", + "closedPnl": "1172.802816", + "hash": "0x8c1d8e7919330c658d97042ec46fd4021fbf005eb4362b372fe639cbd836e650", + "oid": 221331788480, + "crossed": true, + "fee": "1.669373", + "tid": 837199134471500, + "cloid": "0x00000000000000000000000387000347", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26787", + "sz": "1578.2", + "side": "A", + "time": 1762185851093, + "startPosition": "3995650.1960629998", + "dir": "Sell", + "closedPnl": "-842.48073857", + "hash": "0xa094f09fe0960a68a20e042ec46fd702085600857b99293a445d9bf29f99e453", + "oid": 221331792420, + "crossed": true, + "fee": "0.11837068", + "tid": 689275284614215, + "cloid": "0x10000000000000000000000475000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26787", + "sz": "886.0", + "side": "A", + "time": 1762185851093, + "startPosition": "3994071.9960630001", + "dir": "Sell", + "closedPnl": "-472.96789657", + "hash": "0xa094f09fe0960a68a20e042ec46fd702085600857b99293a445d9bf29f99e453", + "oid": 221331792420, + "crossed": true, + "fee": "0.06645318", + "tid": 461688809539316, + "cloid": "0x10000000000000000000000475000064", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26787", + "sz": "1267.9", + "side": "A", + "time": 1762185851093, + "startPosition": "3993185.9960630001", + "dir": "Sell", + "closedPnl": "-676.83521001", + "hash": "0x5368673afa274ce454e2042ec46fd70208570020952a6bb6f731128db92b26ce", + "oid": 221331792421, + "crossed": true, + "fee": "0.09509706", + "tid": 719083549899984, + "cloid": "0x10000000000000000000000475000063", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.13", + "sz": "60.12", + "side": "B", + "time": 1762185851926, + "startPosition": "-223963.85", + "dir": "Close Short", + "closedPnl": "2024.979876", + "hash": "0x4d630a176cfe138c4edc042ec46fe1020d5a00fd07f1325ef12bb56a2bf1ed76", + "oid": 221331807767, + "crossed": true, + "fee": "2.097424", + "tid": 579639729817166, + "cloid": "0x00000000000000000000000388000341", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105616.0", + "sz": "0.23656", + "side": "B", + "time": 1762185851926, + "startPosition": "-1173.11612", + "dir": "Close Short", + "closedPnl": "2046.575184", + "hash": "0x003680b2868f560801b0042ec46fe1020d5b0098218274daa3ff2c0545832ff2", + "oid": 221331807768, + "crossed": true, + "fee": "5.246749", + "tid": 49767787861186, + "cloid": "0x00000000000000000000000389000013", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.8", + "sz": "0.9847", + "side": "B", + "time": 1762185852695, + "startPosition": "-1502.0386", + "dir": "Close Short", + "closedPnl": "520.689666", + "hash": "0x58dccabe2ca4186a5a56042ec46fed0206d100a3c7a7373cfca57610eba7f254", + "oid": 221331822632, + "crossed": true, + "fee": "0.740669", + "tid": 253920648155293, + "cloid": "0x00000000000000000000000387000348", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.8", + "sz": "0.6458", + "side": "B", + "time": 1762185852695, + "startPosition": "-1501.0539", + "dir": "Close Short", + "closedPnl": "341.486124", + "hash": "0x58dccabe2ca4186a5a56042ec46fed0206d100a3c7a7373cfca57610eba7f254", + "oid": 221331822632, + "crossed": true, + "fee": "0.485756", + "tid": 144996753407615, + "cloid": "0x00000000000000000000000387000348", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.8", + "sz": "0.8751", + "side": "B", + "time": 1762185852695, + "startPosition": "-1500.4081", + "dir": "Close Short", + "closedPnl": "462.735378", + "hash": "0x58dccabe2ca4186a5a56042ec46fed0206d100a3c7a7373cfca57610eba7f254", + "oid": 221331822632, + "crossed": true, + "fee": "0.65823", + "tid": 174705003733073, + "cloid": "0x00000000000000000000000387000348", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.8", + "sz": "0.2846", + "side": "B", + "time": 1762185852695, + "startPosition": "-1499.533", + "dir": "Close Short", + "closedPnl": "150.490788", + "hash": "0x58dccabe2ca4186a5a56042ec46fed0206d100a3c7a7373cfca57610eba7f254", + "oid": 221331822632, + "crossed": true, + "fee": "0.214069", + "tid": 662044054638911, + "cloid": "0x00000000000000000000000387000348", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.19", + "sz": "60.11", + "side": "B", + "time": 1762185853801, + "startPosition": "-223903.73", + "dir": "Close Short", + "closedPnl": "2021.036453", + "hash": "0xa0da2bac7c704f18a253042ec46ff902069a009217736dea44a2d6ff3b742903", + "oid": 221331835991, + "crossed": true, + "fee": "2.097832", + "tid": 8345752309364, + "cloid": "0x00000000000000000000000388000342", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105634.0", + "sz": "0.23653", + "side": "B", + "time": 1762185854788, + "startPosition": "-1172.87956", + "dir": "Close Short", + "closedPnl": "2042.058102", + "hash": "0xa172915230a08bdea2ec042ec470050206990037cba3aab0453b3ca4efa465c9", + "oid": 221331854359, + "crossed": true, + "fee": "5.246978", + "tid": 1002641098937792, + "cloid": "0x00000000000000000000000389000014", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.5", + "sz": "2.7899", + "side": "B", + "time": 1762185855121, + "startPosition": "-1499.2484", + "dir": "Close Short", + "closedPnl": "1476.080292", + "hash": "0xcb3c53e557382fd3ccb6042ec470090208d600caf23b4ea56f04ff38163c09be", + "oid": 221331858109, + "crossed": true, + "fee": "2.098325", + "tid": 917680841395879, + "cloid": "0x00000000000000000000000387000349", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.09", + "sz": "60.15", + "side": "B", + "time": 1762185856362, + "startPosition": "-223843.62", + "dir": "Close Short", + "closedPnl": "2028.396345", + "hash": "0xb1092ff2d4f570eab282042ec47018020e8700d86ff88fbc54d1db4593f94ad5", + "oid": 221331896136, + "crossed": true, + "fee": "2.097965", + "tid": 903445610699139, + "cloid": "0x00000000000000000000000388000343", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105604.0", + "sz": "0.23658", + "side": "B", + "time": 1762185856362, + "startPosition": "-1172.64303", + "dir": "Close Short", + "closedPnl": "2049.587172", + "hash": "0x6db89500ce382fe46f32042ec47018020f3b00e6693b4eb6118140538d3c09cf", + "oid": 221331896217, + "crossed": true, + "fee": "5.246596", + "tid": 548783100661841, + "cloid": "0x00000000000000000000000389000015", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00379", + "sz": "131763.0", + "side": "B", + "time": 1762185856362, + "startPosition": "-1178202977.0", + "dir": "Close Short", + "closedPnl": "232.034643", + "hash": "0x13a0c40330bb3225151a042ec47018020fa300e8cbbe50f7b7696f55efbf0c0f", + "oid": 221331896137, + "crossed": false, + "fee": "0.013982", + "tid": 1027059604073222, + "cloid": "0x00000000000000000000000385000297", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.96", + "sz": "60.16", + "side": "B", + "time": 1762185858583, + "startPosition": "-223783.47", + "dir": "Close Short", + "closedPnl": "2036.554368", + "hash": "0x3ba35118e40674273d1d042ec470330217d900fe7f0992f9df6bfc6ba30a4e11", + "oid": 221331949006, + "crossed": true, + "fee": "2.096672", + "tid": 1090627677048364, + "cloid": "0x00000000000000000000000388000344", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "131994.0", + "side": "B", + "time": 1762185858583, + "startPosition": "-1178071214.0", + "dir": "Close Short", + "closedPnl": "232.837416", + "hash": "0x61b7014e10cf1f436330042ec470330218850033abc23e15057faca0cfc2f92e", + "oid": 221331949068, + "crossed": true, + "fee": "0.10497", + "tid": 761341890531034, + "cloid": "0x00000000000000000000000385000298", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26789", + "sz": "3736.6", + "side": "B", + "time": 1762185858583, + "startPosition": "-3974321.6000000001", + "dir": "Close Short", + "closedPnl": "1993.027708", + "hash": "0x605ad5edef56664061d4042ec4703302195600d38a59851204238140ae5a402b", + "oid": 221331896138, + "crossed": false, + "fee": "0.028027", + "tid": 138314510784294, + "cloid": "0x00000000000000000000000384000156", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3577.2", + "sz": "0.0878", + "side": "B", + "time": 1762185858583, + "startPosition": "-1496.4585", + "dir": "Close Short", + "closedPnl": "46.830764", + "hash": "0x2a4c84fa3422b72c2bc6042ec47033021a2b00dfcf25d5fece15304cf3269116", + "oid": 221331949282, + "crossed": true, + "fee": "0.065956", + "tid": 1114347181250440, + "cloid": "0x00000000000000000000000387000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3577.3", + "sz": "0.1839", + "side": "B", + "time": 1762185858583, + "startPosition": "-1496.3707", + "dir": "Close Short", + "closedPnl": "98.070192", + "hash": "0x2a4c84fa3422b72c2bc6042ec47033021a2b00dfcf25d5fece15304cf3269116", + "oid": 221331949282, + "crossed": true, + "fee": "0.138151", + "tid": 895628768646554, + "cloid": "0x00000000000000000000000387000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3577.4", + "sz": "0.1839", + "side": "B", + "time": 1762185858583, + "startPosition": "-1496.1868", + "dir": "Close Short", + "closedPnl": "98.051802", + "hash": "0x2a4c84fa3422b72c2bc6042ec47033021a2b00dfcf25d5fece15304cf3269116", + "oid": 221331949282, + "crossed": true, + "fee": "0.138155", + "tid": 298717333955563, + "cloid": "0x00000000000000000000000387000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3577.5", + "sz": "0.1839", + "side": "B", + "time": 1762185858583, + "startPosition": "-1496.0029", + "dir": "Close Short", + "closedPnl": "98.033412", + "hash": "0x2a4c84fa3422b72c2bc6042ec47033021a2b00dfcf25d5fece15304cf3269116", + "oid": 221331949282, + "crossed": true, + "fee": "0.138159", + "tid": 713062225343716, + "cloid": "0x00000000000000000000000387000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3577.6", + "sz": "0.1839", + "side": "B", + "time": 1762185858583, + "startPosition": "-1495.819", + "dir": "Close Short", + "closedPnl": "98.015022", + "hash": "0x2a4c84fa3422b72c2bc6042ec47033021a2b00dfcf25d5fece15304cf3269116", + "oid": 221331949282, + "crossed": true, + "fee": "0.138163", + "tid": 1018694390221313, + "cloid": "0x00000000000000000000000387000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3577.7", + "sz": "0.18", + "side": "B", + "time": 1762185858583, + "startPosition": "-1495.6351", + "dir": "Close Short", + "closedPnl": "95.9184", + "hash": "0x2a4c84fa3422b72c2bc6042ec47033021a2b00dfcf25d5fece15304cf3269116", + "oid": 221331949282, + "crossed": true, + "fee": "0.135237", + "tid": 35576092684968, + "cloid": "0x00000000000000000000000387000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3577.8", + "sz": "1.7876", + "side": "B", + "time": 1762185858583, + "startPosition": "-1495.4551", + "dir": "Close Short", + "closedPnl": "952.397528", + "hash": "0x2a4c84fa3422b72c2bc6042ec47033021a2b00dfcf25d5fece15304cf3269116", + "oid": 221331949282, + "crossed": true, + "fee": "1.343091", + "tid": 1109823407961073, + "cloid": "0x00000000000000000000000387000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105577.0", + "sz": "0.04735", + "side": "B", + "time": 1762185858583, + "startPosition": "-1172.40645", + "dir": "Close Short", + "closedPnl": "411.49044", + "hash": "0x2328cb7dc7e73a8d24a2042ec47033021ac7006362ea595fc6f176d086eb1477", + "oid": 221331949416, + "crossed": true, + "fee": "1.049804", + "tid": 673449661361518, + "cloid": "0x00000000000000000000000389000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105577.0", + "sz": "0.18924", + "side": "B", + "time": 1762185858583, + "startPosition": "-1172.3591", + "dir": "Close Short", + "closedPnl": "1644.571296", + "hash": "0x2328cb7dc7e73a8d24a2042ec47033021ac7006362ea595fc6f176d086eb1477", + "oid": 221331949416, + "crossed": true, + "fee": "4.195672", + "tid": 423203680170885, + "cloid": "0x00000000000000000000000389000016", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26775", + "sz": "2364.4", + "side": "A", + "time": 1762185859808, + "startPosition": "3991918.0960630002", + "dir": "Sell", + "closedPnl": "-1262.45674681", + "hash": "0x5487ad698c418c325601042ec47041020837004f2744ab04f85058bc4b45661c", + "oid": 221331973859, + "crossed": true, + "fee": "0.17725906", + "tid": 937466156182085, + "cloid": "0x10000000000000000000000475000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26775", + "sz": "1372.2", + "side": "A", + "time": 1762185859808, + "startPosition": "3989553.6960629998", + "dir": "Sell", + "closedPnl": "-732.6776975", + "hash": "0x5487ad698c418c325601042ec47041020837004f2744ab04f85058bc4b45661c", + "oid": 221331973859, + "crossed": true, + "fee": "0.10287383", + "tid": 1042668351655334, + "cloid": "0x10000000000000000000000475000065", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3575.2", + "sz": "2.7937", + "side": "B", + "time": 1762185860284, + "startPosition": "-1493.6675", + "dir": "Close Short", + "closedPnl": "1495.691106", + "hash": "0xc92d38f81ddb0fe4caa6042ec4704802075500ddb8de2eb66cf5e44adcdee9cf", + "oid": 221331989059, + "crossed": true, + "fee": "2.097487", + "tid": 126668666815245, + "cloid": "0x00000000000000000000000387000351", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "60340.0", + "side": "B", + "time": 1762185860622, + "startPosition": "-1177939220.0", + "dir": "Close Short", + "closedPnl": "106.37942", + "hash": "0x777643899d6b9ac278ef042ec4704d020bdd006f386eb9941b3eeedc5c6f74ad", + "oid": 221331995183, + "crossed": true, + "fee": "0.047999", + "tid": 5778281896420, + "cloid": "0x00000000000000000000000385000299", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "71586.0", + "side": "B", + "time": 1762185860622, + "startPosition": "-1177878880.0", + "dir": "Close Short", + "closedPnl": "126.206118", + "hash": "0x777643899d6b9ac278ef042ec4704d020bdd006f386eb9941b3eeedc5c6f74ad", + "oid": 221331995183, + "crossed": true, + "fee": "0.056945", + "tid": 526526609954657, + "cloid": "0x00000000000000000000000385000299", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.0", + "sz": "12.08", + "side": "B", + "time": 1762185861086, + "startPosition": "-223723.31", + "dir": "Close Short", + "closedPnl": "408.452584", + "hash": "0x895cb41712d888e98ad6042ec4705202017300fcaddba7bb2d255f69d1dc62d4", + "oid": 221331998048, + "crossed": true, + "fee": "0.421108", + "tid": 470189863252682, + "cloid": "0x00000000000000000000000388000345", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.0", + "sz": "48.1", + "side": "B", + "time": 1762185861086, + "startPosition": "-223711.23", + "dir": "Close Short", + "closedPnl": "1626.37163", + "hash": "0x895cb41712d888e98ad6042ec4705202017300fcaddba7bb2d255f69d1dc62d4", + "oid": 221331998048, + "crossed": true, + "fee": "1.676765", + "tid": 661954019736322, + "cloid": "0x00000000000000000000000388000345", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105564.0", + "sz": "0.14807", + "side": "B", + "time": 1762185861634, + "startPosition": "-1172.16986", + "dir": "Close Short", + "closedPnl": "1288.712438", + "hash": "0xfd92f85e6816b395ff0c042ec4705a020fbf00440319d268a15ba3b1271a8d80", + "oid": 221332012798, + "crossed": true, + "fee": "3.28248", + "tid": 706523959982434, + "cloid": "0x00000000000000000000000389000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105564.0", + "sz": "0.08856", + "side": "B", + "time": 1762185861634, + "startPosition": "-1172.02179", + "dir": "Close Short", + "closedPnl": "770.773104", + "hash": "0xfd92f85e6816b395ff0c042ec4705a020fbf00440319d268a15ba3b1271a8d80", + "oid": 221332012798, + "crossed": true, + "fee": "1.963237", + "tid": 712600966756352, + "cloid": "0x00000000000000000000000389000017", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3574.1", + "sz": "2.7954", + "side": "B", + "time": 1762185862390, + "startPosition": "-1490.8738", + "dir": "Close Short", + "closedPnl": "1499.676192", + "hash": "0x5e62031737f8e7bc5fdb042ec47066020a3100fcd2fc068e022aae69f6fcc1a7", + "oid": 221332022668, + "crossed": true, + "fee": "2.098118", + "tid": 245817771446848, + "cloid": "0x00000000000000000000000387000352", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003788", + "sz": "132014.0", + "side": "B", + "time": 1762185862650, + "startPosition": "-1177807294.0", + "dir": "Close Short", + "closedPnl": "232.740682", + "hash": "0x4fd378b8f0b6a48c514d042ec4706902144e009e8bb9c35ef39c240bafba7e76", + "oid": 221332036185, + "crossed": true, + "fee": "0.105014", + "tid": 336082694362226, + "cloid": "0x00000000000000000000000385000300", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105554.0", + "sz": "0.06016", + "side": "B", + "time": 1762185863370, + "startPosition": "-1171.93323", + "dir": "Close Short", + "closedPnl": "524.198144", + "hash": "0x0baf0b4287856d5d0d28042ec47072020f56002822888c2faf77b69546894747", + "oid": 221332049589, + "crossed": true, + "fee": "1.333527", + "tid": 804604409882670, + "cloid": "0x00000000000000000000000389000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105554.0", + "sz": "0.06026", + "side": "B", + "time": 1762185863370, + "startPosition": "-1171.87307", + "dir": "Close Short", + "closedPnl": "525.069484", + "hash": "0x0baf0b4287856d5d0d28042ec47072020f56002822888c2faf77b69546894747", + "oid": 221332049589, + "crossed": true, + "fee": "1.335743", + "tid": 313827603655815, + "cloid": "0x00000000000000000000000389000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105554.0", + "sz": "0.06026", + "side": "B", + "time": 1762185863370, + "startPosition": "-1171.81281", + "dir": "Close Short", + "closedPnl": "525.069484", + "hash": "0x0baf0b4287856d5d0d28042ec47072020f56002822888c2faf77b69546894747", + "oid": 221332049589, + "crossed": true, + "fee": "1.335743", + "tid": 418915433083703, + "cloid": "0x00000000000000000000000389000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105554.0", + "sz": "0.05599", + "side": "B", + "time": 1762185863370, + "startPosition": "-1171.75255", + "dir": "Close Short", + "closedPnl": "487.863266", + "hash": "0x0baf0b4287856d5d0d28042ec47072020f56002822888c2faf77b69546894747", + "oid": 221332049589, + "crossed": true, + "fee": "1.241093", + "tid": 79000269695061, + "cloid": "0x00000000000000000000000389000018", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26745", + "sz": "2547.4", + "side": "B", + "time": 1762185863539, + "startPosition": "-3970585.0", + "dir": "Close Short", + "closedPnl": "1359.853068", + "hash": "0x5044576de4800d0151be042ec47073020be100537f832bd3f40d02c0a383e6eb", + "oid": 221332052852, + "crossed": true, + "fee": "0.143073", + "tid": 688610933400606, + "cloid": "0x00000000000000000000000384000157", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26748", + "sz": "1190.2", + "side": "B", + "time": 1762185863539, + "startPosition": "-3968037.6000000001", + "dir": "Close Short", + "closedPnl": "635.316858", + "hash": "0x5044576de4800d0151be042ec47073020be100537f832bd3f40d02c0a383e6eb", + "oid": 221332052852, + "crossed": true, + "fee": "0.066854", + "tid": 162035934754032, + "cloid": "0x00000000000000000000000384000157", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.9", + "sz": "60.21", + "side": "B", + "time": 1762185863539, + "startPosition": "-223663.13", + "dir": "Close Short", + "closedPnl": "2041.859583", + "hash": "0xaab32ad116885c77ac2c042ec47073020c0100b6b18b7b494e7bd623d58c3662", + "oid": 221332052865, + "crossed": true, + "fee": "2.097656", + "tid": 202409937725980, + "cloid": "0x00000000000000000000000388000346", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3571.1", + "sz": "1.3432", + "side": "B", + "time": 1762185864197, + "startPosition": "-1488.0784", + "dir": "Close Short", + "closedPnl": "724.629536", + "hash": "0xcbb58bc4d25e2a63cd2f042ec4707a02216300aa6d5149356f7e37179152044e", + "oid": 221332067310, + "crossed": true, + "fee": "1.007307", + "tid": 789619973921440, + "cloid": "0x00000000000000000000000387000353", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3571.1", + "sz": "1.3432", + "side": "B", + "time": 1762185864197, + "startPosition": "-1486.7352", + "dir": "Close Short", + "closedPnl": "724.629536", + "hash": "0xcbb58bc4d25e2a63cd2f042ec4707a02216300aa6d5149356f7e37179152044e", + "oid": 221332067310, + "crossed": true, + "fee": "1.007307", + "tid": 216558124217136, + "cloid": "0x00000000000000000000000387000353", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3571.1", + "sz": "0.1104", + "side": "B", + "time": 1762185864197, + "startPosition": "-1485.392", + "dir": "Close Short", + "closedPnl": "59.558592", + "hash": "0xcbb58bc4d25e2a63cd2f042ec4707a02216300aa6d5149356f7e37179152044e", + "oid": 221332067310, + "crossed": true, + "fee": "0.082792", + "tid": 141690482997858, + "cloid": "0x00000000000000000000000387000353", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003785", + "sz": "128004.0", + "side": "B", + "time": 1762185864773, + "startPosition": "-1177675280.0", + "dir": "Close Short", + "closedPnl": "226.055064", + "hash": "0x01ce336535623ee60347042ec47081020559004ad0655db8a596deb7f46618d0", + "oid": 221332072090, + "crossed": true, + "fee": "0.101743", + "tid": 209480537856549, + "cloid": "0x00000000000000000000000385000301", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003785", + "sz": "4061.0", + "side": "B", + "time": 1762185864773, + "startPosition": "-1177547276.0", + "dir": "Close Short", + "closedPnl": "7.171726", + "hash": "0x01ce336535623ee60347042ec47081020559004ad0655db8a596deb7f46618d0", + "oid": 221332072090, + "crossed": true, + "fee": "0.003227", + "tid": 324954007204596, + "cloid": "0x00000000000000000000000385000301", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26723", + "sz": "1190.2", + "side": "A", + "time": 1762185865198, + "startPosition": "3988181.4960630001", + "dir": "Sell", + "closedPnl": "-636.11882789", + "hash": "0x9592ed8dbcb68a2d970c042ec470860203bd007357b9a8ff395b98e07bba6418", + "oid": 221332073804, + "crossed": true, + "fee": "0.089056", + "tid": 943613491319720, + "cloid": "0x10000000000000000000000475000067", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26723", + "sz": "1287.5", + "side": "A", + "time": 1762185865198, + "startPosition": "3986991.2960629999", + "dir": "Sell", + "closedPnl": "-688.12215671", + "hash": "0x48666428d647cca949e0042ec470860203be000e714aeb7bec2f0f7b954ba693", + "oid": 221332073805, + "crossed": true, + "fee": "0.09633641", + "tid": 206166350314065, + "cloid": "0x10000000000000000000000475000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.8", + "sz": "19.33", + "side": "B", + "time": 1762185865500, + "startPosition": "-223602.92", + "dir": "Close Short", + "closedPnl": "657.457759", + "hash": "0x38bb5873065839ef3a35042ec4708a020a530058a15b58c1dc8403c5c55c13d9", + "oid": 221332082207, + "crossed": true, + "fee": "0.673031", + "tid": 174665078778559, + "cloid": "0x00000000000000000000000388000347", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.8", + "sz": "40.9", + "side": "B", + "time": 1762185865500, + "startPosition": "-223583.59", + "dir": "Close Short", + "closedPnl": "1391.10307", + "hash": "0x38bb5873065839ef3a35042ec4708a020a530058a15b58c1dc8403c5c55c13d9", + "oid": 221332082207, + "crossed": true, + "fee": "1.424056", + "tid": 1062382306338994, + "cloid": "0x00000000000000000000000388000347", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105554.0", + "sz": "0.23667", + "side": "B", + "time": 1762185865903, + "startPosition": "-1171.69656", + "dir": "Close Short", + "closedPnl": "2062.200378", + "hash": "0xce31ee7f293e1a6acfab042ec4708f0225d80064c431393c71fa99d1e831f455", + "oid": 221332091475, + "crossed": true, + "fee": "5.246107", + "tid": 647629052190323, + "cloid": "0x00000000000000000000000389000019", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26716", + "sz": "925.3", + "side": "A", + "time": 1762185866052, + "startPosition": "3985703.7960629999", + "dir": "Sell", + "closedPnl": "-494.60413535", + "hash": "0x27c51aabb63b872f293e042ec4709102039e0091513ea601cb8dc5fe753f6119", + "oid": 221332073805, + "crossed": false, + "fee": "0.01730422", + "tid": 21247133094440, + "cloid": "0x10000000000000000000000475000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26716", + "sz": "334.6", + "side": "A", + "time": 1762185866335, + "startPosition": "3984778.4960630001", + "dir": "Sell", + "closedPnl": "-178.85501317", + "hash": "0x9295bfc6cfc11867940f042ec4709402065000ac6ac43739365e6b198ec4f252", + "oid": 221332073805, + "crossed": false, + "fee": "0.00625742", + "tid": 239039000766652, + "cloid": "0x10000000000000000000000475000066", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003789", + "sz": "131926.0", + "side": "B", + "time": 1762185866584, + "startPosition": "-1177543215.0", + "dir": "Close Short", + "closedPnl": "232.453612", + "hash": "0xa828fa5412a82b31a9a2042ec470960201240039adab4a034bf1a5a6d1ac051c", + "oid": 221332099711, + "crossed": true, + "fee": "0.104972", + "tid": 436015391959, + "cloid": "0x00000000000000000000000385000302", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.75", + "sz": "35.76", + "side": "B", + "time": 1762185867600, + "startPosition": "-223542.69", + "dir": "Close Short", + "closedPnl": "1218.067848", + "hash": "0x9e36c3cab0f70d489fb0042ec470a2020e1500b04bfa2c1a41ff6f1d6ffae733", + "oid": 221332118338, + "crossed": true, + "fee": "1.244716", + "tid": 665664717870350, + "cloid": "0x00000000000000000000000388000348", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.75", + "sz": "24.48", + "side": "B", + "time": 1762185867600, + "startPosition": "-223506.93", + "dir": "Close Short", + "closedPnl": "833.845104", + "hash": "0x9e36c3cab0f70d489fb0042ec470a2020e1500b04bfa2c1a41ff6f1d6ffae733", + "oid": 221332118338, + "crossed": true, + "fee": "0.852087", + "tid": 443418766748277, + "cloid": "0x00000000000000000000000388000348", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3568.9", + "sz": "0.9151", + "side": "B", + "time": 1762185867600, + "startPosition": "-1485.2816", + "dir": "Close Short", + "closedPnl": "495.691368", + "hash": "0xcf2b8b6d4a5e9c2ed0a5042ec470a2020e1b0052e551bb0072f436c009527619", + "oid": 221332118344, + "crossed": true, + "fee": "0.685839", + "tid": 447748749698291, + "cloid": "0x00000000000000000000000387000354", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3568.9", + "sz": "0.9151", + "side": "B", + "time": 1762185867600, + "startPosition": "-1484.3665", + "dir": "Close Short", + "closedPnl": "495.691368", + "hash": "0xcf2b8b6d4a5e9c2ed0a5042ec470a2020e1b0052e551bb0072f436c009527619", + "oid": 221332118344, + "crossed": true, + "fee": "0.685839", + "tid": 474044933851727, + "cloid": "0x00000000000000000000000387000354", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3568.9", + "sz": "0.9151", + "side": "B", + "time": 1762185867600, + "startPosition": "-1483.4514", + "dir": "Close Short", + "closedPnl": "495.691368", + "hash": "0xcf2b8b6d4a5e9c2ed0a5042ec470a2020e1b0052e551bb0072f436c009527619", + "oid": 221332118344, + "crossed": true, + "fee": "0.685839", + "tid": 362855569063007, + "cloid": "0x00000000000000000000000387000354", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3568.9", + "sz": "0.0116", + "side": "B", + "time": 1762185867600, + "startPosition": "-1482.5363", + "dir": "Close Short", + "closedPnl": "6.283488", + "hash": "0xcf2b8b6d4a5e9c2ed0a5042ec470a2020e1b0052e551bb0072f436c009527619", + "oid": 221332118344, + "crossed": true, + "fee": "0.008693", + "tid": 414758295736833, + "cloid": "0x00000000000000000000000387000354", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3568.9", + "sz": "0.0412", + "side": "B", + "time": 1762185867600, + "startPosition": "-1482.5247", + "dir": "Close Short", + "closedPnl": "22.317216", + "hash": "0xcf2b8b6d4a5e9c2ed0a5042ec470a2020e1b0052e551bb0072f436c009527619", + "oid": 221332118344, + "crossed": true, + "fee": "0.030878", + "tid": 143807920532760, + "cloid": "0x00000000000000000000000387000354", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105554.0", + "sz": "0.23669", + "side": "B", + "time": 1762185867600, + "startPosition": "-1171.45989", + "dir": "Close Short", + "closedPnl": "2062.374646", + "hash": "0x4b99aeaf1430dddf4d13042ec470a2020e690094af33fcb1ef625a01d334b7c9", + "oid": 221332118397, + "crossed": true, + "fee": "5.246551", + "tid": 714367356629907, + "cloid": "0x00000000000000000000000389000020", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003786", + "sz": "132012.0", + "side": "B", + "time": 1762185868230, + "startPosition": "-1177411289.0", + "dir": "Close Short", + "closedPnl": "233.00118", + "hash": "0xca9a176448a05a8ccc13042ec470ab020e5b0049e3a3795e6e62c2b707a43477", + "oid": 221332134938, + "crossed": true, + "fee": "0.104957", + "tid": 1053936983859441, + "cloid": "0x00000000000000000000000385000303", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26717", + "sz": "914.7", + "side": "B", + "time": 1762185869047, + "startPosition": "-3966847.3999999999", + "dir": "Close Short", + "closedPnl": "488.54127", + "hash": "0x6342805ac327f95b64bc042ec470b601cc0098405e2b182d070b2bad822bd346", + "oid": 221332145118, + "crossed": false, + "fee": "0.006842", + "tid": 704537904860518, + "cloid": "0x00000000000000000000000384000158", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.69", + "sz": "60.27", + "side": "B", + "time": 1762185869913, + "startPosition": "-223482.45", + "dir": "Close Short", + "closedPnl": "2056.551021", + "hash": "0x18388fc49ca8c75919b2042ec470c002187200aa37abe62bbc013b175baca143", + "oid": 221332170154, + "crossed": true, + "fee": "2.097088", + "tid": 233665595980837, + "cloid": "0x00000000000000000000000388000349", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105525.0", + "sz": "0.23674", + "side": "B", + "time": 1762185869913, + "startPosition": "-1171.2232", + "dir": "Close Short", + "closedPnl": "2069.675776", + "hash": "0xbc168e9bb4bc6d28bd90042ec470c002189b00814fbf8bfa5fdf39ee73b04713", + "oid": 221332170178, + "crossed": true, + "fee": "5.246217", + "tid": 220530809000236, + "cloid": "0x00000000000000000000000389000021", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.2", + "sz": "0.1009", + "side": "B", + "time": 1762185869913, + "startPosition": "-1482.4835", + "dir": "Close Short", + "closedPnl": "54.524342", + "hash": "0x7e367f6064469e077fb0042ec470c00218fc0045ff49bcd921ff2ab3234a77f2", + "oid": 221332170248, + "crossed": true, + "fee": "0.075648", + "tid": 680773374513826, + "cloid": "0x00000000000000000000000387000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.3", + "sz": "0.281", + "side": "B", + "time": 1762185869913, + "startPosition": "-1482.3826", + "dir": "Close Short", + "closedPnl": "151.81868", + "hash": "0x7e367f6064469e077fb0042ec470c00218fc0045ff49bcd921ff2ab3234a77f2", + "oid": 221332170248, + "crossed": true, + "fee": "0.210683", + "tid": 668197881463252, + "cloid": "0x00000000000000000000000387000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.3", + "sz": "1.3856", + "side": "B", + "time": 1762185869913, + "startPosition": "-1482.1016", + "dir": "Close Short", + "closedPnl": "748.611968", + "hash": "0x7e367f6064469e077fb0042ec470c00218fc0045ff49bcd921ff2ab3234a77f2", + "oid": 221332170248, + "crossed": true, + "fee": "1.038871", + "tid": 749753223338702, + "cloid": "0x00000000000000000000000387000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.4", + "sz": "0.281", + "side": "B", + "time": 1762185869913, + "startPosition": "-1480.716", + "dir": "Close Short", + "closedPnl": "151.79058", + "hash": "0x7e367f6064469e077fb0042ec470c00218fc0045ff49bcd921ff2ab3234a77f2", + "oid": 221332170248, + "crossed": true, + "fee": "0.210689", + "tid": 385368971385953, + "cloid": "0x00000000000000000000000387000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.4", + "sz": "0.2", + "side": "B", + "time": 1762185869913, + "startPosition": "-1480.435", + "dir": "Close Short", + "closedPnl": "108.036", + "hash": "0x7e367f6064469e077fb0042ec470c00218fc0045ff49bcd921ff2ab3234a77f2", + "oid": 221332170248, + "crossed": true, + "fee": "0.149956", + "tid": 567513748336643, + "cloid": "0x00000000000000000000000387000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.4", + "sz": "0.2", + "side": "B", + "time": 1762185869913, + "startPosition": "-1480.235", + "dir": "Close Short", + "closedPnl": "108.036", + "hash": "0x7e367f6064469e077fb0042ec470c00218fc0045ff49bcd921ff2ab3234a77f2", + "oid": 221332170248, + "crossed": true, + "fee": "0.149956", + "tid": 143441732693538, + "cloid": "0x00000000000000000000000387000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.4", + "sz": "0.281", + "side": "B", + "time": 1762185869913, + "startPosition": "-1480.035", + "dir": "Close Short", + "closedPnl": "151.79058", + "hash": "0x7e367f6064469e077fb0042ec470c00218fc0045ff49bcd921ff2ab3234a77f2", + "oid": 221332170248, + "crossed": true, + "fee": "0.210689", + "tid": 683865717598392, + "cloid": "0x00000000000000000000000387000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.5", + "sz": "0.0677", + "side": "B", + "time": 1762185869913, + "startPosition": "-1479.754", + "dir": "Close Short", + "closedPnl": "36.563416", + "hash": "0x7e367f6064469e077fb0042ec470c00218fc0045ff49bcd921ff2ab3234a77f2", + "oid": 221332170248, + "crossed": true, + "fee": "0.050761", + "tid": 993916017364557, + "cloid": "0x00000000000000000000000387000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "132087.0", + "side": "B", + "time": 1762185870255, + "startPosition": "-1177279277.0", + "dir": "Close Short", + "closedPnl": "233.001468", + "hash": "0x412d2bf948254a0442a6042ec470c202086000dee32868d6e4f5d74c072923ee", + "oid": 221332172889, + "crossed": true, + "fee": "0.105044", + "tid": 508727714509310, + "cloid": "0x00000000000000000000000385000304", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26716", + "sz": "374.3", + "side": "A", + "time": 1762185871105, + "startPosition": "3984443.896063", + "dir": "Sell", + "closedPnl": "-200.07600547", + "hash": "0xd8e780be92988576da61042ec470cc0206ed00a42d9ba4487cb02c11519c5f61", + "oid": 221332187686, + "crossed": true, + "fee": "0.02799943", + "tid": 1120612035639959, + "cloid": "0x10000000000000000000000475000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26716", + "sz": "374.3", + "side": "A", + "time": 1762185871105, + "startPosition": "3984069.5960630002", + "dir": "Sell", + "closedPnl": "-200.07600547", + "hash": "0xd8e780be92988576da61042ec470cc0206ed00a42d9ba4487cb02c11519c5f61", + "oid": 221332187686, + "crossed": true, + "fee": "0.02799943", + "tid": 908036389302427, + "cloid": "0x10000000000000000000000475000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26714", + "sz": "166.1", + "side": "A", + "time": 1762185871105, + "startPosition": "3983695.2960629999", + "dir": "Sell", + "closedPnl": "-88.78938801", + "hash": "0xd8e780be92988576da61042ec470cc0206ed00a42d9ba4487cb02c11519c5f61", + "oid": 221332187686, + "crossed": true, + "fee": "0.01242414", + "tid": 290935150536549, + "cloid": "0x10000000000000000000000475000068", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105525.0", + "sz": "0.04892", + "side": "B", + "time": 1762185871979, + "startPosition": "-1170.98646", + "dir": "Close Short", + "closedPnl": "427.678208", + "hash": "0xfefd4f88b49d089d0077042ec470d7020296006e4f902770a2c5fadb7390e288", + "oid": 221332204761, + "crossed": true, + "fee": "1.084079", + "tid": 70805368830148, + "cloid": "0x00000000000000000000000389000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105525.0", + "sz": "0.18784", + "side": "B", + "time": 1762185871979, + "startPosition": "-1170.93754", + "dir": "Close Short", + "closedPnl": "1642.172416", + "hash": "0xfefd4f88b49d089d0077042ec470d7020296006e4f902770a2c5fadb7390e288", + "oid": 221332204761, + "crossed": true, + "fee": "4.162581", + "tid": 300793112767258, + "cloid": "0x00000000000000000000000389000022", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3569.3", + "sz": "1.6774", + "side": "B", + "time": 1762185872697, + "startPosition": "-1479.6863", + "dir": "Close Short", + "closedPnl": "907.943072", + "hash": "0xe3a3dab93f8a5d58e51d042ec470e0021430009eda8d7c2a876c860bfe8e3743", + "oid": 221332218526, + "crossed": true, + "fee": "1.2573", + "tid": 312518185581057, + "cloid": "0x00000000000000000000000387000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3569.3", + "sz": "0.3072", + "side": "B", + "time": 1762185872697, + "startPosition": "-1478.0089", + "dir": "Close Short", + "closedPnl": "166.281216", + "hash": "0xe3a3dab93f8a5d58e51d042ec470e0021430009eda8d7c2a876c860bfe8e3743", + "oid": 221332218526, + "crossed": true, + "fee": "0.230262", + "tid": 502426408311008, + "cloid": "0x00000000000000000000000387000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3569.5", + "sz": "0.192", + "side": "B", + "time": 1762185872697, + "startPosition": "-1477.7017", + "dir": "Close Short", + "closedPnl": "103.88736", + "hash": "0xe3a3dab93f8a5d58e51d042ec470e0021430009eda8d7c2a876c860bfe8e3743", + "oid": 221332218526, + "crossed": true, + "fee": "0.143922", + "tid": 560861266526084, + "cloid": "0x00000000000000000000000387000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3569.5", + "sz": "0.028", + "side": "B", + "time": 1762185872697, + "startPosition": "-1477.5097", + "dir": "Close Short", + "closedPnl": "15.15024", + "hash": "0xe3a3dab93f8a5d58e51d042ec470e0021430009eda8d7c2a876c860bfe8e3743", + "oid": 221332218526, + "crossed": true, + "fee": "0.020988", + "tid": 263324489316027, + "cloid": "0x00000000000000000000000387000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3569.7", + "sz": "0.0084", + "side": "B", + "time": 1762185872697, + "startPosition": "-1477.4817", + "dir": "Close Short", + "closedPnl": "4.543392", + "hash": "0xe3a3dab93f8a5d58e51d042ec470e0021430009eda8d7c2a876c860bfe8e3743", + "oid": 221332218526, + "crossed": true, + "fee": "0.006296", + "tid": 1060665952375258, + "cloid": "0x00000000000000000000000387000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.0", + "sz": "0.0768", + "side": "B", + "time": 1762185872697, + "startPosition": "-1477.4733", + "dir": "Close Short", + "closedPnl": "41.516544", + "hash": "0xe3a3dab93f8a5d58e51d042ec470e0021430009eda8d7c2a876c860bfe8e3743", + "oid": 221332218526, + "crossed": true, + "fee": "0.057576", + "tid": 126843341334953, + "cloid": "0x00000000000000000000000387000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.2", + "sz": "0.5099", + "side": "B", + "time": 1762185872697, + "startPosition": "-1477.3965", + "dir": "Close Short", + "closedPnl": "275.539762", + "hash": "0xe3a3dab93f8a5d58e51d042ec470e0021430009eda8d7c2a876c860bfe8e3743", + "oid": 221332218526, + "crossed": true, + "fee": "0.382293", + "tid": 956965404881454, + "cloid": "0x00000000000000000000000387000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.74", + "sz": "0.53", + "side": "B", + "time": 1762185872697, + "startPosition": "-223422.18", + "dir": "Close Short", + "closedPnl": "18.058319", + "hash": "0x10db446ad88e85141255042ec470e002144000507381a3e6b4a3efbd97825efe", + "oid": 221332218534, + "crossed": true, + "fee": "0.018446", + "tid": 163687307287818, + "cloid": "0x00000000000000000000000388000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.75", + "sz": "1.0", + "side": "B", + "time": 1762185872697, + "startPosition": "-223421.65", + "dir": "Close Short", + "closedPnl": "34.0623", + "hash": "0x10db446ad88e85141255042ec470e002144000507381a3e6b4a3efbd97825efe", + "oid": 221332218534, + "crossed": true, + "fee": "0.034807", + "tid": 827731524162592, + "cloid": "0x00000000000000000000000388000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.75", + "sz": "6.76", + "side": "B", + "time": 1762185872697, + "startPosition": "-223420.65", + "dir": "Close Short", + "closedPnl": "230.261148", + "hash": "0x10db446ad88e85141255042ec470e002144000507381a3e6b4a3efbd97825efe", + "oid": 221332218534, + "crossed": true, + "fee": "0.235298", + "tid": 762569718548512, + "cloid": "0x00000000000000000000000388000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.76", + "sz": "51.99", + "side": "B", + "time": 1762185872697, + "startPosition": "-223413.89", + "dir": "Close Short", + "closedPnl": "1770.379077", + "hash": "0x10db446ad88e85141255042ec470e002144000507381a3e6b4a3efbd97825efe", + "oid": 221332218534, + "crossed": true, + "fee": "1.809751", + "tid": 304507381709036, + "cloid": "0x00000000000000000000000388000350", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003784", + "sz": "132063.0", + "side": "B", + "time": 1762185872697, + "startPosition": "-1177147190.0", + "dir": "Close Short", + "closedPnl": "233.355321", + "hash": "0xf4a382a88b775675f61d042ec470e0021447008e267a7548986c2dfb4a7b3060", + "oid": 221332218541, + "crossed": true, + "fee": "0.104942", + "tid": 295244882482766, + "cloid": "0x00000000000000000000000385000305", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26711", + "sz": "179.2", + "side": "B", + "time": 1762185872818, + "startPosition": "-3965932.7000000002", + "dir": "Close Short", + "closedPnl": "95.721472", + "hash": "0xfb98cefe9f19e6e6fd12042ec470e202040700e43a1d05b99f617a515e1dc0d1", + "oid": 221332220031, + "crossed": true, + "fee": "0.010051", + "tid": 660499629624910, + "cloid": "0x00000000000000000000000384000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26711", + "sz": "2649.4", + "side": "B", + "time": 1762185872818, + "startPosition": "-3965753.5", + "dir": "Close Short", + "closedPnl": "1415.203504", + "hash": "0xfb98cefe9f19e6e6fd12042ec470e202040700e43a1d05b99f617a515e1dc0d1", + "oid": 221332220031, + "crossed": true, + "fee": "0.148613", + "tid": 48231598502336, + "cloid": "0x00000000000000000000000384000159", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.7", + "sz": "15.93", + "side": "B", + "time": 1762185874638, + "startPosition": "-223361.9", + "dir": "Close Short", + "closedPnl": "543.408939", + "hash": "0xd2326440d8f31595d3ac042ec470fb020f18002673f6346775fb0f9397f6ef80", + "oid": 221332263206, + "crossed": true, + "fee": "0.554316", + "tid": 1016736882078737, + "cloid": "0x00000000000000000000000388000351", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.7", + "sz": "17.72", + "side": "B", + "time": 1762185874638, + "startPosition": "-223345.97", + "dir": "Close Short", + "closedPnl": "604.469956", + "hash": "0xd2326440d8f31595d3ac042ec470fb020f18002673f6346775fb0f9397f6ef80", + "oid": 221332263206, + "crossed": true, + "fee": "0.616602", + "tid": 368827615375637, + "cloid": "0x00000000000000000000000388000351", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.7", + "sz": "17.72", + "side": "B", + "time": 1762185874638, + "startPosition": "-223328.25", + "dir": "Close Short", + "closedPnl": "604.469956", + "hash": "0xd2326440d8f31595d3ac042ec470fb020f18002673f6346775fb0f9397f6ef80", + "oid": 221332263206, + "crossed": true, + "fee": "0.616602", + "tid": 370595299285689, + "cloid": "0x00000000000000000000000388000351", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.71", + "sz": "8.91", + "side": "B", + "time": 1762185874638, + "startPosition": "-223310.53", + "dir": "Close Short", + "closedPnl": "303.851493", + "hash": "0xd2326440d8f31595d3ac042ec470fb020f18002673f6346775fb0f9397f6ef80", + "oid": 221332263206, + "crossed": true, + "fee": "0.310059", + "tid": 390585720686364, + "cloid": "0x00000000000000000000000388000351", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3567.7", + "sz": "0.8205", + "side": "B", + "time": 1762185875387, + "startPosition": "-1476.8866", + "dir": "Close Short", + "closedPnl": "445.43304", + "hash": "0x3aaba6507db095783c25042ec47105020192003618b3b44ade7451a33cb46f62", + "oid": 221332285748, + "crossed": true, + "fee": "0.614732", + "tid": 690103603709781, + "cloid": "0x00000000000000000000000387000357", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3567.8", + "sz": "1.9784", + "side": "B", + "time": 1762185875387, + "startPosition": "-1476.0661", + "dir": "Close Short", + "closedPnl": "1073.835952", + "hash": "0x3aaba6507db095783c25042ec47105020192003618b3b44ade7451a33cb46f62", + "oid": 221332285748, + "crossed": true, + "fee": "1.482292", + "tid": 1103832729198449, + "cloid": "0x00000000000000000000000387000357", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105471.0", + "sz": "0.06704", + "side": "B", + "time": 1762185875387, + "startPosition": "-1170.7497", + "dir": "Close Short", + "closedPnl": "589.710656", + "hash": "0x7eaa460dad7479ec8024042ec471050201ee00f3487798be2272f1606c7853d7", + "oid": 221332285829, + "crossed": true, + "fee": "1.484862", + "tid": 49604732049217, + "cloid": "0x00000000000000000000000389000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105471.0", + "sz": "0.06669", + "side": "B", + "time": 1762185875387, + "startPosition": "-1170.68266", + "dir": "Close Short", + "closedPnl": "586.631916", + "hash": "0x7eaa460dad7479ec8024042ec471050201ee00f3487798be2272f1606c7853d7", + "oid": 221332285829, + "crossed": true, + "fee": "1.47711", + "tid": 1049580271185555, + "cloid": "0x00000000000000000000000389000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105471.0", + "sz": "0.06669", + "side": "B", + "time": 1762185875387, + "startPosition": "-1170.61597", + "dir": "Close Short", + "closedPnl": "586.631916", + "hash": "0x7eaa460dad7479ec8024042ec471050201ee00f3487798be2272f1606c7853d7", + "oid": 221332285829, + "crossed": true, + "fee": "1.47711", + "tid": 202894613262023, + "cloid": "0x00000000000000000000000389000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105472.0", + "sz": "0.03636", + "side": "B", + "time": 1762185875387, + "startPosition": "-1170.54928", + "dir": "Close Short", + "closedPnl": "319.800744", + "hash": "0x7eaa460dad7479ec8024042ec471050201ee00f3487798be2272f1606c7853d7", + "oid": 221332285829, + "crossed": true, + "fee": "0.805342", + "tid": 769899508276700, + "cloid": "0x00000000000000000000000389000023", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26682", + "sz": "2052.9", + "side": "A", + "time": 1762185875964, + "startPosition": "3983529.1960629998", + "dir": "Sell", + "closedPnl": "-1098.04244667", + "hash": "0x30efd17188660cd23269042ec4710b020dd7005723692ba4d4b87cc44769e6bc", + "oid": 221332257652, + "crossed": false, + "fee": "0.03834283", + "tid": 1124025580492353, + "cloid": "0x10000000000000000000000475000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26682", + "sz": "596.5", + "side": "A", + "time": 1762185876328, + "startPosition": "3981476.2960629999", + "dir": "Sell", + "closedPnl": "-319.05222828", + "hash": "0xc0b71e4308493100c230042ec4710f0219710028a34c4fd2647fc995c74d0aeb", + "oid": 221332257652, + "crossed": false, + "fee": "0.01114106", + "tid": 767843036240706, + "cloid": "0x10000000000000000000000475000070", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26682", + "sz": "179.2", + "side": "A", + "time": 1762185876328, + "startPosition": "3980879.7960629999", + "dir": "Sell", + "closedPnl": "-95.84938693", + "hash": "0xc0b71e4308493100c230042ec4710f0219710028a34c4fd2647fc995c74d0aeb", + "oid": 221332257653, + "crossed": false, + "fee": "0.00334699", + "tid": 721799736093678, + "cloid": "0x10000000000000000000000475000069", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.69", + "sz": "60.28", + "side": "B", + "time": 1762185877690, + "startPosition": "-223301.62", + "dir": "Close Short", + "closedPnl": "2056.892244", + "hash": "0xb4f467e608b22753b66e042ec471200205fb00cba3b5462558bd1338c7b6013e", + "oid": 221332327695, + "crossed": true, + "fee": "2.097436", + "tid": 791107207350470, + "cloid": "0x00000000000000000000000388000352", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3564.7", + "sz": "1.74", + "side": "B", + "time": 1762185878903, + "startPosition": "-1474.0877", + "dir": "Close Short", + "closedPnl": "949.8312", + "hash": "0x3be75167c9f3f2a93d61042ec4712f0204a4004d64f7117bdfaffcba88f7cc93", + "oid": 221332363305, + "crossed": true, + "fee": "1.302541", + "tid": 341834527510673, + "cloid": "0x00000000000000000000000387000358", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3564.7", + "sz": "1.0619", + "side": "B", + "time": 1762185878903, + "startPosition": "-1472.3477", + "dir": "Close Short", + "closedPnl": "579.669972", + "hash": "0x3be75167c9f3f2a93d61042ec4712f0204a4004d64f7117bdfaffcba88f7cc93", + "oid": 221332363305, + "crossed": true, + "fee": "0.794924", + "tid": 297465402215877, + "cloid": "0x00000000000000000000000387000358", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105468.0", + "sz": "0.18274", + "side": "B", + "time": 1762185878903, + "startPosition": "-1170.51292", + "dir": "Close Short", + "closedPnl": "1608.002356", + "hash": "0x18e2d88ea52c99231a5c042ec4712f0205cf0074402fb7f5bcab83e16420730d", + "oid": 221332363572, + "crossed": true, + "fee": "4.047376", + "tid": 795465105376883, + "cloid": "0x00000000000000000000000389000024", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105468.0", + "sz": "0.05416", + "side": "B", + "time": 1762185878903, + "startPosition": "-1170.33018", + "dir": "Close Short", + "closedPnl": "476.575504", + "hash": "0x18e2d88ea52c99231a5c042ec4712f0205cf0074402fb7f5bcab83e16420730d", + "oid": 221332363572, + "crossed": true, + "fee": "1.19955", + "tid": 5025499815272, + "cloid": "0x00000000000000000000000389000024", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26663", + "sz": "3750.9", + "side": "B", + "time": 1762185879191, + "startPosition": "-3963104.1000000001", + "dir": "Close Short", + "closedPnl": "2005.381176", + "hash": "0xfda481d4602d2befff1e042ec471320202a30101fb204ac2a16d2d271f2105da", + "oid": 221332367341, + "crossed": false, + "fee": "0.028002", + "tid": 1110674486875418, + "cloid": "0x00000000000000000000000384000160", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00378", + "sz": "132170.0", + "side": "B", + "time": 1762185879191, + "startPosition": "-1177015127.0", + "dir": "Close Short", + "closedPnl": "234.07307", + "hash": "0x74be49795c1b71fd7638042ec471320202c7005ef71e90cf1886f4cc1b1f4be8", + "oid": 221332367383, + "crossed": false, + "fee": "0.013988", + "tid": 516795204052970, + "cloid": "0x00000000000000000000000385000307", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.51", + "sz": "60.37", + "side": "B", + "time": 1762185880199, + "startPosition": "-223241.34", + "dir": "Close Short", + "closedPnl": "2070.829851", + "hash": "0x59a47eb27fc430315b1e042ec4713c02100800981ac74f03fd6d2a053ec80a1b", + "oid": 221332395105, + "crossed": true, + "fee": "2.098286", + "tid": 21727422534087, + "cloid": "0x00000000000000000000000388000353", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105322.0", + "sz": "0.02083", + "side": "B", + "time": 1762185880805, + "startPosition": "-1170.27602", + "dir": "Close Short", + "closedPnl": "186.332682", + "hash": "0x76a3ffc585b4a6d4781d042ec47146020b0d00ab20b7c5a61a6cab1844b880bf", + "oid": 221332413992, + "crossed": true, + "fee": "0.46071", + "tid": 440341018702657, + "cloid": "0x00000000000000000000000389000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105322.0", + "sz": "0.08799", + "side": "B", + "time": 1762185880805, + "startPosition": "-1170.25519", + "dir": "Close Short", + "closedPnl": "787.105746", + "hash": "0x76a3ffc585b4a6d4781d042ec47146020b0d00ab20b7c5a61a6cab1844b880bf", + "oid": 221332413992, + "crossed": true, + "fee": "1.946129", + "tid": 175462181416059, + "cloid": "0x00000000000000000000000389000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105323.0", + "sz": "0.02083", + "side": "B", + "time": 1762185880805, + "startPosition": "-1170.1672", + "dir": "Close Short", + "closedPnl": "186.311852", + "hash": "0x76a3ffc585b4a6d4781d042ec47146020b0d00ab20b7c5a61a6cab1844b880bf", + "oid": 221332413992, + "crossed": true, + "fee": "0.460714", + "tid": 28669119811614, + "cloid": "0x00000000000000000000000389000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105323.0", + "sz": "0.08799", + "side": "B", + "time": 1762185880805, + "startPosition": "-1170.14637", + "dir": "Close Short", + "closedPnl": "787.017756", + "hash": "0x76a3ffc585b4a6d4781d042ec47146020b0d00ab20b7c5a61a6cab1844b880bf", + "oid": 221332413992, + "crossed": true, + "fee": "1.946147", + "tid": 614289048874988, + "cloid": "0x00000000000000000000000389000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105324.0", + "sz": "0.01955", + "side": "B", + "time": 1762185880805, + "startPosition": "-1170.05838", + "dir": "Close Short", + "closedPnl": "174.84347", + "hash": "0x76a3ffc585b4a6d4781d042ec47146020b0d00ab20b7c5a61a6cab1844b880bf", + "oid": 221332413992, + "crossed": true, + "fee": "0.432407", + "tid": 153617557919646, + "cloid": "0x00000000000000000000000389000025", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3562.1", + "sz": "2.8041", + "side": "B", + "time": 1762185881663, + "startPosition": "-1471.2858", + "dir": "Close Short", + "closedPnl": "1537.992768", + "hash": "0xd2f4f734024c6b69d46e042ec4714f0238d100199d4f8a3b76bda286c1404554", + "oid": 221332433632, + "crossed": true, + "fee": "2.097581", + "tid": 986640781375653, + "cloid": "0x00000000000000000000000387000359", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "6707.0", + "side": "B", + "time": 1762185882093, + "startPosition": "-1176882957.0", + "dir": "Close Short", + "closedPnl": "11.898218", + "hash": "0x311bd7c855af64023295042ec47153020e6300adf0a282d4d4e4831b14a33dec", + "oid": 221332442094, + "crossed": true, + "fee": "0.005319", + "tid": 562263646228014, + "cloid": "0x00000000000000000000000385000308", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003778", + "sz": "125743.0", + "side": "B", + "time": 1762185882093, + "startPosition": "-1176876250.0", + "dir": "Close Short", + "closedPnl": "222.942339", + "hash": "0x311bd7c855af64023295042ec47153020e6300adf0a282d4d4e4831b14a33dec", + "oid": 221332442094, + "crossed": true, + "fee": "0.099761", + "tid": 345102656979691, + "cloid": "0x00000000000000000000000385000308", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26634", + "sz": "2914.8", + "side": "A", + "time": 1762185882427, + "startPosition": "3980700.5960630002", + "dir": "Sell", + "closedPnl": "-1560.44928841", + "hash": "0x791055b5e7691cef7a8a042ec47158020906009b826c3bc11cd90108a66cf6da", + "oid": 221332433842, + "crossed": false, + "fee": "0.05434294", + "tid": 633714402645071, + "cloid": "0x10000000000000000000000475000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "@162", + "px": "0.26634", + "sz": "836.1", + "side": "A", + "time": 1762185882729, + "startPosition": "3977785.7960629999", + "dir": "Sell", + "closedPnl": "-447.6093214", + "hash": "0x80f242914142290f826b042ec4715b020d050076dc4547e124baede4004602fa", + "oid": 221332433842, + "crossed": false, + "fee": "0.01558808", + "tid": 430729554701783, + "cloid": "0x10000000000000000000000475000071", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.66", + "sz": "60.32", + "side": "B", + "time": 1762185883528, + "startPosition": "-223180.97", + "dir": "Close Short", + "closedPnl": "2060.066736", + "hash": "0x9f544e12c32fa7f6a0ce042ec47161021a3500f85e22c6c8431cf965822381e1", + "oid": 221332478490, + "crossed": true, + "fee": "2.098448", + "tid": 723622271707867, + "cloid": "0x00000000000000000000000388000354", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105355.0", + "sz": "0.23726", + "side": "B", + "time": 1762185883528, + "startPosition": "-1170.03883", + "dir": "Close Short", + "closedPnl": "2114.556024", + "hash": "0xf1433c996773c1caf2bc042ec47161021bc2007f0276e09d950be7ec26779bb5", + "oid": 221332478678, + "crossed": true, + "fee": "5.24927", + "tid": 876685722297508, + "cloid": "0x00000000000000000000000389000026", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3565.7", + "sz": "2.6894", + "side": "B", + "time": 1762185885190, + "startPosition": "-1468.4817", + "dir": "Close Short", + "closedPnl": "1465.400272", + "hash": "0x48be08ca0970018a4a37042ec47176021db900afa473205cec86b41cc873db74", + "oid": 221332507462, + "crossed": true, + "fee": "2.013814", + "tid": 879580121660338, + "cloid": "0x00000000000000000000000387000360", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3565.7", + "sz": "0.1139", + "side": "B", + "time": 1762185885190, + "startPosition": "-1465.7923", + "dir": "Close Short", + "closedPnl": "62.061832", + "hash": "0x48be08ca0970018a4a37042ec47176021db900afa473205cec86b41cc873db74", + "oid": 221332507462, + "crossed": true, + "fee": "0.085287", + "tid": 302453187353436, + "cloid": "0x00000000000000000000000387000360", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105347.0", + "sz": "0.05575", + "side": "B", + "time": 1762185886442, + "startPosition": "-1169.80157", + "dir": "Close Short", + "closedPnl": "497.3123", + "hash": "0x2e7b3d6b00541f2a2ff4042ec4718202141b00509b573dfcd243e8bdbf57f914", + "oid": 221332535212, + "crossed": true, + "fee": "1.23335", + "tid": 1083791621848498, + "cloid": "0x00000000000000000000000389000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105347.0", + "sz": "0.18144", + "side": "B", + "time": 1762185886442, + "startPosition": "-1169.74582", + "dir": "Close Short", + "closedPnl": "1618.517376", + "hash": "0x2e7b3d6b00541f2a2ff4042ec4718202141b00509b573dfcd243e8bdbf57f914", + "oid": 221332535212, + "crossed": true, + "fee": "4.013973", + "tid": 714931909557498, + "cloid": "0x00000000000000000000000389000027", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.61", + "sz": "47.07", + "side": "B", + "time": 1762185886442, + "startPosition": "-223120.65", + "dir": "Close Short", + "closedPnl": "1609.902261", + "hash": "0x4cbd2f5897daaa394e36042ec47182021453003e32ddc90bf085daab56de8423", + "oid": 221332535241, + "crossed": true, + "fee": "1.637005", + "tid": 66554360986978, + "cloid": "0x00000000000000000000000388000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.61", + "sz": "13.25", + "side": "B", + "time": 1762185886442, + "startPosition": "-223073.58", + "dir": "Close Short", + "closedPnl": "453.180475", + "hash": "0x4cbd2f5897daaa394e36042ec47182021453003e32ddc90bf085daab56de8423", + "oid": 221332535241, + "crossed": true, + "fee": "0.460809", + "tid": 511462198869798, + "cloid": "0x00000000000000000000000388000355", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3563.5", + "sz": "2.8032", + "side": "B", + "time": 1762185887846, + "startPosition": "-1465.6784", + "dir": "Close Short", + "closedPnl": "1533.574656", + "hash": "0x98493d7df08a779699c2042ec47190020a5000638b8d96683c11e8d0af8e5181", + "oid": 221332577139, + "crossed": true, + "fee": "2.097732", + "tid": 657078828457360, + "cloid": "0x00000000000000000000000387000361", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.48", + "sz": "18.83", + "side": "B", + "time": 1762185888897, + "startPosition": "-223060.33", + "dir": "Close Short", + "closedPnl": "646.477209", + "hash": "0xe17add7e33163c81e2f4042ec4719a0209af0063ce195b53854388d0f21a166c", + "oid": 221332596917, + "crossed": true, + "fee": "0.654357", + "tid": 348528040896753, + "cloid": "0x00000000000000000000000388000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.48", + "sz": "41.52", + "side": "B", + "time": 1762185888897, + "startPosition": "-223041.5", + "dir": "Close Short", + "closedPnl": "1425.477096", + "hash": "0xe17add7e33163c81e2f4042ec4719a0209af0063ce195b53854388d0f21a166c", + "oid": 221332596917, + "crossed": true, + "fee": "1.442853", + "tid": 697848082710106, + "cloid": "0x00000000000000000000000388000356", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "132135.0", + "side": "B", + "time": 1762185888897, + "startPosition": "-1176750507.0", + "dir": "Close Short", + "closedPnl": "234.40749", + "hash": "0xeaffc98b7e4c6748ec79042ec4719a0209da0071194f861a8ec874de3d404133", + "oid": 221332596933, + "crossed": true, + "fee": "0.104805", + "tid": 1013932171251342, + "cloid": "0x00000000000000000000000385000310", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105268.0", + "sz": "0.23729", + "side": "B", + "time": 1762185888897, + "startPosition": "-1169.56438", + "dir": "Close Short", + "closedPnl": "2135.467626", + "hash": "0x037a2d5ccaf02ebc04f3042ec4719a0209dd004265f34d8ea742d8af89f408a6", + "oid": 221332596935, + "crossed": true, + "fee": "5.245599", + "tid": 742478706806251, + "cloid": "0x00000000000000000000000389000028", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003777", + "sz": "132415.0", + "side": "B", + "time": 1762185891200, + "startPosition": "-1176618372.0", + "dir": "Close Short", + "closedPnl": "234.90421", + "hash": "0xa539f450db4c20e1a6b3042ec471b1020f770036764f3fb349029fa39a4ffacc", + "oid": 221332646663, + "crossed": true, + "fee": "0.105027", + "tid": 375683569935699, + "cloid": "0x00000000000000000000000385000311", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.4", + "sz": "43.83", + "side": "B", + "time": 1762185891200, + "startPosition": "-222999.98", + "dir": "Close Short", + "closedPnl": "1508.291109", + "hash": "0xa17c965fdae8b9b6a2f6042ec471b1020f81004575ebd888454541b299ec93a1", + "oid": 221332646668, + "crossed": true, + "fee": "1.522391", + "tid": 466429653482463, + "cloid": "0x00000000000000000000000388000357", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.4", + "sz": "16.55", + "side": "B", + "time": 1762185891200, + "startPosition": "-222956.15", + "dir": "Close Short", + "closedPnl": "569.523565", + "hash": "0xa17c965fdae8b9b6a2f6042ec471b1020f81004575ebd888454541b299ec93a1", + "oid": 221332646668, + "crossed": true, + "fee": "0.574847", + "tid": 757035056754344, + "cloid": "0x00000000000000000000000388000357", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105273.0", + "sz": "0.23734", + "side": "B", + "time": 1762185892504, + "startPosition": "-1169.32709", + "dir": "Close Short", + "closedPnl": "2134.730896", + "hash": "0xc7b38d0c62cfc1edc92d042ec471c2019a00a4f1fdc2e0bf6b7c385f21c39bd8", + "oid": 221332672529, + "crossed": true, + "fee": "5.246953", + "tid": 122730790480672, + "cloid": "0x00000000000000000000000389000029", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3563.5", + "sz": "2.8051", + "side": "B", + "time": 1762185892933, + "startPosition": "-1462.8752", + "dir": "Close Short", + "closedPnl": "1534.614108", + "hash": "0x5143e2b08c19575352bd042ec471c7021e1e0096271c7625f50c8e034b1d313d", + "oid": 221332684761, + "crossed": true, + "fee": "2.099154", + "tid": 604674604980316, + "cloid": "0x00000000000000000000000387000362", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003779", + "sz": "132275.0", + "side": "B", + "time": 1762185893750, + "startPosition": "-1176485957.0", + "dir": "Close Short", + "closedPnl": "234.3913", + "hash": "0x621e65d7abc238786398042ec471d0020ae400bd46c5574a05e7112a6ac61263", + "oid": 221332698708, + "crossed": true, + "fee": "0.104972", + "tid": 92606751943331, + "cloid": "0x00000000000000000000000385000312", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.54", + "sz": "0.3", + "side": "B", + "time": 1762185893915, + "startPosition": "-222939.6", + "dir": "Close Short", + "closedPnl": "10.28169", + "hash": "0xb5916c0ca0383615b70b042ec471d2020b3900f23b3b54e7595a175f5f3c1000", + "oid": 221332703095, + "crossed": true, + "fee": "0.010429", + "tid": 1088807245213255, + "cloid": "0x00000000000000000000000388000358", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.56", + "sz": "0.36", + "side": "B", + "time": 1762185893915, + "startPosition": "-222939.3", + "dir": "Close Short", + "closedPnl": "12.330828", + "hash": "0xb5916c0ca0383615b70b042ec471d2020b3900f23b3b54e7595a175f5f3c1000", + "oid": 221332703095, + "crossed": true, + "fee": "0.012516", + "tid": 828031432532590, + "cloid": "0x00000000000000000000000388000358", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.56", + "sz": "59.67", + "side": "B", + "time": 1762185893915, + "startPosition": "-222938.94", + "dir": "Close Short", + "closedPnl": "2043.834741", + "hash": "0xb5916c0ca0383615b70b042ec471d2020b3900f23b3b54e7595a175f5f3c1000", + "oid": 221332703095, + "crossed": true, + "fee": "2.074582", + "tid": 150595095011845, + "cloid": "0x00000000000000000000000388000358", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105304.0", + "sz": "0.23725", + "side": "B", + "time": 1762185894957, + "startPosition": "-1169.08975", + "dir": "Close Short", + "closedPnl": "2126.56665", + "hash": "0xa3a6993bf6175e91a520042ec471dc019500b121911a7d63476f448eb51b387c", + "oid": 221332718841, + "crossed": true, + "fee": "5.246508", + "tid": 960292537929847, + "cloid": "0x00000000000000000000000389000030", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3565.9", + "sz": "2.8024", + "side": "B", + "time": 1762185895532, + "startPosition": "-1460.0701", + "dir": "Close Short", + "closedPnl": "1526.411232", + "hash": "0xed359ab027a2c474eeaf042ec471e20213780095c2a5e34690fe4602e6a69e5f", + "oid": 221332735434, + "crossed": true, + "fee": "2.098546", + "tid": 277351104246479, + "cloid": "0x00000000000000000000000387000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.7", + "sz": "60.26", + "side": "B", + "time": 1762185896040, + "startPosition": "-222879.27", + "dir": "Close Short", + "closedPnl": "2055.607198", + "hash": "0xda4cc8ae27bd81cfdbc6042ec471e8020b830093c2b0a0a17e157400e6b15bba", + "oid": 221332741049, + "crossed": true, + "fee": "2.096867", + "tid": 597682223941351, + "cloid": "0x00000000000000000000000388000359", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.78", + "sz": "60.25", + "side": "B", + "time": 1762185897965, + "startPosition": "-222819.01", + "dir": "Close Short", + "closedPnl": "2050.446075", + "hash": "0x4ca3909e63aa8d9f4e1d042ec471fd0205710083feadac71f06c3bf122ae6789", + "oid": 221332778785, + "crossed": true, + "fee": "2.097531", + "tid": 972556809706217, + "cloid": "0x00000000000000000000000388000360", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3566.4", + "sz": "1.079", + "side": "B", + "time": 1762185898083, + "startPosition": "-1457.2677", + "dir": "Close Short", + "closedPnl": "587.17022", + "hash": "0x4306e6d6ae6224254480042ec471fe02093800bc496542f7e6cf92296d65fe0f", + "oid": 221332780979, + "crossed": true, + "fee": "0.80811", + "tid": 593772641537135, + "cloid": "0x00000000000000000000000387000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3566.4", + "sz": "0.0058", + "side": "B", + "time": 1762185898083, + "startPosition": "-1456.1887", + "dir": "Close Short", + "closedPnl": "3.156244", + "hash": "0x4306e6d6ae6224254480042ec471fe02093800bc496542f7e6cf92296d65fe0f", + "oid": 221332780979, + "crossed": true, + "fee": "0.004343", + "tid": 113083004716111, + "cloid": "0x00000000000000000000000387000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3566.4", + "sz": "1.6184", + "side": "B", + "time": 1762185898083, + "startPosition": "-1456.1829", + "dir": "Close Short", + "closedPnl": "880.700912", + "hash": "0x4306e6d6ae6224254480042ec471fe02093800bc496542f7e6cf92296d65fe0f", + "oid": 221332780979, + "crossed": true, + "fee": "1.21209", + "tid": 772175174860603, + "cloid": "0x00000000000000000000000387000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3566.5", + "sz": "0.0141", + "side": "B", + "time": 1762185898083, + "startPosition": "-1454.5645", + "dir": "Close Short", + "closedPnl": "7.671528", + "hash": "0x4306e6d6ae6224254480042ec471fe02093800bc496542f7e6cf92296d65fe0f", + "oid": 221332780979, + "crossed": true, + "fee": "0.01056", + "tid": 538956047345952, + "cloid": "0x00000000000000000000000387000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3566.6", + "sz": "0.0243", + "side": "B", + "time": 1762185898083, + "startPosition": "-1454.5504", + "dir": "Close Short", + "closedPnl": "13.218714", + "hash": "0x4306e6d6ae6224254480042ec471fe02093800bc496542f7e6cf92296d65fe0f", + "oid": 221332780979, + "crossed": true, + "fee": "0.0182", + "tid": 435216892667408, + "cloid": "0x00000000000000000000000387000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3566.6", + "sz": "0.0592", + "side": "B", + "time": 1762185898083, + "startPosition": "-1454.5261", + "dir": "Close Short", + "closedPnl": "32.203616", + "hash": "0x4306e6d6ae6224254480042ec471fe02093800bc496542f7e6cf92296d65fe0f", + "oid": 221332780979, + "crossed": true, + "fee": "0.044339", + "tid": 121191422516190, + "cloid": "0x00000000000000000000000387000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105335.0", + "sz": "0.02985", + "side": "B", + "time": 1762185898314, + "startPosition": "-1168.8525", + "dir": "Close Short", + "closedPnl": "266.63214", + "hash": "0x7de80f138af8ffea7f61042ec4720102079a00f925fc1ebc21b0ba6649fcd9d5", + "oid": 221332785622, + "crossed": true, + "fee": "0.660292", + "tid": 660137884610428, + "cloid": "0x00000000000000000000000389000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105335.0", + "sz": "0.20733", + "side": "B", + "time": 1762185898314, + "startPosition": "-1168.82265", + "dir": "Close Short", + "closedPnl": "1851.954492", + "hash": "0x7de80f138af8ffea7f61042ec4720102079a00f925fc1ebc21b0ba6649fcd9d5", + "oid": 221332785622, + "crossed": true, + "fee": "4.586212", + "tid": 740693826688574, + "cloid": "0x00000000000000000000000389000031", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003784", + "sz": "13233.0", + "side": "B", + "time": 1762185898880, + "startPosition": "-1176353682.0", + "dir": "Close Short", + "closedPnl": "23.382711", + "hash": "0x1a93bd4829a84c771c0d042ec47209020b95002dc4ab6b49be5c689ae8ac2661", + "oid": 221332797438, + "crossed": true, + "fee": "0.010515", + "tid": 556654400210501, + "cloid": "0x00000000000000000000000385000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003784", + "sz": "118889.0", + "side": "B", + "time": 1762185898880, + "startPosition": "-1176340449.0", + "dir": "Close Short", + "closedPnl": "210.076863", + "hash": "0x1a93bd4829a84c771c0d042ec47209020b95002dc4ab6b49be5c689ae8ac2661", + "oid": 221332797438, + "crossed": true, + "fee": "0.094473", + "tid": 425874404600801, + "cloid": "0x00000000000000000000000385000314", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.82", + "sz": "60.21", + "side": "B", + "time": 1762185899853, + "startPosition": "-222758.76", + "dir": "Close Short", + "closedPnl": "2046.676383", + "hash": "0xe014dc9a33c1fc82e18e042ec472180207fc007fcec51b5483dd87ecf2c5d66d", + "oid": 221332816733, + "crossed": true, + "fee": "2.096644", + "tid": 582005907659847, + "cloid": "0x00000000000000000000000388000361", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3565.9", + "sz": "1.74", + "side": "B", + "time": 1762185900593, + "startPosition": "-1454.4669", + "dir": "Close Short", + "closedPnl": "947.7432", + "hash": "0x8fcaea10a69b67399144042ec4722001890001f6419e860b33939563659f4124", + "oid": 221332824888, + "crossed": true, + "fee": "1.302979", + "tid": 941785362962692, + "cloid": "0x00000000000000000000000387000365", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3565.9", + "sz": "1.0613", + "side": "B", + "time": 1762185900593, + "startPosition": "-1452.7269", + "dir": "Close Short", + "closedPnl": "578.068884", + "hash": "0x8fcaea10a69b67399144042ec4722001890001f6419e860b33939563659f4124", + "oid": 221332824888, + "crossed": true, + "fee": "0.794742", + "tid": 521214250642369, + "cloid": "0x00000000000000000000000387000365", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105354.0", + "sz": "0.01916", + "side": "B", + "time": 1762185900593, + "startPosition": "-1168.61532", + "dir": "Close Short", + "closedPnl": "170.780744", + "hash": "0xa0ca91fff2886056a244042ec4722001a000a9e58d8b7f2844933d52b18c3a41", + "oid": 221332824899, + "crossed": true, + "fee": "0.423902", + "tid": 36601422087640, + "cloid": "0x00000000000000000000000389000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105354.0", + "sz": "0.21802", + "side": "B", + "time": 1762185900593, + "startPosition": "-1168.59616", + "dir": "Close Short", + "closedPnl": "1943.299468", + "hash": "0xa0ca91fff2886056a244042ec4722001a000a9e58d8b7f2844933d52b18c3a41", + "oid": 221332824899, + "crossed": true, + "fee": "4.823548", + "tid": 849707369074165, + "cloid": "0x00000000000000000000000389000032", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "97821.0", + "side": "B", + "time": 1762185901584, + "startPosition": "-1176221560.0", + "dir": "Close Short", + "closedPnl": "172.556244", + "hash": "0x623d8e3ff2dc349a63b7042ec4722b02127600258ddf536c06063992b1d00e85", + "oid": 221332849095, + "crossed": true, + "fee": "0.077794", + "tid": 626487370387231, + "cloid": "0x00000000000000000000000385000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003787", + "sz": "34279.0", + "side": "B", + "time": 1762185901584, + "startPosition": "-1176123739.0", + "dir": "Close Short", + "closedPnl": "60.468156", + "hash": "0x623d8e3ff2dc349a63b7042ec4722b02127600258ddf536c06063992b1d00e85", + "oid": 221332849095, + "crossed": true, + "fee": "0.027261", + "tid": 611745385357678, + "cloid": "0x00000000000000000000000385000315", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.81", + "sz": "2.67", + "side": "B", + "time": 1762185901991, + "startPosition": "-222698.55", + "dir": "Close Short", + "closedPnl": "90.786141", + "hash": "0xb5c16bf9b912590db73b042ec472300207a100df541577df598a174c781632f8", + "oid": 221332854183, + "crossed": true, + "fee": "0.092969", + "tid": 965694754854167, + "cloid": "0x00000000000000000000000388000362", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.82", + "sz": "12.0", + "side": "B", + "time": 1762185901991, + "startPosition": "-222695.88", + "dir": "Close Short", + "closedPnl": "407.9076", + "hash": "0xb5c16bf9b912590db73b042ec472300207a100df541577df598a174c781632f8", + "oid": 221332854183, + "crossed": true, + "fee": "0.417866", + "tid": 927577137787323, + "cloid": "0x00000000000000000000000388000362", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.83", + "sz": "45.56", + "side": "B", + "time": 1762185901991, + "startPosition": "-222683.88", + "dir": "Close Short", + "closedPnl": "1548.233588", + "hash": "0xb5c16bf9b912590db73b042ec472300207a100df541577df598a174c781632f8", + "oid": 221332854183, + "crossed": true, + "fee": "1.586595", + "tid": 430223041901415, + "cloid": "0x00000000000000000000000388000362", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3564.7", + "sz": "2.4205", + "side": "B", + "time": 1762185902693, + "startPosition": "-1451.6656", + "dir": "Close Short", + "closedPnl": "1321.30254", + "hash": "0x277e5a985701406a28f8042ec472390221eb007df2045f3ccb4705eb16051a54", + "oid": 221332862903, + "crossed": true, + "fee": "1.811954", + "tid": 868142478423517, + "cloid": "0x00000000000000000000000387000366", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3564.8", + "sz": "0.3816", + "side": "B", + "time": 1762185902693, + "startPosition": "-1449.2451", + "dir": "Close Short", + "closedPnl": "208.269648", + "hash": "0x277e5a985701406a28f8042ec472390221eb007df2045f3ccb4705eb16051a54", + "oid": 221332862903, + "crossed": true, + "fee": "0.285668", + "tid": 732512385602335, + "cloid": "0x00000000000000000000000387000366", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105349.0", + "sz": "0.13828", + "side": "B", + "time": 1762185902693, + "startPosition": "-1168.37814", + "dir": "Close Short", + "closedPnl": "1233.236352", + "hash": "0x8d2547ce8a23c5618e9f042ec472390221ed00b42526e43330edf32149279f4c", + "oid": 221332862905, + "crossed": true, + "fee": "3.059208", + "tid": 332099897727950, + "cloid": "0x00000000000000000000000389000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105350.0", + "sz": "0.00011", + "side": "B", + "time": 1762185902693, + "startPosition": "-1168.23986", + "dir": "Close Short", + "closedPnl": "0.980914", + "hash": "0x8d2547ce8a23c5618e9f042ec472390221ed00b42526e43330edf32149279f4c", + "oid": 221332862905, + "crossed": true, + "fee": "0.002433", + "tid": 182323064176736, + "cloid": "0x00000000000000000000000389000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105351.0", + "sz": "0.00011", + "side": "B", + "time": 1762185902693, + "startPosition": "-1168.23975", + "dir": "Close Short", + "closedPnl": "0.980804", + "hash": "0x8d2547ce8a23c5618e9f042ec472390221ed00b42526e43330edf32149279f4c", + "oid": 221332862905, + "crossed": true, + "fee": "0.002433", + "tid": 987656945782477, + "cloid": "0x00000000000000000000000389000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105351.0", + "sz": "0.00949", + "side": "B", + "time": 1762185902693, + "startPosition": "-1168.23964", + "dir": "Close Short", + "closedPnl": "84.616636", + "hash": "0x8d2547ce8a23c5618e9f042ec472390221ed00b42526e43330edf32149279f4c", + "oid": 221332862905, + "crossed": true, + "fee": "0.209954", + "tid": 537795609793539, + "cloid": "0x00000000000000000000000389000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105352.0", + "sz": "0.00011", + "side": "B", + "time": 1762185902693, + "startPosition": "-1168.23015", + "dir": "Close Short", + "closedPnl": "0.980694", + "hash": "0x8d2547ce8a23c5618e9f042ec472390221ed00b42526e43330edf32149279f4c", + "oid": 221332862905, + "crossed": true, + "fee": "0.002433", + "tid": 1058752498691749, + "cloid": "0x00000000000000000000000389000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105353.0", + "sz": "0.08904", + "side": "B", + "time": 1762185902693, + "startPosition": "-1168.23004", + "dir": "Close Short", + "closedPnl": "793.738176", + "hash": "0x8d2547ce8a23c5618e9f042ec472390221ed00b42526e43330edf32149279f4c", + "oid": 221332862905, + "crossed": true, + "fee": "1.969932", + "tid": 1043197672490839, + "cloid": "0x00000000000000000000000389000033", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.86", + "sz": "0.1", + "side": "B", + "time": 1762185903849, + "startPosition": "-222638.32", + "dir": "Close Short", + "closedPnl": "3.39523", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.003483", + "tid": 1047779319385322, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.88", + "sz": "0.18", + "side": "B", + "time": 1762185903849, + "startPosition": "-222638.22", + "dir": "Close Short", + "closedPnl": "6.107814", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.00627", + "tid": 568058756469499, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.89", + "sz": "6.03", + "side": "B", + "time": 1762185903849, + "startPosition": "-222638.04", + "dir": "Close Short", + "closedPnl": "204.551469", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.210066", + "tid": 446415104452929, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.9", + "sz": "6.03", + "side": "B", + "time": 1762185903849, + "startPosition": "-222632.01", + "dir": "Close Short", + "closedPnl": "204.491169", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.210079", + "tid": 175950346299800, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.91", + "sz": "0.1", + "side": "B", + "time": 1762185903849, + "startPosition": "-222625.98", + "dir": "Close Short", + "closedPnl": "3.39023", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.003484", + "tid": 179203824770289, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.94", + "sz": "6.03", + "side": "B", + "time": 1762185903849, + "startPosition": "-222625.88", + "dir": "Close Short", + "closedPnl": "204.249969", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.210129", + "tid": 560520225099929, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.96", + "sz": "0.1", + "side": "B", + "time": 1762185903849, + "startPosition": "-222619.85", + "dir": "Close Short", + "closedPnl": "3.38523", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.003485", + "tid": 485128419236134, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.99", + "sz": "24.0", + "side": "B", + "time": 1762185903849, + "startPosition": "-222619.75", + "dir": "Close Short", + "closedPnl": "811.7352", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.836589", + "tid": 234272431875865, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "165.99", + "sz": "6.68", + "side": "B", + "time": 1762185903849, + "startPosition": "-222595.75", + "dir": "Close Short", + "closedPnl": "225.932964", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.23285", + "tid": 64627244732386, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.01", + "sz": "0.1", + "side": "B", + "time": 1762185903849, + "startPosition": "-222589.07", + "dir": "Close Short", + "closedPnl": "3.38023", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.003486", + "tid": 395717235932640, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.04", + "sz": "5.97", + "side": "B", + "time": 1762185903849, + "startPosition": "-222588.97", + "dir": "Close Short", + "closedPnl": "201.620631", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.208164", + "tid": 566732690729501, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.05", + "sz": "0.36", + "side": "B", + "time": 1762185903849, + "startPosition": "-222583.0", + "dir": "Close Short", + "closedPnl": "12.154428", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.012553", + "tid": 877965971799132, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.05", + "sz": "0.5", + "side": "B", + "time": 1762185903849, + "startPosition": "-222582.64", + "dir": "Close Short", + "closedPnl": "16.88115", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.017435", + "tid": 311725848030364, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.06", + "sz": "4.0", + "side": "B", + "time": 1762185903849, + "startPosition": "-222582.14", + "dir": "Close Short", + "closedPnl": "135.0092", + "hash": "0xc4a31f999c2e82cec61c042ec47247020747007f3721a1a0686bcaec5b225cb9", + "oid": 221332887112, + "crossed": true, + "fee": "0.13949", + "tid": 750001618085025, + "cloid": "0x00000000000000000000000388000363", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003793", + "sz": "131648.0", + "side": "B", + "time": 1762185904250, + "startPosition": "-1176089460.0", + "dir": "Close Short", + "closedPnl": "231.437184", + "hash": "0xf7f1f003dd57c3b1f96b042ec4724b0206be00e9785ae2849bba9b569c5b9d9c", + "oid": 221332891913, + "crossed": true, + "fee": "0.104861", + "tid": 955647977746069, + "cloid": "0x00000000000000000000000385000316", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105421.0", + "sz": "0.00011", + "side": "B", + "time": 1762185905273, + "startPosition": "-1168.141", + "dir": "Close Short", + "closedPnl": "0.973104", + "hash": "0x4c83745b804b76bd4dfd042ec4725702088900411b4e958ff04c1fae3f4f50a7", + "oid": 221332919212, + "crossed": true, + "fee": "0.002435", + "tid": 357079365216573, + "cloid": "0x00000000000000000000000389000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105421.0", + "sz": "0.23686", + "side": "B", + "time": 1762185905273, + "startPosition": "-1168.14089", + "dir": "Close Short", + "closedPnl": "2095.358304", + "hash": "0x4c83745b804b76bd4dfd042ec4725702088900411b4e958ff04c1fae3f4f50a7", + "oid": 221332919212, + "crossed": true, + "fee": "5.243703", + "tid": 252209964060830, + "cloid": "0x00000000000000000000000389000034", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.4", + "sz": "0.0043", + "side": "B", + "time": 1762185905573, + "startPosition": "-1448.8635", + "dir": "Close Short", + "closedPnl": "2.322774", + "hash": "0xeda21472edc02082ef1b042ec4725b02060d005888c33f54916abfc5acc3fa6d", + "oid": 221332924209, + "crossed": true, + "fee": "0.003224", + "tid": 333262743610382, + "cloid": "0x00000000000000000000000387000367", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.5", + "sz": "0.281", + "side": "B", + "time": 1762185905573, + "startPosition": "-1448.8592", + "dir": "Close Short", + "closedPnl": "151.76248", + "hash": "0xeda21472edc02082ef1b042ec4725b02060d005888c33f54916abfc5acc3fa6d", + "oid": 221332924209, + "crossed": true, + "fee": "0.210695", + "tid": 229455981926888, + "cloid": "0x00000000000000000000000387000367", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.6", + "sz": "0.0043", + "side": "B", + "time": 1762185905573, + "startPosition": "-1448.5782", + "dir": "Close Short", + "closedPnl": "2.321914", + "hash": "0xeda21472edc02082ef1b042ec4725b02060d005888c33f54916abfc5acc3fa6d", + "oid": 221332924209, + "crossed": true, + "fee": "0.003224", + "tid": 259356895468975, + "cloid": "0x00000000000000000000000387000367", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3570.8", + "sz": "2.509", + "side": "B", + "time": 1762185905573, + "startPosition": "-1448.5739", + "dir": "Close Short", + "closedPnl": "1354.30802", + "hash": "0xeda21472edc02082ef1b042ec4725b02060d005888c33f54916abfc5acc3fa6d", + "oid": 221332924209, + "crossed": true, + "fee": "1.881418", + "tid": 484996855390637, + "cloid": "0x00000000000000000000000387000367", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.2", + "sz": "23.06", + "side": "B", + "time": 1762185907763, + "startPosition": "-222578.14", + "dir": "Close Short", + "closedPnl": "775.099638", + "hash": "0x45eabb6f0443133a4764042ec47276021bee00549f46320ce9b366c1c346ed24", + "oid": 221332967789, + "crossed": true, + "fee": "0.80484", + "tid": 1027002379465863, + "cloid": "0x00000000000000000000000388000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "0.1", + "side": "B", + "time": 1762185907763, + "startPosition": "-222555.08", + "dir": "Close Short", + "closedPnl": "3.36023", + "hash": "0x45eabb6f0443133a4764042ec47276021bee00549f46320ce9b366c1c346ed24", + "oid": 221332967789, + "crossed": true, + "fee": "0.00349", + "tid": 965111150699037, + "cloid": "0x00000000000000000000000388000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.21", + "sz": "0.18", + "side": "B", + "time": 1762185907763, + "startPosition": "-222554.98", + "dir": "Close Short", + "closedPnl": "6.048414", + "hash": "0x45eabb6f0443133a4764042ec47276021bee00549f46320ce9b366c1c346ed24", + "oid": 221332967789, + "crossed": true, + "fee": "0.006282", + "tid": 961936871745838, + "cloid": "0x00000000000000000000000388000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "6.03", + "side": "B", + "time": 1762185907763, + "startPosition": "-222554.8", + "dir": "Close Short", + "closedPnl": "202.561569", + "hash": "0x45eabb6f0443133a4764042ec47276021bee00549f46320ce9b366c1c346ed24", + "oid": 221332967789, + "crossed": true, + "fee": "0.210484", + "tid": 258399620181589, + "cloid": "0x00000000000000000000000388000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.22", + "sz": "30.76", + "side": "B", + "time": 1762185907763, + "startPosition": "-222548.77", + "dir": "Close Short", + "closedPnl": "1033.299148", + "hash": "0x45eabb6f0443133a4764042ec47276021bee00549f46320ce9b366c1c346ed24", + "oid": 221332967789, + "crossed": true, + "fee": "1.073714", + "tid": 186775235822171, + "cloid": "0x00000000000000000000000388000364", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105456.0", + "sz": "0.21", + "side": "B", + "time": 1762185908355, + "startPosition": "-1167.90403", + "dir": "Close Short", + "closedPnl": "1850.394", + "hash": "0x9cbd9c573aa164e39e37042ec4727c020ba6003cd5a483b5408647a9f9a53ece", + "oid": 221332981227, + "crossed": true, + "fee": "4.650609", + "tid": 347626623491405, + "cloid": "0x00000000000000000000000389000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105456.0", + "sz": "0.02694", + "side": "B", + "time": 1762185908355, + "startPosition": "-1167.69403", + "dir": "Close Short", + "closedPnl": "237.379116", + "hash": "0x9cbd9c573aa164e39e37042ec4727c020ba6003cd5a483b5408647a9f9a53ece", + "oid": 221332981227, + "crossed": true, + "fee": "0.596606", + "tid": 72588116066298, + "cloid": "0x00000000000000000000000389000035", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3575.7", + "sz": "2.7958", + "side": "B", + "time": 1762185909633, + "startPosition": "-1446.0649", + "dir": "Close Short", + "closedPnl": "1495.417504", + "hash": "0xe8b8053f239c6c35ea31042ec4728902070c0024be9f8b078c80b091e2904620", + "oid": 221332996090, + "crossed": true, + "fee": "2.099357", + "tid": 1015404566009353, + "cloid": "0x00000000000000000000000387000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.31", + "sz": "60.06", + "side": "B", + "time": 1762185911513, + "startPosition": "-222518.01", + "dir": "Close Short", + "closedPnl": "2012.148138", + "hash": "0xae3173a0b8df577aafab042ec4729c020de1008653d2764c51fa1ef377d33165", + "oid": 221333030528, + "crossed": true, + "fee": "2.097601", + "tid": 279918257281365, + "cloid": "0x00000000000000000000000388000365", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105474.0", + "sz": "0.12812", + "side": "B", + "time": 1762185911513, + "startPosition": "-1167.66709", + "dir": "Close Short", + "closedPnl": "1126.610408", + "hash": "0xc2ee7981052fb7c2c468042ec4729c020dee0066a022d69466b724d3c42391ad", + "oid": 221333030536, + "crossed": true, + "fee": "2.837799", + "tid": 185466907296852, + "cloid": "0x00000000000000000000000389000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105474.0", + "sz": "0.10871", + "side": "B", + "time": 1762185911513, + "startPosition": "-1167.53897", + "dir": "Close Short", + "closedPnl": "955.930514", + "hash": "0xc2ee7981052fb7c2c468042ec4729c020dee0066a022d69466b724d3c42391ad", + "oid": 221333030536, + "crossed": true, + "fee": "2.407876", + "tid": 112685165578706, + "cloid": "0x00000000000000000000000389000036", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3576.0", + "sz": "1.5247", + "side": "B", + "time": 1762185912805, + "startPosition": "-1443.2691", + "dir": "Close Short", + "closedPnl": "815.074126", + "hash": "0x98a97e3cc82d7eca9a23042ec472ac020d4e002263209d9c3c72298f872158b5", + "oid": 221333054982, + "crossed": true, + "fee": "1.144988", + "tid": 6360567175611, + "cloid": "0x00000000000000000000000387000369", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3576.1", + "sz": "0.876", + "side": "B", + "time": 1762185912805, + "startPosition": "-1441.7444", + "dir": "Close Short", + "closedPnl": "468.20448", + "hash": "0x98a97e3cc82d7eca9a23042ec472ac020d4e002263209d9c3c72298f872158b5", + "oid": 221333054982, + "crossed": true, + "fee": "0.657859", + "tid": 727804165011560, + "cloid": "0x00000000000000000000000387000369", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3576.2", + "sz": "0.3927", + "side": "B", + "time": 1762185912805, + "startPosition": "-1440.8684", + "dir": "Close Short", + "closedPnl": "209.851026", + "hash": "0x98a97e3cc82d7eca9a23042ec472ac020d4e002263209d9c3c72298f872158b5", + "oid": 221333054982, + "crossed": true, + "fee": "0.294918", + "tid": 745648026772052, + "cloid": "0x00000000000000000000000387000369", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003805", + "sz": "3977.0", + "side": "B", + "time": 1762185912805, + "startPosition": "-1175957812.0", + "dir": "Close Short", + "closedPnl": "6.943842", + "hash": "0xf8dfdfbc44f891dcfa59042ec472ac020da300a1dffbb0af9ca88b0f03fc6bc7", + "oid": 221333055052, + "crossed": true, + "fee": "0.003177", + "tid": 1068512191194051, + "cloid": "0x00000000000000000000000385000318", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003805", + "sz": "127511.0", + "side": "B", + "time": 1762185912805, + "startPosition": "-1175953835.0", + "dir": "Close Short", + "closedPnl": "222.634206", + "hash": "0xf8dfdfbc44f891dcfa59042ec472ac020da300a1dffbb0af9ca88b0f03fc6bc7", + "oid": 221333055052, + "crossed": true, + "fee": "0.101887", + "tid": 514640658618585, + "cloid": "0x00000000000000000000000385000318", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.26", + "sz": "60.06", + "side": "B", + "time": 1762185913526, + "startPosition": "-222457.95", + "dir": "Close Short", + "closedPnl": "2015.151138", + "hash": "0xec554844bd1cce03edcf042ec472b3020212002a581fecd5901df3977c10a7ee", + "oid": 221333064367, + "crossed": true, + "fee": "2.09697", + "tid": 418323812246356, + "cloid": "0x00000000000000000000000388000366", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105477.0", + "sz": "0.23686", + "side": "B", + "time": 1762185915968, + "startPosition": "-1167.43026", + "dir": "Close Short", + "closedPnl": "2082.094144", + "hash": "0x3060e662c5ff6e2831da042ec472d0017f00fe4860f28cfad42991b584f34812", + "oid": 221333100061, + "crossed": true, + "fee": "5.246489", + "tid": 587719875811102, + "cloid": "0x00000000000000000000000389000037", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3578.2", + "sz": "2.792", + "side": "B", + "time": 1762185915968, + "startPosition": "-1440.4757", + "dir": "Close Short", + "closedPnl": "1486.40496", + "hash": "0x70f92a9489db3d287272042ec472d002016d007a24de5bfa14c1d5e748df1713", + "oid": 221333100163, + "crossed": true, + "fee": "2.09797", + "tid": 279496472953620, + "cloid": "0x00000000000000000000000387000370", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003806", + "sz": "131268.0", + "side": "B", + "time": 1762185915968, + "startPosition": "-1175826324.0", + "dir": "Close Short", + "closedPnl": "229.06266", + "hash": "0x3165ed938371634d32df042ec472d002021700791e74821fd52e98e642753d37", + "oid": 221333100260, + "crossed": true, + "fee": "0.104917", + "tid": 527264521552147, + "cloid": "0x00000000000000000000000385000319", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.42", + "sz": "60.04", + "side": "B", + "time": 1762185915968, + "startPosition": "-222397.89", + "dir": "Close Short", + "closedPnl": "2004.873692", + "hash": "0x1eb317de81905f76202c042ec472d002024900c41c937e48c27bc33140943960", + "oid": 221333100289, + "crossed": true, + "fee": "2.098289", + "tid": 514775514706890, + "cloid": "0x00000000000000000000000388000367", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "116001.0", + "side": "B", + "time": 1762185918464, + "startPosition": "-1175695056.0", + "dir": "Close Short", + "closedPnl": "201.957741", + "hash": "0x9a21e6bd608af95f9b9b042ec472f101ab00fea2fb8e18313dea92101f8ed34a", + "oid": 221333147171, + "crossed": true, + "fee": "0.092812", + "tid": 937351317228560, + "cloid": "0x00000000000000000000000385000320", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "0.54", + "side": "B", + "time": 1762185918464, + "startPosition": "-222337.85", + "dir": "Close Short", + "closedPnl": "17.945442", + "hash": "0x1a4d67f02ac0a23b1bc7042ec472f101ef007fd5c5c3c10dbe161342e9c47c25", + "oid": 221333147194, + "crossed": true, + "fee": "0.01889", + "tid": 143256791127095, + "cloid": "0x00000000000000000000000388000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "12.0", + "side": "B", + "time": 1762185918464, + "startPosition": "-222337.31", + "dir": "Close Short", + "closedPnl": "398.5476", + "hash": "0x1a4d67f02ac0a23b1bc7042ec472f101ef007fd5c5c3c10dbe161342e9c47c25", + "oid": 221333147194, + "crossed": true, + "fee": "0.419831", + "tid": 597286876467056, + "cloid": "0x00000000000000000000000388000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "0.1", + "side": "B", + "time": 1762185918464, + "startPosition": "-222325.31", + "dir": "Close Short", + "closedPnl": "3.31923", + "hash": "0x1a4d67f02ac0a23b1bc7042ec472f101ef007fd5c5c3c10dbe161342e9c47c25", + "oid": 221333147194, + "crossed": true, + "fee": "0.003499", + "tid": 364522094433806, + "cloid": "0x00000000000000000000000388000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "22.39", + "side": "B", + "time": 1762185918464, + "startPosition": "-222325.21", + "dir": "Close Short", + "closedPnl": "743.175597", + "hash": "0x1a4d67f02ac0a23b1bc7042ec472f101ef007fd5c5c3c10dbe161342e9c47c25", + "oid": 221333147194, + "crossed": true, + "fee": "0.78343", + "tid": 849654269698070, + "cloid": "0x00000000000000000000000388000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "6.01", + "side": "B", + "time": 1762185918464, + "startPosition": "-222302.82", + "dir": "Close Short", + "closedPnl": "199.485723", + "hash": "0x1a4d67f02ac0a23b1bc7042ec472f101ef007fd5c5c3c10dbe161342e9c47c25", + "oid": 221333147194, + "crossed": true, + "fee": "0.210291", + "tid": 948342661052342, + "cloid": "0x00000000000000000000000388000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.63", + "sz": "6.01", + "side": "B", + "time": 1762185918464, + "startPosition": "-222296.81", + "dir": "Close Short", + "closedPnl": "199.425623", + "hash": "0x1a4d67f02ac0a23b1bc7042ec472f101ef007fd5c5c3c10dbe161342e9c47c25", + "oid": 221333147194, + "crossed": true, + "fee": "0.210303", + "tid": 462289176687914, + "cloid": "0x00000000000000000000000388000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.64", + "sz": "12.92", + "side": "B", + "time": 1762185918464, + "startPosition": "-222290.8", + "dir": "Close Short", + "closedPnl": "428.586116", + "hash": "0x1a4d67f02ac0a23b1bc7042ec472f101ef007fd5c5c3c10dbe161342e9c47c25", + "oid": 221333147194, + "crossed": true, + "fee": "0.452127", + "tid": 893325363439801, + "cloid": "0x00000000000000000000000388000368", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3580.7", + "sz": "0.1644", + "side": "B", + "time": 1762185918464, + "startPosition": "-1437.6837", + "dir": "Close Short", + "closedPnl": "87.112272", + "hash": "0xcd20de8b4451e4b6ce9a042ec472f101f000f670df55038870e989de0355bea1", + "oid": 221333147195, + "crossed": true, + "fee": "0.12362", + "tid": 703502386237895, + "cloid": "0x00000000000000000000000387000371", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.2", + "sz": "0.0042", + "side": "B", + "time": 1762185918464, + "startPosition": "-1437.5193", + "dir": "Close Short", + "closedPnl": "2.223396", + "hash": "0xcd20de8b4451e4b6ce9a042ec472f101f000f670df55038870e989de0355bea1", + "oid": 221333147195, + "crossed": true, + "fee": "0.003158", + "tid": 774436762207385, + "cloid": "0x00000000000000000000000387000371", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.2", + "sz": "1.6184", + "side": "B", + "time": 1762185918464, + "startPosition": "-1437.5151", + "dir": "Close Short", + "closedPnl": "856.748592", + "hash": "0xcd20de8b4451e4b6ce9a042ec472f101f000f670df55038870e989de0355bea1", + "oid": 221333147195, + "crossed": true, + "fee": "1.21712", + "tid": 1013488523978133, + "cloid": "0x00000000000000000000000387000371", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.3", + "sz": "1.0055", + "side": "B", + "time": 1762185918464, + "startPosition": "-1435.8967", + "dir": "Close Short", + "closedPnl": "532.19104", + "hash": "0xcd20de8b4451e4b6ce9a042ec472f101f000f670df55038870e989de0355bea1", + "oid": 221333147195, + "crossed": true, + "fee": "0.756209", + "tid": 796195628939745, + "cloid": "0x00000000000000000000000387000371", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105513.0", + "sz": "0.23686", + "side": "B", + "time": 1762185918464, + "startPosition": "-1167.1934", + "dir": "Close Short", + "closedPnl": "2073.567184", + "hash": "0x7ff455265de32732816e042ec472f101f1006d0bf8e6460423bd00791ce7011d", + "oid": 221333147196, + "crossed": true, + "fee": "5.248279", + "tid": 864927179459900, + "cloid": "0x00000000000000000000000389000038", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "15063.0", + "side": "B", + "time": 1762185919941, + "startPosition": "-1175579055.0", + "dir": "Close Short", + "closedPnl": "26.224683", + "hash": "0xc8d7922e2b2f33d9ca51042ec47302020ad00013c62252ab6ca03d80ea230dc4", + "oid": 221333147171, + "crossed": false, + "fee": "0.001606", + "tid": 819818207136178, + "cloid": "0x00000000000000000000000385000320", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105497.0", + "sz": "0.03739", + "side": "B", + "time": 1762185921367, + "startPosition": "-1166.95654", + "dir": "Close Short", + "closedPnl": "327.925256", + "hash": "0x46454c0f0253f01a47bf042ec47311020f3000f49d570eecea0df761c157ca04", + "oid": 221333207402, + "crossed": true, + "fee": "0.828351", + "tid": 1012794975426725, + "cloid": "0x00000000000000000000000389000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105497.0", + "sz": "0.17", + "side": "B", + "time": 1762185921367, + "startPosition": "-1166.91915", + "dir": "Close Short", + "closedPnl": "1490.968", + "hash": "0x46454c0f0253f01a47bf042ec47311020f3000f49d570eecea0df761c157ca04", + "oid": 221333207402, + "crossed": true, + "fee": "3.766242", + "tid": 824974568501627, + "cloid": "0x00000000000000000000000389000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105497.0", + "sz": "0.01189", + "side": "B", + "time": 1762185921367, + "startPosition": "-1166.74915", + "dir": "Close Short", + "closedPnl": "104.280056", + "hash": "0x46454c0f0253f01a47bf042ec47311020f3000f49d570eecea0df761c157ca04", + "oid": 221333207402, + "crossed": true, + "fee": "0.263415", + "tid": 763237663775467, + "cloid": "0x00000000000000000000000389000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105497.0", + "sz": "0.01751", + "side": "B", + "time": 1762185921367, + "startPosition": "-1166.73726", + "dir": "Close Short", + "closedPnl": "153.569704", + "hash": "0x46454c0f0253f01a47bf042ec47311020f3000f49d570eecea0df761c157ca04", + "oid": 221333207402, + "crossed": true, + "fee": "0.387923", + "tid": 863917967467678, + "cloid": "0x00000000000000000000000389000039", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3580.0", + "sz": "1.74", + "side": "B", + "time": 1762185921448, + "startPosition": "-1434.8912", + "dir": "Close Short", + "closedPnl": "923.2092", + "hash": "0x2ba9c512ddc33a6d2d23042ec4731202013a00f878c6593fcf7270659cc71457", + "oid": 221333208248, + "crossed": true, + "fee": "1.308132", + "tid": 881800132890053, + "cloid": "0x00000000000000000000000387000372", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3580.1", + "sz": "1.0508", + "side": "B", + "time": 1762185921448, + "startPosition": "-1433.1512", + "dir": "Close Short", + "closedPnl": "557.428384", + "hash": "0x2ba9c512ddc33a6d2d23042ec4731202013a00f878c6593fcf7270659cc71457", + "oid": 221333208248, + "crossed": true, + "fee": "0.790013", + "tid": 366404973387515, + "cloid": "0x00000000000000000000000387000372", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "59.94", + "side": "B", + "time": 1762185921448, + "startPosition": "-222277.88", + "dir": "Close Short", + "closedPnl": "1996.139862", + "hash": "0x27ec6721dd6fd3422966042ec4731202014400077862f214cbb512749c63ad2c", + "oid": 221333208257, + "crossed": true, + "fee": "2.095927", + "tid": 849325547466534, + "cloid": "0x00000000000000000000000388000369", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "131234.0", + "side": "B", + "time": 1762185922928, + "startPosition": "-1175563992.0", + "dir": "Close Short", + "closedPnl": "228.872096", + "hash": "0x8bc2b4b2a175afe98d3c042ec47322020ddd00983c78cebb2f8b6005607989d4", + "oid": 221333237019, + "crossed": true, + "fee": "0.104917", + "tid": 251856170280260, + "cloid": "0x00000000000000000000000385000321", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "0.1", + "side": "B", + "time": 1762185924556, + "startPosition": "-222217.94", + "dir": "Close Short", + "closedPnl": "3.31423", + "hash": "0x892615431447485e8a9f042ec473370207690028af4a67302ceec095d34b2249", + "oid": 221333264834, + "crossed": true, + "fee": "0.0035", + "tid": 989139417260672, + "cloid": "0x00000000000000000000000388000370", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "59.86", + "side": "B", + "time": 1762185924556, + "startPosition": "-222217.84", + "dir": "Close Short", + "closedPnl": "1983.898078", + "hash": "0x892615431447485e8a9f042ec473370207690028af4a67302ceec095d34b2249", + "oid": 221333264834, + "crossed": true, + "fee": "2.095141", + "tid": 648319443596381, + "cloid": "0x00000000000000000000000388000370", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105529.0", + "sz": "0.06176", + "side": "B", + "time": 1762185924556, + "startPosition": "-1166.71975", + "dir": "Close Short", + "closedPnl": "539.683584", + "hash": "0xe394e8a6464f97d4e50e042ec47337020789008be142b6a6875d93f9054371bf", + "oid": 221333264852, + "crossed": true, + "fee": "1.368668", + "tid": 1116800879240659, + "cloid": "0x00000000000000000000000389000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105529.0", + "sz": "0.14214", + "side": "B", + "time": 1762185924556, + "startPosition": "-1166.65799", + "dir": "Close Short", + "closedPnl": "1242.076176", + "hash": "0xe394e8a6464f97d4e50e042ec47337020789008be142b6a6875d93f9054371bf", + "oid": 221333264852, + "crossed": true, + "fee": "3.149977", + "tid": 856217954361712, + "cloid": "0x00000000000000000000000389000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105529.0", + "sz": "0.03284", + "side": "B", + "time": 1762185924556, + "startPosition": "-1166.51585", + "dir": "Close Short", + "closedPnl": "286.969056", + "hash": "0xe394e8a6464f97d4e50e042ec47337020789008be142b6a6875d93f9054371bf", + "oid": 221333264852, + "crossed": true, + "fee": "0.72777", + "tid": 962222804641195, + "cloid": "0x00000000000000000000000389000040", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3580.7", + "sz": "2.7908", + "side": "B", + "time": 1762185925419, + "startPosition": "-1432.1004", + "dir": "Close Short", + "closedPnl": "1478.789104", + "hash": "0xa7efb71b5d995b84a969042ec47340020fd90000f89c7a564bb8626e1c9d356f", + "oid": 221333284337, + "crossed": true, + "fee": "2.098533", + "tid": 459779982187224, + "cloid": "0x00000000000000000000000387000373", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.00381", + "sz": "131165.0", + "side": "B", + "time": 1762185925462, + "startPosition": "-1175432758.0", + "dir": "Close Short", + "closedPnl": "228.358265", + "hash": "0x1b70001b77de84131ce9042ec47341020358000112d1a2e5bf38ab6e36d25dfd", + "oid": 221333284383, + "crossed": false, + "fee": "0.013992", + "tid": 1045427812836183, + "cloid": "0x00000000000000000000000385000322", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.56", + "sz": "59.95", + "side": "B", + "time": 1762185927773, + "startPosition": "-222157.98", + "dir": "Close Short", + "closedPnl": "1993.475385", + "hash": "0x2634f98343fbf56827ae042ec4735c021ba30068deff143ac9fda4d602ffcf52", + "oid": 221333324005, + "crossed": true, + "fee": "2.096907", + "tid": 94188077435672, + "cloid": "0x00000000000000000000000388000371", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "131267.0", + "side": "B", + "time": 1762185928058, + "startPosition": "-1175301593.0", + "dir": "Close Short", + "closedPnl": "228.929648", + "hash": "0xe982ec155b3cd769eafc042ec4735e0205ad00faf63ff63b8d4b97681a30b154", + "oid": 221333333390, + "crossed": true, + "fee": "0.104944", + "tid": 504325053170708, + "cloid": "0x00000000000000000000000385000323", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105517.0", + "sz": "0.05326", + "side": "B", + "time": 1762185928058, + "startPosition": "-1166.48301", + "dir": "Close Short", + "closedPnl": "466.046304", + "hash": "0x9c5662b074ce19e59dd0042ec4735e0205ae00960fc138b7401f0e0333c1f3d0", + "oid": 221333333391, + "crossed": true, + "fee": "1.180165", + "tid": 48228184830096, + "cloid": "0x00000000000000000000000389000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105517.0", + "sz": "0.1835", + "side": "B", + "time": 1762185928058, + "startPosition": "-1166.42975", + "dir": "Close Short", + "closedPnl": "1605.6984", + "hash": "0x9c5662b074ce19e59dd0042ec4735e0205ae00960fc138b7401f0e0333c1f3d0", + "oid": 221333333391, + "crossed": true, + "fee": "4.066097", + "tid": 652622460498696, + "cloid": "0x00000000000000000000000389000041", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3579.8", + "sz": "1.5", + "side": "B", + "time": 1762185929390, + "startPosition": "-1429.3096", + "dir": "Close Short", + "closedPnl": "796.17", + "hash": "0x1cd3b94ac2367e311e4d042ec4736d02031200305d399d03c09c649d813a581b", + "oid": 221333358681, + "crossed": true, + "fee": "1.127637", + "tid": 654964061619832, + "cloid": "0x00000000000000000000000387000374", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3579.8", + "sz": "1.2907", + "side": "B", + "time": 1762185929390, + "startPosition": "-1427.8096", + "dir": "Close Short", + "closedPnl": "685.077746", + "hash": "0x1cd3b94ac2367e311e4d042ec4736d02031200305d399d03c09c649d813a581b", + "oid": 221333358681, + "crossed": true, + "fee": "0.970294", + "tid": 638585403732726, + "cloid": "0x00000000000000000000000387000374", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003806", + "sz": "131280.0", + "side": "B", + "time": 1762185930164, + "startPosition": "-1175170326.0", + "dir": "Close Short", + "closedPnl": "229.0836", + "hash": "0x5e91839e9c4d8ca3600b042ec473730209bd00843740ab75025a2ef15b41668e", + "oid": 221333374526, + "crossed": true, + "fee": "0.104926", + "tid": 512946006226681, + "cloid": "0x00000000000000000000000385000324", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105515.0", + "sz": "0.23679", + "side": "B", + "time": 1762185930164, + "startPosition": "-1166.24625", + "dir": "Close Short", + "closedPnl": "2072.480796", + "hash": "0x68166fabe773b76a6990042ec473730209e800918276d63c0bdf1afea6779155", + "oid": 221333374558, + "crossed": true, + "fee": "5.246828", + "tid": 473120589392720, + "cloid": "0x00000000000000000000000389000042", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.43", + "sz": "7.4", + "side": "B", + "time": 1762185931049, + "startPosition": "-222098.03", + "dir": "Close Short", + "closedPnl": "247.02902", + "hash": "0x236c0b82536079ba24e5042ec4737e0188002367ee63988cc734b6d5126453a4", + "oid": 221333385544, + "crossed": true, + "fee": "0.258632", + "tid": 797030252371410, + "cloid": "0x00000000000000000000000388000372", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.43", + "sz": "52.61", + "side": "B", + "time": 1762185931049, + "startPosition": "-222090.63", + "dir": "Close Short", + "closedPnl": "1756.242803", + "hash": "0x236c0b82536079ba24e5042ec4737e0188002367ee63988cc734b6d5126453a4", + "oid": 221333385544, + "crossed": true, + "fee": "1.838735", + "tid": 1045788793238407, + "cloid": "0x00000000000000000000000388000372", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3579.8", + "sz": "2.7906", + "side": "B", + "time": 1762185931627, + "startPosition": "-1426.5189", + "dir": "Close Short", + "closedPnl": "1481.194668", + "hash": "0x93660324e516c0be94df042ec47384020ebd000a8019df90372eae77a41a9aa9", + "oid": 221333396509, + "crossed": true, + "fee": "2.097855", + "tid": 561168164319796, + "cloid": "0x00000000000000000000000387000375", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105472.0", + "sz": "0.12961", + "side": "B", + "time": 1762185932534, + "startPosition": "-1166.00946", + "dir": "Close Short", + "closedPnl": "1139.971794", + "hash": "0x731bddd728f13f227495042ec4738f020c3400bcc3f45df416e48929e7f5190d", + "oid": 221333413619, + "crossed": true, + "fee": "2.870747", + "tid": 760629758739580, + "cloid": "0x00000000000000000000000389000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105475.0", + "sz": "0.0474", + "side": "B", + "time": 1762185932534, + "startPosition": "-1165.87985", + "dir": "Close Short", + "closedPnl": "416.75976", + "hash": "0x731bddd728f13f227495042ec4738f020c3400bcc3f45df416e48929e7f5190d", + "oid": 221333413619, + "crossed": true, + "fee": "1.049898", + "tid": 798464216267905, + "cloid": "0x00000000000000000000000389000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105476.0", + "sz": "0.0474", + "side": "B", + "time": 1762185932534, + "startPosition": "-1165.83245", + "dir": "Close Short", + "closedPnl": "416.71236", + "hash": "0x731bddd728f13f227495042ec4738f020c3400bcc3f45df416e48929e7f5190d", + "oid": 221333413619, + "crossed": true, + "fee": "1.049908", + "tid": 863979946529384, + "cloid": "0x00000000000000000000000389000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105477.0", + "sz": "0.01244", + "side": "B", + "time": 1762185932534, + "startPosition": "-1165.78505", + "dir": "Close Short", + "closedPnl": "109.352576", + "hash": "0x731bddd728f13f227495042ec4738f020c3400bcc3f45df416e48929e7f5190d", + "oid": 221333413619, + "crossed": true, + "fee": "0.275548", + "tid": 840309661732940, + "cloid": "0x00000000000000000000000389000043", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "99468.0", + "side": "B", + "time": 1762185932534, + "startPosition": "-1175039046.0", + "dir": "Close Short", + "closedPnl": "173.472192", + "hash": "0x27f9849d8cf1de0f2973042ec4738f020c74008327f4fce1cbc22ff04bf5b7f9", + "oid": 221333413636, + "crossed": true, + "fee": "0.079521", + "tid": 1041082114972008, + "cloid": "0x00000000000000000000000385000325", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "31828.0", + "side": "B", + "time": 1762185932534, + "startPosition": "-1174939578.0", + "dir": "Close Short", + "closedPnl": "55.476204", + "hash": "0x27f9849d8cf1de0f2973042ec4738f020c74008327f4fce1cbc22ff04bf5b7f9", + "oid": 221333413636, + "crossed": true, + "fee": "0.025452", + "tid": 969001571408085, + "cloid": "0x00000000000000000000000385000325", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.29", + "sz": "60.06", + "side": "B", + "time": 1762185933258, + "startPosition": "-222038.02", + "dir": "Close Short", + "closedPnl": "2013.349338", + "hash": "0xe800f1a483daba26e97a042ec473970209ea008a1eddd8f88bc99cf742de9411", + "oid": 221333431738, + "crossed": true, + "fee": "2.097349", + "tid": 398711462058449, + "cloid": "0x00000000000000000000000388000373", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3579.0", + "sz": "2.7922", + "side": "B", + "time": 1762185934465, + "startPosition": "-1423.7283", + "dir": "Close Short", + "closedPnl": "1484.277676", + "hash": "0xe321c3941a05fb03e49b042ec473a70205f50079b50919d586ea6ee6d909d4ee", + "oid": 221333450156, + "crossed": true, + "fee": "2.098589", + "tid": 498166837386235, + "cloid": "0x00000000000000000000000387000376", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105464.0", + "sz": "0.23686", + "side": "B", + "time": 1762185935367, + "startPosition": "-1165.77261", + "dir": "Close Short", + "closedPnl": "2085.173324", + "hash": "0x8748713e5852fa3488c2042ec473af0203fa0023f35619062b111c911756d41f", + "oid": 221333470766, + "crossed": true, + "fee": "5.245842", + "tid": 1058552845936911, + "cloid": "0x00000000000000000000000389000044", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.33", + "sz": "60.04", + "side": "B", + "time": 1762185935583, + "startPosition": "-221977.96", + "dir": "Close Short", + "closedPnl": "2010.277292", + "hash": "0x0165b24cd75cebf702df042ec473b202041b003272500ac9a52e5d9f9650c5e1", + "oid": 221333472643, + "crossed": true, + "fee": "2.097155", + "tid": 703330822321994, + "cloid": "0x00000000000000000000000388000374", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3579.2", + "sz": "0.0055", + "side": "B", + "time": 1762185936830, + "startPosition": "-1420.9361", + "dir": "Close Short", + "closedPnl": "2.92259", + "hash": "0xa8eac6fe6dc45786aa64042ec473be0211de00e408c776584cb372512cc83171", + "oid": 221333503320, + "crossed": true, + "fee": "0.004133", + "tid": 265433312809924, + "cloid": "0x00000000000000000000000387000377", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3579.5", + "sz": "0.003", + "side": "B", + "time": 1762185936830, + "startPosition": "-1420.9306", + "dir": "Close Short", + "closedPnl": "1.59324", + "hash": "0xa8eac6fe6dc45786aa64042ec473be0211de00e408c776584cb372512cc83171", + "oid": 221333503320, + "crossed": true, + "fee": "0.002255", + "tid": 455706595708496, + "cloid": "0x00000000000000000000000387000377", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3580.2", + "sz": "2.7836", + "side": "B", + "time": 1762185936830, + "startPosition": "-1420.9276", + "dir": "Close Short", + "closedPnl": "1476.365768", + "hash": "0xa8eac6fe6dc45786aa64042ec473be0211de00e408c776584cb372512cc83171", + "oid": 221333503320, + "crossed": true, + "fee": "2.092827", + "tid": 252948511777195, + "cloid": "0x00000000000000000000000387000377", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105564.0", + "sz": "0.2367", + "side": "B", + "time": 1762185937617, + "startPosition": "-1165.53575", + "dir": "Close Short", + "closedPnl": "2060.09478", + "hash": "0xee08af9928aa9e52ef82042ec473c802020a007ec3adbd2491d15aebe7ae783d", + "oid": 221333527176, + "crossed": true, + "fee": "5.247269", + "tid": 1124363771001341, + "cloid": "0x00000000000000000000000389000045", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.51", + "sz": "59.98", + "side": "B", + "time": 1762185938314, + "startPosition": "-221917.92", + "dir": "Close Short", + "closedPnl": "1997.471954", + "hash": "0x7db136b0d6cdf9ca7f2a042ec473d1020d4f009671c1189c2179e20395c1d3b5", + "oid": 221333539847, + "crossed": true, + "fee": "2.097326", + "tid": 879619489067564, + "cloid": "0x00000000000000000000000388000375", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.1", + "sz": "2.2705", + "side": "B", + "time": 1762185939586, + "startPosition": "-1418.144", + "dir": "Close Short", + "closedPnl": "1202.18434", + "hash": "0x7a45f1baf874325d7bbf042ec473e002049700a09377512f1e0e9d0db7780c48", + "oid": 221333559626, + "crossed": true, + "fee": "1.707486", + "tid": 860626584661517, + "cloid": "0x00000000000000000000000387000378", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.1", + "sz": "0.5199", + "side": "B", + "time": 1762185939586, + "startPosition": "-1415.8735", + "dir": "Close Short", + "closedPnl": "275.276652", + "hash": "0x7a45f1baf874325d7bbf042ec473e002049700a09377512f1e0e9d0db7780c48", + "oid": 221333559626, + "crossed": true, + "fee": "0.39098", + "tid": 611687215344942, + "cloid": "0x00000000000000000000000387000378", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105565.0", + "sz": "0.13291", + "side": "B", + "time": 1762185940260, + "startPosition": "-1165.29905", + "dir": "Close Short", + "closedPnl": "1156.635984", + "hash": "0xc2f8813da86008a4c472042ec473e80206c600234363277666c12c906763e28f", + "oid": 221333570566, + "crossed": true, + "fee": "2.946435", + "tid": 833362023204450, + "cloid": "0x00000000000000000000000389000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105565.0", + "sz": "0.10374", + "side": "B", + "time": 1762185940260, + "startPosition": "-1165.16614", + "dir": "Close Short", + "closedPnl": "902.786976", + "hash": "0xc2f8813da86008a4c472042ec473e80206c600234363277666c12c906763e28f", + "oid": 221333570566, + "crossed": true, + "fee": "2.299775", + "tid": 332908694573101, + "cloid": "0x00000000000000000000000389000046", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.48", + "sz": "49.86", + "side": "B", + "time": 1762185940442, + "startPosition": "-221857.94", + "dir": "Close Short", + "closedPnl": "1661.948478", + "hash": "0xf61f87238a5b90e8f799042ec473ea0203b30009255eafbb99e83276495f6ad3", + "oid": 221333574051, + "crossed": true, + "fee": "1.743145", + "tid": 484244884261859, + "cloid": "0x00000000000000000000000388000376", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.48", + "sz": "10.14", + "side": "B", + "time": 1762185940442, + "startPosition": "-221808.08", + "dir": "Close Short", + "closedPnl": "337.989522", + "hash": "0xf61f87238a5b90e8f799042ec473ea0203b30009255eafbb99e83276495f6ad3", + "oid": 221333574051, + "crossed": true, + "fee": "0.354502", + "tid": 889993392496746, + "cloid": "0x00000000000000000000000388000376", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "18.01", + "side": "B", + "time": 1762185942067, + "startPosition": "-221797.94", + "dir": "Close Short", + "closedPnl": "599.054023", + "hash": "0xd8fdee59f7b7af04da77042ec473ff0205d0003f92bacdd67cc699acb6bb88ef", + "oid": 221333605378, + "crossed": true, + "fee": "0.629908", + "tid": 194156387541600, + "cloid": "0x00000000000000000000000388000377", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "41.96", + "side": "B", + "time": 1762185942067, + "startPosition": "-221779.93", + "dir": "Close Short", + "closedPnl": "1395.686108", + "hash": "0xd8fdee59f7b7af04da77042ec473ff0205d0003f92bacdd67cc699acb6bb88ef", + "oid": 221333605378, + "crossed": true, + "fee": "1.467571", + "tid": 644242901101733, + "cloid": "0x00000000000000000000000388000377", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.3", + "sz": "2.7903", + "side": "B", + "time": 1762185942552, + "startPosition": "-1415.3536", + "dir": "Close Short", + "closedPnl": "1476.849984", + "hash": "0xfd67daf16a5c95c3fee1042ec47406012700f2d7055fb496a130864429506fae", + "oid": 221333612132, + "crossed": true, + "fee": "2.098509", + "tid": 41294023003282, + "cloid": "0x00000000000000000000000387000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "131425.0", + "side": "B", + "time": 1762185942906, + "startPosition": "-1174907750.0", + "dir": "Close Short", + "closedPnl": "229.2052", + "hash": "0x1fcdd4a21d9afd2c2147042ec4740902102c0087b89e1bfec3967ff4dc9ed716", + "oid": 221333621254, + "crossed": true, + "fee": "0.10507", + "tid": 1101963252298842, + "cloid": "0x00000000000000000000000385000328", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105584.0", + "sz": "0.23665", + "side": "B", + "time": 1762185942906, + "startPosition": "-1165.0624", + "dir": "Close Short", + "closedPnl": "2054.92661", + "hash": "0x5a4788520228b6d95bc1042ec4740902105d00379d2bd5abfe1033a4c12c90c3", + "oid": 221333621290, + "crossed": true, + "fee": "5.247155", + "tid": 714366811104425, + "cloid": "0x00000000000000000000000389000047", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "25.04", + "side": "B", + "time": 1762185943914, + "startPosition": "-221737.97", + "dir": "Close Short", + "closedPnl": "834.139992", + "hash": "0xc830f0baeeeb522bc9aa042ec47413020b5700a089ee70fd6bf99c0dadef2c16", + "oid": 221333641794, + "crossed": true, + "fee": "0.875523", + "tid": 805215516206366, + "cloid": "0x00000000000000000000000388000378", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.5", + "sz": "34.94", + "side": "B", + "time": 1762185943914, + "startPosition": "-221712.93", + "dir": "Close Short", + "closedPnl": "1163.931762", + "hash": "0xc830f0baeeeb522bc9aa042ec47413020b5700a089ee70fd6bf99c0dadef2c16", + "oid": 221333641794, + "crossed": true, + "fee": "1.221677", + "tid": 1097521154288579, + "cloid": "0x00000000000000000000000388000378", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3578.8", + "sz": "1.0823", + "side": "B", + "time": 1762185944776, + "startPosition": "-1412.5633", + "dir": "Close Short", + "closedPnl": "575.545494", + "hash": "0xae055bef1213e5e2af7f042ec4741e02098b00d4ad1704b451ce0741d117bfcd", + "oid": 221333661664, + "crossed": true, + "fee": "0.8134", + "tid": 1015241074662270, + "cloid": "0x00000000000000000000000387000380", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3578.8", + "sz": "1.0823", + "side": "B", + "time": 1762185944776, + "startPosition": "-1411.481", + "dir": "Close Short", + "closedPnl": "575.545494", + "hash": "0xae055bef1213e5e2af7f042ec4741e02098b00d4ad1704b451ce0741d117bfcd", + "oid": 221333661664, + "crossed": true, + "fee": "0.8134", + "tid": 323006509539603, + "cloid": "0x00000000000000000000000387000380", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3578.8", + "sz": "0.6261", + "side": "B", + "time": 1762185944776, + "startPosition": "-1410.3987", + "dir": "Close Short", + "closedPnl": "332.947458", + "hash": "0xae055bef1213e5e2af7f042ec4741e02098b00d4ad1704b451ce0741d117bfcd", + "oid": 221333661664, + "crossed": true, + "fee": "0.470544", + "tid": 1032462707912147, + "cloid": "0x00000000000000000000000387000380", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003807", + "sz": "116118.0", + "side": "B", + "time": 1762185944776, + "startPosition": "-1174776325.0", + "dir": "Close Short", + "closedPnl": "202.509792", + "hash": "0x9b52863a1032e20b9ccc042ec4741e0209bd001fab3600dd3f1b318ccf36bbf6", + "oid": 221333661692, + "crossed": true, + "fee": "0.092832", + "tid": 932404501499557, + "cloid": "0x00000000000000000000000385000329", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003808", + "sz": "15185.0", + "side": "B", + "time": 1762185944776, + "startPosition": "-1174660207.0", + "dir": "Close Short", + "closedPnl": "26.467455", + "hash": "0x9b52863a1032e20b9ccc042ec4741e0209bd001fab3600dd3f1b318ccf36bbf6", + "oid": 221333661692, + "crossed": true, + "fee": "0.012143", + "tid": 965375729372762, + "cloid": "0x00000000000000000000000385000329", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105550.0", + "sz": "0.16255", + "side": "B", + "time": 1762185944776, + "startPosition": "-1164.82575", + "dir": "Close Short", + "closedPnl": "1417.01337", + "hash": "0x4a689ee42960bd5c4be2042ec4741e0209c800c9c463dc2eee314a36e8649746", + "oid": 221333661695, + "crossed": true, + "fee": "3.603002", + "tid": 554306745146824, + "cloid": "0x00000000000000000000000389000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105550.0", + "sz": "0.07416", + "side": "B", + "time": 1762185944776, + "startPosition": "-1164.6632", + "dir": "Close Short", + "closedPnl": "646.482384", + "hash": "0x4a689ee42960bd5c4be2042ec4741e0209c800c9c463dc2eee314a36e8649746", + "oid": 221333661695, + "crossed": true, + "fee": "1.643793", + "tid": 213718468101067, + "cloid": "0x00000000000000000000000389000048", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.55", + "sz": "15.83", + "side": "B", + "time": 1762185947557, + "startPosition": "-221677.99", + "dir": "Close Short", + "closedPnl": "526.542209", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.553662", + "tid": 311574426012047, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "0.1", + "side": "B", + "time": 1762185947557, + "startPosition": "-221662.16", + "dir": "Close Short", + "closedPnl": "3.32423", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.003497", + "tid": 695120561430474, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.57", + "sz": "3.0", + "side": "B", + "time": 1762185947557, + "startPosition": "-221662.06", + "dir": "Close Short", + "closedPnl": "99.7269", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.104939", + "tid": 20633187857015, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "0.09", + "side": "B", + "time": 1762185947557, + "startPosition": "-221659.06", + "dir": "Close Short", + "closedPnl": "2.990907", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.003148", + "tid": 183352765616403, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "10.01", + "side": "B", + "time": 1762185947557, + "startPosition": "-221658.97", + "dir": "Close Short", + "closedPnl": "332.655323", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.350167", + "tid": 931273138047445, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "8.75", + "side": "B", + "time": 1762185947557, + "startPosition": "-221648.96", + "dir": "Close Short", + "closedPnl": "290.782625", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.30609", + "tid": 829940964587727, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "1.76", + "side": "B", + "time": 1762185947557, + "startPosition": "-221640.21", + "dir": "Close Short", + "closedPnl": "58.488848", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.061567", + "tid": 1074870877015805, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.58", + "sz": "12.0", + "side": "B", + "time": 1762185947557, + "startPosition": "-221638.45", + "dir": "Close Short", + "closedPnl": "398.7876", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.419781", + "tid": 339222623092918, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "0.1", + "side": "B", + "time": 1762185947557, + "startPosition": "-221626.45", + "dir": "Close Short", + "closedPnl": "3.32123", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.003498", + "tid": 881312043804208, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "0.18", + "side": "B", + "time": 1762185947557, + "startPosition": "-221626.35", + "dir": "Close Short", + "closedPnl": "5.978214", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.006297", + "tid": 642923528272885, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.61", + "sz": "8.14", + "side": "B", + "time": 1762185947557, + "startPosition": "-221626.17", + "dir": "Close Short", + "closedPnl": "270.266722", + "hash": "0x1da5c9ea30ffe5901f1f042ec4743e02030900cfcbf30462c16e753ceff3bf7a", + "oid": 221333711857, + "crossed": true, + "fee": "0.284803", + "tid": 165260243117085, + "cloid": "0x00000000000000000000000388000379", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105562.0", + "sz": "0.04536", + "side": "B", + "time": 1762185947557, + "startPosition": "-1164.58904", + "dir": "Close Short", + "closedPnl": "394.876944", + "hash": "0xd07940854a81280bd1f2042ec4743e02030a006ae58446dd7441ebd8098501f6", + "oid": 221333711858, + "crossed": true, + "fee": "1.005541", + "tid": 756510356998359, + "cloid": "0x00000000000000000000000389000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105562.0", + "sz": "0.19133", + "side": "B", + "time": 1762185947557, + "startPosition": "-1164.54368", + "dir": "Close Short", + "closedPnl": "1665.604182", + "hash": "0xd07940854a81280bd1f2042ec4743e02030a006ae58446dd7441ebd8098501f6", + "oid": 221333711858, + "crossed": true, + "fee": "4.241407", + "tid": 569142015352791, + "cloid": "0x00000000000000000000000389000049", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3579.9", + "sz": "2.7908", + "side": "B", + "time": 1762185948039, + "startPosition": "-1409.7726", + "dir": "Close Short", + "closedPnl": "1481.021744", + "hash": "0x6e987277066915d97012042ec47445020b15005ca16c34ab12611dc9c56cefc4", + "oid": 221333721809, + "crossed": true, + "fee": "2.098064", + "tid": 654621985834161, + "cloid": "0x00000000000000000000000387000381", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105562.0", + "sz": "0.00946", + "side": "B", + "time": 1762185949034, + "startPosition": "-1164.35235", + "dir": "Close Short", + "closedPnl": "82.353084", + "hash": "0x88f00ef12cf5ead78a69042ec4745202056500d6c7f909a92cb8ba43ebf9c4c2", + "oid": 221333738398, + "crossed": true, + "fee": "0.209709", + "tid": 34221646731818, + "cloid": "0x00000000000000000000000389000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105562.0", + "sz": "0.22725", + "side": "B", + "time": 1762185949034, + "startPosition": "-1164.34289", + "dir": "Close Short", + "closedPnl": "1978.30215", + "hash": "0x88f00ef12cf5ead78a69042ec4745202056500d6c7f909a92cb8ba43ebf9c4c2", + "oid": 221333738398, + "crossed": true, + "fee": "5.037682", + "tid": 112597018742924, + "cloid": "0x00000000000000000000000389000050", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.65", + "sz": "5.63", + "side": "B", + "time": 1762185949261, + "startPosition": "-221618.03", + "dir": "Close Short", + "closedPnl": "186.703749", + "hash": "0x6758339f8d151ab568d1042ec474550203680085281839870b20def24c18f4a0", + "oid": 221333741342, + "crossed": true, + "fee": "0.19703", + "tid": 279352446591265, + "cloid": "0x00000000000000000000000388000380", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.66", + "sz": "54.31", + "side": "B", + "time": 1762185949261, + "startPosition": "-221612.4", + "dir": "Close Short", + "closedPnl": "1800.501413", + "hash": "0x6758339f8d151ab568d1042ec474550203680085281839870b20def24c18f4a0", + "oid": 221333741342, + "crossed": true, + "fee": "1.900773", + "tid": 751617000122701, + "cloid": "0x00000000000000000000000388000380", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.0", + "sz": "0.0704", + "side": "B", + "time": 1762185950546, + "startPosition": "-1406.9818", + "dir": "Close Short", + "closedPnl": "37.282432", + "hash": "0xc56736a7a53f180ec6e0042ec474650209ea008d403236e0692fe1fa6432f1f9", + "oid": 221333766968, + "crossed": true, + "fee": "0.052941", + "tid": 200132043863048, + "cloid": "0x00000000000000000000000387000382", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.3", + "sz": "2.7202", + "side": "B", + "time": 1762185950546, + "startPosition": "-1406.9114", + "dir": "Close Short", + "closedPnl": "1439.747456", + "hash": "0xc56736a7a53f180ec6e0042ec474650209ea008d403236e0692fe1fa6432f1f9", + "oid": 221333766968, + "crossed": true, + "fee": "2.045788", + "tid": 996437334795418, + "cloid": "0x00000000000000000000000387000382", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105575.0", + "sz": "0.04156", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.11564", + "dir": "Close Short", + "closedPnl": "361.256144", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.921416", + "tid": 106696854502015, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105576.0", + "sz": "0.00011", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.07408", + "dir": "Close Short", + "closedPnl": "0.956054", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.002438", + "tid": 553026430788820, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105576.0", + "sz": "0.00045", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.07397", + "dir": "Close Short", + "closedPnl": "3.91113", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.009976", + "tid": 821918293608545, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105577.0", + "sz": "0.00018", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.07352", + "dir": "Close Short", + "closedPnl": "1.564272", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.00399", + "tid": 810141002455118, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105577.0", + "sz": "0.00028", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.07334", + "dir": "Close Short", + "closedPnl": "2.433312", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.006207", + "tid": 452609869169162, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105577.0", + "sz": "0.00094", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.07306", + "dir": "Close Short", + "closedPnl": "8.168976", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.02084", + "tid": 898794502883785, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105578.0", + "sz": "0.00189", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.07212", + "dir": "Close Short", + "closedPnl": "16.422966", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.041903", + "tid": 491480884810801, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105579.0", + "sz": "0.00284", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.07023", + "dir": "Close Short", + "closedPnl": "24.675056", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.062967", + "tid": 1049053119716453, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105580.0", + "sz": "0.002", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.06739", + "dir": "Close Short", + "closedPnl": "17.3748", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.044343", + "tid": 553592098627910, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105582.0", + "sz": "0.00045", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.06539", + "dir": "Close Short", + "closedPnl": "3.90843", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.009977", + "tid": 454822630924349, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105582.0", + "sz": "0.00473", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.06494", + "dir": "Close Short", + "closedPnl": "41.081942", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.104874", + "tid": 953712479254533, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105583.0", + "sz": "0.00947", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.06021", + "dir": "Close Short", + "closedPnl": "82.241268", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.209972", + "tid": 965778623870621, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105583.0", + "sz": "0.00947", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.05074", + "dir": "Close Short", + "closedPnl": "82.241268", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "0.209972", + "tid": 69929737057123, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105584.0", + "sz": "0.16229", + "side": "B", + "time": 1762185950546, + "startPosition": "-1164.04127", + "dir": "Close Short", + "closedPnl": "1409.228986", + "hash": "0x7891afa8534bac417a0b042ec47465020a73008dee4ecb131c5a5afb124f862c", + "oid": 221333767055, + "crossed": true, + "fee": "3.598397", + "tid": 1065713585108144, + "cloid": "0x00000000000000000000000389000051", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.7", + "sz": "30.53", + "side": "B", + "time": 1762185951188, + "startPosition": "-221558.09", + "dir": "Close Short", + "closedPnl": "1010.918519", + "hash": "0x8480f4dada55e73f85fa042ec4746c020aa900c0755906112849a02d9959c12a", + "oid": 221333779211, + "crossed": true, + "fee": "1.068763", + "tid": 581180143463134, + "cloid": "0x00000000000000000000000388000381", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.72", + "sz": "0.1", + "side": "B", + "time": 1762185951188, + "startPosition": "-221527.56", + "dir": "Close Short", + "closedPnl": "3.30923", + "hash": "0x8480f4dada55e73f85fa042ec4746c020aa900c0755906112849a02d9959c12a", + "oid": 221333779211, + "crossed": true, + "fee": "0.003501", + "tid": 1002271818177984, + "cloid": "0x00000000000000000000000388000381", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "6.0", + "side": "B", + "time": 1762185951188, + "startPosition": "-221527.46", + "dir": "Close Short", + "closedPnl": "198.4938", + "hash": "0x8480f4dada55e73f85fa042ec4746c020aa900c0755906112849a02d9959c12a", + "oid": 221333779211, + "crossed": true, + "fee": "0.210079", + "tid": 94954094774120, + "cloid": "0x00000000000000000000000388000381", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "17.99", + "side": "B", + "time": 1762185951188, + "startPosition": "-221521.46", + "dir": "Close Short", + "closedPnl": "595.150577", + "hash": "0x8480f4dada55e73f85fa042ec4746c020aa900c0755906112849a02d9959c12a", + "oid": 221333779211, + "crossed": true, + "fee": "0.629889", + "tid": 563657812799108, + "cloid": "0x00000000000000000000000388000381", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "5.3", + "side": "B", + "time": 1762185951188, + "startPosition": "-221503.47", + "dir": "Close Short", + "closedPnl": "175.28319", + "hash": "0x8480f4dada55e73f85fa042ec4746c020aa900c0755906112849a02d9959c12a", + "oid": 221333779211, + "crossed": true, + "fee": "0.185581", + "tid": 698316912217993, + "cloid": "0x00000000000000000000000388000381", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.3", + "sz": "2.7893", + "side": "B", + "time": 1762185953003, + "startPosition": "-1404.1912", + "dir": "Close Short", + "closedPnl": "1476.320704", + "hash": "0x5ca652bbd937be7e5e20042ec47483020a1400a1743add50006efe0e983b9869", + "oid": 221333825073, + "crossed": true, + "fee": "2.097757", + "tid": 1112857362440330, + "cloid": "0x00000000000000000000000387000383", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105600.0", + "sz": "0.23658", + "side": "B", + "time": 1762185953003, + "startPosition": "-1163.87898", + "dir": "Close Short", + "closedPnl": "2050.533492", + "hash": "0x516e38e8d81d88fd52e7042ec47483020a3200ce7310a7cff536e43b971162e7", + "oid": 221333825089, + "crossed": true, + "fee": "5.246398", + "tid": 636656525191925, + "cloid": "0x00000000000000000000000389000052", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.78", + "sz": "59.9", + "side": "B", + "time": 1762185953202, + "startPosition": "-221498.17", + "dir": "Close Short", + "closedPnl": "1978.63477", + "hash": "0x82732f1f361c03f683ec042ec47486020dc30004d11f22c8263bda71f51fdde1", + "oid": 221333834254, + "crossed": true, + "fee": "2.097925", + "tid": 839830485593120, + "cloid": "0x00000000000000000000000388000382", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "131165.0", + "side": "B", + "time": 1762185954329, + "startPosition": "-1174645022.0", + "dir": "Close Short", + "closedPnl": "227.17778", + "hash": "0xf22015ab6cd5083cf399042ec4749302090e009107d8270f95e8c0fe2bd8e227", + "oid": 221333859296, + "crossed": true, + "fee": "0.105193", + "tid": 728753512960170, + "cloid": "0x00000000000000000000000385000332", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.3", + "sz": "2.7883", + "side": "B", + "time": 1762185955621, + "startPosition": "-1401.4019", + "dir": "Close Short", + "closedPnl": "1470.214824", + "hash": "0x19ca2ab7a3925b401b43042ec474a302070a009d3e957a12bd92d60a6296352a", + "oid": 221333880005, + "crossed": true, + "fee": "2.098176", + "tid": 406677025608137, + "cloid": "0x00000000000000000000000387000384", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "59.9", + "side": "B", + "time": 1762185955621, + "startPosition": "-221438.27", + "dir": "Close Short", + "closedPnl": "1981.62977", + "hash": "0x160cccc6a33ef4151786042ec474a302071400ac3e3212e7b9d578196232cdff", + "oid": 221333880014, + "crossed": true, + "fee": "2.097296", + "tid": 665615501049493, + "cloid": "0x00000000000000000000000388000383", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "130884.0", + "side": "B", + "time": 1762185956127, + "startPosition": "-1174513857.0", + "dir": "Close Short", + "closedPnl": "226.691088", + "hash": "0x8c94bdfc1ffa1b998e0e042ec474a80203e700e1bafd3a6b305d694edefdf584", + "oid": 221333890897, + "crossed": true, + "fee": "0.104967", + "tid": 836094583365487, + "cloid": "0x00000000000000000000000385000333", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105631.0", + "sz": "0.0144", + "side": "B", + "time": 1762185956127, + "startPosition": "-1163.6424", + "dir": "Close Short", + "closedPnl": "124.36416", + "hash": "0x34301ac43861289435a9042ec474a802040600a9d3644766d7f8c616f765027e", + "oid": 221333890925, + "crossed": true, + "fee": "0.319428", + "tid": 638487237010180, + "cloid": "0x00000000000000000000000389000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105631.0", + "sz": "0.04571", + "side": "B", + "time": 1762185956127, + "startPosition": "-1163.628", + "dir": "Close Short", + "closedPnl": "394.769844", + "hash": "0x34301ac43861289435a9042ec474a802040600a9d3644766d7f8c616f765027e", + "oid": 221333890925, + "crossed": true, + "fee": "1.013962", + "tid": 991288215031551, + "cloid": "0x00000000000000000000000389000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105631.0", + "sz": "0.0144", + "side": "B", + "time": 1762185956127, + "startPosition": "-1163.58229", + "dir": "Close Short", + "closedPnl": "124.36416", + "hash": "0x34301ac43861289435a9042ec474a802040600a9d3644766d7f8c616f765027e", + "oid": 221333890925, + "crossed": true, + "fee": "0.319428", + "tid": 1003621390519292, + "cloid": "0x00000000000000000000000389000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105632.0", + "sz": "0.16203", + "side": "B", + "time": 1762185956127, + "startPosition": "-1163.56789", + "dir": "Close Short", + "closedPnl": "1399.193862", + "hash": "0x34301ac43861289435a9042ec474a802040600a9d3644766d7f8c616f765027e", + "oid": 221333890925, + "crossed": true, + "fee": "3.594266", + "tid": 786179154544025, + "cloid": "0x00000000000000000000000389000053", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.6", + "sz": "2.7894", + "side": "B", + "time": 1762185957811, + "startPosition": "-1398.6136", + "dir": "Close Short", + "closedPnl": "1475.536812", + "hash": "0xeaf3fefe03c8c4f3ec6d042ec474bc01c80016e39ecbe3c58ebcaa50c2cc9ede", + "oid": 221333927852, + "crossed": true, + "fee": "2.098008", + "tid": 709256897639271, + "cloid": "0x00000000000000000000000387000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.62", + "sz": "59.94", + "side": "B", + "time": 1762185957811, + "startPosition": "-221378.37", + "dir": "Close Short", + "closedPnl": "1989.546462", + "hash": "0xb2847b7969aa67b7b3fe042ec474bc01d600935f04ad8689564d26cc28ae41a2", + "oid": 221333927863, + "crossed": true, + "fee": "2.097312", + "tid": 137128495709761, + "cloid": "0x00000000000000000000000388000384", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "131002.0", + "side": "B", + "time": 1762185958208, + "startPosition": "-1174382973.0", + "dir": "Close Short", + "closedPnl": "227.157468", + "hash": "0xe407b7727da4246ae581042ec474c102133d005818a7433c87d062c53ca7fe55", + "oid": 221333936830, + "crossed": true, + "fee": "0.105007", + "tid": 914198646280419, + "cloid": "0x00000000000000000000000385000334", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105617.0", + "sz": "0.00011", + "side": "B", + "time": 1762185958952, + "startPosition": "-1163.40586", + "dir": "Close Short", + "closedPnl": "0.951544", + "hash": "0x99dc556acfcba4749b56042ec474c9020c8700506acec3463da500bd8ecf7e5f", + "oid": 221333950484, + "crossed": true, + "fee": "0.002439", + "tid": 645242807303322, + "cloid": "0x00000000000000000000000389000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105618.0", + "sz": "0.00011", + "side": "B", + "time": 1762185958952, + "startPosition": "-1163.40575", + "dir": "Close Short", + "closedPnl": "0.951434", + "hash": "0x99dc556acfcba4749b56042ec474c9020c8700506acec3463da500bd8ecf7e5f", + "oid": 221333950484, + "crossed": true, + "fee": "0.002439", + "tid": 439572452614170, + "cloid": "0x00000000000000000000000389000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105619.0", + "sz": "0.00011", + "side": "B", + "time": 1762185958952, + "startPosition": "-1163.40564", + "dir": "Close Short", + "closedPnl": "0.951324", + "hash": "0x99dc556acfcba4749b56042ec474c9020c8700506acec3463da500bd8ecf7e5f", + "oid": 221333950484, + "crossed": true, + "fee": "0.002439", + "tid": 964817161875692, + "cloid": "0x00000000000000000000000389000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105620.0", + "sz": "0.00011", + "side": "B", + "time": 1762185958952, + "startPosition": "-1163.40553", + "dir": "Close Short", + "closedPnl": "0.951214", + "hash": "0x99dc556acfcba4749b56042ec474c9020c8700506acec3463da500bd8ecf7e5f", + "oid": 221333950484, + "crossed": true, + "fee": "0.002439", + "tid": 814306981755665, + "cloid": "0x00000000000000000000000389000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105621.0", + "sz": "0.00011", + "side": "B", + "time": 1762185958952, + "startPosition": "-1163.40542", + "dir": "Close Short", + "closedPnl": "0.951104", + "hash": "0x99dc556acfcba4749b56042ec474c9020c8700506acec3463da500bd8ecf7e5f", + "oid": 221333950484, + "crossed": true, + "fee": "0.002439", + "tid": 706342345303094, + "cloid": "0x00000000000000000000000389000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105629.0", + "sz": "0.03548", + "side": "B", + "time": 1762185958952, + "startPosition": "-1163.40531", + "dir": "Close Short", + "closedPnl": "306.490432", + "hash": "0x99dc556acfcba4749b56042ec474c9020c8700506acec3463da500bd8ecf7e5f", + "oid": 221333950484, + "crossed": true, + "fee": "0.78702", + "tid": 567142227715930, + "cloid": "0x00000000000000000000000389000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105629.0", + "sz": "0.20054", + "side": "B", + "time": 1762185958952, + "startPosition": "-1163.36983", + "dir": "Close Short", + "closedPnl": "1732.344736", + "hash": "0x99dc556acfcba4749b56042ec474c9020c8700506acec3463da500bd8ecf7e5f", + "oid": 221333950484, + "crossed": true, + "fee": "4.448396", + "tid": 435054068930324, + "cloid": "0x00000000000000000000000389000054", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.3", + "sz": "1.0039", + "side": "B", + "time": 1762185959712, + "startPosition": "-1395.8242", + "dir": "Close Short", + "closedPnl": "529.336392", + "hash": "0x8782a0b057a1ca5f88fc042ec474d402083e0095f2a4e9312b4b4c0316a5a44a", + "oid": 221333967229, + "crossed": true, + "fee": "0.755427", + "tid": 388811313526599, + "cloid": "0x00000000000000000000000387000386", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.3", + "sz": "1.7848", + "side": "B", + "time": 1762185959712, + "startPosition": "-1394.8203", + "dir": "Close Short", + "closedPnl": "941.089344", + "hash": "0x8782a0b057a1ca5f88fc042ec474d402083e0095f2a4e9312b4b4c0316a5a44a", + "oid": 221333967229, + "crossed": true, + "fee": "1.343049", + "tid": 355665271854335, + "cloid": "0x00000000000000000000000387000386", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.69", + "sz": "1.38", + "side": "B", + "time": 1762185959712, + "startPosition": "-221318.43", + "dir": "Close Short", + "closedPnl": "45.708774", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.048306", + "tid": 918708351970531, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.69", + "sz": "1.84", + "side": "B", + "time": 1762185959712, + "startPosition": "-221317.05", + "dir": "Close Short", + "closedPnl": "60.945032", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.064409", + "tid": 981870384214534, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.69", + "sz": "2.76", + "side": "B", + "time": 1762185959712, + "startPosition": "-221315.21", + "dir": "Close Short", + "closedPnl": "91.417548", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.096613", + "tid": 860086688221838, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.69", + "sz": "3.68", + "side": "B", + "time": 1762185959712, + "startPosition": "-221312.45", + "dir": "Close Short", + "closedPnl": "121.890064", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.128818", + "tid": 826844535288582, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.69", + "sz": "4.59", + "side": "B", + "time": 1762185959712, + "startPosition": "-221308.77", + "dir": "Close Short", + "closedPnl": "152.031357", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.160672", + "tid": 528791471200849, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.69", + "sz": "5.51", + "side": "B", + "time": 1762185959712, + "startPosition": "-221304.18", + "dir": "Close Short", + "closedPnl": "182.503873", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.192876", + "tid": 796631699425626, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.7", + "sz": "1.0", + "side": "B", + "time": 1762185959712, + "startPosition": "-221298.67", + "dir": "Close Short", + "closedPnl": "33.1123", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.035007", + "tid": 1047606612282545, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "5.97", + "side": "B", + "time": 1762185959712, + "startPosition": "-221297.67", + "dir": "Close Short", + "closedPnl": "197.501331", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.209029", + "tid": 801158554853027, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "1.0", + "side": "B", + "time": 1762185959712, + "startPosition": "-221291.7", + "dir": "Close Short", + "closedPnl": "33.0823", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.035013", + "tid": 650460543441315, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.73", + "sz": "6.46", + "side": "B", + "time": 1762185959712, + "startPosition": "-221290.7", + "dir": "Close Short", + "closedPnl": "213.711658", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.226185", + "tid": 1027272014108626, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.74", + "sz": "0.17", + "side": "B", + "time": 1762185959712, + "startPosition": "-221284.24", + "dir": "Close Short", + "closedPnl": "5.622291", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.005952", + "tid": 839375921445681, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "6.0", + "side": "B", + "time": 1762185959712, + "startPosition": "-221284.07", + "dir": "Close Short", + "closedPnl": "198.3738", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.210104", + "tid": 1002264991907932, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.75", + "sz": "14.44", + "side": "B", + "time": 1762185959712, + "startPosition": "-221278.07", + "dir": "Close Short", + "closedPnl": "477.419612", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.505652", + "tid": 267496094213994, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.76", + "sz": "5.12", + "side": "B", + "time": 1762185959712, + "startPosition": "-221263.63", + "dir": "Close Short", + "closedPnl": "169.227776", + "hash": "0xed298de68ac44f56eea3042ec474d402084000cc25c76e2890f2393949c82941", + "oid": 221333967230, + "crossed": true, + "fee": "0.1793", + "tid": 141189533331164, + "cloid": "0x00000000000000000000000388000385", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003818", + "sz": "130893.0", + "side": "B", + "time": 1762185960082, + "startPosition": "-1174251971.0", + "dir": "Close Short", + "closedPnl": "226.837569", + "hash": "0x771237d262fbabf9788b042ec474d90208e200b7fdfecacb1adae32521ff85e4", + "oid": 221333973084, + "crossed": true, + "fee": "0.104947", + "tid": 702273584286104, + "cloid": "0x00000000000000000000000385000335", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105647.0", + "sz": "0.19398", + "side": "B", + "time": 1762185960528, + "startPosition": "-1163.16929", + "dir": "Close Short", + "closedPnl": "1672.185192", + "hash": "0xa4d92428f21d92b9a652042ec474de0203cb000e8d10b18b48a1cf7bb1116ca4", + "oid": 221333981450, + "crossed": true, + "fee": "4.303615", + "tid": 940772140754636, + "cloid": "0x00000000000000000000000389000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105648.0", + "sz": "0.04251", + "side": "B", + "time": 1762185960528, + "startPosition": "-1162.97531", + "dir": "Close Short", + "closedPnl": "366.410694", + "hash": "0xa4d92428f21d92b9a652042ec474de0203cb000e8d10b18b48a1cf7bb1116ca4", + "oid": 221333981450, + "crossed": true, + "fee": "0.94313", + "tid": 70465599019949, + "cloid": "0x00000000000000000000000389000055", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.78", + "sz": "51.82", + "side": "B", + "time": 1762185961941, + "startPosition": "-221258.51", + "dir": "Close Short", + "closedPnl": "1711.733786", + "hash": "0xa8e7f22407515edfaa61042ec474ed0209b40009a2547db14cb09d76c65538ca", + "oid": 221334003658, + "crossed": true, + "fee": "1.814933", + "tid": 927804015850551, + "cloid": "0x00000000000000000000000388000386", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.8", + "sz": "8.07", + "side": "B", + "time": 1762185961941, + "startPosition": "-221206.69", + "dir": "Close Short", + "closedPnl": "266.409261", + "hash": "0xa8e7f22407515edfaa61042ec474ed0209b40009a2547db14cb09d76c65538ca", + "oid": 221334003658, + "crossed": true, + "fee": "0.282675", + "tid": 567980308707614, + "cloid": "0x00000000000000000000000388000386", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3584.1", + "sz": "2.788", + "side": "B", + "time": 1762185962162, + "startPosition": "-1393.0355", + "dir": "Close Short", + "closedPnl": "1467.82624", + "hash": "0xb6d0f55a755d25edb84a042ec474f1020c800040105044bf5a99a0ad3450ffd8", + "oid": 221334009653, + "crossed": true, + "fee": "2.098418", + "tid": 524914197393993, + "cloid": "0x00000000000000000000000387000387", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105675.0", + "sz": "0.00015", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.9328", + "dir": "Close Short", + "closedPnl": "1.28886", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.003328", + "tid": 254672954496397, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105675.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.93265", + "dir": "Close Short", + "closedPnl": "0.945164", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 4917803392833, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105676.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.93254", + "dir": "Close Short", + "closedPnl": "0.945054", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 681066540113404, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105676.0", + "sz": "0.00758", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.93243", + "dir": "Close Short", + "closedPnl": "65.122812", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.168215", + "tid": 451238082031528, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105677.0", + "sz": "0.02333", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.92485", + "dir": "Close Short", + "closedPnl": "200.414032", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.517743", + "tid": 350668287314046, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105677.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.90152", + "dir": "Close Short", + "closedPnl": "0.944944", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 183631459667435, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105678.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.90141", + "dir": "Close Short", + "closedPnl": "0.944834", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 34685077667574, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105679.0", + "sz": "0.00159", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.9013", + "dir": "Close Short", + "closedPnl": "13.655556", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.035286", + "tid": 301905903189377, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105679.0", + "sz": "0.00015", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.89971", + "dir": "Close Short", + "closedPnl": "1.28826", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.003328", + "tid": 836044740907708, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105679.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.89956", + "dir": "Close Short", + "closedPnl": "0.944724", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 410400497700444, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105680.0", + "sz": "0.00028", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.89945", + "dir": "Close Short", + "closedPnl": "2.404472", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.006213", + "tid": 435717618102358, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105680.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.89917", + "dir": "Close Short", + "closedPnl": "0.944614", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 393365180297684, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105681.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.89906", + "dir": "Close Short", + "closedPnl": "0.944504", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 455453640896626, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105682.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.89895", + "dir": "Close Short", + "closedPnl": "0.944394", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 1040998006327408, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105683.0", + "sz": "0.00015", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.89884", + "dir": "Close Short", + "closedPnl": "1.28766", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.003329", + "tid": 543426235678311, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105683.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.89869", + "dir": "Close Short", + "closedPnl": "0.944284", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 1001053831621849, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105683.0", + "sz": "0.14193", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.89858", + "dir": "Close Short", + "closedPnl": "1218.383892", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "3.149913", + "tid": 742391220210203, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105684.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.75665", + "dir": "Close Short", + "closedPnl": "0.944174", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 166827420766990, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105685.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.75654", + "dir": "Close Short", + "closedPnl": "0.944064", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 460471505393278, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105686.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.75643", + "dir": "Close Short", + "closedPnl": "0.943954", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 11719201387498, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105687.0", + "sz": "0.00011", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.75632", + "dir": "Close Short", + "closedPnl": "0.943844", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "0.002441", + "tid": 1117369231214256, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105687.0", + "sz": "0.05991", + "side": "B", + "time": 1762185963269, + "startPosition": "-1162.75621", + "dir": "Close Short", + "closedPnl": "514.051764", + "hash": "0xedf6354a399337cfef6f042ec474ff02149e002fd49656a191bee09cf89711ba", + "oid": 221334031864, + "crossed": true, + "fee": "1.329658", + "tid": 1096737202746684, + "cloid": "0x00000000000000000000000389000056", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.89", + "sz": "10.35", + "side": "B", + "time": 1762185964359, + "startPosition": "-221198.62", + "dir": "Close Short", + "closedPnl": "340.745805", + "hash": "0xef65788df18361daf0df042ec4750d01af0090738c8680ac932e23e0b0873bc5", + "oid": 221334048554, + "crossed": true, + "fee": "0.362735", + "tid": 711134708203462, + "cloid": "0x00000000000000000000000388000387", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.92", + "sz": "10.56", + "side": "B", + "time": 1762185964359, + "startPosition": "-221188.27", + "dir": "Close Short", + "closedPnl": "347.342688", + "hash": "0xef65788df18361daf0df042ec4750d01af0090738c8680ac932e23e0b0873bc5", + "oid": 221334048554, + "crossed": true, + "fee": "0.370161", + "tid": 192185402263304, + "cloid": "0x00000000000000000000000388000387", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.94", + "sz": "38.93", + "side": "B", + "time": 1762185964359, + "startPosition": "-221177.71", + "dir": "Close Short", + "closedPnl": "1279.718639", + "hash": "0xef65788df18361daf0df042ec4750d01af0090738c8680ac932e23e0b0873bc5", + "oid": 221334048554, + "crossed": true, + "fee": "1.364784", + "tid": 158938289963235, + "cloid": "0x00000000000000000000000388000387", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "2.5", + "side": "B", + "time": 1762185965589, + "startPosition": "-1390.2475", + "dir": "Close Short", + "closedPnl": "1310.45", + "hash": "0x84f62e7d129e3d62866f042ec4751c020d5d0062ad915c3428bed9cfd192174d", + "oid": 221334080576, + "crossed": true, + "fee": "1.882859", + "tid": 756101743527579, + "cloid": "0x00000000000000000000000387000388", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3586.4", + "sz": "0.2863", + "side": "B", + "time": 1762185965589, + "startPosition": "-1387.7475", + "dir": "Close Short", + "closedPnl": "150.072734", + "hash": "0x84f62e7d129e3d62866f042ec4751c020d5d0062ad915c3428bed9cfd192174d", + "oid": 221334080576, + "crossed": true, + "fee": "0.215625", + "tid": 985819510275696, + "cloid": "0x00000000000000000000000387000388", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105690.0", + "sz": "0.2364", + "side": "B", + "time": 1762185965589, + "startPosition": "-1162.6963", + "dir": "Close Short", + "closedPnl": "2027.69736", + "hash": "0x65010ec9c523a799667a042ec4751c020d6e00af6026c66b08c9ba1c84278184", + "oid": 221334080591, + "crossed": true, + "fee": "5.246874", + "tid": 232302128933894, + "cloid": "0x00000000000000000000000389000057", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "FARTCOIN", + "px": "0.26945", + "sz": "3758.7", + "side": "B", + "time": 1762185966892, + "startPosition": "-3959353.2000000002", + "dir": "Close Short", + "closedPnl": "1998.951834", + "hash": "0x1c0ba50b90f437761d85042ec4752d020a1e00f12bf75648bfd4505e4ff81160", + "oid": 221334031865, + "crossed": false, + "fee": "0.028357", + "tid": 706053228039960, + "cloid": "0x00000000000000000000000384000174", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.67", + "sz": "59.9", + "side": "B", + "time": 1762185967409, + "startPosition": "-221138.78", + "dir": "Close Short", + "closedPnl": "1985.22377", + "hash": "0x2d9a4878954126fc2f14042ec475320210d2005e304445ced162f3cb544500e6", + "oid": 221334119334, + "crossed": true, + "fee": "2.096541", + "tid": 946448439546046, + "cloid": "0x00000000000000000000000388000388", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003819", + "sz": "130787.0", + "side": "B", + "time": 1762185967409, + "startPosition": "-1174121078.0", + "dir": "Close Short", + "closedPnl": "226.523084", + "hash": "0x5561267377fddcd256da042ec47532021135005912f0fba4f929d1c636f1b6bc", + "oid": 221334119396, + "crossed": true, + "fee": "0.104889", + "tid": 28166061023889, + "cloid": "0x00000000000000000000000385000337", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105656.0", + "sz": "0.23644", + "side": "B", + "time": 1762185967989, + "startPosition": "-1162.4599", + "dir": "Close Short", + "closedPnl": "2036.079416", + "hash": "0xebef0ee113f3c0f5ed68042ec4753a0202cd00c6aef6dfc78fb7ba33d2f79ae0", + "oid": 221334136526, + "crossed": true, + "fee": "5.246073", + "tid": 608300530737091, + "cloid": "0x00000000000000000000000389000058", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3583.1", + "sz": "2.7873", + "side": "B", + "time": 1762185968982, + "startPosition": "-1387.4612", + "dir": "Close Short", + "closedPnl": "1470.245004", + "hash": "0x1bcdf9c61c4de97c1d47042ec4754202367200abb741084ebf96a518db41c366", + "oid": 221334151382, + "crossed": true, + "fee": "2.097306", + "tid": 435511939633436, + "cloid": "0x00000000000000000000000387000389", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003816", + "sz": "60578.0", + "side": "B", + "time": 1762185970422, + "startPosition": "-1173990291.0", + "dir": "Close Short", + "closedPnl": "105.10283", + "hash": "0x2b5d6ca58b351cc22cd7042ec4754e0212fd008b26383b94cf2617f84a38f6ac", + "oid": 221334178831, + "crossed": true, + "fee": "0.048544", + "tid": 1068295995597664, + "cloid": "0x00000000000000000000000385000338", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "PUMP", + "px": "0.003817", + "sz": "70360.0", + "side": "B", + "time": 1762185970422, + "startPosition": "-1173929713.0", + "dir": "Close Short", + "closedPnl": "122.00424", + "hash": "0x2b5d6ca58b351cc22cd7042ec4754e0212fd008b26383b94cf2617f84a38f6ac", + "oid": 221334178831, + "crossed": true, + "fee": "0.056398", + "tid": 458885130177934, + "cloid": "0x00000000000000000000000385000338", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.6", + "sz": "59.94", + "side": "B", + "time": 1762185970422, + "startPosition": "-221078.88", + "dir": "Close Short", + "closedPnl": "1990.745262", + "hash": "0x407174eb6c00cec141eb042ec4754e02139200d10703ed93e43a203e2b04a8ab", + "oid": 221334178913, + "crossed": true, + "fee": "2.09706", + "tid": 291877709365203, + "cloid": "0x00000000000000000000000388000389", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105633.0", + "sz": "0.09871", + "side": "B", + "time": 1762185971647, + "startPosition": "-1162.22346", + "dir": "Close Short", + "closedPnl": "852.301624", + "hash": "0xfa7b13f57b2bc420fbf4042ec4755c020e8e00db162ee2f39e43bf483a2f9e0b", + "oid": 221334199278, + "crossed": true, + "fee": "2.189677", + "tid": 651314434008405, + "cloid": "0x00000000000000000000000389000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "BTC", + "px": "105633.0", + "sz": "0.13778", + "side": "B", + "time": 1762185971647, + "startPosition": "-1162.12475", + "dir": "Close Short", + "closedPnl": "1189.647632", + "hash": "0xfa7b13f57b2bc420fbf4042ec4755c020e8e00db162ee2f39e43bf483a2f9e0b", + "oid": 221334199278, + "crossed": true, + "fee": "3.056364", + "tid": 1627000553212, + "cloid": "0x00000000000000000000000389000059", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "ETH", + "px": "3581.0", + "sz": "2.7902", + "side": "B", + "time": 1762185972393, + "startPosition": "-1384.6739", + "dir": "Close Short", + "closedPnl": "1477.634116", + "hash": "0xaf0b227e467157b3b084042ec475630207a80063e174768552d3cdd10575319e", + "oid": 221334220705, + "crossed": true, + "fee": "2.098258", + "tid": 320758862830804, + "cloid": "0x00000000000000000000000387000390", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.53", + "sz": "48.02", + "side": "B", + "time": 1762185973220, + "startPosition": "-221018.94", + "dir": "Close Short", + "closedPnl": "1598.216046", + "hash": "0x0065c6bf51a172b101df042ec4756d02022100a4eca49183a42e721210a54c9b", + "oid": 221334233354, + "crossed": true, + "fee": "1.679321", + "tid": 235394446861401, + "cloid": "0x00000000000000000000000388000390", + "feeToken": "USDC", + "twapId": null + }, + { + "coin": "SOL", + "px": "166.54", + "sz": "11.94", + "side": "B", + "time": 1762185973220, + "startPosition": "-220970.92", + "dir": "Close Short", + "closedPnl": "397.271262", + "hash": "0x0065c6bf51a172b101df042ec4756d02022100a4eca49183a42e721210a54c9b", + "oid": 221334233354, + "crossed": true, + "fee": "0.417582", + "tid": 676291759875177, + "cloid": "0x00000000000000000000000388000390", + "feeToken": "USDC", + "twapId": null + } + ], + "user_fees": { + "dailyUserVlm": [ + { + "date": "2025-10-21", + "userCross": "56348714.4799999967", + "userAdd": "107018.3", + "exchange": "15421314316.1100006104" + }, + { + "date": "2025-10-22", + "userCross": "27765103.0100000016", + "userAdd": "612723.92", + "exchange": "12413722514.0200004578" + }, + { + "date": "2025-10-23", + "userCross": "12021044.2400000002", + "userAdd": "1941632.96", + "exchange": "9453148934.0400009155" + }, + { + "date": "2025-10-24", + "userCross": "0.0", + "userAdd": "0.0", + "exchange": "7176352634.4499998093" + }, + { + "date": "2025-10-25", + "userCross": "2028350.6699999999", + "userAdd": "7584.22", + "exchange": "3635812557.3200001717" + }, + { + "date": "2025-10-26", + "userCross": "46609.44", + "userAdd": "16484.51", + "exchange": "6757753944.5500001907" + }, + { + "date": "2025-10-27", + "userCross": "132384492.7900000066", + "userAdd": "3312484.8700000001", + "exchange": "9049570342.1100006104" + }, + { + "date": "2025-10-28", + "userCross": "53369323.2599999979", + "userAdd": "9927925.3699999992", + "exchange": "10448223421.4400005341" + }, + { + "date": "2025-10-29", + "userCross": "32607139.0", + "userAdd": "2561208.2400000002", + "exchange": "11712391721.8999996185" + }, + { + "date": "2025-10-30", + "userCross": "28956838.5700000003", + "userAdd": "604800.99", + "exchange": "13152201047.5699996948" + }, + { + "date": "2025-10-31", + "userCross": "6706631.6200000001", + "userAdd": "203096.08", + "exchange": "7775626855.8199996948" + }, + { + "date": "2025-11-01", + "userCross": "26455772.370000001", + "userAdd": "2017668.1699999999", + "exchange": "3305234543.4899997711" + }, + { + "date": "2025-11-02", + "userCross": "1745503.9099999999", + "userAdd": "59839.76", + "exchange": "4515769173.3500003815" + }, + { + "date": "2025-11-03", + "userCross": "82246996.9200000018", + "userAdd": "1529808.8799999999", + "exchange": "13169277429.4599990845" + }, + { + "date": "2025-11-04", + "userCross": "41496099.7299999967", + "userAdd": "4384817.3200000003", + "exchange": "17684274396.4099998474" + } + ], + "feeSchedule": { + "cross": "0.00045", + "add": "0.00015", + "spotCross": "0.0007", + "spotAdd": "0.0004", + "tiers": { + "vip": [ + { + "ntlCutoff": "5000000.0", + "cross": "0.0004", + "add": "0.00012", + "spotCross": "0.0006", + "spotAdd": "0.0003" + }, + { + "ntlCutoff": "25000000.0", + "cross": "0.00035", + "add": "0.00008", + "spotCross": "0.0005", + "spotAdd": "0.0002" + }, + { + "ntlCutoff": "100000000.0", + "cross": "0.0003", + "add": "0.00004", + "spotCross": "0.0004", + "spotAdd": "0.0001" + }, + { + "ntlCutoff": "500000000.0", + "cross": "0.00028", + "add": "0.0", + "spotCross": "0.00035", + "spotAdd": "0.0" + }, + { + "ntlCutoff": "2000000000.0", + "cross": "0.00026", + "add": "0.0", + "spotCross": "0.0003", + "spotAdd": "0.0" + }, + { + "ntlCutoff": "7000000000.0", + "cross": "0.00024", + "add": "0.0", + "spotCross": "0.00025", + "spotAdd": "0.0" + } + ], + "mm": [ + { + "makerFractionCutoff": "0.005", + "add": "-0.00001" + }, + { + "makerFractionCutoff": "0.015", + "add": "-0.00002" + }, + { + "makerFractionCutoff": "0.03", + "add": "-0.00003" + } + ] + }, + "referralDiscount": "0.04", + "stakingDiscountTiers": [ + { + "bpsOfMaxSupply": "0.0", + "discount": "0.0" + }, + { + "bpsOfMaxSupply": "0.0001", + "discount": "0.05" + }, + { + "bpsOfMaxSupply": "0.001", + "discount": "0.1" + }, + { + "bpsOfMaxSupply": "0.01", + "discount": "0.15" + }, + { + "bpsOfMaxSupply": "0.1", + "discount": "0.2" + }, + { + "bpsOfMaxSupply": "1.0", + "discount": "0.3" + }, + { + "bpsOfMaxSupply": "5.0", + "discount": "0.4" + } + ] + }, + "userCrossRate": "0.00021", + "userAddRate": "0.000028", + "userSpotCrossRate": "0.00028", + "userSpotAddRate": "0.00007", + "activeReferralDiscount": "0.0", + "trial": null, + "feeTrialEscrow": "0.0", + "nextTrialAvailableTimestamp": null, + "stakingLink": null, + "activeStakingDiscount": { + "bpsOfMaxSupply": "1.1279080724", + "discount": "0.3" + } + }, + "rate_limit": { + "cumVlm": "3119827923.7600002289", + "nRequestsUsed": 1842227, + "nRequestsCap": 3119837923 + }, + "funding_payments": [ + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1392.82359", + "szi": "-986.20071", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "812.983446", + "szi": "-17064.3363", + "fundingRate": "0.0000119638", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "312.817986", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.048414", + "szi": "-109217.0", + "fundingRate": "-0.0000022995", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-6.532817", + "szi": "-18747.2", + "fundingRate": "-0.0000418079", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.745926", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.768505", + "szi": "-39691.0", + "fundingRate": "0.0000074522", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "438.043126", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.050402", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "110.379539", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761688800030, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "4.813547", + "szi": "4.0192", + "fundingRate": "-0.0000460099", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1395.769864", + "szi": "-986.20071", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "852.171624", + "szi": "-17064.3363", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "314.431032", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.025866", + "szi": "-109217.0", + "fundingRate": "-0.0000012202", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-8.849481", + "szi": "-18747.2", + "fundingRate": "-0.0000559458", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.813239", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.750436", + "szi": "-39691.0", + "fundingRate": "0.0000072399", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "444.797583", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.145213", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "111.892903", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761692400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "-1.307897", + "szi": "4.0192", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1391.751096", + "szi": "-986.20071", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "823.209363", + "szi": "-17064.3363", + "fundingRate": "0.0000121222", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "313.237378", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.056504", + "szi": "-109217.0", + "fundingRate": "-0.0000026717", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-4.90704", + "szi": "-18747.2", + "fundingRate": "-0.0000312199", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.792527", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.070538", + "szi": "-39691.0", + "fundingRate": "0.0000006826", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "440.396113", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.927765", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "111.076167", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761696000102, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "-1.30845", + "szi": "4.0192", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1386.423201", + "szi": "-986.40072", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "847.764936", + "szi": "-17068.8063", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "312.640551", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.040686", + "szi": "-109217.0", + "fundingRate": "-0.0000019264", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.607076", + "szi": "-18747.2", + "fundingRate": "-0.0000165958", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.757223", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.32499", + "szi": "-39691.0", + "fundingRate": "-0.0000031378", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "438.716727", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.838106", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "109.899105", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761699600042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "-1.308048", + "szi": "4.0192", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1387.126012", + "szi": "-986.40072", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "849.706513", + "szi": "-17068.8063", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "313.221248", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.025186", + "szi": "-109217.0", + "fundingRate": "-0.0000011898", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.126658", + "szi": "-18747.2", + "fundingRate": "-0.0000071417", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.796764", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.163681", + "szi": "-39691.0", + "fundingRate": "0.0000111941", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "443.865616", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.841198", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "112.13312", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761703200077, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "6.330597", + "szi": "4.0192", + "fundingRate": "-0.0000604061", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1389.185124", + "szi": "-986.40072", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "854.080395", + "szi": "-17068.8063", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "314.060031", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.134171", + "szi": "-109217.0", + "fundingRate": "-0.000006337", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-4.196795", + "szi": "-18747.2", + "fundingRate": "-0.0000266821", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.795822", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.742536", + "szi": "-39691.0", + "fundingRate": "0.0000071538", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "445.30509", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.893757", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "112.805727", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761706800042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "-2.616163", + "szi": "8.0192", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1387.409602", + "szi": "-986.40072", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "852.970922", + "szi": "-17068.8063", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "312.801856", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.134367", + "szi": "-109217.0", + "fundingRate": "-0.0000063742", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.919426", + "szi": "-18747.2", + "fundingRate": "-0.0000249335", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.76193", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.774291", + "szi": "-39691.0", + "fundingRate": "0.0000074778", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "441.134305", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.738142", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "114.00681", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761710400036, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "12.960178", + "szi": "-8.0", + "fundingRate": "0.0000620579", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1390.960645", + "szi": "-986.40072", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "856.363348", + "szi": "-17068.8063", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "313.850335", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.134399", + "szi": "-109217.0", + "fundingRate": "-0.0000063487", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-4.233066", + "szi": "-18747.2", + "fundingRate": "-0.0000268168", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.752986", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.849837", + "szi": "-39691.0", + "fundingRate": "0.0000081757", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "444.197802", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.749994", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "116.985496", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761714000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6106", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1398.393176", + "szi": "-989.6713", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "859.340557", + "szi": "-17070.3063", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "314.802032", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.140172", + "szi": "-109217.0", + "fundingRate": "-0.0000066149", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-6.239153", + "szi": "-18747.2", + "fundingRate": "-0.0000395114", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.751104", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.995184", + "szi": "-39691.0", + "fundingRate": "0.0000095736", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "1262.368334", + "szi": "-738191.99", + "fundingRate": "0.0000356193", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.859748", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "118.93125", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761717600006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6121", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1413.018683", + "szi": "-997.90336", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "471.282595", + "szi": "-17070.6063", + "fundingRate": "0.0000068603", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "315.43112", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.124867", + "szi": "-109217.0", + "fundingRate": "-0.0000058881", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-8.003532", + "szi": "-18747.2", + "fundingRate": "-0.0000504155", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.769932", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.206855", + "szi": "-39691.0", + "fundingRate": "0.0000115596", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "440.645253", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.032367", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "116.769301", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761721200020, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6141", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1419.770301", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "280.383082", + "szi": "-17070.6063", + "fundingRate": "0.000004081", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "315.576294", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.070938", + "szi": "-109217.0", + "fundingRate": "-0.0000033422", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-4.825044", + "szi": "-18747.2", + "fundingRate": "-0.0000305307", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.785466", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.724226", + "szi": "-39691.0", + "fundingRate": "0.0000069263", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "555.902288", + "szi": "-738191.99", + "fundingRate": "0.0000157963", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.01021", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "117.898319", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761724800053, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6153", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1413.744153", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "436.948903", + "szi": "-17070.6063", + "fundingRate": "0.0000063862", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "313.769683", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.001699", + "szi": "-109217.0", + "fundingRate": "-0.0000000805", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.671933", + "szi": "-18747.2", + "fundingRate": "-0.0000169753", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.691793", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.30375", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "437.646348", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.999904", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "117.201691", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761728400061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6129", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1412.481413", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-1450.191117", + "szi": "-17070.6063", + "fundingRate": "-0.0000212514", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "313.3019", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.058408", + "szi": "-109217.0", + "fundingRate": "0.0000027664", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.446574", + "szi": "-18747.2", + "fundingRate": "-0.0000217632", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.72945", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.313524", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "438.070809", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.024122", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "116.673214", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761732000044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6099", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1411.193668", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-2013.654347", + "szi": "-16570.7029", + "fundingRate": "-0.0000304612", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "316.560252", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.132138", + "szi": "-109217.0", + "fundingRate": "0.0000062371", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.700936", + "szi": "-18747.2", + "fundingRate": "-0.0000231705", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.819829", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.087803", + "szi": "-39691.0", + "fundingRate": "0.0000103763", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "443.03515", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.066891", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "118.450817", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761735600044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6111", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1414.419282", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-779.849234", + "szi": "-16570.7029", + "fundingRate": "-0.0000117323", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "320.576737", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.164162", + "szi": "-109217.0", + "fundingRate": "0.0000076916", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.535506", + "szi": "-18747.2", + "fundingRate": "-0.0000219672", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.930919", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.304621", + "szi": "-39691.0", + "fundingRate": "0.0000124045", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "454.301805", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.133362", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "120.51668", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761739200098, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6135", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1414.631822", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-416.083451", + "szi": "-16570.7029", + "fundingRate": "-0.0000062524", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "322.399479", + "szi": "-129043.67", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.220831", + "szi": "-109217.0", + "fundingRate": "0.0000103103", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.675234", + "szi": "-18747.2", + "fundingRate": "-0.0000167009", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.980345", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.940564", + "szi": "-39691.0", + "fundingRate": "0.0000089205", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "449.03296", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.317316", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "120.852983", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761742800000, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6121", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1411.343696", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "-223.187469", + "szi": "-16570.7029", + "fundingRate": "-0.0000033712", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "422.7971", + "szi": "-168470.23", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.264905", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.379609", + "szi": "-18747.2", + "fundingRate": "-0.0000085719", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.920093", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.304239", + "szi": "-39691.0", + "fundingRate": "0.0000029095", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "447.916444", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.680073", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "120.780918", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761746400006, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6178", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1406.205218", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "393.185715", + "szi": "-16570.7029", + "fundingRate": "0.0000059489", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "511.328927", + "szi": "-204470.23", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.064864", + "szi": "-109217.0", + "fundingRate": "0.0000030731", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.144698", + "szi": "-18747.2", + "fundingRate": "0.0000071095", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.85984", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.092576", + "szi": "-39691.0", + "fundingRate": "-0.0000008832", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "443.487292", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.615663", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "120.252442", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761750000035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.612", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1394.127919", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "23.355797", + "szi": "-16570.7029", + "fundingRate": "0.0000003567", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "544.650663", + "szi": "-221470.23", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.015914", + "szi": "-109217.0", + "fundingRate": "0.0000007624", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.930513", + "szi": "-18747.2", + "fundingRate": "0.0000058601", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.74216", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-1.239459", + "szi": "-39691.0", + "fundingRate": "-0.0000118881", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "432.183727", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.272487", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "116.985496", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761753600064, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "0.695158", + "szi": "-8.0", + "fundingRate": "0.0000033294", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1389.164474", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "492.214462", + "szi": "-16570.7029", + "fundingRate": "0.0000074963", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "577.511339", + "szi": "-236491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.149045", + "szi": "-109217.0", + "fundingRate": "-0.0000071014", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.370598", + "szi": "-18747.2", + "fundingRate": "0.0000086469", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.777935", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.830047", + "szi": "-39691.0", + "fundingRate": "-0.0000079607", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "437.304934", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.196226", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "118.138536", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761757200196, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "-6.894766", + "szi": "-8.0", + "fundingRate": "-0.0000330007", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1397.841126", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "633.008381", + "szi": "-16570.7029", + "fundingRate": "0.0000095213", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "612.692371", + "szi": "-246991.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.072885", + "szi": "-109217.0", + "fundingRate": "-0.0000034072", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.659754", + "szi": "-18747.2", + "fundingRate": "-0.0000225267", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.085316", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.108849", + "szi": "-39691.0", + "fundingRate": "-0.0000010318", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "442.896739", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.856299", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "120.925048", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761760800117, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6111", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1385.401257", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "52.487126", + "szi": "-16570.7029", + "fundingRate": "0.0000008084", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "612.175286", + "szi": "-252991.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.075569", + "szi": "-109217.0", + "fundingRate": "0.0000035875", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "1.093385", + "szi": "-18747.2", + "fundingRate": "0.0000068054", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.910678", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.023776", + "szi": "-39691.0", + "fundingRate": "0.0000002297", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "440.839029", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "-22.948366", + "szi": "-4122236.7999999998", + "fundingRate": "-0.0000146557", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "119.820052", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761764400037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "4.26427", + "szi": "-8.0", + "fundingRate": "0.0000204619", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1383.025805", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "808.650301", + "szi": "-16570.7029", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "610.755191", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.109515", + "szi": "-109217.0", + "fundingRate": "0.0000051698", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.280188", + "szi": "-18747.2", + "fundingRate": "0.0000017238", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.994467", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.078413", + "szi": "-39691.0", + "fundingRate": "0.0000105014", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "442.177002", + "szi": "-738191.99", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.490093", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "124.672428", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761768000043, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "3.599159", + "szi": "-8.0", + "fundingRate": "0.0000172242", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1393.19024", + "szi": "-1000.19042", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "818.489156", + "szi": "-16570.7029", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "619.659067", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.167255", + "szi": "-109217.0", + "fundingRate": "0.0000078125", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.837267", + "szi": "-18747.2", + "fundingRate": "0.0000051155", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.170517", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.284896", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "743.934276", + "szi": "-746155.9300000001", + "fundingRate": "0.0000202659", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "21.085756", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "130.701865", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761771600014, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "14.185495", + "szi": "-8.0", + "fundingRate": "0.0000679773", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "2008.683885", + "szi": "-1029.57981", + "fundingRate": "0.0000174792", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "819.504111", + "szi": "-16570.7029", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "621.180014", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.105109", + "szi": "-109217.0", + "fundingRate": "0.0000049087", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "0.389819", + "szi": "-18747.2", + "fundingRate": "0.0000023914", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "12.10744", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.291892", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "1563.728283", + "szi": "-748350.64", + "fundingRate": "0.0000426172", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "21.240855", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "128.155569", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761775200025, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6086", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1428.902339", + "szi": "-1029.57981", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "816.314251", + "szi": "-16570.7029", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "619.088712", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.01223", + "szi": "-109217.0", + "fundingRate": "-0.0000005748", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.214625", + "szi": "-18747.2", + "fundingRate": "-0.0000136512", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "10.699238", + "szi": "-376577.6", + "fundingRate": "0.0000111236", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.286931", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "462.045711", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.91726", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "127.170681", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761778800061, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "8.000541", + "szi": "-8.0", + "fundingRate": "0.0000383726", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1415.981112", + "szi": "-1029.57981", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "808.422454", + "szi": "-16570.7029", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "614.367439", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.188001", + "szi": "-109217.0", + "fundingRate": "0.0000089482", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.966949", + "szi": "-18747.2", + "fundingRate": "-0.0000248973", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "7.637192", + "szi": "-376577.6", + "fundingRate": "0.0000080741", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.265249", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "455.598253", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.644161", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "125.537208", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761782400035, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6096", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1423.21191", + "szi": "-1029.8298", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "812.95605", + "szi": "-16579.9429", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "616.838978", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.176885", + "szi": "-109217.0", + "fundingRate": "0.000008389", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.929985", + "szi": "-18747.2", + "fundingRate": "-0.0000243473", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-0.417307", + "szi": "-376577.6", + "fundingRate": "-0.0000004406", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.175055", + "szi": "-39691.0", + "fundingRate": "0.0000115519", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "455.09573", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.348391", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "126.642204", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761786000015, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "6.257253", + "szi": "-8.0", + "fundingRate": "0.0000299081", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1439.279431", + "szi": "-1042.48397", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "813.826497", + "szi": "-16579.9429", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "619.500635", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.120756", + "szi": "-109217.0", + "fundingRate": "0.0000057255", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-5.111166", + "szi": "-18747.2", + "fundingRate": "-0.0000319059", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "1.092172", + "szi": "-376577.6", + "fundingRate": "0.0000011599", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.279042", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "453.711423", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.119607", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "126.089706", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761789600037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.616", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "3271.094832", + "szi": "-1060.51148", + "fundingRate": "0.0000277928", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "817.743508", + "szi": "-16579.9429", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "627.802469", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.265451", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-6.03528", + "szi": "-18747.2", + "fundingRate": "-0.0000373967", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-3.594628", + "szi": "-376577.6", + "fundingRate": "-0.0000037579", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.282416", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "460.623478", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.575114", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "128.443829", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761793200041, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "15.192936", + "szi": "-8.0", + "fundingRate": "0.0000724356", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "2663.818437", + "szi": "-1116.95495", + "fundingRate": "0.0000215309", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "815.584898", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "624.665517", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.264509", + "szi": "-109217.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-5.018405", + "szi": "-18747.2", + "fundingRate": "-0.0000313562", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "2.663639", + "szi": "-376577.6", + "fundingRate": "0.0000028111", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.279687", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "459.912361", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "20.191231", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "127.122637", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761796800122, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.6238", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1537.412023", + "szi": "-1132.76135", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "802.381828", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "607.713297", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.027426", + "szi": "-109217.0", + "fundingRate": "0.0000013392", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.181059", + "szi": "-18747.2", + "fundingRate": "-0.0000141336", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-7.043403", + "szi": "-376577.6", + "fundingRate": "-0.0000076894", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.244263", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "445.329728", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "-28.544179", + "szi": "-4122236.7999999998", + "fundingRate": "-0.0000190049", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "121.885915", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761800400021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "12.811105", + "szi": "-8.0", + "fundingRate": "0.0000614288", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1561.284968", + "szi": "-1132.76135", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "811.833319", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "618.518357", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.033951", + "szi": "-109217.0", + "fundingRate": "0.0000016266", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.335046", + "szi": "-18747.2", + "fundingRate": "-0.0000148518", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-5.894713", + "szi": "-376577.6", + "fundingRate": "-0.0000062822", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.269318", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "1108.73973", + "szi": "-758524.49", + "fundingRate": "0.0000302913", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.229204", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "122.054067", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761804000021, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "-2.054292", + "szi": "8.0", + "fundingRate": "0.0000098216", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1618.506072", + "szi": "-1168.89183", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "811.128603", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "615.349718", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.049701", + "szi": "-109217.0", + "fundingRate": "-0.000002379", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-2.806416", + "szi": "-18747.2", + "fundingRate": "-0.0000179054", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "5.278791", + "szi": "-376577.6", + "fundingRate": "0.0000056378", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.159296", + "szi": "-39691.0", + "fundingRate": "0.0000113716", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "546.860305", + "szi": "-758524.49", + "fundingRate": "0.000014908", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.042157", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "119.07538", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761807600062, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "36.094363", + "szi": "-12.0", + "fundingRate": "0.0001153012", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1627.199705", + "szi": "-1168.89183", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "816.683426", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "620.577972", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.011024", + "szi": "-109217.0", + "fundingRate": "0.0000005239", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.886639", + "szi": "-18747.2", + "fundingRate": "-0.0000119591", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "5.790088", + "szi": "-376577.6", + "fundingRate": "0.0000061221", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.055297", + "szi": "-39691.0", + "fundingRate": "0.0000102914", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "470.617038", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "19.19571", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "123.183085", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761811200024, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "1.960125", + "szi": "-6.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1636.399807", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "812.828213", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "619.120398", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "0.022655", + "szi": "-109217.0", + "fundingRate": "0.0000010854", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.278543", + "szi": "-18747.2", + "fundingRate": "-0.0000082049", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.730862", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.279488", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "467.58294", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.873661", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "120.492659", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761814800007, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "1.960125", + "szi": "-6.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1628.388817", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "808.392645", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "609.677854", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.026539", + "szi": "-109217.0", + "fundingRate": "-0.0000012833", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.477666", + "szi": "-18747.2", + "fundingRate": "-0.0000224716", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.551517", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.268028", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "459.589988", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.664457", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "118.594947", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761818400042, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "1.955325", + "szi": "-6.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1627.413309", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "806.879577", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "608.980753", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.191199", + "szi": "-109217.0", + "fundingRate": "-0.0000092759", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.455488", + "szi": "-18747.2", + "fundingRate": "-0.0000224234", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "11.472436", + "szi": "-376577.6", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.265448", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "458.461683", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.546458", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "118.450817", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761822000045, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "-1.605344", + "szi": "-6.0", + "fundingRate": "-0.0000102524", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1621.722846", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "804.537431", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "607.903416", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.169686", + "szi": "-109217.0", + "fundingRate": "-0.000008266", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-1.575382", + "szi": "-18747.2", + "fundingRate": "-0.0000102692", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "6.615479", + "szi": "-376577.6", + "fundingRate": "0.0000072228", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.262669", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "450.70577", + "szi": "-758524.49", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.499052", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "116.889409", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761825600003, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "-1.957047", + "szi": "-4.0", + "fundingRate": "-0.0000187284", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1602.020542", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "791.41727", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "595.228859", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.264557", + "szi": "-109217.0", + "fundingRate": "-0.0000131519", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.34333", + "szi": "-18747.2", + "fundingRate": "-0.0000220972", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-29.311271", + "szi": "-376577.6", + "fundingRate": "-0.0000326726", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "1.240889", + "szi": "-39691.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "440.389988", + "szi": "-760112.17", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "18.226985", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "113.742571", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761829200048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "1.9464", + "szi": "-6.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1590.77264", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "780.763616", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "471.007379", + "szi": "-253491.13", + "fundingRate": "0.0000100021", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.391999", + "szi": "-109217.0", + "fundingRate": "-0.0000196765", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-4.635262", + "szi": "-18747.2", + "fundingRate": "-0.000031377", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-29.505316", + "szi": "-376577.6", + "fundingRate": "-0.0000334591", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.571455", + "szi": "-39691.0", + "fundingRate": "0.0000058375", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "439.05029", + "szi": "-760112.17", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "17.864743", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "46.270439", + "szi": "-1921732999.0", + "fundingRate": "0.000005224", + "nSamples": null + } + }, + { + "time": 1761832800048, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "2.5988", + "szi": "-8.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1600.55728", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "787.914415", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "593.54948", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.223638", + "szi": "-109217.0", + "fundingRate": "-0.0000112268", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-6.001559", + "szi": "-18747.2", + "fundingRate": "-0.0000404742", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-21.44324", + "szi": "-376577.6", + "fundingRate": "-0.000024522", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.54058", + "szi": "-39691.0", + "fundingRate": "0.0000055063", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "3067.627973", + "szi": "-790492.75", + "fundingRate": "0.0000829182", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "17.961616", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "111.220297", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761836400044, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "8.952166", + "szi": "-12.0", + "fundingRate": "0.0000288237", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1592.028976", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "782.214502", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "586.388356", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.152635", + "szi": "-109217.0", + "fundingRate": "-0.0000077353", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-4.110758", + "szi": "-18747.2", + "fundingRate": "-0.0000281498", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-24.223099", + "szi": "-376577.6", + "fundingRate": "-0.0000281261", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.492633", + "szi": "-39691.0", + "fundingRate": "-0.000005058", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "1224.097599", + "szi": "-795009.1", + "fundingRate": "0.0000339184", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "17.564335", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "103.365213", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761840000037, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "3.87825", + "szi": "-12.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1598.354997", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "783.665389", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "587.180516", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.386821", + "szi": "-109217.0", + "fundingRate": "-0.0000194763", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-4.254674", + "szi": "-18747.2", + "fundingRate": "-0.0000291185", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-5.883543", + "szi": "-376577.6", + "fundingRate": "-0.0000067988", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "0.555022", + "szi": "-39691.0", + "fundingRate": "0.0000056777", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "475.569818", + "szi": "-827995.9399999999", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "17.434485", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "107.184658", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761843600008, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "3.24225", + "szi": "-10.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1588.673819", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "781.592694", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "582.395871", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.479529", + "szi": "-109217.0", + "fundingRate": "-0.0000243126", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-4.880267", + "szi": "-18747.2", + "fundingRate": "-0.0000340065", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SUI", + "usdc": "-9.188949", + "szi": "-376577.6", + "fundingRate": "-0.0000107509", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "XRP", + "usdc": "-0.041965", + "szi": "-39691.0", + "fundingRate": "-0.0000004311", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "HYPE", + "usdc": "461.759696", + "szi": "-836805.4300000001", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "FARTCOIN", + "usdc": "17.149535", + "szi": "-4122236.7999999998", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "PUMP", + "usdc": "103.74956", + "szi": "-1921732999.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761847200032, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "xyz:XYZ100", + "usdc": "3.241624", + "szi": "-10.0", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761850800088, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "BTC", + "usdc": "1579.096105", + "szi": "-1182.43388", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761850800088, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "ETH", + "usdc": "771.353579", + "szi": "-16581.5629", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761850800088, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "SOL", + "usdc": "574.601018", + "szi": "-253491.13", + "fundingRate": "0.0000125", + "nSamples": null + } + }, + { + "time": 1761850800088, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "DOGE", + "usdc": "-0.415534", + "szi": "-109217.0", + "fundingRate": "-0.0000212837", + "nSamples": null + } + }, + { + "time": 1761850800088, + "hash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "delta": { + "type": "funding", + "coin": "INJ", + "usdc": "-3.291961", + "szi": "-18747.2", + "fundingRate": "-0.0000233818", + "nSamples": null + } + } + ], + "ledger_updates": [ + { + "time": 1761775985479, + "hash": "0x5d37e504267e131583c63ff503d035391e4bb749de71662bafa0ffc2c1bb3d04", + "delta": { + "type": "deposit", + "usdc": "2000000.0" + } + }, + { + "time": 1761776181314, + "hash": "0xe8864446c0136398ea00042e753f19020144002c5b16826a8c4eef997f173d83", + "delta": { + "type": "send", + "user": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "destination": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "sourceDex": "", + "destinationDex": "spot", + "token": "USDC", + "amount": "2000000.0", + "usdcValue": "2000000.0", + "fee": "0.0", + "nativeTokenFee": "0.0", + "nonce": 1761775986336, + "feeToken": "" + } + }, + { + "time": 1761836526667, + "hash": "0x770c60c95bf3f15a7886042e80d793020bd000aef6f7102c1ad50c1c1af7cb45", + "delta": { + "type": "send", + "user": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "destination": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "sourceDex": "", + "destinationDex": "spot", + "token": "USDC", + "amount": "2000000.0", + "usdcValue": "2000000.0", + "fee": "0.0", + "nativeTokenFee": "0.0", + "nonce": 1761836504026, + "feeToken": "" + } + }, + { + "time": 1761967975584, + "hash": "0x10d1c3e3b699ae76124b042e9a55e202033f00c9519ccd48b49a6f36759d8860", + "delta": { + "type": "send", + "user": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "destination": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "sourceDex": "", + "destinationDex": "spot", + "token": "USDC", + "amount": "1000000.0", + "usdcValue": "1000000.0", + "fee": "0.0", + "nativeTokenFee": "0.0", + "nonce": 1761967842954, + "feeToken": "" + } + }, + { + "time": 1761986442068, + "hash": "0x7994a5ad670851fc7b0e042e9de8160202da0093020b70ce1d5d5100260c2be7", + "delta": { + "type": "send", + "user": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "destination": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "sourceDex": "", + "destinationDex": "spot", + "token": "USDC", + "amount": "2000000.0", + "usdcValue": "2000000.0", + "fee": "0.0", + "nativeTokenFee": "0.0", + "nonce": 1761986416542, + "feeToken": "" + } + }, + { + "time": 1762192602685, + "hash": "0x0d71c95d7102dbfbbf4f87ef7308c82d5dcf986b9bfd9758b54b3e96bc9b2bd8", + "delta": { + "type": "withdraw", + "usdc": "9999999.0", + "nonce": 1762192333293000, + "fee": "1.0" + } + }, + { + "time": 1762194097305, + "hash": "0x3ff5209a3eb08cb2a2abffa16da2b1d40673d01cc5552180686a110c905f204e", + "delta": { + "type": "withdraw", + "usdc": "4999999.0", + "nonce": 1762193695602000, + "fee": "1.0" + } + }, + { + "time": 1762194497574, + "hash": "0xbde03299658bc8136d218fc944eb9eb82e643b0052110e20753529b19daa676f", + "delta": { + "type": "withdraw", + "usdc": "4999999.0", + "nonce": 1762193855103000, + "fee": "1.0" + } + }, + { + "time": 1762205307634, + "hash": "0x7e603e06f503cf53c375eed0d5b94ff49991af912bc4f5cb94608778cf12dd51", + "delta": { + "type": "withdraw", + "usdc": "9999999.0", + "nonce": 1762204728527000, + "fee": "1.0" + } + }, + { + "time": 1762251304638, + "hash": "0x295e8ed3f04cf25b4606b336cc6b95386485ea93d80a6f26a7517d9912131211", + "delta": { + "type": "withdraw", + "usdc": "9999999.0", + "nonce": 1762250957451000, + "fee": "1.0" + } + }, + { + "time": 1762281722968, + "hash": "0x61ea42832a141ae56363042ed6f11b02135a0068c51739b705b2edd5e917f4d0", + "delta": { + "type": "send", + "user": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "destination": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "sourceDex": "spot", + "destinationDex": "", + "token": "USDC", + "amount": "2000000.0", + "usdcValue": "2000000.0", + "fee": "0.0", + "nativeTokenFee": "0.0", + "nonce": 1762281681251, + "feeToken": "" + } + }, + { + "time": 1762281759262, + "hash": "0x6f2d024dd9e95b0b70a6042ed6f2e50203ed003374ec79dd12f5ada098ed34f6", + "delta": { + "type": "send", + "user": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "destination": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "sourceDex": "", + "destinationDex": "spot", + "token": "USDC", + "amount": "5000000.0", + "usdcValue": "5000000.0", + "fee": "0.0", + "nativeTokenFee": "0.0", + "nonce": 1762281727554, + "feeToken": "" + } + }, + { + "time": 1762281793265, + "hash": "0xcf5cf6b39d7ecb94d0d6042ed6f48e020f8100993871ea667325a2065c72a57f", + "delta": { + "type": "send", + "user": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "destination": "0xb83de012dba672c76a7dbbbf3e459cb59d7d6e36", + "sourceDex": "spot", + "destinationDex": "", + "token": "USDC", + "amount": "5000000.0", + "usdcValue": "5000000.0", + "fee": "0.0", + "nativeTokenFee": "0.0", + "nonce": 1762281762715, + "feeToken": "" + } + }, + { + "time": 1762282195700, + "hash": "0x9ba0ab4a18e5667b804b88f38314127caf20fa26ed24130267a6cefea772bba6", + "delta": { + "type": "withdraw", + "usdc": "4999999.0", + "nonce": 1762281795988000, + "fee": "1.0" + } + } + ], + "referral_state": { + "referredBy": null, + "cumVlm": "3098399653.1999998093", + "unclaimedRewards": "1211.48930369", + "claimedRewards": "23302.099542", + "builderRewards": "0.0", + "referrerState": { + "stage": "ready", + "data": { + "code": "EGAF", + "nReferrals": 3, + "referralStates": [ + { + "cumVlm": "3212894615.4400000572", + "cumRewardedFeesSinceReferred": "616588.82185336", + "cumFeesRewardedToReferrer": "23302.099542", + "timeJoined": 1740074524733, + "user": "0x5b5d51203a0f9079f8aeb098a6523a13f298c060", + "tokenToState": [ + [ + 0, + { + "cumVlm": "3212894615.4400000572", + "cumRewardedFeesSinceReferred": "616588.82185336", + "cumFeesRewardedToReferrer": "23302.099542" + } + ] + ] + }, + { + "cumVlm": "31767287.4200000018", + "cumRewardedFeesSinceReferred": "12114.95159313", + "cumFeesRewardedToReferrer": "1211.48930369", + "timeJoined": 1750501639492, + "user": "0xc327d213545d49a1644cf3f154375034ac6e24e8", + "tokenToState": [ + [ + 0, + { + "cumVlm": "31767287.4200000018", + "cumRewardedFeesSinceReferred": "12114.95159313", + "cumFeesRewardedToReferrer": "1211.48930369" + } + ] + ] + }, + { + "cumVlm": "0.0", + "cumRewardedFeesSinceReferred": "0.0", + "cumFeesRewardedToReferrer": "0.0", + "timeJoined": 1751022900093, + "user": "0x7096a82cd4c980f61a490a391d680a2e0259f7f0", + "tokenToState": [] + } + ] + } + }, + "rewardHistory": [], + "tokenToState": [ + [ + 0, + { + "cumVlm": "3098399653.1999998093", + "unclaimedRewards": "1211.48930369", + "claimedRewards": "23302.099542", + "builderRewards": "0.0" + } + ] + ] + }, + "sub_accounts": null, + "funding_history": { + "BTC": [ + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002434116", + "time": 1761688800030 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000250779", + "time": 1761692400042 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002611137", + "time": 1761696000102 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002632197", + "time": 1761699600042 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002304357", + "time": 1761703200077 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002080238", + "time": 1761706800042 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002375445", + "time": 1761710400036 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002216944", + "time": 1761714000043 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001066263", + "time": 1761717600006 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001335725", + "time": 1761721200020 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000331165", + "time": 1761724800053 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000065064", + "time": 1761728400061 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000277824", + "time": 1761732000044 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000002989", + "time": 1761735600044 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000246191", + "time": 1761739200098 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000597828", + "time": 1761742800000 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001200814", + "time": 1761746400006 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000264079", + "time": 1761750000035 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000251946", + "time": 1761753600064 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000610535", + "time": 1761757200196 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000546444", + "time": 1761760800117 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001824431", + "time": 1761764400037 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004640343", + "time": 1761768000043 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005892295", + "time": 1761771600014 + }, + { + "coin": "BTC", + "fundingRate": "0.0000174792", + "premium": "0.0006398335", + "time": 1761775200025 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005035507", + "time": 1761778800061 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005493361", + "time": 1761782400035 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005967992", + "time": 1761786000015 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005995991", + "time": 1761789600037 + }, + { + "coin": "BTC", + "fundingRate": "0.0000277928", + "premium": "0.0007223428", + "time": 1761793200041 + }, + { + "coin": "BTC", + "fundingRate": "0.0000215309", + "premium": "0.0006722473", + "time": 1761796800122 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004471343", + "time": 1761800400021 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004425787", + "time": 1761804000021 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004540965", + "time": 1761807600062 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005601024", + "time": 1761811200024 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004570803", + "time": 1761814800007 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005234061", + "time": 1761818400042 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005474431", + "time": 1761822000045 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000569542", + "time": 1761825600003 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002424519", + "time": 1761829200048 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002524248", + "time": 1761832800048 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003516147", + "time": 1761836400044 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003901308", + "time": 1761840000037 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0005057492", + "time": 1761843600008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001539126", + "time": 1761847200032 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000455606", + "time": 1761850800088 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000813914", + "time": 1761854400034 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000258931", + "time": 1761858000071 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000881992", + "time": 1761861600092 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001655573", + "time": 1761865200006 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002638343", + "time": 1761868800006 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0004843393", + "time": 1761872400082 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0003475225", + "time": 1761876000068 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001160719", + "time": 1761879600072 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000785835", + "time": 1761883200038 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002043369", + "time": 1761886800105 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000949424", + "time": 1761890400081 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000099804", + "time": 1761894000066 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000027245", + "time": 1761897600065 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001375141", + "time": 1761901200071 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002771164", + "time": 1761904800002 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000198207", + "time": 1761908400027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000152855", + "time": 1761912000145 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001383272", + "time": 1761915600016 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001100713", + "time": 1761919200066 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.000040622", + "time": 1761922800074 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000763022", + "time": 1761926400068 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001041098", + "time": 1761930000021 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000890412", + "time": 1761933600067 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000216479", + "time": 1761937200009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000217412", + "time": 1761940800030 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000842949", + "time": 1761944400040 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000250051", + "time": 1761948000089 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000466022", + "time": 1761951600037 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000893694", + "time": 1761955200078 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001001274", + "time": 1761958800002 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000155277", + "time": 1761962400000 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001200593", + "time": 1761966000108 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000055103", + "time": 1761969600053 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000535618", + "time": 1761973200085 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000147685", + "time": 1761976800046 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000185873", + "time": 1761980400032 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000666064", + "time": 1761984000039 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000330985", + "time": 1761987600075 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000357544", + "time": 1761991200010 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000327505", + "time": 1761994800062 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000811454", + "time": 1761998400072 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001065681", + "time": 1762002000047 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000562574", + "time": 1762005600013 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000690394", + "time": 1762009200106 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.00011", + "time": 1762012800044 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000930771", + "time": 1762016400100 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001233996", + "time": 1762020000005 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001653233", + "time": 1762023600116 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001822303", + "time": 1762027200002 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0002200166", + "time": 1762030800008 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001335308", + "time": 1762034400031 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001149816", + "time": 1762038000014 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001556391", + "time": 1762041600094 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000752885", + "time": 1762045200000 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000946069", + "time": 1762048800052 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001377675", + "time": 1762052400004 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001190743", + "time": 1762056000012 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0001186009", + "time": 1762059600099 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000453902", + "time": 1762063200007 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000462721", + "time": 1762066800053 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000584566", + "time": 1762070400040 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000471002", + "time": 1762074000053 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "0.0000724178", + "time": 1762077600020 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000556611", + "time": 1762081200019 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000729254", + "time": 1762084800027 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000340581", + "time": 1762088400003 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000139998", + "time": 1762092000057 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001786041", + "time": 1762095600055 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001976366", + "time": 1762099200038 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003287782", + "time": 1762102800043 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002786877", + "time": 1762106400014 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002222143", + "time": 1762110000050 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002597292", + "time": 1762113600024 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002945203", + "time": 1762117200063 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002734694", + "time": 1762120800055 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003189501", + "time": 1762124400127 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002474719", + "time": 1762128000108 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001992642", + "time": 1762131600005 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002477683", + "time": 1762135200074 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002331201", + "time": 1762138800048 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000300631", + "time": 1762142400069 + }, + { + "coin": "BTC", + "fundingRate": "0.0000106615", + "premium": "-0.0004147082", + "time": 1762146000062 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003809571", + "time": 1762149600081 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003843444", + "time": 1762153200041 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003383729", + "time": 1762156800009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002288049", + "time": 1762160400014 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002163684", + "time": 1762164000019 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001932965", + "time": 1762167600065 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001221747", + "time": 1762171200073 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001108337", + "time": 1762174800022 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001315587", + "time": 1762178400040 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0000834529", + "time": 1762182000059 + }, + { + "coin": "BTC", + "fundingRate": "0.0000041415", + "premium": "-0.0004668677", + "time": 1762185600024 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003400144", + "time": 1762189200019 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.000269983", + "time": 1762192800009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003351985", + "time": 1762196400094 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003579941", + "time": 1762200000046 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003737556", + "time": 1762203600000 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003889873", + "time": 1762207200013 + }, + { + "coin": "BTC", + "fundingRate": "0.0000087211", + "premium": "-0.0004302314", + "time": 1762210800040 + }, + { + "coin": "BTC", + "fundingRate": "0.0000073833", + "premium": "-0.0004409336", + "time": 1762214400009 + }, + { + "coin": "BTC", + "fundingRate": "0.0000078968", + "premium": "-0.0004368254", + "time": 1762218000022 + }, + { + "coin": "BTC", + "fundingRate": "0.0000095488", + "premium": "-0.00042361", + "time": 1762221600049 + }, + { + "coin": "BTC", + "fundingRate": "0.0000074094", + "premium": "-0.0004407248", + "time": 1762225200014 + }, + { + "coin": "BTC", + "fundingRate": "0.0000079401", + "premium": "-0.0004364795", + "time": 1762228800074 + }, + { + "coin": "BTC", + "fundingRate": "0.0000079537", + "premium": "-0.0004363702", + "time": 1762232400042 + }, + { + "coin": "BTC", + "fundingRate": "-0.0000034842", + "premium": "-0.0005278737", + "time": 1762236000054 + }, + { + "coin": "BTC", + "fundingRate": "0.0000091974", + "premium": "-0.0004264212", + "time": 1762239600052 + }, + { + "coin": "BTC", + "fundingRate": "0.000009474", + "premium": "-0.0004242082", + "time": 1762243200064 + }, + { + "coin": "BTC", + "fundingRate": "0.0000068248", + "premium": "-0.0004454014", + "time": 1762246800001 + }, + { + "coin": "BTC", + "fundingRate": "0.0000046854", + "premium": "-0.0004625168", + "time": 1762250400042 + }, + { + "coin": "BTC", + "fundingRate": "0.0000083362", + "premium": "-0.0004333105", + "time": 1762254000018 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003652237", + "time": 1762257600053 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002813028", + "time": 1762261200065 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001651728", + "time": 1762264800077 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001507512", + "time": 1762268400003 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0001862799", + "time": 1762272000000 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002465033", + "time": 1762275600006 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003101993", + "time": 1762279200062 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003409233", + "time": 1762282800079 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0002377945", + "time": 1762286400059 + }, + { + "coin": "BTC", + "fundingRate": "0.0000125", + "premium": "-0.0003687714", + "time": 1762290000034 + } + ], + "ETH": [ + { + "coin": "ETH", + "fundingRate": "0.0000119638", + "premium": "-0.0004042896", + "time": 1761688800030 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003561879", + "time": 1761692400042 + }, + { + "coin": "ETH", + "fundingRate": "0.0000121222", + "premium": "-0.0004030224", + "time": 1761696000102 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003508958", + "time": 1761699600042 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003352315", + "time": 1761703200077 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002848923", + "time": 1761706800042 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002671564", + "time": 1761710400036 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002366364", + "time": 1761714000043 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002852907", + "time": 1761717600006 + }, + { + "coin": "ETH", + "fundingRate": "0.0000068603", + "premium": "-0.0004451177", + "time": 1761721200020 + }, + { + "coin": "ETH", + "fundingRate": "0.000004081", + "premium": "-0.0004673518", + "time": 1761724800053 + }, + { + "coin": "ETH", + "fundingRate": "0.0000063862", + "premium": "-0.0004489103", + "time": 1761728400061 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000212514", + "premium": "-0.0006700113", + "time": 1761732000044 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000304612", + "premium": "-0.0007436898", + "time": 1761735600044 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000117323", + "premium": "-0.0005938587", + "time": 1761739200098 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000062524", + "premium": "-0.0005500191", + "time": 1761742800000 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000033712", + "premium": "-0.0005269693", + "time": 1761746400006 + }, + { + "coin": "ETH", + "fundingRate": "0.0000059489", + "premium": "-0.0004524088", + "time": 1761750000035 + }, + { + "coin": "ETH", + "fundingRate": "0.0000003567", + "premium": "-0.0004971466", + "time": 1761753600064 + }, + { + "coin": "ETH", + "fundingRate": "0.0000074963", + "premium": "-0.00044003", + "time": 1761757200196 + }, + { + "coin": "ETH", + "fundingRate": "0.0000095213", + "premium": "-0.0004238295", + "time": 1761760800117 + }, + { + "coin": "ETH", + "fundingRate": "0.0000008084", + "premium": "-0.0004935328", + "time": 1761764400037 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003835924", + "time": 1761768000043 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003323883", + "time": 1761771600014 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002959407", + "time": 1761775200025 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003744364", + "time": 1761778800061 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003158029", + "time": 1761782400035 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.00029026", + "time": 1761786000015 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003183008", + "time": 1761789600037 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002722145", + "time": 1761793200041 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.000300865", + "time": 1761796800122 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003001039", + "time": 1761800400021 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002481036", + "time": 1761804000021 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003142932", + "time": 1761807600062 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002664788", + "time": 1761811200024 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002942617", + "time": 1761814800007 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002706262", + "time": 1761818400042 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001969893", + "time": 1761822000045 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001874225", + "time": 1761825600003 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003282206", + "time": 1761829200048 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002636076", + "time": 1761832800048 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002243202", + "time": 1761836400044 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003412461", + "time": 1761840000037 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002951328", + "time": 1761843600008 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003665372", + "time": 1761847200032 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003422412", + "time": 1761850800088 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003918995", + "time": 1761854400034 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003858863", + "time": 1761858000071 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003348846", + "time": 1761861600092 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003105773", + "time": 1761865200006 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002588288", + "time": 1761868800006 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002433118", + "time": 1761872400082 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002300726", + "time": 1761876000068 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002014652", + "time": 1761879600072 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002276182", + "time": 1761883200038 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0001824396", + "time": 1761886800105 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002443079", + "time": 1761890400081 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0002911553", + "time": 1761894000066 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003548575", + "time": 1761897600065 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003689069", + "time": 1761901200071 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003128188", + "time": 1761904800002 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003753516", + "time": 1761908400027 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003776815", + "time": 1761912000145 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003291344", + "time": 1761915600016 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003828677", + "time": 1761919200066 + }, + { + "coin": "ETH", + "fundingRate": "0.0000040784", + "premium": "-0.0004673729", + "time": 1761922800074 + }, + { + "coin": "ETH", + "fundingRate": "0.0000000483", + "premium": "-0.0004996139", + "time": 1761926400068 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000010665", + "premium": "-0.0005085317", + "time": 1761930000021 + }, + { + "coin": "ETH", + "fundingRate": "0.0000076828", + "premium": "-0.0004385376", + "time": 1761933600067 + }, + { + "coin": "ETH", + "fundingRate": "0.0000082971", + "premium": "-0.0004336236", + "time": 1761937200009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003957004", + "time": 1761940800030 + }, + { + "coin": "ETH", + "fundingRate": "0.0000084196", + "premium": "-0.0004326435", + "time": 1761944400040 + }, + { + "coin": "ETH", + "fundingRate": "0.0000053065", + "premium": "-0.0004575477", + "time": 1761948000089 + }, + { + "coin": "ETH", + "fundingRate": "0.0000052802", + "premium": "-0.0004577588", + "time": 1761951600037 + }, + { + "coin": "ETH", + "fundingRate": "0.0000004041", + "premium": "-0.0004967672", + "time": 1761955200078 + }, + { + "coin": "ETH", + "fundingRate": "0.0000017368", + "premium": "-0.000486106", + "time": 1761958800002 + }, + { + "coin": "ETH", + "fundingRate": "0.0000056422", + "premium": "-0.0004548625", + "time": 1761962400000 + }, + { + "coin": "ETH", + "fundingRate": "0.0000025859", + "premium": "-0.000479313", + "time": 1761966000108 + }, + { + "coin": "ETH", + "fundingRate": "0.0000050148", + "premium": "-0.0004598819", + "time": 1761969600053 + }, + { + "coin": "ETH", + "fundingRate": "0.0000051641", + "premium": "-0.0004586875", + "time": 1761973200085 + }, + { + "coin": "ETH", + "fundingRate": "0.0000044067", + "premium": "-0.0004647463", + "time": 1761976800046 + }, + { + "coin": "ETH", + "fundingRate": "0.0000033868", + "premium": "-0.0004729054", + "time": 1761980400032 + }, + { + "coin": "ETH", + "fundingRate": "0.000007312", + "premium": "-0.0004415037", + "time": 1761984000039 + }, + { + "coin": "ETH", + "fundingRate": "0.0000042726", + "premium": "-0.0004658195", + "time": 1761987600075 + }, + { + "coin": "ETH", + "fundingRate": "0.00000044", + "premium": "-0.0004964803", + "time": 1761991200010 + }, + { + "coin": "ETH", + "fundingRate": "0.0000025115", + "premium": "-0.0004799084", + "time": 1761994800062 + }, + { + "coin": "ETH", + "fundingRate": "0.0000068407", + "premium": "-0.000445274", + "time": 1761998400072 + }, + { + "coin": "ETH", + "fundingRate": "0.0000060439", + "premium": "-0.0004516491", + "time": 1762002000047 + }, + { + "coin": "ETH", + "fundingRate": "0.0000051198", + "premium": "-0.0004590417", + "time": 1762005600013 + }, + { + "coin": "ETH", + "fundingRate": "0.000000611", + "premium": "-0.0004951118", + "time": 1762009200106 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000007016", + "premium": "-0.0005056132", + "time": 1762012800044 + }, + { + "coin": "ETH", + "fundingRate": "0.0000051047", + "premium": "-0.0004591627", + "time": 1762016400100 + }, + { + "coin": "ETH", + "fundingRate": "0.000005983", + "premium": "-0.0004521362", + "time": 1762020000005 + }, + { + "coin": "ETH", + "fundingRate": "0.0000017198", + "premium": "-0.0004862413", + "time": 1762023600116 + }, + { + "coin": "ETH", + "fundingRate": "0.0000044172", + "premium": "-0.0004646624", + "time": 1762027200002 + }, + { + "coin": "ETH", + "fundingRate": "0.0000098339", + "premium": "-0.0004213286", + "time": 1762030800008 + }, + { + "coin": "ETH", + "fundingRate": "0.0000054282", + "premium": "-0.0004565746", + "time": 1762034400031 + }, + { + "coin": "ETH", + "fundingRate": "0.0000072258", + "premium": "-0.0004421933", + "time": 1762038000014 + }, + { + "coin": "ETH", + "fundingRate": "0.0000067438", + "premium": "-0.0004460493", + "time": 1762041600094 + }, + { + "coin": "ETH", + "fundingRate": "0.0000056387", + "premium": "-0.0004548903", + "time": 1762045200000 + }, + { + "coin": "ETH", + "fundingRate": "0.0000040959", + "premium": "-0.0004672329", + "time": 1762048800052 + }, + { + "coin": "ETH", + "fundingRate": "0.0000065055", + "premium": "-0.0004479563", + "time": 1762052400004 + }, + { + "coin": "ETH", + "fundingRate": "0.0000054661", + "premium": "-0.0004562715", + "time": 1762056000012 + }, + { + "coin": "ETH", + "fundingRate": "0.0000062838", + "premium": "-0.0004497299", + "time": 1762059600099 + }, + { + "coin": "ETH", + "fundingRate": "0.000008698", + "premium": "-0.000430416", + "time": 1762063200007 + }, + { + "coin": "ETH", + "fundingRate": "0.000007097", + "premium": "-0.0004432236", + "time": 1762066800053 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003761929", + "time": 1762070400040 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003851585", + "time": 1762074000053 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003899211", + "time": 1762077600020 + }, + { + "coin": "ETH", + "fundingRate": "0.0000096147", + "premium": "-0.0004230828", + "time": 1762081200019 + }, + { + "coin": "ETH", + "fundingRate": "0.0000042184", + "premium": "-0.0004662531", + "time": 1762084800027 + }, + { + "coin": "ETH", + "fundingRate": "0.0000039738", + "premium": "-0.0004682097", + "time": 1762088400003 + }, + { + "coin": "ETH", + "fundingRate": "0.0000013301", + "premium": "-0.0004893594", + "time": 1762092000057 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000003666", + "premium": "-0.0005029324", + "time": 1762095600055 + }, + { + "coin": "ETH", + "fundingRate": "0.0000013415", + "premium": "-0.000489268", + "time": 1762099200038 + }, + { + "coin": "ETH", + "fundingRate": "0.0000052373", + "premium": "-0.0004581014", + "time": 1762102800043 + }, + { + "coin": "ETH", + "fundingRate": "0.0000072676", + "premium": "-0.0004418595", + "time": 1762106400014 + }, + { + "coin": "ETH", + "fundingRate": "0.0000075613", + "premium": "-0.0004395099", + "time": 1762110000050 + }, + { + "coin": "ETH", + "fundingRate": "0.0000053397", + "premium": "-0.0004572825", + "time": 1762113600024 + }, + { + "coin": "ETH", + "fundingRate": "0.0000069957", + "premium": "-0.000444034", + "time": 1762117200063 + }, + { + "coin": "ETH", + "fundingRate": "0.0000071318", + "premium": "-0.0004429455", + "time": 1762120800055 + }, + { + "coin": "ETH", + "fundingRate": "0.0000023434", + "premium": "-0.0004812529", + "time": 1762124400127 + }, + { + "coin": "ETH", + "fundingRate": "0.0000065972", + "premium": "-0.0004472227", + "time": 1762128000108 + }, + { + "coin": "ETH", + "fundingRate": "-0.000002042", + "premium": "-0.0005163363", + "time": 1762131600005 + }, + { + "coin": "ETH", + "fundingRate": "0.0000012713", + "premium": "-0.0004898298", + "time": 1762135200074 + }, + { + "coin": "ETH", + "fundingRate": "0.0000035508", + "premium": "-0.0004715937", + "time": 1762138800048 + }, + { + "coin": "ETH", + "fundingRate": "-0.000005392", + "premium": "-0.0005431359", + "time": 1762142400069 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000048928", + "premium": "-0.0005391427", + "time": 1762146000062 + }, + { + "coin": "ETH", + "fundingRate": "0.0000045061", + "premium": "-0.0004639513", + "time": 1762149600081 + }, + { + "coin": "ETH", + "fundingRate": "-0.000003776", + "premium": "-0.0005302081", + "time": 1762153200041 + }, + { + "coin": "ETH", + "fundingRate": "0.0000024255", + "premium": "-0.000480596", + "time": 1762156800009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000026379", + "premium": "-0.0004788968", + "time": 1762160400014 + }, + { + "coin": "ETH", + "fundingRate": "0.0000048081", + "premium": "-0.0004615355", + "time": 1762164000019 + }, + { + "coin": "ETH", + "fundingRate": "0.0000053387", + "premium": "-0.0004572907", + "time": 1762167600065 + }, + { + "coin": "ETH", + "fundingRate": "0.000003695", + "premium": "-0.0004704403", + "time": 1762171200073 + }, + { + "coin": "ETH", + "fundingRate": "0.0000048538", + "premium": "-0.0004611698", + "time": 1762174800022 + }, + { + "coin": "ETH", + "fundingRate": "0.00000932", + "premium": "-0.0004254402", + "time": 1762178400040 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000106274", + "premium": "-0.0005850195", + "time": 1762182000059 + }, + { + "coin": "ETH", + "fundingRate": "-0.000035011", + "premium": "-0.0007800879", + "time": 1762185600024 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000045368", + "premium": "-0.0005362948", + "time": 1762189200019 + }, + { + "coin": "ETH", + "fundingRate": "0.0000121217", + "premium": "-0.0004030262", + "time": 1762192800009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000012818", + "premium": "-0.0004897454", + "time": 1762196400094 + }, + { + "coin": "ETH", + "fundingRate": "0.0000000015", + "premium": "-0.0004999876", + "time": 1762200000046 + }, + { + "coin": "ETH", + "fundingRate": "0.0000007554", + "premium": "-0.0004939571", + "time": 1762203600000 + }, + { + "coin": "ETH", + "fundingRate": "-0.00000069", + "premium": "-0.0005055201", + "time": 1762207200013 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000032333", + "premium": "-0.0005258666", + "time": 1762210800040 + }, + { + "coin": "ETH", + "fundingRate": "0.0000035416", + "premium": "-0.0004716669", + "time": 1762214400009 + }, + { + "coin": "ETH", + "fundingRate": "0.0000064303", + "premium": "-0.000448558", + "time": 1762218000022 + }, + { + "coin": "ETH", + "fundingRate": "0.0000076148", + "premium": "-0.0004390812", + "time": 1762221600049 + }, + { + "coin": "ETH", + "fundingRate": "0.0000003021", + "premium": "-0.0004975834", + "time": 1762225200014 + }, + { + "coin": "ETH", + "fundingRate": "0.0000044072", + "premium": "-0.0004647424", + "time": 1762228800074 + }, + { + "coin": "ETH", + "fundingRate": "0.0000009207", + "premium": "-0.0004926341", + "time": 1762232400042 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000101849", + "premium": "-0.0005814796", + "time": 1762236000054 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000028941", + "premium": "-0.0005231528", + "time": 1762239600052 + }, + { + "coin": "ETH", + "fundingRate": "-0.000000791", + "premium": "-0.0005063279", + "time": 1762243200064 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000000748", + "premium": "-0.0005005986", + "time": 1762246800001 + }, + { + "coin": "ETH", + "fundingRate": "0.0000101916", + "premium": "-0.0004184674", + "time": 1762250400042 + }, + { + "coin": "ETH", + "fundingRate": "0.0000105058", + "premium": "-0.0004159533", + "time": 1762254000018 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003751413", + "time": 1762257600053 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003447684", + "time": 1762261200065 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003871956", + "time": 1762264800077 + }, + { + "coin": "ETH", + "fundingRate": "0.000007969", + "premium": "-0.0004362484", + "time": 1762268400003 + }, + { + "coin": "ETH", + "fundingRate": "0.0000087773", + "premium": "-0.0004297812", + "time": 1762272000000 + }, + { + "coin": "ETH", + "fundingRate": "0.0000026686", + "premium": "-0.0004786515", + "time": 1762275600006 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000511808", + "premium": "-0.0009094466", + "time": 1762279200062 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000286118", + "premium": "-0.0007288946", + "time": 1762282800079 + }, + { + "coin": "ETH", + "fundingRate": "0.0000125", + "premium": "-0.0003978222", + "time": 1762286400059 + }, + { + "coin": "ETH", + "fundingRate": "-0.0000061965", + "premium": "-0.0005495721", + "time": 1762290000034 + } + ], + "SOL": [ + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000728967", + "time": 1761688800030 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001527551", + "time": 1761692400042 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001652292", + "time": 1761696000102 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0002019673", + "time": 1761699600042 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000885077", + "time": 1761703200077 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001309894", + "time": 1761706800042 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000951156", + "time": 1761710400036 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0002212048", + "time": 1761714000043 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0002158177", + "time": 1761717600006 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001395103", + "time": 1761721200020 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001246762", + "time": 1761724800053 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000939192", + "time": 1761728400061 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001637566", + "time": 1761732000044 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0003285", + "time": 1761735600044 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0003752385", + "time": 1761739200098 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0005210632", + "time": 1761742800000 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0005291393", + "time": 1761746400006 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0002080071", + "time": 1761750000035 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000508311", + "time": 1761753600064 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001968097", + "time": 1761757200196 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002596715", + "time": 1761760800117 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003624087", + "time": 1761764400037 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001463329", + "time": 1761768000043 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001168", + "time": 1761771600014 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0003246259", + "time": 1761775200025 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0003727324", + "time": 1761778800061 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0003206399", + "time": 1761782400035 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.000246437", + "time": 1761786000015 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0002356491", + "time": 1761789600037 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0002904877", + "time": 1761793200041 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001666777", + "time": 1761796800122 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000523137", + "time": 1761800400021 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001869632", + "time": 1761804000021 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0002039315", + "time": 1761807600062 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001615607", + "time": 1761811200024 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001222558", + "time": 1761814800007 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000413903", + "time": 1761818400042 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000630782", + "time": 1761822000045 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0001036178", + "time": 1761825600003 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001819543", + "time": 1761829200048 + }, + { + "coin": "SOL", + "fundingRate": "0.0000100021", + "premium": "-0.0004199835", + "time": 1761832800048 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002244447", + "time": 1761836400044 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.00028031", + "time": 1761840000037 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000473589", + "time": 1761843600008 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000335506", + "time": 1761847200032 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002491898", + "time": 1761850800088 + }, + { + "coin": "SOL", + "fundingRate": "0.0000092346", + "premium": "-0.0004261234", + "time": 1761854400034 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003252596", + "time": 1761858000071 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001609249", + "time": 1761861600092 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000324231", + "time": 1761865200006 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002221333", + "time": 1761868800006 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000742283", + "time": 1761872400082 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000529673", + "time": 1761876000068 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001470714", + "time": 1761879600072 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.000187606", + "time": 1761883200038 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.00023622", + "time": 1761886800105 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002415735", + "time": 1761890400081 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002615857", + "time": 1761894000066 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003074238", + "time": 1761897600065 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003582872", + "time": 1761901200071 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002795541", + "time": 1761904800002 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003094571", + "time": 1761908400027 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003521734", + "time": 1761912000145 + }, + { + "coin": "SOL", + "fundingRate": "0.0000087988", + "premium": "-0.0004296094", + "time": 1761915600016 + }, + { + "coin": "SOL", + "fundingRate": "0.0000073865", + "premium": "-0.0004409077", + "time": 1761919200066 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003863839", + "time": 1761922800074 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003502252", + "time": 1761926400068 + }, + { + "coin": "SOL", + "fundingRate": "0.0000078733", + "premium": "-0.0004370135", + "time": 1761930000021 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002825962", + "time": 1761933600067 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003250329", + "time": 1761937200009 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001830247", + "time": 1761940800030 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002688589", + "time": 1761944400040 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002255757", + "time": 1761948000089 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002325347", + "time": 1761951600037 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002354745", + "time": 1761955200078 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.00035401", + "time": 1761958800002 + }, + { + "coin": "SOL", + "fundingRate": "0.0000083621", + "premium": "-0.0004331032", + "time": 1761962400000 + }, + { + "coin": "SOL", + "fundingRate": "0.000004994", + "premium": "-0.0004600482", + "time": 1761966000108 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003838598", + "time": 1761969600053 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003017005", + "time": 1761973200085 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003223774", + "time": 1761976800046 + }, + { + "coin": "SOL", + "fundingRate": "0.0000068675", + "premium": "-0.0004450601", + "time": 1761980400032 + }, + { + "coin": "SOL", + "fundingRate": "0.0000084033", + "premium": "-0.0004327736", + "time": 1761984000039 + }, + { + "coin": "SOL", + "fundingRate": "0.0000087957", + "premium": "-0.0004296347", + "time": 1761987600075 + }, + { + "coin": "SOL", + "fundingRate": "0.0000032929", + "premium": "-0.0004736565", + "time": 1761991200010 + }, + { + "coin": "SOL", + "fundingRate": "0.0000014701", + "premium": "-0.0004882393", + "time": 1761994800062 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000012168", + "premium": "-0.0005097347", + "time": 1761998400072 + }, + { + "coin": "SOL", + "fundingRate": "0.0000035932", + "premium": "-0.0004712542", + "time": 1762002000047 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000044575", + "premium": "-0.0005356602", + "time": 1762005600013 + }, + { + "coin": "SOL", + "fundingRate": "-0.000002878", + "premium": "-0.000523024", + "time": 1762009200106 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000080646", + "premium": "-0.0005645168", + "time": 1762012800044 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000058042", + "premium": "-0.0005464336", + "time": 1762016400100 + }, + { + "coin": "SOL", + "fundingRate": "0.0000044613", + "premium": "-0.0004643093", + "time": 1762020000005 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003340266", + "time": 1762023600116 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003215432", + "time": 1762027200002 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003361671", + "time": 1762030800008 + }, + { + "coin": "SOL", + "fundingRate": "0.0000124185", + "premium": "-0.0004006521", + "time": 1762034400031 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.000317137", + "time": 1762038000014 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003824407", + "time": 1762041600094 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002803754", + "time": 1762045200000 + }, + { + "coin": "SOL", + "fundingRate": "0.0000118214", + "premium": "-0.0004054289", + "time": 1762048800052 + }, + { + "coin": "SOL", + "fundingRate": "0.000011807", + "premium": "-0.000405544", + "time": 1762052400004 + }, + { + "coin": "SOL", + "fundingRate": "0.0000074126", + "premium": "-0.0004406993", + "time": 1762056000012 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003957515", + "time": 1762059600099 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003342", + "time": 1762063200007 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001907342", + "time": 1762066800053 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0002398031", + "time": 1762070400040 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003444065", + "time": 1762074000053 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003481377", + "time": 1762077600020 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003527091", + "time": 1762081200019 + }, + { + "coin": "SOL", + "fundingRate": "0.0000005586", + "premium": "-0.0004955309", + "time": 1762084800027 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000026202", + "premium": "-0.0005209617", + "time": 1762088400003 + }, + { + "coin": "SOL", + "fundingRate": "0.0000019234", + "premium": "-0.0004846131", + "time": 1762092000057 + }, + { + "coin": "SOL", + "fundingRate": "0.0000038244", + "premium": "-0.0004694048", + "time": 1762095600055 + }, + { + "coin": "SOL", + "fundingRate": "0.000002764", + "premium": "-0.0004778883", + "time": 1762099200038 + }, + { + "coin": "SOL", + "fundingRate": "0.0000000433", + "premium": "-0.0004996533", + "time": 1762102800043 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000102656", + "premium": "-0.0005821248", + "time": 1762106400014 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000051908", + "premium": "-0.0005415262", + "time": 1762110000050 + }, + { + "coin": "SOL", + "fundingRate": "-0.000004041", + "premium": "-0.0005323279", + "time": 1762113600024 + }, + { + "coin": "SOL", + "fundingRate": "0.000007221", + "premium": "-0.0004422316", + "time": 1762117200063 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003904409", + "time": 1762120800055 + }, + { + "coin": "SOL", + "fundingRate": "0.0000119665", + "premium": "-0.0004042681", + "time": 1762124400127 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0001623774", + "time": 1762128000108 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "0.0000793626", + "time": 1762131600005 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0000411281", + "time": 1762135200074 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.000161625", + "time": 1762138800048 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003972185", + "time": 1762142400069 + }, + { + "coin": "SOL", + "fundingRate": "-0.000001264", + "premium": "-0.0005101116", + "time": 1762146000062 + }, + { + "coin": "SOL", + "fundingRate": "0.0000032259", + "premium": "-0.0004741924", + "time": 1762149600081 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000029999", + "premium": "-0.0005239994", + "time": 1762153200041 + }, + { + "coin": "SOL", + "fundingRate": "0.000003157", + "premium": "-0.0004747444", + "time": 1762156800009 + }, + { + "coin": "SOL", + "fundingRate": "0.0000107686", + "premium": "-0.0004138513", + "time": 1762160400014 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003585163", + "time": 1762164000019 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003723011", + "time": 1762167600065 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.00035831", + "time": 1762171200073 + }, + { + "coin": "SOL", + "fundingRate": "0.0000102776", + "premium": "-0.0004177795", + "time": 1762174800022 + }, + { + "coin": "SOL", + "fundingRate": "0.0000112762", + "premium": "-0.0004097907", + "time": 1762178400040 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000015682", + "premium": "-0.0005125452", + "time": 1762182000059 + }, + { + "coin": "SOL", + "fundingRate": "-0.0001532012", + "premium": "-0.0017256098", + "time": 1762185600024 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000656061", + "premium": "-0.0010248491", + "time": 1762189200019 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000139199", + "premium": "-0.0006113592", + "time": 1762192800009 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000142161", + "premium": "-0.0006137291", + "time": 1762196400094 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000063414", + "premium": "-0.0005507308", + "time": 1762200000046 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000012643", + "premium": "-0.0005101146", + "time": 1762203600000 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000036975", + "premium": "-0.0005295797", + "time": 1762207200013 + }, + { + "coin": "SOL", + "fundingRate": "0.0000009352", + "premium": "-0.0004925185", + "time": 1762210800040 + }, + { + "coin": "SOL", + "fundingRate": "0.0000026791", + "premium": "-0.0004785673", + "time": 1762214400009 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000008572", + "premium": "-0.0005068576", + "time": 1762218000022 + }, + { + "coin": "SOL", + "fundingRate": "0.0000001842", + "premium": "-0.0004985261", + "time": 1762221600049 + }, + { + "coin": "SOL", + "fundingRate": "0.0000001937", + "premium": "-0.00049845", + "time": 1762225200014 + }, + { + "coin": "SOL", + "fundingRate": "-0.000002509", + "premium": "-0.0005200723", + "time": 1762228800074 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000170668", + "premium": "-0.0006365343", + "time": 1762232400042 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000401403", + "premium": "-0.0008211223", + "time": 1762236000054 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000328655", + "premium": "-0.0007629239", + "time": 1762239600052 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000158359", + "premium": "-0.000626687", + "time": 1762243200064 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000126636", + "premium": "-0.0006013091", + "time": 1762246800001 + }, + { + "coin": "SOL", + "fundingRate": "0.0000036757", + "premium": "-0.0004705941", + "time": 1762250400042 + }, + { + "coin": "SOL", + "fundingRate": "0.0000038239", + "premium": "-0.0004694087", + "time": 1762254000018 + }, + { + "coin": "SOL", + "fundingRate": "0.0000084216", + "premium": "-0.0004326272", + "time": 1762257600053 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000064814", + "premium": "-0.0005518516", + "time": 1762261200065 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000100136", + "premium": "-0.000580109", + "time": 1762264800077 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000040977", + "premium": "-0.0005327813", + "time": 1762268400003 + }, + { + "coin": "SOL", + "fundingRate": "0.0000104598", + "premium": "-0.0004163215", + "time": 1762272000000 + }, + { + "coin": "SOL", + "fundingRate": "0.0000125", + "premium": "-0.0003398039", + "time": 1762275600006 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000093099", + "premium": "-0.0005744793", + "time": 1762279200062 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000086621", + "premium": "-0.000569297", + "time": 1762282800079 + }, + { + "coin": "SOL", + "fundingRate": "0.0000008014", + "premium": "-0.0004935887", + "time": 1762286400059 + }, + { + "coin": "SOL", + "fundingRate": "-0.0000106569", + "premium": "-0.0005852555", + "time": 1762290000034 + } + ] + } + } +} \ No newline at end of file diff --git a/live_candle_fetcher.py b/live_candle_fetcher.py new file mode 100644 index 0000000..b8bd7b5 --- /dev/null +++ b/live_candle_fetcher.py @@ -0,0 +1,238 @@ +import argparse +import logging +import os +import sys +import json +import time +from datetime import datetime, timezone +from hyperliquid.info import Info +from hyperliquid.utils import constants +import sqlite3 +from queue import Queue +from threading import Thread + +from logging_utils import setup_logging + +class LiveCandleFetcher: + """ + Connects to Hyperliquid to maintain a complete and up-to-date database of + 1-minute candles using a robust producer-consumer architecture to prevent + data corruption and duplication. + """ + + def __init__(self, log_level: str, coins: list): + setup_logging(log_level, 'LiveCandleFetcher') + self.db_path = os.path.join("_data", "market_data.db") + self.coins_to_watch = set(coins) + if not self.coins_to_watch: + logging.error("No coins provided to watch. Exiting.") + sys.exit(1) + + self.info = Info(constants.MAINNET_API_URL, skip_ws=False) + self.candle_queue = Queue() # Thread-safe queue for candles + self._ensure_tables_exist() + + def _ensure_tables_exist(self): + """ + Ensures that all necessary tables are created with the correct schema and PRIMARY KEY. + If a table exists with an incorrect schema, it attempts to migrate the data. + """ + with sqlite3.connect(self.db_path) as conn: + for coin in self.coins_to_watch: + table_name = f"{coin}_1m" + cursor = conn.cursor() + cursor.execute(f"PRAGMA table_info('{table_name}')") + columns = cursor.fetchall() + + if columns: + pk_found = any(col[1] == 'timestamp_ms' and col[5] == 1 for col in columns) + if not pk_found: + logging.warning(f"Schema migration needed for table '{table_name}': 'timestamp_ms' is not the PRIMARY KEY.") + logging.warning("Attempting to automatically rebuild the table...") + try: + # 1. Rename old table + conn.execute(f'ALTER TABLE "{table_name}" RENAME TO "{table_name}_old"') + logging.info(f" -> Renamed existing table to '{table_name}_old'.") + + # 2. Create new table with correct schema + self._create_candle_table(conn, table_name) + logging.info(f" -> Created new '{table_name}' table with correct schema.") + + # 3. Copy unique data from old table to new table + conn.execute(f''' + INSERT OR IGNORE INTO "{table_name}" (datetime_utc, timestamp_ms, open, high, low, close, volume, number_of_trades) + SELECT datetime_utc, timestamp_ms, open, high, low, close, volume, number_of_trades + FROM "{table_name}_old" + ''') + conn.commit() + logging.info(" -> Copied data to new table.") + + # 4. Drop the old table + conn.execute(f'DROP TABLE "{table_name}_old"') + logging.info(f" -> Removed old table. Migration for '{table_name}' complete.") + except Exception as e: + logging.error(f"FATAL: Automatic schema migration for '{table_name}' failed: {e}") + logging.error("Please delete the database file '_data/market_data.db' manually and restart.") + sys.exit(1) + else: + # If table does not exist, create it + self._create_candle_table(conn, table_name) + logging.info("Database tables verified.") + + def _create_candle_table(self, conn, table_name: str): + """Creates a new candle table with the correct schema.""" + conn.execute(f''' + CREATE TABLE "{table_name}" ( + datetime_utc TEXT, + timestamp_ms INTEGER PRIMARY KEY, + open REAL, + high REAL, + low REAL, + close REAL, + volume REAL, + number_of_trades INTEGER + ) + ''') + + def on_message(self, message): + """ + Callback function to process incoming candle messages. This is the "Producer". + It puts the raw message onto the queue for the DB writer. + """ + try: + if message.get("channel") == "candle": + candle_data = message.get("data", {}) + if candle_data: + self.candle_queue.put(candle_data) + except Exception as e: + logging.error(f"Error in on_message: {e}") + + def _database_writer_thread(self): + """ + This is the "Consumer" thread. It runs forever, pulling candles from the + queue and writing them to the database, ensuring all writes are serial. + """ + while True: + try: + candle = self.candle_queue.get() + if candle is None: # A signal to stop the thread + break + + coin = candle.get('coin') + if not coin: + continue + + table_name = f"{coin}_1m" + record = ( + datetime.fromtimestamp(candle['t'] / 1000, tz=timezone.utc).strftime('%Y-%m-%d %H:%M:%S'), + candle['t'], + candle.get('o'), candle.get('h'), candle.get('l'), candle.get('c'), + candle.get('v'), candle.get('n') + ) + + with sqlite3.connect(self.db_path) as conn: + conn.execute(f''' + INSERT OR REPLACE INTO "{table_name}" (datetime_utc, timestamp_ms, open, high, low, close, volume, number_of_trades) + VALUES (?, ?, ?, ?, ?, ?, ?, ?) + ''', record) + conn.commit() + logging.debug(f"Upserted candle for {coin} at {record[0]}") + + except Exception as e: + logging.error(f"Error in database writer thread: {e}") + + def _get_last_timestamp_from_db(self, coin: str) -> int: + """Gets the most recent millisecond timestamp from a coin's 1m table.""" + table_name = f"{coin}_1m" + try: + with sqlite3.connect(self.db_path) as conn: + result = conn.execute(f'SELECT MAX(timestamp_ms) FROM "{table_name}"').fetchone() + return int(result[0]) if result and result[0] is not None else None + except Exception as e: + logging.error(f"Could not read last timestamp from table '{table_name}': {e}") + return None + + def _fetch_historical_candles(self, coin: str, start_ms: int, end_ms: int): + """Fetches historical candles and puts them on the queue for the writer.""" + logging.info(f"Fetching historical data for {coin} from {datetime.fromtimestamp(start_ms/1000)}...") + current_start = start_ms + + while current_start < end_ms: + try: + http_info = Info(constants.MAINNET_API_URL, skip_ws=True) + batch = http_info.candles_snapshot(coin, "1m", current_start, end_ms) + if not batch: + break + + for candle in batch: + candle['coin'] = coin + self.candle_queue.put(candle) + + last_ts = batch[-1]['t'] + if last_ts < current_start: + break + current_start = last_ts + 1 + time.sleep(0.5) + except Exception as e: + logging.error(f"Error fetching historical chunk for {coin}: {e}") + break + + logging.info(f"Historical data fetching for {coin} is complete.") + + def run(self): + """ + Starts the database writer, catches up on historical data, then + subscribes to the WebSocket for live updates. + """ + db_writer = Thread(target=self._database_writer_thread, daemon=True) + db_writer.start() + + logging.info("--- Starting Historical Data Catch-Up Phase ---") + now_ms = int(time.time() * 1000) + for coin in self.coins_to_watch: + last_ts = self._get_last_timestamp_from_db(coin) + start_ts = last_ts + 60000 if last_ts else now_ms - (7 * 24 * 60 * 60 * 1000) + if start_ts < now_ms: + self._fetch_historical_candles(coin, start_ts, now_ms) + + logging.info("--- Historical Catch-Up Complete. Starting Live WebSocket Feed ---") + for coin in self.coins_to_watch: + # --- FIX: Use a lambda to create a unique callback for each subscription --- + # This captures the 'coin' variable and adds it to the message data. + callback = lambda msg, c=coin: self.on_message({**msg, 'data': {**msg.get('data',{}), 'coin': c}}) + subscription = {"type": "candle", "coin": coin, "interval": "1m"} + self.info.subscribe(subscription, callback) + logging.info(f"Subscribed to 1m candles for {coin}") + time.sleep(0.2) + + print("\nListening for live candle data... Press Ctrl+C to stop.") + try: + while True: + time.sleep(1) + except KeyboardInterrupt: + print("\nStopping WebSocket listener...") + self.info.ws_manager.stop() + self.candle_queue.put(None) + db_writer.join() + print("Listener stopped.") + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="A hybrid historical and live candle data fetcher for Hyperliquid.") + parser.add_argument( + "--coins", + nargs='+', + required=True, + help="List of coin symbols to fetch (e.g., BTC ETH)." + ) + parser.add_argument( + "--log-level", + default="normal", + choices=['off', 'normal', 'debug'], + help="Set the logging level for the script." + ) + args = parser.parse_args() + + fetcher = LiveCandleFetcher(log_level=args.log_level, coins=args.coins) + fetcher.run() + diff --git a/live_market_utils.py b/live_market_utils.py new file mode 100644 index 0000000..bab9129 --- /dev/null +++ b/live_market_utils.py @@ -0,0 +1,187 @@ +import logging +import json +import time +import os +import traceback +import sys +from hyperliquid.info import Info +from hyperliquid.utils import constants + +from logging_utils import setup_logging + +# --- Configuration for standalone error logging --- +LOGS_DIR = "_logs" +ERROR_LOG_FILE = os.path.join(LOGS_DIR, "live_market_errors.log") + +def log_error(error_message: str, include_traceback: bool = True): + """A simple, robust file logger for any errors.""" + try: + if not os.path.exists(LOGS_DIR): + os.makedirs(LOGS_DIR) + + with open(ERROR_LOG_FILE, 'a') as f: + timestamp = time.strftime('%Y-%m-%d %H:%M:%S', time.gmtime()) + f.write(f"--- ERROR at {timestamp} UTC ---\n") + f.write(error_message + "\n") + if include_traceback: + f.write(traceback.format_exc() + "\n") + f.write("="*50 + "\n") + except Exception: + print(f"CRITICAL: Failed to write to error log file: {error_message}", file=sys.stderr) + + +def on_message(message, shared_prices_dict): + """ + Callback function to process incoming WebSocket messages for 'bbo' and 'trades' + and update the shared memory dictionary. + """ + try: + logging.debug(f"Received WebSocket message: {message}") + channel = message.get("channel") + + # --- Parser 1: Handle Best Bid/Offer messages --- + if channel == "bbo": + data = message.get("data") + if not data: + logging.warning("BBO message received with no data.") + return + + coin = data.get("coin") + if not coin: + logging.warning("BBO data received with no coin identifier.") + return + + bid_ask_data = data.get("bbo") + + if not bid_ask_data or not isinstance(bid_ask_data, list) or len(bid_ask_data) < 2: + logging.warning(f"[{coin}] Received BBO message with invalid 'bbo' array: {bid_ask_data}") + return + + try: + bid_price_str = bid_ask_data[0].get('px') + ask_price_str = bid_ask_data[1].get('px') + + if not bid_price_str or not ask_price_str: + logging.warning(f"[{coin}] BBO data missing 'px' field.") + return + + bid_price = float(bid_price_str) + ask_price = float(ask_price_str) + + # Update the shared dictionary for Bid and Ask + shared_prices_dict[f"{coin}_bid"] = bid_price + shared_prices_dict[f"{coin}_ask"] = ask_price + + logging.info(f"Updated {coin} (BBO): Bid={bid_price:.4f}, Ask={ask_price:.4f}") + + except (ValueError, TypeError, IndexError) as e: + logging.error(f"[{coin}] Error parsing BBO data: {e}. Data: {bid_ask_data}") + + # --- Parser 2: Handle Live Trade messages --- + elif channel == "trades": + trade_list = message.get("data") + + if not trade_list or not isinstance(trade_list, list) or len(trade_list) == 0: + logging.warning(f"Received 'trades' message with invalid data: {trade_list}") + return + + # Process all trades in the batch + for trade in trade_list: + try: + coin = trade.get("coin") + price_str = trade.get("px") + + if not coin or not price_str: + logging.warning(f"Trade data missing 'coin' or 'px': {trade}") + continue + + price = float(price_str) + + # Update the shared dictionary for the "Live Price" column + shared_prices_dict[coin] = price + + logging.info(f"Updated {coin} (Live Price) to last trade: {price:.4f}") + + except (ValueError, TypeError) as e: + logging.error(f"Error parsing trade data: {e}. Data: {trade}") + + except Exception as e: + log_error(f"Error in WebSocket on_message: {e}") + +def start_live_feed(shared_prices_dict, coins_to_watch: list, log_level='off'): + """ + Main function for the WebSocket process. + Subscribes to BOTH 'bbo' and 'trades' for all watched coins. + """ + setup_logging(log_level, 'LiveMarketFeed_Combined') + + info = None + callback = lambda msg: on_message(msg, shared_prices_dict) + + def connect_and_subscribe(): + """Establishes a new WebSocket connection and subscribes to both streams.""" + try: + logging.info("Connecting to Hyperliquid WebSocket...") + new_info = Info(constants.MAINNET_API_URL, skip_ws=False) + + # --- MODIFIED: Subscribe to 'bbo' AND 'trades' for each coin --- + for coin in coins_to_watch: + # Subscribe to Best Bid/Offer + bbo_sub = {"type": "bbo", "coin": coin} + new_info.subscribe(bbo_sub, callback) + logging.info(f"Subscribed to 'bbo' for {coin}.") + + # Subscribe to Live Trades + trades_sub = {"type": "trades", "coin": coin} + new_info.subscribe(trades_sub, callback) + logging.info(f"Subscribed to 'trades' for {coin}.") + + logging.info("WebSocket connected and all subscriptions sent.") + return new_info + except Exception as e: + log_error(f"Failed to connect to WebSocket: {e}") + return None + + info = connect_and_subscribe() + + if info is None: + logging.critical("Initial WebSocket connection failed. Exiting process.") + log_error("Initial WebSocket connection failed. Exiting process.", include_traceback=False) + time.sleep(10) # Wait before letting the process manager restart it + return + + logging.info("Starting Combined (BBO + Trades) live price feed process.") + + try: + while True: + # --- Watchdog Logic --- + time.sleep(15) # Check the connection every 15 seconds + + if not info.ws_manager.is_alive(): + error_msg = "WebSocket connection lost. Attempting to reconnect..." + logging.warning(error_msg) + log_error(error_msg, include_traceback=False) # Log it to the file + + try: + info.ws_manager.stop() # Clean up old manager + except Exception as e: + log_error(f"Error stopping old ws_manager: {e}") + + info = connect_and_subscribe() + + if info is None: + logging.error("Reconnect failed, will retry in 15s.") + else: + logging.info("Successfully reconnected to WebSocket.") + else: + logging.debug("Watchdog check: WebSocket connection is active.") + + except KeyboardInterrupt: + logging.info("Stopping WebSocket listener...") + except Exception as e: + log_error(f"Live Market Feed process crashed: {e}") + finally: + if info and info.ws_manager: + info.ws_manager.stop() + logging.info("Combined Listener stopped.") + diff --git a/main_app.py b/main_app.py index 47670b4..345013d 100644 --- a/main_app.py +++ b/main_app.py @@ -9,21 +9,26 @@ import schedule import sqlite3 import pandas as pd from datetime import datetime, timezone +import importlib +# --- REMOVED: import signal --- +# --- REMOVED: from queue import Empty --- from logging_utils import setup_logging +# --- Using the new high-performance WebSocket utility for live prices --- +from live_market_utils import start_live_feed +# --- Import the base class for type hinting (optional but good practice) --- +from strategies.base_strategy import BaseStrategy # --- Configuration --- WATCHED_COINS = ["BTC", "ETH", "SOL", "BNB", "HYPE", "ASTER", "ZEC", "PUMP", "SUI"] -COIN_LISTER_SCRIPT = "list_coins.py" -MARKET_FEEDER_SCRIPT = "market.py" -DATA_FETCHER_SCRIPT = "data_fetcher.py" +LIVE_CANDLE_FETCHER_SCRIPT = "live_candle_fetcher.py" RESAMPLER_SCRIPT = "resampler.py" -MARKET_CAP_FETCHER_SCRIPT = "market_cap_fetcher.py" +# --- REMOVED: Market Cap Fetcher --- +# --- REMOVED: trade_executor.py is no longer a script --- +DASHBOARD_DATA_FETCHER_SCRIPT = "dashboard_data_fetcher.py" STRATEGY_CONFIG_FILE = os.path.join("_data", "strategies.json") -PRICE_DATA_FILE = os.path.join("_data", "current_prices.json") DB_PATH = os.path.join("_data", "market_data.db") -STATUS_FILE = os.path.join("_data", "fetcher_status.json") -MARKET_CAP_SUMMARY_FILE = os.path.join("_data", "market_cap_data.json") +# --- REMOVED: Market Cap File --- LOGS_DIR = "_logs" TRADE_EXECUTOR_STATUS_FILE = os.path.join(LOGS_DIR, "trade_executor_status.json") @@ -41,52 +46,64 @@ def format_market_cap(mc_value): return f"${mc_value:,.2f}" -def run_market_feeder(): - """Target function to run market.py and redirect its output to a log file.""" - log_file = os.path.join(LOGS_DIR, "market_feeder.log") - while True: +def run_live_candle_fetcher(): + """Target function to run the live_candle_fetcher.py script in a resilient loop.""" + + # --- GRACEFUL SHUTDOWN HANDLER --- + import signal + shutdown_requested = False + + def handle_shutdown_signal(signum, frame): + nonlocal shutdown_requested + # Use print here as logging may not be set up + print(f"[CandleFetcher] Shutdown signal ({signum}) received. Will stop after current run.") + shutdown_requested = True + + signal.signal(signal.SIGTERM, handle_shutdown_signal) + signal.signal(signal.SIGINT, handle_shutdown_signal) + # --- END GRACEFUL SHUTDOWN HANDLER --- + + log_file = os.path.join(LOGS_DIR, "live_candle_fetcher.log") + + while not shutdown_requested: # <-- MODIFIED + process = None try: with open(log_file, 'a') as f: - subprocess.run( - [sys.executable, MARKET_FEEDER_SCRIPT, "--log-level", "off"], - check=True, stdout=f, stderr=subprocess.STDOUT - ) + command = [sys.executable, LIVE_CANDLE_FETCHER_SCRIPT, "--coins"] + WATCHED_COINS + ["--log-level", "off"] + f.write(f"\n--- Starting {LIVE_CANDLE_FETCHER_SCRIPT} at {datetime.now()} ---\n") + + # Use Popen instead of run to be non-blocking + process = subprocess.Popen(command, stdout=f, stderr=subprocess.STDOUT) + + # Poll the process and check for shutdown request + while process.poll() is None and not shutdown_requested: + time.sleep(0.5) # Poll every 500ms + + if shutdown_requested and process.poll() is None: + print(f"[CandleFetcher] Terminating subprocess {LIVE_CANDLE_FETCHER_SCRIPT}...") + process.terminate() # Terminate the child script + process.wait() # Wait for it to exit + print(f"[CandleFetcher] Subprocess terminated.") + except (subprocess.CalledProcessError, Exception) as e: + if shutdown_requested: + break # Don't restart if we're shutting down with open(log_file, 'a') as f: f.write(f"\n--- PROCESS ERROR at {datetime.now()} ---\n") - f.write(f"Market feeder script failed: {e}. Restarting...\n") + f.write(f"Live candle fetcher failed: {e}. Restarting...\n") time.sleep(5) - - -def run_data_fetcher_job(): - """Defines the job for the data fetcher, redirecting output to a log file.""" - log_file = os.path.join(LOGS_DIR, "data_fetcher.log") - try: - command = [sys.executable, DATA_FETCHER_SCRIPT, "--coins"] + WATCHED_COINS + ["--days", "7", "--log-level", "off"] - with open(log_file, 'a') as f: - f.write(f"\n--- Starting data_fetcher.py job at {datetime.now()} ---\n") - subprocess.run(command, check=True, stdout=f, stderr=subprocess.STDOUT) - except Exception as e: - with open(log_file, 'a') as f: - f.write(f"\n--- SCHEDULER ERROR at {datetime.now()} ---\n") - f.write(f"Failed to run data_fetcher.py job: {e}\n") - - -def data_fetcher_scheduler(): - """Schedules the data_fetcher.py script.""" - setup_logging('off', 'DataFetcherScheduler') - run_data_fetcher_job() - schedule.every(1).minutes.do(run_data_fetcher_job) - while True: - schedule.run_pending() - time.sleep(1) + + if shutdown_requested: + break # Exit outer loop + + print("[CandleFetcher] Live candle fetcher shutting down.") def run_resampler_job(timeframes_to_generate: list): """Defines the job for the resampler, redirecting output to a log file.""" log_file = os.path.join(LOGS_DIR, "resampler.log") try: - command = [sys.executable, RESAMPLER_SCRIPT, "--coins"] + WATCHED_COINS + ["--timeframes"] + timeframes_to_generate + ["--log-level", "off"] + command = [sys.executable, RESAMPLER_SCRIPT, "--coins"] + WATCHED_COINS + ["--timeframes"] + timeframes_to_generate + ["--log-level", "normal"] with open(log_file, 'a') as f: f.write(f"\n--- Starting resampler.py job at {datetime.now()} ---\n") subprocess.run(command, check=True, stdout=f, stderr=subprocess.STDOUT) @@ -98,61 +115,240 @@ def run_resampler_job(timeframes_to_generate: list): def resampler_scheduler(timeframes_to_generate: list): """Schedules the resampler.py script.""" + + # --- GRACEFUL SHUTDOWN HANDLER --- + import signal + shutdown_requested = False + + def handle_shutdown_signal(signum, frame): + nonlocal shutdown_requested + try: + logging.info(f"Shutdown signal ({signum}) received. Exiting loop...") + except NameError: + print(f"[ResamplerScheduler] Shutdown signal ({signum}) received. Exiting loop...") + shutdown_requested = True + + signal.signal(signal.SIGTERM, handle_shutdown_signal) + signal.signal(signal.SIGINT, handle_shutdown_signal) + # --- END GRACEFUL SHUTDOWN HANDLER --- + setup_logging('off', 'ResamplerScheduler') run_resampler_job(timeframes_to_generate) - schedule.every(4).minutes.do(run_resampler_job, timeframes_to_generate) - while True: + # Schedule to run every minute at the :01 second mark + schedule.every().minute.at(":01").do(run_resampler_job, timeframes_to_generate=timeframes_to_generate) + logging.info("Resampler scheduled to run every minute at :01.") + + while not shutdown_requested: # <-- MODIFIED schedule.run_pending() - time.sleep(1) + time.sleep(0.5) # Check every 500ms to not miss the scheduled time and be responsive + + logging.info("ResamplerScheduler shutting down.") -def run_market_cap_fetcher_job(): - """Defines the job for the market cap fetcher, redirecting output.""" - log_file = os.path.join(LOGS_DIR, "market_cap_fetcher.log") +# --- REMOVED: run_market_cap_fetcher_job function --- + +# --- REMOVED: market_cap_fetcher_scheduler function --- + + +def run_trade_executor(order_execution_queue: multiprocessing.Queue): + """ + Target function to run the TradeExecutor class in a resilient loop. + It now consumes from the order_execution_queue. + """ + + # --- GRACEFUL SHUTDOWN HANDLER --- + import signal + + def handle_shutdown_signal(signum, frame): + # We can just raise KeyboardInterrupt, as it's handled below + logging.info(f"Shutdown signal ({signum}) received. Initiating graceful exit...") + raise KeyboardInterrupt + + signal.signal(signal.SIGTERM, handle_shutdown_signal) + # --- END GRACEFUL SHUTDOWN HANDLER --- + + log_file_path = os.path.join(LOGS_DIR, "trade_executor.log") try: - command = [sys.executable, MARKET_CAP_FETCHER_SCRIPT, "--coins"] + WATCHED_COINS + ["--log-level", "off"] - with open(log_file, 'a') as f: - f.write(f"\n--- Starting {MARKET_CAP_FETCHER_SCRIPT} job at {datetime.now()} ---\n") - subprocess.run(command, check=True, stdout=f, stderr=subprocess.STDOUT) + sys.stdout = open(log_file_path, 'a', buffering=1) + sys.stderr = sys.stdout except Exception as e: - with open(log_file, 'a') as f: - f.write(f"\n--- SCHEDULER ERROR at {datetime.now()} ---\n") - f.write(f"Failed to run {MARKET_CAP_FETCHER_SCRIPT} job: {e}\n") + print(f"Failed to open log file for TradeExecutor: {e}") - -def market_cap_fetcher_scheduler(): - """Schedules the market_cap_fetcher.py script to run daily at a specific UTC time.""" - setup_logging('off', 'MarketCapScheduler') - schedule.every().day.at("00:15", "UTC").do(run_market_cap_fetcher_job) + setup_logging('normal', f"TradeExecutor") + logging.info("\n--- Starting Trade Executor process ---") + while True: - schedule.run_pending() - time.sleep(60) + try: + from trade_executor import TradeExecutor + + executor = TradeExecutor(log_level="normal", order_execution_queue=order_execution_queue) + + # --- REVERTED: Call executor.run() directly --- + executor.run() + + except KeyboardInterrupt: + logging.info("Trade Executor interrupted. Exiting.") + return + except Exception as e: + logging.error(f"Trade Executor failed: {e}. Restarting...\n", exc_info=True) + time.sleep(10) + +def run_position_manager(trade_signal_queue: multiprocessing.Queue, order_execution_queue: multiprocessing.Queue): + """ + Target function to run the PositionManager class in a resilient loop. + Consumes from trade_signal_queue, produces for order_execution_queue. + """ + + # --- GRACEFUL SHUTDOWN HANDLER --- + import signal + + def handle_shutdown_signal(signum, frame): + # Raise KeyboardInterrupt, as it's handled by the loop + logging.info(f"Shutdown signal ({signum}) received. Initiating graceful exit...") + raise KeyboardInterrupt + + signal.signal(signal.SIGTERM, handle_shutdown_signal) + # --- END GRACEFUL SHUTDOWN HANDLER --- + + log_file_path = os.path.join(LOGS_DIR, "position_manager.log") + try: + sys.stdout = open(log_file_path, 'a', buffering=1) + sys.stderr = sys.stdout + except Exception as e: + print(f"Failed to open log file for PositionManager: {e}") + + setup_logging('normal', f"PositionManager") + logging.info("\n--- Starting Position Manager process ---") + + while True: + try: + from position_manager import PositionManager + + manager = PositionManager( + log_level="normal", + trade_signal_queue=trade_signal_queue, + order_execution_queue=order_execution_queue + ) + + # --- REVERTED: Call manager.run() directly --- + manager.run() + + except KeyboardInterrupt: + logging.info("Position Manager interrupted. Exiting.") + return + except Exception as e: + logging.error(f"Position Manager failed: {e}. Restarting...\n", exc_info=True) + time.sleep(10) -def run_strategy(strategy_name: str, config: dict): - """Target function to run a strategy, redirecting its output to a log file.""" - log_file = os.path.join(LOGS_DIR, f"strategy_{strategy_name}.log") - script_name = config['script'] - params_str = json.dumps(config['parameters']) - command = [sys.executable, script_name, "--name", strategy_name, "--params", params_str, "--log-level", "normal"] +def run_strategy(strategy_name: str, config: dict, trade_signal_queue: multiprocessing.Queue): + """ + This function BECOMES the strategy runner. It is executed as a separate + process and pushes signals to the shared queue. + """ + # These imports only happen in the new, lightweight process + import importlib + import os + import sys + import time + import logging + import signal # <-- ADDED + from logging_utils import setup_logging + from strategies.base_strategy import BaseStrategy + + # --- GRACEFUL SHUTDOWN HANDLER --- + def handle_shutdown_signal(signum, frame): + # Raise KeyboardInterrupt, as it's handled by the loop + try: + logging.info(f"Shutdown signal ({signum}) received. Initiating graceful exit...") + except NameError: + print(f"[Strategy-{strategy_name}] Shutdown signal ({signum}) received. Initiating graceful exit...") + raise KeyboardInterrupt + + signal.signal(signal.SIGTERM, handle_shutdown_signal) + # --- END GRACEFUL SHUTDOWN HANDLER --- + + # --- Setup logging to file for this specific process --- + log_file_path = os.path.join(LOGS_DIR, f"strategy_{strategy_name}.log") + try: + sys.stdout = open(log_file_path, 'a', buffering=1) # 1 = line buffering + sys.stderr = sys.stdout + except Exception as e: + print(f"Failed to open log file for {strategy_name}: {e}") + + setup_logging('normal', f"Strategy-{strategy_name}") + + while True: + try: + logging.info(f"--- Starting strategy '{strategy_name}' ---") + + if 'class' not in config: + logging.error(f"Strategy config for '{strategy_name}' is missing the 'class' key. Exiting.") + return + + module_path, class_name = config['class'].rsplit('.', 1) + module = importlib.import_module(module_path) + StrategyClass = getattr(module, class_name) + + strategy = StrategyClass(strategy_name, config['parameters'], trade_signal_queue) + + if config.get("is_event_driven", False): + logging.info(f"Starting EVENT-DRIVEN logic loop...") + strategy.run_event_loop() # This is a blocking call + else: + logging.info(f"Starting POLLING logic loop...") + strategy.run_polling_loop() # This is the original blocking call + + # --- REVERTED: Added back simple KeyboardInterrupt handler --- + except KeyboardInterrupt: + logging.info(f"Strategy {strategy_name} process stopping.") + return + except Exception as e: + # --- REVERTED: Removed specific check for KeyboardInterrupt --- + logging.error(f"Strategy '{strategy_name}' failed: {e}", exc_info=True) + logging.info("Restarting strategy in 10 seconds...") + time.sleep(10) + + +def run_dashboard_data_fetcher(): + """Target function to run the dashboard_data_fetcher.py script.""" + + # --- GRACEFUL SHUTDOWN HANDLER --- + import signal + + def handle_shutdown_signal(signum, frame): + # Raise KeyboardInterrupt, as it's handled by the loop + try: + logging.info(f"Shutdown signal ({signum}) received. Initiating graceful exit...") + except NameError: + print(f"[DashboardDataFetcher] Shutdown signal ({signum}) received. Initiating graceful exit...") + raise KeyboardInterrupt + + signal.signal(signal.SIGTERM, handle_shutdown_signal) + # --- END GRACEFUL SHUTDOWN HANDLER --- + + log_file = os.path.join(LOGS_DIR, "dashboard_data_fetcher.log") while True: try: with open(log_file, 'a') as f: - f.write(f"\n--- Starting strategy '{strategy_name}' at {datetime.now()} ---\n") - subprocess.run(command, check=True, stdout=f, stderr=subprocess.STDOUT) + f.write(f"\n--- Starting Dashboard Data Fetcher at {datetime.now()} ---\n") + subprocess.run([sys.executable, DASHBOARD_DATA_FETCHER_SCRIPT, "--log-level", "normal"], check=True, stdout=f, stderr=subprocess.STDOUT) + except KeyboardInterrupt: # --- MODIFIED: Added to catch interrupt --- + logging.info("Dashboard Data Fetcher stopping.") + break except (subprocess.CalledProcessError, Exception) as e: with open(log_file, 'a') as f: f.write(f"\n--- PROCESS ERROR at {datetime.now()} ---\n") - f.write(f"Strategy '{strategy_name}' failed: {e}. Restarting...\n") + f.write(f"Dashboard Data Fetcher failed: {e}. Restarting...\n") time.sleep(10) class MainApp: - def __init__(self, coins_to_watch: list, processes: dict, strategy_configs: dict): + def __init__(self, coins_to_watch: list, processes: dict, strategy_configs: dict, shared_prices: dict): self.watched_coins = coins_to_watch + self.shared_prices = shared_prices self.prices = {} - self.market_caps = {} - self.last_db_update_info = "Initializing..." + # --- REMOVED: self.market_caps --- self.open_positions = {} self.background_processes = processes self.process_status = {} @@ -160,27 +356,14 @@ class MainApp: self.strategy_statuses = {} def read_prices(self): - """Reads the latest prices from the JSON file.""" - if os.path.exists(PRICE_DATA_FILE): - try: - with open(PRICE_DATA_FILE, 'r', encoding='utf-8') as f: - self.prices = json.load(f) - except (json.JSONDecodeError, IOError): - logging.debug("Could not read price file.") + """Reads the latest prices directly from the shared memory dictionary.""" + try: + # --- FIX: Use .copy() for thread-safe iteration --- + self.prices = self.shared_prices.copy() + except Exception as e: + logging.debug(f"Could not read from shared prices dict: {e}") - def read_market_caps(self): - """Reads the latest market cap summary from its JSON file.""" - if os.path.exists(MARKET_CAP_SUMMARY_FILE): - try: - with open(MARKET_CAP_SUMMARY_FILE, 'r', encoding='utf-8') as f: - summary_data = json.load(f) - - for coin in self.watched_coins: - table_key = f"{coin}_market_cap" - if table_key in summary_data: - self.market_caps[coin] = summary_data[table_key].get('market_cap') - except (json.JSONDecodeError, IOError): - logging.debug("Could not read market cap summary file.") + # --- REMOVED: read_market_caps method --- def read_strategy_statuses(self): """Reads the status JSON file for each enabled strategy.""" @@ -203,64 +386,80 @@ class MainApp: if os.path.exists(TRADE_EXECUTOR_STATUS_FILE): try: with open(TRADE_EXECUTOR_STATUS_FILE, 'r', encoding='utf-8') as f: - self.open_positions = json.load(f) + # --- FIX: Read the 'open_positions' key from the file --- + status_data = json.load(f) + self.open_positions = status_data.get('open_positions', {}) except (IOError, json.JSONDecodeError): logging.debug("Could not read trade executor status file.") else: self.open_positions = {} - - def get_overall_db_status(self): - """Reads the fetcher status from the status file.""" - if os.path.exists(STATUS_FILE): - try: - with open(STATUS_FILE, 'r', encoding='utf-8') as f: - status = json.load(f) - coin = status.get("last_updated_coin") - timestamp_utc_str = status.get("last_run_timestamp_utc") - num_candles = status.get("num_updated_candles", 0) - if timestamp_utc_str: - dt_utc = datetime.fromisoformat(timestamp_utc_str.replace('Z', '+00:00')).replace(tzinfo=timezone.utc) - dt_local = dt_utc.astimezone(None) - - offset = dt_local.utcoffset() - offset_hours = int(offset.total_seconds() / 3600) - sign = '+' if offset_hours >= 0 else '' - offset_str = f"UTC{sign}{offset_hours}" - timestamp_display = f"{dt_local.strftime('%Y-%m-%d %H:%M:%S')} {offset_str}" - else: - timestamp_display = "N/A" - self.last_db_update_info = f"{coin} at {timestamp_display} | {num_candles} candles" - except (IOError, json.JSONDecodeError): - self.last_db_update_info = "Error reading status file." - def check_process_status(self): """Checks if the background processes are still running.""" for name, process in self.background_processes.items(): self.process_status[name] = "Running" if process.is_alive() else "STOPPED" + def _format_price(self, price_val, width=10): + """Helper function to format prices for the dashboard.""" + try: + price_float = float(price_val) + if price_float < 1: + price_str = f"{price_float:>{width}.6f}" + elif price_float < 100: + price_str = f"{price_float:>{width}.4f}" + else: + price_str = f"{price_float:>{width}.2f}" + except (ValueError, TypeError): + price_str = f"{'Loading...':>{width}}" + return price_str + def display_dashboard(self): """Displays a formatted dashboard with side-by-side tables.""" print("\x1b[H\x1b[J", end="") # Clear screen - left_table_lines = [] - left_table_width = 44 - left_table_lines.append("--- Market Dashboard ---") + left_table_lines = ["--- Market Dashboard ---"] + # --- MODIFIED: Adjusted width for new columns --- + left_table_width = 65 left_table_lines.append("-" * left_table_width) - left_table_lines.append(f"{'#':<2} | {'Coin':^6} | {'Live Price':>10} | {'Market Cap':>15} |") + # --- MODIFIED: Replaced Market Cap with Gap --- + left_table_lines.append(f"{'#':<2} | {'Coin':^6} | {'Best Bid':>10} | {'Live Price':>10} | {'Best Ask':>10} | {'Gap':>10} |") left_table_lines.append("-" * left_table_width) for i, coin in enumerate(self.watched_coins, 1): - price = self.prices.get(coin, "Loading...") - market_cap = self.market_caps.get(coin) - formatted_mc = format_market_cap(market_cap) - left_table_lines.append(f"{i:<2} | {coin:^6} | {price:>10} | {formatted_mc:>15} |") + # --- MODIFIED: Fetch all three price types --- + mid_price = self.prices.get(coin, "Loading...") + bid_price = self.prices.get(f"{coin}_bid", "Loading...") + ask_price = self.prices.get(f"{coin}_ask", "Loading...") + + # --- MODIFIED: Use the new formatting helper --- + formatted_mid = self._format_price(mid_price) + formatted_bid = self._format_price(bid_price) + formatted_ask = self._format_price(ask_price) + + # --- MODIFIED: Calculate gap --- + gap_str = f"{'Loading...':>10}" + try: + # Calculate the spread + gap_val = float(ask_price) - float(bid_price) + # Format gap with high precision, similar to price + if gap_val < 1: + gap_str = f"{gap_val:>{10}.6f}" + else: + gap_str = f"{gap_val:>{10}.4f}" + except (ValueError, TypeError): + pass # Keep 'Loading...' + + # --- REMOVED: Market Cap logic --- + + # --- MODIFIED: Print all price columns including gap --- + left_table_lines.append(f"{i:<2} | {coin:^6} | {formatted_bid} | {formatted_mid} | {formatted_ask} | {gap_str} |") left_table_lines.append("-" * left_table_width) - right_table_lines = [] - right_table_width = 154 - right_table_lines.append("--- Strategy Status ---") + right_table_lines = ["--- Strategy Status ---"] + # --- FIX: Adjusted table width after removing parameters --- + right_table_width = 105 right_table_lines.append("-" * right_table_width) - right_table_lines.append(f"{'#':^2} | {'Strategy Name':<25} | {'Coin':^6} | {'Signal':^8} | {'Signal Price':>12} | {'Last Change':>17} | {'TF':^5} | {'Size':^8} | {'Parameters':<45} |") + # --- FIX: Removed 'Parameters' from header --- + right_table_lines.append(f"{'#':^2} | {'Strategy Name':<25} | {'Coin':^6} | {'Signal':^8} | {'Signal Price':>12} | {'Last Change':>17} | {'TF':^5} | {'Size':^8} |") right_table_lines.append("-" * right_table_width) for i, (name, status) in enumerate(self.strategy_statuses.items(), 1): signal = status.get('current_signal', 'N/A') @@ -274,14 +473,37 @@ class MainApp: last_change_display = dt_local.strftime('%Y-%m-%d %H:%M') config_params = self.strategy_configs.get(name, {}).get('parameters', {}) - coin = config_params.get('coin', 'N/A') - timeframe = config_params.get('timeframe', 'N/A') - size = config_params.get('size', 'N/A') - other_params = {k: v for k, v in config_params.items() if k not in ['coin', 'timeframe', 'size']} - params_str = ", ".join([f"{k}={v}" for k, v in other_params.items()]) - - right_table_lines.append(f"{i:^2} | {name:<25} | {coin:^6} | {signal:^8} | {price_display:>12} | {last_change_display:>17} | {timeframe:^5} | {size:>8} | {params_str:<45} |") + # --- FIX: Read coin/size from status file first, fallback to config --- + coin = status.get('coin', config_params.get('coin', 'N/A')) + + # --- FIX: Handle nested 'coins_to_copy' logic for size --- + # --- MODIFIED: Read 'size' from status first, then config, then 'Multi' --- + size = status.get('size') + if not size: + if 'coins_to_copy' in config_params: + size = 'Multi' + else: + size = config_params.get('size', 'N/A') + + timeframe = config_params.get('timeframe', 'N/A') + + # --- FIX: Removed parameter string logic --- + + # --- FIX: Removed 'params_str' from the formatted line --- + + size_display = f"{size:>8}" + if isinstance(size, (int, float)): + # --- MODIFIED: More flexible size formatting --- + if size < 0.0001: + size_display = f"{size:>8.6f}" + elif size < 1: + size_display = f"{size:>8.4f}" + else: + size_display = f"{size:>8.2f}" + # --- END NEW LOGIC --- + + right_table_lines.append(f"{i:^2} | {name:<25} | {coin:^6} | {signal:^8} | {price_display:>12} | {last_change_display:>17} | {timeframe:^5} | {size_display} |") right_table_lines.append("-" * right_table_width) output_lines = [] @@ -292,8 +514,6 @@ class MainApp: left_part = left_table_lines[i] if i < len(left_table_lines) else " " * left_table_width right_part = indent + right_table_lines[i] if i < len(right_table_lines) else "" output_lines.append(f"{left_part}{separator}{right_part}") - - output_lines.append(f"\nDB Status: Last update -> {self.last_db_update_info}") output_lines.append("\n--- Open Positions ---") pos_table_width = 100 @@ -301,38 +521,32 @@ class MainApp: output_lines.append(f"{'Account':<10} | {'Coin':<6} | {'Size':>15} | {'Entry Price':>12} | {'Mark Price':>12} | {'PNL':>15} | {'Leverage':>10} |") output_lines.append("-" * pos_table_width) - perps_positions = self.open_positions.get('perpetuals_account', {}).get('open_positions', []) - spot_positions = self.open_positions.get('spot_account', {}).get('positions', []) - - if not perps_positions and not spot_positions: - output_lines.append("No open positions found.") + # --- FIX: Correctly read and display open positions --- + if not self.open_positions: + output_lines.append(f"{'No open positions.':^{pos_table_width}}") else: - for pos in perps_positions: - # --- FIX: Safely handle potentially None values before formatting --- - try: - pnl = float(pos.get('pnl', 0.0)) - pnl_str = f"${pnl:,.2f}" - except (ValueError, TypeError): - pnl_str = "Error" - - coin = pos.get('coin') or '-' - size = pos.get('size') or '-' - entry_price = pos.get('entry_price') or '-' - mark_price = pos.get('mark_price') or '-' - leverage = pos.get('leverage') or '-' - - output_lines.append(f"{'Perps':<10} | {coin:<6} | {size:>15} | {entry_price:>12} | {mark_price:>12} | {pnl_str:>15} | {leverage:>10} |") + for account, positions in self.open_positions.items(): + if not positions: + continue + for coin, pos in positions.items(): + try: + size_f = float(pos.get('size', 0)) + entry_f = float(pos.get('entry_price', 0)) + mark_f = float(self.prices.get(coin, 0)) + pnl_f = (mark_f - entry_f) * size_f if size_f > 0 else (entry_f - mark_f) * abs(size_f) + lev = pos.get('leverage', 1) + + size_str = f"{size_f:>{15}.5f}" + entry_str = f"{entry_f:>{12}.2f}" + mark_str = f"{mark_f:>{12}.2f}" + pnl_str = f"{pnl_f:>{15}.2f}" + lev_str = f"{lev}x" + + output_lines.append(f"{account:<10} | {coin:<6} | {size_str} | {entry_str} | {mark_str} | {pnl_str} | {lev_str:>10} |") + except (ValueError, TypeError): + output_lines.append(f"{account:<10} | {coin:<6} | {'Error parsing data...':^{pos_table_width-20}} |") - for pos in spot_positions: - pnl = pos.get('pnl', 'N/A') - coin = pos.get('coin') or '-' - balance_size = pos.get('balance_size') or '-' - output_lines.append(f"{'Spot':<10} | {coin:<6} | {balance_size:>15} | {'-':>12} | {'-':>12} | {pnl:>15} | {'-':>10} |") output_lines.append("-" * pos_table_width) - - output_lines.append("\n--- Background Processes ---") - for name, status in self.process_status.items(): - output_lines.append(f"{name:<25}: {status}") final_output = "\n".join(output_lines) print(final_output) @@ -342,30 +556,21 @@ class MainApp: """Main loop to read data, display dashboard, and check processes.""" while True: self.read_prices() - self.read_market_caps() - self.get_overall_db_status() + # --- REMOVED: self.read_market_caps() --- self.read_strategy_statuses() self.read_executor_status() - self.check_process_status() + # --- REMOVED: self.check_process_status() --- self.display_dashboard() - time.sleep(2) - + time.sleep(0.5) if __name__ == "__main__": setup_logging('normal', 'MainApp') if not os.path.exists(LOGS_DIR): os.makedirs(LOGS_DIR) - - logging.info(f"Running coin lister: '{COIN_LISTER_SCRIPT}'...") - try: - subprocess.run([sys.executable, COIN_LISTER_SCRIPT], check=True, capture_output=True, text=True) - except subprocess.CalledProcessError as e: - logging.error(f"Failed to run '{COIN_LISTER_SCRIPT}'. Error: {e.stderr}") - sys.exit(1) - + processes = {} - strategy_configs = {} + # --- REVERTED: Removed process groups --- try: with open(STRATEGY_CONFIG_FILE, 'r') as f: @@ -374,45 +579,107 @@ if __name__ == "__main__": logging.error(f"Could not load strategies from '{STRATEGY_CONFIG_FILE}': {e}") sys.exit(1) - required_timeframes = set() - for name, config in strategy_configs.items(): - if config.get("enabled", False): - tf = config.get("parameters", {}).get("timeframe") - if tf: - required_timeframes.add(tf) + # --- FIX: Hardcoded timeframes --- + required_timeframes = [ + "3m", "5m", "15m", "30m", "1h", "2h", "4h", "8h", + "12h", "1d", "3d", "1w", "1M", "148m", "37m" + ] + logging.info(f"Using fixed timeframes for resampler: {required_timeframes}") - if not required_timeframes: - logging.warning("No timeframes required by any enabled strategy. Resampler will not run effectively.") + with multiprocessing.Manager() as manager: + shared_prices = manager.dict() + # --- FIX: Create TWO queues --- + trade_signal_queue = manager.Queue() + order_execution_queue = manager.Queue() - - processes["Market Feeder"] = multiprocessing.Process(target=run_market_feeder, daemon=True) - processes["Data Fetcher"] = multiprocessing.Process(target=data_fetcher_scheduler, daemon=True) - processes["Resampler"] = multiprocessing.Process(target=resampler_scheduler, args=(list(required_timeframes),), daemon=True) - processes["Market Cap Fetcher"] = multiprocessing.Process(target=market_cap_fetcher_scheduler, daemon=True) - - for name, config in strategy_configs.items(): - if config.get("enabled", False): - if not os.path.exists(config['script']): - logging.error(f"Strategy script '{config['script']}' for strategy '{name}' not found. Skipping.") - continue - proc = multiprocessing.Process(target=run_strategy, args=(name, config), daemon=True) - processes[f"Strategy: {name}"] = proc + # --- REVERTED: All processes are daemon=True and in one dict --- + + # --- FIX: Pass WATCHED_COINS to the start_live_feed process --- + # --- MODIFICATION: Set log level back to 'off' --- + processes["Live Market Feed"] = multiprocessing.Process( + target=start_live_feed, + args=(shared_prices, WATCHED_COINS, 'off'), + daemon=True + ) + processes["Live Candle Fetcher"] = multiprocessing.Process(target=run_live_candle_fetcher, daemon=True) + processes["Resampler"] = multiprocessing.Process(target=resampler_scheduler, args=(list(required_timeframes),), daemon=True) + # --- REMOVED: Market Cap Fetcher Process --- + processes["Dashboard Data"] = multiprocessing.Process(target=run_dashboard_data_fetcher, daemon=True) - for name, proc in processes.items(): - logging.info(f"Starting process '{name}'...") - proc.start() - - time.sleep(3) + processes["Position Manager"] = multiprocessing.Process( + target=run_position_manager, + args=(trade_signal_queue, order_execution_queue), + daemon=True + ) + processes["Trade Executor"] = multiprocessing.Process( + target=run_trade_executor, + args=(order_execution_queue,), + daemon=True + ) + + for name, config in strategy_configs.items(): + if config.get("enabled", False): + if 'class' not in config: + logging.error(f"Strategy '{name}' is missing 'class' key. Skipping.") + continue + proc = multiprocessing.Process(target=run_strategy, args=(name, config, trade_signal_queue), daemon=True) + processes[f"Strategy: {name}"] = proc # Add to strategy group + + # --- REVERTED: Removed combined dict --- - app = MainApp(coins_to_watch=WATCHED_COINS, processes=processes, strategy_configs=strategy_configs) - try: - app.run() - except KeyboardInterrupt: - logging.info("Shutting down...") - for proc in processes.values(): - if proc.is_alive(): proc.terminate() - for proc in processes.values(): - if proc.is_alive(): proc.join() + for name, proc in processes.items(): + logging.info(f"Starting process '{name}'...") + proc.start() + + time.sleep(3) + + app = MainApp(coins_to_watch=WATCHED_COINS, processes=processes, strategy_configs=strategy_configs, shared_prices=shared_prices) + try: + app.run() + except KeyboardInterrupt: + # --- MODIFIED: Staged shutdown --- + logging.info("Shutting down...") + + strategy_procs = {} + other_procs = {} + for name, proc in processes.items(): + if name.startswith("Strategy:"): + strategy_procs[name] = proc + else: + other_procs[name] = proc + + # --- 1. Terminate strategy processes --- + logging.info("Shutting down strategy processes first...") + for name, proc in strategy_procs.items(): + if proc.is_alive(): + logging.info(f"Terminating process: '{name}'...") + proc.terminate() + + # --- 2. Wait for 5 seconds --- + logging.info("Waiting 5 seconds for strategies to close...") + time.sleep(5) + + # --- 3. Terminate all other processes --- + logging.info("Shutting down remaining core processes...") + for name, proc in other_procs.items(): + if proc.is_alive(): + logging.info(f"Terminating process: '{name}'...") + proc.terminate() + + # --- 4. Join all processes (strategies and others) --- + logging.info("Waiting for all processes to join...") + for name, proc in processes.items(): # Iterate over the original dict to get all + if proc.is_alive(): + logging.info(f"Waiting for process '{name}' to join...") + proc.join(timeout=5) # Wait up to 5 seconds + if proc.is_alive(): + # If it's still alive, force kill + logging.warning(f"Process '{name}' did not terminate, forcing kill.") + proc.kill() + # --- END MODIFIED --- + logging.info("Shutdown complete.") sys.exit(0) + + diff --git a/market_cap_fetcher.py b/market_cap_fetcher.py index ac25ba6..9b26fa5 100644 --- a/market_cap_fetcher.py +++ b/market_cap_fetcher.py @@ -8,47 +8,106 @@ import requests import time from datetime import datetime, timezone, timedelta import json +from dotenv import load_dotenv + +load_dotenv() -# Assuming logging_utils.py is in the same directory from logging_utils import setup_logging class MarketCapFetcher: """ Fetches historical daily market cap data from the CoinGecko API and - intelligently updates the SQLite database. It processes individual coins, - aggregates stablecoins, and captures total market cap metrics. + intelligently upserts it into the SQLite database for all coins. """ - COIN_ID_MAP = { - "BTC": "bitcoin", - "ETH": "ethereum", - "SOL": "solana", - "BNB": "binancecoin", - "HYPE": "hyperliquid", - "ASTER": "astar", - "ZEC": "zcash", - "PUMP": "pump-fun", # Correct ID is 'pump-fun' - "SUI": "sui" - } - - STABLECOIN_ID_MAP = { - "USDT": "tether", - "USDC": "usd-coin", - "USDE": "ethena-usde", - "DAI": "dai", - "PYUSD": "paypal-usd" - } - - def __init__(self, log_level: str, coins: list): + def __init__(self, log_level: str): setup_logging(log_level, 'MarketCapFetcher') - self.coins_to_fetch = coins self.db_path = os.path.join("_data", "market_data.db") self.api_base_url = "https://api.coingecko.com/api/v3" self.api_key = os.environ.get("COINGECKO_API_KEY") - if not self.api_key: logging.error("CoinGecko API key not found. Please set the COINGECKO_API_KEY environment variable.") sys.exit(1) + + self.COIN_ID_MAP = self._load_coin_id_map() + if not self.COIN_ID_MAP: + logging.error("Coin ID map is empty. Run 'update_coin_map.py' to generate it.") + sys.exit(1) + + self.coins_to_fetch = list(self.COIN_ID_MAP.keys()) + + self.STABLECOIN_ID_MAP = { + "USDT": "tether", "USDC": "usd-coin", "USDE": "ethena-usde", + "DAI": "dai", "PYUSD": "paypal-usd" + } + + self._ensure_tables_exist() + + def _ensure_tables_exist(self): + """Ensures all market cap tables exist with timestamp_ms as PRIMARY KEY.""" + all_tables_to_check = [f"{coin}_market_cap" for coin in self.coins_to_fetch] + all_tables_to_check.extend(["STABLECOINS_market_cap", "TOTAL_market_cap_daily"]) + + with sqlite3.connect(self.db_path) as conn: + for table_name in all_tables_to_check: + cursor = conn.cursor() + cursor.execute(f"PRAGMA table_info('{table_name}')") + columns = cursor.fetchall() + if columns: + pk_found = any(col[1] == 'timestamp_ms' and col[5] == 1 for col in columns) + if not pk_found: + logging.warning(f"Schema for table '{table_name}' is incorrect. Dropping and recreating table.") + try: + conn.execute(f'DROP TABLE "{table_name}"') + self._create_market_cap_table(conn, table_name) + logging.info(f"Successfully recreated schema for '{table_name}'.") + except Exception as e: + logging.error(f"FATAL: Failed to recreate table '{table_name}': {e}. Please delete 'market_data.db' and restart.") + sys.exit(1) + else: + self._create_market_cap_table(conn, table_name) + logging.info("All market cap table schemas verified.") + + def _create_market_cap_table(self, conn, table_name): + """Creates a new market cap table with the correct schema.""" + conn.execute(f''' + CREATE TABLE IF NOT EXISTS "{table_name}" ( + datetime_utc TEXT, + timestamp_ms INTEGER PRIMARY KEY, + market_cap REAL + ) + ''') + + def _load_coin_id_map(self) -> dict: + """Loads the dynamically generated coin-to-id mapping.""" + map_file_path = os.path.join("_data", "coin_id_map.json") + try: + with open(map_file_path, 'r') as f: + return json.load(f) + except (FileNotFoundError, json.JSONDecodeError) as e: + logging.error(f"Could not load '{map_file_path}'. Please run 'update_coin_map.py' first. Error: {e}") + return {} + + def _upsert_market_cap_data(self, conn, table_name: str, df: pd.DataFrame): + """Upserts a DataFrame of market cap data into the specified table.""" + if df.empty: + return + + records_to_upsert = [] + for index, row in df.iterrows(): + records_to_upsert.append(( + row['datetime_utc'].strftime('%Y-%m-%d %H:%M:%S'), + row['timestamp_ms'], + row['market_cap'] + )) + + cursor = conn.cursor() + cursor.executemany(f''' + INSERT OR REPLACE INTO "{table_name}" (datetime_utc, timestamp_ms, market_cap) + VALUES (?, ?, ?) + ''', records_to_upsert) + conn.commit() + logging.info(f"Successfully upserted {len(records_to_upsert)} records into '{table_name}'.") def run(self): """ @@ -58,7 +117,6 @@ class MarketCapFetcher: with sqlite3.connect(self.db_path) as conn: conn.execute("PRAGMA journal_mode=WAL;") - # 1. Process individual coins for coin_symbol in self.coins_to_fetch: coin_id = self.COIN_ID_MAP.get(coin_symbol.upper()) if not coin_id: @@ -71,30 +129,21 @@ class MarketCapFetcher: logging.error(f"An unexpected error occurred while processing {coin_symbol}: {e}") time.sleep(2) - # 2. Process and aggregate stablecoins self._update_stablecoin_aggregate(conn) - - # 3. Process total market cap metrics self._update_total_market_cap(conn) - - # 4. Save a summary of the latest data self._save_summary(conn) logging.info("--- Market cap fetch process complete ---") def _save_summary(self, conn): - """ - Queries the last record from each market cap table and saves a summary to a JSON file. - """ + # ... (This function is unchanged) logging.info("--- Generating Market Cap Summary ---") summary_data = {} summary_file_path = os.path.join("_data", "market_cap_data.json") - try: cursor = conn.cursor() cursor.execute("SELECT name FROM sqlite_master WHERE type='table' AND (name LIKE '%_market_cap' OR name LIKE 'TOTAL_%');") tables = [row[0] for row in cursor.fetchall()] - for table_name in tables: try: df_last = pd.read_sql(f'SELECT * FROM "{table_name}" ORDER BY datetime_utc DESC LIMIT 1', conn) @@ -102,40 +151,24 @@ class MarketCapFetcher: summary_data[table_name] = df_last.to_dict('records')[0] except Exception as e: logging.error(f"Could not read last record from table '{table_name}': {e}") - if summary_data: summary_data['summary_last_updated_utc'] = datetime.now(timezone.utc).isoformat() - with open(summary_file_path, 'w', encoding='utf-8') as f: json.dump(summary_data, f, indent=4) logging.info(f"Successfully saved market cap summary to '{summary_file_path}'") else: logging.warning("No data found to create a summary.") - except Exception as e: logging.error(f"Failed to generate summary: {e}") def _update_total_market_cap(self, conn): - """ - Fetches the current total market cap and saves it for the current date. - """ + """Fetches the current total market cap and upserts it for the current date.""" logging.info("--- Processing Total Market Cap ---") table_name = "TOTAL_market_cap_daily" - try: - # --- FIX: Use the current date instead of yesterday's --- today_date = datetime.now(timezone.utc).date() - - cursor = conn.cursor() - cursor.execute(f"SELECT name FROM sqlite_master WHERE type='table' AND name='{table_name}';") - table_exists = cursor.fetchone() - - if table_exists: - # Check if we already have a record for today - cursor.execute(f"SELECT 1 FROM \"{table_name}\" WHERE date(datetime_utc) = ? LIMIT 1", (today_date.isoformat(),)) - if cursor.fetchone(): - logging.info(f"Total market cap for {today_date} already exists. Skipping.") - return + today_dt = pd.to_datetime(today_date) + today_ts = int(today_dt.timestamp() * 1000) logging.info("Fetching current global market data...") url = f"{self.api_base_url}/global" @@ -147,10 +180,11 @@ class MarketCapFetcher: if total_mc: df_total = pd.DataFrame([{ - 'datetime_utc': pd.to_datetime(today_date), + 'datetime_utc': today_dt, + 'timestamp_ms': today_ts, 'market_cap': total_mc }]) - df_total.to_sql(table_name, conn, if_exists='append', index=False) + self._upsert_market_cap_data(conn, table_name, df_total) logging.info(f"Saved total market cap for {today_date}: ${total_mc:,.2f}") except requests.exceptions.RequestException as e: @@ -158,7 +192,6 @@ class MarketCapFetcher: except Exception as e: logging.error(f"An error occurred while updating total market cap: {e}") - def _update_stablecoin_aggregate(self, conn): """Fetches data for all stablecoins and saves the aggregated market cap.""" logging.info("--- Processing aggregated stablecoin market cap ---") @@ -168,7 +201,6 @@ class MarketCapFetcher: logging.info(f"Fetching historical data for stablecoin: {symbol}...") df = self._fetch_historical_data(coin_id, days=365) if not df.empty: - df['coin'] = symbol all_stablecoin_df = pd.concat([all_stablecoin_df, df]) time.sleep(2) @@ -176,31 +208,30 @@ class MarketCapFetcher: logging.warning("No data fetched for any stablecoins. Cannot create aggregate.") return - aggregated_df = all_stablecoin_df.groupby(all_stablecoin_df['datetime_utc'].dt.date)['market_cap'].sum().reset_index() - aggregated_df['datetime_utc'] = pd.to_datetime(aggregated_df['datetime_utc']) + aggregated_df = all_stablecoin_df.groupby('timestamp_ms').agg( + datetime_utc=('datetime_utc', 'first'), + market_cap=('market_cap', 'sum') + ).reset_index() table_name = "STABLECOINS_market_cap" - last_date_in_db = self._get_last_date_from_db(table_name, conn) + last_date_in_db = self._get_last_date_from_db(table_name, conn, is_timestamp_ms=True) if last_date_in_db: - aggregated_df = aggregated_df[aggregated_df['datetime_utc'] > last_date_in_db] + aggregated_df = aggregated_df[aggregated_df['timestamp_ms'] > last_date_in_db] if not aggregated_df.empty: - aggregated_df.to_sql(table_name, conn, if_exists='append', index=False) - logging.info(f"Successfully saved {len(aggregated_df)} daily records to '{table_name}'.") + self._upsert_market_cap_data(conn, table_name, aggregated_df) else: logging.info("Aggregated stablecoin data is already up-to-date.") - def _update_market_cap_for_coin(self, coin_id: str, coin_symbol: str, conn): """Fetches and appends new market cap data for a single coin.""" table_name = f"{coin_symbol}_market_cap" - - last_date_in_db = self._get_last_date_from_db(table_name, conn) + last_date_in_db = self._get_last_date_from_db(table_name, conn, is_timestamp_ms=True) days_to_fetch = 365 if last_date_in_db: - delta_days = (datetime.now() - last_date_in_db).days + delta_days = (datetime.now(timezone.utc) - datetime.fromtimestamp(last_date_in_db/1000, tz=timezone.utc)).days if delta_days <= 0: logging.info(f"Market cap data for '{coin_symbol}' is already up-to-date.") return @@ -215,24 +246,30 @@ class MarketCapFetcher: return if last_date_in_db: - df = df[df['datetime_utc'] > last_date_in_db] + df = df[df['timestamp_ms'] > last_date_in_db] if not df.empty: - df.to_sql(table_name, conn, if_exists='append', index=False) - logging.info(f"Successfully saved {len(df)} new daily market cap records for {coin_symbol}.") + self._upsert_market_cap_data(conn, table_name, df) else: logging.info(f"Data was fetched, but no new records needed saving for '{coin_symbol}'.") - def _get_last_date_from_db(self, table_name: str, conn) -> pd.Timestamp: - """Gets the most recent date from a market cap table as a pandas Timestamp.""" + def _get_last_date_from_db(self, table_name: str, conn, is_timestamp_ms: bool = False): + """Gets the most recent date or timestamp from a market cap table.""" try: cursor = conn.cursor() cursor.execute(f"SELECT name FROM sqlite_master WHERE type='table' AND name='{table_name}';") if not cursor.fetchone(): return None + + col_to_query = "timestamp_ms" if is_timestamp_ms else "datetime_utc" + last_val = pd.read_sql(f'SELECT MAX({col_to_query}) FROM "{table_name}"', conn).iloc[0, 0] + + if pd.isna(last_val): + return None + if is_timestamp_ms: + return int(last_val) + return pd.to_datetime(last_val) - last_date_str = pd.read_sql(f'SELECT MAX(datetime_utc) FROM "{table_name}"', conn).iloc[0, 0] - return pd.to_datetime(last_date_str) if last_date_str else None except Exception as e: logging.error(f"Could not read last date from table '{table_name}': {e}") return None @@ -245,7 +282,7 @@ class MarketCapFetcher: try: logging.debug(f"Fetching last {days} days for {coin_id}...") - response = requests.get(url, headers=headers) + response = requests.get(url, headers=headers, params=params) response.raise_for_status() data = response.json() @@ -253,9 +290,16 @@ class MarketCapFetcher: if not market_caps: return pd.DataFrame() df = pd.DataFrame(market_caps, columns=['timestamp_ms', 'market_cap']) - df['datetime_utc'] = pd.to_datetime(df['timestamp_ms'], unit='ms') - df.drop_duplicates(subset=['datetime_utc'], keep='last', inplace=True) - return df[['datetime_utc', 'market_cap']] + + # --- FIX: Normalize all timestamps to the start of the day (00:00:00 UTC) --- + # This prevents duplicate entries for the same day (e.g., a "live" candle vs. the daily one) + df['datetime_utc'] = pd.to_datetime(df['timestamp_ms'], unit='ms').dt.normalize() + + # Recalculate the timestamp_ms to match the normalized 00:00:00 datetime + df['timestamp_ms'] = (df['datetime_utc'].astype('int64') // 10**6) + + df.drop_duplicates(subset=['timestamp_ms'], keep='last', inplace=True) + return df[['datetime_utc', 'timestamp_ms', 'market_cap']] except requests.exceptions.RequestException as e: logging.error(f"API request failed for {coin_id}: {e}.") @@ -264,12 +308,6 @@ class MarketCapFetcher: if __name__ == "__main__": parser = argparse.ArgumentParser(description="Fetch historical market cap data from CoinGecko.") - parser.add_argument( - "--coins", - nargs='+', - default=["BTC", "ETH", "SOL", "BNB", "HYPE", "ASTER", "ZEC", "PUMP", "SUI"], - help="List of coin symbols to fetch (e.g., BTC ETH)." - ) parser.add_argument( "--log-level", default="normal", @@ -278,6 +316,6 @@ if __name__ == "__main__": ) args = parser.parse_args() - fetcher = MarketCapFetcher(log_level=args.log_level, coins=args.coins) + fetcher = MarketCapFetcher(log_level=args.log_level) fetcher.run() diff --git a/position_logic/__init__.py b/position_logic/__init__.py new file mode 100644 index 0000000..c4127c9 --- /dev/null +++ b/position_logic/__init__.py @@ -0,0 +1,2 @@ +# This file can be empty. +# It tells Python that 'position_logic' is a directory containing modules. diff --git a/position_logic/base_logic.py b/position_logic/base_logic.py new file mode 100644 index 0000000..a6cbe99 --- /dev/null +++ b/position_logic/base_logic.py @@ -0,0 +1,31 @@ +from abc import ABC, abstractmethod +import logging + +class BasePositionLogic(ABC): + """ + Abstract base class for all strategy-specific position logic. + Defines the interface for how the PositionManager interacts with logic modules. + """ + def __init__(self, strategy_name: str, send_order_callback, log_trade_callback): + self.strategy_name = strategy_name + self.send_order = send_order_callback + self.log_trade = log_trade_callback + logging.info(f"Initialized position logic for '{strategy_name}'") + + @abstractmethod + def handle_signal(self, signal_data: dict, current_strategy_positions: dict) -> dict: + """ + The core logic method. This is called by the PositionManager when a + new signal arrives for this strategy. + + Args: + signal_data: The full signal dictionary from the strategy. + current_strategy_positions: A dict of this strategy's current positions, + keyed by coin (e.g., {"BTC": {"side": "long", ...}}). + + Returns: + A dictionary representing the new state for the *specific coin* in the + signal (e.g., {"side": "long", "size": 0.1}). + Return None to indicate the position for this coin should be closed/removed. + """ + pass diff --git a/position_logic/default_flip_logic.py b/position_logic/default_flip_logic.py new file mode 100644 index 0000000..c8dfb9a --- /dev/null +++ b/position_logic/default_flip_logic.py @@ -0,0 +1,83 @@ +import logging +from position_logic.base_logic import BasePositionLogic + +class DefaultFlipLogic(BasePositionLogic): + """ + The standard "flip-on-signal" logic used by most simple strategies + (SMA, MA Cross, and even the per-coin Copy Trader signals). + + - BUY signal: Closes any short, opens a long. + - SELL signal: Closes any long, opens a short. + - FLAT signal: Closes any open position. + """ + def handle_signal(self, signal_data: dict, current_strategy_positions: dict) -> dict: + """ + Processes a BUY, SELL, or FLAT signal and issues the necessary orders + to flip or open a position. + """ + name = self.strategy_name + params = signal_data['config']['parameters'] + coin = signal_data['coin'] + desired_signal = signal_data['signal'] + signal_price = signal_data.get('signal_price', 0) + + size = params.get('size') + leverage_long = int(params.get('leverage_long', 2)) + leverage_short = int(params.get('leverage_short', 2)) + agent_name = signal_data['config'].get("agent", "default").lower() + + # --- This logic now correctly targets a specific coin --- + current_position = current_strategy_positions.get(coin) + new_position_state = None # Return None to close position + + if desired_signal == "BUY" or desired_signal == "INIT_BUY": + new_position_state = {"coin": coin, "side": "long", "size": size} + + if not current_position: + logging.warning(f"[{name}]-[{coin}] ACTION: Setting leverage to {leverage_long}x and opening LONG.") + self.send_order(agent_name, "update_leverage", coin, is_buy=True, size=leverage_long) + self.send_order(agent_name, "market_open", coin, is_buy=True, size=size) + self.log_trade(strategy=name, coin=coin, action="OPEN_LONG", price=signal_price, size=size, signal=desired_signal) + + elif current_position['side'] == 'short': + logging.warning(f"[{name}]-[{coin}] ACTION: Closing SHORT and opening LONG with {leverage_long}x leverage.") + self.send_order(agent_name, "update_leverage", coin, is_buy=True, size=leverage_long) + self.send_order(agent_name, "market_open", coin, is_buy=True, size=current_position['size'], reduce_only=True) + self.log_trade(strategy=name, coin=coin, action="CLOSE_SHORT", price=signal_price, size=current_position['size'], signal=desired_signal) + self.send_order(agent_name, "market_open", coin, is_buy=True, size=size) + self.log_trade(strategy=name, coin=coin, action="OPEN_LONG", price=signal_price, size=size, signal=desired_signal) + + else: # Already long, do nothing + logging.info(f"[{name}]-[{coin}] INFO: Already LONG, no action taken.") + new_position_state = current_position # State is unchanged + + elif desired_signal == "SELL" or desired_signal == "INIT_SELL": + new_position_state = {"coin": coin, "side": "short", "size": size} + + if not current_position: + logging.warning(f"[{name}]-[{coin}] ACTION: Setting leverage to {leverage_short}x and opening SHORT.") + self.send_order(agent_name, "update_leverage", coin, is_buy=False, size=leverage_short) + self.send_order(agent_name, "market_open", coin, is_buy=False, size=size) + self.log_trade(strategy=name, coin=coin, action="OPEN_SHORT", price=signal_price, size=size, signal=desired_signal) + + elif current_position['side'] == 'long': + logging.warning(f"[{name}]-[{coin}] ACTION: Closing LONG and opening SHORT with {leverage_short}x leverage.") + self.send_order(agent_name, "update_leverage", coin, is_buy=False, size=leverage_short) + self.send_order(agent_name, "market_open", coin, is_buy=False, size=current_position['size'], reduce_only=True) + self.log_trade(strategy=name, coin=coin, action="CLOSE_LONG", price=signal_price, size=current_position['size'], signal=desired_signal) + self.send_order(agent_name, "market_open", coin, is_buy=False, size=size) + self.log_trade(strategy=name, coin=coin, action="OPEN_SHORT", price=signal_price, size=size, signal=desired_signal) + + else: # Already short, do nothing + logging.info(f"[{name}]-[{coin}] INFO: Already SHORT, no action taken.") + new_position_state = current_position # State is unchanged + + elif desired_signal == "FLAT": + if current_position: + logging.warning(f"[{name}]-[{coin}] ACTION: Close {current_position['side']} position.") + is_buy = current_position['side'] == 'short' # To close a short, we buy + self.send_order(agent_name, "market_open", coin, is_buy=is_buy, size=current_position['size'], reduce_only=True) + self.log_trade(strategy=name, coin=coin, action=f"CLOSE_{current_position['side'].upper()}", price=signal_price, size=current_position['size'], signal=desired_signal) + # new_position_state is already None, which will remove it + + return new_position_state diff --git a/position_manager.py b/position_manager.py new file mode 100644 index 0000000..c355c29 --- /dev/null +++ b/position_manager.py @@ -0,0 +1,170 @@ +import logging +import os +import sys +import json +import time +import multiprocessing +import numpy as np # Import numpy to handle np.float64 + +from logging_utils import setup_logging +from trade_log import log_trade + +class PositionManager: + """ + (Stateless) Listens for EXPLICIT signals (e.g., "OPEN_LONG") from all + strategies and converts them into specific execution orders + (e.g., "market_open") for the TradeExecutor. + + It holds NO position state. + """ + + def __init__(self, log_level: str, trade_signal_queue: multiprocessing.Queue, order_execution_queue: multiprocessing.Queue): + # Note: Logging is set up by the run_position_manager function + + self.trade_signal_queue = trade_signal_queue + self.order_execution_queue = order_execution_queue + + # --- REMOVED: All state management --- + + logging.info("Position Manager (Stateless) started.") + + # --- REMOVED: _load_managed_positions method --- + # --- REMOVED: _save_managed_positions method --- + # --- REMOVED: All tick/rounding/meta logic --- + + def send_order(self, agent: str, action: str, coin: str, is_buy: bool, size: float, reduce_only: bool = False, limit_px=None, sl_px=None, tp_px=None): + """Helper function to put a standardized order onto the execution queue.""" + order_data = { + "agent": agent, + "action": action, + "coin": coin, + "is_buy": is_buy, + "size": size, + "reduce_only": reduce_only, + "limit_px": limit_px, + "sl_px": sl_px, + "tp_px": tp_px, + } + logging.info(f"Sending order to executor: {order_data}") + self.order_execution_queue.put(order_data) + + def run(self): + """ + Main execution loop. Blocks and waits for a signal from the queue. + Converts explicit strategy signals into execution orders. + """ + logging.info("Position Manager started. Waiting for signals...") + while True: + try: + trade_signal = self.trade_signal_queue.get() + if not trade_signal: + continue + + logging.info(f"Received signal: {trade_signal}") + + name = trade_signal['strategy_name'] + config = trade_signal['config'] + params = config['parameters'] + coin = trade_signal['coin'].upper() + + # --- NEW: The signal is now the explicit action --- + desired_signal = trade_signal['signal'] + + status = trade_signal + + signal_price = status.get('signal_price') + if isinstance(signal_price, np.float64): + signal_price = float(signal_price) + + if not signal_price or signal_price <= 0: + logging.warning(f"[{name}] Signal received with invalid or missing price ({signal_price}). Skipping.") + continue + + # --- This logic is still needed for copy_trader's nested config --- + # --- But ONLY for finding leverage, not size --- + if 'coins_to_copy' in params: + logging.info(f"[{name}] Detected 'coins_to_copy'. Entering copy_trader logic...") + matching_coin_key = None + for key in params['coins_to_copy'].keys(): + if key.upper() == coin: + matching_coin_key = key + break + + if matching_coin_key: + coin_specific_config = params['coins_to_copy'][matching_coin_key] + else: + coin_specific_config = {} + + # --- REMOVED: size = coin_specific_config.get('size') --- + + params['leverage_long'] = coin_specific_config.get('leverage_long', 2) + params['leverage_short'] = coin_specific_config.get('leverage_short', 2) + + # --- FIX: Read the size from the ROOT of the trade signal --- + size = trade_signal.get('size') + if not size or size <= 0: + logging.error(f"[{name}] Signal received with no 'size' or invalid size ({size}). Skipping trade.") + continue + # --- END FIX --- + + leverage_long = int(params.get('leverage_long', 2)) + leverage_short = int(params.get('leverage_short', 2)) + + agent_name = (config.get("agent") or "default").lower() + + logging.info(f"[{name}] Agent set to: {agent_name}") + + # --- REMOVED: current_position check --- + + # --- Use pure signal_price directly for the limit_px --- + limit_px = signal_price + logging.info(f"[{name}] Using pure signal price for limit_px: {limit_px}") + + # --- NEW: Stateless Signal-to-Order Conversion --- + + if desired_signal == "OPEN_LONG": + logging.warning(f"[{name}] ACTION: Opening LONG for {coin}.") + # --- REMOVED: Leverage update signal --- + self.send_order(agent_name, "market_open", coin, True, size, limit_px=limit_px) + log_trade(strategy=name, coin=coin, action="OPEN_LONG", price=signal_price, size=size, signal=desired_signal) + + elif desired_signal == "OPEN_SHORT": + logging.warning(f"[{name}] ACTION: Opening SHORT for {coin}.") + # --- REMOVED: Leverage update signal --- + self.send_order(agent_name, "market_open", coin, False, size, limit_px=limit_px) + log_trade(strategy=name, coin=coin, action="OPEN_SHORT", price=signal_price, size=size, signal=desired_signal) + + elif desired_signal == "CLOSE_LONG": + logging.warning(f"[{name}] ACTION: Closing LONG position for {coin}.") + # A "market_close" for a LONG is a SELL order + self.send_order(agent_name, "market_close", coin, False, size, limit_px=limit_px) + log_trade(strategy=name, coin=coin, action="CLOSE_LONG", price=signal_price, size=size, signal=desired_signal) + + elif desired_signal == "CLOSE_SHORT": + logging.warning(f"[{name}] ACTION: Closing SHORT position for {coin}.") + # A "market_close" for a SHORT is a BUY order + self.send_order(agent_name, "market_close", coin, True, size, limit_px=limit_px) + log_trade(strategy=name, coin=coin, action="CLOSE_SHORT", price=signal_price, size=size, signal=desired_signal) + + # --- NEW: Handle leverage update signals --- + elif desired_signal == "UPDATE_LEVERAGE_LONG": + logging.warning(f"[{name}] ACTION: Updating LONG leverage for {coin} to {size}x") + # 'size' field holds the leverage value for this signal + self.send_order(agent_name, "update_leverage", coin, True, size) + + elif desired_signal == "UPDATE_LEVERAGE_SHORT": + logging.warning(f"[{name}] ACTION: Updating SHORT leverage for {coin} to {size}x") + # 'size' field holds the leverage value for this signal + self.send_order(agent_name, "update_leverage", coin, False, size) + + else: + logging.warning(f"[{name}] Received unknown signal '{desired_signal}'. No action taken.") + + # --- REMOVED: _save_managed_positions() --- + + except Exception as e: + logging.error(f"An error occurred in the position manager loop: {e}", exc_info=True) + time.sleep(1) + +# This script is no longer run directly, but is called by main_app.py + diff --git a/position_monitor.py b/position_monitor.py new file mode 100644 index 0000000..e20ec5d --- /dev/null +++ b/position_monitor.py @@ -0,0 +1,159 @@ +import os +import sys +import time +import json +import argparse +from datetime import datetime, timezone +from hyperliquid.info import Info +from hyperliquid.utils import constants +from dotenv import load_dotenv +import logging + +from logging_utils import setup_logging + +# Load .env file +load_dotenv() + +class PositionMonitor: + """ + A standalone, read-only dashboard for monitoring all open perpetuals + positions, spot balances, and their associated strategies. + """ + + def __init__(self, log_level: str): + setup_logging(log_level, 'PositionMonitor') + + self.wallet_address = os.environ.get("MAIN_WALLET_ADDRESS") + if not self.wallet_address: + logging.error("MAIN_WALLET_ADDRESS not set in .env file. Cannot proceed.") + sys.exit(1) + + self.info = Info(constants.MAINNET_API_URL, skip_ws=True) + self.managed_positions_path = os.path.join("_data", "executor_managed_positions.json") + self._lines_printed = 0 + + logging.info(f"Monitoring vault address: {self.wallet_address}") + + def load_managed_positions(self) -> dict: + """Loads the state of which strategy manages which position.""" + if os.path.exists(self.managed_positions_path): + try: + with open(self.managed_positions_path, 'r') as f: + # Create a reverse map: {coin: strategy_name} + data = json.load(f) + return {v['coin']: k for k, v in data.items()} + except (IOError, json.JSONDecodeError): + logging.warning("Could not read managed positions file.") + return {} + + def run(self): + """Main loop to continuously refresh the dashboard.""" + try: + while True: + self.display_dashboard() + time.sleep(5) # Refresh every 5 seconds + except KeyboardInterrupt: + logging.info("Position monitor stopped.") + + def display_dashboard(self): + """Fetches all data and draws the dashboard without blinking.""" + if self._lines_printed > 0: + print(f"\x1b[{self._lines_printed}A", end="") + + output_lines = [] + try: + perp_state = self.info.user_state(self.wallet_address) + spot_state = self.info.spot_user_state(self.wallet_address) + coin_to_strategy_map = self.load_managed_positions() + + output_lines.append(f"--- Live Position Monitor for {self.wallet_address[:6]}...{self.wallet_address[-4:]} ---") + + # --- 1. Perpetuals Account Summary --- + margin_summary = perp_state.get('marginSummary', {}) + account_value = float(margin_summary.get('accountValue', 0)) + margin_used = float(margin_summary.get('totalMarginUsed', 0)) + utilization = (margin_used / account_value) * 100 if account_value > 0 else 0 + + output_lines.append("\n--- Perpetuals Account Summary ---") + output_lines.append(f" Account Value: ${account_value:,.2f} | Margin Used: ${margin_used:,.2f} | Utilization: {utilization:.2f}%") + + # --- 2. Spot Balances Summary --- + output_lines.append("\n--- Spot Balances ---") + spot_balances = spot_state.get('balances', []) + if not spot_balances: + output_lines.append(" No spot balances found.") + else: + balances_str = ", ".join([f"{b.get('coin')}: {float(b.get('total', 0)):,.4f}" for b in spot_balances if float(b.get('total', 0)) > 0]) + output_lines.append(f" {balances_str}") + + # --- 3. Open Positions Table --- + output_lines.append("\n--- Open Perpetual Positions ---") + positions = perp_state.get('assetPositions', []) + open_positions = [p for p in positions if p.get('position') and float(p['position'].get('szi', 0)) != 0] + + if not open_positions: + output_lines.append(" No open perpetual positions found.") + output_lines.append("") # Add a line for stable refresh + else: + self.build_positions_table(open_positions, coin_to_strategy_map, output_lines) + + except Exception as e: + output_lines = [f"An error occurred: {e}"] + + final_output = "\n".join(output_lines) + "\n\x1b[J" # \x1b[J clears to end of screen + print(final_output, end="") + + self._lines_printed = len(output_lines) + sys.stdout.flush() + + def build_positions_table(self, positions: list, coin_to_strategy_map: dict, output_lines: list): + """Builds the text for the positions summary table.""" + header = f"| {'Strategy':<25} | {'Coin':<6} | {'Side':<5} | {'Size':>15} | {'Entry Price':>12} | {'Mark Price':>12} | {'PNL':>15} | {'Leverage':>10} |" + output_lines.append(header) + output_lines.append("-" * len(header)) + + for position in positions: + pos = position.get('position', {}) + coin = pos.get('coin', 'Unknown') + size = float(pos.get('szi', 0)) + entry_px = float(pos.get('entryPx', 0)) + mark_px = float(pos.get('markPx', 0)) + unrealized_pnl = float(pos.get('unrealizedPnl', 0)) + + # Get leverage + position_value = float(pos.get('positionValue', 0)) + margin_used = float(pos.get('marginUsed', 0)) + leverage = (position_value / margin_used) if margin_used > 0 else 0 + + side_text = "LONG" if size > 0 else "SHORT" + pnl_sign = "+" if unrealized_pnl >= 0 else "" + + # Find the strategy that owns this coin + strategy_name = coin_to_strategy_map.get(coin, "Unmanaged") + + # Format all values as strings + strategy_str = f"{strategy_name:<25}" + coin_str = f"{coin:<6}" + side_str = f"{side_text:<5}" + size_str = f"{size:>15.4f}" + entry_str = f"${entry_px:>11,.2f}" + mark_str = f"${mark_px:>11,.2f}" + pnl_str = f"{pnl_sign}${unrealized_pnl:>14,.2f}" + lev_str = f"{leverage:>9.1f}x" + + output_lines.append(f"| {strategy_str} | {coin_str} | {side_str} | {size_str} | {entry_str} | {mark_str} | {pnl_str} | {lev_str} |") + + output_lines.append("-" * len(header)) + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Monitor a Hyperliquid wallet's positions in real-time.") + parser.add_argument( + "--log-level", + default="normal", + choices=['off', 'normal', 'debug'], + help="Set the logging level for the script." + ) + args = parser.parse_args() + + monitor = PositionMonitor(log_level=args.log_level) + monitor.run() diff --git a/resampler.py b/resampler.py index 09fec2d..ffbeb59 100644 --- a/resampler.py +++ b/resampler.py @@ -5,7 +5,7 @@ import sys import sqlite3 import pandas as pd import json -from datetime import datetime, timezone +from datetime import datetime, timezone, timedelta # Assuming logging_utils.py is in the same directory from logging_utils import setup_logging @@ -13,7 +13,8 @@ from logging_utils import setup_logging class Resampler: """ Reads new 1-minute candle data from the SQLite database, resamples it to - various timeframes, and appends the new candles to the corresponding tables. + various timeframes, and upserts the new candles to the corresponding tables, + preventing data duplication. """ def __init__(self, log_level: str, coins: list, timeframes: dict): @@ -32,6 +33,62 @@ class Resampler: } self.resampling_status = self._load_existing_status() self.job_start_time = None + self._ensure_tables_exist() + + def _ensure_tables_exist(self): + """ + Ensures all resampled tables exist with a PRIMARY KEY on timestamp_ms. + Attempts to migrate existing tables if the schema is incorrect. + """ + with sqlite3.connect(self.db_path) as conn: + for coin in self.coins_to_process: + for tf_name in self.timeframes.keys(): + table_name = f"{coin}_{tf_name}" + cursor = conn.cursor() + cursor.execute(f"PRAGMA table_info('{table_name}')") + columns = cursor.fetchall() + if columns: + # --- FIX: Check for the correct PRIMARY KEY on timestamp_ms --- + pk_found = any(col[1] == 'timestamp_ms' and col[5] == 1 for col in columns) + if not pk_found: + logging.warning(f"Schema migration needed for table '{table_name}'.") + try: + conn.execute(f'ALTER TABLE "{table_name}" RENAME TO "{table_name}_old"') + self._create_resampled_table(conn, table_name) + # Copy data, ensuring to create the timestamp_ms + logging.info(f" -> Migrating data for '{table_name}'...") + old_df = pd.read_sql(f'SELECT * FROM "{table_name}_old"', conn, parse_dates=['datetime_utc']) + if not old_df.empty: + old_df['timestamp_ms'] = (old_df['datetime_utc'].astype('int64') // 10**6) + # Keep only unique timestamps, preserving the last entry + old_df.drop_duplicates(subset=['timestamp_ms'], keep='last', inplace=True) + old_df.to_sql(table_name, conn, if_exists='append', index=False) + logging.info(f" -> Data migration complete.") + conn.execute(f'DROP TABLE "{table_name}_old"') + conn.commit() + logging.info(f"Successfully migrated schema for '{table_name}'.") + except Exception as e: + logging.error(f"FATAL: Migration for '{table_name}' failed: {e}. Please delete 'market_data.db' and restart.") + sys.exit(1) + else: + self._create_resampled_table(conn, table_name) + logging.info("All resampled table schemas verified.") + + def _create_resampled_table(self, conn, table_name): + """Creates a new resampled table with the correct schema.""" + # --- FIX: Set PRIMARY KEY on timestamp_ms for performance and uniqueness --- + conn.execute(f''' + CREATE TABLE "{table_name}" ( + datetime_utc TEXT, + timestamp_ms INTEGER PRIMARY KEY, + open REAL, + high REAL, + low REAL, + close REAL, + volume REAL, + number_of_trades INTEGER + ) + ''') def _load_existing_status(self) -> dict: """Loads the existing status file if it exists, otherwise returns an empty dict.""" @@ -51,6 +108,14 @@ class Resampler: self.job_start_time = datetime.now(timezone.utc) logging.info(f"--- Resampling job started at {self.job_start_time.strftime('%Y-%m-%d %H:%M:%S %Z')} ---") + if '1m' in self.timeframes: + logging.debug("Ignoring '1m' timeframe as it is the source resolution.") + del self.timeframes['1m'] + + if not self.timeframes: + logging.warning("No timeframes to process after filtering. Exiting job.") + return + if not os.path.exists(self.db_path): logging.error(f"Database file '{self.db_path}' not found.") return @@ -61,37 +126,58 @@ class Resampler: logging.debug(f"Processing {len(self.coins_to_process)} coins...") for coin in self.coins_to_process: - source_table_name = f"{coin}_1m" logging.debug(f"--- Processing {coin} ---") try: - # Load the full 1m history once per coin - df_1m = pd.read_sql(f'SELECT * FROM "{source_table_name}"', conn, parse_dates=['datetime_utc']) - if df_1m.empty: - logging.warning(f"Source table '{source_table_name}' is empty. Skipping.") - continue - df_1m.set_index('datetime_utc', inplace=True) - for tf_name, tf_code in self.timeframes.items(): target_table_name = f"{coin}_{tf_name}" + source_table_name = f"{coin}_1m" logging.debug(f" Updating {tf_name} table...") - last_timestamp = self._get_last_timestamp(conn, target_table_name) + last_timestamp_ms = self._get_last_timestamp(conn, target_table_name) - # Get the new 1-minute data that needs to be processed - new_df_1m = df_1m[df_1m.index > last_timestamp] if last_timestamp else df_1m + query = f'SELECT * FROM "{source_table_name}"' + params = () + if last_timestamp_ms: + query += ' WHERE timestamp_ms >= ?' + # Go back one interval to rebuild the last (potentially partial) candle + try: + interval_delta_ms = pd.to_timedelta(tf_code).total_seconds() * 1000 + except ValueError: + # Fall back to a safe 32-day lookback for special timeframes + interval_delta_ms = timedelta(days=32).total_seconds() * 1000 + + query_start_ms = last_timestamp_ms - interval_delta_ms + params = (query_start_ms,) - if new_df_1m.empty: + df_1m = pd.read_sql(query, conn, params=params, parse_dates=['datetime_utc']) + + if df_1m.empty: logging.debug(f" -> No new 1-minute data for {tf_name}. Table is up to date.") continue - resampled_df = new_df_1m.resample(tf_code).agg(self.aggregation_logic) + df_1m.set_index('datetime_utc', inplace=True) + resampled_df = df_1m.resample(tf_code).agg(self.aggregation_logic) resampled_df.dropna(how='all', inplace=True) if not resampled_df.empty: - # Append the newly resampled data to the target table - resampled_df.to_sql(target_table_name, conn, if_exists='append', index=True) - logging.debug(f" -> Appended {len(resampled_df)} new candles to '{target_table_name}'.") + records_to_upsert = [] + for index, row in resampled_df.iterrows(): + records_to_upsert.append(( + index.strftime('%Y-%m-%d %H:%M:%S'), + int(index.timestamp() * 1000), # Generate timestamp_ms + row['open'], row['high'], row['low'], row['close'], + row['volume'], row['number_of_trades'] + )) + + cursor = conn.cursor() + cursor.executemany(f''' + INSERT OR REPLACE INTO "{target_table_name}" (datetime_utc, timestamp_ms, open, high, low, close, volume, number_of_trades) + VALUES (?, ?, ?, ?, ?, ?, ?, ?) + ''', records_to_upsert) + conn.commit() + + logging.debug(f" -> Upserted {len(resampled_df)} candles into '{target_table_name}'.") if coin not in self.resampling_status: self.resampling_status[coin] = {} total_candles = int(self._get_table_count(conn, target_table_name)) @@ -111,7 +197,6 @@ class Resampler: """Logs a summary of the total candles for each timeframe.""" logging.info("--- Resampling Job Summary ---") timeframe_totals = {} - # Iterate through coins, skipping metadata keys for coin, tfs in self.resampling_status.items(): if not isinstance(tfs, dict): continue for tf_name, tf_data in tfs.items(): @@ -129,9 +214,11 @@ class Resampler: logging.info(f" - {tf_name:<10}: {total:,} candles") def _get_last_timestamp(self, conn, table_name): - """Gets the timestamp of the last entry in a table.""" + """Gets the millisecond timestamp of the last entry in a table.""" try: - return pd.read_sql(f'SELECT MAX(datetime_utc) FROM "{table_name}"', conn).iloc[0, 0] + # --- FIX: Query for the integer timestamp_ms, not the text datetime_utc --- + timestamp_ms = pd.read_sql(f'SELECT MAX(timestamp_ms) FROM "{table_name}"', conn).iloc[0, 0] + return int(timestamp_ms) if pd.notna(timestamp_ms) else None except (pd.io.sql.DatabaseError, IndexError): return None @@ -151,7 +238,6 @@ class Resampler: self.resampling_status['job_start_time_utc'] = self.job_start_time.strftime('%Y-%m-%d %H:%M:%S') self.resampling_status['job_stop_time_utc'] = stop_time.strftime('%Y-%m-%d %H:%M:%S') - # Clean up old key if it exists from previous versions self.resampling_status.pop('last_completed_utc', None) try: @@ -167,14 +253,24 @@ def parse_timeframes(tf_strings: list) -> dict: tf_map = {} for tf_str in tf_strings: numeric_part = ''.join(filter(str.isdigit, tf_str)) - unit = ''.join(filter(str.isalpha, tf_str)).lower() + unit = ''.join(filter(str.isalpha, tf_str)) # Keep case for 'M' + key = tf_str code = '' - if unit == 'm': code = f"{numeric_part}min" - elif unit == 'w': code = f"{numeric_part}W" - elif unit in ['h', 'd']: code = f"{numeric_part}{unit}" - else: code = tf_str - tf_map[tf_str] = code + if unit == 'm': + code = f"{numeric_part}min" + elif unit.lower() == 'w': + code = f"{numeric_part}W-MON" + elif unit == 'M': + code = f"{numeric_part}MS" + key = f"{numeric_part}month" + elif unit.lower() in ['h', 'd']: + code = f"{numeric_part}{unit.lower()}" + else: + code = tf_str + logging.warning(f"Unrecognized timeframe unit in '{tf_str}'. Using as-is.") + + tf_map[key] = code return tf_map diff --git a/review.md b/review.md new file mode 100644 index 0000000..d0fe34c --- /dev/null +++ b/review.md @@ -0,0 +1,79 @@ +# Project Review and Recommendations + +This review provides an analysis of the current state of the automated trading bot project, proposes specific code improvements, and identifies files that appear to be unused or are one-off utilities that could be reorganized. + +The project is a well-structured, multi-process Python application for crypto trading. It has a clear separation of concerns between data fetching, strategy execution, and trade management. The use of `multiprocessing` and a centralized `main_app.py` orchestrator is a solid architectural choice. + +The following sections detail recommendations for improving configuration management, code structure, and robustness, along with a list of files recommended for cleanup. + +--- + +## Proposed Code Changes + +### 1. Centralize Configuration + +- **Issue:** Key configuration variables like `WATCHED_COINS` and `required_timeframes` are hardcoded in `main_app.py`. This makes them difficult to change without modifying the source code. +- **Proposal:** + - Create a central configuration file, e.g., `_data/config.json`. + - Move `WATCHED_COINS` and `required_timeframes` into this new file. + - Load this configuration in `main_app.py` at startup. +- **Benefit:** Decouples configuration from code, making the application more flexible and easier to manage. + +### 2. Refactor `main_app.py` for Clarity + +- **Issue:** `main_app.py` is long and handles multiple responsibilities: process orchestration, dashboard rendering, and data reading. +- **Proposal:** + - **Abstract Process Management:** The functions for running subprocesses (e.g., `run_live_candle_fetcher`, `run_resampler_job`) contain repetitive logic for logging, shutdown handling, and process looping. This could be abstracted into a generic `ProcessRunner` class. + - **Create a Dashboard Class:** The complex dashboard rendering logic could be moved into a separate `Dashboard` class to improve separation of concerns and make the main application loop cleaner. +- **Benefit:** Improves code readability, reduces duplication, and makes the application easier to maintain and extend. + +### 3. Improve Project Structure + +- **Issue:** The root directory is cluttered with numerous Python scripts, making it difficult to distinguish between core application files, utility scripts, and old/example files. +- **Proposal:** + - Create a `scripts/` directory and move all one-off utility and maintenance scripts into it. + - Consider creating a `src/` or `app/` directory to house the core application source code (`main_app.py`, `trade_executor.py`, etc.), separating it clearly from configuration, data, and documentation. +- **Benefit:** A cleaner, more organized project structure that is easier for new developers to understand. + +### 4. Enhance Robustness and Error Handling + +- **Issue:** The agent loading in `trade_executor.py` relies on discovering environment variables by a naming convention (`_AGENT_PK`). This is clever but can be brittle if environment variables are named incorrectly. +- **Proposal:** + - Explicitly define the agent names and their corresponding environment variable keys in the proposed `_data/config.json` file. The `trade_executor` would then load only the agents specified in the configuration. +- **Benefit:** Makes agent configuration more explicit and less prone to errors from stray environment variables. + +--- + +## Identified Unused/Utility Files + +The following files were identified as likely being unused by the core application, being obsolete, or serving as one-off utilities. It is recommended to **move them to a `scripts/` directory** or **delete them** if they are obsolete. + +### Obsolete / Old Versions: +- `data_fetcher_old.py` +- `market_old.py` +- `base_strategy.py` (The one in the root directory; the one in `strategies/` is used). + +### One-Off Utility Scripts (Recommend moving to `scripts/`): +- `!migrate_to_sqlite.py` +- `import_csv.py` +- `del_market_cap_tables.py` +- `fix_timestamps.py` +- `list_coins.py` +- `create_agent.py` + +### Examples / Unused Code: +- `basic_ws.py` (Appears to be an example file). +- `backtester.py` +- `strategy_sma_cross.py` (A strategy file in the root, not in the `strategies` folder). +- `strategy_template.py` + +### Standalone / Potentially Unused Core Files: +The following files seem to have their logic already integrated into the main multi-process application. They might be remnants of a previous architecture and may not be needed as standalone scripts. +- `address_monitor.py` +- `position_monitor.py` +- `trade_log.py` +- `wallet_data.py` +- `whale_tracker.py` + +### Data / Log Files (Recommend archiving or deleting): +- `hyperliquid_wallet_data_*.json` (These appear to be backups or logs). diff --git a/strategies/base_strategy.py b/strategies/base_strategy.py index e40452c..afe3ff6 100644 --- a/strategies/base_strategy.py +++ b/strategies/base_strategy.py @@ -5,36 +5,42 @@ import os import logging from datetime import datetime, timezone import sqlite3 +import multiprocessing +import time + +from logging_utils import setup_logging +from hyperliquid.info import Info +from hyperliquid.utils import constants class BaseStrategy(ABC): """ An abstract base class that defines the blueprint for all trading strategies. - It provides common functionality like loading data and saving status. + It provides common functionality like loading data, saving status, and state management. """ - def __init__(self, strategy_name: str, params: dict, log_level: str): + def __init__(self, strategy_name: str, params: dict, trade_signal_queue: multiprocessing.Queue = None, shared_status: dict = None): self.strategy_name = strategy_name self.params = params + self.trade_signal_queue = trade_signal_queue + # Optional multiprocessing.Manager().dict() to hold live status (avoids file IO) + self.shared_status = shared_status + self.coin = params.get("coin", "N/A") self.timeframe = params.get("timeframe", "N/A") self.db_path = os.path.join("_data", "market_data.db") self.status_file_path = os.path.join("_data", f"strategy_status_{self.strategy_name}.json") - - # --- ADDED: State variables required for status reporting --- + self.current_signal = "INIT" self.last_signal_change_utc = None self.signal_price = None - # This will be set up by the child class after it's initialized - # setup_logging(log_level, f"Strategy-{self.strategy_name}") - # logging.info(f"Initializing with parameters: {self.params}") + # Note: Logging is set up by the run_strategy function def load_data(self) -> pd.DataFrame: """Loads historical data for the configured coin and timeframe.""" table_name = f"{self.coin}_{self.timeframe}" - # Dynamically determine the number of candles needed based on all possible period parameters - periods = [v for k, v in self.params.items() if 'period' in k or '_ma' in k or 'slow' in k] + periods = [v for k, v in self.params.items() if 'period' in k or '_ma' in k or 'slow' in k or 'fast' in k] limit = max(periods) + 50 if periods else 500 try: @@ -51,10 +57,44 @@ class BaseStrategy(ABC): @abstractmethod def calculate_signals(self, df: pd.DataFrame) -> pd.DataFrame: - """ - The core logic of the strategy. Must be implemented by child classes. - """ + """The core logic of the strategy. Must be implemented by child classes.""" pass + + def calculate_signals_and_state(self, df: pd.DataFrame) -> bool: + """ + A wrapper that calls the strategy's signal calculation, determines + the last signal change, and returns True if the signal has changed. + """ + df_with_signals = self.calculate_signals(df) + df_with_signals.dropna(inplace=True) + if df_with_signals.empty: + return False + + df_with_signals['position_change'] = df_with_signals['signal'].diff() + + last_signal_int = df_with_signals['signal'].iloc[-1] + new_signal_str = "HOLD" + if last_signal_int == 1: new_signal_str = "BUY" + elif last_signal_int == -1: new_signal_str = "SELL" + + signal_changed = False + if self.current_signal == "INIT": + if new_signal_str == "BUY": self.current_signal = "INIT_BUY" + elif new_signal_str == "SELL": self.current_signal = "INIT_SELL" + else: self.current_signal = "HOLD" + signal_changed = True + elif new_signal_str != self.current_signal: + self.current_signal = new_signal_str + signal_changed = True + + if signal_changed: + last_change_series = df_with_signals[df_with_signals['position_change'] != 0] + if not last_change_series.empty: + last_change_row = last_change_series.iloc[-1] + self.last_signal_change_utc = last_change_row.name.tz_localize('UTC').isoformat() + self.signal_price = last_change_row['close'] + + return signal_changed def _save_status(self): """Saves the current strategy state to its JSON file.""" @@ -65,9 +105,62 @@ class BaseStrategy(ABC): "signal_price": self.signal_price, "last_checked_utc": datetime.now(timezone.utc).isoformat() } + # If a shared status dict is provided (Manager.dict()), update it instead of writing files try: - with open(self.status_file_path, 'w', encoding='utf-8') as f: - json.dump(status, f, indent=4) + if self.shared_status is not None: + try: + # store the status under the strategy name for easy lookup + self.shared_status[self.strategy_name] = status + except Exception: + # Manager proxies may not accept nested mutable objects consistently; assign a copy + self.shared_status[self.strategy_name] = dict(status) + else: + with open(self.status_file_path, 'w', encoding='utf-8') as f: + json.dump(status, f, indent=4) except IOError as e: logging.error(f"Failed to write status file for {self.strategy_name}: {e}") + def run_polling_loop(self): + """ + The default execution loop for polling-based strategies (e.g., SMAs). + """ + while True: + df = self.load_data() + if df.empty: + logging.warning("No data loaded. Waiting 1 minute...") + time.sleep(60) + continue + + signal_changed = self.calculate_signals_and_state(df.copy()) + self._save_status() + + if signal_changed or self.current_signal == "INIT_BUY" or self.current_signal == "INIT_SELL": + logging.warning(f"New signal detected: {self.current_signal}") + self.trade_signal_queue.put({ + "strategy_name": self.strategy_name, + "signal": self.current_signal, + "coin": self.coin, + "signal_price": self.signal_price, + "config": {"agent": self.params.get("agent"), "parameters": self.params} + }) + if self.current_signal == "INIT_BUY": self.current_signal = "BUY" + if self.current_signal == "INIT_SELL": self.current_signal = "SELL" + + logging.info(f"Current Signal: {self.current_signal}") + time.sleep(60) + + def run_event_loop(self): + """ + A placeholder for event-driven (WebSocket) strategies. + Child classes must override this. + """ + logging.error("run_event_loop() is not implemented for this strategy.") + time.sleep(3600) # Sleep for an hour to prevent rapid error loops + + def on_fill_message(self, message): + """ + Placeholder for the WebSocket callback. + Child classes must override this. + """ + pass + diff --git a/strategies/copy_trader_strategy.py b/strategies/copy_trader_strategy.py new file mode 100644 index 0000000..95443bb --- /dev/null +++ b/strategies/copy_trader_strategy.py @@ -0,0 +1,353 @@ +import logging +import time +import json +import os +from datetime import datetime, timezone +from hyperliquid.info import Info +from hyperliquid.utils import constants + +from strategies.base_strategy import BaseStrategy + +class CopyTraderStrategy(BaseStrategy): + """ + An event-driven strategy that monitors a target wallet address and + copies its trades for a specific set of allowed coins. + + This strategy is STATELESS. It translates a target's fill direction + (e.g., "Open Long") directly into an explicit signal + (e.g., "OPEN_LONG") for the PositionManager. + """ + def __init__(self, strategy_name: str, params: dict, trade_signal_queue, shared_status: dict = None): + # --- MODIFIED: Pass the correct queue to the parent --- + # The event-driven copy trader should send orders to the order_execution_queue + # We will assume the queue passed in is the correct one (as setup in main_app.py) + super().__init__(strategy_name, params, trade_signal_queue, shared_status) + + self.target_address = self.params.get("target_address", "").lower() + self.coins_to_copy = self.params.get("coins_to_copy", {}) + # Convert all coin keys to uppercase for consistency + self.coins_to_copy = {k.upper(): v for k, v in self.coins_to_copy.items()} + self.allowed_coins = list(self.coins_to_copy.keys()) + + if not self.target_address: + logging.error("No 'target_address' specified in parameters for copy trader.") + raise ValueError("target_address is required") + if not self.allowed_coins: + logging.warning("No 'coins_to_copy' configured. This strategy will not copy any trades.") + + self.info = None # Will be initialized in the run loop + + # --- REMOVED: All local state management --- + # self.position_state_file = ... + # self.current_positions = ... + + # --- MODIFIED: Check if shared_status is None before using it --- + if self.shared_status is None: + logging.warning("No shared_status dictionary provided. Initializing a new one.") + self.shared_status = {} + + self.current_signal = self.shared_status.get("current_signal", "WAIT") + self.signal_price = self.shared_status.get("signal_price") + self.last_signal_change_utc = self.shared_status.get("last_signal_change_utc") + + self.start_time_utc = datetime.now(timezone.utc) + logging.info(f"Strategy initialized. Ignoring all trades before {self.start_time_utc.isoformat()}") + + # --- REMOVED: _load_position_state --- + # --- REMOVED: _save_position_state --- + + def calculate_signals(self, df): + # This strategy is event-driven, so it does not use polling-based signal calculation. + pass + + def send_explicit_signal(self, signal: str, coin: str, price: float, trade_params: dict, size: float): + """Helper to send a formatted signal to the PositionManager.""" + config = { + # --- MODIFIED: Ensure agent is read from params --- + "agent": self.params.get("agent"), + "parameters": trade_params + } + + # --- MODIFIED: Use self.trade_signal_queue (which is the queue passed in) --- + self.trade_signal_queue.put({ + "strategy_name": self.strategy_name, + "signal": signal, # e.g., "OPEN_LONG", "CLOSE_SHORT" + "coin": coin, + "signal_price": price, + "config": config, + "size": size # Explicitly pass size (or leverage for leverage updates) + }) + logging.info(f"Explicit signal SENT: {signal} {coin} @ {price}, Size: {size}") + + def on_fill_message(self, message): + """ + This is the callback function that gets triggered by the WebSocket + every time the monitored address has an event. + """ + try: + # --- NEW: Add logging to see ALL messages --- + logging.debug(f"Received WebSocket message: {message}") + + channel = message.get("channel") + if channel not in ("user", "userFills", "userEvents"): + # --- NEW: Added debug logging --- + logging.debug(f"Ignoring message from unhandled channel: {channel}") + return + + data = message.get("data") + if not data: + # --- NEW: Added debug logging --- + logging.debug("Message received with no 'data' field. Ignoring.") + return + + # --- NEW: Check for user address FIRST --- + user_address = data.get("user", "").lower() + if not user_address: + logging.debug("Received message with 'data' but no 'user'. Ignoring.") + return + + # --- MODIFIED: Check for 'fills' vs. other event types --- + # This check is still valid for userFills + if "fills" not in data or not data.get("fills"): + # This is a userEvent, but not a fill (e.g., order placement, cancel, withdrawal) + event_type = data.get("type") # e.g., 'order', 'cancel', 'withdrawal' + if event_type: + logging.debug(f"Received non-fill user event: '{event_type}'. Ignoring.") + else: + logging.debug(f"Received 'data' message with no 'fills'. Ignoring.") + return + + # --- This line is now safe to run --- + if user_address != self.target_address: + # This shouldn't happen if the subscription is correct, but good to check + logging.warning(f"Received fill for wrong user: {user_address}") + return + + fills = data.get("fills") + logging.debug(f"Received {len(fills)} fill(s) for user {user_address}") + + for fill in fills: + # Check if the trade is new or historical + trade_time = datetime.fromtimestamp(fill['time'] / 1000, tz=timezone.utc) + if trade_time < self.start_time_utc: + logging.info(f"Ignoring stale/historical trade from {trade_time.isoformat()}") + continue + + coin = fill.get('coin').upper() + + if coin in self.allowed_coins: + price = float(fill.get('px')) + + # --- MODIFIED: Use the target's fill size --- + fill_size = float(fill.get('sz')) # Target's size + + if fill_size == 0: + logging.warning(f"Ignoring fill with size 0.") + continue + + # --- NEW: Get the fill direction --- + # "dir": "Open Long", "Close Long", "Open Short", "Close Short" + fill_direction = fill.get("dir") + + # --- NEW: Get startPosition to calculate flip sizes --- + start_pos_size = float(fill.get('startPosition', 0.0)) + + if not fill_direction: + logging.warning(f"Fill message missing 'dir'. Ignoring fill: {fill}") + continue + + # Get our strategy's configured leverage for this coin + coin_config = self.coins_to_copy.get(coin) + + # --- REMOVED: Check for coin_config.get("size") --- + # --- REMOVED: strategy_trade_size = coin_config.get("size") --- + + # Prepare config for the signal + trade_params = self.params.copy() + if coin_config: + trade_params.update(coin_config) + + # --- REMOVED: All stateful logic (current_local_pos, etc.) --- + + # --- MODIFIED: Expanded logic to handle flip directions --- + signal_sent = False + dashboard_signal = "" + + if fill_direction == "Open Long": + logging.warning(f"[{coin}] Target action: {fill_direction}. Sending signal: OPEN_LONG") + self.send_explicit_signal("OPEN_LONG", coin, price, trade_params, fill_size) + signal_sent = True + dashboard_signal = "OPEN_LONG" + + elif fill_direction == "Close Long": + logging.warning(f"[{coin}] Target action: {fill_direction}. Sending signal: CLOSE_LONG") + self.send_explicit_signal("CLOSE_LONG", coin, price, trade_params, fill_size) + signal_sent = True + dashboard_signal = "CLOSE_LONG" + + elif fill_direction == "Open Short": + logging.warning(f"[{coin}] Target action: {fill_direction}. Sending signal: OPEN_SHORT") + self.send_explicit_signal("OPEN_SHORT", coin, price, trade_params, fill_size) + signal_sent = True + dashboard_signal = "OPEN_SHORT" + + elif fill_direction == "Close Short": + logging.warning(f"[{coin}] Target action: {fill_direction}. Sending signal: CLOSE_SHORT") + self.send_explicit_signal("CLOSE_SHORT", coin, price, trade_params, fill_size) + signal_sent = True + dashboard_signal = "CLOSE_SHORT" + + elif fill_direction == "Short > Long": + logging.warning(f"[{coin}] Target action: {fill_direction}. Sending CLOSE_SHORT then OPEN_LONG.") + close_size = abs(start_pos_size) + open_size = fill_size - close_size + + if close_size > 0: + self.send_explicit_signal("CLOSE_SHORT", coin, price, trade_params, close_size) + + if open_size > 0: + self.send_explicit_signal("OPEN_LONG", coin, price, trade_params, open_size) + + signal_sent = True + dashboard_signal = "FLIP_TO_LONG" + + elif fill_direction == "Long > Short": + logging.warning(f"[{coin}] Target action: {fill_direction}. Sending CLOSE_LONG then OPEN_SHORT.") + close_size = abs(start_pos_size) + open_size = fill_size - close_size + + if close_size > 0: + self.send_explicit_signal("CLOSE_LONG", coin, price, trade_params, close_size) + + if open_size > 0: + self.send_explicit_signal("OPEN_SHORT", coin, price, trade_params, open_size) + + signal_sent = True + dashboard_signal = "FLIP_TO_SHORT" + + + if signal_sent: + # Update dashboard status + self.current_signal = dashboard_signal # Show the action + self.signal_price = price + self.last_signal_change_utc = trade_time.isoformat() + self.coin = coin # Update coin for dashboard + self.size = fill_size # Update size for dashboard + self._save_status() # For dashboard + + logging.info(f"Source trade logged: {json.dumps(fill)}") + else: + logging.info(f"[{coin}] Ignoring unhandled fill direction: {fill_direction}") + else: + logging.info(f"Ignoring fill for unmonitored coin: {coin}") + + except Exception as e: + logging.error(f"Error in on_fill_message: {e}", exc_info=True) + + def _connect_and_subscribe(self): + """ + Establishes a new WebSocket connection and subscribes to the userFills channel. + """ + try: + logging.info("Connecting to Hyperliquid WebSocket...") + self.info = Info(constants.MAINNET_API_URL, skip_ws=False) + + # --- MODIFIED: Reverted to 'userFills' as requested --- + subscription = {"type": "userFills", "user": self.target_address} + self.info.subscribe(subscription, self.on_fill_message) + logging.info(f"Subscribed to 'userFills' for target address: {self.target_address}") + + return True + except Exception as e: + logging.error(f"Failed to connect or subscribe: {e}") + self.info = None + return False + + def run_event_loop(self): + """ + This method overrides the default polling loop. It establishes a + persistent WebSocket connection and runs a watchdog to ensure + it stays connected. + """ + try: + if not self._connect_and_subscribe(): + # If connection fails on start, wait 60s before letting the process restart + time.sleep(60) + return + + # --- MODIFIED: Add a small delay to ensure Info object is ready for REST calls --- + logging.info("Connection established. Waiting 2 seconds for Info client to be ready...") + time.sleep(2) + # --- END MODIFICATION --- + + # --- NEW: Set initial leverage for all monitored coins --- + logging.info("Setting initial leverage for all monitored coins...") + try: + all_mids = self.info.all_mids() + for coin_key, coin_config in self.coins_to_copy.items(): + coin = coin_key.upper() + # Use a failsafe price of 1.0 if coin not in mids (e.g., new listing) + current_price = float(all_mids.get(coin, 1.0)) + + leverage_long = coin_config.get('leverage_long', 2) + leverage_short = coin_config.get('leverage_short', 2) + + # Prepare config for the signal + trade_params = self.params.copy() + trade_params.update(coin_config) + + # Send LONG leverage update + # The 'size' param is used to pass the leverage value for this signal type + self.send_explicit_signal("UPDATE_LEVERAGE_LONG", coin, current_price, trade_params, leverage_long) + + # Send SHORT leverage update + self.send_explicit_signal("UPDATE_LEVERAGE_SHORT", coin, current_price, trade_params, leverage_short) + + logging.info(f"Sent initial leverage signals for {coin} (Long: {leverage_long}x, Short: {leverage_short}x)") + + except Exception as e: + logging.error(f"Failed to set initial leverage: {e}", exc_info=True) + # --- END NEW LEVERAGE LOGIC --- + + # Save the initial "WAIT" status + self._save_status() + + while True: + try: + time.sleep(15) # Check the connection every 15 seconds + + if self.info is None or not self.info.ws_manager.is_alive(): + logging.error(f"WebSocket connection lost. Attempting to reconnect...") + + if self.info and self.info.ws_manager: + try: + self.info.ws_manager.stop() + except Exception as e: + logging.error(f"Error stopping old ws_manager: {e}") + + if not self._connect_and_subscribe(): + logging.error("Reconnect failed, will retry in 15s.") + else: + logging.info("Successfully reconnected to WebSocket.") + self._save_status() + else: + logging.debug("Watchdog check: WebSocket connection is active.") + + except Exception as e: + logging.error(f"An error occurred in the watchdog loop: {e}", exc_info=True) + + except KeyboardInterrupt: + # --- MODIFIED: No positions to close, just exit --- + logging.warning(f"Shutdown signal received. Exiting strategy '{self.strategy_name}'.") + + except Exception as e: + logging.error(f"An unhandled error occurred in run_event_loop: {e}", exc_info=True) + + finally: + if self.info and self.info.ws_manager and self.info.ws_manager.is_alive(): + try: + self.info.ws_manager.stop() + logging.info("WebSocket connection stopped.") + except Exception as e: + logging.error(f"Error stopping ws_manager on exit: {e}") + diff --git a/strategies/ma_cross_strategy.py b/strategies/ma_cross_strategy.py index 0002375..ff756a2 100644 --- a/strategies/ma_cross_strategy.py +++ b/strategies/ma_cross_strategy.py @@ -7,27 +7,22 @@ class MaCrossStrategy(BaseStrategy): A strategy based on a fast Simple Moving Average (SMA) crossing a slow SMA. """ - def calculate_signals(self, df: pd.DataFrame) -> pd.DataFrame: - # Support multiple naming conventions: some configs use 'fast'/'slow' - # while others use 'short_ma'/'long_ma'. Normalize here so both work. - fast_ma_period = self.params.get('short_ma') or self.params.get('fast') or 0 - slow_ma_period = self.params.get('long_ma') or self.params.get('slow') or 0 - - # If parameters are missing, return a neutral signal frame. - if not fast_ma_period or not slow_ma_period: - logging.warning(f"Missing MA period parameters (fast={fast_ma_period}, slow={slow_ma_period}).") - df['signal'] = 0 - return df + # --- FIX: Changed 3rd argument from log_level to trade_signal_queue --- + def __init__(self, strategy_name: str, params: dict, trade_signal_queue): + # --- FIX: Passed trade_signal_queue to the parent class --- + super().__init__(strategy_name, params, trade_signal_queue) + self.fast_ma_period = self.params.get('short_ma') or self.params.get('fast') or 0 + self.slow_ma_period = self.params.get('long_ma') or self.params.get('slow') or 0 - if len(df) < slow_ma_period: - logging.warning(f"Not enough data for MA periods {fast_ma_period}/{slow_ma_period}. Need {slow_ma_period}, have {len(df)}.") + def calculate_signals(self, df: pd.DataFrame) -> pd.DataFrame: + if not self.fast_ma_period or not self.slow_ma_period or len(df) < self.slow_ma_period: + logging.warning(f"Not enough data for MA periods.") df['signal'] = 0 return df - df['fast_sma'] = df['close'].rolling(window=fast_ma_period).mean() - df['slow_sma'] = df['close'].rolling(window=slow_ma_period).mean() + df['fast_sma'] = df['close'].rolling(window=self.fast_ma_period).mean() + df['slow_sma'] = df['close'].rolling(window=self.slow_ma_period).mean() - # Signal is 1 for Golden Cross (fast > slow), -1 for Death Cross df['signal'] = 0 df.loc[df['fast_sma'] > df['slow_sma'], 'signal'] = 1 df.loc[df['fast_sma'] < df['slow_sma'], 'signal'] = -1 diff --git a/strategies/single_sma_strategy.py b/strategies/single_sma_strategy.py index 52a1d33..a05f95e 100644 --- a/strategies/single_sma_strategy.py +++ b/strategies/single_sma_strategy.py @@ -6,17 +6,20 @@ class SingleSmaStrategy(BaseStrategy): """ A strategy based on the price crossing a single Simple Moving Average (SMA). """ + # --- FIX: Added trade_signal_queue to the constructor --- + def __init__(self, strategy_name: str, params: dict, trade_signal_queue): + # --- FIX: Passed trade_signal_queue to the parent class --- + super().__init__(strategy_name, params, trade_signal_queue) + self.sma_period = self.params.get('sma_period', 0) + def calculate_signals(self, df: pd.DataFrame) -> pd.DataFrame: - sma_period = self.params.get('sma_period', 0) - - if not sma_period or len(df) < sma_period: - logging.warning(f"Not enough data for SMA period {sma_period}. Need {sma_period}, have {len(df)}.") + if not self.sma_period or len(df) < self.sma_period: + logging.warning(f"Not enough data for SMA period {self.sma_period}.") df['signal'] = 0 return df - df['sma'] = df['close'].rolling(window=sma_period).mean() + df['sma'] = df['close'].rolling(window=self.sma_period).mean() - # Signal is 1 when price is above SMA, -1 when below df['signal'] = 0 df.loc[df['close'] > df['sma'], 'signal'] = 1 df.loc[df['close'] < df['sma'], 'signal'] = -1 diff --git a/trade_executor.py b/trade_executor.py index 35ac261..44c6e13 100644 --- a/trade_executor.py +++ b/trade_executor.py @@ -4,7 +4,9 @@ import os import sys import json import time +# --- REVERTED: Removed math import --- from datetime import datetime +import multiprocessing from eth_account import Account from hyperliquid.exchange import Exchange @@ -13,20 +15,20 @@ from hyperliquid.utils import constants from dotenv import load_dotenv from logging_utils import setup_logging -from trade_log import log_trade -# Load environment variables from a .env file load_dotenv() class TradeExecutor: """ - Monitors strategy signals and executes trades using a multi-agent, - multi-strategy position management system. Each strategy's position is - tracked independently. + Executes orders from a queue and, upon API success, + updates the shared 'opened_positions.json' state file. + It is the single source of truth for position state. """ - def __init__(self, log_level: str): - setup_logging(log_level, 'TradeExecutor') + def __init__(self, log_level: str, order_execution_queue: multiprocessing.Queue): + # Note: Logging is set up by the run_trade_executor function + + self.order_execution_queue = order_execution_queue self.vault_address = os.environ.get("MAIN_WALLET_ADDRESS") if not self.vault_address: @@ -39,21 +41,18 @@ class TradeExecutor: logging.error("No trading agents found in .env file.") sys.exit(1) - strategy_config_path = os.path.join("_data", "strategies.json") - try: - with open(strategy_config_path, 'r') as f: - self.strategy_configs = {name: config for name, config in json.load(f).items() if config.get("enabled")} - logging.info(f"Loaded {len(self.strategy_configs)} enabled strategies.") - except (FileNotFoundError, json.JSONDecodeError) as e: - logging.error(f"Could not load strategies from '{strategy_config_path}': {e}") - sys.exit(1) - - self.status_file_path = os.path.join("_logs", "trade_executor_status.json") - self.managed_positions_path = os.path.join("_data", "executor_managed_positions.json") - self.managed_positions = self._load_managed_positions() + # --- REVERTED: Removed asset_meta loading --- + # self.asset_meta = self._load_asset_metadata() + + # --- NEW: State management logic --- + self.opened_positions_file = os.path.join("_data", "opened_positions.json") + self.opened_positions = self._load_opened_positions() + + logging.info(f"Trade Executor started. Loaded {len(self.opened_positions)} positions.") + def _load_agents(self) -> dict: - """Discovers and initializes agents from environment variables.""" + # ... (omitted for brevity, this logic is correct and unchanged) ... exchanges = {} logging.info("Discovering agents from environment variables...") for env_var, private_key in os.environ.items(): @@ -71,130 +70,124 @@ class TradeExecutor: except Exception as e: logging.error(f"Failed to initialize agent '{agent_name}': {e}") return exchanges + + # --- REVERTED: Removed asset metadata loading --- + # def _load_asset_metadata(self) -> dict: ... - def _load_managed_positions(self) -> dict: - """Loads the state of which strategy manages which position.""" - if os.path.exists(self.managed_positions_path): - try: - with open(self.managed_positions_path, 'r') as f: - logging.info("Loading existing managed positions state.") - return json.load(f) - except (IOError, json.JSONDecodeError): - logging.warning("Could not read managed positions file. Starting fresh.") - return {} - - def _save_managed_positions(self): - """Saves the current state of managed positions.""" + # --- NEW: Position state save/load methods --- + def _load_opened_positions(self) -> dict: + """Loads the state of currently managed positions from a JSON file.""" + if not os.path.exists(self.opened_positions_file): + return {} try: - with open(self.managed_positions_path, 'w') as f: - json.dump(self.managed_positions, f, indent=4) - except IOError as e: - logging.error(f"Failed to save managed positions state: {e}") + with open(self.opened_positions_file, 'r', encoding='utf-8') as f: + return json.load(f) + except (json.JSONDecodeError, IOError) as e: + logging.error(f"Failed to read '{self.opened_positions_file}': {e}. Starting with empty state.", exc_info=True) + return {} - def _save_executor_status(self, perpetuals_state, spot_state, all_market_contexts): - """Saves the current balances and open positions to a live status file.""" - # This function is correct and does not need changes. - pass + def _save_opened_positions(self): + """Saves the current state of managed positions to a JSON file.""" + try: + with open(self.opened_positions_file, 'w', encoding='utf-8') as f: + json.dump(self.opened_positions, f, indent=4) + logging.debug(f"Successfully saved {len(self.opened_positions)} positions to '{self.opened_positions_file}'") + except IOError as e: + logging.error(f"Failed to write to '{self.opened_positions_file}': {e}", exc_info=True) + + # --- REVERTED: Removed tick rounding function --- + # def _round_to_tick(self, price, tick_size): ... def run(self): - """The main execution loop with advanced position management.""" - logging.info("Starting Trade Executor loop...") + """ + Main execution loop. Waits for an order and updates state on success. + """ + logging.info("Trade Executor started. Waiting for orders...") while True: try: - perpetuals_state = self.info.user_state(self.vault_address) - open_positions_api = {pos['position'].get('coin'): pos['position'] for pos in perpetuals_state.get('assetPositions', []) if float(pos.get('position', {}).get('szi', 0)) != 0} + order = self.order_execution_queue.get() + if not order: + continue + + logging.info(f"Received order: {order}") + + agent_name = order['agent'] + action = order['action'] + coin = order['coin'] + is_buy = order['is_buy'] + size = order['size'] + limit_px = order.get('limit_px') - for name, config in self.strategy_configs.items(): - coin = config['parameters'].get('coin') - size = config['parameters'].get('size') - # --- ADDED: Load leverage parameters from config --- - leverage_long = config['parameters'].get('leverage_long') - leverage_short = config['parameters'].get('leverage_short') - - status_file = os.path.join("_data", f"strategy_status_{name}.json") - if not os.path.exists(status_file): continue - with open(status_file, 'r') as f: status = json.load(f) - - desired_signal = status.get('current_signal') - current_position = self.managed_positions.get(name) - - agent_name = config.get("agent", "default").lower() - exchange_to_use = self.exchanges.get(agent_name) - if not exchange_to_use: - logging.error(f"[{name}] Agent '{agent_name}' not found. Skipping trade.") - continue + exchange_to_use = self.exchanges.get(agent_name) + if not exchange_to_use: + logging.error(f"Agent '{agent_name}' not found. Skipping order.") + continue - # --- State Machine Logic with Configurable Leverage --- - if desired_signal == "BUY": - if not current_position: - if not all([size, leverage_long]): - logging.error(f"[{name}] 'size' or 'leverage_long' not defined. Skipping.") - continue + response = None + + if action == "market_open" or action == "market_close": + reduce_only = (action == "market_close") + log_action = "MARKET CLOSE" if reduce_only else "MARKET OPEN" + logging.warning(f"ACTION: {log_action} {coin} {'BUY' if is_buy else 'SELL'} {size}") + + # --- REVERTED: Removed all slippage and rounding logic --- + # The raw limit_px from the order is now used directly + final_price = limit_px + logging.info(f"[{agent_name}] Using raw price for {coin}: {final_price}") + + order_type = {"limit": {"tif": "Ioc"}} + # --- REVERTED: Uses final_price (which is just limit_px) --- + response = exchange_to_use.order(coin, is_buy, size, final_price, order_type, reduce_only=reduce_only) + logging.info(f"Market order response: {response}") + + # --- NEW: STATE UPDATE ON SUCCESS --- + if response.get("status") == "ok": + response_data = response.get("response", {},).get("data", {}) + if response_data and "statuses" in response_data: + # Check if the order status contains an error + if "error" not in response_data["statuses"][0]: + position_key = order['position_key'] + if action == "market_open": + # Add to state + self.opened_positions[position_key] = { + "strategy": order['strategy'], + "coin": coin, + "side": "long" if is_buy else "short", + "open_time_utc": order['open_time_utc'], + "open_price": order['open_price'], + "amount": order['amount'], + # --- MODIFIED: Read leverage from the order --- + "leverage": order.get('leverage') + } + logging.info(f"Successfully opened position {position_key}. Saving state.") + elif action == "market_close": + # Remove from state + if position_key in self.opened_positions: + del self.opened_positions[position_key] + logging.info(f"Successfully closed position {position_key}. Saving state.") + else: + logging.warning(f"Received close confirmation for {position_key}, but it was not in state.") + + self._save_opened_positions() # Save state to disk - logging.warning(f"[{name}] ACTION: Open LONG for {coin} with {leverage_long}x leverage.") - exchange_to_use.update_leverage(int(leverage_long), coin) - exchange_to_use.market_open(coin, True, size, None, 0.01) - self.managed_positions[name] = {"coin": coin, "side": "long", "size": size} - log_trade(strategy=name, coin=coin, action="OPEN_LONG", price=status.get('signal_price', 0), size=size, signal=desired_signal) + else: + logging.error(f"API Error for {action}: {response_data['statuses'][0]['error']}") + else: + logging.error(f"Unexpected API response format: {response}") + else: + logging.error(f"API call failed, status: {response.get('status')}") - elif current_position['side'] == 'short': - if not all([size, leverage_long]): - logging.error(f"[{name}] 'size' or 'leverage_long' not defined. Skipping.") - continue - logging.warning(f"[{name}] ACTION: Close SHORT and open LONG for {coin} with {leverage_long}x leverage.") - exchange_to_use.update_leverage(int(leverage_long), coin) - exchange_to_use.market_open(coin, True, current_position['size'] + size, None, 0.01) - self.managed_positions[name] = {"coin": coin, "side": "long", "size": size} - log_trade(strategy=name, coin=coin, action="CLOSE_SHORT_&_REVERSE", price=status.get('signal_price', 0), size=size, signal=desired_signal) - - elif desired_signal == "SELL": - if not current_position: - if not all([size, leverage_short]): - logging.error(f"[{name}] 'size' or 'leverage_short' not defined. Skipping.") - continue - - logging.warning(f"[{name}] ACTION: Open SHORT for {coin} with {leverage_short}x leverage.") - exchange_to_use.update_leverage(int(leverage_short), coin) - exchange_to_use.market_open(coin, False, size, None, 0.01) - self.managed_positions[name] = {"coin": coin, "side": "short", "size": size} - log_trade(strategy=name, coin=coin, action="OPEN_SHORT", price=status.get('signal_price', 0), size=size, signal=desired_signal) - - elif current_position['side'] == 'long': - if not all([size, leverage_short]): - logging.error(f"[{name}] 'size' or 'leverage_short' not defined. Skipping.") - continue - - logging.warning(f"[{name}] ACTION: Close LONG and open SHORT for {coin} with {leverage_short}x leverage.") - exchange_to_use.update_leverage(int(leverage_short), coin) - exchange_to_use.market_open(coin, False, current_position['size'] + size, None, 0.01) - self.managed_positions[name] = {"coin": coin, "side": "short", "size": size} - log_trade(strategy=name, coin=coin, action="CLOSE_LONG_&_REVERSE", price=status.get('signal_price', 0), size=size, signal=desired_signal) - - elif desired_signal == "FLAT": - if current_position: - logging.warning(f"[{name}] ACTION: Close {current_position['side']} position for {coin}.") - is_buy = current_position['side'] == 'short' - exchange_to_use.market_open(coin, is_buy, current_position['size'], None, 0.01) - del self.managed_positions[name] - log_trade(strategy=name, coin=coin, action=f"CLOSE_{current_position['side'].upper()}", price=status.get('signal_price', 0), size=current_position['size'], signal=desired_signal) - - self._save_managed_positions() + elif action == "update_leverage": + leverage = int(size) + logging.warning(f"ACTION: UPDATE LEVERAGE {coin} to {leverage}x") + response = exchange_to_use.update_leverage(leverage, coin) + logging.info(f"Update leverage response: {response}") + + else: + logging.warning(f"Received unknown action: {action}") except Exception as e: - logging.error(f"An error occurred in the main executor loop: {e}") - - time.sleep(15) - - -if __name__ == "__main__": - parser = argparse.ArgumentParser(description="Run the Trade Executor.") - parser.add_argument("--log-level", default="normal", choices=['off', 'normal', 'debug']) - args = parser.parse_args() - - executor = TradeExecutor(log_level=args.log_level) - try: - executor.run() - except KeyboardInterrupt: - logging.info("Trade Executor stopped.") + logging.error(f"An error occurred in the main executor loop: {e}", exc_info=True) + time.sleep(1) diff --git a/wallet_data.py b/wallet_data.py new file mode 100644 index 0000000..0188724 --- /dev/null +++ b/wallet_data.py @@ -0,0 +1,652 @@ +#!/usr/bin/env python3 +""" +Hyperliquid Wallet Data Fetcher - FINAL Perfect Alignment +========================================================== +Complete Python script to pull all available data for a Hyperliquid wallet via API. + +Requirements: + pip install hyperliquid-python-sdk + +Usage: + python hyperliquid_wallet_data.py + +Example: + python hyperliquid_wallet_data.py 0xcd5051944f780a621ee62e39e493c489668acf4d +""" + +import sys +import json +from datetime import datetime, timedelta +from typing import Optional, Dict, Any +from hyperliquid.info import Info +from hyperliquid.utils import constants + + +class HyperliquidWalletAnalyzer: + """ + Comprehensive wallet data analyzer for Hyperliquid exchange. + Fetches all available information about a specific wallet address. + """ + + def __init__(self, wallet_address: str, use_testnet: bool = False): + """ + Initialize the analyzer with a wallet address. + + Args: + wallet_address: Ethereum-style address (0x...) + use_testnet: If True, use testnet instead of mainnet + """ + self.wallet_address = wallet_address + api_url = constants.TESTNET_API_URL if use_testnet else constants.MAINNET_API_URL + + # Initialize Info API (read-only, no private keys needed) + self.info = Info(api_url, skip_ws=True) + print(f"Initialized Hyperliquid API: {'Testnet' if use_testnet else 'Mainnet'}") + print(f"Target wallet: {wallet_address}\n") + + def print_position_details(self, position: Dict[str, Any], index: int): + """ + Print detailed information about a single position. + + Args: + position: Position data dictionary + index: Position number for display + """ + pos = position.get('position', {}) + + # Extract all position details + coin = pos.get('coin', 'Unknown') + size = float(pos.get('szi', 0)) + entry_px = float(pos.get('entryPx', 0)) + position_value = float(pos.get('positionValue', 0)) + unrealized_pnl = float(pos.get('unrealizedPnl', 0)) + return_on_equity = float(pos.get('returnOnEquity', 0)) + + # Leverage details + leverage = pos.get('leverage', {}) + leverage_type = leverage.get('type', 'unknown') if isinstance(leverage, dict) else 'cross' + leverage_value = leverage.get('value', 0) if isinstance(leverage, dict) else 0 + + # Margin and liquidation + margin_used = float(pos.get('marginUsed', 0)) + liquidation_px = pos.get('liquidationPx') + max_trade_szs = pos.get('maxTradeSzs', [0, 0]) + + # Cumulative funding + cumulative_funding = float(pos.get('cumFunding', {}).get('allTime', 0)) + + # Determine if long or short + side = "LONG šŸ“ˆ" if size > 0 else "SHORT šŸ“‰" + side_color = "🟢" if size > 0 else "šŸ”“" + + # PnL color + pnl_symbol = "🟢" if unrealized_pnl >= 0 else "šŸ”“" + pnl_sign = "+" if unrealized_pnl >= 0 else "" + + # ROE color + roe_symbol = "🟢" if return_on_equity >= 0 else "šŸ”“" + roe_sign = "+" if return_on_equity >= 0 else "" + + print(f"\n{'='*80}") + print(f"POSITION #{index}: {coin} {side} {side_color}") + print(f"{'='*80}") + + print(f"\nšŸ“Š POSITION DETAILS:") + print(f" Size: {abs(size):.6f} {coin}") + print(f" Side: {side}") + print(f" Entry Price: ${entry_px:,.4f}") + print(f" Position Value: ${abs(position_value):,.2f}") + + print(f"\nšŸ’° PROFITABILITY:") + print(f" Unrealized PnL: {pnl_symbol} {pnl_sign}${unrealized_pnl:,.2f}") + print(f" Return on Equity: {roe_symbol} {roe_sign}{return_on_equity:.2%}") + print(f" Cumulative Funding: ${cumulative_funding:,.4f}") + + print(f"\nāš™ļø LEVERAGE & MARGIN:") + print(f" Leverage Type: {leverage_type.upper()}") + print(f" Leverage: {leverage_value}x") + print(f" Margin Used: ${margin_used:,.2f}") + + print(f"\nāš ļø RISK MANAGEMENT:") + if liquidation_px: + liquidation_px_float = float(liquidation_px) if liquidation_px else 0 + print(f" Liquidation Price: ${liquidation_px_float:,.4f}") + + # Calculate distance to liquidation + if entry_px > 0 and liquidation_px_float > 0: + if size > 0: # Long position + distance = ((entry_px - liquidation_px_float) / entry_px) * 100 + else: # Short position + distance = ((liquidation_px_float - entry_px) / entry_px) * 100 + + distance_symbol = "🟢" if abs(distance) > 20 else "🟔" if abs(distance) > 10 else "šŸ”“" + print(f" Distance to Liq: {distance_symbol} {abs(distance):.2f}%") + else: + print(f" Liquidation Price: N/A (Cross margin)") + + if max_trade_szs and len(max_trade_szs) == 2: + print(f" Max Long Trade: {max_trade_szs[0]}") + print(f" Max Short Trade: {max_trade_szs[1]}") + + print(f"\n{'='*80}") + + def get_user_state(self) -> Dict[str, Any]: + """ + Get complete user state including positions and margin summary. + + Returns: + Dict containing: + - assetPositions: List of open perpetual positions + - marginSummary: Account value, margin used, withdrawable + - crossMarginSummary: Cross margin details + - withdrawable: Available balance to withdraw + """ + print("šŸ“Š Fetching User State (Perpetuals)...") + try: + data = self.info.user_state(self.wallet_address) + + if data: + margin_summary = data.get('marginSummary', {}) + positions = data.get('assetPositions', []) + + account_value = float(margin_summary.get('accountValue', 0)) + total_margin_used = float(margin_summary.get('totalMarginUsed', 0)) + total_ntl_pos = float(margin_summary.get('totalNtlPos', 0)) + total_raw_usd = float(margin_summary.get('totalRawUsd', 0)) + withdrawable = float(data.get('withdrawable', 0)) + + print(f" āœ“ Account Value: ${account_value:,.2f}") + print(f" āœ“ Total Margin Used: ${total_margin_used:,.2f}") + print(f" āœ“ Total Position Value: ${total_ntl_pos:,.2f}") + print(f" āœ“ Withdrawable: ${withdrawable:,.2f}") + print(f" āœ“ Open Positions: {len(positions)}") + + # Calculate margin utilization + if account_value > 0: + margin_util = (total_margin_used / account_value) * 100 + util_symbol = "🟢" if margin_util < 50 else "🟔" if margin_util < 75 else "šŸ”“" + print(f" āœ“ Margin Utilization: {util_symbol} {margin_util:.2f}%") + + # Print detailed information for each position + if positions: + print(f"\n{'='*80}") + print(f"DETAILED POSITION BREAKDOWN ({len(positions)} positions)") + print(f"{'='*80}") + + for idx, position in enumerate(positions, 1): + self.print_position_details(position, idx) + + # Summary table with perfect alignment + self.print_positions_summary_table(positions) + + else: + print(" ⚠ No perpetual positions found") + + return data + except Exception as e: + print(f" āœ— Error: {e}") + return {} + + def print_positions_summary_table(self, positions: list): + """ + Print a summary table of all positions with perfectly aligned columns. + NO emojis in data cells - keeps them simple text only for perfect alignment. + + Args: + positions: List of position dictionaries + """ + print(f"\n{'='*130}") + print("POSITIONS SUMMARY TABLE") + print('='*130) + + # Print header + print("| Asset | Side | Size | Entry Price | Position Value | Unrealized PnL | ROE | Leverage |") + print("|----------|-------|-------------------|-------------------|-------------------|-------------------|------------|------------|") + + total_position_value = 0 + total_pnl = 0 + + for position in positions: + pos = position.get('position', {}) + + coin = pos.get('coin', 'Unknown') + size = float(pos.get('szi', 0)) + entry_px = float(pos.get('entryPx', 0)) + position_value = float(pos.get('positionValue', 0)) + unrealized_pnl = float(pos.get('unrealizedPnl', 0)) + return_on_equity = float(pos.get('returnOnEquity', 0)) + + # Get leverage + leverage = pos.get('leverage', {}) + leverage_value = leverage.get('value', 0) if isinstance(leverage, dict) else 0 + leverage_type = leverage.get('type', 'cross') if isinstance(leverage, dict) else 'cross' + + # Determine side - NO EMOJIS in data + side_text = "LONG" if size > 0 else "SHORT" + + # Format PnL and ROE with signs + pnl_sign = "+" if unrealized_pnl >= 0 else "" + roe_sign = "+" if return_on_equity >= 0 else "" + + # Accumulate totals + total_position_value += abs(position_value) + total_pnl += unrealized_pnl + + # Format all values as strings with proper width + asset_str = f"{coin[:8]:<8}" + side_str = f"{side_text:<5}" + size_str = f"{abs(size):>17,.4f}" + entry_str = f"${entry_px:>16,.2f}" + value_str = f"${abs(position_value):>16,.2f}" + pnl_str = f"{pnl_sign}${unrealized_pnl:>15,.2f}" + roe_str = f"{roe_sign}{return_on_equity:>9.2%}" + lev_str = f"{leverage_value}x {leverage_type[:4]}" + + # Print row with exact spacing + print(f"| {asset_str} | {side_str} | {size_str} | {entry_str} | {value_str} | {pnl_str} | {roe_str} | {lev_str:<10} |") + + # Separator before totals + print("|==========|=======|===================|===================|===================|===================|============|============|") + + # Total row + total_value_str = f"${total_position_value:>16,.2f}" + total_pnl_sign = "+" if total_pnl >= 0 else "" + total_pnl_str = f"{total_pnl_sign}${total_pnl:>15,.2f}" + + print(f"| TOTAL | | | | {total_value_str} | {total_pnl_str} | | |") + print('='*130 + '\n') + + def get_spot_state(self) -> Dict[str, Any]: + """ + Get spot trading state including token balances. + + Returns: + Dict containing: + - balances: List of spot token holdings + """ + print("\nšŸ’° Fetching Spot State...") + try: + data = self.info.spot_user_state(self.wallet_address) + + if data and data.get('balances'): + print(f" āœ“ Spot Holdings: {len(data['balances'])} tokens") + for balance in data['balances'][:5]: # Show first 5 + print(f" - {balance.get('coin', 'Unknown')}: {balance.get('total', 0)}") + else: + print(" ⚠ No spot holdings found") + + return data + except Exception as e: + print(f" āœ— Error: {e}") + return {} + + def get_open_orders(self) -> list: + """ + Get all open orders for the user. + + Returns: + List of open orders with details (price, size, side, etc.) + """ + print("\nšŸ“‹ Fetching Open Orders...") + try: + data = self.info.open_orders(self.wallet_address) + + if data: + print(f" āœ“ Open Orders: {len(data)}") + for order in data[:3]: # Show first 3 + coin = order.get('coin', 'Unknown') + side = order.get('side', 'Unknown') + size = order.get('sz', 0) + price = order.get('limitPx', 0) + print(f" - {coin} {side}: {size} @ ${price}") + else: + print(" ⚠ No open orders") + + return data + except Exception as e: + print(f" āœ— Error: {e}") + return [] + + def get_user_fills(self, limit: int = 100) -> list: + """ + Get recent trade fills (executions). + + Args: + limit: Maximum number of fills to retrieve (max 2000) + + Returns: + List of fills with execution details, PnL, timestamps + """ + print(f"\nšŸ“ˆ Fetching Recent Fills (last {limit})...") + try: + data = self.info.user_fills(self.wallet_address) + + if data: + fills = data[:limit] + print(f" āœ“ Total Fills Retrieved: {len(fills)}") + + # Show summary stats + total_pnl = sum(float(f.get('closedPnl', 0)) for f in fills if f.get('closedPnl')) + print(f" āœ“ Total Closed PnL: ${total_pnl:.2f}") + + # Show most recent + if fills: + recent = fills[0] + print(f" āœ“ Most Recent: {recent.get('coin')} {recent.get('side')} {recent.get('sz')} @ ${recent.get('px')}") + else: + print(" ⚠ No fills found") + + return data[:limit] if data else [] + except Exception as e: + print(f" āœ— Error: {e}") + return [] + + def get_user_fills_by_time(self, start_time: Optional[int] = None, + end_time: Optional[int] = None) -> list: + """ + Get fills within a specific time range. + + Args: + start_time: Start timestamp in milliseconds (default: 7 days ago) + end_time: End timestamp in milliseconds (default: now) + + Returns: + List of fills within the time range + """ + if not start_time: + start_time = int((datetime.now() - timedelta(days=7)).timestamp() * 1000) + if not end_time: + end_time = int(datetime.now().timestamp() * 1000) + + print(f"\nšŸ“… Fetching Fills by Time Range...") + print(f" From: {datetime.fromtimestamp(start_time/1000)}") + print(f" To: {datetime.fromtimestamp(end_time/1000)}") + + try: + data = self.info.user_fills_by_time(self.wallet_address, start_time, end_time) + + if data: + print(f" āœ“ Fills in Range: {len(data)}") + else: + print(" ⚠ No fills in this time range") + + return data + except Exception as e: + print(f" āœ— Error: {e}") + return [] + + def get_user_fees(self) -> Dict[str, Any]: + """ + Get user's fee schedule and trading volume. + + Returns: + Dict containing: + - feeSchedule: Fee rates by tier + - userCrossRate: User's current cross trading fee rate + - userAddRate: User's maker fee rate + - userWithdrawRate: Withdrawal fee rate + - dailyUserVlm: Daily trading volume + """ + print("\nšŸ’³ Fetching Fee Information...") + try: + data = self.info.user_fees(self.wallet_address) + + if data: + print(f" āœ“ Maker Fee: {data.get('userAddRate', 0)}%") + print(f" āœ“ Taker Fee: {data.get('userCrossRate', 0)}%") + print(f" āœ“ Daily Volume: ${data.get('dailyUserVlm', [0])[0] if data.get('dailyUserVlm') else 0}") + + return data + except Exception as e: + print(f" āœ— Error: {e}") + return {} + + def get_user_rate_limit(self) -> Dict[str, Any]: + """ + Get API rate limit information. + + Returns: + Dict containing: + - cumVlm: Cumulative trading volume + - nRequestsUsed: Number of requests used + - nRequestsCap: Request capacity + """ + print("\nā±ļø Fetching Rate Limit Info...") + try: + data = self.info.user_rate_limit(self.wallet_address) + + if data: + used = data.get('nRequestsUsed', 0) + cap = data.get('nRequestsCap', 0) + print(f" āœ“ API Requests: {used}/{cap}") + print(f" āœ“ Cumulative Volume: ${data.get('cumVlm', 0)}") + + return data + except Exception as e: + print(f" āœ— Error: {e}") + return {} + + def get_funding_history(self, coin: str, days: int = 7) -> list: + """ + Get funding rate history for a specific coin. + + Args: + coin: Asset symbol (e.g., 'BTC', 'ETH') + days: Number of days of history (default: 7) + + Returns: + List of funding rate entries + """ + end_time = int(datetime.now().timestamp() * 1000) + start_time = int((datetime.now() - timedelta(days=days)).timestamp() * 1000) + + print(f"\nšŸ“Š Fetching Funding History for {coin}...") + try: + data = self.info.funding_history(coin, start_time, end_time) + + if data: + print(f" āœ“ Funding Entries: {len(data)}") + if data: + latest = data[-1] + print(f" āœ“ Latest Rate: {latest.get('fundingRate', 0)}") + + return data + except Exception as e: + print(f" āœ— Error: {e}") + return [] + + def get_user_funding_history(self, days: int = 7) -> list: + """ + Get user's funding payments history. + + Args: + days: Number of days of history (default: 7) + + Returns: + List of funding payments + """ + end_time = int(datetime.now().timestamp() * 1000) + start_time = int((datetime.now() - timedelta(days=days)).timestamp() * 1000) + + print(f"\nšŸ’ø Fetching User Funding Payments (last {days} days)...") + try: + data = self.info.user_funding_history(self.wallet_address, start_time, end_time) + + if data: + print(f" āœ“ Funding Payments: {len(data)}") + total_funding = sum(float(f.get('usdc', 0)) for f in data) + print(f" āœ“ Total Funding P&L: ${total_funding:.2f}") + else: + print(" ⚠ No funding payments found") + + return data + except Exception as e: + print(f" āœ— Error: {e}") + return [] + + def get_user_non_funding_ledger_updates(self, days: int = 7) -> list: + """ + Get non-funding ledger updates (deposits, withdrawals, liquidations). + + Args: + days: Number of days of history (default: 7) + + Returns: + List of ledger updates + """ + end_time = int(datetime.now().timestamp() * 1000) + start_time = int((datetime.now() - timedelta(days=days)).timestamp() * 1000) + + print(f"\nšŸ“’ Fetching Ledger Updates (last {days} days)...") + try: + data = self.info.user_non_funding_ledger_updates(self.wallet_address, start_time, end_time) + + if data: + print(f" āœ“ Ledger Updates: {len(data)}") + # Categorize updates + deposits = [u for u in data if 'deposit' in str(u.get('delta', {})).lower()] + withdrawals = [u for u in data if 'withdraw' in str(u.get('delta', {})).lower()] + print(f" āœ“ Deposits: {len(deposits)}, Withdrawals: {len(withdrawals)}") + else: + print(" ⚠ No ledger updates found") + + return data + except Exception as e: + print(f" āœ— Error: {e}") + return [] + + def get_referral_state(self) -> Dict[str, Any]: + """ + Get referral program state for the user. + + Returns: + Dict with referral status and earnings + """ + print("\nšŸŽ Fetching Referral State...") + try: + data = self.info.query_referral_state(self.wallet_address) + + if data: + print(f" āœ“ Referral Code: {data.get('referralCode', 'N/A')}") + print(f" āœ“ Referees: {len(data.get('referees', []))}") + + return data + except Exception as e: + print(f" āœ— Error: {e}") + return {} + + def get_sub_accounts(self) -> list: + """ + Get list of sub-accounts for the user. + + Returns: + List of sub-account addresses + """ + print("\nšŸ‘„ Fetching Sub-Accounts...") + try: + data = self.info.query_sub_accounts(self.wallet_address) + + if data: + print(f" āœ“ Sub-Accounts: {len(data)}") + else: + print(" ⚠ No sub-accounts found") + + return data + except Exception as e: + print(f" āœ— Error: {e}") + return [] + + def fetch_all_data(self, save_to_file: bool = True) -> Dict[str, Any]: + """ + Fetch all available data for the wallet. + + Args: + save_to_file: If True, save results to JSON file + + Returns: + Dict containing all fetched data + """ + print("=" * 80) + print("HYPERLIQUID WALLET DATA FETCHER") + print("=" * 80) + + all_data = { + 'wallet_address': self.wallet_address, + 'timestamp': datetime.now().isoformat(), + 'data': {} + } + + # Fetch all data sections + all_data['data']['user_state'] = self.get_user_state() + all_data['data']['spot_state'] = self.get_spot_state() + all_data['data']['open_orders'] = self.get_open_orders() + all_data['data']['recent_fills'] = self.get_user_fills(limit=50) + all_data['data']['fills_last_7_days'] = self.get_user_fills_by_time() + all_data['data']['user_fees'] = self.get_user_fees() + all_data['data']['rate_limit'] = self.get_user_rate_limit() + all_data['data']['funding_payments'] = self.get_user_funding_history(days=7) + all_data['data']['ledger_updates'] = self.get_user_non_funding_ledger_updates(days=7) + all_data['data']['referral_state'] = self.get_referral_state() + all_data['data']['sub_accounts'] = self.get_sub_accounts() + + # Optional: Fetch funding history for positions + user_state = all_data['data']['user_state'] + if user_state and user_state.get('assetPositions'): + all_data['data']['funding_history'] = {} + for position in user_state['assetPositions'][:3]: # First 3 positions + coin = position.get('position', {}).get('coin') + if coin: + all_data['data']['funding_history'][coin] = self.get_funding_history(coin, days=7) + + print("\n" + "=" * 80) + print("DATA COLLECTION COMPLETE") + print("=" * 80) + + # Save to file + if save_to_file: + filename = f"hyperliquid_wallet_data_{self.wallet_address[:10]}_{datetime.now().strftime('%Y%m%d_%H%M%S')}.json" + with open(filename, 'w') as f: + json.dump(all_data, f, indent=2, default=str) + print(f"\nšŸ’¾ Data saved to: {filename}") + + return all_data + + +def main(): + """Main execution function.""" + if len(sys.argv) < 2: + print("Usage: python hyperliquid_wallet_data.py [--testnet]") + print("\nExample:") + print(" python hyperliquid_wallet_data.py 0xcd5051944f780a621ee62e39e493c489668acf4d") + sys.exit(1) + + wallet_address = sys.argv[1] + use_testnet = '--testnet' in sys.argv + + # Validate wallet address format + if not wallet_address.startswith('0x') or len(wallet_address) != 42: + print("āŒ Error: Invalid wallet address format") + print(" Address must be in format: 0x followed by 40 hexadecimal characters") + sys.exit(1) + + try: + analyzer = HyperliquidWalletAnalyzer(wallet_address, use_testnet=use_testnet) + data = analyzer.fetch_all_data(save_to_file=True) + + print("\nāœ… All data fetched successfully!") + print(f"\nšŸ“Š Summary:") + print(f" - Account Value: ${data['data']['user_state'].get('marginSummary', {}).get('accountValue', 0)}") + print(f" - Open Positions: {len(data['data']['user_state'].get('assetPositions', []))}") + print(f" - Spot Holdings: {len(data['data']['spot_state'].get('balances', []))}") + print(f" - Open Orders: {len(data['data']['open_orders'])}") + print(f" - Recent Fills: {len(data['data']['recent_fills'])}") + + except Exception as e: + print(f"\nāŒ Fatal Error: {e}") + import traceback + traceback.print_exc() + sys.exit(1) + + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/whale_tracker.py b/whale_tracker.py new file mode 100644 index 0000000..69fc29a --- /dev/null +++ b/whale_tracker.py @@ -0,0 +1,367 @@ +import json +import os +import time +import requests +import logging +import argparse +import sys +from datetime import datetime, timedelta + +# --- Configuration --- +# !! IMPORTANT: Update this to your actual Hyperliquid API endpoint !! +API_ENDPOINT = "https://api.hyperliquid.xyz/info" + +INPUT_FILE = os.path.join("_data", "wallets_to_track.json") +OUTPUT_FILE = os.path.join("_data", "wallets_info.json") +LOGS_DIR = "_logs" +LOG_FILE = os.path.join(LOGS_DIR, "whale_tracker.log") + +# Polling intervals (in seconds) +POLL_INTERVALS = { + 'core_data': 10, # 5-15s range + 'open_orders': 20, # 15-30s range + 'account_metrics': 180, # 1-5m range + 'ledger_updates': 600, # 5-15m range + 'save_data': 5, # How often to write to wallets_info.json + 'reload_wallets': 60 # Check for wallet list changes every 60s +} + +class HyperliquidAPI: + """ + Client to handle POST requests to the Hyperliquid info endpoint. + """ + def __init__(self, base_url): + self.base_url = base_url + self.session = requests.Session() + logging.info(f"API Client initialized for endpoint: {base_url}") + + def post_request(self, payload): + """ + Internal helper to send POST requests and handle errors. + """ + try: + response = self.session.post(self.base_url, json=payload, timeout=10) + response.raise_for_status() # Raise an exception for bad status codes (4xx or 5xx) + return response.json() + except requests.exceptions.HTTPError as e: + logging.error(f"HTTP Error: {e.response.status_code} for {e.request.url}. Response: {e.response.text}") + except requests.exceptions.ConnectionError as e: + logging.error(f"Connection Error: {e}") + except requests.exceptions.Timeout: + logging.error(f"Request timed out for payload: {payload.get('type')}") + except json.JSONDecodeError: + logging.error(f"Failed to decode JSON response. Response text: {response.text if 'response' in locals() else 'No response text'}") + except Exception as e: + logging.error(f"An unexpected error occurred in post_request: {e}", exc_info=True) + return None + + def get_user_state(self, user_address: str): + payload = {"type": "clearinghouseState", "user": user_address} + return self.post_request(payload) + + def get_open_orders(self, user_address: str): + payload = {"type": "openOrders", "user": user_address} + return self.post_request(payload) + + def get_user_rate_limit(self, user_address: str): + payload = {"type": "userRateLimit", "user": user_address} + return self.post_request(payload) + + def get_user_ledger_updates(self, user_address: str, start_time_ms: int, end_time_ms: int): + payload = { + "type": "userNonFundingLedgerUpdates", + "user": user_address, + "startTime": start_time_ms, + "endTime": end_time_ms + } + return self.post_request(payload) + +class WalletTracker: + """ + Main class to track wallets, process data, and store results. + """ + def __init__(self, api_client, wallets_to_track): + self.api = api_client + self.wallets = wallets_to_track # This is the list of dicts + self.wallets_by_name = {w['name']: w for w in self.wallets} + self.wallets_data = { + wallet['name']: {"address": wallet['address']} for wallet in self.wallets + } + logging.info(f"WalletTracker initialized for {len(self.wallets)} wallets.") + + def reload_wallets(self): + """ + Checks the INPUT_FILE for changes and updates the tracked wallet list. + """ + logging.debug("Reloading wallet list...") + try: + with open(INPUT_FILE, 'r') as f: + new_wallets_list = json.load(f) + if not isinstance(new_wallets_list, list): + logging.warning(f"Failed to reload '{INPUT_FILE}': content is not a list.") + return + + new_wallets_by_name = {w['name']: w for w in new_wallets_list} + old_names = set(self.wallets_by_name.keys()) + new_names = set(new_wallets_by_name.keys()) + + added_names = new_names - old_names + removed_names = old_names - new_names + + if not added_names and not removed_names: + logging.debug("Wallet list is unchanged.") + return # No changes + + # Update internal wallet list + self.wallets = new_wallets_list + self.wallets_by_name = new_wallets_by_name + + # Add new wallets to wallets_data + for name in added_names: + self.wallets_data[name] = {"address": self.wallets_by_name[name]['address']} + logging.info(f"Added new wallet to track: {name}") + + # Remove old wallets from wallets_data + for name in removed_names: + if name in self.wallets_data: + del self.wallets_data[name] + logging.info(f"Removed wallet from tracking: {name}") + + logging.info(f"Wallet list reloaded. Tracking {len(self.wallets)} wallets.") + + except (FileNotFoundError, json.JSONDecodeError, ValueError) as e: + logging.error(f"Failed to reload and parse '{INPUT_FILE}': {e}") + except Exception as e: + logging.error(f"Unexpected error during wallet reload: {e}", exc_info=True) + + + def calculate_core_metrics(self, state_data: dict) -> dict: + """ + Performs calculations based on user_state data. + """ + if not state_data or 'crossMarginSummary' not in state_data: + logging.warning("Core state data is missing 'crossMarginSummary'.") + return {"raw_state": state_data} + + summary = state_data['crossMarginSummary'] + account_value = float(summary.get('accountValue', 0)) + margin_used = float(summary.get('totalMarginUsed', 0)) + + # Calculations + margin_utilization = (margin_used / account_value) if account_value > 0 else 0 + available_margin = account_value - margin_used + + total_position_value = 0 + if 'assetPositions' in state_data: + for pos in state_data.get('assetPositions', []): + try: + # Use 'value' for position value + pos_value_str = pos.get('position', {}).get('value', '0') + total_position_value += float(pos_value_str) + except (ValueError, TypeError): + logging.warning(f"Could not parse position value: {pos.get('position', {}).get('value')}") + continue + + portfolio_leverage = (total_position_value / account_value) if account_value > 0 else 0 + + # Return calculated metrics alongside raw data + return { + "raw_state": state_data, + "account_value": account_value, + "margin_used": margin_used, + "margin_utilization": margin_utilization, + "available_margin": available_margin, + "total_position_value": total_position_value, + "portfolio_leverage": portfolio_leverage + } + + def poll_core_data(self): + logging.debug("Polling Core Data...") + # Use self.wallets which is updated by reload_wallets + for wallet in self.wallets: + name = wallet['name'] + address = wallet['address'] + state_data = self.api.get_user_state(address) + if state_data: + calculated_data = self.calculate_core_metrics(state_data) + # Ensure wallet hasn't been removed by a concurrent reload + if name in self.wallets_data: + self.wallets_data[name]['core_state'] = calculated_data + time.sleep(0.1) # Avoid bursting requests + + def poll_open_orders(self): + logging.debug("Polling Open Orders...") + for wallet in self.wallets: + name = wallet['name'] + address = wallet['address'] + orders_data = self.api.get_open_orders(address) + if orders_data: + # TODO: Add calculations for 'pending_margin_required' if logic is available + if name in self.wallets_data: + self.wallets_data[name]['open_orders'] = {"raw_orders": orders_data} + time.sleep(0.1) + + def poll_account_metrics(self): + logging.debug("Polling Account Metrics...") + for wallet in self.wallets: + name = wallet['name'] + address = wallet['address'] + metrics_data = self.api.get_user_rate_limit(address) + if metrics_data: + if name in self.wallets_data: + self.wallets_data[name]['account_metrics'] = metrics_data + time.sleep(0.1) + + def poll_ledger_updates(self): + logging.debug("Polling Ledger Updates...") + end_time_ms = int(datetime.now().timestamp() * 1000) + start_time_ms = int((datetime.now() - timedelta(minutes=15)).timestamp() * 1000) + + for wallet in self.wallets: + name = wallet['name'] + address = wallet['address'] + ledger_data = self.api.get_user_ledger_updates(address, start_time_ms, end_time_ms) + if ledger_data: + if name in self.wallets_data: + self.wallets_data[name]['ledger_updates'] = ledger_data + time.sleep(0.1) + + def save_data_to_json(self): + """ + Atomically writes the current wallet data to the output JSON file. + (No longer needs cleaning logic) + """ + logging.debug(f"Saving data to {OUTPUT_FILE}...") + + temp_file = OUTPUT_FILE + ".tmp" + try: + # Save the data + with open(temp_file, 'w', encoding='utf-8') as f: + # self.wallets_data is automatically kept clean by reload_wallets + json.dump(self.wallets_data, f, indent=2) + # Atomic rename (move) + os.replace(temp_file, OUTPUT_FILE) + except (IOError, json.JSONDecodeError) as e: + logging.error(f"Failed to write wallet data to file: {e}") + except Exception as e: + logging.error(f"An unexpected error occurred during file save: {e}") + if os.path.exists(temp_file): + os.remove(temp_file) + +class WhaleTrackerRunner: + """ + Manages the polling loop using last-run timestamps instead of a complex scheduler. + """ + def __init__(self, api_client, wallets, shared_whale_data_dict=None): # Kept arg for compatibility + self.tracker = WalletTracker(api_client, wallets) + self.last_poll_times = {key: 0 for key in POLL_INTERVALS} + self.poll_intervals = POLL_INTERVALS + logging.info("WhaleTrackerRunner initialized to save to JSON file.") + + def update_shared_data(self): + """ + This function is no longer called by the run loop. + It's kept here to prevent errors if imported elsewhere, but is now unused. + """ + logging.debug("No shared dict, saving data to JSON file.") + self.tracker.save_data_to_json() + + + def run(self): + logging.info("Starting main polling loop...") + while True: + try: + now = time.time() + + if now - self.last_poll_times['reload_wallets'] > self.poll_intervals['reload_wallets']: + self.tracker.reload_wallets() + self.last_poll_times['reload_wallets'] = now + + if now - self.last_poll_times['core_data'] > self.poll_intervals['core_data']: + self.tracker.poll_core_data() + self.last_poll_times['core_data'] = now + + if now - self.last_poll_times['open_orders'] > self.poll_intervals['open_orders']: + self.tracker.poll_open_orders() + self.last_poll_times['open_orders'] = now + + if now - self.last_poll_times['account_metrics'] > self.poll_intervals['account_metrics']: + self.tracker.poll_account_metrics() + self.last_poll_times['account_metrics'] = now + + if now - self.last_poll_times['ledger_updates'] > self.poll_intervals['ledger_updates']: + self.tracker.poll_ledger_updates() + self.last_poll_times['ledger_updates'] = now + + if now - self.last_poll_times['save_data'] > self.poll_intervals['save_data']: + self.tracker.save_data_to_json() # <-- NEW + self.last_poll_times['save_data'] = now + + # Sleep for a short duration to prevent busy-waiting + time.sleep(1) + + except Exception as e: + logging.critical(f"Unhandled exception in main loop: {e}", exc_info=True) + time.sleep(10) + +def setup_logging(log_level_str: str, process_name: str): + """Configures logging for the script.""" + if not os.path.exists(LOGS_DIR): + try: + os.makedirs(LOGS_DIR) + except OSError as e: + print(f"Failed to create logs directory {LOGS_DIR}: {e}") + return + + level_map = { + 'debug': logging.DEBUG, + 'normal': logging.INFO, + 'off': logging.NOTSET + } + log_level = level_map.get(log_level_str.lower(), logging.INFO) + + if log_level == logging.NOTSET: + return + + handlers_list = [logging.FileHandler(LOG_FILE, mode='a')] + + if sys.stdout.isatty(): + handlers_list.append(logging.StreamHandler(sys.stdout)) + + logging.basicConfig( + level=log_level, + format=f"%(asctime)s.%(msecs)03d | {process_name:<20} | %(levelname)-8s | %(message)s", + datefmt='%Y-%m-%d %H:%M:%S', + handlers=handlers_list + ) + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Hyperliquid Whale Tracker") + parser.add_argument("--log-level", default="normal", choices=['off', 'normal', 'debug']) + args = parser.parse_args() + + setup_logging(args.log_level, "WhaleTracker") + + # Load wallets to track + wallets_to_track = [] + try: + with open(INPUT_FILE, 'r') as f: + wallets_to_track = json.load(f) + if not isinstance(wallets_to_track, list) or not wallets_to_track: + raise ValueError(f"'{INPUT_FILE}' is empty or not a list.") + except (FileNotFoundError, json.JSONDecodeError, ValueError) as e: + logging.critical(f"Failed to load '{INPUT_FILE}': {e}. Exiting.") + sys.exit(1) + + # Initialize API client + api_client = HyperliquidAPI(base_url=API_ENDPOINT) + + # Initialize and run the tracker + runner = WhaleTrackerRunner(api_client, wallets_to_track, shared_whale_data_dict=None) + + try: + runner.run() + except KeyboardInterrupt: + logging.info("Whale Tracker shutting down.") + sys.exit(0) +