insumer-verify 1.1.2 → 1.1.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/README.md +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ npm install insumer-verify
|
|
|
20
20
|
import { verifyAttestation } from "insumer-verify";
|
|
21
21
|
|
|
22
22
|
// Call InsumerAPI
|
|
23
|
-
const res = await fetch("https://
|
|
23
|
+
const res = await fetch("https://api.insumermodel.com/v1/attest", {
|
|
24
24
|
method: "POST",
|
|
25
25
|
headers: {
|
|
26
26
|
"Content-Type": "application/json",
|
|
@@ -58,7 +58,7 @@ if (result.valid) {
|
|
|
58
58
|
<script type="module">
|
|
59
59
|
import { verifyAttestation } from "https://esm.sh/insumer-verify";
|
|
60
60
|
|
|
61
|
-
const res = await fetch("https://
|
|
61
|
+
const res = await fetch("https://api.insumermodel.com/v1/attest", {
|
|
62
62
|
method: "POST",
|
|
63
63
|
headers: {
|
|
64
64
|
"Content-Type": "application/json",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "insumer-verify",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "Client-side verifier for InsumerAPI attestations. ECDSA P-256 signatures, condition hashes, block freshness, expiry. Zero dependencies. Used by DJD Agent Score (Coinbase x402).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "build/index.js",
|