@aiaiaichain/agent 0.1.6 → 0.1.7

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.
Files changed (121) hide show
  1. package/dist/api/ExtensionAPI.d.ts +0 -1
  2. package/dist/api/ExtensionAPI.js +3 -7
  3. package/dist/api/Registry.d.ts +0 -1
  4. package/dist/api/Registry.js +54 -57
  5. package/dist/cli.d.ts +0 -1
  6. package/dist/cli.js +683 -686
  7. package/dist/core/AgentDir.d.ts +1 -1
  8. package/dist/core/AgentDir.js +45 -39
  9. package/dist/core/ChainConfig.d.ts +0 -1
  10. package/dist/core/ChainConfig.js +51 -55
  11. package/dist/core/EnvLoader.d.ts +4 -1
  12. package/dist/core/EnvLoader.js +97 -84
  13. package/dist/core/SystemMonitor.d.ts +0 -1
  14. package/dist/core/SystemMonitor.js +72 -85
  15. package/dist/index.d.ts +0 -1
  16. package/dist/index.js +19 -26
  17. package/dist/loader.d.ts +0 -1
  18. package/dist/loader.js +64 -67
  19. package/dist/mcp/entry.d.ts +0 -1
  20. package/dist/mcp/entry.js +3 -6
  21. package/dist/mcp/server.d.ts +0 -1
  22. package/dist/mcp/server.js +152 -156
  23. package/dist/models/CostTracker.d.ts +0 -1
  24. package/dist/models/CostTracker.js +58 -61
  25. package/dist/models/ModelRegistry.d.ts +0 -1
  26. package/dist/models/ModelRegistry.js +195 -155
  27. package/dist/providers/ProviderRegistry.d.ts +0 -1
  28. package/dist/providers/ProviderRegistry.js +33 -36
  29. package/dist/runner/AgentRunner.d.ts +0 -1
  30. package/dist/runner/AgentRunner.js +180 -184
  31. package/dist/runner/ModelClient.d.ts +0 -1
  32. package/dist/runner/ModelClient.js +133 -134
  33. package/dist/runner/SwarmRouter.d.ts +0 -1
  34. package/dist/runner/SwarmRouter.js +18 -22
  35. package/dist/runner/ToolDispatcher.d.ts +0 -1
  36. package/dist/runner/ToolDispatcher.js +30 -33
  37. package/dist/scheduler/AgentScheduler.d.ts +0 -1
  38. package/dist/scheduler/AgentScheduler.js +99 -103
  39. package/dist/session/ContextStore.d.ts +1 -1
  40. package/dist/session/ContextStore.js +76 -78
  41. package/dist/session/GoalManager.d.ts +0 -1
  42. package/dist/session/GoalManager.js +96 -100
  43. package/dist/session/MemoryStore.d.ts +2 -1
  44. package/dist/session/MemoryStore.js +108 -87
  45. package/dist/session/SessionManager.d.ts +5 -4
  46. package/dist/session/SessionManager.js +83 -62
  47. package/dist/session/SessionStore.d.ts +0 -1
  48. package/dist/session/SessionStore.js +112 -116
  49. package/dist/setup/SetupWizard.d.ts +0 -1
  50. package/dist/setup/SetupWizard.js +61 -64
  51. package/dist/tools/CrossTools.d.ts +0 -1
  52. package/dist/tools/CrossTools.js +140 -144
  53. package/dist/tools/GmgnIntegration.d.ts +0 -1
  54. package/dist/tools/GmgnIntegration.js +220 -230
  55. package/dist/tools/MarketSentiment.d.ts +0 -1
  56. package/dist/tools/MarketSentiment.js +213 -195
  57. package/dist/tools/NewsSentiment.d.ts +0 -1
  58. package/dist/tools/NewsSentiment.js +126 -130
  59. package/dist/tools/PriceFeed.d.ts +6 -1
  60. package/dist/tools/PriceFeed.js +201 -133
  61. package/dist/tools/TechnicalAnalysis.d.ts +1 -2
  62. package/dist/tools/TechnicalAnalysis.js +248 -216
  63. package/dist/tools/TechnicalAnalysis.worker.d.ts +25 -0
  64. package/dist/tools/TechnicalAnalysis.worker.js +92 -0
  65. package/dist/tools/TokenCalendar.d.ts +0 -1
  66. package/dist/tools/TokenCalendar.js +63 -68
  67. package/dist/tools/TokenSecurityScanner.d.ts +0 -1
  68. package/dist/tools/TokenSecurityScanner.js +93 -96
  69. package/dist/tools/TransactionSim.d.ts +0 -1
  70. package/dist/tools/TransactionSim.js +65 -71
  71. package/dist/tui/App.d.ts +0 -1
  72. package/dist/tui/App.js +895 -824
  73. package/dist/tui/ModelSelector.d.ts +0 -1
  74. package/dist/tui/ModelSelector.js +46 -49
  75. package/dist/tui/REPL.d.ts +0 -1
  76. package/dist/tui/REPL.js +222 -210
  77. package/dist/tui/Sparkline.d.ts +0 -1
  78. package/dist/tui/Sparkline.js +36 -37
  79. package/dist/tui/StatusBar.d.ts +0 -1
  80. package/dist/tui/StatusBar.js +9 -10
  81. package/dist/tui/ThemePresets.d.ts +0 -1
  82. package/dist/tui/ThemePresets.js +99 -103
  83. package/dist/tui/theme.d.ts +0 -1
  84. package/dist/tui/theme.js +50 -31
  85. package/dist/util/clipboard.d.ts +0 -1
  86. package/dist/util/clipboard.js +16 -20
  87. package/dist/util/commandSuggest.d.ts +0 -1
  88. package/dist/util/commandSuggest.js +34 -38
  89. package/dist/util/confirmation.d.ts +0 -1
  90. package/dist/util/confirmation.js +8 -11
  91. package/dist/util/errorHandler.d.ts +0 -1
  92. package/dist/util/errorHandler.js +20 -23
  93. package/dist/util/errors.d.ts +59 -0
  94. package/dist/util/errors.js +93 -0
  95. package/dist/util/logger.d.ts +0 -1
  96. package/dist/util/logger.js +30 -33
  97. package/dist/util/processManager.d.ts +0 -1
  98. package/dist/util/processManager.js +33 -36
  99. package/dist/util/resilientFetch.d.ts +6 -1
  100. package/dist/util/resilientFetch.js +134 -80
  101. package/dist/util/responseCache.d.ts +0 -1
  102. package/dist/util/responseCache.js +36 -45
  103. package/dist/util/rpc.d.ts +16 -0
  104. package/dist/util/rpc.js +69 -0
  105. package/dist/util/safeLog.d.ts +0 -1
  106. package/dist/util/safeLog.js +52 -53
  107. package/dist/util/scheduler.d.ts +0 -1
  108. package/dist/util/scheduler.js +53 -58
  109. package/dist/util/webhooks.d.ts +0 -1
  110. package/dist/util/webhooks.js +54 -58
  111. package/dist/wallet/ActionFeed.d.ts +0 -1
  112. package/dist/wallet/ActionFeed.js +189 -200
  113. package/dist/wallet/AgentWallet.d.ts +7 -8
  114. package/dist/wallet/AgentWallet.js +117 -144
  115. package/dist/wallet/ProfitTracker.d.ts +0 -1
  116. package/dist/wallet/ProfitTracker.js +71 -74
  117. package/package.json +11 -6
  118. package/scripts/build-esbuild.mjs +40 -0
  119. package/scripts/bundle-dts.mjs +58 -0
  120. package/scripts/minify.mjs +44 -0
  121. package/scripts/postinstall.js +27 -0
@@ -1,206 +1,195 @@
1
- /**
2
- * ActionFeed — reads agent wallet activity via public RPC.
3
- * Parses Pump.fun Buy + BurnChecked events from inner instructions.
4
- * Checks the ACTION wallet (GmFrDZT...) for transaction signatures.
5
- * Fees are calculated as 0.5% of each action's USD value.
6
- */
1
+
7
2
  import { Type } from "@sinclair/typebox";
8
3
  import { ACTION_WALLET, AIAIAI_MINT } from "./AgentWallet.js";
9
- import { resilientFetch } from "../util/resilientFetch.js";
4
+ import { rpcCall } from "../util/rpc.js";
10
5
  import { logger } from "../util/logger.js";
11
- function getRpcUrl() {
12
- return process.env.SOLANA_RPC_URL || "https://api.mainnet-beta.solana.com";
13
- }
14
- async function rpcCall(method, params = []) {
15
- const response = await resilientFetch(getRpcUrl(), {
16
- timeout: 15_000,
17
- retries: 2,
18
- method: "POST",
19
- headers: { "Content-Type": "application/json" },
20
- body: JSON.stringify({ jsonrpc: "2.0", id: 1, method, params }),
21
- });
22
- const data = await response.json();
23
- if (data.error)
24
- throw new Error(data.error.message || 'Unknown RPC error');
25
- return data.result;
26
- }
27
6
  export class ActionFeed {
28
- actions = [];
29
- lastSignature = "";
30
- lastFetch = 0;
31
- cacheDuration = 60_000;
32
- fees = { buyFees: 0, burnFees: 0, total: 0 };
33
- _price = 0.0004;
34
- async refresh() {
35
- if (Date.now() - this.lastFetch < this.cacheDuration)
36
- return;
37
- this.lastFetch = Date.now();
38
- try {
39
- const signatures = await rpcCall("getSignaturesForAddress", [
40
- ACTION_WALLET,
41
- { limit: 30 },
42
- ]);
43
- if (!signatures || signatures.length === 0)
44
- return;
45
- for (const sigInfo of signatures) {
46
- if (sigInfo.signature === this.lastSignature)
47
- break;
48
- await this.processTransaction(sigInfo.signature);
49
- }
50
- if (signatures.length > 0) {
51
- this.lastSignature = signatures[0].signature;
52
- }
53
- }
54
- catch (error) {
55
- logger.debug('ActionFeed', 'refresh failed', { error: error.message });
56
- }
57
- }
58
- async processTransaction(signature) {
59
- try {
60
- const tx = await rpcCall("getTransaction", [
61
- signature,
62
- { encoding: "jsonParsed", maxSupportedTransactionVersion: 0 },
63
- ]);
64
- if (!tx || !tx.meta)
65
- return;
66
- // Parse inner instructions for Pump.fun Buy + BurnChecked on AIAIAI
67
- const innerInstructions = tx.meta.innerInstructions ?? [];
68
- let buyAmount = 0;
69
- let burnAmount = 0;
70
- for (const inner of innerInstructions) {
71
- for (const ix of (inner.instructions ?? [])) {
72
- // Pump.fun Buy: transferChecked of AIAIAI from pool to hot wallet
73
- if (ix.parsed?.type === "transferChecked" &&
74
- ix.parsed.info?.mint === AIAIAI_MINT) {
75
- const amt = parseFloat(ix.parsed.info?.tokenAmount?.uiAmount ?? "0");
76
- if (amt > 1)
77
- buyAmount += amt;
78
- }
79
- // Burn: burnChecked of AIAIAI
80
- if (ix.parsed?.type === "burnChecked" &&
81
- ix.parsed.info?.mint === AIAIAI_MINT) {
82
- const amt = parseFloat(ix.parsed.info?.tokenAmount?.uiAmount ?? "0");
83
- if (amt > 0)
84
- burnAmount += amt;
85
- }
86
- }
87
- }
88
- // Fallback: scan token balance changes for any AIAIAI account
89
- if (buyAmount === 0 && burnAmount === 0) {
90
- const preBalances = tx.meta.preTokenBalances ?? [];
91
- const postBalances = tx.meta.postTokenBalances ?? [];
92
- for (const post of postBalances) {
93
- if (post.mint !== AIAIAI_MINT)
94
- continue;
95
- const pre = preBalances.find((p) => p.accountIndex === post.accountIndex && p.mint === AIAIAI_MINT);
96
- const preAmt = pre ? parseFloat(pre.uiTokenAmount?.uiAmount ?? "0") : 0;
97
- const postAmt = parseFloat(post.uiTokenAmount?.uiAmount ?? "0");
98
- const diff = postAmt - preAmt;
99
- if (Math.abs(diff) < 0.000001)
100
- continue;
101
- if (diff > 0)
102
- buyAmount += diff;
103
- else
104
- burnAmount += Math.abs(diff);
105
- }
106
- }
107
- // Record
108
- if (buyAmount > 0) {
109
- const usdValue = buyAmount * this._price;
110
- const fee = usdValue * 0.005;
111
- this.fees.buyFees += fee;
112
- this.fees.total = this.fees.buyFees + this.fees.burnFees;
113
- this.actions.unshift({
114
- id: signature.slice(0, 10),
115
- type: "buy", amount: buyAmount, token: "AIAIAI", usdValue,
116
- timestamp: (tx.blockTime ?? Math.floor(Date.now() / 1000)) * 1000,
117
- signature,
118
- });
119
- }
120
- if (burnAmount > 0) {
121
- const usdValue = burnAmount * this._price;
122
- const fee = usdValue * 0.005;
123
- this.fees.burnFees += fee;
124
- this.fees.total = this.fees.buyFees + this.fees.burnFees;
125
- this.actions.unshift({
126
- id: signature.slice(0, 10) + "-b",
127
- type: "burn", amount: burnAmount, token: "AIAIAI", usdValue,
128
- timestamp: (tx.blockTime ?? Math.floor(Date.now() / 1000)) * 1000,
129
- signature,
130
- });
131
- }
132
- if (this.actions.length > 100)
133
- this.actions = this.actions.slice(0, 100);
134
- }
135
- catch (error) {
136
- logger.debug('ActionFeed', 'Failed to parse tx', { error: error.message });
137
- }
138
- }
139
- setPrice(p) {
140
- if (p > 0)
141
- this._price = p;
142
- }
143
- getActions() { return [...this.actions]; }
144
- getRecentActions(limit = 10) { return this.actions.slice(0, limit); }
145
- getFees() { return { ...this.fees }; }
146
- getActionSummary() {
147
- const buys = this.actions.filter(a => a.type === "buy");
148
- const burns = this.actions.filter(a => a.type === "burn");
149
- return {
150
- buys: buys.length, burns: burns.length,
151
- totalBought: buys.reduce((s, a) => s + a.amount, 0),
152
- totalBurned: burns.reduce((s, a) => s + a.amount, 0),
153
- };
154
- }
155
- // ── Tools ───────────────────────────────────────────────────────────────
156
- getActionsParams = Type.Object({
157
- limit: Type.Optional(Type.Number({ description: "Number of recent actions", default: 10 })),
158
- });
159
- getFeesParams = Type.Object({});
160
- async getActionsTool(_id, params) {
161
- const limit = params.limit || 10;
162
- const actions = this.getRecentActions(limit);
163
- if (actions.length === 0) {
164
- return {
165
- content: [{
166
- type: "text",
167
- text: [
168
- "No buy/burn actions detected yet.",
169
- `Action wallet: ${ACTION_WALLET.slice(0, 8)}…${ACTION_WALLET.slice(-6)}`,
170
- "Actions appear when the agent buys and burns $AIAIAI via Pump.fun.",
171
- ].join("\n"),
172
- }],
173
- };
174
- }
175
- const summary = this.getActionSummary();
176
- const lines = [
177
- `🔄 Recent Actions (${actions.length})`,
178
- ` Buys: ${summary.buys} (${summary.totalBought.toLocaleString()} $AIAIAI)`,
179
- ` Burns: ${summary.burns} (${summary.totalBurned.toLocaleString()} $AIAIAI)`,
180
- "",
181
- ...actions.map(a => {
182
- const icon = a.type === "buy" ? "↗" : "🔥";
183
- const time = new Date(a.timestamp).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit" });
184
- return ` ${icon} ${time} ${a.type.toUpperCase().padEnd(4)} ${a.amount.toLocaleString()} $AIAIAI ($${a.usdValue.toFixed(2)})`;
185
- }),
186
- ];
187
- return { content: [{ type: "text", text: lines.join("\n") }] };
188
- }
189
- async getFeesTool() {
190
- const f = this.getFees();
191
- return {
192
- content: [{
193
- type: "text",
194
- text: [
195
- `💵 Agent Fees (0.5% per action)`,
196
- ` Buy fees: $${f.buyFees.toFixed(4)}`,
197
- ` Burn fees: $${f.burnFees.toFixed(4)}`,
198
- ` ─────────────────────`,
199
- ` Total: $${f.total.toFixed(4)}`,
200
- ].join("\n"),
201
- }],
202
- };
203
- }
7
+ actions = [];
8
+ lastSignature = "";
9
+ lastFetch = 0;
10
+ cacheDuration = 60_000;
11
+ fees = { buyFees: 0, burnFees: 0, total: 0 };
12
+ _price = 0.0004;
13
+ async refresh() {
14
+ if (Date.now() - this.lastFetch < this.cacheDuration)
15
+ return;
16
+ this.lastFetch = Date.now();
17
+ try {
18
+ const signatures = await rpcCall("getSignaturesForAddress", [
19
+ ACTION_WALLET,
20
+ { limit: 30 },
21
+ ]);
22
+ if (!signatures || signatures.length === 0)
23
+ return;
24
+ for (const sigInfo of signatures) {
25
+ if (sigInfo.signature === this.lastSignature)
26
+ break;
27
+ await this.processTransaction(sigInfo.signature);
28
+ }
29
+ if (signatures.length > 0) {
30
+ this.lastSignature = signatures[0].signature;
31
+ }
32
+ }
33
+ catch (error) {
34
+ logger.debug('ActionFeed', 'refresh failed', { error: error.message });
35
+ }
36
+ }
37
+ async processTransaction(signature) {
38
+ try {
39
+ const tx = await rpcCall("getTransaction", [
40
+ signature,
41
+ { encoding: "jsonParsed", maxSupportedTransactionVersion: 0 },
42
+ ]);
43
+ if (!tx || !tx.meta)
44
+ return;
45
+
46
+ const innerInstructions = tx.meta.innerInstructions ?? [];
47
+ let buyAmount = 0;
48
+ let burnAmount = 0;
49
+ let hasAiaiaiMint = false;
50
+ for (const inner of innerInstructions) {
51
+ for (const ix of (inner.instructions ?? [])) {
52
+ const mint = ix.parsed?.info?.mint;
53
+ if (mint)
54
+ hasAiaiaiMint = true;
55
+
56
+ if (ix.parsed?.type === "transferChecked" &&
57
+ ix.parsed.info?.mint === AIAIAI_MINT) {
58
+ const amt = parseFloat(ix.parsed.info?.tokenAmount?.uiAmount ?? "0");
59
+ if (amt > 1)
60
+ buyAmount += amt;
61
+ }
62
+
63
+ if (ix.parsed?.type === "burnChecked" &&
64
+ ix.parsed.info?.mint === AIAIAI_MINT) {
65
+ const amt = parseFloat(ix.parsed.info?.tokenAmount?.uiAmount ?? "0");
66
+ if (amt > 0)
67
+ burnAmount += amt;
68
+ }
69
+ }
70
+ }
71
+
72
+ if (!hasAiaiaiMint && buyAmount === 0 && burnAmount === 0)
73
+ return;
74
+
75
+ if (buyAmount === 0 && burnAmount === 0) {
76
+ const preBalances = tx.meta.preTokenBalances ?? [];
77
+ const postBalances = tx.meta.postTokenBalances ?? [];
78
+ for (const post of postBalances) {
79
+ if (post.mint !== AIAIAI_MINT)
80
+ continue;
81
+ const pre = preBalances.find((p) => p.accountIndex === post.accountIndex && p.mint === AIAIAI_MINT);
82
+ const preAmt = pre ? parseFloat(pre.uiTokenAmount?.uiAmount ?? "0") : 0;
83
+ const postAmt = parseFloat(post.uiTokenAmount?.uiAmount ?? "0");
84
+ const diff = postAmt - preAmt;
85
+ if (Math.abs(diff) < 0.000001)
86
+ continue;
87
+ if (diff > 0)
88
+ buyAmount += diff;
89
+ else
90
+ burnAmount += Math.abs(diff);
91
+ }
92
+ }
93
+
94
+ if (buyAmount > 0) {
95
+ const usdValue = buyAmount * this._price;
96
+ const fee = usdValue * 0.005;
97
+ this.fees.buyFees += fee;
98
+ this.fees.total = this.fees.buyFees + this.fees.burnFees;
99
+ this.actions.unshift({
100
+ id: signature.slice(0, 10),
101
+ type: "buy", amount: buyAmount, token: "AIAIAI", usdValue,
102
+ timestamp: (tx.blockTime ?? Math.floor(Date.now() / 1000)) * 1000,
103
+ signature,
104
+ });
105
+ }
106
+ if (burnAmount > 0) {
107
+ const usdValue = burnAmount * this._price;
108
+ const fee = usdValue * 0.005;
109
+ this.fees.burnFees += fee;
110
+ this.fees.total = this.fees.buyFees + this.fees.burnFees;
111
+ this.actions.unshift({
112
+ id: signature.slice(0, 10) + "-b",
113
+ type: "burn", amount: burnAmount, token: "AIAIAI", usdValue,
114
+ timestamp: (tx.blockTime ?? Math.floor(Date.now() / 1000)) * 1000,
115
+ signature,
116
+ });
117
+ }
118
+
119
+ if (this.actions.length > 100) {
120
+
121
+ const keep = Math.ceil(this.actions.length * 0.8);
122
+ this.actions = this.actions.slice(0, Math.max(keep, 100));
123
+ }
124
+ }
125
+ catch (error) {
126
+ logger.debug('ActionFeed', 'Failed to parse tx', { error: error.message });
127
+ }
128
+ }
129
+ setPrice(p) {
130
+ if (p > 0)
131
+ this._price = p;
132
+ }
133
+ getActions() { return [...this.actions]; }
134
+ getRecentActions(limit = 10) { return this.actions.slice(0, limit); }
135
+ getFees() { return { ...this.fees }; }
136
+ getActionSummary() {
137
+ const buys = this.actions.filter(a => a.type === "buy");
138
+ const burns = this.actions.filter(a => a.type === "burn");
139
+ return {
140
+ buys: buys.length, burns: burns.length,
141
+ totalBought: buys.reduce((s, a) => s + a.amount, 0),
142
+ totalBurned: burns.reduce((s, a) => s + a.amount, 0),
143
+ };
144
+ }
145
+
146
+ getActionsParams = Type.Object({
147
+ limit: Type.Optional(Type.Number({ description: "Number of recent actions", default: 10 })),
148
+ });
149
+ getFeesParams = Type.Object({});
150
+ async getActionsTool(_id, params) {
151
+ const limit = params.limit || 10;
152
+ const actions = this.getRecentActions(limit);
153
+ if (actions.length === 0) {
154
+ return {
155
+ content: [{
156
+ type: "text",
157
+ text: [
158
+ "No buy/burn actions detected yet.",
159
+ `Action wallet: ${ACTION_WALLET.slice(0, 8)}…${ACTION_WALLET.slice(-6)}`,
160
+ "Actions appear when the agent buys and burns $AIAIAI via Pump.fun.",
161
+ ].join("\n"),
162
+ }],
163
+ };
164
+ }
165
+ const summary = this.getActionSummary();
166
+ const lines = [
167
+ `🔄 Recent Actions (${actions.length})`,
168
+ ` Buys: ${summary.buys} (${summary.totalBought.toLocaleString()} $AIAIAI)`,
169
+ ` Burns: ${summary.burns} (${summary.totalBurned.toLocaleString()} $AIAIAI)`,
170
+ "",
171
+ ...actions.map(a => {
172
+ const icon = a.type === "buy" ? "↗" : "🔥";
173
+ const time = new Date(a.timestamp).toLocaleTimeString([], { hour: "2-digit", minute: "2-digit" });
174
+ return ` ${icon} ${time} ${a.type.toUpperCase().padEnd(4)} ${a.amount.toLocaleString()} $AIAIAI ($${a.usdValue.toFixed(2)})`;
175
+ }),
176
+ ];
177
+ return { content: [{ type: "text", text: lines.join("\n") }] };
178
+ }
179
+ async getFeesTool() {
180
+ const f = this.getFees();
181
+ return {
182
+ content: [{
183
+ type: "text",
184
+ text: [
185
+ `💵 Agent Fees (0.5% per action)`,
186
+ ` Buy fees: $${f.buyFees.toFixed(4)}`,
187
+ ` Burn fees: $${f.burnFees.toFixed(4)}`,
188
+ ` ─────────────────────`,
189
+ ` Total: $${f.total.toFixed(4)}`,
190
+ ].join("\n"),
191
+ }],
192
+ };
193
+ }
204
194
  }
205
195
  export const actionFeed = new ActionFeed();
206
- //# sourceMappingURL=ActionFeed.js.map
@@ -8,13 +8,13 @@
8
8
  * Signer: GmFrDZT2cdrqykgTikVdXbe8EtCgzUDM9VsDhQnwsUsG (authority)
9
9
  */
10
10
  import type { ToolResult } from "../api/ExtensionAPI.js";
11
- export declare const ACTION_WALLET = "GmFrDZT2cdrqykgTikVdXbe8EtCgzUDM9VsDhQnwsUsG";
12
- export declare const HOT_WALLET = "BygDYM1ZXLQNC1HXLhnd1rHZ7E5XjioqT3vPjJFfjnU2";
13
- export declare const DEPOSIT_WALLET = "FBMDYpG9WXKy4SgxuATQdB2sCyzHsJWPrEr45z3TgL2e";
14
- export declare const COLD_WALLET = "A11iZoqEt6hU7HyggqC67ee4AtYmaJjwKCvJLerJRV2J";
15
- export declare const SIGNER = "GmFrDZT2cdrqykgTikVdXbe8EtCgzUDM9VsDhQnwsUsG";
16
- export declare const AIAIAI_MINT = "AVPJS61gZmWKtaEpb7qYPKo8Fk2xQUsayYQxPiPMpump";
17
- export declare const AIAIAI_TOKEN = "AVPJS61gZmWKtaEpb7qYPKo8Fk2xQUsayYQxPiPMpump";
11
+ export declare const ACTION_WALLET: "GmFrDZT2cdrqykgTikVdXbe8EtCgzUDM9VsDhQnwsUsG";
12
+ export declare const HOT_WALLET: "BygDYM1ZXLQNC1HXLhnd1rHZ7E5XjioqT3vPjJFfjnU2";
13
+ export declare const DEPOSIT_WALLET: "FBMDYpG9WXKy4SgxuATQdB2sCyzHsJWPrEr45z3TgL2e";
14
+ export declare const COLD_WALLET: "A11iZoqEt6hU7HyggqC67ee4AtYmaJjwKCvJLerJRV2J";
15
+ export declare const SIGNER: "GmFrDZT2cdrqykgTikVdXbe8EtCgzUDM9VsDhQnwsUsG";
16
+ export declare const AIAIAI_MINT: "AVPJS61gZmWKtaEpb7qYPKo8Fk2xQUsayYQxPiPMpump";
17
+ export declare const AIAIAI_TOKEN: "AVPJS61gZmWKtaEpb7qYPKo8Fk2xQUsayYQxPiPMpump";
18
18
  export interface WalletBalance {
19
19
  address: string;
20
20
  sol: number;
@@ -43,4 +43,3 @@ export declare class AgentWallet {
43
43
  getDepositBalanceTool(): Promise<ToolResult>;
44
44
  }
45
45
  export declare const agentWallet: AgentWallet;
46
- //# sourceMappingURL=AgentWallet.d.ts.map