dactyclaw 1.4.0 → 1.4.2
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/dactyclaw.js +2 -2
- package/package.json +2 -2
package/bin/dactyclaw.js
CHANGED
|
@@ -130,7 +130,7 @@ program
|
|
|
130
130
|
image: "ipfs://bafybeigdyrzt5sfp7udm7hu76uh7y26nf3efuylqabf3oclgtqy55fbzdi",
|
|
131
131
|
metadata: { description: description || "Deployed via Dactyclaw Seamless CLI", socialMediaUrls: [], auditUrls: [] },
|
|
132
132
|
context: { interface: "Dactyl", platform: "Dactyl", messageId: dnaId, id: ticker },
|
|
133
|
-
pool: {
|
|
133
|
+
pool: { pairedToken: "WETH", positions: ROOT_POS_V4.Standard },
|
|
134
134
|
vault: { percentage: 0, lockupDuration: 604800 }
|
|
135
135
|
};
|
|
136
136
|
|
|
@@ -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,
|
|
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.
|
|
3
|
+
"version": "1.4.2",
|
|
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
|
+
}
|