Props for the convertCryptoToFiat function
convertCryptoToFiat
type ConvertCryptoToFiatParams = { chain: Chain; client: ThirdwebClient; fromAmount: number; fromTokenAddress: Address; to: SupportedFiatCurrency;};
The chain that the token is deployed to
type chain = Chain;
type client = ThirdwebClient;
The amount of token to convert to fiat value
type fromAmount = number;
The contract address of the token For native token, use NATIVE_TOKEN_ADDRESS
type fromTokenAddress = Address;
The fiat symbol. e.g "USD"
type to = SupportedFiatCurrency;