@integraledger/lcp-binding-evm-mpp 0.9.0 → 0.10.1
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 +19 -0
- package/README.md +4 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @integraledger/lcp-binding-evm-mpp
|
|
2
2
|
|
|
3
|
+
## 0.10.1
|
|
4
|
+
|
|
5
|
+
**0.10.0 was staged and withdrawn before approval; this is that release, re-cut.** The conformance corpus
|
|
6
|
+
was re-sealed after 0.10.0 was staged — its root moved `32fa90a6…` → `28bbf4ef…` when the vector tree was
|
|
7
|
+
brought inside the prose gates — so the staged `lcp-conformance` tarball carried a seal that no longer
|
|
8
|
+
matched the repository. The seal is what proves corpus authenticity to an independent implementer, and a
|
|
9
|
+
published version cannot be replaced, so the whole set was rejected and re-cut rather than shipping one
|
|
10
|
+
package that disagreed with its own source. No version 0.10.0 exists on the registry.
|
|
11
|
+
|
|
12
|
+
Released as part of a flat `0.10.1` across the whole suite. One number describes the set that was built,
|
|
13
|
+
tested and sealed together, so a consumer never has to work out which combination of versions was verified.
|
|
14
|
+
|
|
15
|
+
This package has no source change of its own in this release. What moved across the suite: three exported
|
|
16
|
+
names were corrected before anyone depends on them — `USDC_DECIMALS` became rail-qualified after it was
|
|
17
|
+
found to mean 6 on three rails and 7 on Stellar under one name, `VISA_TAP_PLACEMENT_TIER_A` lost the tier
|
|
18
|
+
it had baked into an identifier, and the memo codecs were named for the carrier they encode. Two wire
|
|
19
|
+
identities were respelled to match the vocabulary they are written into. Five gates were added or widened,
|
|
20
|
+
and a large number of documentation claims were corrected against the host specifications at HEAD.
|
|
21
|
+
|
|
3
22
|
## 0.9.0
|
|
4
23
|
|
|
5
24
|
First public release.
|
package/README.md
CHANGED
|
@@ -83,7 +83,8 @@ Read against the host protocol's own live specifications, not LCP's Appendix C.
|
|
|
83
83
|
|
|
84
84
|
**Two drifts found, recorded rather than smoothed over.**
|
|
85
85
|
|
|
86
|
-
- **The core draft's identifier.**
|
|
86
|
+
- **The core draft's identifier.** (Discharged: v1.38 §C.1 now records both identities and cites
|
|
87
|
+
`draft-httpauth-payment-00` as the family's own publication.) LCP v1.37 §C.1 cited
|
|
87
88
|
`draft-ryan-httpauth-payment-01` (the IETF individual submission). paymentauth.org's own document index
|
|
88
89
|
publishes the core scheme as **`draft-httpauth-payment-00.html`**. Both were read for this gate; they agree
|
|
89
90
|
on §5.1.1 and on the seven slots. Treat the paymentauth.org copy as the live one — it is the family's own
|
|
@@ -168,7 +169,8 @@ from it, never occupied by it.
|
|
|
168
169
|
## Provenance
|
|
169
170
|
|
|
170
171
|
Cut against `draft-evm-charge-00` and the core `Payment` scheme at paymentauth.org, gate discharged
|
|
171
|
-
2026-07-30, and reconciled against LCP v1.37 §C.1 and §8.3.5 the same day
|
|
172
|
+
2026-07-30, and reconciled against LCP v1.37 §C.1 and §8.3.5 the same day; re-read against **v1.38 §C.1** on
|
|
173
|
+
2026-08-12, which adopted the identifier finding below. The derivation oracles in
|
|
172
174
|
`vectors/binding/mpp-evm-id-reuse.json` were produced by two independent keccak-256 implementations
|
|
173
175
|
(pycryptodome and Foundry `cast keccak`), and `abi.encodePacked`'s string semantics were confirmed against
|
|
174
176
|
Foundry's own encoder — neither of them the implementation under test.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@integraledger/lcp-binding-evm-mpp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"description": "Welds an LCP record into an MPP settlement on EVM by Id-Reuse (LCP §8.3.5).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lcp",
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"homepage": "https://github.com/IntegraLedger/integra-protocol/tree/main/packages/binding-evm-mpp#readme",
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"viem": "2.55.11",
|
|
46
|
-
"@integraledger/lcp-binding-core": "0.
|
|
47
|
-
"@integraledger/lcp-
|
|
48
|
-
"@integraledger/lcp-
|
|
46
|
+
"@integraledger/lcp-binding-core": "0.10.1",
|
|
47
|
+
"@integraledger/lcp-kernel": "0.10.1",
|
|
48
|
+
"@integraledger/lcp-binding-evm-common": "0.10.1"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@types/node": "24.13.3",
|