# SDK Methods Currencies
# Current Currency
Returns the authenticated user's current currency.
current(): Promise<string>
# Set Currency
Allows the dApp to set the currency for the Wallet. This can be useful if you have your own currency UI and on change of that you want to make sure the Wallet shows amounts in the same currency the user has selected.
set(fiatCurrency: FiatCurrencyType): Promise<void>
FiatCurrencyType
:
export enum FiatCurrencyType {
CAD = 'CAD',
JPY = 'JPY',
USD = 'USD',
EUR = 'EUR',
GBP = 'GBP',
KRW = 'KRW',
CNY = 'CNY',
SGD = 'SGD',
}
# Enabled Currencies
Returns all the enabled currencies for this dApp setup.
enabled(): Promise<FiatCurrencyType[]>