Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ if (!walletAccount) {
await handleSendTransaction({
transaction: {
signWith: walletAccount.address,
unsignedTransaction: "<base64-serialized-unsigned-solana-tx>",
unsignedTransaction: "<hex-serialized-unsigned-solana-tx>",
caip2: "solana:mainnet",
sponsor: true,
},
Expand Down
2 changes: 1 addition & 1 deletion snippets/shared/send-tx-core.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ OR (Solana):
const sendTransactionStatusId = await client.solSendTransaction({
transaction: {
signWith: walletAccount.address, // Solana address
unsignedTransaction: "<base64-serialized-unsigned-solana-tx>",
unsignedTransaction: "<hex-serialized-unsigned-solana-tx>",
caip2: "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1", // devnet
sponsor: true,
// recentBlockhash: "<recent blockhash>", // optional
Expand Down
2 changes: 1 addition & 1 deletion snippets/shared/send-tx-react.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ if (!walletAccount) {
await handleSendTransaction({
transaction: {
signWith: walletAccount.address, // Solana address
unsignedTransaction: "<base64-serialized-unsigned-solana-tx>",
unsignedTransaction: "<hex-serialized-unsigned-solana-tx>",
caip2: "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1", // devnet
sponsor: true,
// recentBlockhash: "<recent blockhash>", // optional
Expand Down