@usdctofiat/offramp 4.4.1 → 4.4.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 +16 -0
- package/README.md +7 -0
- package/dist/{chunk-PWKUFVPJ.js → chunk-66EQWIGN.js} +2 -2
- package/dist/{chunk-PWKUFVPJ.js.map → chunk-66EQWIGN.js.map} +1 -1
- package/dist/index.cjs +27 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +26 -1
- package/dist/index.js.map +1 -1
- package/dist/react.cjs +1 -1
- package/dist/react.cjs.map +1 -1
- package/dist/react.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ All notable changes to `@usdctofiat/offramp` will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
7
7
|
|
|
8
|
+
## [4.4.3] - 2026-06-26
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Add `OFFRAMP_DEVELOPER_RESOURCES.upstreamSourceTruths` and
|
|
13
|
+
`OFFRAMP_UPSTREAM_SOURCE_TRUTHS` so apps, bots, and coding agents can trace
|
|
14
|
+
protocol-sensitive fields to the current ZKP2P SDK, Curator API,
|
|
15
|
+
attestation service, and contracts before guessing.
|
|
16
|
+
|
|
17
|
+
## [4.4.2] - 2026-06-26
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- Align `@zkp2p/sdk` to `0.6.2`, picking up the latest public upstream SDK
|
|
22
|
+
surface including the buyer-TEE verification adapter export.
|
|
23
|
+
|
|
8
24
|
## [4.4.1] - 2026-06-24
|
|
9
25
|
|
|
10
26
|
### Fixed
|
package/README.md
CHANGED
|
@@ -26,12 +26,19 @@ import { OFFRAMP_DEVELOPER_RESOURCES, getOfframpDeveloperResources } from "@usdc
|
|
|
26
26
|
OFFRAMP_DEVELOPER_RESOURCES.delegation.required; // true
|
|
27
27
|
OFFRAMP_DEVELOPER_RESOURCES.delegation.feeRateBps; // 10
|
|
28
28
|
OFFRAMP_DEVELOPER_RESOURCES.links.agentSkill; // https://usdctofiat.xyz/skills/usdctofiat.md
|
|
29
|
+
OFFRAMP_DEVELOPER_RESOURCES.upstreamSourceTruths.map((source) => source.label);
|
|
30
|
+
// ["@zkp2p/sdk 0.6.2", "Curator API", ...]
|
|
29
31
|
OFFRAMP_DEVELOPER_RESOURCES.checklist.map((item) => item.title); // integration doctor
|
|
30
32
|
|
|
31
33
|
const botPlaybook = getOfframpDeveloperResources("bot");
|
|
32
34
|
// profile-specific steps + canonical docs/starters/webhook resources
|
|
33
35
|
```
|
|
34
36
|
|
|
37
|
+
Use `upstreamSourceTruths` before generating protocol-sensitive code. It points
|
|
38
|
+
agents at the current ZKP2P SDK, Curator API, attestation service, and contracts
|
|
39
|
+
so they do not invent payment-method hashes, proof payload fields, or contract
|
|
40
|
+
addresses.
|
|
41
|
+
|
|
35
42
|
For agent-built integrations, copy the same prompt the developer console uses:
|
|
36
43
|
|
|
37
44
|
```typescript
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// src/config.ts
|
|
2
2
|
import { getContracts, getGatingServiceAddress } from "@zkp2p/sdk";
|
|
3
|
-
var SDK_VERSION = "4.4.
|
|
3
|
+
var SDK_VERSION = "4.4.3";
|
|
4
4
|
var BASE_CHAIN_ID = 8453;
|
|
5
5
|
var RUNTIME_ENV = "production";
|
|
6
6
|
var API_BASE_URL = "https://api.zkp2p.xyz";
|
|
@@ -1673,4 +1673,4 @@ export {
|
|
|
1673
1673
|
createPeerExtensionSdk,
|
|
1674
1674
|
peerExtensionSdk
|
|
1675
1675
|
};
|
|
1676
|
-
//# sourceMappingURL=chunk-
|
|
1676
|
+
//# sourceMappingURL=chunk-66EQWIGN.js.map
|