GetBuyWithFiatCurrencies

Returns a list of fiat currencies supported by Buy With Fiat that can be used when getting a quote using the GetBuyWithFiatQuote API.

Usage

using Thirdweb.Pay;
[ContextMenu("Get Supported Currencies")]
public async void GetSupportedCurrencies()
{
List<string> currencies = await ThirdwebManager.Instance.SDK.Pay.GetBuyWithFiatCurrencies();
ThirdwebDebug.Log($"Supported Currencies: {JsonConvert.SerializeObject(currencies, Formatting.Indented)}");
}