robinhood-chain-sdk 0.1.0 → 0.1.1
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 +5 -3
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,6 +15,8 @@ Robinhood Chain (RHC) is an **Arbitrum Orbit L2, chain id 4663**. This SDK wraps
|
|
|
15
15
|
|
|
16
16
|
The KOL→EVM mapping is unique to MadeOnSol: each tracked Solana KOL's Robinhood-Chain wallet is recovered by tracing their Solana→EVM bridge deposits (deBridge / Relay / Mayan / Wormhole), then attributed on-chain via `tx.from`. Robinhood Chain coverage is **bundled into every MadeOnSol tier at no extra cost — same `msk_` API key, same base URL** as the Solana product.
|
|
17
17
|
|
|
18
|
+
New customers get a **5-day free trial** of Pro or Ultra when you pay by card — full access, nothing charged during the trial, cancel anytime. Start at [madeonsol.com/pricing](https://madeonsol.com/pricing).
|
|
19
|
+
|
|
18
20
|
## Quick start (10 seconds)
|
|
19
21
|
|
|
20
22
|
```bash
|
|
@@ -24,7 +26,7 @@ npm install robinhood-chain-sdk
|
|
|
24
26
|
```ts
|
|
25
27
|
import { RobinhoodClient } from "robinhood-chain-sdk";
|
|
26
28
|
|
|
27
|
-
const client = new RobinhoodClient({ apiKey: "msk_..." }); // free key at madeonsol.com/
|
|
29
|
+
const client = new RobinhoodClient({ apiKey: "msk_..." }); // free key at madeonsol.com/pricing
|
|
28
30
|
|
|
29
31
|
// Tokens being bought by 2+ tracked KOLs on Robinhood Chain right now
|
|
30
32
|
const { tokens } = await client.kol.hotTokens({ window: "1h" });
|
|
@@ -35,7 +37,7 @@ Requires **Node.js ≥ 18** (native `fetch`). Works in Cloudflare Workers, Verce
|
|
|
35
37
|
|
|
36
38
|
## Authentication
|
|
37
39
|
|
|
38
|
-
Get a free API key at **[madeonsol.com/
|
|
40
|
+
Get a free API key at **[madeonsol.com/pricing](https://madeonsol.com/pricing)** — keys start with `msk_`. The same key unlocks both the Solana API and Robinhood Chain.
|
|
39
41
|
|
|
40
42
|
```ts
|
|
41
43
|
const client = new RobinhoodClient({
|
|
@@ -239,7 +241,7 @@ Fully-typed responses and params for all 14 endpoints are exported (`RhcKolFeedR
|
|
|
239
241
|
- **Robinhood Chain** — [madeonsol.com/robinhood](https://madeonsol.com/robinhood)
|
|
240
242
|
- **Pricing** — [madeonsol.com/pricing](https://madeonsol.com/pricing) (Robinhood Chain bundled into every tier)
|
|
241
243
|
- **API docs** — [madeonsol.com/api-docs](https://madeonsol.com/api-docs)
|
|
242
|
-
- **Get a free key** — [madeonsol.com/
|
|
244
|
+
- **Get a free key** — [madeonsol.com/pricing](https://madeonsol.com/pricing)
|
|
243
245
|
- **npm** — [robinhood-chain-sdk](https://www.npmjs.com/package/robinhood-chain-sdk)
|
|
244
246
|
- **GitHub** — [madeonsol/robinhood-chain-sdk](https://github.com/madeonsol/robinhood-chain-sdk)
|
|
245
247
|
|
package/dist/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.1.
|
|
1
|
+
export declare const VERSION = "0.1.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/dist/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "robinhood-chain-sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Official TypeScript SDK for the Robinhood Chain (chain id 4663) API — EVM-native on-chain trading intelligence: live KOL trades, token discovery & bundles, the DEX trade tape, OHLC candles, deployer reputation, and smart-money wallets. Zero dependencies.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|