interface AddFundsSettings {
walletAddress: string | Hex // Address of the wallet where funds will be added
fiatAmount?: string // Specify the amount in fiat to add
fiatCurrency?: string // Specify the fiat currency (e.g., USD, EUR)
defaultFiatAmount?: string // Default amount in fiat to add
defaultCryptoCurrency?: string // Default cryptocurrency to use (e.g., ETH, BTC)
cryptoCurrencyList?: string // List of cryptocurrencies available for selection. Example: "USDT,BTC,USDC"
networks?: string // Specify network(s) to use for the transaction. Example: "mainnet,ethereum"
onClose?: () => void // Callback function to execute when the modal is closed
}