cornerstone-autonomous-agent 1.2.0 → 1.3.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cornerstone-autonomous-agent",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "CornerStone Agentic Score: autonomous agent that uses an x402-enabled MCP server to predict tickers, backtest trading strategies, and open bank accounts. Handles 402 Payment Required (pay via Aptos/Ethereum facilitator and retry). LangChain.js ReAct agent with Hugging Face inference (OpenAI-compatible endpoint).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/run-agent.js",
|
|
@@ -52,11 +52,11 @@ async function main() {
|
|
|
52
52
|
const evmMainnetPk = generatePrivateKey();
|
|
53
53
|
result.evm_testnet = {
|
|
54
54
|
privateKey: toHex(evmTestnetPk),
|
|
55
|
-
address: privateKeyToAccount(evmTestnetPk).address,
|
|
55
|
+
address: privateKeyToAccount(evmTestnetPk).address.toLowerCase(),
|
|
56
56
|
};
|
|
57
57
|
result.evm_mainnet = {
|
|
58
58
|
privateKey: toHex(evmMainnetPk),
|
|
59
|
-
address: privateKeyToAccount(evmMainnetPk).address,
|
|
59
|
+
address: privateKeyToAccount(evmMainnetPk).address.toLowerCase(),
|
|
60
60
|
};
|
|
61
61
|
} catch (e) {
|
|
62
62
|
if (jsonOut) console.log(JSON.stringify({ error: e.message }));
|