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

Converts data to a base58-encoded string.

Examples

Example 1

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

encodeBase58("Hello World!"); // "2NEpo7TZRRrLZSi2U"

Parameters

data: ArrayBuffer | Uint8Array | string

Returns

string