This commit is contained in:
2026-04-29 15:54:03 +02:00
parent 5813c526ae
commit f8a2309173
17 changed files with 1281 additions and 10 deletions

View File

@@ -274,6 +274,26 @@ pub(crate) async fn ensure_schema(database: &crate::KbDatabase) -> Result<(), cr
if let Err(error) = result {
return Err(error);
}
let result = create_kb_wallets_table(pool).await;
if let Err(error) = result {
return Err(error);
}
let result = create_kb_wallet_participations_table(pool).await;
if let Err(error) = result {
return Err(error);
}
let result = create_kb_idx_wallet_participations_wallet_id(pool).await;
if let Err(error) = result {
return Err(error);
}
let result = create_kb_idx_wallet_participations_pool_id(pool).await;
if let Err(error) = result {
return Err(error);
}
let result = create_kb_idx_wallet_participations_transaction_id(pool).await;
if let Err(error) = result {
return Err(error);
}
Ok(())
}
}
@@ -1498,3 +1518,93 @@ ON kb_pool_origins(founding_transaction_id)
)
.await
}
async fn create_kb_wallets_table(pool: &sqlx::SqlitePool) -> Result<(), crate::KbError> {
execute_sqlite_schema_statement(
pool,
"create_kb_wallets_table",
r#"
CREATE TABLE IF NOT EXISTS kb_wallets (
id INTEGER PRIMARY KEY AUTOINCREMENT,
address TEXT NOT NULL UNIQUE,
label TEXT NULL,
first_seen_at TEXT NOT NULL,
last_seen_at TEXT NOT NULL
)
"#,
)
.await
}
async fn create_kb_wallet_participations_table(
pool: &sqlx::SqlitePool,
) -> Result<(), crate::KbError> {
execute_sqlite_schema_statement(
pool,
"create_kb_wallet_participations_table",
r#"
CREATE TABLE IF NOT EXISTS kb_wallet_participations (
id INTEGER PRIMARY KEY AUTOINCREMENT,
wallet_id INTEGER NOT NULL,
transaction_id INTEGER NOT NULL,
decoded_event_id INTEGER NULL,
pool_id INTEGER NULL,
pair_id INTEGER NULL,
role TEXT NOT NULL,
unique_key TEXT NOT NULL UNIQUE,
source_kind INTEGER NOT NULL,
source_endpoint_name TEXT NULL,
created_at TEXT NOT NULL,
updated_at TEXT NOT NULL,
FOREIGN KEY(wallet_id) REFERENCES kb_wallets(id) ON DELETE CASCADE,
FOREIGN KEY(transaction_id) REFERENCES kb_chain_transactions(id) ON DELETE CASCADE,
FOREIGN KEY(decoded_event_id) REFERENCES kb_dex_decoded_events(id) ON DELETE SET NULL,
FOREIGN KEY(pool_id) REFERENCES kb_pools(id) ON DELETE SET NULL,
FOREIGN KEY(pair_id) REFERENCES kb_pairs(id) ON DELETE SET NULL
)
"#,
)
.await
}
async fn create_kb_idx_wallet_participations_wallet_id(
pool: &sqlx::SqlitePool,
) -> Result<(), crate::KbError> {
execute_sqlite_schema_statement(
pool,
"create_kb_idx_wallet_participations_wallet_id",
r#"
CREATE INDEX IF NOT EXISTS kb_idx_wallet_participations_wallet_id
ON kb_wallet_participations(wallet_id)
"#,
)
.await
}
async fn create_kb_idx_wallet_participations_pool_id(
pool: &sqlx::SqlitePool,
) -> Result<(), crate::KbError> {
execute_sqlite_schema_statement(
pool,
"create_kb_idx_wallet_participations_pool_id",
r#"
CREATE INDEX IF NOT EXISTS kb_idx_wallet_participations_pool_id
ON kb_wallet_participations(pool_id)
"#,
)
.await
}
async fn create_kb_idx_wallet_participations_transaction_id(
pool: &sqlx::SqlitePool,
) -> Result<(), crate::KbError> {
execute_sqlite_schema_statement(
pool,
"create_kb_idx_wallet_participations_transaction_id",
r#"
CREATE INDEX IF NOT EXISTS kb_idx_wallet_participations_transaction_id
ON kb_wallet_participations(transaction_id)
"#,
)
.await
}