feat: Add persistent settings and multiple layouts support
- Add settings manager to persist symbol, timeframe, and layouts - Support multiple layouts for comprehensive chart analysis - Remove debug screenshots for cleaner logs - Update AI analysis with professional trading prompt - Add multi-screenshot analysis for better trading insights - Update analyze API to use saved settings and multiple layouts
This commit is contained in:
11
scripts/convert-solana-key.js
Normal file
11
scripts/convert-solana-key.js
Normal file
@@ -0,0 +1,11 @@
|
||||
const bs58 = require('bs58');
|
||||
const fs = require('fs');
|
||||
|
||||
// Paste your base58 private key string here
|
||||
const base58 = process.argv[2];
|
||||
if (!base58) {
|
||||
console.error('Usage: node convert.js <base58key>');
|
||||
process.exit(1);
|
||||
}
|
||||
const arr = Array.from(bs58.decode(base58));
|
||||
console.log(JSON.stringify(arr));
|
||||
11
scripts/convert-solana-key.mjs
Normal file
11
scripts/convert-solana-key.mjs
Normal file
@@ -0,0 +1,11 @@
|
||||
import bs58 from 'bs58';
|
||||
import fs from 'fs';
|
||||
|
||||
// Paste your base58 private key string here
|
||||
const base58 = process.argv[2];
|
||||
if (!base58) {
|
||||
console.error('Usage: node convert-solana-key.mjs <base58key>');
|
||||
process.exit(1);
|
||||
}
|
||||
const arr = Array.from(bs58.decode(base58));
|
||||
console.log(JSON.stringify(arr));
|
||||
Reference in New Issue
Block a user