dactyclaw 1.2.0 → 1.3.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/dacty-create.js +4 -1
- package/bin/dacty-launch.js +3 -1
- package/package.json +3 -2
package/bin/dacty-create.js
CHANGED
|
@@ -38,7 +38,10 @@ program
|
|
|
38
38
|
console.log(`Wallet: ${wallet.address}`);
|
|
39
39
|
console.log(`\n⚠️ Private key saved to .env (DO NOT COMMIT THIS FILE)`);
|
|
40
40
|
console.log(`📄 Agent config saved to agent.json`);
|
|
41
|
-
console.log(`\
|
|
41
|
+
console.log(`\n💳 FUNDING REQUIRED:`);
|
|
42
|
+
console.log(` Please send at least 0.0005 ETH (Base) to the Agent Wallet:`);
|
|
43
|
+
console.log(` ${wallet.address}`);
|
|
44
|
+
console.log(`\nNext step: Run 'npx dacty-launch' to auto-deploy token on Base`);
|
|
42
45
|
});
|
|
43
46
|
|
|
44
47
|
program.parse(process.argv);
|
package/bin/dacty-launch.js
CHANGED
|
@@ -15,7 +15,9 @@ program
|
|
|
15
15
|
.action(async (options) => {
|
|
16
16
|
const configPath = path.join(process.cwd(), 'agent.json');
|
|
17
17
|
if (!fs.existsSync(configPath)) {
|
|
18
|
-
console.error('❌ Error: agent.json not found.
|
|
18
|
+
console.error('❌ Error: agent.json not found. You must create an Agent first!');
|
|
19
|
+
console.error('\n💡 To create an agent, run this command with your desired Name and Ticker:');
|
|
20
|
+
console.error(' npx dacty-create "MyAgentName" --ticker "TICKER"');
|
|
19
21
|
process.exit(1);
|
|
20
22
|
}
|
|
21
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dactyclaw",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "**Agent Monitor & Deployer for Clawn Ecosystem on Base**",
|
|
5
5
|
"main": "proxy.js",
|
|
6
6
|
"bin": {
|
|
@@ -30,5 +30,6 @@
|
|
|
30
30
|
"dotenv": "^17.3.1",
|
|
31
31
|
"ethers": "^6.16.0",
|
|
32
32
|
"viem": "^2.46.3"
|
|
33
|
-
}
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {}
|
|
34
35
|
}
|