/** * Copyright (c) TonTech. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import { useCallback } from 'react'; import type { FC } from 'react'; import { createTransferTonTransaction } from '@ton/appkit'; import { useI18n, useAppKit } from '../../../settings'; import type { SendProps } from '../../../transaction'; import { Send } from '../../../transaction'; export interface SendTonButtonProps extends Omit { recipientAddress: string; amount: string; comment?: string; } export const SendTonButton: FC = ({ recipientAddress, amount, comment, ...props }) => { const appKit = useAppKit(); const { t } = useI18n(); const createTransferTransaction = useCallback(async () => { return createTransferTonTransaction(appKit, { recipientAddress, amount, comment, }); }, [appKit, recipientAddress, amount, comment]); return ( ); };