@usdctofiat/offramp 2.0.3 → 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 +10 -0
- package/README.md +3 -2
- package/dist/{chunk-ZWQVMPSH.js → chunk-EVC54JGM.js} +2 -2
- package/dist/{chunk-ZWQVMPSH.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,14 @@ 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
|
+
|
|
10
18
|
## [2.0.3] - 2026-04-25
|
|
11
19
|
|
|
12
20
|
### Docs
|
|
@@ -271,6 +279,8 @@ If you were on `@usdctofiat/offramp@1.x`:
|
|
|
271
279
|
- Dual CJS/ESM build via tsup with type definitions for both entry points.
|
|
272
280
|
|
|
273
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
|
|
274
284
|
[2.0.2]: https://github.com/ADWilkinson/galleonlabs-zkp2p/releases/tag/offramp-sdk-v2.0.2
|
|
275
285
|
[2.0.1]: https://github.com/ADWilkinson/galleonlabs-zkp2p/releases/tag/offramp-sdk-v2.0.1
|
|
276
286
|
[2.0.0]: https://github.com/ADWilkinson/galleonlabs-zkp2p/releases/tag/offramp-sdk-v2.0.0
|
package/README.md
CHANGED
|
@@ -9,12 +9,13 @@ USDC-to-fiat offramp SDK for Base. 6 functions + 2 const objects.
|
|
|
9
9
|
|
|
10
10
|
If you are integrating through an agent (Claude Code, Cursor, etc.), start here:
|
|
11
11
|
|
|
12
|
+
- Developer portal: <https://usdctofiat.xyz/developers>
|
|
12
13
|
- Drop-in skill: <https://usdctofiat.xyz/skills/usdctofiat.md>
|
|
13
14
|
- Short machine reference: <https://usdctofiat.xyz/llms.txt>
|
|
14
15
|
- Full machine reference: <https://usdctofiat.xyz/llms-full.txt>
|
|
15
16
|
- 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)
|
|
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)
|
|
18
19
|
|
|
19
20
|
## Install
|
|
20
21
|
|
|
@@ -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
|