From fed813b9a3f62df65e93748443b02bf6fa4fff14 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Thu, 2 Jul 2026 11:07:24 -0700 Subject: [PATCH] Allow Node buffers for byte type alias. --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 641c1e7..9b95e52 100644 --- a/src/index.ts +++ b/src/index.ts @@ -11,7 +11,7 @@ import { Tools } from './lib/tools' import { Wallet } from './lib/wallet' declare global { - type Bytes = Uint8Array + type Bytes = Uint8Array | Buffer } export { -- 2.52.0