@usdctofiat/offramp 2.0.2 → 2.0.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/CHANGELOG.md +6 -0
- package/README.md +11 -0
- package/dist/{chunk-U5FYN55G.js → chunk-ZWQVMPSH.js} +2 -2
- package/dist/{chunk-U5FYN55G.js.map → chunk-ZWQVMPSH.js.map} +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/react.cjs +1 -1
- package/dist/react.cjs.map +1 -1
- package/dist/react.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.0.3] - 2026-04-25
|
|
11
|
+
|
|
12
|
+
### Docs
|
|
13
|
+
|
|
14
|
+
- Link agent bundle (skill, `llms.txt`, `llms-full.txt`, scaffold CLI, starters) at the top of the README. Every developer surface now leads with agentic artifacts rather than long-form prose.
|
|
15
|
+
|
|
10
16
|
## [2.0.2] - 2026-04-24
|
|
11
17
|
|
|
12
18
|
### Fixed
|
package/README.md
CHANGED
|
@@ -5,6 +5,17 @@
|
|
|
5
5
|
|
|
6
6
|
USDC-to-fiat offramp SDK for Base. 6 functions + 2 const objects.
|
|
7
7
|
|
|
8
|
+
## Agent bundle
|
|
9
|
+
|
|
10
|
+
If you are integrating through an agent (Claude Code, Cursor, etc.), start here:
|
|
11
|
+
|
|
12
|
+
- Drop-in skill: <https://usdctofiat.xyz/skills/usdctofiat.md>
|
|
13
|
+
- Short machine reference: <https://usdctofiat.xyz/llms.txt>
|
|
14
|
+
- Full machine reference: <https://usdctofiat.xyz/llms-full.txt>
|
|
15
|
+
- Scaffold CLI: `npx create-offramp-app@latest my-app --template=next|vite|telegram-bot`
|
|
16
|
+
- Starters (Next.js / Vite / Telegram bot): <https://github.com/ADWilkinson/usdctofiat-peerlytics-starters>
|
|
17
|
+
- Companion SDK for analytics + explorer: [`@peerlytics/sdk`](https://www.npmjs.com/package/@peerlytics/sdk)
|
|
18
|
+
|
|
8
19
|
## Install
|
|
9
20
|
|
|
10
21
|
```bash
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// src/config.ts
|
|
2
2
|
import { getContracts, getGatingServiceAddress } from "@zkp2p/sdk";
|
|
3
|
-
var SDK_VERSION = "2.0.
|
|
3
|
+
var SDK_VERSION = "2.0.3";
|
|
4
4
|
var BASE_CHAIN_ID = 8453;
|
|
5
5
|
var RUNTIME_ENV = "production";
|
|
6
6
|
var API_BASE_URL = "https://api.zkp2p.xyz";
|
|
@@ -1774,4 +1774,4 @@ export {
|
|
|
1774
1774
|
openPeerExtensionInstallPage,
|
|
1775
1775
|
getPeerExtensionState
|
|
1776
1776
|
};
|
|
1777
|
-
//# sourceMappingURL=chunk-
|
|
1777
|
+
//# sourceMappingURL=chunk-ZWQVMPSH.js.map
|