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.
- package/bin/dacty-create.js +4 -1
- package/bin/dacty-launch.js +1 -1
- package/package.json +1 -1
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
|
@@ -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')
|