Skip to main content
type FundStateProps = Pick<FundState, 
  | "country"
  | "cryptoCurrency"
  | "cryptoDecimalPlaces"
  | "fiatCurrency"
  | "fiatDecimalPlaces"
  | "locale"
  | "network"
  | "presetAmountInputs"
  | "subdivision"
| "destinationAddress">;
Props from the Fund component that are used in the FundState.
I