@blockrun/franklin 3.0.0 → 3.0.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/README.md +2 -2
- package/dist/banner.js +12 -10
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -216,8 +216,8 @@ src/
|
|
|
216
216
|
## Development
|
|
217
217
|
|
|
218
218
|
```bash
|
|
219
|
-
git clone https://github.com/BlockRunAI/
|
|
220
|
-
cd
|
|
219
|
+
git clone https://github.com/BlockRunAI/franklin.git
|
|
220
|
+
cd franklin
|
|
221
221
|
npm install
|
|
222
222
|
npm run build
|
|
223
223
|
npm test # Deterministic local tests (no API calls)
|
package/dist/banner.js
CHANGED
|
@@ -8,20 +8,22 @@ const FRANKLIN_ART = [
|
|
|
8
8
|
' ██║ ██║ ██║██║ ██║██║ ╚████║██║ ██╗███████╗██║██║ ╚████║',
|
|
9
9
|
' ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝╚══════╝╚═╝╚═╝ ╚═══╝',
|
|
10
10
|
];
|
|
11
|
+
// Franklin brand colors
|
|
12
|
+
// Gold is the brand anchor — $100 bill, "Benjamins", wealth, Benjamin Franklin himself
|
|
13
|
+
// Emerald is the secondary, reserved for franklin.bet (trading) product color
|
|
14
|
+
const GOLD = '#FFD700';
|
|
15
|
+
const EMERALD = '#10B981';
|
|
11
16
|
export function printBanner(version) {
|
|
12
|
-
//
|
|
13
|
-
const
|
|
14
|
-
const
|
|
15
|
-
|
|
16
|
-
// Alternate lines between gold and green for subtle depth
|
|
17
|
-
const color = i < 3 ? gold : green;
|
|
18
|
-
console.log(color(FRANKLIN_ART[i]));
|
|
17
|
+
// Pure gold FRANKLIN — single brand color, maximum signature strength
|
|
18
|
+
const goldFn = chalk.hex(GOLD);
|
|
19
|
+
for (const line of FRANKLIN_ART) {
|
|
20
|
+
console.log(goldFn(line));
|
|
19
21
|
}
|
|
20
|
-
console.log(chalk.bold.hex(
|
|
22
|
+
console.log(chalk.bold.hex(GOLD)(' Franklin') +
|
|
21
23
|
chalk.dim(' · The AI agent with a wallet · v' + version));
|
|
22
24
|
console.log(chalk.dim(' Marketing: ') +
|
|
23
|
-
chalk.
|
|
25
|
+
chalk.hex(GOLD)('franklin.run') +
|
|
24
26
|
chalk.dim(' · Trading: ') +
|
|
25
|
-
chalk.hex(
|
|
27
|
+
chalk.hex(EMERALD)('franklin.bet') +
|
|
26
28
|
chalk.dim('\n'));
|
|
27
29
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blockrun/franklin",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"description": "Franklin — The AI agent with a wallet. Marketing at franklin.run, trading at franklin.bet. Pay per action in USDC.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"license": "Apache-2.0",
|
|
53
53
|
"repository": {
|
|
54
54
|
"type": "git",
|
|
55
|
-
"url": "https://github.com/BlockRunAI/
|
|
55
|
+
"url": "https://github.com/BlockRunAI/franklin"
|
|
56
56
|
},
|
|
57
57
|
"homepage": "https://franklin.run",
|
|
58
58
|
"engines": {
|