Skip to main content
type UseSendUsdcReturnType = {
  sendUsdc: (options: SendUsdcOptions) => Promise<SendUsdcResult>;
  data:   | SendUsdcTransactionData
     | undefined;
  error: Error | undefined;
  status: Status;
};
Represents the return type of the useSendUsdc hook.

Properties

PropertyType
sendUsdc(options: SendUsdcOptions) => Promise<SendUsdcResult>
data| SendUsdcTransactionData | undefined
errorError | undefined
statusStatus