UNPKG

@frak-labs/core-sdk

Version:

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

15 lines (13 loc) 229 B
/** * The keys for each locales * @inline */ export type LocalesKey = keyof typeof locales; /** * Map the currency to the locale */ export const locales = { eur: "fr-FR", usd: "en-US", gbp: "en-GB", } as const;