Notarize AT Protocol records on Ethereum using EAS (experiment)

update (2)

Changed files
+3 -3
src
lib
+1 -1
package.json
··· 1 { 2 "name": "atnotary", 3 - "version": "0.1.2", 4 "type": "module", 5 "description": "Notarize AT Protocol records on Ethereum using EAS", 6 "main": "./dist/lib/index.js",
··· 1 { 2 "name": "atnotary", 3 + "version": "0.1.3", 4 "type": "module", 5 "description": "Notarize AT Protocol records on Ethereum using EAS", 6 "main": "./dist/lib/index.js",
+2 -2
src/lib/notary.ts
··· 3 import EASPackage from '@ethereum-attestation-service/eas-sdk'; 4 const { EAS, SchemaEncoder, SchemaRegistry, NO_EXPIRATION } = EASPackage; 5 6 - import type { NotaryConfig, NotarizationResult, AttestationData } from './types'; 7 - import { parseRecordURI, hashContent, getExplorerURL } from './utils'; 8 9 // Default schemas (deployed by atnotary maintainers) 10 const DEFAULT_SCHEMAS = {
··· 3 import EASPackage from '@ethereum-attestation-service/eas-sdk'; 4 const { EAS, SchemaEncoder, SchemaRegistry, NO_EXPIRATION } = EASPackage; 5 6 + import type { NotaryConfig, NotarizationResult, AttestationData } from './types.ts'; 7 + import { parseRecordURI, hashContent, getExplorerURL } from './utils.js'; 8 9 // Default schemas (deployed by atnotary maintainers) 10 const DEFAULT_SCHEMAS = {