diff --git a/src/sdk/tx/account.test.ts b/src/sdk/tx/account.test.ts index d392b404..28747f7f 100644 --- a/src/sdk/tx/account.test.ts +++ b/src/sdk/tx/account.test.ts @@ -1,10 +1,10 @@ import { accountFromEthAccount, accountFromNibiru } from "./account" -import { EthAccount } from "src/protojs/eth/types/v1/account" -import { Any } from "src/protojs/google/protobuf/any" +import { EthAccount } from "../../protojs/eth/types/v1/account" +import { Any } from "../../protojs/google/protobuf/any" import Long from "long" import * as cosmjs from "@cosmjs/stargate" import { decodeOptionalPubkey } from "@cosmjs/proto-signing" -import { BaseAccount } from "src/protojs/cosmos/auth/v1beta1/auth" +import { BaseAccount } from "../../protojs/cosmos/auth/v1beta1/auth" // Mock decodeOptionalPubkey jest.mock("@cosmjs/proto-signing", () => ({ diff --git a/src/sdk/tx/account.ts b/src/sdk/tx/account.ts index 75d2fe05..94a86c3b 100644 --- a/src/sdk/tx/account.ts +++ b/src/sdk/tx/account.ts @@ -1,9 +1,9 @@ import { decodeOptionalPubkey } from "@cosmjs/proto-signing" import { Account, accountFromAny, AccountParser } from "@cosmjs/stargate" -import { EthAccount } from "src/protojs/eth/types/v1/account" -import { Any } from "src/protojs/google/protobuf/any" +import { EthAccount } from "../../protojs/eth/types/v1/account" +import { Any } from "../../protojs/google/protobuf/any" import { assert } from "@cosmjs/utils" -import { BaseAccount } from "src/protojs/cosmos/auth/v1beta1/auth" +import { BaseAccount } from "../../protojs/cosmos/auth/v1beta1/auth" /** * Converts an EthAccount to a general Cosmos Account object.