solsticestudioai commited on
Commit
4c7c761
·
verified ·
1 Parent(s): ba9c112

Add ARC-T DeFi sample (10K lifecycles) with README, SCHEMA, parquet, JSONL

Browse files
Files changed (5) hide show
  1. .gitattributes +1 -0
  2. README.md +156 -0
  3. SCHEMA.md +115 -0
  4. arc_t_defi_sample.jsonl +3 -0
  5. arc_t_defi_sample.parquet +3 -0
.gitattributes CHANGED
@@ -58,3 +58,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
+ arc_t_defi_sample.jsonl filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,156 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - tabular-classification
5
+ - tabular-regression
6
+ - reinforcement-learning
7
+ language:
8
+ - en
9
+ tags:
10
+ - synthetic
11
+ - defi
12
+ - decentralized-finance
13
+ - trading
14
+ - risk-detection
15
+ - on-chain
16
+ - mev
17
+ - liquidations
18
+ - autonomous-agents
19
+ - mcts
20
+ - reinforcement-learning
21
+ - blockchain
22
+ - agentic-ai
23
+ pretty_name: ARC-T DeFi Decision Telemetry Pack
24
+ size_categories:
25
+ - 10K<n<100K
26
+ configs:
27
+ - config_name: default
28
+ data_files:
29
+ - split: train
30
+ path: arc_t_defi_sample.parquet
31
+ ---
32
+
33
+ # ARC-T DeFi Decision Telemetry Pack (Sample)
34
+
35
+ **A synthetic DeFi risk-to-execution decision-telemetry dataset for autonomous-trading research, on-chain anomaly detection, and reinforcement-learning environments.** Each row is a complete risk-to-execution lifecycle: a triggering market anomaly, market-state snapshot, adversarial-planner reasoning (MCTS branch count + winning strategy), step-by-step execution chain with per-step gas / slippage / latency telemetry, execution summary, and final decision outcome with PnL delta.
36
+
37
+ Built by [SolsticeAI](https://www.solsticestudio.ai/datasets) as a free sample of a larger commercial pack. 100% synthetic. No real trades, wallets, addresses, or on-chain identities. Safe for model training, competitive evaluation, and public benchmark work.
38
+
39
+ ## What is included
40
+
41
+ | File | Rows | Format | Purpose |
42
+ |---|---:|---|---|
43
+ | `arc_t_defi_sample.parquet` | 10,000 | Parquet | Columnar, typed, best for analytics |
44
+ | `arc_t_defi_sample.jsonl` | 10,000 | JSON Lines | Streaming / LLM training friendly |
45
+
46
+ **Source pack:** 100K-lifecycle corpus (production pack scales to 2.5M+)
47
+ **This sample:** 10,000 lifecycles, stratified 2,500 per decision outcome
48
+ **Outcome classes:** `alpha_captured`, `risk_mitigated`, `slippage_loss`, `execution_failed`
49
+ **Chains covered:** `ethereum`, `arbitrum`, `solana`, `optimism`
50
+ **Protocols covered:** Aave-V3, Uniswap-V3, Curve-Fi, GMX, MakerDAO, Drift, Lido, Kamino, Jupiter, Orca, Marinade, Synthetix, Meteora
51
+ **Risk triggers:** oracle staleness, TVL crash, whale dump, governance attack, bridge congestion, funding/borrow-rate dislocation, liquidity fragmentation, redemption run, liquid-staking dislocation
52
+
53
+ ## Record structure
54
+
55
+ Each record is one risk-to-execution lifecycle with 7 top-level fields:
56
+
57
+ | Field | Type | Contents |
58
+ |---|---|---|
59
+ | `schema_version` | string | Pack schema version (`1.0.0-arc-t-sample`) |
60
+ | `event` | struct | `id`, `trace_id`, `timestamp`, `decision_outcome`, `pnl_delta_usd` |
61
+ | `risk_context` | struct | `trigger`, `protocol`, `chain`, `impacted_asset`, `anomaly_signature`, nested `market_state` (severity, volatility_regime, liquidity_band, oracle_age, venue divergence, price impact, notional, 1h vol, etc.) |
62
+ | `agent_reasoning` | struct | `engine`, `winning_strategy`, `confidence_score`, `mcts_branches` |
63
+ | `correlated_telemetry` | list<struct> | Ordered component chain (`ARES`, `FRACTAL`, `ARGUS`, `SENTINEL`, …) with per-step latency, slippage, gas price, priority fee, route hops, node provider |
64
+ | `execution_summary` | struct | `strategy`, total execution time, gas cost, average slippage |
65
+ | `genetic_optimizer_feedback` | struct | `fitness_score_update`, `parameter_drift` |
66
+
67
+ See [SCHEMA.md](./SCHEMA.md) for the full nested field breakdown.
68
+
69
+ ## Why this dataset is useful
70
+
71
+ Most public on-chain datasets are either raw block-level trace data or narrow single-protocol slices. This pack is shaped around what autonomous-trading and on-chain-risk teams actually need to train decision models:
72
+
73
+ - Complete risk-to-execution lifecycles rather than isolated transactions
74
+ - Balanced outcome classes across winning and losing execution states
75
+ - Adversarial reasoning trace (strategy + MCTS branch count + confidence) alongside the telemetry
76
+ - Per-step gas, slippage, and latency signals to train execution-aware policies
77
+ - Multi-chain, multi-protocol coverage for generalization across venues
78
+ - PnL-linked outcomes for reward shaping in RL environments
79
+ - Stable schema suitable for backtesting, RL gym integration, and dashboarding
80
+
81
+ ## Typical use cases
82
+
83
+ - Autonomous DeFi agent training (RL and supervised)
84
+ - On-chain anomaly detection and risk-trigger classification
85
+ - Execution-strategy optimization (gas / slippage / route)
86
+ - Arbitrage and cross-venue routing model development
87
+ - Market-microstructure and liquidity-state modeling
88
+ - LLM fine-tuning on execution narratives and decision rationale
89
+ - Benchmarking MCTS strategy selection under uncertainty
90
+ - Gym environment authoring for multi-chain trading
91
+
92
+ ## Quick start
93
+
94
+ ```python
95
+ import pandas as pd
96
+ import pyarrow.parquet as pq
97
+
98
+ df = pq.read_table("arc_t_defi_sample.parquet").to_pandas()
99
+
100
+ # Outcome distribution (stratified balanced)
101
+ print(df["event"].apply(lambda e: e["decision_outcome"]).value_counts())
102
+
103
+ # Average PnL by strategy
104
+ df["strategy"] = df["agent_reasoning"].apply(lambda r: r["winning_strategy"])
105
+ df["pnl"] = df["event"].apply(lambda e: e["pnl_delta_usd"])
106
+ print(df.groupby("strategy")["pnl"].mean().round(2))
107
+
108
+ # Chain vs outcome cross-tab
109
+ df["chain"] = df["risk_context"].apply(lambda r: r["chain"])
110
+ df["outcome"] = df["event"].apply(lambda e: e["decision_outcome"])
111
+ print(pd.crosstab(df["chain"], df["outcome"]))
112
+ ```
113
+
114
+ Streaming form:
115
+
116
+ ```python
117
+ import json
118
+
119
+ with open("arc_t_defi_sample.jsonl") as f:
120
+ for line in f:
121
+ lifecycle = json.loads(line)
122
+ # one risk-to-execution lifecycle per line
123
+ ```
124
+
125
+ ## Responsible use
126
+
127
+ This dataset is intended for **research, prototyping, and defensive / monitoring** use cases around autonomous DeFi systems: anomaly detection, strategy evaluation, execution-policy training, and RL environments. It contains synthesized market states, execution traces, and decision outcomes — it does **not** contain real wallet addresses, real transaction hashes, real pool reserves, or any live on-chain state. Do not deploy policies trained solely on this synthetic data to real capital without independent validation against live data.
128
+
129
+ ## License
130
+
131
+ Released under **CC BY 4.0**. Use freely for research, RL experiments, education, and commercial prototyping with attribution.
132
+
133
+ ## Get the full pack
134
+
135
+ This Hugging Face repo is a **10K-lifecycle sample**. The production pack scales to 2.5M+ lifecycles with expanded chain and protocol coverage, finer-grained market-state regimes, campaign-linked multi-step attack sequences, MEV-aware telemetry, richer step-level component traces, parquet + JSONL + gym-compatible formats, and buyer-specific variants.
136
+
137
+ **Self-serve (Stripe checkout):**
138
+ - [**Sample Scale tier — $5,000**](https://buy.stripe.com/7sY5kD2j85QTfSb5lfeEo03) — ~25K records, one subject, 72-hour delivery.
139
+
140
+ **Full pack + enterprise scope:**
141
+ - [www.solsticestudio.ai/datasets](https://www.solsticestudio.ai/datasets) — per-SKU pricing across Starter / Professional / Enterprise tiers, plus commercial licensing, custom generation, and buyer-specific variants.
142
+
143
+ **Procurement catalog:**
144
+ - [SolsticeAI Data Storefront](https://solsticeai.mydatastorefront.com) — available via Datarade / Monda.
145
+
146
+ ## Citation
147
+
148
+ ```bibtex
149
+ @dataset{solstice_arc_t_defi_pack_2026,
150
+ title = {ARC-T DeFi Decision Telemetry Pack (Sample)},
151
+ author = {SolsticeAI},
152
+ year = {2026},
153
+ publisher = {Hugging Face},
154
+ url = {https://huggingface.co/datasets/solsticestudioai/arc-t-defi-pack}
155
+ }
156
+ ```
SCHEMA.md ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ARC-T DeFi Decision Telemetry Pack — Schema
2
+
3
+ One row = one complete risk-to-execution lifecycle. All records share the same seven top-level fields.
4
+
5
+ Schema version: `1.0.0-arc-t-sample`
6
+
7
+ ## Top-level fields
8
+
9
+ ### `schema_version` — string
10
+ Schema identifier. Constant within a sample release. Used to detect pack version drift.
11
+
12
+ ### `event` — struct
13
+ Identifier fields, decision outcome, and the PnL delta for the lifecycle.
14
+
15
+ | Field | Type | Notes |
16
+ |---|---|---|
17
+ | `id` | string | Stable event identifier, e.g., `ARCT-100000`. |
18
+ | `trace_id` | string (UUID) | Cross-links telemetry steps within the lifecycle. |
19
+ | `timestamp` | string (ISO-8601) | Lifecycle start time. |
20
+ | `decision_outcome` | string | One of: `alpha_captured`, `risk_mitigated`, `slippage_loss`, `execution_failed`. |
21
+ | `pnl_delta_usd` | double | Realized PnL delta attributable to this lifecycle. Can be negative. |
22
+
23
+ ### `risk_context` — struct
24
+ Environmental and market context plus the triggering anomaly.
25
+
26
+ | Field | Type | Notes |
27
+ |---|---|---|
28
+ | `trigger` | string | Triggering risk event. One of: `oracle_staleness`, `tvl_crash`, `whale_dump`, `governance_attack`, `bridge_congestion`, `funding_dislocation`, `borrow_rate_spike`, `liquidity_fragmentation`, `redemption_run`, `liquid_staking_dislocation`. |
29
+ | `protocol` | string | DeFi protocol (e.g., `Aave-V3`, `Uniswap-V3`, `Curve-Fi`, `GMX`, `MakerDAO`, `Lido`, `Drift`, `Kamino`, `Jupiter`, `Orca`, `Marinade`, `Synthetix`, `Meteora`). |
30
+ | `chain` | string | L1/L2 chain: `ethereum`, `arbitrum`, `solana`, `optimism`. |
31
+ | `impacted_asset` | string | Ticker of the affected asset (e.g., `WETH`, `USDC`, `stETH`, `SOL`). |
32
+ | `anomaly_signature` | string | Human-readable signature summarizing the anomaly. |
33
+ | `market_state` | struct | See below. |
34
+
35
+ `market_state` struct:
36
+
37
+ | Field | Type | Notes |
38
+ |---|---|---|
39
+ | `severity` | double | 0–1 severity score. |
40
+ | `volatility_regime` | string | `calm`, `normal`, `stress`, etc. |
41
+ | `liquidity_band` | string | `thin`, `normal`, `deep`. |
42
+ | `oracle_age_sec` | int | Age of the oracle feed in seconds. |
43
+ | `venue_divergence_bps` | int | Cross-venue price divergence, in basis points. |
44
+ | `estimated_price_impact_bps` | int | Expected price impact of a trade, in basis points. |
45
+ | `order_notional_usd` | double | Order size in USD. |
46
+ | `liquidity_usd` | double | Available pool liquidity in USD. |
47
+ | `volatility_1h_bps` | int | 1-hour realized volatility, in basis points. |
48
+ | `bridge_delay_sec` | int | Cross-chain bridge delay, in seconds. |
49
+ | `open_interest_delta_pct` | double | Change in open interest, in percent. |
50
+
51
+ ### `agent_reasoning` — struct
52
+ Planner-side metadata for the autonomous agent selecting the strategy.
53
+
54
+ | Field | Type | Notes |
55
+ |---|---|---|
56
+ | `engine` | string | Planner engine label. In this sample: `arct_planner`. |
57
+ | `winning_strategy` | string | Selected top-level strategy. One of: `Immediate_Hedge`, `TWAP_Exit`, `Cross_Venue_Sweep`, `Arb_Rebalance`, `Priority_Fee_Exit`, `Collateral_Rotation`, `Delta_Neutral_Reprice`, `Liquidity_Provision`. |
58
+ | `confidence_score` | double | Planner confidence at selection time. |
59
+ | `mcts_branches` | int | Number of MCTS branches considered. |
60
+
61
+ ### `correlated_telemetry` — list<struct>
62
+ Ordered sequence of internal component actions during execution. One struct per step.
63
+
64
+ Step struct:
65
+
66
+ | Field | Type | Notes |
67
+ |---|---|---|
68
+ | `timestamp` | string (ISO-8601) | Step timestamp. |
69
+ | `component` | string | Which internal component emitted the step (e.g., `ARES`, `FRACTAL`, `ARGUS`, `SENTINEL`, `EXECUTION_ENGINE`). |
70
+ | `action` | string | Action code (e.g., `ARES_WHALE_ALARM`, `FRACTAL_MARKET_IMPACT_REESTIMATE`, `ARGUS_ANOMALY_CONFIRMED`, `SENTINEL_ORDERBOOK_SCAN`). |
71
+ | `telemetry.latency_ms` | int | Step execution latency in milliseconds. |
72
+ | `telemetry.slippage_bps` | int | Observed slippage in basis points. |
73
+ | `telemetry.gas_price_gwei` | int | Gas price observed during the step (gwei). |
74
+ | `telemetry.priority_fee_gwei` | int | Priority fee (gwei). |
75
+ | `telemetry.route_hops` | int | Number of hops in the selected route. |
76
+ | `telemetry.estimated_price_impact_bps` | int | Step-level price impact estimate (bps). |
77
+ | `telemetry.venue_divergence_bps` | int | Venue-vs-venue price divergence observed at the step (bps). |
78
+ | `telemetry.node_provider` | string | RPC provider observed (e.g., `Alchemy`, `Local_Geth`, `Triton`, `Solana-RPC`). |
79
+
80
+ ### `execution_summary` — struct
81
+ Roll-up metrics for the full lifecycle.
82
+
83
+ | Field | Type | Notes |
84
+ |---|---|---|
85
+ | `strategy` | string | Final strategy label executed. |
86
+ | `total_execution_ms` | int | End-to-end lifecycle duration. |
87
+ | `gas_cost_usd` | double | Realized gas cost in USD. |
88
+ | `avg_slippage_bps` | double | Average observed slippage across steps, in basis points. |
89
+
90
+ ### `genetic_optimizer_feedback` — struct
91
+ Outer-loop optimizer feedback used to tune future planner iterations.
92
+
93
+ | Field | Type | Notes |
94
+ |---|---|---|
95
+ | `fitness_score_update` | double | Delta applied to the strategy's fitness score. |
96
+ | `parameter_drift` | string | Coarse drift descriptor (`none`, `minor`, `major`, …). |
97
+
98
+ ## Distribution of this sample
99
+
100
+ - 10,000 lifecycles, stratified 2,500 per decision_outcome across all four outcomes.
101
+ - Balanced (within shuffled sampling) across 10 risk triggers (~1,000 each).
102
+ - Balanced across 4 chains (weighted toward `ethereum`).
103
+ - Broad protocol coverage (13 protocols).
104
+ - 8 winning strategies observed.
105
+ - Planner engine label constant (`arct_planner`) after sanitization of internal method identifiers.
106
+
107
+ ## Sanitization notes
108
+
109
+ - Internal identifier prefix (`SIMA-V4-ARC-*`) has been normalized to `ARCT-*`.
110
+ - Internal planner engine code name (`QuantumImagination_V4`) has been normalized to `arct_planner`.
111
+ - No real wallet addresses, transaction hashes, pool reserves, or on-chain identifiers are present.
112
+
113
+ ## Relationship to the full pack
114
+
115
+ The production pack scales to 2.5M+ lifecycles with expanded chain and protocol coverage, finer-grained market-state regimes, MEV-aware telemetry, campaign-linked multi-step attack sequences, richer step-level component traces, and gym-compatible delivery. See the pack card for commercial access.
arc_t_defi_sample.jsonl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a07c7e9c27212bc8105515ce9f6e0b82fc510a29a04a69b3db44fb23e4540b6d
3
+ size 29662412
arc_t_defi_sample.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7d100bdf90816c49a436fbbf1279df365f9fa3a55d1ae845c63fa427c83b76da
3
+ size 2502329