//! SPDX-FileCopyrightText: 2025 Chris Duncan <chris@codecow.com>
//! SPDX-License-Identifier: GPL-3.0-or-later
-import { Account } from './lib/account'
-import { Block } from './lib/block'
-import { Blake2b } from './lib/crypto'
-import * as Errors from './lib/errors'
-import { Ledger } from './lib/ledger'
-import { Rolodex } from './lib/rolodex'
-import { Rpc } from './lib/rpc'
-import * as Tools from './lib/tools'
-import { Wallet } from './lib/wallet'
-
declare global {
type Bytes = Uint8Array<ArrayBuffer> | Buffer<ArrayBuffer>
type Hex = HexByte[]
type HexChar = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' | 'A' | 'B' | 'C' | 'D' | 'E' | 'F'
}
-export {
- Account,
- Blake2b,
- Block,
- Errors,
- Ledger,
- Rolodex,
- Rpc,
- Tools,
- Wallet
-}
+export { Account } from './lib/account'
+export { Block } from './lib/block'
+export { Blake2b } from './lib/crypto'
+export { VaultError } from './lib/errors'
+export { Ledger } from './lib/ledger'
+export { Rolodex } from './lib/rolodex'
+export { Rpc } from './lib/rpc'
+export * as Tools from './lib/tools'
+export { Wallet } from './lib/wallet'