From 598277e4ef69ba25631b1e552210c9f7a5b2f486 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Thu, 21 Aug 2025 14:54:21 -0700 Subject: [PATCH] Move account into its own directory. --- src/lib/{account.ts => account/index.ts} | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) rename src/lib/{account.ts => account/index.ts} (96%) diff --git a/src/lib/account.ts b/src/lib/account/index.ts similarity index 96% rename from src/lib/account.ts rename to src/lib/account/index.ts index fec5f96..0642030 100644 --- a/src/lib/account.ts +++ b/src/lib/account/index.ts @@ -2,11 +2,11 @@ //! SPDX-License-Identifier: GPL-3.0-or-later import { Key, KeyPair } from '#types' -import { Block } from './block' -import { ACCOUNT_KEY_BYTE_LENGTH, ACCOUNT_KEY_HEX_LENGTH, ALPHABET, PREFIX, PREFIX_LEGACY } from './constants' -import { base32, bytes, hex } from './convert' -import { Blake2b, NanoNaCl } from './crypto' -import { Rpc } from './rpc' +import { Block } from '../block' +import { ACCOUNT_KEY_BYTE_LENGTH, ACCOUNT_KEY_HEX_LENGTH, ALPHABET, PREFIX, PREFIX_LEGACY } from '../constants' +import { base32, bytes, hex } from '../convert' +import { Blake2b, NanoNaCl } from '../crypto' +import { Rpc } from '../rpc' /** * Represents a single Nano address and the associated public key. To include the -- 2.47.3