diff --git a/tests/accounts/avalanche.test.ts b/tests/accounts/avalanche.test.ts index a15a6903..6542ef87 100644 --- a/tests/accounts/avalanche.test.ts +++ b/tests/accounts/avalanche.test.ts @@ -2,7 +2,7 @@ import { avalanche, post } from "../index"; import { ItemType, MessageType } from "../../src/messages/types"; import { EthereumProvider } from "../providers/ethereumProvider"; import { GetVerificationBuffer } from "../../src/messages"; -import verifyAvalanche from "../index"; +import { verifyAvalanche } from "../index"; import { EphAccountList } from "../testAccount/entryPoint"; import fs from "fs"; diff --git a/tests/accounts/ethereum.test.ts b/tests/accounts/ethereum.test.ts index 54a02c09..16412ffc 100644 --- a/tests/accounts/ethereum.test.ts +++ b/tests/accounts/ethereum.test.ts @@ -6,7 +6,7 @@ import { MessageType, ItemType } from "../../src/messages/types"; import { EphAccountList } from "../testAccount/entryPoint"; import fs from "fs"; import { GetVerificationBuffer } from "../../src/messages"; -import verifyEthereum from "../index"; +import { verifyEthereum } from "../index"; describe("Ethereum accounts", () => { let ephemeralAccount: EphAccountList; diff --git a/tests/accounts/solana.test.ts b/tests/accounts/solana.test.ts index fa3a83bb..952ee8f5 100644 --- a/tests/accounts/solana.test.ts +++ b/tests/accounts/solana.test.ts @@ -2,7 +2,7 @@ import { ItemType, MessageType } from "../../src/messages/types"; import { post, solana } from "../index"; import { Keypair } from "@solana/web3.js"; import { panthomLikeProvider, officialLikeProvider } from "../providers/solanaProvider"; -import verifySolana from "../index"; +import { verifySolana } from "../index"; import { GetVerificationBuffer } from "../../src/messages"; import { EphAccountList } from "../testAccount/entryPoint"; import fs from "fs"; diff --git a/tests/accounts/tezos.test.ts b/tests/accounts/tezos.test.ts index 18dfa4d3..d8cfa1e4 100644 --- a/tests/accounts/tezos.test.ts +++ b/tests/accounts/tezos.test.ts @@ -7,7 +7,7 @@ import { DEFAULT_API_V2 } from "../../src/global"; import { b58cencode, prefix, validateSignature } from "@taquito/utils"; import { EphAccountList } from "../testAccount/entryPoint"; import fs from "fs"; -import verifyTezos from "../../src/utils/signature/verifyTezos"; +import { verifyTezos } from "../index"; if (!window) { require("localstorage-polyfill"); diff --git a/tests/index.ts b/tests/index.ts index 86b80f17..56449b38 100644 --- a/tests/index.ts +++ b/tests/index.ts @@ -15,6 +15,7 @@ import * as any from "../src/messages/any/index"; import verifyEthereum from "../src/utils/signature/verifyEthereum"; import verifySolana from "../src/utils/signature/verifySolana"; import verifyAvalanche from "../src/utils/signature/verifyAvalanche"; +import verifyTezos from "../src/utils/signature/verifyTezos"; export { avalanche, @@ -32,4 +33,5 @@ export { verifyEthereum, verifySolana, verifyAvalanche, + verifyTezos, };