dactyclaw 1.4.2 → 1.5.0
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/bin/dactyclaw.js +5 -3
- package/package.json +1 -1
package/bin/dactyclaw.js
CHANGED
|
@@ -49,6 +49,7 @@ program
|
|
|
49
49
|
const ticker = tickerInput || defaultTicker;
|
|
50
50
|
|
|
51
51
|
const description = await ask('? Agent Description (optional): ');
|
|
52
|
+
const imageUrl = await ask('? Token Image URL (optional): ');
|
|
52
53
|
|
|
53
54
|
// Wallet setup
|
|
54
55
|
const localWallet = ethers.Wallet.createRandom();
|
|
@@ -68,7 +69,9 @@ program
|
|
|
68
69
|
name,
|
|
69
70
|
ticker,
|
|
70
71
|
dnaId,
|
|
72
|
+
dnaId,
|
|
71
73
|
description: description || "An autonomous agent in the Dactyclaw ecosystem",
|
|
74
|
+
imageUrl: imageUrl || "",
|
|
72
75
|
network: "base",
|
|
73
76
|
createdAt: new Date().toISOString(),
|
|
74
77
|
wallet: { address: localWallet.address }
|
|
@@ -127,11 +130,10 @@ program
|
|
|
127
130
|
name,
|
|
128
131
|
symbol: ticker,
|
|
129
132
|
tokenAdmin: account.address,
|
|
130
|
-
image: "
|
|
133
|
+
image: imageUrl || "",
|
|
131
134
|
metadata: { description: description || "Deployed via Dactyclaw Seamless CLI", socialMediaUrls: [], auditUrls: [] },
|
|
132
135
|
context: { interface: "Dactyl", platform: "Dactyl", messageId: dnaId, id: ticker },
|
|
133
|
-
pool: { pairedToken: "WETH", positions: ROOT_POS_V4.Standard }
|
|
134
|
-
vault: { percentage: 0, lockupDuration: 604800 }
|
|
136
|
+
pool: { pairedToken: "WETH", initialMarketCap: "0.2", positions: ROOT_POS_V4.Standard }
|
|
135
137
|
};
|
|
136
138
|
|
|
137
139
|
console.log(`[1/3] Compiling Factory Payload...`);
|