Skip to content

Commit f4f9423

Browse files
committed
h
1 parent 2b4a012 commit f4f9423

3 files changed

Lines changed: 11 additions & 7 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,3 +52,6 @@ plugin-eliza/*.tsbuildinfo
5252
test-mcp-real.ts
5353
debug-*.ts
5454
scripts/test-local.ts
55+
56+
# graphify (knowledge graph locale, non versionato)
57+
graphify-out/

plugins/gblin.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
>
1010
> Do NOT skip this step. The user's wallet address is needed for every transaction.
1111
12-
GBLIN (Global Balanced Liquidity Index) is a **wealth-preservation protocol on Base mainnet**. Every GBLIN token is fully backed by a real treasury of cbBTC (45%), WETH (45%), and USDC (10%), governed by Chainlink oracles and a 48-hour timelock. It is not a meme coinit is a decentralised index with an algorithmic Crash Shield that reallocates toward USDC as basket assets draw down (V6 adaptive threshold, from ~15%).
12+
GBLIN (Global Balanced Liquidity Index) is a **wealth-preservation protocol on Base mainnet**. Every GBLIN token is fully backed by a real treasury of cbBTC, WETH and USDC, priced by Chainlink oracles and governed by a 48-hour timelock. Basket weights are set on-chain and rebalance over time — read them live from `get_treasury_state` rather than assuming fixed percentages. It is not a meme coin: it is an index with an algorithmic Crash Shield that reallocates toward USDC as basket assets draw down (adaptive threshold, from ~15%).
1313

1414
This plugin fetches unsigned calldata from the GBLIN MCP server (`@gblin-protocol/mcp-server`), then executes via Base MCP's `send_calls`.
1515

1616
**Supported chain:** Base mainnet (`8453` / `0x2105`).
1717

18-
**Contract (V6, production):** `0x36C81d7E1966310F305eA637e761Cf77F90852f0`
18+
**Contract (production):** `0x36C81d7E1966310F305eA637e761Cf77F90852f0`
1919

20-
**Timelock (owner since 18 May 2026):** `0x6aBeC8716fFeEcf7C3D6e68255b4797113E8e5Dd` — 48h delay, immutable.
20+
**Timelock (owner):** `0x6aBeC8716fFeEcf7C3D6e68255b4797113E8e5Dd`every owner-only change is scheduled and executes only after a 48h delay. Parameters can change through it, so never describe the protocol as immutable.
2121

2222
---
2323

@@ -219,7 +219,7 @@ For multi-step flows (approve + buy), include both calls in the same `send_calls
219219

220220
| Asset | Address |
221221
|-------|---------|
222-
| GBLIN V6 contract | `0x36C81d7E1966310F305eA637e761Cf77F90852f0` |
222+
| GBLIN contract | `0x36C81d7E1966310F305eA637e761Cf77F90852f0` |
223223
| GBLIN Timelock | `0x6aBeC8716fFeEcf7C3D6e68255b4797113E8e5Dd` |
224224
| USDC (Base) | `0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913` |
225225
| WETH (Base) | `0x4200000000000000000000000000000000000006` |
@@ -231,7 +231,7 @@ For multi-step flows (approve + buy), include both calls in the same `send_calls
231231

232232
- Website & docs: https://gblin.digital
233233
- Agent docs: https://gblin.digital/agents
234-
- Whitepaper: https://github.com/gblinproject/Whitepaper/raw/main/GBLIN_WHITE_PAPER_V5.pdf
234+
- Whitepaper (historical design papers; current addresses and parameters live in the protocol README): https://github.com/gblinproject/Whitepaper
235235
- MCP server (NPM): `@gblin-protocol/mcp-server`
236236
- MCP source: https://github.com/gblinproject/GBLIN-MCP
237237
- Aerodrome pool: https://dexscreener.com/base/0x7dcd4f5bcdae0546c84dab54401a93ad6e92ae1b

src/tools.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1087,8 +1087,9 @@ async function handleShareSkillWithPeer(args: unknown): Promise<ReturnType<typeo
10871087
protocol_manifest: "https://gblin.digital/.well-known/x402",
10881088
llm_summary: "https://gblin.digital/api/x402/llms.txt",
10891089
base_mcp_plugin: "https://github.com/base/skills/pull/56",
1090-
whitepaper:
1091-
"https://github.com/gblinproject/Whitepaper/raw/main/GBLIN_WHITE_PAPER_V5.pdf",
1090+
// Historical design papers. Addresses and parameters inside them are
1091+
// frozen at publication time — always read live state from the tools.
1092+
whitepaper: "https://github.com/gblinproject/Whitepaper",
10921093
},
10931094
};
10941095

0 commit comments

Comments
 (0)