From 1afc7e281985e5b0ef3d681028d1334d8aab8c71 Mon Sep 17 00:00:00 2001 From: lbeder Date: Wed, 2 Oct 2024 13:29:41 +0100 Subject: [PATCH] Fix exports --- CHANGELOG.md | 4 ++++ dist/index.d.ts | 1 + dist/index.js | 1 + dist/index.js.map | 2 +- package.json | 2 +- src/index.ts | 1 + 6 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93d631c..4fa5ed4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.6.1 + +- Fix exports + ## 2.6.0 - Support initializing/connecting SDK objects with/to non-signer providers diff --git a/dist/index.d.ts b/dist/index.d.ts index 0ea9035..87d93a8 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -1,5 +1,6 @@ export * as Contracts from '@ethereum-attestation-service/eas-contracts'; export * from './eas'; +export * from './eip712-proxy'; export * from './offchain'; export * from './request'; export * from './schema-encoder'; diff --git a/dist/index.js b/dist/index.js index 757ace1..55ebcc8 100644 --- a/dist/index.js +++ b/dist/index.js @@ -4,6 +4,7 @@ exports.Contracts = void 0; const tslib_1 = require("tslib"); exports.Contracts = tslib_1.__importStar(require("@ethereum-attestation-service/eas-contracts")); tslib_1.__exportStar(require("./eas"), exports); +tslib_1.__exportStar(require("./eip712-proxy"), exports); tslib_1.__exportStar(require("./offchain"), exports); tslib_1.__exportStar(require("./request"), exports); tslib_1.__exportStar(require("./schema-encoder"), exports); diff --git a/dist/index.js.map b/dist/index.js.map index 1ba2739..05a5845 100644 --- a/dist/index.js.map +++ b/dist/index.js.map @@ -1 +1 @@ -{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;AAAA,iGAAyE;AACzE,gDAAsB;AACtB,qDAA2B;AAC3B,oDAA0B;AAC1B,2DAAiC;AACjC,4DAAkC;AAClC,wDAA8B;AAC9B,kDAAwB;AACxB,yDAA+B"} \ No newline at end of file +{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;AAAA,iGAAyE;AACzE,gDAAsB;AACtB,yDAA+B;AAC/B,qDAA2B;AAC3B,oDAA0B;AAC1B,2DAAiC;AACjC,4DAAkC;AAClC,wDAA8B;AAC9B,kDAAwB;AACxB,yDAA+B"} \ No newline at end of file diff --git a/package.json b/package.json index 41cc359..91b2c32 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ethereum-attestation-service/eas-sdk", - "version": "2.6.0", + "version": "2.6.1", "description": "Ethereum Attestation Service - TypeScript/JavaScript SDK", "repository": "git@github.com:ethereum-attestation-service/eas-sdk.git", "author": "Leonid Beder ", diff --git a/src/index.ts b/src/index.ts index 0ea9035..87d93a8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,6 @@ export * as Contracts from '@ethereum-attestation-service/eas-contracts'; export * from './eas'; +export * from './eip712-proxy'; export * from './offchain'; export * from './request'; export * from './schema-encoder';