@usdctofiat/offramp 2.0.2 → 2.0.4
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 +16 -0
- package/README.md +12 -0
- package/dist/{chunk-U5FYN55G.js → chunk-EVC54JGM.js} +2 -2
- package/dist/{chunk-U5FYN55G.js.map → chunk-EVC54JGM.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,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.0.4] - 2026-04-25
|
|
11
|
+
|
|
12
|
+
### Docs
|
|
13
|
+
|
|
14
|
+
- Lead the agent bundle with the developer portal (`https://usdctofiat.xyz/developers`) so human integrators landing on npm have a one-click path to the polished docs surface, then drop into skills and `llms-full.txt`.
|
|
15
|
+
- Call out the symmetric Peerlytics relationship: one Peerlytics API key authenticates outbound webhooks here and the paid Peerlytics v1 API.
|
|
16
|
+
- Bump `SDK_VERSION` to track package version (enforced by `scripts/check-version.mjs`).
|
|
17
|
+
|
|
18
|
+
## [2.0.3] - 2026-04-25
|
|
19
|
+
|
|
20
|
+
### Docs
|
|
21
|
+
|
|
22
|
+
- 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.
|
|
23
|
+
|
|
10
24
|
## [2.0.2] - 2026-04-24
|
|
11
25
|
|
|
12
26
|
### Fixed
|
|
@@ -265,6 +279,8 @@ If you were on `@usdctofiat/offramp@1.x`:
|
|
|
265
279
|
- Dual CJS/ESM build via tsup with type definitions for both entry points.
|
|
266
280
|
|
|
267
281
|
[Unreleased]: https://github.com/ADWilkinson/galleonlabs-zkp2p/compare/main...HEAD
|
|
282
|
+
[2.0.4]: https://github.com/ADWilkinson/galleonlabs-zkp2p/releases/tag/offramp-sdk-v2.0.4
|
|
283
|
+
[2.0.3]: https://github.com/ADWilkinson/galleonlabs-zkp2p/releases/tag/offramp-sdk-v2.0.3
|
|
268
284
|
[2.0.2]: https://github.com/ADWilkinson/galleonlabs-zkp2p/releases/tag/offramp-sdk-v2.0.2
|
|
269
285
|
[2.0.1]: https://github.com/ADWilkinson/galleonlabs-zkp2p/releases/tag/offramp-sdk-v2.0.1
|
|
270
286
|
[2.0.0]: https://github.com/ADWilkinson/galleonlabs-zkp2p/releases/tag/offramp-sdk-v2.0.0
|
package/README.md
CHANGED
|
@@ -5,6 +5,18 @@
|
|
|
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
|
+
- Developer portal: <https://usdctofiat.xyz/developers>
|
|
13
|
+
- Drop-in skill: <https://usdctofiat.xyz/skills/usdctofiat.md>
|
|
14
|
+
- Short machine reference: <https://usdctofiat.xyz/llms.txt>
|
|
15
|
+
- Full machine reference: <https://usdctofiat.xyz/llms-full.txt>
|
|
16
|
+
- Scaffold CLI: `npx create-offramp-app@latest my-app --template=next|vite|telegram-bot`
|
|
17
|
+
- Starters (Next.js / Vite / Telegram bot, plus runnable example scripts and HMAC verifiers): <https://github.com/ADWilkinson/usdctofiat-peerlytics-starters>
|
|
18
|
+
- Companion SDK for analytics + explorer: [`@peerlytics/sdk`](https://www.npmjs.com/package/@peerlytics/sdk) (one Peerlytics API key authenticates both products)
|
|
19
|
+
|
|
8
20
|
## Install
|
|
9
21
|
|
|
10
22
|
```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.4";
|
|
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-EVC54JGM.js.map
|