@settlemint/sdk-eas 2.4.0-prf9d91e91 → 2.4.0

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/dist/eas.cjs CHANGED
@@ -11285,7 +11285,7 @@ var EASClient = class {
11285
11285
  *
11286
11286
  * TODO: Implement using The Graph subgraph for EAS data queries
11287
11287
  */
11288
- async getSchemas(_options) {
11288
+ async getSchemas(options) {
11289
11289
  throw new Error("Schema listing not implemented yet. Use The Graph subgraph for reading schema data.");
11290
11290
  }
11291
11291
  /**
@@ -11301,7 +11301,7 @@ var EASClient = class {
11301
11301
  *
11302
11302
  * TODO: Implement using The Graph subgraph for EAS data queries
11303
11303
  */
11304
- async getAttestations(_options) {
11304
+ async getAttestations(options) {
11305
11305
  throw new Error("Attestation listing not implemented yet. Use The Graph subgraph for reading attestation data.");
11306
11306
  }
11307
11307
  /**
@@ -11309,7 +11309,7 @@ var EASClient = class {
11309
11309
  *
11310
11310
  * TODO: Implement using The Graph subgraph for EAS data queries
11311
11311
  */
11312
- async isValidAttestation(_uid) {
11312
+ async isValidAttestation(uid) {
11313
11313
  return false;
11314
11314
  }
11315
11315
  /**