@settlemint/sdk-eas 2.4.0-prfdc1cdc0 → 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 +103 -103
- 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/browser/eas.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* SettleMint EAS SDK - Portal Optimized */
|
|
1
2
|
import { createPortalClient, waitForTransactionReceipt } from "@settlemint/sdk-portal";
|
|
2
3
|
import { createLogger, requestLogger } from "@settlemint/sdk-utils/logging";
|
|
3
4
|
import { ApplicationAccessTokenSchema, UrlSchema, validate } from "@settlemint/sdk-utils/validation";
|
|
@@ -11266,7 +11267,7 @@ var EASClient = class {
|
|
|
11266
11267
|
*
|
|
11267
11268
|
* TODO: Implement using The Graph subgraph for EAS data queries
|
|
11268
11269
|
*/
|
|
11269
|
-
async getSchemas(
|
|
11270
|
+
async getSchemas(_options) {
|
|
11270
11271
|
throw new Error("Schema listing not implemented yet. Use The Graph subgraph for reading schema data.");
|
|
11271
11272
|
}
|
|
11272
11273
|
/**
|
|
@@ -11282,7 +11283,7 @@ var EASClient = class {
|
|
|
11282
11283
|
*
|
|
11283
11284
|
* TODO: Implement using The Graph subgraph for EAS data queries
|
|
11284
11285
|
*/
|
|
11285
|
-
async getAttestations(
|
|
11286
|
+
async getAttestations(_options) {
|
|
11286
11287
|
throw new Error("Attestation listing not implemented yet. Use The Graph subgraph for reading attestation data.");
|
|
11287
11288
|
}
|
|
11288
11289
|
/**
|
|
@@ -11290,7 +11291,7 @@ var EASClient = class {
|
|
|
11290
11291
|
*
|
|
11291
11292
|
* TODO: Implement using The Graph subgraph for EAS data queries
|
|
11292
11293
|
*/
|
|
11293
|
-
async isValidAttestation(
|
|
11294
|
+
async isValidAttestation(_uid) {
|
|
11294
11295
|
return false;
|
|
11295
11296
|
}
|
|
11296
11297
|
/**
|