From 80412b9a43610457021bcd0a2b40474eddb8812e Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Tue, 6 Feb 2024 20:33:30 +0100 Subject: [PATCH] refactor(random-fxhash): update base58 handling --- packages/random-fxhash/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/random-fxhash/src/index.ts b/packages/random-fxhash/src/index.ts index 113a2ec376..cd675770be 100644 --- a/packages/random-fxhash/src/index.ts +++ b/packages/random-fxhash/src/index.ts @@ -1,5 +1,5 @@ import type { Fn0 } from "@thi.ng/api"; -import { B58_CHARS_LC } from "@thi.ng/base-n/58"; +import { B58_CHARS_LC } from "@thi.ng/base-n/chars/58"; import type { IRandom } from "@thi.ng/random"; import { DEFAULT_SEED_128 } from "@thi.ng/random/constants"; import { pickRandom, pickRandomKey } from "@thi.ng/random/pick-random";