UNPKG

@frak-labs/core-sdk

Version:

Core SDK of the Frak wallet, low level library to interact directly with the frak ecosystem.

12 lines (10 loc) 262 B
import { jsonEncode } from "@frak-labs/frame-connector"; import { base64urlEncode } from "./b64"; /** * Compress json data * @param data * @ignore */ export function compressJsonToB64(data: unknown): string { return base64urlEncode(jsonEncode(data)); }