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