UNPKG

@mysten/utils

Version:
8 lines (5 loc) 248 B
// Copyright (c) Mysten Labs, Inc. // SPDX-License-Identifier: Apache-2.0 import { base58 } from '@scure/base'; export const toBase58 = (buffer: Uint8Array) => base58.encode(buffer); export const fromBase58 = (str: string) => base58.decode(str);