diff --git a/lib/Transactions.ts b/lib/Transactions.ts index 8376492..a1a66df 100644 --- a/lib/Transactions.ts +++ b/lib/Transactions.ts @@ -1,5 +1,5 @@ import BigNumber from 'bignumber.js'; -import { AccountAddress } from './wallet/accounts'; +import { AccountAddress } from './wallet/Accounts'; interface LibraProgram { code: Uint8Array; diff --git a/lib/wallet/accounts.ts b/lib/wallet/Accounts.ts similarity index 98% rename from lib/wallet/accounts.ts rename to lib/wallet/Accounts.ts index c839bd9..cf817f6 100644 --- a/lib/wallet/accounts.ts +++ b/lib/wallet/Accounts.ts @@ -2,7 +2,7 @@ import BigNumber from 'bignumber.js'; import { SHA3 } from 'sha3'; import { CursorBuffer } from '../common/CursorBuffer'; import Addresses from '../constants/Addresses'; -import { KeyPair } from '../crypto/EdDsa'; +import { KeyPair } from '../crypto/Eddsa'; export type AccountStates = AccountState[]; diff --git a/lib/wallet/KeyFactory.ts b/lib/wallet/KeyFactory.ts index 0965676..bf1e733 100644 --- a/lib/wallet/KeyFactory.ts +++ b/lib/wallet/KeyFactory.ts @@ -1,5 +1,5 @@ import KeyPrefixes from '../constants/KeyPrefixes'; -import { KeyPair } from '../crypto/EdDsa'; +import { KeyPair } from '../crypto/Eddsa'; import { Hkdf } from '../crypto/Hkdf'; import { Pbkdf } from '../crypto/Pbkdf'; import { Mnemonic } from './Mnemonic'; diff --git a/lib/wallet/index.ts b/lib/wallet/index.ts index 28bda81..b3cfc63 100644 --- a/lib/wallet/index.ts +++ b/lib/wallet/index.ts @@ -1,4 +1,4 @@ -import { Account } from './accounts'; +import { Account } from './Accounts'; import { KeyFactory, Seed } from './KeyFactory'; import { Mnemonic } from './Mnemonic';