Skip to main content
Module

std/encoding/base58.ts>decodeBase58

The Deno Standard Library
Go to Latest
function decodeBase58
import { decodeBase58 } from "https://deno.land/std@0.223.0/encoding/base58.ts";

Decodes a base58-encoded string.

Examples

Example 1

import { decodeBase58 } from "https://deno.land/std@0.223.0/encoding/base58.ts";

decodeBase58("2NEpo7TZRRrLZSi2U");
// Uint8Array(12) [ 72, 101, 108, 108, 111, 32,  87, 111, 114, 108, 100, 33 ]

Parameters

b58: string

The base58-encoded string to decode.

Returns

Uint8Array

The decoded data.