diff --git a/src/common/initializeEntropy.ts b/src/common/initializeEntropy.ts index 13c2ffdf..ba1fbf00 100644 --- a/src/common/initializeEntropy.ts +++ b/src/common/initializeEntropy.ts @@ -1,6 +1,4 @@ import Entropy, { wasmGlobalsReady } from "@entropyxyz/sdk" -// TODO: fix importing of types from @entropy/sdk/keys -// @ts-ignore import Keyring from "@entropyxyz/sdk/keys" import inquirer from "inquirer" import { decrypt, encrypt } from "../flows/password" diff --git a/src/flows/entropyTransfer/types.ts b/src/flows/entropyTransfer/types.ts index c23b6b77..cdd92f52 100644 --- a/src/flows/entropyTransfer/types.ts +++ b/src/flows/entropyTransfer/types.ts @@ -1,7 +1,7 @@ -// @ts-ignore import { Pair } from '@entropyxyz/sdk/keys' + export interface TransferOptions { from: Pair to: string amount: bigint -} \ No newline at end of file +} diff --git a/tests/testing-utils/index.ts b/tests/testing-utils/index.ts index 99cfde31..bba2d338 100644 --- a/tests/testing-utils/index.ts +++ b/tests/testing-utils/index.ts @@ -1,4 +1,3 @@ -// @ts-ignore import { spinNetworkUp, spinNetworkDown, } from "@entropyxyz/sdk/testing" import * as readline from 'readline' import { randomBytes } from 'crypto' diff --git a/tests/testing-utils/setup-test.ts b/tests/testing-utils/setup-test.ts index 92817e82..9f738107 100644 --- a/tests/testing-utils/setup-test.ts +++ b/tests/testing-utils/setup-test.ts @@ -1,8 +1,6 @@ import { Test } from 'tape' import { Entropy, wasmGlobalsReady } from '@entropyxyz/sdk' -// @ts-ignore import { spinNetworkUp, spinNetworkDown, } from "@entropyxyz/sdk/testing" -// @ts-ignore import Keyring from '@entropyxyz/sdk/keys' import { initializeEntropy } from '../../src/common/initializeEntropy' diff --git a/tests/transfer.test.ts b/tests/transfer.test.ts index 033d648a..94b05406 100644 --- a/tests/transfer.test.ts +++ b/tests/transfer.test.ts @@ -1,7 +1,5 @@ import test from 'tape' import { wasmGlobalsReady } from '@entropyxyz/sdk' -// WIP: I'm seeing problems importing this? -// @ts-ignore import Keyring from '@entropyxyz/sdk/keys' import { makeSeed,