dactyclaw 1.4.0 → 1.4.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.
Files changed (2) hide show
  1. package/bin/dactyclaw.js +1 -1
  2. package/package.json +2 -2
package/bin/dactyclaw.js CHANGED
@@ -141,7 +141,7 @@ program
141
141
 
142
142
  if (deployResult.error) {
143
143
  console.error(`\n❌ Deployment Failed: ${deployResult.error.shortMessage || deployResult.error.message || 'Smart Contract Error'}`);
144
- fs.writeFileSync(path.join(agentDir, 'error_launch.log'), JSON.stringify(deployResult, null, 2));
144
+ fs.writeFileSync(path.join(agentDir, 'error_launch.log'), JSON.stringify(deployResult, (key, value) => typeof value === 'bigint' ? value.toString() + 'n' : value, 2));
145
145
  process.exit(1);
146
146
  }
147
147
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dactyclaw",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "**Agent Monitor & Deployer for Clawn Ecosystem on Base**",
5
5
  "main": "proxy.js",
6
6
  "bin": {
@@ -31,4 +31,4 @@
31
31
  "viem": "^2.46.3"
32
32
  },
33
33
  "devDependencies": {}
34
- }
34
+ }