]> git.codecow.com Git - libnemo.git/commitdiff
Move account into its own directory.
authorChris Duncan <chris@zoso.dev>
Thu, 21 Aug 2025 21:54:21 +0000 (14:54 -0700)
committerChris Duncan <chris@zoso.dev>
Thu, 21 Aug 2025 21:54:21 +0000 (14:54 -0700)
src/lib/account/index.ts [moved from src/lib/account.ts with 96% similarity]

similarity index 96%
rename from src/lib/account.ts
rename to src/lib/account/index.ts
index fec5f962637a25ae0543370629d6c7f9bb22618c..064203067d0bd9cb3e899bf9e56ab01d8ca6fa33 100644 (file)
@@ -2,11 +2,11 @@
 //! SPDX-License-Identifier: GPL-3.0-or-later\r
 \r
 import { Key, KeyPair } from '#types'\r
-import { Block } from './block'\r
-import { ACCOUNT_KEY_BYTE_LENGTH, ACCOUNT_KEY_HEX_LENGTH, ALPHABET, PREFIX, PREFIX_LEGACY } from './constants'\r
-import { base32, bytes, hex } from './convert'\r
-import { Blake2b, NanoNaCl } from './crypto'\r
-import { Rpc } from './rpc'\r
+import { Block } from '../block'\r
+import { ACCOUNT_KEY_BYTE_LENGTH, ACCOUNT_KEY_HEX_LENGTH, ALPHABET, PREFIX, PREFIX_LEGACY } from '../constants'\r
+import { base32, bytes, hex } from '../convert'\r
+import { Blake2b, NanoNaCl } from '../crypto'\r
+import { Rpc } from '../rpc'\r
 \r
 /**\r
 * Represents a single Nano address and the associated public key. To include the\r