Skip to main content
Go to Latest
function decodeBase58
import { decodeBase58 } from "https://deno.land/std@0.221.0/encoding/base58.ts";

Decodes a base58-encoded string.

Examples

Example 1

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

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

Parameters

b58: string

Returns

Uint8Array