@warppay402/sdk 1.1.2 → 1.1.3
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 +9 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -53,13 +53,15 @@ main();
|
|
|
53
53
|
```
|
|
54
54
|
## 🛠️ Available Methods & Pricing
|
|
55
55
|
|
|
56
|
-
* **`
|
|
57
|
-
* **`
|
|
58
|
-
* **`
|
|
59
|
-
* **`
|
|
60
|
-
* **`
|
|
61
|
-
* **`
|
|
62
|
-
|
|
56
|
+
* **`getPublicDataFeed(filename)`** -- `$0.0001 USDC` -- Retrieves signed attestation JSON payloads.
|
|
57
|
+
* **`getDataFeed(feedId)`** -- `$0.001 USDC` -- Fetches pre-scraped market and protocol intelligence feeds.
|
|
58
|
+
* **`scrapeWeb(url)`** -- `$0.001 USDC` -- Extracts clean Markdown from web pages.
|
|
59
|
+
* **`getBaseAnalytics(address)`** -- `$0.002 USDC` -- Fetches ETH balance and nonce stats.
|
|
60
|
+
* **`browserScrape(url)`** -- `$0.005 USDC` -- Unblockable JS browser scraping via proxy workers.
|
|
61
|
+
* **`extractPdf(pdfUrl)`** -- `$0.005 USDC` -- Parses text preview from public PDF URLs.
|
|
62
|
+
* **`renderScreenshot(url)`** -- `$0.01 USDC` -- Renders target URL and returns full-page screenshot data.
|
|
63
|
+
* **`extractJson(url, schema?)`** -- `$0.01 USDC` -- Parses web pages into structured JSON data.
|
|
64
|
+
* **`verifySmartContract(address)`** -- `$0.02 USDC` -- Source code analysis, ABI fetching, and proxy validation.
|
|
63
65
|
## 🛠️ LangChain Integration
|
|
64
66
|
```typescript
|
|
65
67
|
import { WarpPayClient, createWarpPayLangChainTools } from "@warppay402/sdk";
|
package/package.json
CHANGED