teleton 0.2.2 → 0.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,6 @@
1
+ import {
2
+ initScraperDb
3
+ } from "./chunk-DUW5VBAZ.js";
1
4
  import {
2
5
  appendToTranscript,
3
6
  archiveTranscript,
@@ -11,6 +14,7 @@ import {
11
14
  MessageStore,
12
15
  USED_TRANSACTIONS_SCHEMA,
13
16
  UserStore,
17
+ closeDatabase,
14
18
  createDbWrapper,
15
19
  getDatabase,
16
20
  initializeMemory,
@@ -10003,18 +10007,20 @@ function getDeal(db3, dealId) {
10003
10007
  }
10004
10008
  function acceptDeal(db3, dealId) {
10005
10009
  const newExpiry = Math.floor(Date.now() / 1e3) + DEAL_VERIFICATION_WINDOW_SECONDS;
10006
- db3.prepare(`UPDATE deals SET status = 'accepted', expires_at = ? WHERE id = ?`).run(
10007
- newExpiry,
10008
- dealId
10009
- );
10010
+ const r3 = db3.prepare(
10011
+ `UPDATE deals SET status = 'accepted', expires_at = ? WHERE id = ? AND status = 'proposed'`
10012
+ ).run(newExpiry, dealId);
10013
+ return r3.changes === 1;
10010
10014
  }
10011
10015
  function declineDeal(db3, dealId) {
10012
- db3.prepare(`UPDATE deals SET status = 'declined' WHERE id = ?`).run(dealId);
10016
+ const r3 = db3.prepare(`UPDATE deals SET status = 'declined' WHERE id = ? AND status = 'proposed'`).run(dealId);
10017
+ return r3.changes === 1;
10013
10018
  }
10014
10019
  function claimPayment(db3, dealId) {
10015
- db3.prepare(
10016
- `UPDATE deals SET status = 'payment_claimed', payment_claimed_at = unixepoch() WHERE id = ?`
10020
+ const r3 = db3.prepare(
10021
+ `UPDATE deals SET status = 'payment_claimed', payment_claimed_at = unixepoch() WHERE id = ? AND status = 'accepted'`
10017
10022
  ).run(dealId);
10023
+ return r3.changes === 1;
10018
10024
  }
10019
10025
  function setInlineMessageId(db3, dealId, inlineMessageId) {
10020
10026
  db3.prepare(`UPDATE deals SET inline_message_id = ? WHERE id = ?`).run(inlineMessageId, dealId);
@@ -10024,7 +10030,10 @@ function isDealExpired(deal) {
10024
10030
  return now > deal.expiresAt;
10025
10031
  }
10026
10032
  function expireDeal(db3, dealId) {
10027
- db3.prepare(`UPDATE deals SET status = 'expired' WHERE id = ?`).run(dealId);
10033
+ const r3 = db3.prepare(
10034
+ `UPDATE deals SET status = 'expired' WHERE id = ? AND status IN ('proposed', 'accepted')`
10035
+ ).run(dealId);
10036
+ return r3.changes === 1;
10028
10037
  }
10029
10038
  function getDealsAwaitingVerification(db3) {
10030
10039
  const rows = db3.prepare(
@@ -11474,12 +11483,16 @@ var VerificationPoller = class {
11474
11483
  * Handle verification timeout
11475
11484
  */
11476
11485
  async handleTimeout(deal) {
11477
- this.db.prepare(
11486
+ const r3 = this.db.prepare(
11478
11487
  `UPDATE deals SET
11479
11488
  status = 'failed',
11480
11489
  notes = 'Payment verification timeout'
11481
- WHERE id = ?`
11490
+ WHERE id = ? AND status = 'payment_claimed'`
11482
11491
  ).run(deal.dealId);
11492
+ if (r3.changes !== 1) {
11493
+ this.retryMap.delete(deal.dealId);
11494
+ return;
11495
+ }
11483
11496
  if (deal.inlineMessageId) {
11484
11497
  const { text, buttons } = buildFailedMessage(
11485
11498
  deal,
@@ -23556,11 +23569,6 @@ var module_default2 = casinoModule;
23556
23569
  import Database from "better-sqlite3";
23557
23570
  import { join as join15 } from "path";
23558
23571
  var DB_PATH3 = join15(TELETON_ROOT, "gifts.db");
23559
- function getDb2() {
23560
- const db3 = new Database(DB_PATH3);
23561
- db3.pragma("journal_mode = WAL");
23562
- return db3;
23563
- }
23564
23572
  function getStats(db3) {
23565
23573
  const collections = db3.prepare("SELECT COUNT(*) as count FROM gift_collections").get();
23566
23574
  const models = db3.prepare("SELECT COUNT(*) as count FROM gift_models").get();
@@ -23588,7 +23596,7 @@ var MarketScraperService = class {
23588
23596
  this.isScrapingInProgress = true;
23589
23597
  console.log("\u{1F504} Starting full market scrape...");
23590
23598
  try {
23591
- const { runScraper } = await import("./scraper-3TD27Z2F.js");
23599
+ const { runScraper } = await import("./scraper-DSAYK6QJ.js");
23592
23600
  const result = await runScraper({
23593
23601
  workers: 4,
23594
23602
  limit: 0
@@ -23657,7 +23665,7 @@ var MarketPriceService = class {
23657
23665
  return;
23658
23666
  }
23659
23667
  try {
23660
- this.db = getDb2();
23668
+ this.db = initScraperDb();
23661
23669
  const stats = getStats(this.db);
23662
23670
  let dataAgeMs = Infinity;
23663
23671
  let timeUntilNextRefresh = this.fullRefreshIntervalMs;
@@ -24283,6 +24291,7 @@ ${blue} \u250C\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u250
24283
24291
  await mod.stop?.();
24284
24292
  }
24285
24293
  await this.bridge.disconnect();
24294
+ closeDatabase();
24286
24295
  }
24287
24296
  };
24288
24297
  async function main(configPath) {
@@ -0,0 +1,133 @@
1
+ import {
2
+ TELETON_ROOT
3
+ } from "./chunk-EYWNOHMJ.js";
4
+
5
+ // src/market/scraper-db.ts
6
+ import Database from "better-sqlite3";
7
+ import { join } from "path";
8
+ var DB_PATH = join(TELETON_ROOT, "gifts.db");
9
+ function initScraperDb() {
10
+ const db = new Database(DB_PATH);
11
+ db.pragma("journal_mode = WAL");
12
+ db.exec(`
13
+ -- Gift collections (Plush Pepes, Heart Lockets, etc.)
14
+ CREATE TABLE IF NOT EXISTS gift_collections (
15
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
16
+ address TEXT UNIQUE NOT NULL,
17
+ name TEXT NOT NULL,
18
+ floor_ton REAL,
19
+ floor_usd REAL,
20
+ volume_7d REAL,
21
+ listed_count INTEGER,
22
+ owners INTEGER,
23
+ supply INTEGER,
24
+ created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
25
+ updated_at DATETIME DEFAULT CURRENT_TIMESTAMP
26
+ );
27
+
28
+ -- Models per collection (Cozy Galaxy, Milano, etc.)
29
+ CREATE TABLE IF NOT EXISTS gift_models (
30
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
31
+ collection_id INTEGER NOT NULL,
32
+ name TEXT NOT NULL,
33
+ floor_ton REAL,
34
+ rarity_percent REAL,
35
+ count INTEGER,
36
+ created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
37
+ updated_at DATETIME DEFAULT CURRENT_TIMESTAMP,
38
+ FOREIGN KEY (collection_id) REFERENCES gift_collections(id),
39
+ UNIQUE(collection_id, name)
40
+ );
41
+
42
+ -- Price history (for trends)
43
+ CREATE TABLE IF NOT EXISTS price_history (
44
+ id INTEGER PRIMARY KEY AUTOINCREMENT,
45
+ collection_id INTEGER,
46
+ model_id INTEGER,
47
+ floor_ton REAL NOT NULL,
48
+ floor_usd REAL,
49
+ timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
50
+ FOREIGN KEY (collection_id) REFERENCES gift_collections(id),
51
+ FOREIGN KEY (model_id) REFERENCES gift_models(id)
52
+ );
53
+
54
+ -- Indexes for frequent queries
55
+ CREATE INDEX IF NOT EXISTS idx_price_history_collection ON price_history(collection_id, timestamp);
56
+ CREATE INDEX IF NOT EXISTS idx_price_history_model ON price_history(model_id, timestamp);
57
+ CREATE INDEX IF NOT EXISTS idx_models_collection ON gift_models(collection_id);
58
+ `);
59
+ return db;
60
+ }
61
+ function upsertCollection(db, collection) {
62
+ const stmt = db.prepare(`
63
+ INSERT INTO gift_collections (address, name, floor_ton, floor_usd, volume_7d, updated_at)
64
+ VALUES (@address, @name, @floor_ton, @floor_usd, @volume_7d, CURRENT_TIMESTAMP)
65
+ ON CONFLICT(address) DO UPDATE SET
66
+ name = @name,
67
+ floor_ton = @floor_ton,
68
+ floor_usd = @floor_usd,
69
+ volume_7d = @volume_7d,
70
+ updated_at = CURRENT_TIMESTAMP
71
+ RETURNING id
72
+ `);
73
+ const result = stmt.get({
74
+ address: collection.address,
75
+ name: collection.name,
76
+ floor_ton: collection.floorTON || null,
77
+ floor_usd: collection.floorUSD || null,
78
+ volume_7d: collection.volume7d || null
79
+ });
80
+ return result.id;
81
+ }
82
+ function getCollectionId(db, address) {
83
+ const row = db.prepare(`SELECT id FROM gift_collections WHERE address = ?`).get(address);
84
+ return row?.id ?? null;
85
+ }
86
+ function upsertModel(db, collectionId, model) {
87
+ const stmt = db.prepare(`
88
+ INSERT INTO gift_models (collection_id, name, floor_ton, rarity_percent, count, updated_at)
89
+ VALUES (@collection_id, @name, @floor_ton, @rarity_percent, @count, CURRENT_TIMESTAMP)
90
+ ON CONFLICT(collection_id, name) DO UPDATE SET
91
+ floor_ton = @floor_ton,
92
+ rarity_percent = @rarity_percent,
93
+ count = @count,
94
+ updated_at = CURRENT_TIMESTAMP
95
+ RETURNING id
96
+ `);
97
+ const result = stmt.get({
98
+ collection_id: collectionId,
99
+ name: model.name,
100
+ floor_ton: model.floor || null,
101
+ rarity_percent: model.pct ? parseFloat(model.pct) : null,
102
+ count: model.count || null
103
+ });
104
+ return result.id;
105
+ }
106
+ function addPriceHistory(db, collectionId, modelId, floorTon, floorUsd = null) {
107
+ const stmt = db.prepare(`
108
+ INSERT INTO price_history (collection_id, model_id, floor_ton, floor_usd)
109
+ VALUES (?, ?, ?, ?)
110
+ `);
111
+ stmt.run(collectionId, modelId, floorTon, floorUsd);
112
+ }
113
+ function getScraperStats(db) {
114
+ const collections = db.prepare("SELECT COUNT(*) as count FROM gift_collections").get();
115
+ const models = db.prepare("SELECT COUNT(*) as count FROM gift_models").get();
116
+ const history = db.prepare("SELECT COUNT(*) as count FROM price_history").get();
117
+ const lastUpdate = db.prepare("SELECT MAX(updated_at) as last FROM gift_collections").get();
118
+ return {
119
+ collections: collections.count,
120
+ models: models.count,
121
+ historyEntries: history.count,
122
+ lastUpdate: lastUpdate.last
123
+ };
124
+ }
125
+
126
+ export {
127
+ initScraperDb,
128
+ upsertCollection,
129
+ getCollectionId,
130
+ upsertModel,
131
+ addPriceHistory,
132
+ getScraperStats
133
+ };
package/dist/cli/index.js CHANGED
@@ -17,7 +17,8 @@ import {
17
17
  saveWallet,
18
18
  validateApiKeyFormat,
19
19
  walletExists
20
- } from "../chunk-ZZHZSPHQ.js";
20
+ } from "../chunk-74MTM3AB.js";
21
+ import "../chunk-DUW5VBAZ.js";
21
22
  import "../chunk-OQGNS2FV.js";
22
23
  import "../chunk-TBIMVWQZ.js";
23
24
  import {
package/dist/index.js CHANGED
@@ -1,7 +1,8 @@
1
1
  import {
2
2
  TonnetApp,
3
3
  main
4
- } from "./chunk-ZZHZSPHQ.js";
4
+ } from "./chunk-74MTM3AB.js";
5
+ import "./chunk-DUW5VBAZ.js";
5
6
  import "./chunk-OQGNS2FV.js";
6
7
  import "./chunk-TBIMVWQZ.js";
7
8
  import "./chunk-WMIN6AGX.js";
@@ -1,3 +1,11 @@
1
+ import {
2
+ addPriceHistory,
3
+ getCollectionId,
4
+ getScraperStats,
5
+ initScraperDb,
6
+ upsertCollection,
7
+ upsertModel
8
+ } from "./chunk-DUW5VBAZ.js";
1
9
  import {
2
10
  MARKETAPP_BASE_URL
3
11
  } from "./chunk-WMIN6AGX.js";
@@ -19,136 +27,11 @@ import {
19
27
  SCRAPER_SCROLL_PADDING_PX,
20
28
  SCRAPER_SCROLL_STEP_MS
21
29
  } from "./chunk-LJXYESJJ.js";
22
- import {
23
- TELETON_ROOT
24
- } from "./chunk-EYWNOHMJ.js";
30
+ import "./chunk-EYWNOHMJ.js";
25
31
  import "./chunk-QGM4M3NI.js";
26
32
 
27
33
  // src/market/scraper.ts
28
34
  import { chromium } from "playwright";
29
-
30
- // src/market/scraper-db.ts
31
- import Database from "better-sqlite3";
32
- import { join } from "path";
33
- var DB_PATH = join(TELETON_ROOT, "gifts.db");
34
- function initScraperDb() {
35
- const db = new Database(DB_PATH);
36
- db.pragma("journal_mode = WAL");
37
- db.exec(`
38
- -- Gift collections (Plush Pepes, Heart Lockets, etc.)
39
- CREATE TABLE IF NOT EXISTS gift_collections (
40
- id INTEGER PRIMARY KEY AUTOINCREMENT,
41
- address TEXT UNIQUE NOT NULL,
42
- name TEXT NOT NULL,
43
- floor_ton REAL,
44
- floor_usd REAL,
45
- volume_7d REAL,
46
- listed_count INTEGER,
47
- owners INTEGER,
48
- supply INTEGER,
49
- created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
50
- updated_at DATETIME DEFAULT CURRENT_TIMESTAMP
51
- );
52
-
53
- -- Models per collection (Cozy Galaxy, Milano, etc.)
54
- CREATE TABLE IF NOT EXISTS gift_models (
55
- id INTEGER PRIMARY KEY AUTOINCREMENT,
56
- collection_id INTEGER NOT NULL,
57
- name TEXT NOT NULL,
58
- floor_ton REAL,
59
- rarity_percent REAL,
60
- count INTEGER,
61
- created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
62
- updated_at DATETIME DEFAULT CURRENT_TIMESTAMP,
63
- FOREIGN KEY (collection_id) REFERENCES gift_collections(id),
64
- UNIQUE(collection_id, name)
65
- );
66
-
67
- -- Price history (for trends)
68
- CREATE TABLE IF NOT EXISTS price_history (
69
- id INTEGER PRIMARY KEY AUTOINCREMENT,
70
- collection_id INTEGER,
71
- model_id INTEGER,
72
- floor_ton REAL NOT NULL,
73
- floor_usd REAL,
74
- timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
75
- FOREIGN KEY (collection_id) REFERENCES gift_collections(id),
76
- FOREIGN KEY (model_id) REFERENCES gift_models(id)
77
- );
78
-
79
- -- Indexes for frequent queries
80
- CREATE INDEX IF NOT EXISTS idx_price_history_collection ON price_history(collection_id, timestamp);
81
- CREATE INDEX IF NOT EXISTS idx_price_history_model ON price_history(model_id, timestamp);
82
- CREATE INDEX IF NOT EXISTS idx_models_collection ON gift_models(collection_id);
83
- `);
84
- return db;
85
- }
86
- function upsertCollection(db, collection) {
87
- const stmt = db.prepare(`
88
- INSERT INTO gift_collections (address, name, floor_ton, floor_usd, volume_7d, updated_at)
89
- VALUES (@address, @name, @floor_ton, @floor_usd, @volume_7d, CURRENT_TIMESTAMP)
90
- ON CONFLICT(address) DO UPDATE SET
91
- name = @name,
92
- floor_ton = @floor_ton,
93
- floor_usd = @floor_usd,
94
- volume_7d = @volume_7d,
95
- updated_at = CURRENT_TIMESTAMP
96
- RETURNING id
97
- `);
98
- const result = stmt.get({
99
- address: collection.address,
100
- name: collection.name,
101
- floor_ton: collection.floorTON || null,
102
- floor_usd: collection.floorUSD || null,
103
- volume_7d: collection.volume7d || null
104
- });
105
- return result.id;
106
- }
107
- function getCollectionId(db, address) {
108
- const row = db.prepare(`SELECT id FROM gift_collections WHERE address = ?`).get(address);
109
- return row?.id ?? null;
110
- }
111
- function upsertModel(db, collectionId, model) {
112
- const stmt = db.prepare(`
113
- INSERT INTO gift_models (collection_id, name, floor_ton, rarity_percent, count, updated_at)
114
- VALUES (@collection_id, @name, @floor_ton, @rarity_percent, @count, CURRENT_TIMESTAMP)
115
- ON CONFLICT(collection_id, name) DO UPDATE SET
116
- floor_ton = @floor_ton,
117
- rarity_percent = @rarity_percent,
118
- count = @count,
119
- updated_at = CURRENT_TIMESTAMP
120
- RETURNING id
121
- `);
122
- const result = stmt.get({
123
- collection_id: collectionId,
124
- name: model.name,
125
- floor_ton: model.floor || null,
126
- rarity_percent: model.pct ? parseFloat(model.pct) : null,
127
- count: model.count || null
128
- });
129
- return result.id;
130
- }
131
- function addPriceHistory(db, collectionId, modelId, floorTon, floorUsd = null) {
132
- const stmt = db.prepare(`
133
- INSERT INTO price_history (collection_id, model_id, floor_ton, floor_usd)
134
- VALUES (?, ?, ?, ?)
135
- `);
136
- stmt.run(collectionId, modelId, floorTon, floorUsd);
137
- }
138
- function getScraperStats(db) {
139
- const collections = db.prepare("SELECT COUNT(*) as count FROM gift_collections").get();
140
- const models = db.prepare("SELECT COUNT(*) as count FROM gift_models").get();
141
- const history = db.prepare("SELECT COUNT(*) as count FROM price_history").get();
142
- const lastUpdate = db.prepare("SELECT MAX(updated_at) as last FROM gift_collections").get();
143
- return {
144
- collections: collections.count,
145
- models: models.count,
146
- historyEntries: history.count,
147
- lastUpdate: lastUpdate.last
148
- };
149
- }
150
-
151
- // src/market/scraper.ts
152
35
  async function scrapeAllModels(page, collection, db) {
153
36
  try {
154
37
  const url = `${MARKETAPP_BASE_URL}/collection/${collection.address}/?tab=nfts`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "teleton",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "description": "Personal AI Agent for Telegram",
5
5
  "author": "ZKProof (https://t.me/zkproof)",
6
6
  "license": "MIT",