1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
SQLite format 3 @
.zp
� � ��UR
� � G� j 3)�indexidx_profit_strategyprofit_records
CREATE INDEX idx_profit_strategy ON profit_records(strategy)T#%oindexidx_tx_hashtransactions CREATE INDEX idx_tx_hash ON transactions(tx_hash)�''�Mtablemarket_pricesmarket_pricesCREATE TABLE market_prices (
id INTEGER PRIMARY KEY AUTOINCREMENT,
chain_id INTEGER NOT NULL,
symbol TEXT NOT NULL,
price_usd REAL NOT NULL,
source TEXT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP
)�Y))�mtableprofit_recordsprofit_recordsCREATE TABLE profit_records (
id INTEGER PRIMARY KEY AUTOINCREMENT,
tx_hash TEXT NOT NULL,
chain_id INTEGER NOT NULL,
strategy TEXT NOT NULL,
profit_eth REAL NOT NULL,
gas_cost_eth REAL NOT NULL,
net_profit_eth REAL NOT NULL,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP
)P++Ytablesqlite_sequencesqlite_sequenceCREATE TABLE sqlite_sequence(name,seq)�z%%�7tabletransactionstransactionsCREATE TABLE transactions (
id INTEGER PRIMARY KEY AUTOINCREMENT,
tx_hash TEXT NOT NULL UNIQUE,
chain_id INTEGER NOT NULL,
block_number INTEGER,
from_address TEXT NOT NULL,
to_address TEXT,
value_wei TEXT NOT NULL, -- Stored as TEXT to prevent overflow
gas_used INTEGER,
gas_price_wei TEXT, -- Stored as TEXT
status BOOLEAN,
strategy TEXT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
execution_time_ms REAL
)7K% indexsqlite_autoindex_transactions_1transactions�)--�table_sqlx_migrations_sqlx_migrationsCREATE TABLE _sqlx_migrations (
version BIGINT PRIMARY KEY,
description TEXT NOT NULL,
installed_on TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
success BOOLEAN NOT NULL,
checksum BLOB NOT NULL,
execution_time BIGINT NOT NULL
)?S- indexsqlite_autoindex__sqlx_migrations_1_sqlx_migrations
� � W3 lm,֦@init2026-01-13 18:59:32RH/�����f�Y��`U��-�Ty�|PnzLz��&v�+wH�ß�vu�}^�P
� � m,֦@