@aiaiaichain/agent 0.1.6 → 0.1.8
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.
- package/dist/api/ExtensionAPI.d.ts +0 -1
- package/dist/api/ExtensionAPI.js +3 -7
- package/dist/api/Registry.d.ts +0 -1
- package/dist/api/Registry.js +54 -57
- package/dist/cli.d.ts +0 -1
- package/dist/cli.js +364 -768
- package/dist/core/AgentDir.d.ts +1 -1
- package/dist/core/AgentDir.js +45 -39
- package/dist/core/ChainConfig.d.ts +0 -1
- package/dist/core/ChainConfig.js +51 -55
- package/dist/core/EnvLoader.d.ts +4 -1
- package/dist/core/EnvLoader.js +97 -84
- package/dist/core/SystemMonitor.d.ts +0 -1
- package/dist/core/SystemMonitor.js +70 -85
- package/dist/index.d.ts +4 -61
- package/dist/index.js +19 -26
- package/dist/loader.d.ts +0 -1
- package/dist/loader.js +64 -67
- package/dist/mcp/entry.d.ts +0 -1
- package/dist/mcp/entry.js +3 -6
- package/dist/mcp/server.d.ts +0 -1
- package/dist/mcp/server.js +152 -156
- package/dist/models/CostTracker.d.ts +0 -1
- package/dist/models/CostTracker.js +58 -61
- package/dist/models/ModelRegistry.d.ts +0 -1
- package/dist/models/ModelRegistry.js +195 -155
- package/dist/providers/ProviderRegistry.d.ts +0 -1
- package/dist/providers/ProviderRegistry.js +33 -36
- package/dist/runner/AgentRunner.d.ts +0 -1
- package/dist/runner/AgentRunner.js +180 -184
- package/dist/runner/ModelClient.d.ts +0 -1
- package/dist/runner/ModelClient.js +133 -134
- package/dist/runner/SwarmRouter.d.ts +0 -1
- package/dist/runner/SwarmRouter.js +17 -22
- package/dist/runner/ToolDispatcher.d.ts +0 -1
- package/dist/runner/ToolDispatcher.js +30 -33
- package/dist/scheduler/AgentScheduler.d.ts +0 -1
- package/dist/scheduler/AgentScheduler.js +99 -103
- package/dist/session/ContextStore.d.ts +1 -1
- package/dist/session/ContextStore.js +76 -78
- package/dist/session/GoalManager.d.ts +0 -1
- package/dist/session/GoalManager.js +96 -100
- package/dist/session/MemoryStore.d.ts +2 -1
- package/dist/session/MemoryStore.js +108 -87
- package/dist/session/SessionManager.d.ts +5 -4
- package/dist/session/SessionManager.js +83 -62
- package/dist/session/SessionStore.d.ts +0 -1
- package/dist/session/SessionStore.js +112 -116
- package/dist/setup/SetupWizard.d.ts +0 -1
- package/dist/setup/SetupWizard.js +61 -64
- package/dist/tools/CrossTools.d.ts +0 -1
- package/dist/tools/CrossTools.js +140 -144
- package/dist/tools/GmgnIntegration.d.ts +0 -1
- package/dist/tools/GmgnIntegration.js +220 -230
- package/dist/tools/MarketSentiment.d.ts +0 -1
- package/dist/tools/MarketSentiment.js +213 -195
- package/dist/tools/NewsSentiment.d.ts +0 -1
- package/dist/tools/NewsSentiment.js +126 -130
- package/dist/tools/PriceFeed.d.ts +6 -1
- package/dist/tools/PriceFeed.js +201 -133
- package/dist/tools/TechnicalAnalysis.d.ts +1 -2
- package/dist/tools/TechnicalAnalysis.js +248 -216
- package/dist/tools/TechnicalAnalysis.worker.d.ts +25 -0
- package/dist/tools/TechnicalAnalysis.worker.js +92 -0
- package/dist/tools/TokenCalendar.d.ts +0 -1
- package/dist/tools/TokenCalendar.js +63 -68
- package/dist/tools/TokenSecurityScanner.d.ts +0 -1
- package/dist/tools/TokenSecurityScanner.js +93 -96
- package/dist/tools/TransactionSim.d.ts +0 -1
- package/dist/tools/TransactionSim.js +65 -71
- package/dist/tui/App.d.ts +1 -7
- package/dist/tui/App.js +896 -825
- package/dist/tui/ModelSelector.d.ts +1 -3
- package/dist/tui/ModelSelector.js +47 -50
- package/dist/tui/REPL.d.ts +1 -3
- package/dist/tui/REPL.js +222 -210
- package/dist/tui/Sparkline.d.ts +1 -3
- package/dist/tui/Sparkline.js +38 -37
- package/dist/tui/StatusBar.d.ts +1 -3
- package/dist/tui/StatusBar.js +11 -10
- package/dist/tui/ThemePresets.d.ts +0 -1
- package/dist/tui/ThemePresets.js +99 -103
- package/dist/tui/theme.d.ts +0 -1
- package/dist/tui/theme.js +50 -31
- package/dist/util/clipboard.d.ts +0 -1
- package/dist/util/clipboard.js +16 -20
- package/dist/util/commandSuggest.d.ts +0 -1
- package/dist/util/commandSuggest.js +34 -38
- package/dist/util/confirmation.d.ts +0 -1
- package/dist/util/confirmation.js +8 -11
- package/dist/util/errorHandler.d.ts +0 -1
- package/dist/util/errorHandler.js +20 -23
- package/dist/util/errors.d.ts +59 -0
- package/dist/util/errors.js +93 -0
- package/dist/util/logger.d.ts +0 -1
- package/dist/util/logger.js +30 -33
- package/dist/util/processManager.d.ts +0 -1
- package/dist/util/processManager.js +33 -36
- package/dist/util/resilientFetch.d.ts +6 -1
- package/dist/util/resilientFetch.js +134 -80
- package/dist/util/responseCache.d.ts +0 -1
- package/dist/util/responseCache.js +36 -45
- package/dist/util/rpc.d.ts +16 -0
- package/dist/util/rpc.js +69 -0
- package/dist/util/safeLog.d.ts +0 -1
- package/dist/util/safeLog.js +52 -53
- package/dist/util/scheduler.d.ts +0 -1
- package/dist/util/scheduler.js +53 -58
- package/dist/util/webhooks.d.ts +0 -1
- package/dist/util/webhooks.js +54 -58
- package/dist/wallet/ActionFeed.d.ts +0 -1
- package/dist/wallet/ActionFeed.js +189 -200
- package/dist/wallet/AgentWallet.d.ts +7 -8
- package/dist/wallet/AgentWallet.js +117 -144
- package/dist/wallet/ProfitTracker.d.ts +0 -1
- package/dist/wallet/ProfitTracker.js +71 -74
- package/package.json +14 -8
- package/scripts/build-esbuild.mjs +40 -0
- package/scripts/bundle-dts.mjs +58 -0
- package/scripts/minify.mjs +44 -0
- package/scripts/postinstall.js +41 -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 {
|
|
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
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
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
|
|
12
|
-
export declare const HOT_WALLET
|
|
13
|
-
export declare const DEPOSIT_WALLET
|
|
14
|
-
export declare const COLD_WALLET
|
|
15
|
-
export declare const SIGNER
|
|
16
|
-
export declare const AIAIAI_MINT
|
|
17
|
-
export declare const AIAIAI_TOKEN
|
|
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
|