Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

Base64

A base64-encoded string.

Definition

type Base64 = string

Notes

  • Used for Wasm code (in storeCode), raw storage keys/values, signatures, and serialized data.
  • Convert with encodeBase64 / decodeBase64 from @left-curve/encoding. URL-safe variants exist as encodeBase64Url / decodeBase64Url.

See also