@settlemint/sdk-eas 2.4.0 → 2.4.1-main002d2738
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 +110 -100
- package/dist/browser/eas.d.ts +4 -3
- package/dist/browser/eas.js +4 -3
- package/dist/browser/eas.js.map +1 -1
- package/dist/eas.cjs +4 -3
- package/dist/eas.cjs.map +1 -1
- package/dist/eas.d.cts +4 -3
- package/dist/eas.d.ts +4 -3
- package/dist/eas.js +4 -3
- package/dist/eas.js.map +1 -1
- package/package.json +6 -4
package/dist/eas.cjs
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* SettleMint EAS SDK - Portal Optimized */
|
|
1
2
|
//#region rolldown:runtime
|
|
2
3
|
var __create = Object.create;
|
|
3
4
|
var __defProp = Object.defineProperty;
|
|
@@ -11285,7 +11286,7 @@ var EASClient = class {
|
|
|
11285
11286
|
*
|
|
11286
11287
|
* TODO: Implement using The Graph subgraph for EAS data queries
|
|
11287
11288
|
*/
|
|
11288
|
-
async getSchemas(
|
|
11289
|
+
async getSchemas(_options) {
|
|
11289
11290
|
throw new Error("Schema listing not implemented yet. Use The Graph subgraph for reading schema data.");
|
|
11290
11291
|
}
|
|
11291
11292
|
/**
|
|
@@ -11301,7 +11302,7 @@ var EASClient = class {
|
|
|
11301
11302
|
*
|
|
11302
11303
|
* TODO: Implement using The Graph subgraph for EAS data queries
|
|
11303
11304
|
*/
|
|
11304
|
-
async getAttestations(
|
|
11305
|
+
async getAttestations(_options) {
|
|
11305
11306
|
throw new Error("Attestation listing not implemented yet. Use The Graph subgraph for reading attestation data.");
|
|
11306
11307
|
}
|
|
11307
11308
|
/**
|
|
@@ -11309,7 +11310,7 @@ var EASClient = class {
|
|
|
11309
11310
|
*
|
|
11310
11311
|
* TODO: Implement using The Graph subgraph for EAS data queries
|
|
11311
11312
|
*/
|
|
11312
|
-
async isValidAttestation(
|
|
11313
|
+
async isValidAttestation(_uid) {
|
|
11313
11314
|
return false;
|
|
11314
11315
|
}
|
|
11315
11316
|
/**
|