@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.
Files changed (2) hide show
  1. package/README.md +9 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -53,13 +53,15 @@ main();
53
53
  ```
54
54
  ## 🛠️ Available Methods & Pricing
55
55
 
56
- * **`scrapeWeb(url)`** `$0.01 USDC` Extracts clean Markdown from web pages.
57
- * **`getBaseAnalytics(address)`** `$0.02 USDC` Fetches ETH balance and nonce stats.
58
- * **`browserScrape(url)`** `$0.05 USDC` Unblockable JS browser scraping via proxy workers.
59
- * **`extractPdf(pdfUrl)`** `$0.05 USDC` Parses text preview from public PDF URLs.
60
- * **`renderScreenshot(url)`** `$0.10 USDC` Renders target URL and returns full-page screenshot data.
61
- * **`extractJson(url, schema?)`** `$0.15 USDC` Parses web pages into structured JSON data.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@warppay402/sdk",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "Official WarpPay402 TypeScript SDK: Enabling seamless pay-per-use AI tools across both Base Mainnet and Solana.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",