@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.d.cts CHANGED
@@ -4310,7 +4310,7 @@ declare class EASClient {
4310
4310
  *
4311
4311
  * TODO: Implement using The Graph subgraph for EAS data queries
4312
4312
  */
4313
- getSchemas(_options?: GetSchemasOptions): Promise<SchemaData[]>;
4313
+ getSchemas(options?: GetSchemasOptions): Promise<SchemaData[]>;
4314
4314
  /**
4315
4315
  * Get an attestation by UID
4316
4316
  *
@@ -4322,13 +4322,13 @@ declare class EASClient {
4322
4322
  *
4323
4323
  * TODO: Implement using The Graph subgraph for EAS data queries
4324
4324
  */
4325
- getAttestations(_options?: GetAttestationsOptions): Promise<AttestationInfo[]>;
4325
+ getAttestations(options?: GetAttestationsOptions): Promise<AttestationInfo[]>;
4326
4326
  /**
4327
4327
  * Check if an attestation is valid
4328
4328
  *
4329
4329
  * TODO: Implement using The Graph subgraph for EAS data queries
4330
4330
  */
4331
- isValidAttestation(_uid: Hex): Promise<boolean>;
4331
+ isValidAttestation(uid: Hex): Promise<boolean>;
4332
4332
  /**
4333
4333
  * Get the current timestamp from the contract
4334
4334
  *
package/dist/eas.d.ts CHANGED
@@ -4310,7 +4310,7 @@ declare class EASClient {
4310
4310
  *
4311
4311
  * TODO: Implement using The Graph subgraph for EAS data queries
4312
4312
  */
4313
- getSchemas(_options?: GetSchemasOptions): Promise<SchemaData[]>;
4313
+ getSchemas(options?: GetSchemasOptions): Promise<SchemaData[]>;
4314
4314
  /**
4315
4315
  * Get an attestation by UID
4316
4316
  *
@@ -4322,13 +4322,13 @@ declare class EASClient {
4322
4322
  *
4323
4323
  * TODO: Implement using The Graph subgraph for EAS data queries
4324
4324
  */
4325
- getAttestations(_options?: GetAttestationsOptions): Promise<AttestationInfo[]>;
4325
+ getAttestations(options?: GetAttestationsOptions): Promise<AttestationInfo[]>;
4326
4326
  /**
4327
4327
  * Check if an attestation is valid
4328
4328
  *
4329
4329
  * TODO: Implement using The Graph subgraph for EAS data queries
4330
4330
  */
4331
- isValidAttestation(_uid: Hex): Promise<boolean>;
4331
+ isValidAttestation(uid: Hex): Promise<boolean>;
4332
4332
  /**
4333
4333
  * Get the current timestamp from the contract
4334
4334
  *
package/dist/eas.js CHANGED
@@ -11267,7 +11267,7 @@ var EASClient = class {
11267
11267
  *
11268
11268
  * TODO: Implement using The Graph subgraph for EAS data queries
11269
11269
  */
11270
- async getSchemas(_options) {
11270
+ async getSchemas(options) {
11271
11271
  throw new Error("Schema listing not implemented yet. Use The Graph subgraph for reading schema data.");
11272
11272
  }
11273
11273
  /**
@@ -11283,7 +11283,7 @@ var EASClient = class {
11283
11283
  *
11284
11284
  * TODO: Implement using The Graph subgraph for EAS data queries
11285
11285
  */
11286
- async getAttestations(_options) {
11286
+ async getAttestations(options) {
11287
11287
  throw new Error("Attestation listing not implemented yet. Use The Graph subgraph for reading attestation data.");
11288
11288
  }
11289
11289
  /**
@@ -11291,7 +11291,7 @@ var EASClient = class {
11291
11291
  *
11292
11292
  * TODO: Implement using The Graph subgraph for EAS data queries
11293
11293
  */
11294
- async isValidAttestation(_uid) {
11294
+ async isValidAttestation(uid) {
11295
11295
  return false;
11296
11296
  }
11297
11297
  /**