We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7dca165 commit 14e64afCopy full SHA for 14e64af
apps/laboratory/src/components/Solana/SolanaSignAndSendTransactionTest.tsx
@@ -61,9 +61,9 @@ export function SolanaSignAndSendTransaction() {
61
}).compileToV0Message()
62
63
// Make a versioned transaction
64
- const versionedTranasction = new VersionedTransaction(messageV0)
+ const versionedTransaction = new VersionedTransaction(messageV0)
65
66
- signature = await walletProvider.signAndSendTransaction(versionedTranasction)
+ signature = await walletProvider.signAndSendTransaction(versionedTransaction)
67
} else {
68
// Create a new transaction
69
const transaction = new Transaction().add(instruction)
0 commit comments