dactyclaw 1.2.1 → 1.3.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.
@@ -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(`\nNext step: Run 'npx dacty-launch --developer <your_address>' to deploy token on Base via Clanker`);
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);
@@ -6,7 +6,7 @@ const { program } = require('commander');
6
6
  const { createPublicClient, createWalletClient, http, formatEther } = require('viem');
7
7
  const { privateKeyToAccount } = require('viem/accounts');
8
8
  const { base } = require('viem/chains');
9
- const { Clanker } = require('clanker-sdk');
9
+ const { Clanker } = require('clanker-sdk/v4');
10
10
 
11
11
  program
12
12
  .version('1.0.0')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dactyclaw",
3
- "version": "1.2.1",
3
+ "version": "1.3.1",
4
4
  "description": "**Agent Monitor & Deployer for Clawn Ecosystem on Base**",
5
5
  "main": "proxy.js",
6
6
  "bin": {