Skip to content

Commit ccb9fd8

Browse files
Merge pull request #690 from tkhq/change-base-64-hex-svm
change SVM input doc from base64 to hex
2 parents 75ede0e + 3922acc commit ccb9fd8

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

features/transaction-management/sending-sponsored-solana-transactions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ if (!walletAccount) {
5959
await handleSendTransaction({
6060
transaction: {
6161
signWith: walletAccount.address,
62-
unsignedTransaction: "<base64-serialized-unsigned-solana-tx>",
62+
unsignedTransaction: "<hex-serialized-unsigned-solana-tx>",
6363
caip2: "solana:mainnet",
6464
sponsor: true,
6565
},

snippets/shared/send-tx-core.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ OR (Solana):
6363
const sendTransactionStatusId = await client.solSendTransaction({
6464
transaction: {
6565
signWith: walletAccount.address, // Solana address
66-
unsignedTransaction: "<base64-serialized-unsigned-solana-tx>",
66+
unsignedTransaction: "<hex-serialized-unsigned-solana-tx>",
6767
caip2: "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1", // devnet
6868
sponsor: true,
6969
// recentBlockhash: "<recent blockhash>", // optional

snippets/shared/send-tx-react.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ if (!walletAccount) {
6060
await handleSendTransaction({
6161
transaction: {
6262
signWith: walletAccount.address, // Solana address
63-
unsignedTransaction: "<base64-serialized-unsigned-solana-tx>",
63+
unsignedTransaction: "<hex-serialized-unsigned-solana-tx>",
6464
caip2: "solana:EtWTRABZaYq6iMfeYKouRu166VU2xqa1", // devnet
6565
sponsor: true,
6666
// recentBlockhash: "<recent blockhash>", // optional

0 commit comments

Comments
 (0)