import { Button } from '@mui/material'; import { useConnection, useWallet } from '@solana/wallet-adapter-react'; import type { TransactionSignature } from '@solana/web3.js'; import { PublicKey, Transaction, TransactionInstruction } from '@solana/web3.js'; import type { FC } from 'react'; import { useCallback } from 'react'; import { useNotify } from './notify'; export const SendTransaction: FC = () => { const { connection } = useConnection(); const { publicKey, sendTransaction } = useWallet(); const notify = useNotify(); const onClick = useCallback(async () => { if (!publicKey) { notify('error', 'Wallet not connected!'); return; } let signature: TransactionSignature = ''; try { const transaction = new Transaction().add( new TransactionInstruction({ data: Buffer.from('Hello, from the Solana Wallet Adapter example app!'), keys: [], programId: new PublicKey('MemoSq4gqABAXKb96qnH8TysNcWxMyWCqXgDLGmfcHr'), }) ); signature = await sendTransaction(transaction, connection); notify('info', 'Transaction sent:', signature); await connection.confirmTransaction(signature, 'processed'); notify('success', 'Transaction successful!', signature); } catch (error: any) { notify('error', `Transaction failed! ${error?.message}`, signature); return; } }, [publicKey, notify, connection, sendTransaction]); return ( ); };