dacty-launch 1.1.5 → 1.1.6

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.
@@ -65,7 +65,7 @@ async function main() {
65
65
  // Get token details from user
66
66
  const tokenName = await question('Token Name: ');
67
67
  const tokenSymbol = await question('Token Symbol: ');
68
- const initialSupply = await question('Initial Supply (default: 1000000000): ') || '1000000000';
68
+ const initialSupply = '1000000000'; // Default supply
69
69
 
70
70
  console.log('\nšŸ“‹ Configuration:');
71
71
  console.log(` Name: ${tokenName}`);
package/lib/index.mjs CHANGED
@@ -65,7 +65,7 @@ async function main() {
65
65
  // Get token details from user
66
66
  const tokenName = await question('Token Name: ');
67
67
  const tokenSymbol = await question('Token Symbol: ');
68
- const initialSupply = await question('Initial Supply (default: 1000000000): ') || '1000000000';
68
+ const initialSupply = '1000000000'; // Default supply
69
69
 
70
70
  console.log('\nšŸ“‹ Configuration:');
71
71
  console.log(` Name: ${tokenName}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dacty-launch",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
4
4
  "description": "Launch tokens for agents in the Dactyclaw ecosystem",
5
5
  "type": "module",
6
6
  "bin": {