dactyclaw 1.0.0 → 1.0.1

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.
@@ -19,12 +19,11 @@ program
19
19
 
20
20
  let devAddress = options.developer;
21
21
  if (!devAddress) {
22
- console.log(`\n⚠️ No developer fee address provided.`);
23
- console.log(`💡 You can earn 80% of Clanker fees by providing your wallet address.`);
24
- console.log(`💡 Example: npx dacty-launch --developer 0xYourWalletAddress\n`);
25
- devAddress = '0x0000000000000000000000000000000000000000'; // placeholder or random
22
+ console.log(`\n💡 No developer address provided, auto-filling with agent's wallet address.`);
23
+ console.log(`💡 The agent (${config.address}) will receive the 80% trading fees.`);
24
+ devAddress = config.address;
26
25
  } else {
27
- console.log(`💰 Developer fee recipient set to: ${devAddress}`);
26
+ console.log(`💰 Developer fee recipient manually set to: ${devAddress}`);
28
27
  }
29
28
 
30
29
  console.log(`\n🚀 Ready to launch on Base!`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dactyclaw",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "**Agent Monitor & Deployer for Clawn Ecosystem on Base**",
5
5
  "main": "proxy.js",
6
6
  "bin": {